| 329 | } |
| 330 | |
| 331 | HLSLBaseType GetScalarType(HLSLBaseType type) |
| 332 | { |
| 333 | ASSERT(IsNumericType(type)); |
| 334 | return NumericToBaseType(baseTypeDescriptions[type].numericType); |
| 335 | } |
| 336 | |
| 337 | int32_t GetVectorDimension(HLSLBaseType type) |
| 338 | { |
no test coverage detected