Exemple #1
0
 void CopyAnd(PixelScalar dest_x, PixelScalar dest_y,
               UPixelScalar dest_width, UPixelScalar dest_height,
               const Canvas &src, PixelScalar src_x, PixelScalar src_y) {
   CopyAnd(dest_x, dest_y, dest_width, dest_height,
            src.surface, src_x, src_y);
 }
Exemple #2
0
 void CopyAnd(const Canvas &src) {
   CopyAnd(0, 0, src.GetWidth(), src.GetHeight(),
           src.buffer, 0, 0);
 }
Exemple #3
0
void
Canvas::CopyAnd(const Bitmap &src)
{
  CopyAnd(0, 0, GetWidth(), GetHeight(),
          src.GetNative(), 0, 0);
}
Exemple #4
0
 void CopyAnd(int dest_x, int dest_y,
              unsigned dest_width, unsigned dest_height,
              const Canvas &src, int src_x, int src_y) {
   CopyAnd(dest_x, dest_y, dest_width, dest_height,
           src.buffer, src_x, src_y);
 }
Exemple #5
0
 void CopyAnd(const Bitmap &src) {
   CopyAnd(0, 0, GetWidth(), GetHeight(), src, 0, 0);
 }