From 2252a63f8036cdf2612243271ce29e6104f82825 Mon Sep 17 00:00:00 2001 From: wwylele Date: Thu, 3 Aug 2017 12:01:31 +0300 Subject: [PATCH] SwRasterizer/Lighting: shorten file name --- src/video_core/CMakeLists.txt | 4 ++-- .../swrasterizer/{fragment_lighting.cpp => lighting.cpp} | 2 +- .../swrasterizer/{fragment_lighting.h => lighting.h} | 0 src/video_core/swrasterizer/rasterizer.cpp | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) rename src/video_core/swrasterizer/{fragment_lighting.cpp => lighting.cpp} (99%) rename src/video_core/swrasterizer/{fragment_lighting.h => lighting.h} (100%) 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 shader/shader.cpp shader/shader_interpreter.cpp swrasterizer/clipper.cpp - swrasterizer/fragment_lighting.cpp swrasterizer/framebuffer.cpp + swrasterizer/lighting.cpp swrasterizer/proctex.cpp swrasterizer/rasterizer.cpp swrasterizer/swrasterizer.cpp @@ -55,8 +55,8 @@ set(HEADERS shader/shader.h shader/shader_interpreter.h swrasterizer/clipper.h - swrasterizer/fragment_lighting.h swrasterizer/framebuffer.h + swrasterizer/lighting.h swrasterizer/proctex.h swrasterizer/rasterizer.h swrasterizer/swrasterizer.h diff --git a/src/video_core/swrasterizer/fragment_lighting.cpp b/src/video_core/swrasterizer/lighting.cpp similarity index 99% rename from src/video_core/swrasterizer/fragment_lighting.cpp rename to 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 similarity index 100% rename from src/video_core/swrasterizer/fragment_lighting.h rename to 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"