gearlib-cpp/include/gearlib/shaders.h
2024-05-16 22:37:46 +12:00

11 lines
263 B
C

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