mirror of
https://github.com/Mauler125/r5sdk.git
synced 2025-02-09 19:15:03 +01:00
Update vertex shader in Dear ImGui for color correction for DXGI_FORMAT_R8G8B8A8_UNORM_SRGB
Shader taken from https://github.com/ocornut/imgui/issues/1724
This commit is contained in:
parent
bcd0917de2
commit
294dee76cc
8
external/imgui/src/imgui_impl_dx11.cpp
vendored
8
external/imgui/src/imgui_impl_dx11.cpp
vendored
@ -350,6 +350,7 @@ bool ImGui_ImplDX11_CreateDeviceObjects()
|
||||
// See https://github.com/ocornut/imgui/pull/638 for sources and details.
|
||||
|
||||
// Create the vertex shader
|
||||
// Shader taken from https://github.com/ocornut/imgui/issues/1724
|
||||
{
|
||||
static const char* vertexShader =
|
||||
"cbuffer vertexBuffer : register(b0) \
|
||||
@ -373,9 +374,10 @@ bool ImGui_ImplDX11_CreateDeviceObjects()
|
||||
PS_INPUT main(VS_INPUT input)\
|
||||
{\
|
||||
PS_INPUT output;\
|
||||
output.pos = mul( ProjectionMatrix, float4(input.pos.xy, 0.f, 1.f));\
|
||||
output.col = input.col;\
|
||||
output.uv = input.uv;\
|
||||
output.pos = mul( ProjectionMatrix, float4(input.pos.xy, 0.f, 1.f));\
|
||||
output.col.xyz = pow(abs(input.col.xyz), 2.2f);\
|
||||
output.col.w = input.col.w;\
|
||||
output.uv = input.uv;\
|
||||
return output;\
|
||||
}";
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user