| 42 | virtual void SetPVWMatrixConstant(std::shared_ptr<ConstantBuffer> const& buffer); |
| 43 | |
| 44 | inline void SetWMatrix(Matrix4x4<float> const& wMatrix) |
| 45 | { |
| 46 | *mWMatrixConstant->Get<Matrix4x4<float>>() = wMatrix; |
| 47 | } |
| 48 | |
| 49 | inline Matrix4x4<float> const& GetWMatrix() const |
| 50 | { |