mirror of
https://github.com/yuzu-emu/yuzu-android.git
synced 2025-06-15 06:37:57 -05:00
VideoCore: Move software rasterizer files to sub-directory
This commit is contained in:
21
src/video_core/swrasterizer/clipper.h
Normal file
21
src/video_core/swrasterizer/clipper.h
Normal file
@ -0,0 +1,21 @@
|
||||
// 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 Clipper {
|
||||
|
||||
using Shader::OutputVertex;
|
||||
|
||||
void ProcessTriangle(const OutputVertex& v0, const OutputVertex& v1, const OutputVertex& v2);
|
||||
|
||||
} // namespace
|
||||
|
||||
} // namespace
|
Reference in New Issue
Block a user