diff options
author | Matt Turner <[email protected]> | 2017-09-27 21:19:23 -0700 |
---|---|---|
committer | Matt Turner <[email protected]> | 2017-10-02 19:41:22 -0700 |
commit | f6c56e07fc5a8e81fd90688c9fee239f18c3480e (patch) | |
tree | f5435ad3a53fdc27f8679d8ac6e30e3cd85a990c /src/mesa/state_tracker/st_context.c | |
parent | c5d508028454f42923aee1ea1ab876f01f680ae7 (diff) |
mesa/st: Drop has_lib_dxtc argument from st_init_extensions()
Reviewed-by: Nicolai Hähnle <[email protected]>
Reviewed-by: Emil Velikov <[email protected]>
Diffstat (limited to 'src/mesa/state_tracker/st_context.c')
-rw-r--r-- | src/mesa/state_tracker/st_context.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/state_tracker/st_context.c b/src/mesa/state_tracker/st_context.c index 2422640d849..9610ad30146 100644 --- a/src/mesa/state_tracker/st_context.c +++ b/src/mesa/state_tracker/st_context.c @@ -406,7 +406,7 @@ st_create_context_priv( struct gl_context *ctx, struct pipe_context *pipe, /* GL limits and extensions */ st_init_limits(pipe->screen, &ctx->Const, &ctx->Extensions); st_init_extensions(pipe->screen, &ctx->Const, - &ctx->Extensions, &st->options, GL_TRUE); + &ctx->Extensions, &st->options); if (st_have_perfmon(st)) { ctx->Extensions.AMD_performance_monitor = GL_TRUE; |