summaryrefslogtreecommitdiffstats
path: root/src/gallium/auxiliary/util/u_linear.c
diff options
context:
space:
mode:
authorJan Vesely <[email protected]>2016-04-29 15:46:06 -0400
committerJan Vesely <[email protected]>2016-05-03 12:00:09 -0400
commitebbe31d57c195245b2b556c14291cafccc835738 (patch)
treedc8cf77abd4856ada7309e695947495865cf2ea9 /src/gallium/auxiliary/util/u_linear.c
parentc68a9cdaaccc4021558a796a342bb7f50e5bd6fb (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.c8
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 */