diff options
Diffstat (limited to 'src/video_core/swrasterizer/clipper.h')
| -rw-r--r-- | src/video_core/swrasterizer/clipper.h | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/src/video_core/swrasterizer/clipper.h b/src/video_core/swrasterizer/clipper.h deleted file mode 100644 index b51af0af9..000000000 --- a/src/video_core/swrasterizer/clipper.h +++ /dev/null | |||
| @@ -1,21 +0,0 @@ | |||
| 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 | ||