projects
/
mesa.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
3e96231
)
glxcmds: Fix a typo in the __APPLE__ codepath
author
Jeremy Huddleston Sequoia
<jeremyhu@apple.com>
Thu, 17 Aug 2017 22:08:36 +0000
(15:08 -0700)
committer
Jeremy Huddleston Sequoia
<jeremyhu@apple.com>
Thu, 17 Aug 2017 22:13:33 +0000
(15:13 -0700)
s/DummyContext/dummyContext/
Regressed-in:
5d9b50e596c9d81c37ce0844ae0f8c9da3f6bea6
Signed-off-by: Jeremy Huddleston Sequoia <jeremyhu@apple.com>
src/glx/glxcmds.c
patch
|
blob
|
history
diff --git
a/src/glx/glxcmds.c
b/src/glx/glxcmds.c
index 290c86c6cd22d113e8b809e19d047079f08b6342..44992f18cf0c489a006129ef38483171baa18807 100644
(file)
--- a/
src/glx/glxcmds.c
+++ b/
src/glx/glxcmds.c
@@
-820,7
+820,7
@@
glXSwapBuffers(Display * dpy, GLXDrawable drawable)
{
#ifdef GLX_USE_APPLEGL
struct glx_context * gc = __glXGetCurrentContext();
- if(gc != &
D
ummyContext && apple_glx_is_current_drawable(dpy, gc->driContext, drawable)) {
+ if(gc != &
d
ummyContext && apple_glx_is_current_drawable(dpy, gc->driContext, drawable)) {
apple_glx_swap_buffers(gc->driContext);
} else {
__glXSendError(dpy, GLXBadCurrentWindow, 0, X_GLXSwapBuffers, false);