1 | /* $Id: icd_drv.h 15820 2009-01-06 15:37:59Z vboxsync $ */
|
---|
2 |
|
---|
3 | /** @file
|
---|
4 | *
|
---|
5 | * VirtualBox Windows NT/2000/XP guest OpenGL ICD header
|
---|
6 | */
|
---|
7 |
|
---|
8 | /*
|
---|
9 | * Copyright (C) 2006-2008 Sun Microsystems, Inc.
|
---|
10 | *
|
---|
11 | * This file is part of VirtualBox Open Source Edition (OSE), as
|
---|
12 | * available from http://www.virtualbox.org. This file is free software;
|
---|
13 | * you can redistribute it and/or modify it under the terms of the GNU
|
---|
14 | * General Public License (GPL) as published by the Free Software
|
---|
15 | * Foundation, in version 2 as it comes in the "COPYING" file of the
|
---|
16 | * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
|
---|
17 | * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
|
---|
18 | *
|
---|
19 | * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa
|
---|
20 | * Clara, CA 95054 USA or visit http://www.sun.com if you need
|
---|
21 | * additional information or have any questions.
|
---|
22 | */
|
---|
23 |
|
---|
24 | #ifndef __ICDDRV_H__
|
---|
25 | #define __ICDDRV_H__
|
---|
26 |
|
---|
27 | #include <windows.h>
|
---|
28 |
|
---|
29 | typedef struct _icdTable
|
---|
30 | {
|
---|
31 | DWORD size;
|
---|
32 | PROC table[336];
|
---|
33 | } ICDTABLE, *PICDTABLE;
|
---|
34 |
|
---|
35 | void APIENTRY DrvReleaseContext(HGLRC hglrc);
|
---|
36 | BOOL APIENTRY DrvValidateVersion(DWORD version);
|
---|
37 | PICDTABLE APIENTRY DrvSetContext(HDC hdc, HGLRC hglrc, void *callback);
|
---|
38 | BOOL APIENTRY DrvSetPixelFormat(HDC hdc, int iPixelFormat);
|
---|
39 | HGLRC APIENTRY DrvCreateContext(HDC hdc);
|
---|
40 | HGLRC APIENTRY DrvCreateLayerContext(HDC hdc, int iLayerPlane);
|
---|
41 | BOOL APIENTRY DrvDescribeLayerPlane(HDC hdc,int iPixelFormat,
|
---|
42 | int iLayerPlane, UINT nBytes,
|
---|
43 | LPLAYERPLANEDESCRIPTOR plpd);
|
---|
44 | int APIENTRY DrvGetLayerPaletteEntries(HDC hdc, int iLayerPlane,
|
---|
45 | int iStart, int cEntries,
|
---|
46 | COLORREF *pcr);
|
---|
47 | int APIENTRY DrvDescribePixelFormat(HDC hdc, int iPixelFormat, UINT nBytes, LPPIXELFORMATDESCRIPTOR pfd);
|
---|
48 | BOOL APIENTRY DrvDeleteContext(HGLRC hglrc);
|
---|
49 | BOOL APIENTRY DrvCopyContext(HGLRC hglrcSrc, HGLRC hglrcDst, UINT mask);
|
---|
50 | BOOL APIENTRY DrvShareLists(HGLRC hglrc1, HGLRC hglrc2);
|
---|
51 | int APIENTRY DrvSetLayerPaletteEntries(HDC hdc, int iLayerPlane,
|
---|
52 | int iStart, int cEntries,
|
---|
53 | CONST COLORREF *pcr);
|
---|
54 | BOOL APIENTRY DrvRealizeLayerPalette(HDC hdc, int iLayerPlane, BOOL bRealize);
|
---|
55 | BOOL APIENTRY DrvSwapLayerBuffers(HDC hdc, UINT fuPlanes);
|
---|
56 | BOOL APIENTRY DrvSwapBuffers(HDC hdc);
|
---|
57 |
|
---|
58 | #endif /* __ICDDRV_H__ */
|
---|