Developer knowledge network ยท moderated exchange

Onbetrouwbare Code-gemeenschap

Ontwikkelaarsonderzoek, reverse engineering en coderingsgemeenschap

Knowledge indexLive
4Categories
919Threads
2.8KBerichten
Tutorial

Linear Color Space vs Gamma Correction: Why textures look washed out without sRGB conversion [StackOverflow Architecture Guide]

shader_magician
HLSL / GLSL Dev
MEMBER
Vertegenwoordiger: 176
Datum van deelname: Jan 2021
Berichten: 8
Bedankt: 32
4 weken geleden ยท Jul 26, 2026 3:15 AM
#1

Why lighting calculations look blown-out and plastic without proper gamma correction:

  • Monitors display colors using non-linear gamma ($V_{\text{display}} = V_{\text{linear}}^{2.2}$).
  • Light calculations (Lambertian diffuse, Phong specular, PBR) must occur in Linear space ($1.0 + 1.0 = 2.0$).

The Solution:

  1. Load color textures using sRGB formats (DXGI_FORMAT_R8G8B8A8_UNORM_SRGB / GL_SRGB8_ALPHA8) so hardware automatically linearizes inputs.
  2. In post-processing shader, convert linear HDR result back to gamma space:vec3 finalColor = pow(linearColor, vec3(1.0 / 2.2));
graphics_pipeline_pro
DirectX / Vulkan Engineer
MEMBER
Vertegenwoordiger: 172
Datum van deelname: Sep 2018
Berichten: 10
Bedankt: 51
4 weken geleden ยท Jul 26, 2026 9:30 AM
#2

Forgetting to linearize sRGB input textures is why amateur shaders have harsh, blown-out specular highlights.

imgui_artisan
UI Designer
MEMBER
Vertegenwoordiger: 202
Datum van deelname: Apr 2019
Berichten: 54
Bedankt: 28
4 weken geleden ยท Jul 27, 2026 1:33 AM
#3

Hardware sRGB render targets handle the gamma conversion on output automatically at zero shader cost.