Fix minor warning in Xcode.

This commit is contained in:
Stephen Anthony 2019-12-20 10:23:54 -03:30
parent 578c19a588
commit d89e658d68
2 changed files with 9 additions and 6 deletions

View File

@ -21,16 +21,17 @@
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
BilinearBlitter::BilinearBlitter(FrameBufferSDL2& fb, bool interpolate) :
mySrcRect({0, 0, 0, 0}),
myDstRect({0, 0, 0, 0}),
myTexture(nullptr),
mySecondaryTexture(nullptr),
mySrcRect({0, 0, 0, 0}),
myDstRect({0, 0, 0, 0}),
myInterpolate(interpolate),
myTexturesAreAllocated(false),
myRecreateTextures(false),
myStaticData(nullptr),
myFB(fb)
{}
{
}
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
BilinearBlitter::~BilinearBlitter()

View File

@ -21,16 +21,18 @@
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
QisBlitter::QisBlitter(FrameBufferSDL2& fb) :
mySrcRect({0, 0, 0, 0}),
myDstRect({0, 0, 0, 0}),
mySrcTexture(nullptr),
myIntermediateTexture(nullptr),
mySecondaryIntermedateTexture(nullptr),
mySrcRect({0, 0, 0, 0}),
myIntermediateRect({0, 0, 0, 0}),
myDstRect({0, 0, 0, 0}),
myTexturesAreAllocated(false),
myRecreateTextures(false),
myStaticData(nullptr),
myFB(fb)
{}
{
}
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
QisBlitter::~QisBlitter()