diff options
author | Sebastian Valle <subv2112@gmail.com> | 2017-09-27 22:45:38 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-09-27 22:45:38 +0200 |
commit | 0d42706a7b50f0d2444d56932297480e4a4a3ae6 (patch) | |
tree | ac52819463dec69d83a82783e202da8148be3ba7 /src/video_core | |
parent | Merge pull request #2954 from Subv/cache_unmapped_mem (diff) | |
parent | Disable unary operator- on Math::Vec2/Vec3/Vec4 for unsigned types. (diff) | |
download | yuzu-0d42706a7b50f0d2444d56932297480e4a4a3ae6.tar yuzu-0d42706a7b50f0d2444d56932297480e4a4a3ae6.tar.gz yuzu-0d42706a7b50f0d2444d56932297480e4a4a3ae6.tar.bz2 yuzu-0d42706a7b50f0d2444d56932297480e4a4a3ae6.tar.lz yuzu-0d42706a7b50f0d2444d56932297480e4a4a3ae6.tar.xz yuzu-0d42706a7b50f0d2444d56932297480e4a4a3ae6.tar.zst yuzu-0d42706a7b50f0d2444d56932297480e4a4a3ae6.zip |
Diffstat (limited to 'src/video_core')
-rw-r--r-- | src/video_core/swrasterizer/clipper.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/video_core/swrasterizer/clipper.cpp b/src/video_core/swrasterizer/clipper.cpp index a52129eb7..c1ed48398 100644 --- a/src/video_core/swrasterizer/clipper.cpp +++ b/src/video_core/swrasterizer/clipper.cpp @@ -98,7 +98,7 @@ void ProcessTriangle(const OutputVertex& v0, const OutputVertex& v1, const Outpu auto FlipQuaternionIfOpposite = [](auto& a, const auto& b) { if (Math::Dot(a, b) < float24::Zero()) - a = -a; + a = a * float24::FromFloat32(-1.0f); }; // Flip the quaternions if they are opposite to prevent interpolating them over the wrong |