speed up copyPixels for c++

This commit is contained in:
Lars Doucet
2017-03-22 15:40:12 -05:00
committed by Joshua Granick
parent d21d1b6056
commit 75bdc7e248
3 changed files with 46 additions and 10 deletions

View File

@@ -20,6 +20,7 @@ namespace lime {
~ImageBuffer ();
void Blit (const unsigned char *data, int x, int y, int width, int height);
void BlitRow (const unsigned char *data, int sourcePosition, int destPosition, int sourceW, int destX, int destY);
void Resize (int width, int height, int bitsPerPixel = 32);
int Stride ();
value Value ();