| 702 | } |
| 703 | |
| 704 | void vtkOpenGLState::vtkglPointSize(GLfloat val) |
| 705 | { |
| 706 | vtkOpenGLCheckStateMacro(); |
| 707 | auto& cs = this->Stack.top(); |
| 708 | |
| 709 | #ifndef NO_CACHE |
| 710 | if (cs.PointSize != val) |
| 711 | #endif |
| 712 | { |
| 713 | cs.PointSize = val; |
| 714 | #ifndef GL_ES_VERSION_3_0 |
| 715 | ::glPointSize(val); |
| 716 | #endif |
| 717 | } |
| 718 | vtkCheckOpenGLErrorsWithStack("glPointSize"); |
| 719 | } |
| 720 | |
| 721 | void vtkOpenGLState::vtkglLineWidth(GLfloat val) |
| 722 | { |
no outgoing calls
no test coverage detected