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 {
|
|
|
|
|
2015-07-21 23:04:05 +00:00
|
|
|
namespace Shader {
|
2016-09-18 00:38:01 +00:00
|
|
|
struct OutputVertex;
|
2014-07-27 15:34:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
namespace Clipper {
|
|
|
|
|
2015-07-21 23:04:05 +00:00
|
|
|
using Shader::OutputVertex;
|
2014-07-27 15:34:11 +00:00
|
|
|
|
2015-12-07 03:06:12 +00:00
|
|
|
void ProcessTriangle(const OutputVertex& v0, const OutputVertex& v1, const OutputVertex& v2);
|
2014-07-27 15:34:11 +00:00
|
|
|
|
|
|
|
} // namespace
|
|
|
|
|
|
|
|
} // namespace
|