summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/video_core/CMakeLists.txt4
-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
4 files changed, 4 insertions, 4 deletions
diff --git a/src/video_core/CMakeLists.txt b/src/video_core/CMakeLists.txt
index b2280f2ef..cffa4c952 100644
--- a/src/video_core/CMakeLists.txt
+++ b/src/video_core/CMakeLists.txt
@@ -14,8 +14,8 @@ set(SRCS
14 shader/shader.cpp 14 shader/shader.cpp
15 shader/shader_interpreter.cpp 15 shader/shader_interpreter.cpp
16 swrasterizer/clipper.cpp 16 swrasterizer/clipper.cpp
17 swrasterizer/fragment_lighting.cpp
18 swrasterizer/framebuffer.cpp 17 swrasterizer/framebuffer.cpp
18 swrasterizer/lighting.cpp
19 swrasterizer/proctex.cpp 19 swrasterizer/proctex.cpp
20 swrasterizer/rasterizer.cpp 20 swrasterizer/rasterizer.cpp
21 swrasterizer/swrasterizer.cpp 21 swrasterizer/swrasterizer.cpp
@@ -55,8 +55,8 @@ set(HEADERS
55 shader/shader.h 55 shader/shader.h
56 shader/shader_interpreter.h 56 shader/shader_interpreter.h
57 swrasterizer/clipper.h 57 swrasterizer/clipper.h
58 swrasterizer/fragment_lighting.h
59 swrasterizer/framebuffer.h 58 swrasterizer/framebuffer.h
59 swrasterizer/lighting.h
60 swrasterizer/proctex.h 60 swrasterizer/proctex.h
61 swrasterizer/rasterizer.h 61 swrasterizer/rasterizer.h
62 swrasterizer/swrasterizer.h 62 swrasterizer/swrasterizer.h
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 @@
3// Refer to the license.txt file included. 3// Refer to the license.txt file included.
4 4
5#include "common/math_util.h" 5#include "common/math_util.h"
6#include "video_core/swrasterizer/fragment_lighting.h" 6#include "video_core/swrasterizer/lighting.h"
7 7
8namespace Pica { 8namespace Pica {
9 9
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 @@
24#include "video_core/regs_rasterizer.h" 24#include "video_core/regs_rasterizer.h"
25#include "video_core/regs_texturing.h" 25#include "video_core/regs_texturing.h"
26#include "video_core/shader/shader.h" 26#include "video_core/shader/shader.h"
27#include "video_core/swrasterizer/fragment_lighting.h"
28#include "video_core/swrasterizer/framebuffer.h" 27#include "video_core/swrasterizer/framebuffer.h"
28#include "video_core/swrasterizer/lighting.h"
29#include "video_core/swrasterizer/proctex.h" 29#include "video_core/swrasterizer/proctex.h"
30#include "video_core/swrasterizer/rasterizer.h" 30#include "video_core/swrasterizer/rasterizer.h"
31#include "video_core/swrasterizer/texturing.h" 31#include "video_core/swrasterizer/texturing.h"