summaryrefslogtreecommitdiffstats
path: root/src/video_core/swrasterizer
diff options
context:
space:
mode:
authorSubv <subv2112@gmail.com>2017-06-09 22:24:28 +0200
committerwwylele <wwylele@gmail.com>2017-07-11 18:39:15 +0200
commit80b6fc592e3a2f5821975e84b5df35f5dc4ae51a (patch)
treecad65ac28cacd3fea21fac1c73439933d0ff179a /src/video_core/swrasterizer
parentSwRasterizer: Calculate fresnel for fragment lighting. (diff)
downloadyuzu-80b6fc592e3a2f5821975e84b5df35f5dc4ae51a.tar
yuzu-80b6fc592e3a2f5821975e84b5df35f5dc4ae51a.tar.gz
yuzu-80b6fc592e3a2f5821975e84b5df35f5dc4ae51a.tar.bz2
yuzu-80b6fc592e3a2f5821975e84b5df35f5dc4ae51a.tar.lz
yuzu-80b6fc592e3a2f5821975e84b5df35f5dc4ae51a.tar.xz
yuzu-80b6fc592e3a2f5821975e84b5df35f5dc4ae51a.tar.zst
yuzu-80b6fc592e3a2f5821975e84b5df35f5dc4ae51a.zip
Diffstat (limited to 'src/video_core/swrasterizer')
-rw-r--r--src/video_core/swrasterizer/rasterizer.cpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/video_core/swrasterizer/rasterizer.cpp b/src/video_core/swrasterizer/rasterizer.cpp
index 2d1daa24a..2b85ac86c 100644
--- a/src/video_core/swrasterizer/rasterizer.cpp
+++ b/src/video_core/swrasterizer/rasterizer.cpp
@@ -117,7 +117,9 @@ static std::tuple<float24, float24, PAddr> ConvertCubeCoord(float24 u, float24 v
float LookupLightingLut(size_t lut_index, float index) {
- unsigned index_i = static_cast<unsigned>(MathUtil::Clamp(floor(index * 256), 0.0f, 1.0f));
+ index *= 256;
+
+ unsigned index_i = static_cast<unsigned>(MathUtil::Clamp(floor(index), 0.0f, 255.0f));
float index_f = index - index_i;
@@ -126,7 +128,7 @@ float LookupLightingLut(size_t lut_index, float index) {
float lut_value = g_state.lighting.luts[lut_index][index_i].ToFloat();
float lut_diff = g_state.lighting.luts[lut_index][index_i].DiffToFloat();
- return lut_value + lut_diff * index_f;
+ return lut_value + lut_diff * index_f / 256.f;
}
std::tuple<Math::Vec4<u8>, Math::Vec4<u8>> ComputeFragmentsColors(const Math::Quaternion<float>& normquat, const Math::Vec3<float>& view) {