| 8 | #include "types.h" |
| 9 | |
| 10 | J2DWindow::J2DWindow() |
| 11 | : J2DPane() |
| 12 | , mFrameTextureA(nullptr) |
| 13 | , mFrameTextureB(nullptr) |
| 14 | , mFrameTextureC(nullptr) |
| 15 | , mFrameTextureD(nullptr) |
| 16 | , mContentsTexture(nullptr) |
| 17 | , mPalette(nullptr) |
| 18 | { |
| 19 | mWrapFlags = 0; |
| 20 | setContentsColor(TCOLOR_WHITE_U32); |
| 21 | mBlack = TCOLOR_BLACK_U32; |
| 22 | mWhite = TCOLOR_WHITE_U32; |
| 23 | } |
| 24 | |
| 25 | J2DWindow::J2DWindow(J2DPane* parent, JSURandomInputStream* input, JKRArchive* archive) |
| 26 | : J2DPane() |
nothing calls this directly
no test coverage detected