]> Dogcows Code - chaz/openbox/commitdiff
filled out rgba
authorDerek Foreman <manmower@gmail.com>
Wed, 26 Mar 2003 04:54:33 +0000 (04:54 +0000)
committerDerek Foreman <manmower@gmail.com>
Wed, 26 Mar 2003 04:54:33 +0000 (04:54 +0000)
render/render.h

index 230c7442e87bd8ef8bf94b69051ebef8c9b5512b..78a00d88091a657163d7f77e1262dc9fd2d0c77e 100644 (file)
@@ -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 {
This page took 0.022458 seconds and 4 git commands to generate.