stw_wgl.c File Reference

Include dependency graph for stw_wgl.c:

This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Functions

WINGDIAPI BOOL APIENTRY wglUseFontBitmapsA (HDC hdc, DWORD first, DWORD count, DWORD listBase)
WINGDIAPI BOOL APIENTRY wglShareLists (HGLRC hglrc1, HGLRC hglrc2)
WINGDIAPI BOOL APIENTRY wglUseFontBitmapsW (HDC hdc, DWORD first, DWORD count, DWORD listBase)
WINGDIAPI BOOL APIENTRY wglUseFontOutlinesA (HDC hdc, DWORD first, DWORD count, DWORD listBase, FLOAT deviation, FLOAT extrusion, int format, LPGLYPHMETRICSFLOAT lpgmf)
WINGDIAPI BOOL APIENTRY wglUseFontOutlinesW (HDC hdc, DWORD first, DWORD count, DWORD listBase, FLOAT deviation, FLOAT extrusion, int format, LPGLYPHMETRICSFLOAT lpgmf)
WINGDIAPI BOOL APIENTRY wglDescribeLayerPlane (HDC hdc, int iPixelFormat, int iLayerPlane, UINT nBytes, LPLAYERPLANEDESCRIPTOR plpd)
WINGDIAPI int APIENTRY wglSetLayerPaletteEntries (HDC hdc, int iLayerPlane, int iStart, int cEntries, CONST COLORREF *pcr)
WINGDIAPI int APIENTRY wglGetLayerPaletteEntries (HDC hdc, int iLayerPlane, int iStart, int cEntries, COLORREF *pcr)
WINGDIAPI BOOL APIENTRY wglRealizeLayerPalette (HDC hdc, int iLayerPlane, BOOL bRealize)


Function Documentation

WINGDIAPI BOOL APIENTRY wglDescribeLayerPlane ( HDC  hdc,
int  iPixelFormat,
int  iLayerPlane,
UINT  nBytes,
LPLAYERPLANEDESCRIPTOR  plpd 
)

Definition at line 130 of file stw_wgl.c.

References assert, and FALSE.

00136 {
00137    (void) hdc;
00138    (void) iPixelFormat;
00139    (void) iLayerPlane;
00140    (void) nBytes;
00141    (void) plpd;
00142 
00143    assert( 0 );
00144 
00145    return FALSE;
00146 }

WINGDIAPI int APIENTRY wglGetLayerPaletteEntries ( HDC  hdc,
int  iLayerPlane,
int  iStart,
int  cEntries,
COLORREF *  pcr 
)

Definition at line 168 of file stw_wgl.c.

References assert.

00174 {
00175    (void) hdc;
00176    (void) iLayerPlane;
00177    (void) iStart;
00178    (void) cEntries;
00179    (void) pcr;
00180 
00181    assert( 0 );
00182 
00183    return 0;
00184 }

WINGDIAPI BOOL APIENTRY wglRealizeLayerPalette ( HDC  hdc,
int  iLayerPlane,
BOOL  bRealize 
)

Definition at line 187 of file stw_wgl.c.

References assert, and FALSE.

00191 {
00192    (void) hdc;
00193    (void) iLayerPlane;
00194    (void) bRealize;
00195 
00196    assert( 0 );
00197 
00198    return FALSE;
00199 }

WINGDIAPI int APIENTRY wglSetLayerPaletteEntries ( HDC  hdc,
int  iLayerPlane,
int  iStart,
int  cEntries,
CONST COLORREF *  pcr 
)

Definition at line 149 of file stw_wgl.c.

References assert.

00155 {
00156    (void) hdc;
00157    (void) iLayerPlane;
00158    (void) iStart;
00159    (void) cEntries;
00160    (void) pcr;
00161 
00162    assert( 0 );
00163 
00164    return 0;
00165 }

WINGDIAPI BOOL APIENTRY wglShareLists ( HGLRC  hglrc1,
HGLRC  hglrc2 
)

Definition at line 50 of file stw_wgl.c.

References assert, and FALSE.

00053 {
00054    (void) hglrc1;
00055    (void) hglrc2;
00056 
00057    assert( 0 );
00058 
00059    return FALSE;
00060 }

WINGDIAPI BOOL APIENTRY wglUseFontBitmapsA ( HDC  hdc,
DWORD  first,
DWORD  count,
DWORD  listBase 
)

Definition at line 33 of file stw_wgl.c.

References assert, and FALSE.

00038 {
00039    (void) hdc;
00040    (void) first;
00041    (void) count;
00042    (void) listBase;
00043 
00044    assert( 0 );
00045 
00046    return FALSE;
00047 }

WINGDIAPI BOOL APIENTRY wglUseFontBitmapsW ( HDC  hdc,
DWORD  first,
DWORD  count,
DWORD  listBase 
)

Definition at line 63 of file stw_wgl.c.

References assert, and FALSE.

00068 {
00069    (void) hdc;
00070    (void) first;
00071    (void) count;
00072    (void) listBase;
00073 
00074    assert( 0 );
00075 
00076    return FALSE;
00077 }

WINGDIAPI BOOL APIENTRY wglUseFontOutlinesA ( HDC  hdc,
DWORD  first,
DWORD  count,
DWORD  listBase,
FLOAT  deviation,
FLOAT  extrusion,
int  format,
LPGLYPHMETRICSFLOAT  lpgmf 
)

Definition at line 80 of file stw_wgl.c.

References assert, and FALSE.

00089 {
00090    (void) hdc;
00091    (void) first;
00092    (void) count;
00093    (void) listBase;
00094    (void) deviation;
00095    (void) extrusion;
00096    (void) format;
00097    (void) lpgmf;
00098 
00099    assert( 0 );
00100 
00101    return FALSE;
00102 }

WINGDIAPI BOOL APIENTRY wglUseFontOutlinesW ( HDC  hdc,
DWORD  first,
DWORD  count,
DWORD  listBase,
FLOAT  deviation,
FLOAT  extrusion,
int  format,
LPGLYPHMETRICSFLOAT  lpgmf 
)

Definition at line 105 of file stw_wgl.c.

References assert, and FALSE.

00114 {
00115    (void) hdc;
00116    (void) first;
00117    (void) count;
00118    (void) listBase;
00119    (void) deviation;
00120    (void) extrusion;
00121    (void) format;
00122    (void) lpgmf;
00123 
00124    assert( 0 );
00125 
00126    return FALSE;
00127 }


Generated on Tue Sep 29 06:25:55 2009 for Gallium3D by  doxygen 1.5.4