diff options
author | Tapani Pälli <[email protected]> | 2016-10-25 13:42:12 +0300 |
---|---|---|
committer | Tapani Pälli <[email protected]> | 2016-10-27 07:06:41 +0300 |
commit | fe764477b04866cf4598005e94b374dcbca379e0 (patch) | |
tree | 7c5de3bf94dd6c2d080fbce8bc3ca6de4cd1597c /src/mesa/drivers/dri | |
parent | ef1600332009f0f526dc04b5d9dd6d430661e4f2 (diff) |
i956: set RobustAccess true when is supported
Signed-off-by: Tapani Pälli <[email protected]>
Reviewed-by: Eric Engestrom <[email protected]>
Diffstat (limited to 'src/mesa/drivers/dri')
-rw-r--r-- | src/mesa/drivers/dri/i965/brw_context.c | 4 |
1 files changed, 3 insertions, 1 deletions
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); |