diff options
author | Ian Romanick <ian.d.romanick@intel.com> | 2012-07-04 15:21:07 -0700 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2012-07-05 11:45:15 -0700 |
commit | aef0b4593e165634ca7fa0745882dad12a54ebed (patch) | |
tree | fa6ec8bccb0fd8f7e8d86389963bc1cc8a3675c8 /glx/glxcmds.c | |
parent | f8198285cfc4704bc4d56922e5a2e99030a83778 (diff) |
glx: Track the reset notification strategy for a context
Also require that the reset notification for a new context and the other
context in the share group match. There isn't yet any way to specify a
non-default reset notification strategy, but that will come.
Signed-off-by: Ian Romanick <ian.d.romanick@intel.com>
Reviewed-by: Dave Airlie <airlied@redhat.com>
Signed-off-by: Keith Packard <keithp@keithp.com>
Diffstat (limited to 'glx/glxcmds.c')
-rw-r--r-- | glx/glxcmds.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/glx/glxcmds.c b/glx/glxcmds.c index d483bbf8a..d05421971 100644 --- a/glx/glxcmds.c +++ b/glx/glxcmds.c @@ -308,6 +308,16 @@ DoCreateContext(__GLXclientState * cl, GLXContextID gcId, glxc->drawPriv = NULL; glxc->readPriv = NULL; + /* The GLX_ARB_create_context_robustness spec says: + * + * "The default value for GLX_CONTEXT_RESET_NOTIFICATION_STRATEGY_ARB + * is GLX_NO_RESET_NOTIFICATION_ARB." + * + * Without using glXCreateContextAttribsARB, there is no way to specify a + * non-default reset notification strategy. + */ + glxc->resetNotificationStrategy = GLX_NO_RESET_NOTIFICATION_ARB; + /* Add the new context to the various global tables of GLX contexts. */ if (!__glXAddContext(glxc)) { |