Ignore:
Timestamp:
Mar 1, 2000, 11:45:30 PM (25 years ago)
Author:
jeroen
Message:

* empty log message *

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 sandervl Exp $ */
     1/* $Id: blend.c,v 1.2 2000-03-01 22:45:18 jeroen Exp $ */
    22
    33/*
     
    275275 * Common transparency blending mode.
    276276 */
    277 static void blend_transparency( GLcontext *ctx, GLuint n, const GLubyte mask[],
     277static void __cdecl blend_transparency( GLcontext *ctx, GLuint n, const GLubyte mask[],
    278278                                GLubyte rgba[][4], CONST GLubyte dest[][4] )
    279279{
     
    320320 * Add src and dest.
    321321 */
    322 static void blend_add( GLcontext *ctx, GLuint n, const GLubyte mask[],
     322static void __cdecl blend_add( GLcontext *ctx, GLuint n, const GLubyte mask[],
    323323                       GLubyte rgba[][4], CONST GLubyte dest[][4] )
    324324{
     
    348348 * Blend min function  (for GL_EXT_blend_minmax)
    349349 */
    350 static void blend_min( GLcontext *ctx, GLuint n, const GLubyte mask[],
     350static void __cdecl blend_min( GLcontext *ctx, GLuint n, const GLubyte mask[],
    351351                       GLubyte rgba[][4], CONST GLubyte dest[][4] )
    352352{
     
    370370 * Blend max function  (for GL_EXT_blend_minmax)
    371371 */
    372 static void blend_max( GLcontext *ctx, GLuint n, const GLubyte mask[],
     372static void __cdecl blend_max( GLcontext *ctx, GLuint n, const GLubyte mask[],
    373373                       GLubyte rgba[][4], CONST GLubyte dest[][4] )
    374374{
     
    392392 * Modulate:  result = src * dest
    393393 */
    394 static void blend_modulate( GLcontext *ctx, GLuint n, const GLubyte mask[],
     394static void __cdecl blend_modulate( GLcontext *ctx, GLuint n, const GLubyte mask[],
    395395                            GLubyte rgba[][4], CONST GLubyte dest[][4] )
    396396{
     
    421421 * Input:  dest - the pixels from the dest color buffer
    422422 */
    423 static void blend_general( GLcontext *ctx, GLuint n, const GLubyte mask[],
     423static void __cdecl blend_general( GLcontext *ctx, GLuint n, const GLubyte mask[],
    424424                           GLubyte rgba[][4], CONST GLubyte dest[][4] )
    425425{
Note: See TracChangeset for help on using the changeset viewer.