summaryrefslogblamecommitdiffstats
path: root/src/video_core/clipper.h
blob: 6ed01e8772f654fe0d7e1b2a58059fb8cdbd7080 (plain) (tree)
1
2
3
4
5
6
7
8
9
                                        
                                            





                                          
                  




                        
                           





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

#pragma once

namespace Pica {

namespace Shader {
    struct OutputVertex;
}

namespace Clipper {

using Shader::OutputVertex;

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

} // namespace

} // namespace