2014-07-02 19:08:47 +02:00
|
|
|
#include "graphics/tinygl/zblit.h"
|
|
|
|
#include "graphics/tinygl/zgl.h"
|
2014-07-07 18:17:54 +02:00
|
|
|
#include "graphics/pixelbuffer.h"
|
2014-07-07 21:14:58 +02:00
|
|
|
#include "common/array.h"
|
2014-07-16 02:24:34 +02:00
|
|
|
#include <math.h>
|
2014-07-07 18:17:54 +02:00
|
|
|
|
2014-07-07 21:14:58 +02:00
|
|
|
struct BlitImage {
|
2014-07-07 18:17:54 +02:00
|
|
|
public:
|
2014-07-07 21:14:58 +02:00
|
|
|
BlitImage() { }
|
2014-07-07 18:17:54 +02:00
|
|
|
|
2014-07-07 21:14:58 +02:00
|
|
|
void loadData(const Graphics::Surface &surface, uint32 colorKey, bool applyColorKey) {
|
2014-07-07 18:17:54 +02:00
|
|
|
Graphics::PixelFormat textureFormat(4, 8, 8, 8, 8, 0, 8, 16, 24);
|
|
|
|
_surface.create(surface.w, surface.h, textureFormat);
|
|
|
|
Graphics::PixelBuffer buffer(surface.format, (byte *)surface.getPixels());
|
|
|
|
Graphics::PixelBuffer dataBuffer(textureFormat, (byte *)_surface.getPixels());
|
|
|
|
for (int x = 0; x < surface.w; x++) {
|
|
|
|
for (int y = 0; y < surface.h; y++) {
|
|
|
|
uint32 pixel = buffer.getValueAt(y * surface.w + x);
|
2014-07-07 21:14:58 +02:00
|
|
|
if (applyColorKey && pixel == colorKey) {
|
2014-07-07 18:17:54 +02:00
|
|
|
dataBuffer.setPixelAt(y * surface.w + x, 0, 255, 255, 255); // Color keyed pixels become transparent white.
|
|
|
|
} else {
|
|
|
|
dataBuffer.setPixelAt(y * surface.w + x, pixel);
|
2014-07-04 19:34:12 +02:00
|
|
|
}
|
|
|
|
}
|
2014-07-02 19:08:47 +02:00
|
|
|
}
|
2014-07-07 18:17:54 +02:00
|
|
|
// Create opaque lines data.
|
|
|
|
}
|
2014-07-02 19:08:47 +02:00
|
|
|
|
2014-07-07 21:14:58 +02:00
|
|
|
~BlitImage() {
|
2014-07-07 18:17:54 +02:00
|
|
|
_surface.free();
|
2014-07-02 19:08:47 +02:00
|
|
|
}
|
|
|
|
|
2014-07-07 18:17:54 +02:00
|
|
|
Graphics::Surface _surface;
|
|
|
|
};
|
|
|
|
|
2014-07-07 21:14:58 +02:00
|
|
|
static Common::Array<BlitImage*> blitImages;
|
|
|
|
|
|
|
|
BlitImage *tglGenBlitImage() {
|
|
|
|
BlitImage *image = new BlitImage();
|
|
|
|
blitImages.push_back(image);
|
|
|
|
return image;
|
2014-07-07 18:17:54 +02:00
|
|
|
}
|
|
|
|
|
2014-07-07 21:14:58 +02:00
|
|
|
void tglUploadBlitImage(BlitImage *blitImage, const Graphics::Surface& surface, uint32 colorKey, bool applyColorKey) {
|
|
|
|
if (blitImage != nullptr) {
|
|
|
|
blitImage->loadData(surface, colorKey, applyColorKey);
|
|
|
|
}
|
2014-07-07 18:17:54 +02:00
|
|
|
}
|
|
|
|
|
2014-07-07 21:14:58 +02:00
|
|
|
void tglDeleteBlitImage(BlitImage *blitImage) {
|
|
|
|
if (blitImage != nullptr) {
|
|
|
|
for (uint32 i = 0; i < blitImages.size(); i++) {
|
|
|
|
if (blitImages[i] == blitImage) {
|
|
|
|
blitImages.remove_at(i);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
delete blitImage;
|
|
|
|
}
|
2014-07-07 18:17:54 +02:00
|
|
|
}
|
|
|
|
|
2014-07-16 02:24:34 +02:00
|
|
|
Common::Point transformPoint(float x, float y, int rotation) {
|
|
|
|
float rotateRad = rotation * M_PI / 180.0f;
|
|
|
|
Common::Point newPoint;
|
|
|
|
newPoint.x = x * cos(rotateRad) - y * sin(rotateRad);
|
|
|
|
newPoint.y = x * sin(rotateRad) + y * cos(rotateRad);
|
|
|
|
return newPoint;
|
|
|
|
}
|
|
|
|
|
|
|
|
Common::Rect rotateRectangle(int x, int y, int width, int height, int rotation, int originX, int originY) {
|
|
|
|
Common::Point nw, ne, sw, se;
|
|
|
|
nw = transformPoint(x - originX, y - originY, rotation);
|
|
|
|
ne = transformPoint(x + width - originX, y - originY, rotation);
|
|
|
|
sw = transformPoint(x + width - originX, y + height- originY, rotation);
|
|
|
|
se = transformPoint(x - originX, y + height - originY, rotation);
|
|
|
|
|
|
|
|
float top = MIN(nw.y, MIN(ne.y, MIN(sw.y, se.y)));
|
|
|
|
float bottom = MAX(nw.y, MAX(ne.y, MAX(sw.y, se.y)));
|
|
|
|
float left = MIN(nw.x, MIN(ne.x, MIN(sw.x, se.x)));
|
|
|
|
float right = MAX(nw.x, MAX(ne.x, MAX(sw.x, se.x)));
|
|
|
|
|
|
|
|
Common::Rect res;
|
|
|
|
res.top = (int32)(floor(top)) + originY;
|
|
|
|
res.bottom = (int32)(ceil(bottom)) + originY;
|
|
|
|
res.left = (int32)(floor(left)) + originX;
|
|
|
|
res.right = (int32)(ceil(right)) + originX;
|
|
|
|
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
|
|
|
template <bool disableBlending, bool disableColoring, bool flipVertical, bool flipHorizontal>
|
|
|
|
void tglBlitGenericNoTransform(BlitImage *blitImage, int dstX, int dstY, int srcX, int srcY, int srcWidth, int srcHeight, float aTint, float rTint, float gTint, float bTint) {
|
2014-07-07 18:17:54 +02:00
|
|
|
TinyGL::GLContext *c = TinyGL::gl_get_context();
|
|
|
|
|
|
|
|
if (srcWidth == 0 || srcHeight == 0) {
|
2014-07-07 21:14:58 +02:00
|
|
|
srcWidth = blitImage->_surface.w;
|
|
|
|
srcHeight = blitImage->_surface.h;
|
2014-07-04 19:34:12 +02:00
|
|
|
}
|
2014-07-02 19:08:47 +02:00
|
|
|
|
2014-07-16 02:24:34 +02:00
|
|
|
// Width and height are always 0 when you call this function.
|
|
|
|
int width = srcWidth;
|
|
|
|
int height = srcHeight;
|
2014-07-02 19:08:47 +02:00
|
|
|
|
2014-07-07 18:17:54 +02:00
|
|
|
if (dstX >= c->fb->xsize|| dstY >= c->fb->ysize)
|
|
|
|
return;
|
2014-07-02 19:08:47 +02:00
|
|
|
|
2014-07-07 18:17:54 +02:00
|
|
|
int clampWidth, clampHeight;
|
2014-07-02 19:08:47 +02:00
|
|
|
|
2014-07-07 18:17:54 +02:00
|
|
|
if (dstX + width > c->fb->xsize)
|
|
|
|
clampWidth = c->fb->xsize - dstX;
|
|
|
|
else
|
|
|
|
clampWidth = width;
|
2014-07-02 19:08:47 +02:00
|
|
|
|
2014-07-07 18:17:54 +02:00
|
|
|
if (dstY + height > c->fb->ysize)
|
|
|
|
clampHeight = c->fb->ysize - dstY;
|
|
|
|
else
|
|
|
|
clampHeight = height;
|
2014-07-02 19:08:47 +02:00
|
|
|
|
2014-07-07 18:17:54 +02:00
|
|
|
if (dstX < 0)
|
|
|
|
dstX = 0;
|
|
|
|
if (dstY < 0)
|
|
|
|
dstY = 0;
|
2014-07-02 19:08:47 +02:00
|
|
|
|
|
|
|
|
2014-07-07 21:14:58 +02:00
|
|
|
Graphics::PixelBuffer srcBuf(blitImage->_surface.format, (byte *)blitImage->_surface.getPixels());
|
2014-07-02 19:08:47 +02:00
|
|
|
|
2014-07-07 18:17:54 +02:00
|
|
|
if (flipVertical) {
|
2014-07-07 21:14:58 +02:00
|
|
|
srcBuf.shiftBy(srcX + ((srcY + srcHeight - 1) * blitImage->_surface.w));
|
2014-07-07 18:17:54 +02:00
|
|
|
} else {
|
2014-07-07 21:14:58 +02:00
|
|
|
srcBuf.shiftBy(srcX + (srcY * blitImage->_surface.w));
|
2014-07-07 18:17:54 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
Graphics::PixelBuffer dstBuf(c->fb->cmode, c->fb->getPixelBuffer());
|
|
|
|
|
|
|
|
for (int l = 0; l < clampHeight; l++) {
|
|
|
|
for (int r = 0; r < clampWidth; ++r) {
|
|
|
|
byte aDst, rDst, gDst, bDst;
|
|
|
|
if (flipHorizontal) {
|
|
|
|
srcBuf.getARGBAt(clampWidth - r, aDst, rDst, gDst, bDst);
|
|
|
|
} else {
|
2014-07-02 19:08:47 +02:00
|
|
|
srcBuf.getARGBAt(r, aDst, rDst, gDst, bDst);
|
|
|
|
}
|
2014-07-07 18:17:54 +02:00
|
|
|
if (disableColoring) {
|
|
|
|
if (disableBlending && aDst != 0) {
|
|
|
|
dstBuf.setPixelAt((dstX + r) + (dstY + l) * c->fb->xsize, aDst, rDst, gDst, bDst);
|
|
|
|
} else {
|
|
|
|
c->fb->writePixel((dstX + r) + (dstY + l) * c->fb->xsize, aDst, rDst, gDst, bDst);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if (disableBlending && aDst != 0) {
|
|
|
|
dstBuf.setPixelAt((dstX + r) + (dstY + l) * c->fb->xsize, aDst * aTint, rDst * rTint, gDst * gTint, bDst * bTint);
|
|
|
|
} else {
|
|
|
|
c->fb->writePixel((dstX + r) + (dstY + l) * c->fb->xsize, aDst * aTint, rDst * rTint, gDst * gTint, bDst * bTint);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (flipVertical) {
|
2014-07-07 21:14:58 +02:00
|
|
|
srcBuf.shiftBy(-blitImage->_surface.w);
|
2014-07-07 18:17:54 +02:00
|
|
|
} else {
|
2014-07-07 21:14:58 +02:00
|
|
|
srcBuf.shiftBy(blitImage->_surface.w);
|
2014-07-02 19:08:47 +02:00
|
|
|
}
|
|
|
|
}
|
2014-07-07 18:17:54 +02:00
|
|
|
}
|
|
|
|
|
2014-07-16 02:24:34 +02:00
|
|
|
template <bool disableBlending, bool disableColoring, bool flipVertical, bool flipHorizontal>
|
|
|
|
void tglBlitGenericTransform(BlitImage *blitImage, int dstX, int dstY, int width, int height, int srcX, int srcY, int srcWidth, int srcHeight, int rotation,
|
2014-07-16 02:25:06 +02:00
|
|
|
int originX, int originY, float aTint, float rTint, float gTint, float bTint) {
|
|
|
|
TinyGL::GLContext *c = TinyGL::gl_get_context();
|
|
|
|
|
|
|
|
if (srcWidth == 0 || srcHeight == 0) {
|
|
|
|
srcWidth = blitImage->_surface.w;
|
|
|
|
srcHeight = blitImage->_surface.h;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (width == 0 && height == 0) {
|
|
|
|
width = srcWidth;
|
|
|
|
height = srcHeight;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (dstX >= c->fb->xsize|| dstY >= c->fb->ysize)
|
|
|
|
return;
|
|
|
|
|
|
|
|
int clampWidth, clampHeight;
|
|
|
|
|
|
|
|
if (dstX + width > c->fb->xsize)
|
|
|
|
clampWidth = c->fb->xsize - dstX;
|
|
|
|
else
|
|
|
|
clampWidth = width;
|
|
|
|
|
|
|
|
if (dstY + height > c->fb->ysize)
|
|
|
|
clampHeight = c->fb->ysize - dstY;
|
|
|
|
else
|
|
|
|
clampHeight = height;
|
|
|
|
|
|
|
|
if (dstX < 0)
|
|
|
|
dstX = 0;
|
|
|
|
if (dstY < 0)
|
|
|
|
dstY = 0;
|
|
|
|
|
|
|
|
|
|
|
|
Graphics::PixelBuffer srcBuf(blitImage->_surface.format, (byte *)blitImage->_surface.getPixels());
|
|
|
|
srcBuf.shiftBy(srcX + (srcY * blitImage->_surface.w));
|
|
|
|
|
|
|
|
Graphics::PixelBuffer dstBuf(c->fb->cmode, c->fb->getPixelBuffer());
|
|
|
|
|
|
|
|
if (rotation == 0) {
|
|
|
|
for (int l = 0; l < clampHeight; l++) {
|
|
|
|
for (int r = 0; r < clampWidth; ++r) {
|
|
|
|
byte aDst, rDst, gDst, bDst;
|
|
|
|
int xSource, ySource;
|
|
|
|
if (flipVertical) {
|
|
|
|
ySource = clampHeight - l - 1;
|
|
|
|
} else {
|
|
|
|
ySource = l;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (flipHorizontal) {
|
|
|
|
xSource = clampWidth - r - 1;
|
|
|
|
} else {
|
|
|
|
xSource = r;
|
|
|
|
}
|
|
|
|
|
|
|
|
srcBuf.getARGBAt(((ySource * srcHeight) / height) * blitImage->_surface.w + ((xSource * srcWidth) / width), aDst, rDst, gDst, bDst);
|
|
|
|
|
|
|
|
if (disableColoring) {
|
|
|
|
if (disableBlending && aDst != 0) {
|
|
|
|
dstBuf.setPixelAt((dstX + r) + (dstY + l) * c->fb->xsize, aDst, rDst, gDst, bDst);
|
|
|
|
} else {
|
|
|
|
c->fb->writePixel((dstX + r) + (dstY + l) * c->fb->xsize, aDst, rDst, gDst, bDst);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if (disableBlending && aDst != 0) {
|
|
|
|
dstBuf.setPixelAt((dstX + r) + (dstY + l) * c->fb->xsize, aDst * aTint, rDst * rTint, gDst * gTint, bDst * bTint);
|
|
|
|
} else {
|
|
|
|
c->fb->writePixel((dstX + r) + (dstY + l) * c->fb->xsize, aDst * aTint, rDst * rTint, gDst * gTint, bDst * bTint);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
|
|
|
|
uint32 invAngle = 360 - (rotation % 360);
|
|
|
|
float invCos = cos(invAngle * M_PI / 180.0f);
|
|
|
|
float invSin = sin(invAngle * M_PI / 180.0f );
|
|
|
|
|
|
|
|
int icosx = (int)(invCos * (65536.0f * srcWidth / width));
|
|
|
|
int isinx = (int)(invSin * (65536.0f * srcWidth / width));
|
|
|
|
int icosy = (int)(invCos * (65536.0f * srcHeight / height));
|
|
|
|
int isiny = (int)(invSin * (65536.0f * srcHeight / height));
|
|
|
|
|
|
|
|
int xd = (srcX + originX) << 16;
|
|
|
|
int yd = (srcY + originY) << 16;
|
|
|
|
int ax = -icosx * originX;
|
|
|
|
int ay = -isiny * originY;
|
|
|
|
int sw = width - 1;
|
|
|
|
int sh = height - 1;
|
|
|
|
|
|
|
|
// Transform destination rectangle accordingly.
|
|
|
|
Common::Rect destinationRectangle = rotateRectangle(dstX, dstY, clampWidth, clampHeight, rotation, originX, originY);
|
|
|
|
|
|
|
|
if (dstX + destinationRectangle.width() > c->fb->xsize)
|
|
|
|
clampWidth = c->fb->xsize - dstX;
|
|
|
|
else
|
|
|
|
clampWidth = destinationRectangle.width();
|
|
|
|
|
|
|
|
if (dstY + destinationRectangle.height() > c->fb->ysize)
|
|
|
|
clampHeight = c->fb->ysize - dstY;
|
|
|
|
else
|
|
|
|
clampHeight = destinationRectangle.height();
|
|
|
|
|
|
|
|
for (int l = 0; l < clampHeight; l++) {
|
|
|
|
int t = originY - l;
|
|
|
|
int sdx = ax + (isinx * t) + xd;
|
|
|
|
int sdy = ay - (icosy * t) + yd;
|
|
|
|
for (int r = 0; r < clampWidth; ++r) {
|
|
|
|
byte aDst, rDst, gDst, bDst;
|
|
|
|
|
|
|
|
int xSource, ySource;
|
|
|
|
int dx = (sdx >> 16);
|
|
|
|
int dy = (sdy >> 16);
|
|
|
|
|
|
|
|
if (flipHorizontal) dx = sw - dx;
|
|
|
|
if (flipVertical) dy = sh - dy;
|
|
|
|
|
|
|
|
if ((dx >= 0) && (dy >= 0) && (dx < srcWidth) && (dy < srcHeight)) {
|
|
|
|
srcBuf.getARGBAt(dy * blitImage->_surface.w + dx, aDst, rDst, gDst, bDst);
|
|
|
|
if (disableColoring) {
|
|
|
|
if (disableBlending && aDst != 0) {
|
|
|
|
dstBuf.setPixelAt((dstX + r) + (dstY + l) * c->fb->xsize, aDst, rDst, gDst, bDst);
|
|
|
|
} else {
|
|
|
|
c->fb->writePixel((dstX + r) + (dstY + l) * c->fb->xsize, aDst, rDst, gDst, bDst);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if (disableBlending && aDst != 0) {
|
|
|
|
dstBuf.setPixelAt((dstX + r) + (dstY + l) * c->fb->xsize, aDst * aTint, rDst * rTint, gDst * gTint, bDst * bTint);
|
|
|
|
} else {
|
|
|
|
c->fb->writePixel((dstX + r) + (dstY + l) * c->fb->xsize, aDst * aTint, rDst * rTint, gDst * gTint, bDst * bTint);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
sdx += icosx;
|
|
|
|
sdy += isiny;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2014-07-16 02:24:34 +02:00
|
|
|
}
|
|
|
|
|
2014-07-07 18:17:54 +02:00
|
|
|
//Utility function.
|
|
|
|
template <bool disableBlending, bool disableColoring, bool disableTransform, bool flipVertical, bool flipHorizontal>
|
2014-07-07 21:14:58 +02:00
|
|
|
FORCEINLINE void tglBlitGeneric(BlitImage *blitImage, const BlitTransform &transform) {
|
2014-07-16 02:24:34 +02:00
|
|
|
if (disableTransform) {
|
|
|
|
tglBlitGenericNoTransform<disableBlending, disableColoring, flipVertical, flipHorizontal>(blitImage, transform._destinationRectangle.left, transform._destinationRectangle.top,
|
|
|
|
transform._sourceRectangle.left, transform._sourceRectangle.top, transform._sourceRectangle.width() , transform._sourceRectangle.height(),
|
|
|
|
transform._aTint, transform._rTint, transform._gTint, transform._bTint);
|
|
|
|
} else {
|
|
|
|
tglBlitGenericTransform<disableBlending, disableColoring, flipVertical, flipHorizontal>(blitImage, transform._destinationRectangle.left, transform._destinationRectangle.top,
|
|
|
|
transform._destinationRectangle.width(), transform._destinationRectangle.height(), transform._sourceRectangle.left, transform._sourceRectangle.top, transform._sourceRectangle.width() , transform._sourceRectangle.height(), transform._rotation,
|
|
|
|
transform._originX, transform._originY, transform._aTint, transform._rTint, transform._gTint, transform._bTint);
|
|
|
|
}
|
2014-07-07 18:17:54 +02:00
|
|
|
}
|
|
|
|
|
2014-07-07 21:14:58 +02:00
|
|
|
void tglBlit(BlitImage *blitImage, const BlitTransform &transform) {
|
2014-07-07 18:17:54 +02:00
|
|
|
TinyGL::GLContext *c =TinyGL::gl_get_context();
|
|
|
|
bool disableColor = transform._aTint == 1.0f && transform._bTint == 1.0f && transform._gTint == 1.0f && transform._rTint == 1.0f;
|
2014-07-07 21:14:58 +02:00
|
|
|
bool disableTransform = transform._destinationRectangle.width() == 0 && transform._destinationRectangle.height() == 0 && transform._rotation == 0;
|
2014-07-07 18:17:54 +02:00
|
|
|
bool disableBlend = c->enableBlend == false;
|
|
|
|
if (transform._flipHorizontally == false && transform._flipVertically == false) {
|
|
|
|
if (disableColor && disableTransform && disableBlend) {
|
2014-07-07 21:14:58 +02:00
|
|
|
tglBlitGeneric<true, true, true, false, false>(blitImage, transform);
|
2014-07-07 18:17:54 +02:00
|
|
|
} else if (disableColor && disableTransform) {
|
2014-07-07 21:14:58 +02:00
|
|
|
tglBlitGeneric<false, true, true, false, false>(blitImage, transform);
|
2014-07-07 18:17:54 +02:00
|
|
|
} else if (disableTransform) {
|
2014-07-07 21:14:58 +02:00
|
|
|
tglBlitGeneric<false, false, true, false, false>(blitImage, transform);
|
2014-07-07 18:17:54 +02:00
|
|
|
} else {
|
2014-07-07 21:14:58 +02:00
|
|
|
tglBlitGeneric<false, false, false, false, false>(blitImage, transform);
|
2014-07-07 18:17:54 +02:00
|
|
|
}
|
|
|
|
} else if (transform._flipHorizontally == false) {
|
2014-07-02 19:08:47 +02:00
|
|
|
if (disableColor && disableTransform && disableBlend) {
|
2014-07-07 21:14:58 +02:00
|
|
|
tglBlitGeneric<true, true, true, true, false>(blitImage, transform);
|
2014-07-02 19:08:47 +02:00
|
|
|
} else if (disableColor && disableTransform) {
|
2014-07-07 21:14:58 +02:00
|
|
|
tglBlitGeneric<false, true, true, true, false>(blitImage, transform);
|
2014-07-02 19:08:47 +02:00
|
|
|
} else if (disableTransform) {
|
2014-07-07 21:14:58 +02:00
|
|
|
tglBlitGeneric<false, false, true, true, false>(blitImage, transform);
|
2014-07-02 19:08:47 +02:00
|
|
|
} else {
|
2014-07-07 21:14:58 +02:00
|
|
|
tglBlitGeneric<false, false, false, true, false>(blitImage, transform);
|
2014-07-07 18:17:54 +02:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if (disableColor && disableTransform && disableBlend) {
|
2014-07-16 02:24:34 +02:00
|
|
|
tglBlitGeneric<true, true, true, false, true>(blitImage, transform);
|
2014-07-07 18:17:54 +02:00
|
|
|
} else if (disableColor && disableTransform) {
|
2014-07-16 02:24:34 +02:00
|
|
|
tglBlitGeneric<false, true, true, false, true>(blitImage, transform);
|
2014-07-07 18:17:54 +02:00
|
|
|
} else if (disableTransform) {
|
2014-07-16 02:24:34 +02:00
|
|
|
tglBlitGeneric<false, false, true, false, true>(blitImage, transform);
|
2014-07-07 18:17:54 +02:00
|
|
|
} else {
|
2014-07-16 02:24:34 +02:00
|
|
|
tglBlitGeneric<false, false, false, false, true>(blitImage, transform);
|
2014-07-02 19:08:47 +02:00
|
|
|
}
|
|
|
|
}
|
2014-07-07 18:17:54 +02:00
|
|
|
}
|
2014-07-02 19:08:47 +02:00
|
|
|
|
2014-07-07 21:14:58 +02:00
|
|
|
void tglBlitNoBlend(BlitImage *blitImage, const BlitTransform &transform) {
|
2014-07-07 18:17:54 +02:00
|
|
|
if (transform._flipHorizontally == false && transform._flipVertically == false) {
|
2014-07-07 21:14:58 +02:00
|
|
|
tglBlitGeneric<true, false, false, false, false>(blitImage, transform);
|
2014-07-07 18:17:54 +02:00
|
|
|
} else if(transform._flipHorizontally == false) {
|
2014-07-07 21:14:58 +02:00
|
|
|
tglBlitGeneric<true, false, false, true, false>(blitImage, transform);
|
2014-07-07 18:17:54 +02:00
|
|
|
} else {
|
2014-07-16 02:24:34 +02:00
|
|
|
tglBlitGeneric<true, false, false, false, true>(blitImage, transform);
|
2014-07-02 19:08:47 +02:00
|
|
|
}
|
2014-07-07 18:17:54 +02:00
|
|
|
}
|
2014-07-02 19:08:47 +02:00
|
|
|
|
2014-07-07 21:14:58 +02:00
|
|
|
void tglBlitFast(BlitImage *blitImage, int x, int y) {
|
2014-07-07 18:17:54 +02:00
|
|
|
BlitTransform transform(x, y);
|
2014-07-07 21:14:58 +02:00
|
|
|
tglBlitGeneric<true, true, true, false, false>(blitImage, transform);
|
2014-07-07 18:17:54 +02:00
|
|
|
}
|