| 151 | } |
| 152 | |
| 153 | void OGLContext::SetClearColor(dp::Color const & color) |
| 154 | { |
| 155 | GLFunctions::glClearColor(color.GetRedF(), color.GetGreenF(), color.GetBlueF(), color.GetAlphaF()); |
| 156 | } |
| 157 | |
| 158 | void OGLContext::Clear(uint32_t clearBits, uint32_t storeBits) |
| 159 | { |
no test coverage detected