diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2024-04-04 14:31:02 +0200 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2024-04-04 14:31:02 +0200 |
commit | acfcdbd291174ea6a03ca77cf374dda9f2b300ff (patch) | |
tree | f001960b859c27dcecae15fccef5658ec528b715 /thirdparty/embree/common/simd/varying.h | |
parent | 2c65bf0d6986b420ec20393fa27f7c38f0814082 (diff) | |
parent | c43eab55a417162624f47aed6bbbd0a4bd41c607 (diff) | |
download | redot-engine-acfcdbd291174ea6a03ca77cf374dda9f2b300ff.tar.gz |
Merge pull request #88783 from Chubercik/embree-4.3.1
embree: Update to 4.3.1
Diffstat (limited to 'thirdparty/embree/common/simd/varying.h')
-rw-r--r-- | thirdparty/embree/common/simd/varying.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/thirdparty/embree/common/simd/varying.h b/thirdparty/embree/common/simd/varying.h index 9b98d326be..20fd3cac48 100644 --- a/thirdparty/embree/common/simd/varying.h +++ b/thirdparty/embree/common/simd/varying.h @@ -15,7 +15,7 @@ namespace embree __forceinline const float& operator [](size_t index) const { assert(index < N); return f[index]; } __forceinline float& operator [](size_t index) { assert(index < N); return f[index]; } }; - + template<int N> struct vdouble_impl { @@ -31,7 +31,7 @@ namespace embree __forceinline const int& operator [](size_t index) const { assert(index < N); return i[index]; } __forceinline int& operator [](size_t index) { assert(index < N); return i[index]; } }; - + template<int N> struct vuint_impl { |