vo_opengl: remove gl_ prefixes from files in video/out/opengl

This is a bit redundant with the name of the directory itself, and not
in line with existing naming conventions.
This commit is contained in:
Niklas Haas 2015-08-29 04:12:56 +02:00 committed by wm4
parent deebc55014
commit 44eda2177d
27 changed files with 56 additions and 56 deletions

View File

@ -24,7 +24,7 @@
#include <dlfcn.h> #include <dlfcn.h>
#include "video/out/cocoa_common.h" #include "video/out/cocoa_common.h"
#include "osdep/macosx_versions.h" #include "osdep/macosx_versions.h"
#include "gl_common.h" #include "common.h"
struct cgl_context { struct cgl_context {
CGLPixelFormatObj pix; CGLPixelFormatObj pix;

View File

@ -39,7 +39,7 @@
#include <math.h> #include <math.h>
#include <assert.h> #include <assert.h>
#include "talloc.h" #include "talloc.h"
#include "gl_common.h" #include "common.h"
#include "common/common.h" #include "common/common.h"
#include "options/options.h" #include "options/options.h"
#include "options/m_option.h" #include "options/m_option.h"

View File

@ -47,7 +47,7 @@
#endif #endif
#define MP_GET_GL_WORKAROUNDS #define MP_GET_GL_WORKAROUNDS
#include "gl_header_fixes.h" #include "header_fixes.h"
struct GL; struct GL;
typedef struct GL GL; typedef struct GL GL;

View File

@ -27,7 +27,7 @@
#include "common/common.h" #include "common/common.h"
#include "common/msg.h" #include "common/msg.h"
#include "gl_hwdec.h" #include "hwdec.h"
extern const struct gl_hwdec_driver gl_hwdec_vaglx; extern const struct gl_hwdec_driver gl_hwdec_vaglx;
extern const struct gl_hwdec_driver gl_hwdec_vda; extern const struct gl_hwdec_driver gl_hwdec_vda;

View File

@ -1,7 +1,7 @@
#ifndef MPGL_HWDEC_H_ #ifndef MPGL_HWDEC_H_
#define MPGL_HWDEC_H_ #define MPGL_HWDEC_H_
#include "gl_common.h" #include "common.h"
#include "video/hwdec.h" #include "video/hwdec.h"
struct mp_hwdec_info; struct mp_hwdec_info;

View File

@ -1,7 +1,7 @@
#include "common/common.h" #include "common/common.h"
#include "gl_hwdec.h" #include "hwdec.h"
#include "gl_utils.h" #include "utils.h"
#include "video/d3d.h" #include "video/d3d.h"
#include "video/hwdec.h" #include "video/hwdec.h"

View File

@ -24,7 +24,7 @@
#include <GL/glx.h> #include <GL/glx.h>
#include "video/out/x11_common.h" #include "video/out/x11_common.h"
#include "gl_hwdec.h" #include "hwdec.h"
#include "video/vaapi.h" #include "video/vaapi.h"
struct priv { struct priv {

View File

@ -25,7 +25,7 @@
#include <OpenGL/CGLIOSurface.h> #include <OpenGL/CGLIOSurface.h>
#include "video/mp_image_pool.h" #include "video/mp_image_pool.h"
#include "gl_hwdec.h" #include "hwdec.h"
struct vda_gl_plane_format { struct vda_gl_plane_format {
GLenum gl_format; GLenum gl_format;

View File

@ -20,8 +20,8 @@
#include <GL/glx.h> #include <GL/glx.h>
#include "gl_hwdec.h" #include "hwdec.h"
#include "gl_utils.h" #include "utils.h"
#include "video/vdpau.h" #include "video/vdpau.h"
#include "video/vdpau_mixer.h" #include "video/vdpau_mixer.h"

View File

@ -33,8 +33,8 @@
#include "options/m_option.h" #include "options/m_option.h"
#include "options/path.h" #include "options/path.h"
#include "gl_video.h" #include "video.h"
#include "gl_lcms.h" #include "lcms.h"
#include "osdep/io.h" #include "osdep/io.h"

View File

@ -26,8 +26,8 @@
#include "video/out/bitmap_packer.h" #include "video/out/bitmap_packer.h"
#include "gl_utils.h" #include "utils.h"
#include "gl_osd.h" #include "osd.h"
struct osd_fmt_entry { struct osd_fmt_entry {
GLint internal_format; GLint internal_format;

View File

@ -4,7 +4,7 @@
#include <stdbool.h> #include <stdbool.h>
#include <inttypes.h> #include <inttypes.h>
#include "gl_utils.h" #include "utils.h"
#include "sub/osd.h" #include "sub/osd.h"
struct mpgl_osd *mpgl_osd_init(GL *gl, struct mp_log *log, struct osd_state *osd); struct mpgl_osd *mpgl_osd_init(GL *gl, struct mp_log *log, struct osd_state *osd);

View File

@ -25,9 +25,9 @@
#include "common/common.h" #include "common/common.h"
#include "video/out/x11_common.h" #include "video/out/x11_common.h"
#include "gl_common.h" #include "common.h"
#include "gl_rpi.h" #include "rpi.h"
static void *get_proc_address(const GLubyte *name) static void *get_proc_address(const GLubyte *name)
{ {

View File

@ -30,7 +30,7 @@
#include "stream/stream.h" #include "stream/stream.h"
#include "common/common.h" #include "common/common.h"
#include "gl_utils.h" #include "utils.h"
// GLU has this as gluErrorString (we don't use GLU, as it is legacy-OpenGL) // GLU has this as gluErrorString (we don't use GLU, as it is legacy-OpenGL)
static const char *gl_error_to_string(GLenum error) static const char *gl_error_to_string(GLenum error)

View File

@ -24,7 +24,7 @@
#ifndef MP_GL_UTILS_ #ifndef MP_GL_UTILS_
#define MP_GL_UTILS_ #define MP_GL_UTILS_
#include "gl_common.h" #include "common.h"
struct mp_log; struct mp_log;

View File

@ -29,13 +29,13 @@
#include <libavutil/common.h> #include <libavutil/common.h>
#include <libavutil/lfg.h> #include <libavutil/lfg.h>
#include "gl_video.h" #include "video.h"
#include "misc/bstr.h" #include "misc/bstr.h"
#include "gl_common.h" #include "common.h"
#include "gl_utils.h" #include "utils.h"
#include "gl_hwdec.h" #include "hwdec.h"
#include "gl_osd.h" #include "osd.h"
#include "video/out/filter_kernels.h" #include "video/out/filter_kernels.h"
#include "video/out/aspect.h" #include "video/out/aspect.h"
#include "video/out/bitmap_packer.h" #include "video/out/bitmap_packer.h"

View File

@ -21,7 +21,7 @@
#include "options/m_option.h" #include "options/m_option.h"
#include "sub/osd.h" #include "sub/osd.h"
#include "gl_common.h" #include "common.h"
struct lut3d { struct lut3d {
uint16_t *data; uint16_t *data;

View File

@ -23,7 +23,7 @@
#include <assert.h> #include <assert.h>
#include <windows.h> #include <windows.h>
#include "video/out/w32_common.h" #include "video/out/w32_common.h"
#include "gl_common.h" #include "common.h"
typedef HRESULT (WINAPI *DwmFlush_t)(void); typedef HRESULT (WINAPI *DwmFlush_t)(void);

View File

@ -17,7 +17,7 @@
*/ */
#include "video/out/wayland_common.h" #include "video/out/wayland_common.h"
#include "gl_common.h" #include "common.h"
static void egl_resize(struct vo_wayland_state *wl) static void egl_resize(struct vo_wayland_state *wl)
{ {

View File

@ -24,10 +24,10 @@
#include <GL/glx.h> #include <GL/glx.h>
#define MP_GET_GLX_WORKAROUNDS #define MP_GET_GLX_WORKAROUNDS
#include "gl_header_fixes.h" #include "header_fixes.h"
#include "video/out/x11_common.h" #include "video/out/x11_common.h"
#include "gl_common.h" #include "common.h"
struct glx_context { struct glx_context {
XVisualInfo *vinfo; XVisualInfo *vinfo;

View File

@ -26,7 +26,7 @@
#include "common/common.h" #include "common/common.h"
#include "video/out/x11_common.h" #include "video/out/x11_common.h"
#include "gl_common.h" #include "common.h"
struct priv { struct priv {
EGLDisplay egl_display; EGLDisplay egl_display;

View File

@ -42,14 +42,14 @@
#include "video/mp_image.h" #include "video/mp_image.h"
#include "sub/osd.h" #include "sub/osd.h"
#include "opengl/gl_common.h" #include "opengl/common.h"
#include "opengl/gl_utils.h" #include "opengl/utils.h"
#include "opengl/gl_hwdec.h" #include "opengl/hwdec.h"
#include "opengl/gl_osd.h" #include "opengl/osd.h"
#include "filter_kernels.h" #include "filter_kernels.h"
#include "video/hwdec.h" #include "video/hwdec.h"
#include "opengl/gl_video.h" #include "opengl/video.h"
#include "opengl/gl_lcms.h" #include "opengl/lcms.h"
struct gl_priv { struct gl_priv {
struct vo *vo; struct vo *vo;

View File

@ -24,9 +24,9 @@
#include "common/global.h" #include "common/global.h"
#include "player/client.h" #include "player/client.h"
#include "opengl/gl_common.h" #include "opengl/common.h"
#include "opengl/gl_video.h" #include "opengl/video.h"
#include "opengl/gl_hwdec.h" #include "opengl/hwdec.h"
#include "libmpv/opengl_cb.h" #include "libmpv/opengl_cb.h"

View File

@ -318,22 +318,22 @@ def build(ctx):
( "video/out/cocoa_common.m", "cocoa" ), ( "video/out/cocoa_common.m", "cocoa" ),
( "video/out/dither.c" ), ( "video/out/dither.c" ),
( "video/out/filter_kernels.c" ), ( "video/out/filter_kernels.c" ),
( "video/out/opengl/gl_cocoa.c", "gl-cocoa" ), ( "video/out/opengl/cocoa.c", "gl-cocoa" ),
( "video/out/opengl/gl_common.c", "gl" ), ( "video/out/opengl/common.c", "gl" ),
( "video/out/opengl/gl_rpi.c", "rpi" ), ( "video/out/opengl/rpi.c", "rpi" ),
( "video/out/opengl/gl_hwdec.c", "gl" ), ( "video/out/opengl/hwdec.c", "gl" ),
( "video/out/opengl/gl_hwdec_dxva2.c", "gl-win32" ), ( "video/out/opengl/hwdec_dxva2.c", "gl-win32" ),
( "video/out/opengl/gl_hwdec_vaglx.c", "vaapi-glx" ), ( "video/out/opengl/hwdec_vaglx.c", "vaapi-glx" ),
( "video/out/opengl/gl_hwdec_vda.c", "videotoolbox-vda-gl" ), ( "video/out/opengl/hwdec_vda.c", "videotoolbox-vda-gl" ),
( "video/out/opengl/gl_hwdec_vdpau.c", "vdpau-gl-x11" ), ( "video/out/opengl/hwdec_vdpau.c", "vdpau-gl-x11" ),
( "video/out/opengl/gl_lcms.c", "gl" ), ( "video/out/opengl/lcms.c", "gl" ),
( "video/out/opengl/gl_osd.c", "gl" ), ( "video/out/opengl/osd.c", "gl" ),
( "video/out/opengl/gl_utils.c", "gl" ), ( "video/out/opengl/utils.c", "gl" ),
( "video/out/opengl/gl_video.c", "gl" ), ( "video/out/opengl/video.c", "gl" ),
( "video/out/opengl/gl_w32.c", "gl-win32" ), ( "video/out/opengl/w32.c", "gl-win32" ),
( "video/out/opengl/gl_wayland.c", "gl-wayland" ), ( "video/out/opengl/wayland.c", "gl-wayland" ),
( "video/out/opengl/gl_x11.c", "gl-x11" ), ( "video/out/opengl/x11.c", "gl-x11" ),
( "video/out/opengl/gl_x11egl.c", "egl-x11" ), ( "video/out/opengl/x11egl.c", "egl-x11" ),
( "video/out/vo.c" ), ( "video/out/vo.c" ),
( "video/out/vo_caca.c", "caca" ), ( "video/out/vo_caca.c", "caca" ),
( "video/out/vo_drm.c", "drm" ), ( "video/out/vo_drm.c", "drm" ),