win-capture: Remove SRGB code

Not having OBS_SOURCE_SRGB is good enough now.
This commit is contained in:
jpark37 2021-05-02 22:41:40 -07:00 committed by Jim
parent 128bd26a1f
commit 01d065fa7d

View File

@ -533,8 +533,6 @@ static void duplicator_capture_render(void *data, gs_effect_t *effect)
rot = capture->rot;
const bool previous = gs_set_linear_srgb(false);
while (gs_effect_loop(effect, "Draw")) {
if (rot != 0) {
float x = 0.0f;
@ -565,8 +563,6 @@ static void duplicator_capture_render(void *data, gs_effect_t *effect)
gs_matrix_pop();
}
gs_set_linear_srgb(previous);
if (capture->capture_cursor) {
effect = obs_get_base_effect(OBS_EFFECT_DEFAULT);