Support for hierarchical culling.
| 71 | |
| 72 | // Support for hierarchical culling. |
| 73 | inline virtual void GetVisibleSet(Culler& culler, |
| 74 | std::shared_ptr<Camera> const& camera, bool noCull) override |
| 75 | { |
| 76 | (void)camera; |
| 77 | (void)noCull; |
| 78 | culler.Insert(this); |
| 79 | } |
| 80 | |
| 81 | std::shared_ptr<VertexBuffer> mVBuffer; |
| 82 | std::shared_ptr<IndexBuffer> mIBuffer; |