VideoCore: Move software rasterizer files to sub-directory
This commit is contained in:
parent
e10b11a5d0
commit
e24717bca0
8 changed files with 12 additions and 12 deletions
15
src/video_core/swrasterizer/swrasterizer.cpp
Normal file
15
src/video_core/swrasterizer/swrasterizer.cpp
Normal file
|
@ -0,0 +1,15 @@
|
|||
// Copyright 2015 Citra Emulator Project
|
||||
// Licensed under GPLv2 or any later version
|
||||
// Refer to the license.txt file included.
|
||||
|
||||
#include "video_core/swrasterizer/clipper.h"
|
||||
#include "video_core/swrasterizer/swrasterizer.h"
|
||||
|
||||
namespace VideoCore {
|
||||
|
||||
void SWRasterizer::AddTriangle(const Pica::Shader::OutputVertex& v0,
|
||||
const Pica::Shader::OutputVertex& v1,
|
||||
const Pica::Shader::OutputVertex& v2) {
|
||||
Pica::Clipper::ProcessTriangle(v0, v1, v2);
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue