summaryrefslogtreecommitdiffstats
path: root/video/out/gl_utils.h
diff options
context:
space:
mode:
authorNiklas Haas <git@nand.wakku.to>2015-03-25 23:06:46 +0100
committerwm4 <wm4@nowhere>2015-03-26 00:04:08 +0100
commita60e725113ff4b932be84dc84d3095ac65fe287a (patch)
tree3bdc5e628060e5dc7b3993d7f62b1f3defe6ce99 /video/out/gl_utils.h
parent6e1c95006959d17ea72c02b50523b4491d132dcd (diff)
downloadmpv-a60e725113ff4b932be84dc84d3095ac65fe287a.tar.bz2
mpv-a60e725113ff4b932be84dc84d3095ac65fe287a.tar.xz
vo_opengl: add FBOTEX_FUZZY alias
Minor reusability factor
Diffstat (limited to 'video/out/gl_utils.h')
-rw-r--r--video/out/gl_utils.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/video/out/gl_utils.h b/video/out/gl_utils.h
index c55ee8acfa..2c55e72c44 100644
--- a/video/out/gl_utils.h
+++ b/video/out/gl_utils.h
@@ -84,6 +84,7 @@ bool fbotex_change(struct fbotex *fbo, GL *gl, struct mp_log *log, int w, int h,
GLenum iformat, int flags);
#define FBOTEX_FUZZY_W 1
#define FBOTEX_FUZZY_H 2
+#define FBOTEX_FUZZY (FBOTEX_FUZZY_W | FBOTEX_FUZZY_H)
void fbotex_set_filter(struct fbotex *fbo, GLenum gl_filter);
// A 3x2 matrix, with the translation part separate.