summaryrefslogtreecommitdiffstats
path: root/video/out/gl_video.c
diff options
context:
space:
mode:
Diffstat (limited to 'video/out/gl_video.c')
-rw-r--r--video/out/gl_video.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/video/out/gl_video.c b/video/out/gl_video.c
index 5acf3bf425..70734129e7 100644
--- a/video/out/gl_video.c
+++ b/video/out/gl_video.c
@@ -80,10 +80,11 @@ const struct lut_tex_format lut_tex_formats[] = {
[8] = {2, GL_RGBA16F, GL_RGBA},
[12] = {3, GL_RGBA16F, GL_RGBA},
[16] = {4, GL_RGBA16F, GL_RGBA},
+ [32] = {8, GL_RGBA16F, GL_RGBA},
};
// must be sorted, and terminated with 0
-static const int filter_sizes[] = {2, 4, 6, 8, 12, 16, 0};
+static const int filter_sizes[] = {2, 4, 6, 8, 12, 16, 32, 0};
struct vertex {
float position[2];
@@ -332,8 +333,8 @@ const struct m_sub_options gl_video_conf = {
OPT_FLOAT("lparam2", scaler_params[0][1], 0),
OPT_FLOAT("cparam1", scaler_params[1][0], 0),
OPT_FLOAT("cparam2", scaler_params[1][1], 0),
- OPT_FLOATRANGE("lradius", scaler_radius[0], 0, 1.0, 8.0),
- OPT_FLOATRANGE("cradius", scaler_radius[1], 0, 1.0, 8.0),
+ OPT_FLOATRANGE("lradius", scaler_radius[0], 0, 1.0, 16.0),
+ OPT_FLOATRANGE("cradius", scaler_radius[1], 0, 1.0, 16.0),
OPT_FLAG("scaler-resizes-only", scaler_resizes_only, 0),
OPT_FLAG("fancy-downscaling", fancy_downscaling, 0),
OPT_FLAG("indirect", indirect, 0),