mirror of
https://github.com/Lime3DS/Lime3DS.git
synced 2024-11-02 00:15:06 +01:00
22 lines
444 B
C++
22 lines
444 B
C++
// Copyright 2014 Citra Emulator Project
|
|
// Licensed under GPLv2
|
|
// Refer to the license.txt file included.
|
|
|
|
#pragma once
|
|
|
|
namespace Pica {
|
|
|
|
namespace VertexShader {
|
|
struct OutputVertex;
|
|
}
|
|
|
|
namespace Rasterizer {
|
|
|
|
void ProcessTriangle(const VertexShader::OutputVertex& v0,
|
|
const VertexShader::OutputVertex& v1,
|
|
const VertexShader::OutputVertex& v2);
|
|
|
|
} // namespace Rasterizer
|
|
|
|
} // namespace Pica
|