diff options
Diffstat (limited to 'src/video_core/primitive_assembly.h')
| -rw-r--r-- | src/video_core/primitive_assembly.h | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/src/video_core/primitive_assembly.h b/src/video_core/primitive_assembly.h new file mode 100644 index 000000000..2a2b0c170 --- /dev/null +++ b/src/video_core/primitive_assembly.h | |||
| @@ -0,0 +1,21 @@ | |||
| 1 | // Copyright 2014 Citra Emulator Project | ||
| 2 | // Licensed under GPLv2 | ||
| 3 | // Refer to the license.txt file included. | ||
| 4 | |||
| 5 | #pragma once | ||
| 6 | |||
| 7 | namespace Pica { | ||
| 8 | |||
| 9 | namespace VertexShader { | ||
| 10 | struct OutputVertex; | ||
| 11 | } | ||
| 12 | |||
| 13 | namespace PrimitiveAssembly { | ||
| 14 | |||
| 15 | using VertexShader::OutputVertex; | ||
| 16 | |||
| 17 | void SubmitVertex(OutputVertex& vtx); | ||
| 18 | |||
| 19 | } // namespace | ||
| 20 | |||
| 21 | } // namespace | ||