| 207 | } |
| 208 | |
| 209 | bool ILType::IsUIntVector() |
| 210 | { |
| 211 | auto basicType = dynamic_cast<ILBasicType*>(this); |
| 212 | if (basicType) |
| 213 | return basicType->Type == ILBaseType::UInt2 || basicType->Type == ILBaseType::UInt3 || basicType->Type == ILBaseType::UInt4; |
| 214 | else |
| 215 | return false; |
| 216 | } |
| 217 | |
| 218 | bool ILType::IsFloatVector() |
| 219 | { |
no outgoing calls
no test coverage detected