diff options
author | aroulin <andy.roulin@epfl.ch> | 2015-08-23 22:03:07 +0200 |
---|---|---|
committer | aroulin <andy.roulin@epfl.ch> | 2015-08-23 22:03:07 +0200 |
commit | 03c5cfead4a6ad75097e736062b25f9a7e6082cd (patch) | |
tree | bc611c82bd9b68b24885e5d4611b3021c6501fe7 /src/video_core/shader | |
parent | Shader: RCP and RSQ computes only the 1st component (diff) | |
download | yuzu-03c5cfead4a6ad75097e736062b25f9a7e6082cd.tar yuzu-03c5cfead4a6ad75097e736062b25f9a7e6082cd.tar.gz yuzu-03c5cfead4a6ad75097e736062b25f9a7e6082cd.tar.bz2 yuzu-03c5cfead4a6ad75097e736062b25f9a7e6082cd.tar.lz yuzu-03c5cfead4a6ad75097e736062b25f9a7e6082cd.tar.xz yuzu-03c5cfead4a6ad75097e736062b25f9a7e6082cd.tar.zst yuzu-03c5cfead4a6ad75097e736062b25f9a7e6082cd.zip |
Diffstat (limited to 'src/video_core/shader')
-rw-r--r-- | src/video_core/shader/shader_interpreter.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/video_core/shader/shader_interpreter.cpp b/src/video_core/shader/shader_interpreter.cpp index 51fee6f97..76fda95f3 100644 --- a/src/video_core/shader/shader_interpreter.cpp +++ b/src/video_core/shader/shader_interpreter.cpp @@ -237,7 +237,7 @@ void RunInterpreter(UnitState<Debug>& state) { { Record<DebugDataRecord::SRC1>(state.debug, iteration, src1); Record<DebugDataRecord::DEST_IN>(state.debug, iteration, dest); - float24 rsq_res = float24::FromFloat32(1.0f / sqrt(src1[0].ToFloat32())); + float24 rsq_res = float24::FromFloat32(1.0f / std::sqrt(src1[0].ToFloat32())); for (int i = 0; i < 4; ++i) { if (!swizzle.DestComponentEnabled(i)) continue; |