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