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