| 719 | } |
| 720 | |
| 721 | void vtkOpenGLState::vtkglLineWidth(GLfloat val) |
| 722 | { |
| 723 | vtkOpenGLCheckStateMacro(); |
| 724 | auto& cs = this->Stack.top(); |
| 725 | |
| 726 | #ifndef NO_CACHE |
| 727 | if (cs.LineWidth != val) |
| 728 | #endif |
| 729 | { |
| 730 | cs.LineWidth = val; |
| 731 | ::glLineWidth(val); |
| 732 | } |
| 733 | vtkCheckOpenGLErrorsWithStack("glLineWidth"); |
| 734 | } |
| 735 | |
| 736 | void vtkOpenGLState::vtkglStencilMask(GLuint mask) |
| 737 | { |
no outgoing calls
no test coverage detected