22 lines
346 B
C
22 lines
346 B
C
|
|
||
|
#ifndef TC_SHADERS_H
|
||
|
#define TC_SHADERS_H
|
||
|
|
||
|
#include <stdbool.h>
|
||
|
#include <stdint.h>
|
||
|
#include <stdio.h>
|
||
|
#include <stdlib.h>
|
||
|
|
||
|
#include <glad/glad.h>
|
||
|
|
||
|
typedef struct tc_shader_program
|
||
|
{
|
||
|
uint32_t program_id;
|
||
|
|
||
|
} tc_shader_program_s;
|
||
|
|
||
|
tc_shader_program_s tc_make_shader_program(char *vertex_path, char *fragment_path);
|
||
|
|
||
|
#endif
|
||
|
|