| 335 | } |
| 336 | |
| 337 | int32_t GetVectorDimension(HLSLBaseType type) |
| 338 | { |
| 339 | if (IsScalarType(type)) return 1; |
| 340 | if (!IsVectorType(type)) return 0; |
| 341 | |
| 342 | return baseTypeDescriptions[type].numComponents; |
| 343 | } |
| 344 | |
| 345 | HLSLBaseType HalfToFloatBaseType(HLSLBaseType type) |
| 346 | { |
no test coverage detected