summaryrefslogtreecommitdiffstats
path: root/video/out/opengl/video.h
diff options
context:
space:
mode:
Diffstat (limited to 'video/out/opengl/video.h')
-rw-r--r--video/out/opengl/video.h25
1 files changed, 25 insertions, 0 deletions
diff --git a/video/out/opengl/video.h b/video/out/opengl/video.h
index 5a14cb3ee5..22cbaeec0a 100644
--- a/video/out/opengl/video.h
+++ b/video/out/opengl/video.h
@@ -78,6 +78,31 @@ enum scaler_unit {
SCALER_COUNT
};
+enum dither_algo {
+ DITHER_NONE = 0,
+ DITHER_FRUIT,
+ DITHER_ORDERED,
+};
+
+enum alpha_mode {
+ ALPHA_NO = 0,
+ ALPHA_YES,
+ ALPHA_BLEND,
+ ALPHA_BLEND_TILES,
+};
+
+enum blend_subs_mode {
+ BLEND_SUBS_NO = 0,
+ BLEND_SUBS_YES,
+ BLEND_SUBS_VIDEO,
+};
+
+enum prescalers {
+ PRESCALE_NONE = 0,
+ PRESCALE_SUPERXBR,
+ PRESCALE_NNEDI3,
+};
+
struct gl_video_opts {
int dumb_mode;
struct scaler_config scaler[4];