mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-06 02:58:05 +02:00
rgtc: fix void pointer arith.
should fix scons build.
This commit is contained in:
parent
0a163cf56d
commit
3f600047d9
1 changed files with 2 additions and 2 deletions
|
|
@ -88,7 +88,7 @@ _mesa_texstore_red_rgtc1(TEXSTORE_PARAMS)
|
|||
const GLchan *tempImage = NULL;
|
||||
int i, j;
|
||||
int numxpixels, numypixels;
|
||||
const void *srcaddr;
|
||||
const GLchan *srcaddr;
|
||||
GLubyte srcpixels[4][4];
|
||||
GLubyte *blkaddr;
|
||||
GLint dstRowDiff;
|
||||
|
|
@ -197,7 +197,7 @@ _mesa_texstore_rg_rgtc2(TEXSTORE_PARAMS)
|
|||
const GLchan *tempImage = NULL;
|
||||
int i, j;
|
||||
int numxpixels, numypixels;
|
||||
const void *srcaddr;
|
||||
const GLchan *srcaddr;
|
||||
GLubyte srcpixels[4][4];
|
||||
GLubyte *blkaddr;
|
||||
GLint dstRowDiff;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue