Mesa (master): st/mesa: set RobustAccess true when is supported

Tapani Pälli tpalli at kemper.freedesktop.org
Thu Oct 27 05:48:42 UTC 2016


Module: Mesa
Branch: master
Commit: 44482d5a3e923652ba8e720cf6a2fb39f13ca6d0
URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=44482d5a3e923652ba8e720cf6a2fb39f13ca6d0

Author: Tapani Pälli <tapani.palli at intel.com>
Date:   Tue Oct 25 14:38:01 2016 +0300

st/mesa: set RobustAccess true when is supported

Signed-off-by: Tapani Pälli <tapani.palli at intel.com>
Reviewed-by: Eric Engestrom <eric.engestrom at imgtec.com>

---

 src/mesa/state_tracker/st_manager.c | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/src/mesa/state_tracker/st_manager.c b/src/mesa/state_tracker/st_manager.c
index 6922454..0f71e63 100644
--- a/src/mesa/state_tracker/st_manager.c
+++ b/src/mesa/state_tracker/st_manager.c
@@ -686,8 +686,10 @@ st_api_create_context(struct st_api *stapi, struct st_manager *smapi,
 
    if (attribs->flags & ST_CONTEXT_FLAG_FORWARD_COMPATIBLE)
       st->ctx->Const.ContextFlags |= GL_CONTEXT_FLAG_FORWARD_COMPATIBLE_BIT;
-   if (attribs->flags & ST_CONTEXT_FLAG_ROBUST_ACCESS)
+   if (attribs->flags & ST_CONTEXT_FLAG_ROBUST_ACCESS) {
       st->ctx->Const.ContextFlags |= GL_CONTEXT_FLAG_ROBUST_ACCESS_BIT_ARB;
+      st->ctx->Const.RobustAccess = GL_TRUE;
+   }
    if (attribs->flags & ST_CONTEXT_FLAG_RESET_NOTIFICATION_ENABLED) {
       st->ctx->Const.ResetStrategy = GL_LOSE_CONTEXT_ON_RESET_ARB;
       st_install_device_reset_callback(st);




More information about the mesa-commit mailing list