Skip to content

Commit

Permalink
Disassemble inner coverage variable correctly. Closes #3137
Browse files Browse the repository at this point in the history
  • Loading branch information
baldurk committed Nov 15, 2023
1 parent 0ed8c5e commit 2758c08
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions renderdoc/driver/shaders/dxbc/dxbc_bytecode_ops.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -560,6 +560,8 @@ rdcstr Operand::toString(const DXBC::Reflection *reflection, ToString toStrFlags
str = "oMask";
else if(type == TYPE_OUTPUT_STENCIL_REF)
str = "oStencilRef";
else if(type == TYPE_INNER_COVERAGE)
str = "vInnerCoverage";
else
{
RDCERR("Unsupported system value semantic %d", type);
Expand Down

0 comments on commit 2758c08

Please sign in to comment.