mirror of
https://github.com/doitsujin/dxvk.git
synced 2025-03-13 19:29:14 +01:00
[dxso] Parse co-issue instruction modifier
This commit is contained in:
parent
fb4d794412
commit
abf74299e9
@ -180,6 +180,8 @@ namespace dxvk {
|
||||
|
||||
m_ctx.instruction.predicated = token & (1 << 28);
|
||||
|
||||
m_ctx.instruction.coissue = token & 0x40000000;
|
||||
|
||||
m_ctx.instruction.specificData.uint32 =
|
||||
(token & 0x00ff0000) >> 16;
|
||||
|
||||
|
@ -71,6 +71,7 @@ namespace dxvk {
|
||||
struct DxsoShaderInstruction {
|
||||
DxsoOpcode opcode;
|
||||
bool predicated;
|
||||
bool coissue;
|
||||
DxsoOpcodeSpecificData specificData;
|
||||
|
||||
uint32_t tokenLength;
|
||||
|
Loading…
x
Reference in New Issue
Block a user