Changeset 41156 for trunk/Ohana/src/libkapa/include/kapa.h
- Timestamp:
- Nov 27, 2019, 10:54:47 AM (7 years ago)
- File:
-
- 1 edited
-
trunk/Ohana/src/libkapa/include/kapa.h (modified) (6 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Ohana/src/libkapa/include/kapa.h
r40558 r41156 45 45 KAPA_PLOT_BARS_OUTLINE = 4, 46 46 KAPA_PLOT_BARS_OUTFILL = 5, 47 KAPA_PLOT_INVALID_MAX = 6, 47 KAPA_PLOT_POLYGON = 6, 48 KAPA_PLOT_POLYFILL = 7, 49 KAPA_PLOT_INVALID_MAX = 8, 48 50 } KapaPlotStyle; 49 51 … … 172 174 int Nx, Ny, Nbyte; 173 175 bDrawColor **pixels; 176 char **mask; 174 177 png_color *palette; 175 178 int Npalette; 179 176 180 // current drawing values: 177 181 int bWeight; … … 256 260 int KapaGetImageData (int fd, KapaImageData *graphmode); 257 261 int KapaSetToolbox (int fd, int location); 262 int KapaSetSmoothSigma (int fd, float sigma); 263 int KapaMemoryDump (int fd); 264 int KapaMemoryDumpLines (int fd, int Nlines); 265 int KapaMemoryDumpOnExit (int fd, int state); 258 266 259 267 /* KapaColors */ … … 272 280 /* RotFont.c */ 273 281 void InitRotFonts PROTO((void)); 282 void FreeRotFonts PROTO((void)); 274 283 int SetRotFont PROTO((char *name, int size)); 275 284 char *GetRotFont PROTO((int *size)); … … 292 301 bDrawBuffer *bDrawBufferCreate (int Nx, int Ny, int Nbyte, png_color *palette, int Npalette); 293 302 void bDrawBufferFree (bDrawBuffer *buffer); 303 int bDrawMerge (bDrawBuffer *base, bDrawBuffer *layer); 294 304 void bDrawSetBuffer (bDrawBuffer *buffer); 295 305 void bDrawSetColor (bDrawBuffer *buffer, bDrawColor color); … … 312 322 void bDrawTriOpen (bDrawBuffer *buffer, double x1, double y1, double x2, double y2, double x3, double y3); 313 323 void bDrawTriFill (bDrawBuffer *buffer, double x1, double y1, double dx, double dy); 324 void bDrawPolyFill (bDrawBuffer *buffer, double *x, double *y, int Npoints); 325 326 void bDrawSmooth (bDrawBuffer *buffer, float sigma); 314 327 315 328 /* bDrawRotFont.c */
Note:
See TracChangeset
for help on using the changeset viewer.
