mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-01-01 01:00:10 +01:00
gallium/aux/tgsi_ureg.c: Fix various warnings
tgsi/tgsi_ureg.c: In function 'ureg_DECL_sampler':
tgsi/tgsi_ureg.c:721:34: warning: comparison between signed and unsigned
integer expressions [-Wsign-compare]
if (ureg->sampler[i].Index == nr)
^~
tgsi/tgsi_ureg.c: In function 'match_or_expand_immediate64':
tgsi/tgsi_ureg.c:837:34: warning: unused parameter 'type' [-Wunused-
parameter]
int type,
^~~~
tgsi/tgsi_ureg.c: In function 'emit_decls':
tgsi/tgsi_ureg.c:1821:31: warning: comparison between signed and
unsigned integer expressions [-Wsign-compare]
if (ureg->properties[i] != ~0)
^~
tgsi/tgsi_ureg.c: In function 'ureg_create_with_screen':
tgsi/tgsi_ureg.c:2193:18: warning: comparison between signed and
unsigned integer expressions [-Wsign-compare]
for (i = 0; i < ARRAY_SIZE(ureg->properties); i++)
^
Signed-off-by: Gert Wollny <gert.wollny@collabora.com>
Reviewed-by: Emil Velikov <emil.velikov@collabora.com>
This commit is contained in:
parent
c5e8280504
commit
dc5ba7e17c
1 changed files with 3 additions and 3 deletions
|
|
@ -718,7 +718,7 @@ struct ureg_src ureg_DECL_sampler( struct ureg_program *ureg,
|
|||
unsigned i;
|
||||
|
||||
for (i = 0; i < ureg->nr_samplers; i++)
|
||||
if (ureg->sampler[i].Index == nr)
|
||||
if (ureg->sampler[i].Index == (int)nr)
|
||||
return ureg->sampler[i];
|
||||
|
||||
if (i < PIPE_MAX_SAMPLERS) {
|
||||
|
|
@ -1818,7 +1818,7 @@ static void emit_decls( struct ureg_program *ureg )
|
|||
unsigned i,j;
|
||||
|
||||
for (i = 0; i < ARRAY_SIZE(ureg->properties); i++)
|
||||
if (ureg->properties[i] != ~0)
|
||||
if (ureg->properties[i] != ~0u)
|
||||
emit_property(ureg, i, ureg->properties[i]);
|
||||
|
||||
if (ureg->processor == PIPE_SHADER_VERTEX) {
|
||||
|
|
@ -2178,7 +2178,7 @@ struct ureg_program *
|
|||
ureg_create_with_screen(enum pipe_shader_type processor,
|
||||
struct pipe_screen *screen)
|
||||
{
|
||||
int i;
|
||||
uint i;
|
||||
struct ureg_program *ureg = CALLOC_STRUCT( ureg_program );
|
||||
if (!ureg)
|
||||
goto no_ureg;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue