mirror of
https://github.com/doitsujin/dxvk.git
synced 2024-12-03 04:24:11 +01:00
[dxbc] Decorate integer fragment shader builtins as flat
Fixes yellow tint in Unreal Engine 4 games on RADV and AMDGPU-PRO.
This commit is contained in:
parent
b65520d627
commit
d12a8e09a8
@ -7098,8 +7098,14 @@ namespace dxvk {
|
||||
const char* name) {
|
||||
const uint32_t varId = emitNewVariable(info);
|
||||
|
||||
m_module.decorateBuiltIn(varId, builtIn);
|
||||
m_module.setDebugName(varId, name);
|
||||
m_module.decorateBuiltIn(varId, builtIn);
|
||||
|
||||
if (m_programInfo.type() == DxbcProgramType::PixelShader
|
||||
&& info.type.ctype != DxbcScalarType::Float32
|
||||
&& info.type.ctype != DxbcScalarType::Bool
|
||||
&& info.sclass == spv::StorageClassInput)
|
||||
m_module.decorate(varId, spv::DecorationFlat);
|
||||
|
||||
m_entryPointInterfaces.push_back(varId);
|
||||
return varId;
|
||||
|
Loading…
Reference in New Issue
Block a user