Pica: Add basic rasterizer.

This commit is contained in:
Tony Wasserka 2014-07-27 18:02:35 +02:00
parent 94aa9da562
commit 94d742fe17
7 changed files with 260 additions and 2 deletions

View file

@ -0,0 +1,21 @@
// 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