diff options
author | Marek Olšák <[email protected]> | 2015-07-24 19:47:06 +0200 |
---|---|---|
committer | Marek Olšák <[email protected]> | 2015-07-25 10:37:00 +0200 |
commit | e39ece0d7856d0532a0f011cd5cb17bc85ee82e2 (patch) | |
tree | f9d5c03450077894888bac38e0d8c622b5faac21 /src/mesa/state_tracker/st_context.c | |
parent | a818faa6ddcfa6cd90a24b70c49ec76573954111 (diff) |
st/mesa: don't ignore texture buffer state changes
Fixes piglit:
spec@arb_texture_buffer_range@ranges-2
Cc: [email protected]
Reviewed-by: Brian Paul <[email protected]>
Diffstat (limited to 'src/mesa/state_tracker/st_context.c')
-rw-r--r-- | src/mesa/state_tracker/st_context.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/mesa/state_tracker/st_context.c b/src/mesa/state_tracker/st_context.c index 44244a1e720..72c23cad4bc 100644 --- a/src/mesa/state_tracker/st_context.c +++ b/src/mesa/state_tracker/st_context.c @@ -314,6 +314,7 @@ static void st_init_driver_flags(struct gl_driver_flags *f) f->NewRasterizerDiscard = ST_NEW_RASTERIZER; f->NewUniformBuffer = ST_NEW_UNIFORM_BUFFER; f->NewDefaultTessLevels = ST_NEW_TESS_STATE; + f->NewTextureBuffer = ST_NEW_SAMPLER_VIEWS; } struct st_context *st_create_context(gl_api api, struct pipe_context *pipe, |