summaryrefslogblamecommitdiffstats
path: root/src/video_core/clipper.h
blob: 19ce8e140312e9857c2ace7e27a4233d89625a3b (plain) (tree)
1
2
                                        
                                            


















                                                                           
// Copyright 2014 Citra Emulator Project
// Licensed under GPLv2 or any later version
// Refer to the license.txt file included.

#pragma once

namespace Pica {

namespace VertexShader {
    struct OutputVertex;
}

namespace Clipper {

using VertexShader::OutputVertex;

void ProcessTriangle(OutputVertex& v0, OutputVertex& v1, OutputVertex& v2);

} // namespace

} // namespace