summaryrefslogtreecommitdiffstats
path: root/video/out/gl_w32.c
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2015-01-24 23:29:54 +0100
committerwm4 <wm4@nowhere>2015-01-24 23:29:54 +0100
commit32f726703ddb22a83c57ad5f03177c89f8966c1d (patch)
treec88a669927d1c68ab33386c727adf6c758bda8c7 /video/out/gl_w32.c
parent8657b8e1f3c247dcba441a4c61e3beef2acc2cd4 (diff)
downloadmpv-32f726703ddb22a83c57ad5f03177c89f8966c1d.tar.bz2
mpv-32f726703ddb22a83c57ad5f03177c89f8966c1d.tar.xz
vo_opengl: remove remnants of dropped stereo buffer support
Diffstat (limited to 'video/out/gl_w32.c')
-rw-r--r--video/out/gl_w32.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/video/out/gl_w32.c b/video/out/gl_w32.c
index 3af58cf21d..f2b7cf63d3 100644
--- a/video/out/gl_w32.c
+++ b/video/out/gl_w32.c
@@ -48,9 +48,6 @@ static bool create_dc(struct MPGLContext *ctx, int flags)
pfd.nVersion = 1;
pfd.dwFlags = PFD_DRAW_TO_WINDOW | PFD_SUPPORT_OPENGL | PFD_DOUBLEBUFFER;
- if (flags & VOFLAG_STEREO)
- pfd.dwFlags |= PFD_STEREO;
-
pfd.iPixelType = PFD_TYPE_RGBA;
pfd.cColorBits = 24;
pfd.iLayerType = PFD_MAIN_PLANE;