summaryrefslogtreecommitdiffstats
path: root/src/video_core/swrasterizer.cpp
blob: ba458746c9d8ba55871d27b2d381a78241396eb7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// Copyright 2015 Citra Emulator Project
// Licensed under GPLv2 or any later version
// Refer to the license.txt file included.

#include "video_core/swrasterizer.h"
#include "video_core/clipper.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);
}
}