| 141 | } |
| 142 | |
| 143 | bool TransformFloatImpl::is_identity() const { |
| 144 | return (scale_x == 1.0f && scale_y == 1.0f && offset_x == 0.0f && |
| 145 | offset_y == 0.0f && rotation == 0.0f); |
| 146 | } |
| 147 | |
| 148 | Matrix3x3f TransformFloat::compile() const { |
| 149 | Matrix3x3f out; |