This commit is contained in:
Chip Davis 2018-09-06 09:52:45 -05:00
Родитель 9e6469bd40
Коммит dbb98ffd81
1 изменённых файлов: 2 добавлений и 1 удалений

Просмотреть файл

@ -1294,7 +1294,8 @@ static inline bool type_is_floating_point(const SPIRType &type)
static inline bool type_is_integral(const SPIRType &type)
{
return type.basetype == SPIRType::Int || type.basetype == SPIRType::UInt || type.basetype == SPIRType::Int64 || type.basetype == SPIRType::UInt64;
return type.basetype == SPIRType::Int || type.basetype == SPIRType::UInt || type.basetype == SPIRType::Int64 ||
type.basetype == SPIRType::UInt64;
}
} // namespace spirv_cross