frillrun/src/engine/vao.h
2024-08-24 00:47:58 -04:00

17 lines
225 B
C

#pragma once
#include <GL/glew.h>
#include <GL/gl.h>
#include "../COMMON.h"
typedef struct VAO
{
GLuint handle;
} VAO;
void vao_init(VAO* self);
void vao_bind(VAO* self);
void vao_unbind(void);
void vao_free(VAO* self);