mirror of
https://github.com/doitsujin/dxvk.git
synced 2024-11-30 22:24:15 +01:00
[dxbc] Implement AtomicIMin/Max instructions
This commit is contained in:
parent
b419b3dfbd
commit
78e9b575c5
@ -1868,6 +1868,18 @@ namespace dxvk {
|
||||
src[0].id);
|
||||
break;
|
||||
|
||||
case DxbcOpcode::AtomicIMin:
|
||||
value.id = m_module.opAtomicSMin(typeId,
|
||||
pointer.id, scopeId, semanticsId,
|
||||
src[0].id);
|
||||
break;
|
||||
|
||||
case DxbcOpcode::AtomicIMax:
|
||||
value.id = m_module.opAtomicSMax(typeId,
|
||||
pointer.id, scopeId, semanticsId,
|
||||
src[0].id);
|
||||
break;
|
||||
|
||||
case DxbcOpcode::AtomicUMin:
|
||||
value.id = m_module.opAtomicUMin(typeId,
|
||||
pointer.id, scopeId, semanticsId,
|
||||
|
Loading…
Reference in New Issue
Block a user