------------------------------------------------------------------------------ Description: Display the read buffer.
| 1122 | // Description: |
| 1123 | // Display the read buffer. |
| 1124 | void vtkOpenGLFramebufferObject::DisplayReadBuffer() |
| 1125 | { |
| 1126 | GLint ivalue; |
| 1127 | glGetIntegerv(GL_READ_BUFFER, &ivalue); |
| 1128 | std::cout << "read buffer="; |
| 1129 | this->DisplayBuffer(ivalue); |
| 1130 | std::cout << endl; |
| 1131 | } |
| 1132 | |
| 1133 | //------------------------------------------------------------------------------ |
| 1134 | // Description: |
no test coverage detected