summaryrefslogtreecommitdiffstats
path: root/src/video_core/swrasterizer
diff options
context:
space:
mode:
authorwwylele <wwylele@gmail.com>2017-08-03 11:01:31 +0200
committerwwylele <wwylele@gmail.com>2017-08-03 12:51:22 +0200
commit2252a63f8036cdf2612243271ce29e6104f82825 (patch)
treeca34b8b22a70abb0a5b172e1463dd2aac83d8a67 /src/video_core/swrasterizer
parentSwRasterizer/Lighting: move to its own file (diff)
downloadyuzu-2252a63f8036cdf2612243271ce29e6104f82825.tar
yuzu-2252a63f8036cdf2612243271ce29e6104f82825.tar.gz
yuzu-2252a63f8036cdf2612243271ce29e6104f82825.tar.bz2
yuzu-2252a63f8036cdf2612243271ce29e6104f82825.tar.lz
yuzu-2252a63f8036cdf2612243271ce29e6104f82825.tar.xz
yuzu-2252a63f8036cdf2612243271ce29e6104f82825.tar.zst
yuzu-2252a63f8036cdf2612243271ce29e6104f82825.zip
Diffstat (limited to 'src/video_core/swrasterizer')
-rw-r--r--src/video_core/swrasterizer/lighting.cpp (renamed from src/video_core/swrasterizer/fragment_lighting.cpp)2
-rw-r--r--src/video_core/swrasterizer/lighting.h (renamed from src/video_core/swrasterizer/fragment_lighting.h)0
-rw-r--r--src/video_core/swrasterizer/rasterizer.cpp2
3 files changed, 2 insertions, 2 deletions
diff --git a/src/video_core/swrasterizer/fragment_lighting.cpp b/src/video_core/swrasterizer/lighting.cpp
index 45a86b5cd..63088eee8 100644
--- a/src/video_core/swrasterizer/fragment_lighting.cpp
+++ b/src/video_core/swrasterizer/lighting.cpp
@@ -3,7 +3,7 @@
// Refer to the license.txt file included.
#include "common/math_util.h"
-#include "video_core/swrasterizer/fragment_lighting.h"
+#include "video_core/swrasterizer/lighting.h"
namespace Pica {
diff --git a/src/video_core/swrasterizer/fragment_lighting.h b/src/video_core/swrasterizer/lighting.h
index 438dca926..438dca926 100644
--- a/src/video_core/swrasterizer/fragment_lighting.h
+++ b/src/video_core/swrasterizer/lighting.h
diff --git a/src/video_core/swrasterizer/rasterizer.cpp b/src/video_core/swrasterizer/rasterizer.cpp
index bc7e1c56c..fdc1df199 100644
--- a/src/video_core/swrasterizer/rasterizer.cpp
+++ b/src/video_core/swrasterizer/rasterizer.cpp
@@ -24,8 +24,8 @@
#include "video_core/regs_rasterizer.h"
#include "video_core/regs_texturing.h"
#include "video_core/shader/shader.h"
-#include "video_core/swrasterizer/fragment_lighting.h"
#include "video_core/swrasterizer/framebuffer.h"
+#include "video_core/swrasterizer/lighting.h"
#include "video_core/swrasterizer/proctex.h"
#include "video_core/swrasterizer/rasterizer.h"
#include "video_core/swrasterizer/texturing.h"