| 226 | } |
| 227 | |
| 228 | bool ILType::IsFloatMatrix() |
| 229 | { |
| 230 | auto basicType = dynamic_cast<ILBasicType*>(this); |
| 231 | if (basicType) |
| 232 | return basicType->Type == ILBaseType::Float3x3 || basicType->Type == ILBaseType::Float4x4; |
| 233 | else |
| 234 | return false; |
| 235 | } |
| 236 | |
| 237 | bool ILType::IsNonShadowTexture() |
| 238 | { |
no outgoing calls
no test coverage detected