| 216 | } |
| 217 | |
| 218 | bool ILType::IsFloatVector() |
| 219 | { |
| 220 | auto basicType = dynamic_cast<ILBasicType*>(this); |
| 221 | if (basicType) |
| 222 | return basicType->Type == ILBaseType::Float2 || basicType->Type == ILBaseType::Float3 || basicType->Type == ILBaseType::Float4 || |
| 223 | basicType->Type == ILBaseType::Float3x3 || basicType->Type == ILBaseType::Float4x4; |
| 224 | else |
| 225 | return false; |
| 226 | } |
| 227 | |
| 228 | bool ILType::IsFloatMatrix() |
| 229 | { |
no outgoing calls
no test coverage detected