| 3544 | } |
| 3545 | |
| 3546 | cDimension cFodder::getSurfaceSize() const { |
| 3547 | if (!mParams->mWindowColumns || !mParams->mWindowRows) { |
| 3548 | if (mVersionCurrent) |
| 3549 | return mVersionCurrent->GetScreenSize(); |
| 3550 | |
| 3551 | return { 352, 364 }; |
| 3552 | } |
| 3553 | |
| 3554 | return { (unsigned int)(mParams->mWindowColumns + 2) * 16, (unsigned int)(mParams->mWindowRows + 2) * 16 }; |
| 3555 | } |
| 3556 | |
| 3557 | cDimension cFodder::getWindowSize() const { |
| 3558 |
nothing calls this directly
no test coverage detected