summaryrefslogtreecommitdiff
path: root/src/video_core/rasterizer.cpp
diff options
context:
space:
mode:
authorGravatar bunnei2015-07-21 19:09:11 -0400
committerGravatar bunnei2015-08-15 17:33:42 -0400
commit18527b9e21a95445fbee45fea29f674fbdd2aae1 (patch)
treebf037c3877e288b561cd7f075c24d3ce8e449a85 /src/video_core/rasterizer.cpp
parentGPU: Refactor "VertexShader" namespace to "Shader". (diff)
downloadyuzu-18527b9e21a95445fbee45fea29f674fbdd2aae1.tar.gz
yuzu-18527b9e21a95445fbee45fea29f674fbdd2aae1.tar.xz
yuzu-18527b9e21a95445fbee45fea29f674fbdd2aae1.zip
Shader: Move shader code to its own subdirectory, "shader".
Diffstat (limited to 'src/video_core/rasterizer.cpp')
-rw-r--r--src/video_core/rasterizer.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/video_core/rasterizer.cpp b/src/video_core/rasterizer.cpp
index 4f94313df..b83798b0f 100644
--- a/src/video_core/rasterizer.cpp
+++ b/src/video_core/rasterizer.cpp
@@ -16,7 +16,7 @@
16#include "math.h" 16#include "math.h"
17#include "pica.h" 17#include "pica.h"
18#include "rasterizer.h" 18#include "rasterizer.h"
19#include "shader_interpreter.h" 19#include "shader/shader_interpreter.h"
20#include "video_core/utils.h" 20#include "video_core/utils.h"
21 21
22namespace Pica { 22namespace Pica {