IBITBLT.H 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. /*
  2. THE COMPUTER CODE CONTAINED HEREIN IS THE SOLE PROPERTY OF PARALLAX
  3. SOFTWARE CORPORATION ("PARALLAX"). PARALLAX, IN DISTRIBUTING THE CODE TO
  4. END-USERS, AND SUBJECT TO ALL OF THE TERMS AND CONDITIONS HEREIN, GRANTS A
  5. ROYALTY-FREE, PERPETUAL LICENSE TO SUCH END-USERS FOR USE BY SUCH END-USERS
  6. IN USING, DISPLAYING, AND CREATING DERIVATIVE WORKS THEREOF, SO LONG AS
  7. SUCH USE, DISPLAY OR CREATION IS FOR NON-COMMERCIAL, ROYALTY OR REVENUE
  8. FREE PURPOSES. IN NO EVENT SHALL THE END-USER USE THE COMPUTER CODE
  9. CONTAINED HEREIN FOR REVENUE-BEARING PURPOSES. THE END-USER UNDERSTANDS
  10. AND AGREES TO THE TERMS HEREIN AND ACCEPTS THE SAME BY USE OF THIS FILE.
  11. COPYRIGHT 1993-1998 PARALLAX SOFTWARE CORPORATION. ALL RIGHTS RESERVED.
  12. */
  13. /*
  14. * $Source: f:/miner/source/2d/rcs/ibitblt.h $
  15. * $Revision: 1.2 $
  16. * $Author: john $
  17. * $Date: 1994/05/31 11:10:56 $
  18. *
  19. * Prototypes for the ibitblt functions.
  20. *
  21. * $Log: ibitblt.h $
  22. * Revision 1.2 1994/05/31 11:10:56 john
  23. * *** empty log message ***
  24. *
  25. * Revision 1.1 1994/05/30 16:08:46 john
  26. * Initial revision
  27. *
  28. *
  29. */
  30. #ifndef _IBITBLT_H
  31. #define _IBITBLT_H
  32. // Finds location/size of the largest "hole" in bitmap mask_bmp
  33. void gr_ibitblt_find_hole_size ( grs_bitmap * mask_bmp, int *minx, int *miny, int *maxx, int *maxy );
  34. // Creates a code mask that will copy data from a bitmap that is sw by sh starting from
  35. // location sx, sy with a rowsize of srowsize onto another bitmap but only copies
  36. // into pixel locations that are defined as transparent in bitmap bmp.
  37. ubyte * gr_ibitblt_create_mask ( grs_bitmap * mask_bmp, int sx, int sy, int sw, int sh, int srowsize );
  38. // Copy source bitmap onto destination bitmap, not copying pixels that are defined
  39. // transparent by the mask
  40. void gr_ibitblt (grs_bitmap * source_bmp, grs_bitmap * dest_bmp, ubyte * mask );
  41. #endif
  42.