diff options
author | Jan Vesely <[email protected]> | 2016-04-29 15:46:06 -0400 |
---|---|---|
committer | Jan Vesely <[email protected]> | 2016-05-03 12:00:09 -0400 |
commit | ebbe31d57c195245b2b556c14291cafccc835738 (patch) | |
tree | dc8cf77abd4856ada7309e695947495865cf2ea9 /src/gallium/auxiliary/util/u_linear.c | |
parent | c68a9cdaaccc4021558a796a342bb7f50e5bd6fb (diff) |
gallium,utils: Fix trivial sign compare warnings
Signed-off-by: Jan Vesely <[email protected]>
Reviewed-by: Nicolai Hähnle <[email protected]>
Reviewed-by: Jakob Sinclair <[email protected]>
Reviewed-by: Jose Fonseca <[email protected]>
Diffstat (limited to 'src/gallium/auxiliary/util/u_linear.c')
-rw-r--r-- | src/gallium/auxiliary/util/u_linear.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/gallium/auxiliary/util/u_linear.c b/src/gallium/auxiliary/util/u_linear.c index f1aef216771..eed7df966be 100644 --- a/src/gallium/auxiliary/util/u_linear.c +++ b/src/gallium/auxiliary/util/u_linear.c @@ -37,14 +37,14 @@ void pipe_linear_to_tile(size_t src_stride, const void *src_ptr, struct pipe_tile_info *t, void *dst_ptr) { - int x, y, z; + unsigned x, y, z; char *ptr; size_t bytes = t->cols * t->block.size; char *dst_ptr2 = (char *) dst_ptr; assert(pipe_linear_check_tile(t)); - /* lets write lineary to the tiled buffer */ + /* lets write linearly to the tiled buffer */ for (y = 0; y < t->tiles_y; y++) { for (x = 0; x < t->tiles_x; x++) { /* this inner loop could be replace with SSE magic */ @@ -61,12 +61,12 @@ pipe_linear_to_tile(size_t src_stride, const void *src_ptr, void pipe_linear_from_tile(struct pipe_tile_info *t, const void *src_ptr, size_t dst_stride, void *dst_ptr) { - int x, y, z; + unsigned x, y, z; char *ptr; size_t bytes = t->cols * t->block.size; const char *src_ptr2 = (const char *) src_ptr; - /* lets read lineary from the tiled buffer */ + /* lets read linearly from the tiled buffer */ for (y = 0; y < t->tiles_y; y++) { for (x = 0; x < t->tiles_x; x++) { /* this inner loop could be replace with SSE magic */ |