X-Git-Url: https://git.libre-soc.org/?a=blobdiff_plain;f=src%2Fgallium%2Fauxiliary%2Futil%2Fu_linear.c;h=eed7df966be15d66100dc085dc0cc3af83ba7a7c;hb=896885025f37484cc693f480ee797e83e3a6f9ee;hp=f1aef2167713f592ff458edf3e45727415c881e2;hpb=b5e256c76dea2182c82af2a4f66224735701d55a;p=mesa.git 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 */