Fixed build

This commit is contained in:
Christophe Riccio 2016-12-31 11:46:23 +01:00
parent 1671918bdb
commit 5aa2dfd465

View File

@ -285,7 +285,7 @@ namespace gli
return Format >= FORMAT_FIRST && Format <= FORMAT_LAST;
}
typedef glm::tvec4<swizzle> swizzles;
typedef glm::vec<4, swizzle> swizzles;
/// Evaluate whether a format is compressed
bool is_compressed(format Format);
@ -305,35 +305,35 @@ namespace gli
/// Return the number of components of a format
size_t component_count(format Format);
/// Evaluate whether a format is unsigned
bool is_unsigned(format Format);
/// Evaluate whether a format is unsigned
bool is_unsigned(format Format);
/// Evaluate whether a format is signed
bool is_signed(format Format);
/// Evaluate whether a format is signed
bool is_signed(format Format);
/// Evaluate whether the format is an integer format
bool is_integer(format Format);
/// Evaluate whether the format is an integer format
bool is_integer(format Format);
/// Evaluate whether the format is a signed integer format
bool is_signed_integer(format Format);
/// Evaluate whether the format is a signed integer format
bool is_signed_integer(format Format);
/// Evaluate whether the format is an unsigned integer format
bool is_unsigned_integer(format Format);
/// Evaluate whether the format is an unsigned integer format
bool is_unsigned_integer(format Format);
/// Evaluate whether the format is an float format
bool is_float(format Format);
/// Evaluate whether the format is an float format
bool is_float(format Format);
/// Evaluate whether the format is normalized
bool is_normalized(format Format);
/// Evaluate whether the format is normalized
bool is_normalized(format Format);
/// Evaluate whether the format is an unsigned normalized format
bool is_unorm(format Format);
/// Evaluate whether the format is an unsigned normalized format
bool is_unorm(format Format);
/// Evaluate whether the format is a signed normalized format
bool is_snorm(format Format);
/// Evaluate whether the format is a signed normalized format
bool is_snorm(format Format);
/// Evaluate whether the format is packed
bool is_packed(format Format);
/// Evaluate whether the format is packed
bool is_packed(format Format);
}//namespace gli