Я делаю снимок экрана с glReadPixels, чтобы выполнить "перекрестный" эффект между двумя изображениями.
На симуляторе Marmalade SDK снимок экрана сделан очень хорошо, и эффект "перекрёстного перехода" приносит удовольствие:
Тем не менее, вот как это выглядит на устройствах iOS и Android - повреждено:
http://www.eikona.info/images/81269689420703803966.png
Я всегда читаю экран как RGBA 1 байт / канал, поскольку в документации написано , это ВСЕГДА принято.
Вот код, используемый для снимка экрана:
uint8* Gfx::ScreenshotBuffer(int& deviceWidth, int& deviceHeight, int& dataLength) {
/// width/height
deviceWidth = IwGxGetDeviceWidth();
deviceHeight = IwGxGetDeviceHeight();
int rowLength = deviceWidth * 4; /// data always returned by GL as RGBA, 1 byte/each
dataLength = rowLength * deviceHeight;
// set the target framebuffer to read
glPixelStorei(GL_UNPACK_ALIGNMENT, 1);
glPixelStorei(GL_PACK_ALIGNMENT, 1);
uint8* buffer = new uint8[dataLength];
glReadPixels(0, 0, deviceWidth, deviceHeight, GL_RGBA, GL_UNSIGNED_BYTE, buffer);
return buffer;
}
void Gfx::ScreenshotImage(CIwImage* img, uint8*& pbuffer) {
int deviceWidth, deviceHeight, dataLength;
pbuffer = ScreenshotBuffer(deviceWidth, deviceHeight, dataLength);
img->SetFormat(CIwImage::ABGR_8888);
img->SetWidth(deviceWidth);
img->SetHeight(deviceHeight);
img->SetBuffers(pbuffer, dataLength, 0, 0);
}