| 175 | } |
| 176 | |
| 177 | bool IsIntegerType(HLSLBaseType type) |
| 178 | { |
| 179 | NumericType n = baseTypeDescriptions[type].numericType; |
| 180 | return n == NumericType_Int || n == NumericType_Uint || |
| 181 | n == NumericType_Short || n == NumericType_Ushort || |
| 182 | n == NumericType_Long || n == NumericType_Ulong; |
| 183 | } |
| 184 | |
| 185 | bool IsInt(HLSLBaseType type) |
| 186 | { |
no outgoing calls
no test coverage detected