Changeset 3582 for trunk/src/opengl/mesa/blend.h
- Timestamp:
- May 21, 2000, 10:57:14 PM (25 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/opengl/mesa/blend.h
r2938 r3582 1 /* $Id: blend.h,v 1. 1 2000-02-29 00:48:25 sandervlExp $ */1 /* $Id: blend.h,v 1.2 2000-05-21 20:10:29 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. … … 38 38 39 39 extern void 40 gl_blend_span( GLcontext *ctx, GLuint n, GLint x, GLint y,41 GLubyte rgba[][4], const GLubyte mask[] );40 _mesa_blend_span( GLcontext *ctx, GLuint n, GLint x, GLint y, 41 GLubyte rgba[][4], const GLubyte mask[] ); 42 42 43 43 44 44 extern void 45 gl_blend_pixels( GLcontext *ctx,46 GLuint n, const GLint x[], const GLint y[],47 GLubyte rgba[][4], const GLubyte mask[] );45 _mesa_blend_pixels( GLcontext *ctx, 46 GLuint n, const GLint x[], const GLint y[], 47 GLubyte rgba[][4], const GLubyte mask[] ); 48 48 49 49 50 50 extern void 51 gl_BlendFunc( GLcontext *ctx,GLenum sfactor, GLenum dfactor );51 _mesa_BlendFunc( GLenum sfactor, GLenum dfactor ); 52 52 53 53 54 54 extern void 55 gl_BlendFuncSeparate( GLcontext *ctx,GLenum sfactorRGB, GLenum dfactorRGB,56 GLenum sfactorA, GLenum dfactorA );55 _mesa_BlendFuncSeparateEXT( GLenum sfactorRGB, GLenum dfactorRGB, 56 GLenum sfactorA, GLenum dfactorA ); 57 57 58 58 59 59 extern void 60 gl_BlendEquation( GLcontext *ctx,GLenum mode );60 _mesa_BlendEquation( GLenum mode ); 61 61 62 62 63 63 extern void 64 gl_BlendColor( GLcontext *ctx, GLclampf red, GLclampf green, 65 GLclampf blue, GLclampf alpha ); 64 _mesa_BlendColor(GLclampf red, GLclampf green, GLclampf blue, GLclampf alpha); 66 65 67 66
Note:
See TracChangeset
for help on using the changeset viewer.