aboutsummaryrefslogtreecommitdiff
path: root/NvCloth/src/NvSimd/NvSimd4i.h
diff options
context:
space:
mode:
authorMarijn Tamis <[email protected]>2017-04-28 14:19:07 +0200
committerMarijn Tamis <[email protected]>2017-04-28 14:19:07 +0200
commitb350eb5f4d44e8448115796144375d79438d74ae (patch)
tree8e102e8c28f45a1b87bd335ceee4f33c3d4ee7c2 /NvCloth/src/NvSimd/NvSimd4i.h
parentAdd visual samples. (diff)
downloadnvcloth-b350eb5f4d44e8448115796144375d79438d74ae.tar.xz
nvcloth-b350eb5f4d44e8448115796144375d79438d74ae.zip
NvCloth 1.1.0 Release. (22041545)
Diffstat (limited to 'NvCloth/src/NvSimd/NvSimd4i.h')
-rw-r--r--NvCloth/src/NvSimd/NvSimd4i.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/NvCloth/src/NvSimd/NvSimd4i.h b/NvCloth/src/NvSimd/NvSimd4i.h
index 3da6169..7eda3f4 100644
--- a/NvCloth/src/NvSimd/NvSimd4i.h
+++ b/NvCloth/src/NvSimd/NvSimd4i.h
@@ -61,7 +61,10 @@ struct Simd4iTupleFactory
Simd4iTupleFactory(int x, int y, int z, int w)
// c++11: : tuple{ x, y, z, w }
{
- tuple[0] = x, tuple[1] = y, tuple[2] = z, tuple[3] = w;
+ tuple[0] = x;
+ tuple[1] = y;
+ tuple[2] = z;
+ tuple[3] = w;
}
Simd4iTupleFactory& operator = (const Simd4iTupleFactory&); // not implemented
inline operator Simd4i() const;