summaryrefslogtreecommitdiffstats
path: root/video/out/gl_video.h
diff options
context:
space:
mode:
authorNiklas Haas <git@nand.wakku.to>2015-01-22 18:24:50 +0100
committerNiklas Haas <git@nand.wakku.to>2015-01-22 19:40:06 +0100
commit27261bea313117b8644d8abda2bc3f9410623154 (patch)
tree4c6af294540d37533defb2cb6bb237b10af991a1 /video/out/gl_video.h
parent1ec77214b19db7aed225375d5f378f58f97ead93 (diff)
downloadmpv-27261bea313117b8644d8abda2bc3f9410623154.tar.bz2
mpv-27261bea313117b8644d8abda2bc3f9410623154.tar.xz
vo_opengl: remove scale-sep and indirect options
These are now auto-detected sanely; and enabled whenever it would be a performance or quality gain (which is pretty much everything except bilinear/bilinear scaling). Perhaps notably, with the absence of scale_sep, there's no more way to use convolution filters on hardware without FBOs, but I don't think there's hardware in existence that doesn't have FBOs but is still fast enough to run the fallback (slow) 2D convolution filters, so I don't think it's a net loss.
Diffstat (limited to 'video/out/gl_video.h')
-rw-r--r--video/out/gl_video.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/video/out/gl_video.h b/video/out/gl_video.h
index 980f237a15..b287658bef 100644
--- a/video/out/gl_video.h
+++ b/video/out/gl_video.h
@@ -34,11 +34,9 @@ struct gl_video_opts {
float scaler_params[2][2];
float scaler_radius[2];
float scaler_antiring[2];
- int indirect;
float gamma;
int srgb;
int approx_gamma;
- int scale_sep;
int fancy_downscaling;
int sigmoid_upscaling;
float sigmoid_center;