diff options
author | Brian Paul <[email protected]> | 2016-08-29 10:15:36 -0600 |
---|---|---|
committer | Brian Paul <[email protected]> | 2016-08-29 12:40:45 -0600 |
commit | f5602c27ec681f1f66cdb8d79378991b79ce45e7 (patch) | |
tree | 272fec66f32b44e110c7aec7113785d7de368eb0 /src/gallium/drivers/svga/svga_surface.c | |
parent | 5e76baa2ad261c72f96a3df42ace4773a1c7daa9 (diff) |
svga: s/unsigned/enum pipe_shader_type/
Reviewed-by: Charmaine Lee <[email protected]>
Diffstat (limited to 'src/gallium/drivers/svga/svga_surface.c')
-rw-r--r-- | src/gallium/drivers/svga/svga_surface.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/drivers/svga/svga_surface.c b/src/gallium/drivers/svga/svga_surface.c index 00e9cbc1518..a11ce4e4448 100644 --- a/src/gallium/drivers/svga/svga_surface.c +++ b/src/gallium/drivers/svga/svga_surface.c @@ -402,7 +402,7 @@ struct pipe_surface * svga_validate_surface_view(struct svga_context *svga, struct svga_surface *s) { enum pipe_error ret = PIPE_OK; - unsigned shader; + enum pipe_shader_type shader; struct pipe_surface *surf = NULL; assert(svga_have_vgpu10(svga)); |