1
0
mirror of https://git.suyu.dev/suyu/suyu synced 2025-08-27 22:46:30 -05:00

Refactor: Extract VertexLoader from command_processor.cpp.

Preparation for a similar concept to Dolphin or PPSSPP. These can be JIT-ed and cached.
This commit is contained in:
Henrik Rydgard
2016-04-28 19:01:47 +02:00
parent 0cf15f64ef
commit 47ff008817
5 changed files with 185 additions and 125 deletions

View File

@@ -25,7 +25,7 @@ namespace Pica {
namespace Shader {
struct InputVertex {
Math::Vec4<float24> attr[16];
alignas(16) Math::Vec4<float24> attr[16];
};
struct OutputVertex {