r500/verbatim/vap_prog_stream_vertices2.c
2025-10-23 13:25:25 -05:00

11 lines
269 B
C

const float vertices[] = {
// position
0.5f, -0.5f, 0.0f, // bottom right
-0.5f, -0.5f, 0.0f, // bottom left
0.0f, 0.5f, 0.0f, // top
// color
1.0f, 0.0f, 0.0f, // bottom right
0.0f, 1.0f, 0.0f, // bottom left
0.0f, 0.0f, 1.0f // top
};