- In the current implementation, the results of GetPixels are different for each platform.
Change-Id: Ifa1cfd5d08a136c6bd2256af3a092c1f3463721d
Signed-off-by: seungho <seungho@seungho.tn.corp.samsungelectronics.net>
pixbuf.resize(width*height*3);
unsigned char* bufPtr = &pixbuf[0];
- for(unsigned y = height-1; y < height; --y)
+ for(unsigned y = 0; y < height; ++y)
{
for(unsigned x = 0; x < width; ++x, bufPtr+=3)
{
const size_t copy_count = static_cast< size_t >( width ) * 4;
pixelFormat = Pixel::BGRA8888;
- for(unsigned y = height-1; y < height; --y, bufPtr += width)
+ for(unsigned y = 0; y < height; ++y, bufPtr += width)
{
const char * const in = pXImage->data + xDataLineSkip * y;