mirror of
https://github.com/yuzu-emu/yuzu-android.git
synced 2025-06-17 13:47:57 -05:00
VideoCore: Move software rasterizer files to sub-directory
This commit is contained in:
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);
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user