libhydride/include/vertex_structs.h
nullifiedcat fc03951086 dis_
2017-11-11 00:33:40 +03:00

38 lines
445 B
C

/*
* vertex_structs.h
*
* Created on: Nov 10, 2017
* Author: nullifiedcat
*/
#pragma once
/* Used for drawing primitives */
struct vertex_v2fc4f
{
float x;
float y;
float r;
float g;
float b;
float a;
};
/* Used for drawing textured primitives and freetype-gl fonts */
struct vertex_v2ft2fc4f
{
float x;
float y;
float s;
float t;
float r;
float g;
float b;
float a;
};