svga: s/unsigned/pipe_prim_type/

And add some default switch cases to silence compiler warnings.

Reviewed-by: Charmaine Lee <charmainel@vmware.com>
This commit is contained in:
Brian Paul 2017-03-01 14:52:46 -07:00
parent a9ff377d40
commit 69fb8f3cae
4 changed files with 8 additions and 2 deletions

View file

@ -293,7 +293,7 @@ struct svga_state
unsigned num_samplers[PIPE_SHADER_TYPES];
unsigned num_sampler_views[PIPE_SHADER_TYPES];
unsigned num_vertex_buffers;
unsigned reduced_prim;
enum pipe_prim_type reduced_prim;
struct {
unsigned flag_1d;

View file

@ -182,7 +182,7 @@ static void
svga_draw_vbo(struct pipe_context *pipe, const struct pipe_draw_info *info)
{
struct svga_context *svga = svga_context( pipe );
unsigned reduced_prim = u_reduced_prim( info->mode );
enum pipe_prim_type reduced_prim = u_reduced_prim( info->mode );
unsigned count = info->count;
enum pipe_error ret = 0;
boolean needed_swtnl;

View file

@ -525,6 +525,9 @@ emit_viewport( struct svga_context *svga,
adjust_x = -0.5;
adjust_y = -0.5;
break;
default:
/* nothing */
break;
}
}

View file

@ -84,6 +84,9 @@ static void set_draw_viewport( struct svga_context *svga )
adjx += SVGA_TRIANGLE_ADJ_X;
adjy += SVGA_TRIANGLE_ADJ_Y;
break;
default:
/* nothing */
break;
}
}