filled out rgba
This commit is contained in:
parent
2003bee604
commit
9b4c587cd4
1 changed files with 7 additions and 1 deletions
|
@ -102,7 +102,13 @@ typedef struct TextureMask {
|
||||||
} TextureMask;
|
} TextureMask;
|
||||||
|
|
||||||
typedef struct TextureRGBA {
|
typedef struct TextureRGBA {
|
||||||
int poo;
|
int width;
|
||||||
|
int height;
|
||||||
|
unsigned long *data;
|
||||||
|
/* cached scaled so we don't have to scale often */
|
||||||
|
int cwidth;
|
||||||
|
int cheight;
|
||||||
|
unsigned long *cache;
|
||||||
} TextureRGBA;
|
} TextureRGBA;
|
||||||
|
|
||||||
typedef union {
|
typedef union {
|
||||||
|
|
Loading…
Reference in a new issue