Home | Info | Community | Development | myReactOS | Contact Us
ReactOS Development > Doxygenrastpos.h
Go to the documentation of this file.
00001 00006 /* 00007 * Mesa 3-D graphics library 00008 * Version: 4.1 00009 * 00010 * Copyright (C) 1999-2002 Brian Paul All Rights Reserved. 00011 * 00012 * Permission is hereby granted, free of charge, to any person obtaining a 00013 * copy of this software and associated documentation files (the "Software"), 00014 * to deal in the Software without restriction, including without limitation 00015 * the rights to use, copy, modify, merge, publish, distribute, sublicense, 00016 * and/or sell copies of the Software, and to permit persons to whom the 00017 * Software is furnished to do so, subject to the following conditions: 00018 * 00019 * The above copyright notice and this permission notice shall be included 00020 * in all copies or substantial portions of the Software. 00021 * 00022 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS 00023 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 00024 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL 00025 * BRIAN PAUL BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN 00026 * AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN 00027 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 00028 */ 00029 00030 00031 #ifndef RASTPOS_H 00032 #define RASTPOS_H 00033 00034 00035 #include "glheader.h" 00036 00037 00038 extern void GLAPIENTRY 00039 _mesa_RasterPos2d(GLdouble x, GLdouble y); 00040 00041 extern void GLAPIENTRY 00042 _mesa_RasterPos2f(GLfloat x, GLfloat y); 00043 00044 extern void GLAPIENTRY 00045 _mesa_RasterPos2i(GLint x, GLint y); 00046 00047 extern void GLAPIENTRY 00048 _mesa_RasterPos2s(GLshort x, GLshort y); 00049 00050 extern void GLAPIENTRY 00051 _mesa_RasterPos3d(GLdouble x, GLdouble y, GLdouble z); 00052 00053 extern void GLAPIENTRY 00054 _mesa_RasterPos3f(GLfloat x, GLfloat y, GLfloat z); 00055 00056 extern void GLAPIENTRY 00057 _mesa_RasterPos3i(GLint x, GLint y, GLint z); 00058 00059 extern void GLAPIENTRY 00060 _mesa_RasterPos3s(GLshort x, GLshort y, GLshort z); 00061 00062 extern void GLAPIENTRY 00063 _mesa_RasterPos4d(GLdouble x, GLdouble y, GLdouble z, GLdouble w); 00064 00065 extern void GLAPIENTRY 00066 _mesa_RasterPos4f(GLfloat x, GLfloat y, GLfloat z, GLfloat w); 00067 00068 extern void GLAPIENTRY 00069 _mesa_RasterPos4i(GLint x, GLint y, GLint z, GLint w); 00070 00071 extern void GLAPIENTRY 00072 _mesa_RasterPos4s(GLshort x, GLshort y, GLshort z, GLshort w); 00073 00074 extern void GLAPIENTRY 00075 _mesa_RasterPos2dv(const GLdouble *v); 00076 00077 extern void GLAPIENTRY 00078 _mesa_RasterPos2fv(const GLfloat *v); 00079 00080 extern void GLAPIENTRY 00081 _mesa_RasterPos2iv(const GLint *v); 00082 00083 extern void GLAPIENTRY 00084 _mesa_RasterPos2sv(const GLshort *v); 00085 00086 extern void GLAPIENTRY 00087 _mesa_RasterPos3dv(const GLdouble *v); 00088 00089 extern void GLAPIENTRY 00090 _mesa_RasterPos3fv(const GLfloat *v); 00091 00092 extern void GLAPIENTRY 00093 _mesa_RasterPos3iv(const GLint *v); 00094 00095 extern void GLAPIENTRY 00096 _mesa_RasterPos3sv(const GLshort *v); 00097 00098 extern void GLAPIENTRY 00099 _mesa_RasterPos4dv(const GLdouble *v); 00100 00101 extern void GLAPIENTRY 00102 _mesa_RasterPos4fv(const GLfloat *v); 00103 00104 extern void GLAPIENTRY 00105 _mesa_RasterPos4iv(const GLint *v); 00106 00107 extern void GLAPIENTRY 00108 _mesa_RasterPos4sv(const GLshort *v); 00109 00110 00111 /**********************************************************************/ 00113 /**********************************************************************/ 00116 extern void GLAPIENTRY 00117 _mesa_WindowPos2dMESA(GLdouble x, GLdouble y); 00118 00119 extern void GLAPIENTRY 00120 _mesa_WindowPos2fMESA(GLfloat x, GLfloat y); 00121 00122 extern void GLAPIENTRY 00123 _mesa_WindowPos2iMESA(GLint x, GLint y); 00124 00125 extern void GLAPIENTRY 00126 _mesa_WindowPos2sMESA(GLshort x, GLshort y); 00127 00128 extern void GLAPIENTRY 00129 _mesa_WindowPos3dMESA(GLdouble x, GLdouble y, GLdouble z); 00130 00131 extern void GLAPIENTRY 00132 _mesa_WindowPos3fMESA(GLfloat x, GLfloat y, GLfloat z); 00133 00134 extern void GLAPIENTRY 00135 _mesa_WindowPos3iMESA(GLint x, GLint y, GLint z); 00136 00137 extern void GLAPIENTRY 00138 _mesa_WindowPos3sMESA(GLshort x, GLshort y, GLshort z); 00139 00140 extern void GLAPIENTRY 00141 _mesa_WindowPos4dMESA(GLdouble x, GLdouble y, GLdouble z, GLdouble w); 00142 00143 extern void GLAPIENTRY 00144 _mesa_WindowPos4fMESA(GLfloat x, GLfloat y, GLfloat z, GLfloat w); 00145 00146 extern void GLAPIENTRY 00147 _mesa_WindowPos4iMESA(GLint x, GLint y, GLint z, GLint w); 00148 00149 extern void GLAPIENTRY 00150 _mesa_WindowPos4sMESA(GLshort x, GLshort y, GLshort z, GLshort w); 00151 00152 extern void GLAPIENTRY 00153 _mesa_WindowPos2dvMESA(const GLdouble *v); 00154 00155 extern void GLAPIENTRY 00156 _mesa_WindowPos2fvMESA(const GLfloat *v); 00157 00158 extern void GLAPIENTRY 00159 _mesa_WindowPos2ivMESA(const GLint *v); 00160 00161 extern void GLAPIENTRY 00162 _mesa_WindowPos2svMESA(const GLshort *v); 00163 00164 extern void GLAPIENTRY 00165 _mesa_WindowPos3dvMESA(const GLdouble *v); 00166 00167 extern void GLAPIENTRY 00168 _mesa_WindowPos3fvMESA(const GLfloat *v); 00169 00170 extern void GLAPIENTRY 00171 _mesa_WindowPos3ivMESA(const GLint *v); 00172 00173 extern void GLAPIENTRY 00174 _mesa_WindowPos3svMESA(const GLshort *v); 00175 00176 extern void GLAPIENTRY 00177 _mesa_WindowPos4dvMESA(const GLdouble *v); 00178 00179 extern void GLAPIENTRY 00180 _mesa_WindowPos4fvMESA(const GLfloat *v); 00181 00182 extern void GLAPIENTRY 00183 _mesa_WindowPos4ivMESA(const GLint *v); 00184 00185 extern void GLAPIENTRY 00186 _mesa_WindowPos4svMESA(const GLshort *v); 00187 00188 extern void 00189 _mesa_init_rastpos( GLcontext * ctx ); 00190 00193 #endif Generated on Sun May 27 2012 04:20:26 for ReactOS by
1.7.6.1
|