mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-08 15:38:09 +02:00
i965: Resolve GCC sign-compare warning.
mesa/src/mesa/drivers/dri/i965/brw_tex_layout.c: In function 'brw_miptree_layout_texture_array':
mesa/src/mesa/drivers/dri/i965/brw_tex_layout.c:560:25: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
for (int q = 0; q < mt->level[level].depth; q++) {
^
Signed-off-by: Rhys Kidd <rhyskidd@gmail.com>
Reviewed-by: Thomas Helland <thomashelland90@gmail.com>
This commit is contained in:
parent
1512b086d3
commit
6625ca2370
1 changed files with 1 additions and 1 deletions
|
|
@ -555,7 +555,7 @@ brw_miptree_layout_texture_array(struct brw_context *brw,
|
|||
if (mt->compressed)
|
||||
img_height /= mt->align_h;
|
||||
|
||||
for (int q = 0; q < mt->level[level].depth; q++) {
|
||||
for (unsigned q = 0; q < mt->level[level].depth; q++) {
|
||||
if (mt->array_layout == ALL_SLICES_AT_EACH_LOD) {
|
||||
intel_miptree_set_image_offset(mt, level, q, 0, q * img_height);
|
||||
} else {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue