diff options
Diffstat (limited to 'src/mesa/drivers/dri/i965/brw_context.c')
-rw-r--r-- | src/mesa/drivers/dri/i965/brw_context.c | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/src/mesa/drivers/dri/i965/brw_context.c b/src/mesa/drivers/dri/i965/brw_context.c index 558e0770675..eb152f92648 100644 --- a/src/mesa/drivers/dri/i965/brw_context.c +++ b/src/mesa/drivers/dri/i965/brw_context.c @@ -367,16 +367,10 @@ brwCreateContext(int api, brw_draw_init( brw ); - brw->new_vs_backend = (getenv("INTEL_OLD_VS") == NULL); brw->precompile = driQueryOptionb(&intel->optionCache, "shader_precompile"); - /* If we're using the new shader backend, we require integer uniforms - * stored as actual integers. - */ - if (brw->new_vs_backend) { - ctx->Const.NativeIntegers = true; - ctx->Const.UniformBooleanTrue = 1; - } + ctx->Const.NativeIntegers = true; + ctx->Const.UniformBooleanTrue = 1; return true; } |