------------------------------------------------------------------------------
| 2193 | |
| 2194 | //------------------------------------------------------------------------------ |
| 2195 | int vtkTextureObject::GetMaximumTextureSize(vtkOpenGLRenderWindow* context) |
| 2196 | { |
| 2197 | int maxSize = -1; |
| 2198 | if (context) |
| 2199 | { |
| 2200 | context->GetState()->vtkglGetIntegerv(GL_MAX_TEXTURE_SIZE, &maxSize); |
| 2201 | } |
| 2202 | |
| 2203 | return maxSize; |
| 2204 | } |
| 2205 | |
| 2206 | //------------------------------------------------------------------------------ |
| 2207 | int vtkTextureObject::GetMaximumTextureSize3D(vtkOpenGLRenderWindow* context) |
nothing calls this directly
no test coverage detected