| 1445 | } |
| 1446 | |
| 1447 | void vtkOpenGLState::Push() |
| 1448 | { |
| 1449 | vtkOpenGLRenderUtilities::MarkDebugEvent("Pushing OpenGL State"); |
| 1450 | this->Stack.push(this->Stack.top()); |
| 1451 | this->PushFramebufferBindings(); |
| 1452 | vtkOpenGLRenderUtilities::MarkDebugEvent("Finished Pushing OpenGL State"); |
| 1453 | } |
| 1454 | |
| 1455 | void vtkOpenGLState::Pop() |
| 1456 | { |
no test coverage detected