citra/src/video_core/clipper.h

22 lines
385 B
C
Raw Normal View History

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 {
namespace Shader {
2014-07-27 17:34:11 +02:00
struct OutputVertex;
}
namespace Clipper {
using Shader::OutputVertex;
2014-07-27 17:34:11 +02:00
void ProcessTriangle(const OutputVertex& v0, const OutputVertex& v1, const OutputVertex& v2);
2014-07-27 17:34:11 +02:00
} // namespace
} // namespace