ReactOS 0.4.16-dev-338-g34e76ad
|
#include <precomp.h>
#include <debug.h>
Go to the source code of this file.
Macros | |
#define | NDEBUG |
Typedefs | |
typedef int(WINAPI * | CHOOSEPIXELFMT) (HDC, CONST PIXELFORMATDESCRIPTOR *) |
typedef BOOL(WINAPI * | SETPIXELFMT) (HDC, int, CONST PIXELFORMATDESCRIPTOR *) |
typedef BOOL(WINAPI * | SWAPBUFFERS) (HDC hdc) |
typedef int(WINAPI * | DESCRIBEPIXELFMT) (HDC, int, UINT, LPPIXELFORMATDESCRIPTOR) |
typedef int(WINAPI * | GETPIXELFMT) (HDC) |
Functions | |
static BOOL | OpenGLInitFunction (PCSTR name, FARPROC *funcptr) |
static BOOL | OpenGLEnable (void) |
INT WINAPI | ChoosePixelFormat (HDC hdc, CONST PIXELFORMATDESCRIPTOR *ppfd) |
INT WINAPI | DescribePixelFormat (HDC hdc, INT iPixelFormat, UINT nBytes, LPPIXELFORMATDESCRIPTOR ppfd) |
INT WINAPI | GetPixelFormat (HDC hdc) |
BOOL WINAPI | SetPixelFormat (HDC hdc, INT iPixelFormat, CONST PIXELFORMATDESCRIPTOR *ppfd) |
BOOL WINAPI | SwapBuffers (HDC hdc) |
Variables | |
static CHOOSEPIXELFMT | glChoosePixelFormat = NULL |
static SETPIXELFMT | glSetPixelFormat = NULL |
static SWAPBUFFERS | glSwapBuffers = NULL |
static DESCRIBEPIXELFMT | glDescribePixelFormat = NULL |
static GETPIXELFMT | glGetPixelFormat = NULL |
HINSTANCE | hOpenGL = NULL |
typedef int(WINAPI * CHOOSEPIXELFMT) (HDC, CONST PIXELFORMATDESCRIPTOR *) |
INT WINAPI ChoosePixelFormat | ( | HDC | hdc, |
CONST PIXELFORMATDESCRIPTOR * | ppfd | ||
) |
INT WINAPI DescribePixelFormat | ( | HDC | hdc, |
INT | iPixelFormat, | ||
UINT | nBytes, | ||
LPPIXELFORMATDESCRIPTOR | ppfd | ||
) |
Definition at line 149 of file wingl.c.
Referenced by SetPixelFormat().
Definition at line 66 of file wingl.c.
Referenced by ChoosePixelFormat(), DescribePixelFormat(), GetPixelFormat(), SetPixelFormat(), and SwapBuffers().
Definition at line 49 of file wingl.c.
Referenced by OpenGLEnable().
Definition at line 187 of file wingl.c.
Referenced by DrawScene(), OnPaint(), ScreenSaverProc(), test_destroy(), test_destroy_read(), test_message_window(), and test_setpixelformat().
|
static |
Definition at line 38 of file wingl.c.
Referenced by ChoosePixelFormat(), and OpenGLEnable().
|
static |
Definition at line 41 of file wingl.c.
Referenced by DescribePixelFormat(), and OpenGLEnable().
|
static |
Definition at line 42 of file wingl.c.
Referenced by GetPixelFormat(), and OpenGLEnable().
|
static |
Definition at line 39 of file wingl.c.
Referenced by OpenGLEnable(), and SetPixelFormat().
|
static |
Definition at line 40 of file wingl.c.
Referenced by OpenGLEnable(), and SwapBuffers().
Definition at line 47 of file wingl.c.
Referenced by OpenGLEnable(), and OpenGLInitFunction().