0a1177a35a3a3563427039abb194f341f51cc2a8
braney
  Tue Jun 15 18:17:24 2010 -0700
removed Smear8 in favor of making Smears always take Colors.   There are still some problems with 32 bit smears not getting the same colors as it's 8bit analog.  I'm thinking this is something to do with the 0 and 1 being white and black in eight bit
diff --git src/hg/inc/hvGfx.h src/hg/inc/hvGfx.h
index a96c038..ad76c1b 100644
--- src/hg/inc/hvGfx.h
+++ src/hg/inc/hvGfx.h
@@ -164,12 +164,12 @@
 vgUnclip(hvg->vg);
 }
 
-INLINE void hvGfxVerticalSmear8(struct hvGfx *hvg,
+INLINE void hvGfxVerticalSmear(struct hvGfx *hvg,
                                int xOff, int yOff, int width, int height, 
-                               unsigned char *dots, boolean zeroClear)
+                               Color *dots, boolean zeroClear)
 /* Put a series of one '8-bit pixel' width vertical lines. */
 {
-vgVerticalSmear8(hvg->vg, hvGfxAdjXW(hvg, xOff, width), yOff, width, height, dots, zeroClear);
+vgVerticalSmear(hvg->vg, hvGfxAdjXW(hvg, xOff, width), yOff, width, height, dots, zeroClear);
 }
 
 INLINE void hvGfxFillUnder(struct hvGfx *hvg, int x1, int y1, int x2, int y2,