diff options
author | Dave Airlie <airlied@gmail.com> | 2012-07-12 18:52:34 +1000 |
---|---|---|
committer | Dave Airlie <airlied@gmail.com> | 2012-07-13 11:20:03 +1000 |
commit | defca4c192bd7f4af2b273c7cb1fe8665888772a (patch) | |
tree | d5df349039e01b837e91872687e2c5f48c4a7ac7 /glx | |
parent | d1cae6bb804f7dfc889fd3c5d5eb116f4baf5149 (diff) |
glx/dri2: fix typo in the notification reset for robustness.
Reviewed-by: Ian Romanick <ian.d.romanick@intel.com>
Reviewed-by: Matt Turner <mattst88@gmail.com>
Signed-off-by: Dave Airlie <airlied@redhat.com>
Diffstat (limited to 'glx')
-rw-r--r-- | glx/glxdri2.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/glx/glxdri2.c b/glx/glxdri2.c index f3e26b773..f168d6fb7 100644 --- a/glx/glxdri2.c +++ b/glx/glxdri2.c @@ -538,7 +538,7 @@ create_driver_context(__GLXDRIcontext * context, } #ifdef __DRI2_ROBUSTNESS - if (reset != __DRI_CTX_NO_RESET_NOTIFICATION) { + if (reset != __DRI_CTX_RESET_NO_NOTIFICATION) { ctx_attribs[num_ctx_attribs++] = __DRI_CTX_ATTRIB_RESET_NOTIFICATION; ctx_attribs[num_ctx_attribs++] = reset; |