summaryrefslogtreecommitdiffstats
path: root/video/out/opengl/utils.h
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2017-08-04 12:36:05 +0200
committerwm4 <wm4@nowhere>2017-08-05 13:09:05 +0200
commit90b53fede618772d39ff964b12e6403d71f7f235 (patch)
tree65d8e427ff97271f0330a7cdf400801ecb23268f /video/out/opengl/utils.h
parent0389852db023cd7a3c2a31424f8835ccbc846a15 (diff)
downloadmpv-90b53fede618772d39ff964b12e6403d71f7f235.tar.bz2
mpv-90b53fede618772d39ff964b12e6403d71f7f235.tar.xz
vo_opengl: drop unused custom texture filter for FBO helper
Diffstat (limited to 'video/out/opengl/utils.h')
-rw-r--r--video/out/opengl/utils.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/video/out/opengl/utils.h b/video/out/opengl/utils.h
index 48e139dcc7..ba36a59316 100644
--- a/video/out/opengl/utils.h
+++ b/video/out/opengl/utils.h
@@ -55,7 +55,6 @@ struct fbotex {
GLuint fbo;
GLuint texture;
GLenum iformat;
- GLenum tex_filter;
int rw, rh; // real (texture) size
int lw, lh; // logical (configured) size
};
@@ -68,7 +67,6 @@ bool fbotex_change(struct fbotex *fbo, GL *gl, struct mp_log *log, int w, int h,
#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);
void fbotex_invalidate(struct fbotex *fbo);
// A 3x2 matrix, with the translation part separate.