This website works better with JavaScript.
Home
Help
Sign In
VCVRack
/
Rack
mirror of
https://github.com/VCVRack/Rack.git
Watch
1
Star
0
Fork
0
Code
Issues
0
Releases
38
Wiki
Activity
Browse Source
Rename scalar array in simd::Vector.
tags/v1.0.0
Andrew Belt
5 years ago
parent
aa088e369a
commit
4b3508bf4a
1 changed files
with
3 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+3
-1
include/simd/vector.hpp
+ 3
- 1
include/simd/vector.hpp
View File
@@ -50,7 +50,9 @@ template <>
struct Vector<float, 4> {
union {
__m128 v;
float f[4];
/** Accessing this array of scalars is slow and defeats the purpose of vectorizing.
*/
float s[4];
};
/** Constructs an uninitialized vector. */
Write
Preview
Loading…
Cancel
Save