Developer knowledge network · moderated exchange

UnreliableCode 커뮤니티

개발자 연구, 리버스 엔지니어링 및 코딩 커뮤니티

Knowledge index살다
4Categories
919Threads
2.8K게시물
Tutorial

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

shader_magician
HLSL / GLSL Dev
MEMBER
대표: 176
가입 날짜: Jan 2021
게시물: 8
감사해요: 32
1개월 전 · 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
대표: 172
가입 날짜: Sep 2018
게시물: 10
감사해요: 51
1개월 전 · 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
대표: 202
가입 날짜: Apr 2019
게시물: 54
감사해요: 28
4주 전 · Jul 27, 2026 1:33 AM
#3

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