mirror of
https://github.com/Lime3DS/Lime3DS.git
synced 2024-11-13 13:35:14 +01:00
17 lines
534 B
C++
17 lines
534 B
C++
// Copyright 2015 Citra Emulator Project
|
|
// Licensed under GPLv2 or any later version
|
|
// Refer to the license.txt file included.
|
|
|
|
#include "video_core/swrasterizer/clipper.h"
|
|
#include "video_core/swrasterizer/swrasterizer.h"
|
|
|
|
namespace VideoCore {
|
|
|
|
void SWRasterizer::AddTriangle(const Pica::Shader::OutputVertex& v0,
|
|
const Pica::Shader::OutputVertex& v1,
|
|
const Pica::Shader::OutputVertex& v2) {
|
|
Pica::Clipper::ProcessTriangle(v0, v1, v2);
|
|
}
|
|
|
|
} // namespace VideoCore
|