diff options
| author | bunnei <bunneidev@gmail.com> | 2019-07-11 17:36:23 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-07-11 17:36:23 -0400 |
| commit | bb67091c774611ce2be1aa461438be3989601e59 (patch) | |
| tree | 58e29bd5d7114019a48a62ffadb8076d73627bee /src/video_core/shader/node.h | |
| parent | 79c382fafd81ec5ca42c825a2f1abd53799faf50 (diff) | |
| parent | f2549739d1166d9177bfff3a6af150266ba5309f (diff) | |
Merge pull request #2609 from FernandoS27/new-scan
Implement a New Shader Scanner, Decompile Flow Stack and implement BRX BRA.CC
Diffstat (limited to 'src/video_core/shader/node.h')
| -rw-r--r-- | src/video_core/shader/node.h | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/src/video_core/shader/node.h b/src/video_core/shader/node.h index 0ac83fcf0..7427ed896 100644 --- a/src/video_core/shader/node.h +++ b/src/video_core/shader/node.h @@ -148,11 +148,12 @@ enum class OperationCode { ImageStore, /// (MetaImage, float[N] coords) -> void - Branch, /// (uint branch_target) -> void - PushFlowStack, /// (uint branch_target) -> void - PopFlowStack, /// () -> void - Exit, /// () -> void - Discard, /// () -> void + Branch, /// (uint branch_target) -> void + BranchIndirect, /// (uint branch_target) -> void + PushFlowStack, /// (uint branch_target) -> void + PopFlowStack, /// () -> void + Exit, /// () -> void + Discard, /// () -> void EmitVertex, /// () -> void EndPrimitive, /// () -> void |
