| 567 | } |
| 568 | |
| 569 | void SetTransform(const Rml::Matrix4f* transform) override { |
| 570 | transform_ = transform ? *transform : Rml::Matrix4f::Identity(); |
| 571 | recalculate_mvp(); |
| 572 | } |
| 573 | |
| 574 | void recalculate_mvp() { |
| 575 | mvp_ = projection_mtx_ * transform_; |
nothing calls this directly
no outgoing calls
no test coverage detected