From: Tapani Pälli Date: Tue, 25 Oct 2016 10:42:12 +0000 (+0300) Subject: i956: set RobustAccess true when is supported X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=fe764477b04866cf4598005e94b374dcbca379e0;p=mesa.git i956: set RobustAccess true when is supported Signed-off-by: Tapani Pälli Reviewed-by: Eric Engestrom --- diff --git a/src/mesa/drivers/dri/i965/brw_context.c b/src/mesa/drivers/dri/i965/brw_context.c index af8ed2cc31a..3085a985517 100644 --- a/src/mesa/drivers/dri/i965/brw_context.c +++ b/src/mesa/drivers/dri/i965/brw_context.c @@ -1107,8 +1107,10 @@ brwCreateContext(gl_api api, brw->perf_debug = true; } - if ((flags & __DRI_CTX_FLAG_ROBUST_BUFFER_ACCESS) != 0) + if ((flags & __DRI_CTX_FLAG_ROBUST_BUFFER_ACCESS) != 0) { ctx->Const.ContextFlags |= GL_CONTEXT_FLAG_ROBUST_ACCESS_BIT_ARB; + ctx->Const.RobustAccess = GL_TRUE; + } if (INTEL_DEBUG & DEBUG_SHADER_TIME) brw_init_shader_time(brw);