From 615b37a0e260ad8bd108a3e57a2a6f0eb6284246 Mon Sep 17 00:00:00 2001 From: Brian Paul Date: Thu, 8 Oct 2015 21:00:37 -0600 Subject: svga: remove svga_tgsi_vgpu9_translate() call in GS path We can never have geometry shaders with vgpu9. Reviewed-by: Charmaine Lee --- src/gallium/drivers/svga/svga_state_gs.c | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) (limited to 'src') diff --git a/src/gallium/drivers/svga/svga_state_gs.c b/src/gallium/drivers/svga/svga_state_gs.c index 7f75410fb57..0b336baee86 100644 --- a/src/gallium/drivers/svga/svga_state_gs.c +++ b/src/gallium/drivers/svga/svga_state_gs.c @@ -53,13 +53,9 @@ translate_geometry_program(struct svga_context *svga, const struct svga_geometry_shader *gs, const struct svga_compile_key *key) { - if (svga_have_vgpu10(svga)) { - return svga_tgsi_vgpu10_translate(svga, &gs->base, key, - PIPE_SHADER_GEOMETRY); - } - else { - return svga_tgsi_vgpu9_translate(&gs->base, key, PIPE_SHADER_GEOMETRY); - } + assert(svga_have_vgpu10(svga)); + return svga_tgsi_vgpu10_translate(svga, &gs->base, key, + PIPE_SHADER_GEOMETRY); } -- cgit v1.2.3