2014-07-27 15:34:11 +00:00
|
|
|
// Copyright 2014 Citra Emulator Project
|
2014-12-17 05:38:14 +00:00
|
|
|
// Licensed under GPLv2 or any later version
|
2014-07-27 15:34:11 +00:00
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
namespace Pica {
|
|
|
|
|
|
|
|
namespace VertexShader {
|
|
|
|
struct OutputVertex;
|
|
|
|
}
|
|
|
|
|
|
|
|
namespace Clipper {
|
|
|
|
|
|
|
|
using VertexShader::OutputVertex;
|
|
|
|
|
|
|
|
void ProcessTriangle(OutputVertex& v0, OutputVertex& v1, OutputVertex& v2);
|
|
|
|
|
|
|
|
} // namespace
|
|
|
|
|
|
|
|
} // namespace
|