summaryrefslogblamecommitdiffstats
path: root/src/video_core/rasterizer.h
blob: a6a9634b455aa4ebef6dee1df8231702158b1420 (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 Rasterizer {

void ProcessTriangle(const Shader::OutputVertex& v0,
                     const Shader::OutputVertex& v1,
                     const Shader::OutputVertex& v2);

} // namespace Rasterizer

} // namespace Pica