stw_wgl.c

Go to the documentation of this file.
00001 /**************************************************************************
00002  *
00003  * Copyright 2008 Tungsten Graphics, Inc., Cedar Park, Texas.
00004  * All Rights Reserved.
00005  *
00006  * Permission is hereby granted, free of charge, to any person obtaining a
00007  * copy of this software and associated documentation files (the
00008  * "Software"), to deal in the Software without restriction, including
00009  * without limitation the rights to use, copy, modify, merge, publish,
00010  * distribute, sub license, and/or sell copies of the Software, and to
00011  * permit persons to whom the Software is furnished to do so, subject to
00012  * the following conditions:
00013  *
00014  * The above copyright notice and this permission notice (including the
00015  * next paragraph) shall be included in all copies or substantial portions
00016  * of the Software.
00017  *
00018  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
00019  * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
00020  * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.
00021  * IN NO EVENT SHALL TUNGSTEN GRAPHICS AND/OR ITS SUPPLIERS BE LIABLE FOR
00022  * ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
00023  * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
00024  * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
00025  *
00026  **************************************************************************/
00027 
00028 #include <windows.h>
00029 
00030 #include "pipe/p_debug.h"
00031 
00032 WINGDIAPI BOOL APIENTRY
00033 wglUseFontBitmapsA(
00034    HDC hdc,
00035    DWORD first,
00036    DWORD count,
00037    DWORD listBase )
00038 {
00039    (void) hdc;
00040    (void) first;
00041    (void) count;
00042    (void) listBase;
00043 
00044    assert( 0 );
00045 
00046    return FALSE;
00047 }
00048 
00049 WINGDIAPI BOOL APIENTRY
00050 wglShareLists(
00051    HGLRC hglrc1,
00052    HGLRC hglrc2 )
00053 {
00054    (void) hglrc1;
00055    (void) hglrc2;
00056 
00057    assert( 0 );
00058 
00059    return FALSE;
00060 }
00061 
00062 WINGDIAPI BOOL APIENTRY
00063 wglUseFontBitmapsW(
00064    HDC hdc,
00065    DWORD first,
00066    DWORD count,
00067    DWORD listBase )
00068 {
00069    (void) hdc;
00070    (void) first;
00071    (void) count;
00072    (void) listBase;
00073 
00074    assert( 0 );
00075 
00076    return FALSE;
00077 }
00078 
00079 WINGDIAPI BOOL APIENTRY
00080 wglUseFontOutlinesA(
00081    HDC hdc,
00082    DWORD first,
00083    DWORD count,
00084    DWORD listBase,
00085    FLOAT deviation,
00086    FLOAT extrusion,
00087    int format,
00088    LPGLYPHMETRICSFLOAT lpgmf )
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 }
00103 
00104 WINGDIAPI BOOL APIENTRY
00105 wglUseFontOutlinesW(
00106    HDC hdc,
00107    DWORD first,
00108    DWORD count,
00109    DWORD listBase,
00110    FLOAT deviation,
00111    FLOAT extrusion,
00112    int format,
00113    LPGLYPHMETRICSFLOAT lpgmf )
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 }
00128 
00129 WINGDIAPI BOOL APIENTRY
00130 wglDescribeLayerPlane(
00131    HDC hdc,
00132    int iPixelFormat,
00133    int iLayerPlane,
00134    UINT nBytes,
00135    LPLAYERPLANEDESCRIPTOR plpd )
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 }
00147 
00148 WINGDIAPI int APIENTRY
00149 wglSetLayerPaletteEntries(
00150    HDC hdc,
00151    int iLayerPlane,
00152    int iStart,
00153    int cEntries,
00154    CONST COLORREF *pcr )
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 }
00166 
00167 WINGDIAPI int APIENTRY
00168 wglGetLayerPaletteEntries(
00169    HDC hdc,
00170    int iLayerPlane,
00171    int iStart,
00172    int cEntries,
00173    COLORREF *pcr )
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 }
00185 
00186 WINGDIAPI BOOL APIENTRY
00187 wglRealizeLayerPalette(
00188    HDC hdc,
00189    int iLayerPlane,
00190    BOOL bRealize )
00191 {
00192    (void) hdc;
00193    (void) iLayerPlane;
00194    (void) bRealize;
00195 
00196    assert( 0 );
00197 
00198    return FALSE;
00199 }

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