| 99 | |
| 100 | |
| 101 | bool |
| 102 | SimpleRenderer::get_matrix (ShaderGlobals *sg, Matrix44 &result, |
| 103 | TransformationPtr xform, |
| 104 | float time) |
| 105 | { |
| 106 | // SimpleRenderer doesn't understand motion blur and transformations |
| 107 | // are just simple 4x4 matrices. |
| 108 | result = *reinterpret_cast<const Matrix44*>(xform); |
| 109 | return true; |
| 110 | } |
| 111 | |
| 112 | |
| 113 |