tgsi: s/unsigned/enum pipe_shader_type/ in ureg code

And add a default switch case to silence a compiler warning.

Reviewed-by: Mathias Fröhlich <mathias.froehlich@web.de>
Reviewed-by: Roland Scheidegger <sroland@vmware.com>
This commit is contained in:
Brian Paul
2018-02-07 18:18:39 -07:00
parent c0dc337ecd
commit 0f40f4ffda
2 changed files with 9 additions and 5 deletions

View File

@@ -107,7 +107,7 @@ struct hw_atomic_decl {
struct ureg_program struct ureg_program
{ {
unsigned processor; enum pipe_shader_type processor;
bool supports_any_inout_decl_range; bool supports_any_inout_decl_range;
int next_shader_processor; int next_shader_processor;
@@ -2070,6 +2070,8 @@ const struct tgsi_token *ureg_finalize( struct ureg_program *ureg )
PIPE_SHADER_FRAGMENT : PIPE_SHADER_FRAGMENT :
ureg->next_shader_processor); ureg->next_shader_processor);
break; break;
default:
; /* nothing */
} }
emit_header( ureg ); emit_header( ureg );
@@ -2163,14 +2165,15 @@ void ureg_free_tokens( const struct tgsi_token *tokens )
struct ureg_program * struct ureg_program *
ureg_create(unsigned processor) ureg_create(enum pipe_shader_type processor)
{ {
return ureg_create_with_screen(processor, NULL); return ureg_create_with_screen(processor, NULL);
} }
struct ureg_program * struct ureg_program *
ureg_create_with_screen(unsigned processor, struct pipe_screen *screen) ureg_create_with_screen(enum pipe_shader_type processor,
struct pipe_screen *screen)
{ {
int i; int i;
struct ureg_program *ureg = CALLOC_STRUCT( ureg_program ); struct ureg_program *ureg = CALLOC_STRUCT( ureg_program );

View File

@@ -93,10 +93,11 @@ struct ureg_dst
struct pipe_context; struct pipe_context;
struct ureg_program * struct ureg_program *
ureg_create(unsigned processor); ureg_create(enum pipe_shader_type processor);
struct ureg_program * struct ureg_program *
ureg_create_with_screen(unsigned processor, struct pipe_screen *screen); ureg_create_with_screen(enum pipe_shader_type processor,
struct pipe_screen *screen);
const struct tgsi_token * const struct tgsi_token *
ureg_finalize( struct ureg_program * ); ureg_finalize( struct ureg_program * );