| 317 | } |
| 318 | |
| 319 | bool isPropertyComponentTypeInteger(PropertyComponentType componentType) { |
| 320 | return componentType == PropertyComponentType::Int8 || |
| 321 | componentType == PropertyComponentType::Uint8 || |
| 322 | componentType == PropertyComponentType::Int16 || |
| 323 | componentType == PropertyComponentType::Uint16 || |
| 324 | componentType == PropertyComponentType::Int32 || |
| 325 | componentType == PropertyComponentType::Uint32 || |
| 326 | componentType == PropertyComponentType::Int64 || |
| 327 | componentType == PropertyComponentType::Uint64; |
| 328 | } |
| 329 | |
| 330 | glm::length_t getDimensionsFromPropertyType(PropertyType type) { |
| 331 | switch (type) { |
no outgoing calls
no test coverage detected