ir_to_mesa: make some global variable static
nothing outside this file uses these. Reviewed-by: Matt Turner <mattst88@gmail.com> Acked-by: Kenneth Graunke <kenneth@whitecape.org> Signed-off-by: Dave Airlie <airlied@redhat.com>
This commit is contained in:
@@ -325,11 +325,11 @@ public:
|
||||
void *mem_ctx;
|
||||
};
|
||||
|
||||
src_reg undef_src = src_reg(PROGRAM_UNDEFINED, 0, NULL);
|
||||
static src_reg undef_src = src_reg(PROGRAM_UNDEFINED, 0, NULL);
|
||||
|
||||
dst_reg undef_dst = dst_reg(PROGRAM_UNDEFINED, SWIZZLE_NOOP);
|
||||
static dst_reg undef_dst = dst_reg(PROGRAM_UNDEFINED, SWIZZLE_NOOP);
|
||||
|
||||
dst_reg address_reg = dst_reg(PROGRAM_ADDRESS, WRITEMASK_X);
|
||||
static dst_reg address_reg = dst_reg(PROGRAM_ADDRESS, WRITEMASK_X);
|
||||
|
||||
static int
|
||||
swizzle_for_size(int size)
|
||||
|
||||
Reference in New Issue
Block a user