home *** CD-ROM | disk | FTP | other *** search
/ Game.EXE 2002 May / Game.EXE_05_2002.iso / Alawar / Lib / 2D / HardwarePicture2DSoft.cpp < prev    next >
Encoding:
C/C++ Source or Header  |  2002-03-26  |  461 b   |  21 lines

  1. #include "HardwarePicture2DSoft.h"
  2. #include "Hardware2DSoft.h"
  3. #include <Log/LogPtr.h>
  4. #include <String.hpp>
  5.  
  6. HardwarePicture2DSoft::HardwarePicture2DSoft(Hardware2DSoft * hardware)
  7. :    hardware( hardware )
  8. {
  9.     hardware->add_picture_count(1);
  10. }
  11.  
  12. HardwarePicture2DSoft::~HardwarePicture2DSoft()
  13. {
  14.     hardware->add_picture_count(-1);
  15. }
  16.  
  17. void HardwarePicture2DSoft::blit(int left, int top, int alpha)
  18. {
  19.     hardware->blit( *this, left, top, alpha );
  20. }
  21.