| 186 | } |
| 187 | |
| 188 | void Window::postProcess() |
| 189 | { |
| 190 | if(mFadePercent > 0.0f) |
| 191 | { |
| 192 | Renderer::setMatrix(Eigen::Affine3f::Identity()); |
| 193 | Renderer::drawRect(0, 0, Renderer::getScreenWidth(), Renderer::getScreenHeight(), 0x00000000 | ((unsigned char)(mFadePercent * 255))); |
| 194 | } |
| 195 | } |
nothing calls this directly
no test coverage detected