mirror of
https://github.com/recp/cglm.git
synced 2025-12-24 12:32:40 +00:00
add new matrix mat2x4
Initial function being glm_mat2x4_make Signed-off-by: Vincent Davis Jr <vince@underview.tech>
This commit is contained in:
15
src/mat2x4.c
Normal file
15
src/mat2x4.c
Normal file
@@ -0,0 +1,15 @@
|
||||
/*
|
||||
* Copyright (c), Recep Aslantas.
|
||||
*
|
||||
* MIT License (MIT), http://opensource.org/licenses/MIT
|
||||
* Full license can be found in the LICENSE file
|
||||
*/
|
||||
|
||||
#include "../include/cglm/cglm.h"
|
||||
#include "../include/cglm/call.h"
|
||||
|
||||
CGLM_EXPORT
|
||||
void
|
||||
glmc_mat2x4_make(float * __restrict src, mat2x4 dest) {
|
||||
glm_mat2x4_make(src, dest);
|
||||
}
|
||||
Reference in New Issue
Block a user