| 270 | } |
| 271 | |
| 272 | void font_impl::setOthro2D(int pWidth, int pHeight) |
| 273 | { |
| 274 | mOrthoW = pWidth; |
| 275 | mOrthoH = pHeight; |
| 276 | mProjMat = glm::ortho(0.0f, float(mOrthoW), 0.0f, float(mOrthoH)); |
| 277 | } |
| 278 | |
| 279 | void font_impl::loadFont(const char* const pFile) |
| 280 | { |
no outgoing calls
no test coverage detected