home *** CD-ROM | disk | FTP | other *** search
/ Amiga ACS 1998 #6 / amigaacscoverdisc1998-061998.iso / games / descent / source / 2d / ibitblt.h < prev    next >
Text File  |  1998-06-08  |  2KB  |  50 lines

  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.  
  31.  
  32.  
  33. #ifndef _IBITBLT_H
  34. #define _IBITBLT_H
  35.  
  36. // Finds location/size of the largest "hole" in bitmap mask_bmp
  37. void        gr_ibitblt_find_hole_size ( grs_bitmap * mask_bmp, int *minx, int *miny, int *maxx, int *maxy );
  38.  
  39. // Creates a code mask that will copy data from a bitmap that is sw by sh starting from 
  40. // location sx, sy with a rowsize of srowsize onto another bitmap but only copies
  41. // into pixel locations that are defined as transparent in bitmap bmp.
  42. ubyte    *    gr_ibitblt_create_mask ( grs_bitmap * mask_bmp, int sx, int sy, int sw, int sh, int srowsize );
  43.  
  44. // Copy source bitmap onto destination bitmap, not copying pixels that are defined
  45. // transparent by the mask
  46. void         gr_ibitblt (grs_bitmap * source_bmp, grs_bitmap * dest_bmp, ubyte * mask );
  47.  
  48. #endif
  49. 
  50.