libhydride/include/drawglx.h
nullifiedcat e4428be844 opengl
2017-11-11 11:20:02 +03:00

25 lines
364 B
C

/*
* drawglx.h
*
* Created on: Nov 9, 2017
* Author: nullifiedcat
*/
#pragma once
#include <GL/glew.h>
#include <GL/glx.h>
struct xoverlay_glx_state
{
int version_major;
int version_minor;
GLXContext context;
};
struct xoverlay_glx_state glx_state;
int xoverlay_glx_init();
int xoverlay_glx_create_window();
int xoverlay_glx_destroy();