chiark / gitweb /
WIP island determination; rename rawimage etc. to rgbimage
[ypp-sc-tools.main.git] / pctb / structure.h
index 77396cf390db06ade4c30f7279b0105aa42377c7..6409c339038c4b0d2233e5e4c4db6f8245fcdd9e 100644 (file)
@@ -84,13 +84,13 @@ typedef struct {
    * green = data[ y*w*3 + x*3 + 1 ] = RI_PIXEL(ri,x,y)[1]
    * blue  = data[ y*w*3 + x*3 + 2 ] = RI_PIXEL(ri,x,y)[2]
    */
-} RawImage;
+} RgbImage;
 
-RawImage *alloc_raw_image(int w, int h);
+RgbImage *alloc_rgb_image(int w, int h);
 
 #define RI_PIXEL(ri,x,y) ((ri)->data + ((y)*(ri)->w + (x)) * 3)
 
-#define CANONIMG_ALSO_STORERAW(ri)             \
+#define CANONIMG_ALSO_STORERGB(ri)             \
   do{                                          \
     char *rip= RI_PIXEL((ri),x,y);             \
     rip[0]= rgb >> 16;                         \