diff options
author | Timothy Arceri <[email protected]> | 2020-07-01 16:44:07 +1000 |
---|---|---|
committer | Marge Bot <[email protected]> | 2020-07-02 23:52:53 +0000 |
commit | 9549443a8f0352a699bca3d47de92a145c9ced6c (patch) | |
tree | 47a99ebdf19205b11cd73055c995c3d8d039abb5 /src | |
parent | 7579414db240e9c46f3d440ae4756b053a1340ea (diff) |
svga: add missing fallthrough comments
Reviewed-by: Marek Olšák <[email protected]>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/5705>
Diffstat (limited to 'src')
-rw-r--r-- | src/gallium/drivers/svga/svga_tgsi_vgpu10.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/gallium/drivers/svga/svga_tgsi_vgpu10.c b/src/gallium/drivers/svga/svga_tgsi_vgpu10.c index 0c07985519c..f5a79bd997a 100644 --- a/src/gallium/drivers/svga/svga_tgsi_vgpu10.c +++ b/src/gallium/drivers/svga/svga_tgsi_vgpu10.c @@ -10246,6 +10246,7 @@ emit_temp_tessfactor_instructions(struct svga_shader_emitter_v10 *emit) emit->tes.inner.in_index + 1, TGSI_SWIZZLE_X); dst = writemask_dst(&dst, TGSI_WRITEMASK_Y); emit_instruction_op1(emit, VGPU10_OPCODE_MOV, &dst, &src); + /* fallthrough */ case PIPE_PRIM_TRIANGLES: src = make_src_scalar_reg(TGSI_FILE_INPUT, emit->tes.inner.in_index, TGSI_SWIZZLE_X); @@ -10277,11 +10278,13 @@ emit_temp_tessfactor_instructions(struct svga_shader_emitter_v10 *emit) emit->tes.outer.in_index + 3, TGSI_SWIZZLE_X); dst = writemask_dst(&dst, TGSI_WRITEMASK_W); emit_instruction_op1(emit, VGPU10_OPCODE_MOV, &dst, &src); + /* fallthrough */ case PIPE_PRIM_TRIANGLES: src = make_src_scalar_reg(TGSI_FILE_INPUT, emit->tes.outer.in_index + 2, TGSI_SWIZZLE_X); dst = writemask_dst(&dst, TGSI_WRITEMASK_Z); emit_instruction_op1(emit, VGPU10_OPCODE_MOV, &dst, &src); + /* fallthrough */ case PIPE_PRIM_LINES: src = make_src_scalar_reg(TGSI_FILE_INPUT, emit->tes.outer.in_index + 1, TGSI_SWIZZLE_X); |