Add ivec2 files

This commit is contained in:
Christopher Lang
2022-05-16 22:41:04 +01:00
parent f7f0f66193
commit 4c85b970a9
9 changed files with 108 additions and 0 deletions

15
src/ivec2.c Normal file
View 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_ivec2(int * __restrict v, ivec2 dest) {
glm_ivec2(v, dest);
}