diff options
author | Erik Faye-Lund <[email protected]> | 2019-04-10 12:16:33 +0200 |
---|---|---|
committer | Erik Faye-Lund <[email protected]> | 2019-04-11 09:53:10 +0200 |
commit | 8f1a147d68d14202b3191a4a38a7b3ebcb9487ea (patch) | |
tree | d7cc8d12ddb540ce4becd325197c039089969352 /src | |
parent | ef923088d2c72863eff8f184e1576e20e85b9d05 (diff) |
virgl: unsigned int -> unsigned
We don't usually spell out the int part of unsigned.
Signed-off-by: Erik Faye-Lund <[email protected]>
Reviewed-by: Gurchetan Singh <[email protected]>
Diffstat (limited to 'src')
-rw-r--r-- | src/gallium/drivers/virgl/virgl_texture.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/drivers/virgl/virgl_texture.c b/src/gallium/drivers/virgl/virgl_texture.c index 45315b7bb24..755b7686dd1 100644 --- a/src/gallium/drivers/virgl/virgl_texture.c +++ b/src/gallium/drivers/virgl/virgl_texture.c @@ -61,7 +61,7 @@ static void virgl_copy_region_with_blit(struct pipe_context *pipe, } } -static unsigned int temp_bind(unsigned int orig) +static unsigned temp_bind(unsigned orig) { if (orig & ~(PIPE_BIND_RENDER_TARGET | PIPE_BIND_DEPTH_STENCIL | PIPE_BIND_SAMPLER_VIEW)) |