diff options
author | Jason Ekstrand <[email protected]> | 2016-11-14 18:11:07 -0800 |
---|---|---|
committer | Jason Ekstrand <[email protected]> | 2016-11-22 13:02:29 -0800 |
commit | 111d57e7d297a0736f83b3f710f9294981c48b2e (patch) | |
tree | 44561e1bf60541a73b8f0b50b4cbec2cae54a3ba /src/mesa/program | |
parent | 7a2cfd4adb891fb93e84fd8aedfbe387a8a2c781 (diff) |
compiler: Add the rest of the subpassInput types
There are actually 6 of them according to the GL_KHR_vulkan_glsl spec.
Reviewed-by: Dave Airlie <[email protected]>
Reviewed-by: Jordan Justen <[email protected]>
Diffstat (limited to 'src/mesa/program')
-rw-r--r-- | src/mesa/program/prog_to_nir.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/mesa/program/prog_to_nir.c b/src/mesa/program/prog_to_nir.c index 2707a075b5d..68a5f674485 100644 --- a/src/mesa/program/prog_to_nir.c +++ b/src/mesa/program/prog_to_nir.c @@ -598,6 +598,7 @@ ptn_tex(nir_builder *b, nir_alu_dest dest, nir_ssa_def **src, instr->coord_components = 3; break; case GLSL_SAMPLER_DIM_SUBPASS: + case GLSL_SAMPLER_DIM_SUBPASS_MS: unreachable("can't reach"); } |