mirror of
https://github.com/recp/cglm.git
synced 2026-02-17 03:39:05 +00:00
Initial function being glm_mat3x4_make Signed-off-by: Vincent Davis Jr <vince@underview.tech>
16 lines
325 B
C
16 lines
325 B
C
/*
|
|
* 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_mat3x4_make(float * __restrict src, mat3x4 dest) {
|
|
glm_mat3x4_make(src, dest);
|
|
}
|