mirror of
https://github.com/elasota/Aerofoil.git
synced 2025-09-24 07:06:36 +00:00
Demote scaled blit to TODO
This commit is contained in:
@@ -556,8 +556,12 @@ static void CopyBitsComplete(const BitMap *srcBitmap, const BitMap *maskBitmap,
|
|||||||
const size_t srcPitch = srcBitmap->m_pitch;
|
const size_t srcPitch = srcBitmap->m_pitch;
|
||||||
const size_t destPitch = destBitmap->m_pitch;
|
const size_t destPitch = destBitmap->m_pitch;
|
||||||
|
|
||||||
assert(srcRectBase->right - srcRectBase->left == destRectBase->right - destRectBase->left);
|
if (srcRectBase->right - srcRectBase->left != destRectBase->right - destRectBase->left ||
|
||||||
assert(srcRectBase->bottom - srcRectBase->top == destRectBase->bottom - destRectBase->top);
|
srcRectBase->bottom - srcRectBase->top != destRectBase->bottom - destRectBase->top)
|
||||||
|
{
|
||||||
|
PL_NotYetImplemented_TODO("ScaledBlit");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
if (maskBitmap)
|
if (maskBitmap)
|
||||||
{
|
{
|
||||||
|
Reference in New Issue
Block a user