home *** CD-ROM | disk | FTP | other *** search
/ RISCWORLD 7 / RISCWORLD_VOL7.iso / Software / Issue4 / IYONIX / MANICMINER / SOURCE.ZIP / manicminer-1.6.3 / gfxlibs / h / gfx next >
Encoding:
Text File  |  2000-12-04  |  798 b   |  21 lines

  1. void mm_gfx_flush (void);
  2. void mm_gfx_palset (uint_fast8_t * palette);
  3. void mm_gfx_putpixel (uint_fast16_t x, uint_fast16_t y, uint_fast8_t data);
  4. void mm_gfx_putpixel2 (uint_fast16_t x, uint_fast16_t y, uint_fast8_t data);
  5. uint_fast8_t mm_gfx_getpixel (uint_fast16_t x, uint_fast16_t y);
  6. uint_fast8_t mm_gfx_getpixel2 (uint_fast16_t x, uint_fast16_t y);
  7. void mm_gfx_cls (uint_fast8_t col);
  8. void mm_gfx_fillbox (uint_fast16_t x, uint_fast16_t y,
  9.              uint_fast16_t width, uint_fast16_t height,
  10.              uint_fast8_t col);
  11. void mm_gfx_fillbox2 (uint_fast16_t x, uint_fast16_t y,
  12.               uint_fast16_t width, uint_fast16_t height,
  13.               uint_fast8_t col);
  14. void mm_gfx_waitvr (void);
  15.  
  16. #ifdef __riscos
  17. void mm_gfx_setdirty (int x, int y, int w, int h);
  18. #else
  19. # define mm_gfx_setdirty(X,Y,W,H)
  20. #endif
  21.