mirror of
https://github.com/doitsujin/dxvk.git
synced 2025-03-15 16:29:16 +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.predicated = token & (1 << 28);
|
||||||
|
|
||||||
|
m_ctx.instruction.coissue = token & 0x40000000;
|
||||||
|
|
||||||
m_ctx.instruction.specificData.uint32 =
|
m_ctx.instruction.specificData.uint32 =
|
||||||
(token & 0x00ff0000) >> 16;
|
(token & 0x00ff0000) >> 16;
|
||||||
|
|
||||||
|
@ -71,6 +71,7 @@ namespace dxvk {
|
|||||||
struct DxsoShaderInstruction {
|
struct DxsoShaderInstruction {
|
||||||
DxsoOpcode opcode;
|
DxsoOpcode opcode;
|
||||||
bool predicated;
|
bool predicated;
|
||||||
|
bool coissue;
|
||||||
DxsoOpcodeSpecificData specificData;
|
DxsoOpcodeSpecificData specificData;
|
||||||
|
|
||||||
uint32_t tokenLength;
|
uint32_t tokenLength;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user