diff options
author | Marek Olšák <[email protected]> | 2017-06-04 23:09:44 +0200 |
---|---|---|
committer | Marek Olšák <[email protected]> | 2017-06-07 18:46:21 +0200 |
commit | f7523f1ef6709fba0d8ee79eddcb501f30ee628d (patch) | |
tree | 6a3eabc420e5d37e6b0948ba1c2ccd90bdded27c /src/mesa | |
parent | ac0aff722286095ef037beb0017f8c9170ac7c23 (diff) |
st/mesa: use gl_driver_flags::NewFramebufferSRGB
also call st_init_driver_flags when st_context is initialized.
Reviewed-by: Samuel Pitoiset <[email protected]>
Reviewed-by: Nicolai Hähnle <[email protected]>
Diffstat (limited to 'src/mesa')
-rw-r--r-- | src/mesa/state_tracker/st_context.c | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/src/mesa/state_tracker/st_context.c b/src/mesa/state_tracker/st_context.c index 8a5dd2f7254..1a1d46c74ff 100644 --- a/src/mesa/state_tracker/st_context.c +++ b/src/mesa/state_tracker/st_context.c @@ -314,6 +314,7 @@ st_destroy_context_priv(struct st_context *st, bool destroy_pipe) free( st ); } +static void st_init_driver_flags(struct st_context *st); static struct st_context * st_create_context_priv( struct gl_context *ctx, struct pipe_context *pipe, @@ -499,12 +500,15 @@ st_create_context_priv( struct gl_context *ctx, struct pipe_context *pipe, _mesa_initialize_dispatch_tables(ctx); _mesa_initialize_vbo_vtxfmt(ctx); + st_init_driver_flags(st); return st; } -static void st_init_driver_flags(struct gl_driver_flags *f) +static void st_init_driver_flags(struct st_context *st) { + struct gl_driver_flags *f = &st->ctx->DriverFlags; + f->NewArray = ST_NEW_VERTEX_ARRAYS; f->NewRasterizerDiscard = ST_NEW_RASTERIZER; f->NewUniformBuffer = ST_NEW_UNIFORM_BUFFER; @@ -514,6 +518,7 @@ static void st_init_driver_flags(struct gl_driver_flags *f) f->NewShaderStorageBuffer = ST_NEW_STORAGE_BUFFER; f->NewImageUnits = ST_NEW_IMAGE_UNITS; f->NewWindowRectangles = ST_NEW_WINDOW_RECTANGLES; + f->NewFramebufferSRGB = ST_NEW_FRAMEBUFFER; } struct st_context *st_create_context(gl_api api, struct pipe_context *pipe, @@ -544,8 +549,6 @@ struct st_context *st_create_context(gl_api api, struct pipe_context *pipe, !(ST_DEBUG & DEBUG_TGSI)) ctx->Cache = pipe->screen->get_disk_shader_cache(pipe->screen); - st_init_driver_flags(&ctx->DriverFlags); - /* XXX: need a capability bit in gallium to query if the pipe * driver prefers DP4 or MUL/MAD for vertex transformation. */ |