Changeset 2965 for trunk/src/opengl/mesa/3dfx/blend.c
- Timestamp:
- Mar 1, 2000, 11:45:30 PM (25 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/opengl/mesa/3dfx/blend.c
r2938 r2965 1 /* $Id: blend.c,v 1. 1 2000-02-29 00:46:12 sandervlExp $ */1 /* $Id: blend.c,v 1.2 2000-03-01 22:45:18 jeroen Exp $ */ 2 2 3 3 /* … … 275 275 * Common transparency blending mode. 276 276 */ 277 static void blend_transparency( GLcontext *ctx, GLuint n, const GLubyte mask[],277 static void __cdecl blend_transparency( GLcontext *ctx, GLuint n, const GLubyte mask[], 278 278 GLubyte rgba[][4], CONST GLubyte dest[][4] ) 279 279 { … … 320 320 * Add src and dest. 321 321 */ 322 static void blend_add( GLcontext *ctx, GLuint n, const GLubyte mask[],322 static void __cdecl blend_add( GLcontext *ctx, GLuint n, const GLubyte mask[], 323 323 GLubyte rgba[][4], CONST GLubyte dest[][4] ) 324 324 { … … 348 348 * Blend min function (for GL_EXT_blend_minmax) 349 349 */ 350 static void blend_min( GLcontext *ctx, GLuint n, const GLubyte mask[],350 static void __cdecl blend_min( GLcontext *ctx, GLuint n, const GLubyte mask[], 351 351 GLubyte rgba[][4], CONST GLubyte dest[][4] ) 352 352 { … … 370 370 * Blend max function (for GL_EXT_blend_minmax) 371 371 */ 372 static void blend_max( GLcontext *ctx, GLuint n, const GLubyte mask[],372 static void __cdecl blend_max( GLcontext *ctx, GLuint n, const GLubyte mask[], 373 373 GLubyte rgba[][4], CONST GLubyte dest[][4] ) 374 374 { … … 392 392 * Modulate: result = src * dest 393 393 */ 394 static void blend_modulate( GLcontext *ctx, GLuint n, const GLubyte mask[],394 static void __cdecl blend_modulate( GLcontext *ctx, GLuint n, const GLubyte mask[], 395 395 GLubyte rgba[][4], CONST GLubyte dest[][4] ) 396 396 { … … 421 421 * Input: dest - the pixels from the dest color buffer 422 422 */ 423 static void blend_general( GLcontext *ctx, GLuint n, const GLubyte mask[],423 static void __cdecl blend_general( GLcontext *ctx, GLuint n, const GLubyte mask[], 424 424 GLubyte rgba[][4], CONST GLubyte dest[][4] ) 425 425 {
Note:
See TracChangeset
for help on using the changeset viewer.