1
0
mirror of https://github.com/doitsujin/dxvk.git synced 2025-03-14 04:29:15 +01:00

[dxbc] Fixed AtomicUmax emitting the wrong instruction

This commit is contained in:
Philip Rebohle 2018-01-05 19:48:45 +01:00
parent 356591cc99
commit f7e1efbaaf

View File

@ -1698,7 +1698,7 @@ namespace dxvk {
break;
case DxbcOpcode::AtomicUMax:
value.id = m_module.opAtomicUMin(typeId,
value.id = m_module.opAtomicUMax(typeId,
pointer.id, scopeId, semanticsId,
src[0].id);
break;