summaryrefslogtreecommitdiffstats
path: root/video
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2013-11-05 22:39:19 +0100
committerwm4 <wm4@nowhere>2013-11-05 22:39:19 +0100
commit01d12a51f1d70bd3823db7062c0138c3b7e920b3 (patch)
tree6908229d1f1a7fee1a45f5d5a631a7b8ada00fc2 /video
parentdb6a4eec0a9a58a342147e526154c46f19e7c303 (diff)
downloadmpv-01d12a51f1d70bd3823db7062c0138c3b7e920b3.tar.bz2
mpv-01d12a51f1d70bd3823db7062c0138c3b7e920b3.tar.xz
gl_header_fixes: fix inverted condition
Could possibly leading to failing compilation on systems with headers that miss the vdpau extension.
Diffstat (limited to 'video')
-rw-r--r--video/out/gl_header_fixes.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/video/out/gl_header_fixes.h b/video/out/gl_header_fixes.h
index ffc583cd46..88e8dd5e58 100644
--- a/video/out/gl_header_fixes.h
+++ b/video/out/gl_header_fixes.h
@@ -249,7 +249,7 @@
#endif
#endif
-#ifdef GL_NV_vdpau_interop
+#ifndef GL_NV_vdpau_interop
#define GLvdpauSurfaceNV GLintptr
#endif