gearlib/include/shaders.h
2024-04-29 22:41:13 +12:00

10 lines
183 B
C

#ifndef __SHADERS_H__
#define __SHADERS_H__
#include <stdint.h>
uint32_t compile_shader(const char* path, int32_t type);
uint32_t load_shader_program(uint32_t shader, ...);
#endif