mirror of
https://github.com/hrydgard/ppsspp.git
synced 2025-04-02 11:01:50 -04:00
9 lines
155 B
C
9 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;
|
|
};
|