summaryrefslogtreecommitdiffstats
path: root/video/out/gpu/video.c
diff options
context:
space:
mode:
Diffstat (limited to 'video/out/gpu/video.c')
-rw-r--r--video/out/gpu/video.c9
1 files changed, 7 insertions, 2 deletions
diff --git a/video/out/gpu/video.c b/video/out/gpu/video.c
index b957f71258..4ca5428098 100644
--- a/video/out/gpu/video.c
+++ b/video/out/gpu/video.c
@@ -400,9 +400,14 @@ const struct m_sub_options gl_video_conf = {
{"gamut-mapping-mode", OPT_CHOICE(tone_map.gamut_mode,
{"auto", GAMUT_AUTO},
{"clip", GAMUT_CLIP},
- {"warn", GAMUT_WARN},
+ {"perceptual", GAMUT_PERCEPTUAL},
+ {"relative", GAMUT_RELATIVE},
+ {"saturation", GAMUT_SATURATION},
+ {"absolute", GAMUT_ABSOLUTE},
{"desaturate", GAMUT_DESATURATE},
- {"darken", GAMUT_DARKEN})},
+ {"darken", GAMUT_DARKEN},
+ {"warn", GAMUT_WARN},
+ {"linear", GAMUT_LINEAR})},
{"hdr-compute-peak", OPT_CHOICE(tone_map.compute_peak,
{"auto", 0},
{"yes", 1},