1
0
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:
Joshua Ashton 2019-12-22 17:44:04 +00:00
parent fb4d794412
commit abf74299e9
2 changed files with 3 additions and 0 deletions

View File

@ -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;

View File

@ -71,6 +71,7 @@ namespace dxvk {
struct DxsoShaderInstruction {
DxsoOpcode opcode;
bool predicated;
bool coissue;
DxsoOpcodeSpecificData specificData;
uint32_t tokenLength;