diff options
| author | 2015-07-21 19:04:05 -0400 | |
|---|---|---|
| committer | 2015-08-15 17:33:41 -0400 | |
| commit | 642b9b503040f7da02dcb2c52f3cd4cbf6fee4b2 (patch) | |
| tree | 85643112608a15fafc304d41c4457a50c453bfcd /src/video_core/clipper.cpp | |
| parent | Merge pull request #1027 from lioncash/debugger (diff) | |
| download | yuzu-642b9b503040f7da02dcb2c52f3cd4cbf6fee4b2.tar.gz yuzu-642b9b503040f7da02dcb2c52f3cd4cbf6fee4b2.tar.xz yuzu-642b9b503040f7da02dcb2c52f3cd4cbf6fee4b2.zip | |
GPU: Refactor "VertexShader" namespace to "Shader".
- Also renames "vertex_shader.*" to "shader_interpreter.*"
Diffstat (limited to 'src/video_core/clipper.cpp')
| -rw-r--r-- | src/video_core/clipper.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/video_core/clipper.cpp b/src/video_core/clipper.cpp index 558b49d60..e397ca2e8 100644 --- a/src/video_core/clipper.cpp +++ b/src/video_core/clipper.cpp | |||
| @@ -7,7 +7,7 @@ | |||
| 7 | #include "clipper.h" | 7 | #include "clipper.h" |
| 8 | #include "pica.h" | 8 | #include "pica.h" |
| 9 | #include "rasterizer.h" | 9 | #include "rasterizer.h" |
| 10 | #include "vertex_shader.h" | 10 | #include "shader_interpreter.h" |
| 11 | 11 | ||
| 12 | namespace Pica { | 12 | namespace Pica { |
| 13 | 13 | ||