diff vecmattest.c @ 239:07c4f1a7ddc6

Make DMVector 16 bytes in size (4 floats), add SSE optimizations, move some functions to dmvecmat.h as static inline for speed, etc.
author Matti Hamalainen <ccr@tnsp.org>
date Tue, 09 Oct 2012 12:59:09 +0300
parents 32250b436bca
children 04c7e7cefddc
line wrap: on
line diff
--- a/vecmattest.c	Tue Oct 09 06:06:08 2012 +0300
+++ b/vecmattest.c	Tue Oct 09 12:59:09 2012 +0300
@@ -64,7 +64,7 @@
 
 int main(int argc, char *argv[])
 {
-    DMVector a = { -5, 1, 17 }, b = { 1, 2, 0.5 };
+    DMVector a = { -5, 1, 17, 0 }, b = { 1, 2, 0.5, 0 };
     DMMatrix m;
 
     (void) argc;