summaryrefslogtreecommitdiffstats
path: root/src/gallium/drivers/svga/svga_state_vs.c
diff options
context:
space:
mode:
authorBrian Paul <[email protected]>2016-08-29 10:15:36 -0600
committerBrian Paul <[email protected]>2016-08-29 12:40:45 -0600
commitf5602c27ec681f1f66cdb8d79378991b79ce45e7 (patch)
tree272fec66f32b44e110c7aec7113785d7de368eb0 /src/gallium/drivers/svga/svga_state_vs.c
parent5e76baa2ad261c72f96a3df42ace4773a1c7daa9 (diff)
svga: s/unsigned/enum pipe_shader_type/
Reviewed-by: Charmaine Lee <[email protected]>
Diffstat (limited to 'src/gallium/drivers/svga/svga_state_vs.c')
-rw-r--r--src/gallium/drivers/svga/svga_state_vs.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/drivers/svga/svga_state_vs.c b/src/gallium/drivers/svga/svga_state_vs.c
index 7162e8884f2..aa351bd1aa5 100644
--- a/src/gallium/drivers/svga/svga_state_vs.c
+++ b/src/gallium/drivers/svga/svga_state_vs.c
@@ -162,7 +162,7 @@ compile_vs(struct svga_context *svga,
static void
make_vs_key(struct svga_context *svga, struct svga_compile_key *key)
{
- const unsigned shader = PIPE_SHADER_VERTEX;
+ const enum pipe_shader_type shader = PIPE_SHADER_VERTEX;
memset(key, 0, sizeof *key);