summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2015-09-09 18:21:09 +0200
committerwm4 <wm4@nowhere>2015-09-09 18:21:09 +0200
commit95d5bee832f33721a228d19341e20b12149498ce (patch)
treefeb744f45fb7191d3d768699439f5ac32338891d
parenteb56807b414229a00cd2bee5e74beae5a01e8fb1 (diff)
downloadmpv-95d5bee832f33721a228d19341e20b12149498ce.tar.bz2
mpv-95d5bee832f33721a228d19341e20b12149498ce.tar.xz
old-makefile: update for recent OpenGL refactors
-rw-r--r--TOOLS/old-makefile23
1 files changed, 14 insertions, 9 deletions
diff --git a/TOOLS/old-makefile b/TOOLS/old-makefile
index 2807290e15..d2b9d215df 100644
--- a/TOOLS/old-makefile
+++ b/TOOLS/old-makefile
@@ -56,19 +56,24 @@ SOURCES-$(LIBASS_OSD) += sub/osd_libass.c
SOURCES-$(ALSA) += audio/out/ao_alsa.c
SOURCES-$(CACA) += video/out/vo_caca.c
SOURCES-$(SDL2) += audio/out/ao_sdl.c video/out/vo_sdl.c
-SOURCES-$(GL) += video/out/gl_common.c video/out/gl_osd.c \
- video/out/vo_opengl.c video/out/gl_lcms.c \
- video/out/gl_video.c video/out/dither.c \
- video/out/gl_hwdec.c video/out/gl_utils.c \
+SOURCES-$(GL) += video/out/opengl/common.c \
+ video/out/opengl/osd.c \
+ video/out/opengl/lcms.c \
+ video/out/opengl/video.c \
+ video/out/opengl/video_shaders.c \
+ video/out/dither.c \
+ video/out/opengl/hwdec.c \
+ video/out/opengl/utils.c \
+ video/out/vo_opengl.c \
video/out/vo_opengl_cb.c
SOURCES-$(ENCODING) += video/out/vo_lavc.c audio/out/ao_lavc.c \
common/encode_lavc.c
-SOURCES-$(GL_X11) += video/out/x11_common.c video/out/gl_x11.c
-SOURCES-$(EGL_X11) += video/out/x11_common.c video/out/gl_x11egl.c
+SOURCES-$(GL_X11) += video/out/x11_common.c video/out/opengl/x11.c
+SOURCES-$(EGL_X11) += video/out/x11_common.c video/out/opengl/x11egl.c
SOURCES-$(GL_WAYLAND) += video/out/wayland_common.c \
- video/out/gl_wayland.c
+ video/out/opengl/wayland.c
SOURCES-$(JACK) += audio/out/ao_jack.c
SOURCES-$(OPENAL) += audio/out/ao_openal.c
@@ -80,12 +85,12 @@ SOURCES-$(VDPAU) += video/vdpau.c video/vdpau_mixer.c \
video/out/vo_vdpau.c video/decode/vdpau.c \
video/filter/vf_vdpaupp.c \
video/filter/vf_vdpaurb.c
-SOURCES-$(VDPAU_GL_X11) += video/out/gl_hwdec_vdpau.c
+SOURCES-$(VDPAU_GL_X11) += video/out/opengl/hwdec_vdpau.c
SOURCES-$(VAAPI) += video/out/vo_vaapi.c \
video/decode/vaapi.c \
video/vaapi.c
SOURCES-$(VAAPI_VPP) += video/filter/vf_vavpp.c
-SOURCES-$(VAAPI_GLX) += video/out/gl_hwdec_vaglx.c
+SOURCES-$(VAAPI_GLX) += video/out/opengl/hwdec_vaglx.c
SOURCES-$(XV) += video/out/x11_common.c video/out/vo_xv.c
SOURCES-$(WAYLAND) += video/out/vo_wayland.c \