2004-10-17 13:28:22 +00:00
|
|
|
#ifndef __GL_COMMON_H__
|
|
|
|
#define __GL_COMMON_H__
|
|
|
|
|
2004-11-01 20:24:37 +00:00
|
|
|
#include "mp_msg.h"
|
|
|
|
#include "config.h"
|
|
|
|
|
2004-10-17 13:28:22 +00:00
|
|
|
#include <GL/gl.h>
|
2004-11-01 20:24:37 +00:00
|
|
|
#include "video_out.h"
|
|
|
|
|
2004-12-11 16:57:42 +00:00
|
|
|
#ifdef GL_WIN32
|
|
|
|
#include <windows.h>
|
|
|
|
#include <GL/glext.h>
|
|
|
|
#include "w32_common.h"
|
|
|
|
#else
|
2004-11-01 20:24:37 +00:00
|
|
|
#include <X11/Xlib.h>
|
|
|
|
#include <GL/glx.h>
|
|
|
|
#include "x11_common.h"
|
|
|
|
#endif
|
2004-10-17 13:28:22 +00:00
|
|
|
|
|
|
|
void glAdjustAlignment(int stride);
|
|
|
|
|
2004-12-01 17:05:58 +00:00
|
|
|
const char *glValName(GLint value);
|
|
|
|
|
|
|
|
int glFindFormat(uint32_t format, uint32_t *bpp, GLenum *gl_texfmt,
|
|
|
|
GLenum *gl_format, GLenum *gl_type);
|
|
|
|
|
2004-11-01 20:24:37 +00:00
|
|
|
//! could not set new window, will continue drawing into the old one.
|
|
|
|
#define SET_WINDOW_FAILED -1
|
|
|
|
//! new window is set, could even transfer the OpenGL context.
|
|
|
|
#define SET_WINDOW_OK 0
|
|
|
|
//! new window is set, but the OpenGL context needs to be reinitialized.
|
|
|
|
#define SET_WINDOW_REINIT 1
|
|
|
|
|
2004-12-11 16:57:42 +00:00
|
|
|
#ifdef GL_WIN32
|
|
|
|
int setGlWindow(int *vinfo, HGLRC *context, HWND win);
|
|
|
|
void releaseGlContext(int *vinfo, HGLRC *context);
|
|
|
|
#else
|
2004-11-01 20:24:37 +00:00
|
|
|
int setGlWindow(XVisualInfo **vinfo, GLXContext *context, Window win);
|
2004-11-11 19:41:08 +00:00
|
|
|
void releaseGlContext(XVisualInfo **vinfo, GLXContext *context);
|
2004-11-01 20:24:37 +00:00
|
|
|
#endif
|
|
|
|
|
2004-10-17 13:28:22 +00:00
|
|
|
#endif
|