diff options
author | Kristian Høgsberg <krh@redhat.com> | 2007-08-27 14:43:48 -0400 |
---|---|---|
committer | Kristian Høgsberg <krh@redhat.com> | 2007-10-12 19:15:05 -0400 |
commit | ccda4b66bdfc179e661b24adc8ec72bb7db75b2b (patch) | |
tree | e81c7b792f45a4f6bbd6b7119d109c14f216bf48 /GL/glx/glxdrawable.h | |
parent | 695eb8b2e88abc9fa3a76d8da48c3214c7dd1f08 (diff) |
Implement ChangeDrawableAttributes so we can support GLX_EVENT_MASK.
We never need to actually send out the clobber event, so this should be
sufficient for GLX 1.3.
Diffstat (limited to 'GL/glx/glxdrawable.h')
-rw-r--r-- | GL/glx/glxdrawable.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/GL/glx/glxdrawable.h b/GL/glx/glxdrawable.h index 247e7a27c..858bbb35b 100644 --- a/GL/glx/glxdrawable.h +++ b/GL/glx/glxdrawable.h @@ -95,6 +95,11 @@ struct __GLXdrawable { int refCount; GLenum target; + + /* + ** Event mask + */ + unsigned long eventMask; }; #endif /* !__GLX_drawable_h__ */ |