Changeset 3598 for trunk/src/opengl/mesa/alpha.c
- Timestamp:
- May 23, 2000, 10:41:28 PM (25 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/opengl/mesa/alpha.c
r2962 r3598 1 /* $Id: alpha.c,v 1. 2 2000-03-01 18:49:22jeroen Exp $ */1 /* $Id: alpha.c,v 1.3 2000-05-23 20:40:20 jeroen Exp $ */ 2 2 3 3 /* 4 4 * Mesa 3-D graphics library 5 * Version: 3. 15 * Version: 3.3 6 6 * 7 7 * Copyright (C) 1999 Brian Paul All Rights Reserved. … … 31 31 #include "all.h" 32 32 #else 33 #ifndef XFree86Server 34 #else 35 #include "GL/xf86glx.h" 36 #endif 33 #include "glheader.h" 37 34 #include "alpha.h" 38 35 #include "types.h" … … 44 41 45 42 46 void gl_AlphaFunc( GLcontext* ctx, GLenum func, GLclampf ref ) 43 void 44 _mesa_AlphaFunc( GLenum func, GLclampf ref ) 47 45 { 46 GET_CURRENT_CONTEXT(ctx); 48 47 ASSERT_OUTSIDE_BEGIN_END_AND_FLUSH(ctx, "glAlphaFunc"); 49 48 … … 85 84 * 1 = one or more pixels passed the alpha test. 86 85 */ 87 GLint gl_alpha_test( const GLcontext* ctx, 88 GLuint n, CONST GLubyte rgba[][4], GLubyte mask[] ) 86 GLint 87 _mesa_alpha_test( const GLcontext* ctx, 88 GLuint n, CONST GLubyte rgba[][4], GLubyte mask[] ) 89 89 { 90 90 GLuint i;
Note:
See TracChangeset
for help on using the changeset viewer.