mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-05 00:58:05 +02:00
mesa: Fix pointer arithmetic.
This commit is contained in:
parent
0c54d76f37
commit
53d9b7d361
1 changed files with 3 additions and 1 deletions
|
|
@ -554,7 +554,9 @@ _mesa_get_compressed_teximage(GLcontext *ctx, GLenum target, GLint level,
|
|||
GLuint bw, bh;
|
||||
_mesa_get_format_block_size(texImage->TexFormat, &bw, &bh);
|
||||
for (i = 0; i < (texImage->Height + bh - 1) / bh; i++) {
|
||||
memcpy(img + i * row_stride, texImage->Data + i * row_stride_stored, row_stride);
|
||||
memcpy((GLubyte *)img + i * row_stride,
|
||||
(GLubyte *)texImage->Data + i * row_stride_stored,
|
||||
row_stride);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue