Home | Info | Community | Development | myReactOS | Contact Us
ReactOS Development > Doxygenblend.h
Go to the documentation of this file.
00001 00006 /* 00007 * Mesa 3-D graphics library 00008 * Version: 6.5.2 00009 * 00010 * Copyright (C) 1999-2006 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 00032 #ifndef BLEND_H 00033 #define BLEND_H 00034 00035 00036 #include "mtypes.h" 00037 00038 00039 extern void GLAPIENTRY 00040 _mesa_BlendFunc( GLenum sfactor, GLenum dfactor ); 00041 00042 00043 extern void GLAPIENTRY 00044 _mesa_BlendFuncSeparateEXT( GLenum sfactorRGB, GLenum dfactorRGB, 00045 GLenum sfactorA, GLenum dfactorA ); 00046 00047 00048 extern void GLAPIENTRY 00049 _mesa_BlendEquation( GLenum mode ); 00050 00051 00052 extern void GLAPIENTRY 00053 _mesa_BlendEquationSeparateEXT( GLenum modeRGB, GLenum modeA ); 00054 00055 00056 extern void GLAPIENTRY 00057 _mesa_BlendColor(GLclampf red, GLclampf green, GLclampf blue, GLclampf alpha); 00058 00059 00060 extern void GLAPIENTRY 00061 _mesa_AlphaFunc( GLenum func, GLclampf ref ); 00062 00063 00064 extern void GLAPIENTRY 00065 _mesa_LogicOp( GLenum opcode ); 00066 00067 00068 extern void GLAPIENTRY 00069 _mesa_IndexMask( GLuint mask ); 00070 00071 extern void GLAPIENTRY 00072 _mesa_ColorMask( GLboolean red, GLboolean green, 00073 GLboolean blue, GLboolean alpha ); 00074 00075 00076 extern void GLAPIENTRY 00077 _mesa_ClampColorARB(GLenum target, GLenum clamp); 00078 00079 00080 extern void 00081 _mesa_init_color( GLcontext * ctx ); 00082 00083 #endif Generated on Sat May 26 2012 04:18:57 for ReactOS by
1.7.6.1
|