Example #1
0
int main()
{
	int Error(0);

	Error += test_decl();
	Error += perf_mul();

	return Error;
}
int main()
{
    int Error = 0;

    Error += test_ctr();
    Error += test_inverse_dmat4x4();
    Error += test_inverse_mat4x4();
    Error += test_operators();
    Error += test_inverse();

    Error += perf_mul();

    return Error;
}
Example #3
0
int main()
{
	int Error = 0;

	repro Repro;

	Error += cast::test();
	Error += test_ctr();
	Error += test_inverse_dmat4x4();
	Error += test_inverse_mat4x4();
	Error += test_operators();
	Error += test_inverse();
	Error += test_size();

	Error += perf_mul();

	return Error;
}
Example #4
0
int main()
{
	int Error = 0;

	repro Repro;

#ifdef GLM_META_PROG_HELPERS
		assert(glm::mat4::rows == glm::mat4::row_type::components);
		assert(glm::mat4::cols == glm::mat4::col_type::components);
#endif

	Error += cast::test();
	Error += test_ctr();
	Error += test_inverse_dmat4x4();
	Error += test_inverse_mat4x4();
	Error += test_operators();
	Error += test_inverse();

	Error += perf_mul();

	return Error;
}