home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / gbmsrc.zip / gbmht.h < prev    next >
C/C++ Source or Header  |  1997-01-26  |  832b  |  27 lines

  1. /*
  2.  
  3. gbmht.h - Interface to Halftoner
  4.  
  5. */
  6.  
  7. #ifndef GBMHT_H
  8. #define GBMHT_H
  9.  
  10. extern void gbm_ht_24_2x2(const GBM *gbm, const byte *data24, byte *data24a, byte rm, byte gm, byte bm);
  11.  
  12. extern void gbm_ht_pal_6R6G6B(GBMRGB *gbmrgb);
  13. extern void gbm_ht_6R6G6B_2x2(const GBM *gbm, const byte *data24, byte *data8);
  14.  
  15. extern void gbm_ht_pal_7R8G4B(GBMRGB *gbmrgb);
  16. extern void gbm_ht_7R8G4B_2x2(const GBM *gbm, const byte *data24, byte *data8);
  17.  
  18. extern void gbm_ht_pal_VGA(GBMRGB *gbmrgb);
  19. extern void gbm_ht_VGA_2x2(const GBM *gbm, const byte *src24, byte *dest4);
  20. extern void gbm_ht_VGA_3x3(const GBM *gbm, const byte *src24, byte *dest4);
  21.  
  22. extern void gbm_ht_pal_8(GBMRGB *gbmrgb);
  23. extern void gbm_ht_8_2x2(const GBM *gbm, const byte *src24, byte *dest4);
  24. extern void gbm_ht_8_3x3(const GBM *gbm, const byte *src24, byte *dest4);
  25.  
  26. #endif
  27.