| 243 | } |
| 244 | |
| 245 | void IGraphicsContext::ClearColBufferAndDepth(const c32 & colour) |
| 246 | { |
| 247 | sceGuClearColor(colour.GetColour()); |
| 248 | sceGuClearDepth(0); |
| 249 | sceGuClear(GU_COLOR_BUFFER_BIT | GU_DEPTH_BUFFER_BIT | GU_FAST_CLEAR_BIT); |
| 250 | } |
| 251 | |
| 252 | //***************************************************************************** |
| 253 | // |
no test coverage detected