| 147 | } |
| 148 | |
| 149 | bool IsNumericTypeEqual(HLSLBaseType lhsType, HLSLBaseType rhsType) |
| 150 | { |
| 151 | return baseTypeDescriptions[lhsType].numericType == |
| 152 | baseTypeDescriptions[rhsType].numericType; |
| 153 | } |
| 154 | |
| 155 | // TODO: with so many types, should just request the numeric type |
| 156 | bool IsHalf(HLSLBaseType type) |
no outgoing calls
no test coverage detected