remove headers from c library

This commit is contained in:
Lauchmelder 2022-08-31 18:51:18 +02:00
parent 89c3553088
commit 9a606678ff
3 changed files with 3 additions and 16 deletions

View file

@ -6,10 +6,6 @@ add_library(renderer STATIC
context.c
)
target_include_directories(renderer PUBLIC
${CMAKE_CURRENT_LIST_DIR}
)
target_link_libraries(renderer PRIVATE
glad
)

View file

@ -1,5 +1,3 @@
#include "context.h"
#include <assert.h>
#include <stdio.h>
#include <glad/glad.h>
@ -9,8 +7,7 @@ static void*(*_gl_loader)(void*, const char*) = NULL;
void* load_gl_proc(const char* name)
{
assert(_glfw);
assert(_gl_loader);
assert(_glfw && _gl_loader);
return _gl_loader(_glfw, name);
}
@ -29,6 +26,8 @@ int init_opengl(void* glfw, void*(*gl_loader)(void*, const char*))
void clear()
{
assert(_glfw && _gl_loader);
glClearColor(0.0f, 0.0f, 0.0f, 0.0f);
glClear(GL_COLOR_BUFFER_BIT);
}

View file

@ -1,8 +0,0 @@
#ifndef _CONTEXT_H_
#define _CONTEXT_H_
int init_opengl(void* glfw, void*(*gl_loader)(void*, const char*));
void clear();
#endif