summaryrefslogtreecommitdiff
path: root/render/render.h
diff options
context:
space:
mode:
Diffstat (limited to 'render/render.h')
-rw-r--r--render/render.h8
1 files changed, 7 insertions, 1 deletions
diff --git a/render/render.h b/render/render.h
index 230c7442..78a00d88 100644
--- a/render/render.h
+++ b/render/render.h
@@ -102,7 +102,13 @@ typedef struct TextureMask {
} TextureMask;
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;
typedef union {