diff options
author | Ian Romanick <[email protected]> | 2012-09-10 17:11:33 +0300 |
---|---|---|
committer | Ian Romanick <[email protected]> | 2013-11-07 17:31:16 -0800 |
commit | 17c94de33baf66ad5c264b7a046394c651bc6126 (patch) | |
tree | 383fc825320a55bc38e559e8c51364cfb2ca5e69 /src/gallium/state_trackers | |
parent | 916bc4491a2a7607bf2bd22aa1a5a537285c89c9 (diff) |
mesa/dri: Add basic plumbing for GLX_ARB_robustness reset notification strategy
No drivers advertise the DRI2 extension yet, so no driver should ever
see a value other than false for notify_reset.
The changes in nouveau use tabs because nouveau seems to have it's own
indentation rules.
Signed-off-by: Ian Romanick <[email protected]>
Reviewed-by: Kenneth Graunke <[email protected]>
Diffstat (limited to 'src/gallium/state_trackers')
-rw-r--r-- | src/gallium/state_trackers/dri/common/dri_context.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/gallium/state_trackers/dri/common/dri_context.c b/src/gallium/state_trackers/dri/common/dri_context.c index ee3c8be860b..5cfd1edfc81 100644 --- a/src/gallium/state_trackers/dri/common/dri_context.c +++ b/src/gallium/state_trackers/dri/common/dri_context.c @@ -63,6 +63,7 @@ dri_create_context(gl_api api, const struct gl_config * visual, unsigned major_version, unsigned minor_version, uint32_t flags, + bool notify_reset, unsigned *error, void *sharedContextPrivate) { @@ -100,6 +101,11 @@ dri_create_context(gl_api api, const struct gl_config * visual, goto fail; } + if (notify_reset) { + *error = __DRI_CTX_ERROR_UNKNOWN_ATTRIBUTE; + goto fail; + } + if (sharedContextPrivate) { st_share = ((struct dri_context *)sharedContextPrivate)->st; } |