Built basic UI Grid.

This commit is contained in:
2021-09-07 09:07:53 -07:00
parent 09b3bdb93c
commit f9e366b440
14 changed files with 324 additions and 72 deletions

View File

@@ -12,6 +12,7 @@
#define SHADER_UNI_PROJ "u_Proj"
#define SHADER_UNI_TEXT "u_Text"
#define SHADER_UNI_MODL "u_Modl"
#define SHADER_UNI_COLR "u_Colr"
/** Representation of a shader uniform */
typedef GLuint shaderuniform_t;
@@ -41,4 +42,7 @@ typedef struct {
/** Uniform for the current model world position */
shaderuniform_t uniModl;
/** Uniform for the color multiplier */
shaderuniform_t uniColr;
} shader_t;