diff options
| author | 2015-08-15 18:26:12 -0400 | |
|---|---|---|
| committer | 2015-08-15 18:26:12 -0400 | |
| commit | d852c4ecc71f800b552978362947a5eb5a524694 (patch) | |
| tree | 9ea9a86da4027126914e69b12c24d2849fdb2c2d /src/video_core/primitive_assembly.cpp | |
| parent | Merge pull request #1027 from lioncash/debugger (diff) | |
| parent | Shader: Use a POD struct for registers. (diff) | |
| download | yuzu-d852c4ecc71f800b552978362947a5eb5a524694.tar.gz yuzu-d852c4ecc71f800b552978362947a5eb5a524694.tar.xz yuzu-d852c4ecc71f800b552978362947a5eb5a524694.zip | |
Merge pull request #1002 from bunnei/shader-jit
Vertex Shader JIT for X86-64
Diffstat (limited to 'src/video_core/primitive_assembly.cpp')
| -rw-r--r-- | src/video_core/primitive_assembly.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/video_core/primitive_assembly.cpp b/src/video_core/primitive_assembly.cpp index 2f22bdcce..e2b1df44c 100644 --- a/src/video_core/primitive_assembly.cpp +++ b/src/video_core/primitive_assembly.cpp | |||
| @@ -4,7 +4,7 @@ | |||
| 4 | 4 | ||
| 5 | #include "pica.h" | 5 | #include "pica.h" |
| 6 | #include "primitive_assembly.h" | 6 | #include "primitive_assembly.h" |
| 7 | #include "vertex_shader.h" | 7 | #include "shader/shader_interpreter.h" |
| 8 | 8 | ||
| 9 | #include "common/logging/log.h" | 9 | #include "common/logging/log.h" |
| 10 | #include "video_core/debug_utils/debug_utils.h" | 10 | #include "video_core/debug_utils/debug_utils.h" |
| @@ -56,7 +56,7 @@ void PrimitiveAssembler<VertexType>::SubmitVertex(VertexType& vtx, TriangleHandl | |||
| 56 | 56 | ||
| 57 | // explicitly instantiate use cases | 57 | // explicitly instantiate use cases |
| 58 | template | 58 | template |
| 59 | struct PrimitiveAssembler<VertexShader::OutputVertex>; | 59 | struct PrimitiveAssembler<Shader::OutputVertex>; |
| 60 | template | 60 | template |
| 61 | struct PrimitiveAssembler<DebugUtils::GeometryDumper::Vertex>; | 61 | struct PrimitiveAssembler<DebugUtils::GeometryDumper::Vertex>; |
| 62 | 62 | ||