mirror of
https://github.com/hrydgard/ppsspp.git
synced 2025-03-06 21:27:57 +00: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;
|
|
};
|