1
0
mirror of https://github.com/emilk/egui.git synced 2026-08-29 04:40:03 -04:00

Remove .with_srgb(false) when constructing window (#2110)

This commit is contained in:
Emil Ernerfeldt
2022-10-08 11:43:48 +02:00
committed by GitHub
parent f61044cef7
commit eba3927ace
4 changed files with 0 additions and 4 deletions

View File

@@ -338,7 +338,6 @@ mod glow_integration {
.with_hardware_acceleration(hardware_acceleration)
.with_depth_buffer(native_options.depth_buffer)
.with_multisampling(native_options.multisampling)
.with_srgb(false)
.with_stencil_buffer(native_options.stencil_buffer)
.with_vsync(native_options.vsync)
.build_windowed(window_builder, event_loop)