| 566 | } |
| 567 | |
| 568 | void GLStateCacheManager::setPointSize(GLfloat size) |
| 569 | { |
| 570 | #ifdef OGRE_ENABLE_STATE_CACHE |
| 571 | if (mPointSize != size) |
| 572 | #endif |
| 573 | { |
| 574 | mPointSize = size; |
| 575 | glPointSize(mPointSize); |
| 576 | } |
| 577 | } |
| 578 | |
| 579 | void GLStateCacheManager::setPointParameters(const GLfloat *attenuation, float minSize, float maxSize) |
| 580 | { |
no outgoing calls
no test coverage detected