1
0
mirror of https://github.com/doitsujin/dxvk.git synced 2025-01-19 05:52:11 +01:00

[dxgi] Change default of s_gamma_bound to true

In the future, we'll assume true and only pass the spec constant
value to the driver if their value is actually different from the
default, but this requires reliable defaults.
This commit is contained in:
Philip Rebohle 2019-05-01 00:29:58 +02:00
parent 04e6479690
commit 0a77ebbeaf
No known key found for this signature in database
GPG Key ID: C8CC613427A31C99

View File

@ -1,6 +1,6 @@
#version 450
layout(constant_id = 1) const bool s_gamma_bound = false;
layout(constant_id = 1) const bool s_gamma_bound = true;
layout(binding = 0) uniform sampler2D s_image;
layout(binding = 1) uniform sampler1D s_gamma;