mirror of
https://github.com/recp/cglm.git
synced 2025-12-24 20:34:58 +00:00
add new matrix mat3x4
Initial function being glm_mat3x4_make Signed-off-by: Vincent Davis Jr <vince@underview.tech>
This commit is contained in:
@@ -57,6 +57,18 @@ TEST_IMPL(mat3x2s_zero) {
|
||||
TEST_SUCCESS
|
||||
}
|
||||
|
||||
TEST_IMPL(mat3x4s_zero_init) {
|
||||
mat3x4s mat3x4_zero = GLMS_MAT3X4_ZERO_INIT;
|
||||
test_assert_mat3x4_eq_zero(mat3x4_zero.raw);
|
||||
TEST_SUCCESS
|
||||
}
|
||||
|
||||
TEST_IMPL(mat3x4s_zero) {
|
||||
mat3x4s mat3x4_zero = GLMS_MAT3X4_ZERO;
|
||||
test_assert_mat3x4_eq_zero(mat3x4_zero.raw);
|
||||
TEST_SUCCESS
|
||||
}
|
||||
|
||||
TEST_IMPL(mat4s_identity_init) {
|
||||
mat4s mat4_identity = GLMS_MAT4_IDENTITY_INIT;
|
||||
mat4 mat4_identity_a = GLM_MAT4_IDENTITY_INIT;
|
||||
|
||||
Reference in New Issue
Block a user