summaryrefslogtreecommitdiff
path: root/src/math/vec4.c
diff options
context:
space:
mode:
authorchai <chaifix@163.com>2019-12-08 00:23:50 +0800
committerchai <chaifix@163.com>2019-12-08 00:23:50 +0800
commit3df29dc54c509c983dc8a0e23eab4160d48144f2 (patch)
treed8c5287c9979e731e373e7a1481aadd79d3f071b /src/math/vec4.c
parent8e684dc0c76708e3174f005aebcaabc144b85500 (diff)
+clipping
Diffstat (limited to 'src/math/vec4.c')
-rw-r--r--src/math/vec4.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/math/vec4.c b/src/math/vec4.c
index 4216a08..ca64820 100644
--- a/src/math/vec4.c
+++ b/src/math/vec4.c
@@ -4,7 +4,7 @@
#include "../util/assert.h"
#include "../core/mem.h"
-
+Vec4 vec4zero = { 0, 0, 0,0 };
void vec4_dividew(Vec4* v, Vec3* out) {
ssr_assert(out && v);