Changeset 531 for abuse/trunk/src/imlib/timage.h
- Timestamp:
- Apr 22, 2011, 7:32:05 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
abuse/trunk/src/imlib/timage.h
r530 r531 26 26 { 27 27 public: 28 trans_image(image *im, char const *name); // name has no meaning if MEM_CHECK is off 28 trans_image(image *im, char const *name); 29 ~trans_image(); 29 30 30 31 inline vec2i Size() { return m_size; } 31 uint8_t *Data() { return m_data; } 32 inline uint8_t *Data() { return m_data; } 33 34 image *ToImage(); 32 35 33 36 void PutImage(image *screen, int x, int y); // always transparent … … 47 50 void put_scan_line(image *screen, int x, int y, int line); // always transparent 48 51 size_t MemUsage(); 49 image *make_image();50 ~trans_image();51 52 52 53 private:
Note: See TracChangeset
for help on using the changeset viewer.