diff options
author | Jason Ekstrand <[email protected]> | 2017-10-11 16:29:28 -0700 |
---|---|---|
committer | Jason Ekstrand <[email protected]> | 2018-03-07 12:13:47 -0800 |
commit | cc587ee9a7212633edb7f30268920eec7d8fceef (patch) | |
tree | 209f03771f6201458ea442a4e59a920e3d18c3f5 /src/compiler/spirv/spirv_to_nir.c | |
parent | 59b0ea0c7483bc95f9d24742ea4bdbaa998fc0ec (diff) |
spirv: Handle the new OpModuleProcessed instruction
Reviewed-by: Samuel Iglesias Gonsálvez <[email protected]>
Diffstat (limited to 'src/compiler/spirv/spirv_to_nir.c')
-rw-r--r-- | src/compiler/spirv/spirv_to_nir.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/compiler/spirv/spirv_to_nir.c b/src/compiler/spirv/spirv_to_nir.c index f0122a43424..98fdd700b0b 100644 --- a/src/compiler/spirv/spirv_to_nir.c +++ b/src/compiler/spirv/spirv_to_nir.c @@ -3190,6 +3190,7 @@ vtn_handle_preamble_instruction(struct vtn_builder *b, SpvOp opcode, case SpvOpSourceExtension: case SpvOpSourceContinued: case SpvOpExtension: + case SpvOpModuleProcessed: /* Unhandled, but these are for debug so that's ok. */ break; |