libhydride/include/program.h
2017-11-15 17:49:34 +03:00

17 lines
184 B
C

#pragma once
#include <vertex-buffer.h>
struct program_t
{
unsigned shader;
vertex_buffer_t *buffer;
};
struct program_t program;
void
program_init();
void
program_draw();