| 241 | } |
| 242 | |
| 243 | bool IsNumericType(HLSLBaseType baseType) |
| 244 | { |
| 245 | return IsVectorType(baseType) || IsScalarType(baseType) || IsMatrixType(baseType); |
| 246 | } |
| 247 | |
| 248 | HLSLBufferType ConvertTokenToBufferType(HLSLToken token) |
| 249 | { |
no test coverage detected