diff options
| author | 2017-01-28 15:59:36 -0800 | |
|---|---|---|
| committer | 2017-02-12 18:08:11 -0800 | |
| commit | e24717bca04a51fe185e5dbbb4918e31c923e8fa (patch) | |
| tree | 2895fb88f190a7cc49ef19835cff6aa3d85fc3ff /src/video_core/swrasterizer/clipper.h | |
| parent | video_core/shader: Document sanitized MUL operation (diff) | |
| download | yuzu-e24717bca04a51fe185e5dbbb4918e31c923e8fa.tar.gz yuzu-e24717bca04a51fe185e5dbbb4918e31c923e8fa.tar.xz yuzu-e24717bca04a51fe185e5dbbb4918e31c923e8fa.zip | |
VideoCore: Move software rasterizer files to sub-directory
Diffstat (limited to 'src/video_core/swrasterizer/clipper.h')
| -rw-r--r-- | src/video_core/swrasterizer/clipper.h | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/src/video_core/swrasterizer/clipper.h b/src/video_core/swrasterizer/clipper.h new file mode 100644 index 000000000..b51af0af9 --- /dev/null +++ b/src/video_core/swrasterizer/clipper.h | |||
| @@ -0,0 +1,21 @@ | |||
| 1 | // Copyright 2014 Citra Emulator Project | ||
| 2 | // Licensed under GPLv2 or any later version | ||
| 3 | // Refer to the license.txt file included. | ||
| 4 | |||
| 5 | #pragma once | ||
| 6 | |||
| 7 | namespace Pica { | ||
| 8 | |||
| 9 | namespace Shader { | ||
| 10 | struct OutputVertex; | ||
| 11 | } | ||
| 12 | |||
| 13 | namespace Clipper { | ||
| 14 | |||
| 15 | using Shader::OutputVertex; | ||
| 16 | |||
| 17 | void ProcessTriangle(const OutputVertex& v0, const OutputVertex& v1, const OutputVertex& v2); | ||
| 18 | |||
| 19 | } // namespace | ||
| 20 | |||
| 21 | } // namespace | ||