rusty-nes/renderer/context.c

33 lines
548 B
C
Raw Normal View History

2022-08-31 16:47:44 +00:00
#include <assert.h>
#include <stdio.h>
#include <glad/glad.h>
static void* _glfw = NULL;
static void*(*_gl_loader)(void*, const char*) = NULL;
void* load_gl_proc(const char* name)
{
2022-08-31 16:51:18 +00:00
assert(_glfw && _gl_loader);
2022-08-31 16:47:44 +00:00
return _gl_loader(_glfw, name);
}
int init_opengl(void* glfw, void*(*gl_loader)(void*, const char*))
{
_glfw = glfw;
_gl_loader = gl_loader;
if (!gladLoadGLLoader(load_gl_proc)) {
return 1;
}
return 0;
}
void clear()
{
2022-08-31 16:51:18 +00:00
assert(_glfw && _gl_loader);
2022-08-31 16:47:44 +00:00
glClearColor(0.0f, 0.0f, 0.0f, 0.0f);
glClear(GL_COLOR_BUFFER_BIT);
}