|
|
@@ -256,6 +256,15 @@ int main()
|
|
|
{
|
|
|
int Error = 0;
|
|
|
|
|
|
+#ifdef GLM_META_PROG_HELPERS
|
|
|
+ assert(glm::simdMat4::rows == glm::simdMat4::row_type::components);
|
|
|
+ assert(glm::simdMat4::cols == glm::simdMat4::col_type::components);
|
|
|
+
|
|
|
+ assert(glm::simdMat4::components == glm::simdMat4::pure_type::components);
|
|
|
+ assert(glm::simdMat4::rows == glm::simdMat4::pure_row_type::components);
|
|
|
+ assert(glm::simdMat4::cols == glm::simdMat4::pure_col_type::components);
|
|
|
+#endif
|
|
|
+
|
|
|
std::vector<glm::mat4> Data(64 * 64 * 1);
|
|
|
for(std::size_t i = 0; i < Data.size(); ++i)
|
|
|
Data[i] = glm::mat4(
|