svga: s/unsigned/enum pipe_shader_type/
authorBrian Paul <brianp@vmware.com>
Wed, 14 Feb 2018 21:53:42 +0000 (14:53 -0700)
committerBrian Paul <brianp@vmware.com>
Thu, 15 Feb 2018 16:05:09 +0000 (09:05 -0700)
Reviewed-by: Neha Bhende <bhenden@vmware.com>
src/gallium/drivers/svga/svga_tgsi.c
src/gallium/drivers/svga/svga_tgsi.h
src/gallium/drivers/svga/svga_tgsi_vgpu10.c

index 0b2d8af64d99fd73daa54bfb51d9e3caadc05562..8819313fb5498facb1a2c19673a95901b42cc9cc 100644 (file)
@@ -168,7 +168,8 @@ svga_shader_emit_header(struct svga_shader_emitter *emit)
 struct svga_shader_variant *
 svga_tgsi_vgpu9_translate(struct svga_context *svga,
                           const struct svga_shader *shader,
-                          const struct svga_compile_key *key, unsigned unit)
+                          const struct svga_compile_key *key,
+                          enum pipe_shader_type unit)
 {
    struct svga_shader_variant *variant = NULL;
    struct svga_shader_emitter emit;
index 2581135701fd9433c37911863377a1e5b0e75c2d..e98601127f43e84af7c7989be49cd95b336213f2 100644 (file)
@@ -65,13 +65,14 @@ static inline void svga_generate_vdecl_semantics( unsigned idx,
 struct svga_shader_variant *
 svga_tgsi_vgpu9_translate(struct svga_context *svga,
                           const struct svga_shader *shader,
-                          const struct svga_compile_key *key, unsigned unit);
+                          const struct svga_compile_key *key,
+                          enum pipe_shader_type unit);
 
 struct svga_shader_variant *
 svga_tgsi_vgpu10_translate(struct svga_context *svga,
                            const struct svga_shader *shader,
                            const struct svga_compile_key *key,
-                           unsigned unit);
+                           enum pipe_shader_type unit);
 
 boolean svga_shader_verify(const uint32_t *tokens, unsigned nr_tokens);
 
index 73aa78b748d8345063a00b28345363f182efec2d..4d0834b3f6c8e17ba3859f3091241c1d1d836bd8 100644 (file)
@@ -6484,7 +6484,7 @@ struct svga_shader_variant *
 svga_tgsi_vgpu10_translate(struct svga_context *svga,
                            const struct svga_shader *shader,
                            const struct svga_compile_key *key,
-                           unsigned unit)
+                           enum pipe_shader_type unit)
 {
    struct svga_shader_variant *variant = NULL;
    struct svga_shader_emitter_v10 *emit;