2
1
Fork 0
mirror of https://github.com/yuzu-emu/yuzu.git synced 2024-07-04 23:31:19 +01:00
yuzu/src/video_core/clipper.h

22 lines
381 B
C
Raw Normal View History

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