mirror of
https://github.com/hrydgard/ppsspp.git
synced 2026-09-04 19:55:27 +02:00
10 lines
155 B
C
10 lines
155 B
C
#pragma once
|
|
|
|
// For framebuffer copies and similar things that just require passthrough.
|
|
struct Draw2DVertex {
|
|
float x;
|
|
float y;
|
|
float u;
|
|
float v;
|
|
};
|