| 347 | } |
| 348 | |
| 349 | void RenderPointsObject::update_() |
| 350 | { |
| 351 | if ( cachedRenderDiscretization_ != objPoints_->getRenderDiscretization() ) |
| 352 | { |
| 353 | cachedRenderDiscretization_ = objPoints_->getRenderDiscretization(); |
| 354 | dirty_ |= DIRTY_POSITION; |
| 355 | dirty_ |= DIRTY_RENDER_NORMALS; |
| 356 | dirty_ |= DIRTY_VERTS_COLORMAP; |
| 357 | dirty_ |= DIRTY_SELECTION; |
| 358 | } |
| 359 | |
| 360 | dirty_ |= objPoints_->getDirtyFlags(); |
| 361 | objPoints_->resetDirty(); |
| 362 | } |
| 363 | |
| 364 | RenderBufferRef<VertId> RenderPointsObject::loadValidIndicesBuffer_() |
| 365 | { |
nothing calls this directly
no test coverage detected