2008-07-17 11:37:49 +00:00
|
|
|
/*
|
2004-02-01 07:11:06 +00:00
|
|
|
* COPYRIGHT: See COPYING in the top level directory
|
|
|
|
* PROJECT: ReactOS kernel
|
2013-09-21 14:17:59 +00:00
|
|
|
* FILE: lib/opengl32/opengl.h
|
|
|
|
* PURPOSE: OpenGL32 lib, general header
|
2004-02-01 07:11:06 +00:00
|
|
|
*/
|
|
|
|
|
2014-02-07 18:02:02 +00:00
|
|
|
#ifndef _OPENGL32_PCH_
|
|
|
|
#define _OPENGL32_PCH_
|
2008-07-17 11:37:49 +00:00
|
|
|
|
|
|
|
#define WIN32_NO_STATUS
|
2013-09-21 14:17:59 +00:00
|
|
|
#include <stdarg.h>
|
2013-01-24 23:00:42 +00:00
|
|
|
#include <windef.h>
|
|
|
|
#include <winbase.h>
|
|
|
|
#include <winuser.h>
|
2013-09-21 14:17:59 +00:00
|
|
|
#include <wingdi.h>
|
2013-01-24 23:00:42 +00:00
|
|
|
#include <winddi.h>
|
2013-09-21 14:17:59 +00:00
|
|
|
#include <GL/gl.h>
|
2008-07-17 11:37:49 +00:00
|
|
|
|
2014-01-20 13:07:26 +00:00
|
|
|
#include <wine/debug.h>
|
|
|
|
|
2013-09-21 14:17:59 +00:00
|
|
|
#include "icd.h"
|
2004-02-05 04:28:11 +00:00
|
|
|
|
2013-09-21 14:17:59 +00:00
|
|
|
struct wgl_context
|
|
|
|
{
|
|
|
|
DWORD magic;
|
|
|
|
volatile LONG lock;
|
|
|
|
|
|
|
|
DHGLRC dhglrc;
|
|
|
|
struct ICD_Data* icd_data;
|
|
|
|
INT pixelformat;
|
|
|
|
volatile LONG thread_id;
|
|
|
|
};
|
|
|
|
|
|
|
|
#define WGL_DC_OBJ_DC 0x1
|
|
|
|
struct wgl_dc_data
|
2004-02-02 05:36:37 +00:00
|
|
|
{
|
2013-09-21 14:17:59 +00:00
|
|
|
/* Header */
|
|
|
|
union
|
|
|
|
{
|
|
|
|
HWND hwnd;
|
|
|
|
HDC hdc;
|
|
|
|
HANDLE u;
|
|
|
|
} owner;
|
|
|
|
ULONG flags;
|
|
|
|
|
|
|
|
/* Pixel format */
|
|
|
|
INT pixelformat;
|
|
|
|
|
|
|
|
/* ICD */
|
|
|
|
struct ICD_Data* icd_data;
|
|
|
|
INT nb_icd_formats;
|
|
|
|
|
|
|
|
/* Software implementation */
|
|
|
|
INT nb_sw_formats;
|
|
|
|
void* sw_data;
|
|
|
|
|
|
|
|
/* Linked list */
|
|
|
|
struct wgl_dc_data* next;
|
|
|
|
};
|
|
|
|
|
|
|
|
#ifdef OPENGL32_USE_TLS
|
|
|
|
extern DWORD OglTlsIndex;
|
|
|
|
|
|
|
|
struct Opengl32_ThreadData
|
2004-02-01 07:11:06 +00:00
|
|
|
{
|
2013-09-21 14:17:59 +00:00
|
|
|
const GLDISPATCHTABLE* glDispatchTable;
|
|
|
|
HGLRC hglrc;
|
|
|
|
HDC hdc;
|
|
|
|
struct wgl_dc_data* dc_data;
|
|
|
|
PVOID* icdData;
|
|
|
|
};
|
|
|
|
C_ASSERT(FIELD_OFFSET(struct Opengl32_ThreadData, glDispatchTable) == 0);
|
|
|
|
|
|
|
|
static inline
|
|
|
|
void
|
|
|
|
IntMakeCurrent(HGLRC hglrc, HDC hdc, struct wgl_dc_data* dc_data)
|
|
|
|
{
|
|
|
|
struct Opengl32_ThreadData* thread_data = TlsGetValue(OglTlsIndex);
|
2004-02-01 07:11:06 +00:00
|
|
|
|
2013-09-21 14:17:59 +00:00
|
|
|
thread_data->hglrc = hglrc;
|
|
|
|
thread_data->hdc = hdc;
|
|
|
|
thread_data->dc_data = dc_data;
|
|
|
|
}
|
2004-02-01 07:11:06 +00:00
|
|
|
|
2013-09-21 14:17:59 +00:00
|
|
|
static inline
|
|
|
|
HGLRC
|
|
|
|
IntGetCurrentRC(void)
|
|
|
|
{
|
|
|
|
struct Opengl32_ThreadData* data = TlsGetValue(OglTlsIndex);
|
|
|
|
return data->hglrc;
|
|
|
|
}
|
2004-02-02 05:36:37 +00:00
|
|
|
|
2013-09-21 14:17:59 +00:00
|
|
|
static inline
|
|
|
|
DHGLRC
|
|
|
|
IntGetCurrentDHGLRC(void)
|
2004-03-01 19:36:21 +00:00
|
|
|
{
|
2013-09-21 14:17:59 +00:00
|
|
|
struct wgl_context* ctx = (struct wgl_context*)IntGetCurrentRC();
|
|
|
|
if(!ctx) return NULL;
|
|
|
|
return ctx->dhglrc;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline
|
|
|
|
HDC
|
|
|
|
IntGetCurrentDC(void)
|
|
|
|
{
|
|
|
|
struct Opengl32_ThreadData* data = TlsGetValue(OglTlsIndex);
|
|
|
|
return data->hdc;
|
|
|
|
}
|
2004-03-01 19:36:21 +00:00
|
|
|
|
2013-09-21 14:17:59 +00:00
|
|
|
static inline
|
|
|
|
struct wgl_dc_data*
|
|
|
|
IntGetCurrentDcData(void)
|
|
|
|
{
|
|
|
|
struct Opengl32_ThreadData* data = TlsGetValue(OglTlsIndex);
|
|
|
|
return data->dc_data;
|
|
|
|
}
|
2004-03-01 19:36:21 +00:00
|
|
|
|
2013-09-21 14:17:59 +00:00
|
|
|
static inline
|
|
|
|
const GLDISPATCHTABLE *
|
|
|
|
IntGetCurrentDispatchTable(void)
|
|
|
|
{
|
|
|
|
struct Opengl32_ThreadData* data = TlsGetValue(OglTlsIndex);
|
|
|
|
return data->glDispatchTable;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline
|
|
|
|
void
|
|
|
|
IntSetCurrentDispatchTable(const GLDISPATCHTABLE* table)
|
|
|
|
{
|
|
|
|
struct Opengl32_ThreadData* data = TlsGetValue(OglTlsIndex);
|
|
|
|
data->glDispatchTable = table;
|
|
|
|
}
|
2004-03-01 19:36:21 +00:00
|
|
|
|
2013-09-21 14:17:59 +00:00
|
|
|
static inline
|
|
|
|
void
|
|
|
|
IntSetCurrentICDPrivate(void* value)
|
|
|
|
{
|
|
|
|
struct Opengl32_ThreadData* data = TlsGetValue(OglTlsIndex);
|
|
|
|
data->icdData = value;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline
|
|
|
|
void*
|
|
|
|
IntGetCurrentICDPrivate(void)
|
|
|
|
{
|
|
|
|
struct Opengl32_ThreadData* data = TlsGetValue(OglTlsIndex);
|
|
|
|
return data->icdData;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
#else
|
|
|
|
static inline
|
|
|
|
const GLDISPATCHTABLE*
|
|
|
|
IntGetCurrentDispatchTable(void)
|
2004-02-01 17:07:16 +00:00
|
|
|
{
|
2013-09-21 14:17:59 +00:00
|
|
|
return (GLDISPATCHTABLE*)NtCurrentTeb()->glTable;
|
|
|
|
}
|
|
|
|
#endif // defined(OPENGL32_USE_TLS)
|
|
|
|
|
|
|
|
/* Software implementation functions */
|
|
|
|
INT sw_DescribePixelFormat(HDC hdc, INT format, UINT size, PIXELFORMATDESCRIPTOR* descr);
|
|
|
|
BOOL sw_SetPixelFormat(HDC hdc, struct wgl_dc_data*, INT format);
|
|
|
|
DHGLRC sw_CreateContext(struct wgl_dc_data*);
|
|
|
|
BOOL sw_DeleteContext(DHGLRC dhglrc);
|
|
|
|
BOOL sw_SetContext(struct wgl_dc_data* dc_data, DHGLRC dhglrc);
|
|
|
|
void sw_ReleaseContext(DHGLRC hglrc);
|
|
|
|
PROC sw_GetProcAddress(LPCSTR name);
|
|
|
|
BOOL sw_CopyContext(DHGLRC dhglrcSrc, DHGLRC dhglrcDst, UINT mask);
|
|
|
|
BOOL sw_ShareLists(DHGLRC dhglrcSrc, DHGLRC dhglrcDst);
|
|
|
|
BOOL sw_SwapBuffers(HDC hdc, struct wgl_dc_data* dc_data);
|
2014-02-07 18:02:02 +00:00
|
|
|
|
|
|
|
#endif /* _OPENGL32_PCH_ */
|