| 10 | using namespace gte; |
| 11 | |
| 12 | BaseEngine::BaseEngine() |
| 13 | : |
| 14 | mXSize(0), |
| 15 | mYSize(0), |
| 16 | mClearDepth(1.0f), |
| 17 | mClearStencil(0) |
| 18 | { |
| 19 | mClearColor.fill(1.0f); |
| 20 | } |
| 21 | |
| 22 | void BaseEngine::SetFont(std::shared_ptr<Font> const& font) |
| 23 | { |
nothing calls this directly
no outgoing calls
no test coverage detected