mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-02-13 03:33:48 +00:00
Merge remote-tracking branch 'smally/platform_type_consistency' into platform-type-consistency
Conflicts: Engine/source/platform/platformCPUCount.cpp
This commit is contained in:
commit
87d9e245b7
210 changed files with 896 additions and 896 deletions
|
|
@ -796,11 +796,11 @@ bool GBitmap::combine( const GBitmap *bitmapA, const GBitmap *bitmapB, const GFX
|
|||
const U8 *aBits = bitmapA->getBits();
|
||||
const U8 *bBits = bitmapB->getBits();
|
||||
|
||||
for( int y = 0; y < getHeight(); y++ )
|
||||
for( S32 y = 0; y < getHeight(); y++ )
|
||||
{
|
||||
for( int x = 0; x < getWidth(); x++ )
|
||||
for( S32 x = 0; x < getWidth(); x++ )
|
||||
{
|
||||
for( int _byte = 0; _byte < mBytesPerPixel; _byte++ )
|
||||
for( S32 _byte = 0; _byte < mBytesPerPixel; _byte++ )
|
||||
{
|
||||
U8 pxA = 0;
|
||||
U8 pxB = 0;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue