mirror of https://github.com/stella-emu/stella.git
Add missing initialization.
This commit is contained in:
parent
ef10482291
commit
2b0204512e
|
@ -47,8 +47,12 @@ FBSurfaceSDL2::FBSurfaceSDL2(FrameBufferSDL2& buffer,
|
|||
: myFB(buffer),
|
||||
myInterpolationMode(interpolation),
|
||||
mySurface(nullptr),
|
||||
mySrcR({0, 0, 0, 0}),
|
||||
myDstR({0, 0, 0, 0}),
|
||||
myIsVisible(true),
|
||||
myIsStatic(false)
|
||||
myIsStatic(false),
|
||||
mySrcGUIR({0, 0, 0, 0}),
|
||||
myDstGUIR({0, 0, 0, 0})
|
||||
{
|
||||
createSurface(width, height, data);
|
||||
}
|
||||
|
|
|
@ -21,6 +21,8 @@
|
|||
|
||||
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
||||
BilinearBlitter::BilinearBlitter(FrameBufferSDL2& fb, bool interpolate) :
|
||||
mySrcRect({0, 0, 0, 0}),
|
||||
myDstRect({0, 0, 0, 0}),
|
||||
myTexture(nullptr),
|
||||
mySecondaryTexture(nullptr),
|
||||
myInterpolate(interpolate),
|
||||
|
|
|
@ -21,6 +21,8 @@
|
|||
|
||||
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
||||
QisBlitter::QisBlitter(FrameBufferSDL2& fb) :
|
||||
mySrcRect({0, 0, 0, 0}),
|
||||
myDstRect({0, 0, 0, 0}),
|
||||
mySrcTexture(nullptr),
|
||||
myIntermediateTexture(nullptr),
|
||||
mySecondaryIntermedateTexture(nullptr),
|
||||
|
|
Loading…
Reference in New Issue