src/lib/vGfxPrivate.h 1.11
1.11 2010/06/05 19:29:53 braney
add support for 32-bit color (make USE_PNG have global consequence)
Index: src/lib/vGfxPrivate.h
===================================================================
RCS file: /projects/compbio/cvsroot/kent/src/lib/vGfxPrivate.h,v
retrieving revision 1.10
retrieving revision 1.11
diff -b -B -U 4 -r1.10 -r1.11
--- src/lib/vGfxPrivate.h 20 Feb 2008 00:42:33 -0000 1.10
+++ src/lib/vGfxPrivate.h 5 Jun 2010 19:29:53 -0000 1.11
@@ -28,10 +28,11 @@
int colorIx, void *font, char *text);
typedef int (*vg_findColorIx)(void *v, int r, int g, int b);
typedef struct rgbColor (*vg_colorIxToRgb)(void *v, int colorIx);
typedef void (*vg_setClip)(void *v, int x, int y, int width, int height);
+typedef void (*vg_setWriteMode)(void *v, unsigned int writeMode);
typedef void (*vg_unclip)(void *v);
-typedef void (*vg_verticalSmear)(void *v,
+typedef void (*vg_verticalSmear8)(void *v,
int xOff, int yOff, int width, int height,
unsigned char *dots, boolean zeroClear);
typedef void (*vg_fillUnder)(void *v, int x1, int y1,
int x2, int y2, int bottom, Color color);