Added color
This commit is contained in:
commit
c40a38253d
13 changed files with 8300 additions and 0 deletions
18
include/openglu.hpp
Normal file
18
include/openglu.hpp
Normal file
|
@ -0,0 +1,18 @@
|
|||
#ifndef OPENGLU_HPP
|
||||
#define OPENGLU_HPP
|
||||
|
||||
#include "core.hpp"
|
||||
#include <glad/glad.h>
|
||||
|
||||
#include "color.hpp"
|
||||
|
||||
namespace oglu
|
||||
{
|
||||
OGLU_API void LoadGLLoader(GLADloadproc proc);
|
||||
|
||||
// Some raw, exposed OpenGL until I know where to put then
|
||||
OGLU_API void SetViewport(GLint x, GLint y, GLsizei width, GLsizei height);
|
||||
OGLU_API void ClearScreen(GLbitfield mask, Color clearColor);
|
||||
}
|
||||
|
||||
#endif //OPENGLU_HPP
|
Loading…
Add table
Add a link
Reference in a new issue