curve: helper for calculate result of SMC multiplication

This commit is contained in:
Recep Aslantas
2019-01-26 18:06:26 +03:00
parent 32ddf49756
commit 60cb4beb0a
10 changed files with 140 additions and 3 deletions

View File

@@ -57,7 +57,8 @@ cglm_HEADERS = include/cglm/version.h \
include/cglm/color.h \
include/cglm/project.h \
include/cglm/sphere.h \
include/cglm/ease.h
include/cglm/ease.h \
include/cglm/curve.h
cglm_calldir=$(includedir)/cglm/call
cglm_call_HEADERS = include/cglm/call/mat4.h \
@@ -74,7 +75,8 @@ cglm_call_HEADERS = include/cglm/call/mat4.h \
include/cglm/call/box.h \
include/cglm/call/project.h \
include/cglm/call/sphere.h \
include/cglm/call/ease.h
include/cglm/call/ease.h \
include/cglm/call/curve.h
cglm_simddir=$(includedir)/cglm/simd
cglm_simd_HEADERS = include/cglm/simd/intrin.h \
@@ -109,7 +111,8 @@ libcglm_la_SOURCES=\
src/box.c \
src/project.c \
src/sphere.c \
src/ease.c
src/ease.c \
src/curve.c
test_tests_SOURCES=\
test/src/test_common.c \