Skip to content

Commit eb5d624

Browse files
committed
Remove 'Force HDR' option
1 parent ba7e297 commit eb5d624

File tree

6 files changed

+0
-9
lines changed

6 files changed

+0
-9
lines changed

data/locale/cs-CZ.ini

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,3 @@ CaptureWindow="Okno"
55
CaptureAnyWindow="Zaznamenávat jakékoliv okno"
66
CaptureAnyWindowExcept="Zaznamenávat jakékoliv okno kromě"
77
AllowTransparency="Povolit průhlednost"
8-
ForceHDR="Vynutit HDR"

data/locale/en-US.ini

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,3 @@ CaptureWindow="Window"
55
CaptureAnyWindow="Capture any window"
66
CaptureAnyWindowExcept="Capture any window except"
77
AllowTransparency="Allow Transparency"
8-
ForceHDR="Force HDR"

data/locale/fr-FR.ini

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,3 @@ CaptureWindow="Fenêtre"
55
CaptureAnyWindow="Capturer n'importe quelle fenêtre"
66
CaptureAnyWindowExcept="Capturer n'importe quelle fenêtre sauf"
77
AllowTransparency="Autoriser la transparence"
8-
ForceHDR="Forcer l'HDR"

data/locale/pl-PL.ini

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,3 @@ CaptureWindow="Okno"
55
CaptureAnyWindow="Przechwytuj dowolne okno"
66
CaptureAnyWindowExcept="Przechwytuj dowolne okno, z wyjątkiem"
77
AllowTransparency="Pozwól na przezroczystość"
8-
ForceHDR="Wymuś HDR"

data/locale/pt-BR.ini

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,3 @@ CaptureWindow="Janela"
55
CaptureAnyWindow="Capturar qualquer janela"
66
CaptureAnyWindowExcept="Capturar qualquer janela exceto"
77
AllowTransparency="Permitir transparência"
8-
ForceHDR="Forçar HDR"

src/vkcapture.c

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,6 @@ typedef struct {
100100
#endif
101101
bool show_cursor;
102102
bool allow_transparency;
103-
bool force_hdr;
104103
bool window_match;
105104
bool window_exclude;
106105
const char *window;
@@ -328,7 +327,6 @@ static void vkcapture_source_update(void *data, obs_data_t *settings)
328327

329328
ctx->show_cursor = obs_data_get_bool(settings, "show_cursor");
330329
ctx->allow_transparency = obs_data_get_bool(settings, "allow_transparency");
331-
ctx->force_hdr = obs_data_get_bool(settings, "force_hdr");
332330

333331
ctx->window_match = false;
334332
ctx->window_exclude = false;
@@ -717,7 +715,6 @@ static void vkcapture_source_get_defaults(obs_data_t *defaults)
717715
{
718716
obs_data_set_default_bool(defaults, "show_cursor", true);
719717
obs_data_set_default_bool(defaults, "allow_transparency", false);
720-
obs_data_set_default_bool(defaults, "force_hdr", false);
721718
}
722719

723720
static obs_properties_t *vkcapture_source_get_properties(void *data)
@@ -774,7 +771,6 @@ static obs_properties_t *vkcapture_source_get_properties(void *data)
774771
}
775772

776773
obs_properties_add_bool(props, "allow_transparency", obs_module_text("AllowTransparency"));
777-
obs_properties_add_bool(props, "force_hdr", obs_module_text("ForceHDR"));
778774

779775
return props;
780776
}

0 commit comments

Comments
 (0)