2001-11-19 01:18:28 +00:00
|
|
|
/* $Id: s_span.h,v 1.7 2001/11/19 01:18:28 brianp Exp $ */
|
2000-10-31 18:00:04 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Mesa 3-D graphics library
|
|
|
|
* Version: 3.5
|
2000-11-22 07:32:16 +00:00
|
|
|
*
|
2001-03-12 00:48:37 +00:00
|
|
|
* Copyright (C) 1999-2001 Brian Paul All Rights Reserved.
|
2000-11-22 07:32:16 +00:00
|
|
|
*
|
2000-10-31 18:00:04 +00:00
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining a
|
|
|
|
* copy of this software and associated documentation files (the "Software"),
|
|
|
|
* to deal in the Software without restriction, including without limitation
|
|
|
|
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
|
|
|
|
* and/or sell copies of the Software, and to permit persons to whom the
|
|
|
|
* Software is furnished to do so, subject to the following conditions:
|
2000-11-22 07:32:16 +00:00
|
|
|
*
|
2000-10-31 18:00:04 +00:00
|
|
|
* The above copyright notice and this permission notice shall be included
|
|
|
|
* in all copies or substantial portions of the Software.
|
2000-11-22 07:32:16 +00:00
|
|
|
*
|
2000-10-31 18:00:04 +00:00
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
|
|
|
|
* OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
|
|
|
|
* BRIAN PAUL BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
|
|
|
|
* AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
|
|
|
* CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
#ifndef S_SPAN_H
|
|
|
|
#define S_SPAN_H
|
|
|
|
|
|
|
|
|
2000-11-22 07:32:16 +00:00
|
|
|
#include "mtypes.h"
|
2000-10-31 18:00:04 +00:00
|
|
|
#include "swrast.h"
|
2001-11-19 01:18:28 +00:00
|
|
|
#include "s_trispan.h"
|
2000-10-31 18:00:04 +00:00
|
|
|
|
|
|
|
|
2001-05-15 21:30:26 +00:00
|
|
|
extern void
|
|
|
|
_mesa_write_index_span( GLcontext *ctx, GLuint n, GLint x, GLint y,
|
|
|
|
const GLdepth z[], const GLfloat fog[],
|
|
|
|
GLuint index[], const GLint coverage[],
|
|
|
|
GLenum primitive );
|
2000-10-31 18:00:04 +00:00
|
|
|
|
|
|
|
|
2001-05-15 21:30:26 +00:00
|
|
|
extern void
|
|
|
|
_mesa_write_monoindex_span( GLcontext *ctx, GLuint n, GLint x, GLint y,
|
|
|
|
const GLdepth z[], const GLfloat fog[],
|
|
|
|
GLuint index, const GLint coverage[],
|
|
|
|
GLenum primitive );
|
2000-10-31 18:00:04 +00:00
|
|
|
|
|
|
|
|
2001-05-15 21:30:26 +00:00
|
|
|
extern void
|
|
|
|
_mesa_write_rgba_span( GLcontext *ctx, GLuint n, GLint x, GLint y,
|
|
|
|
const GLdepth z[], const GLfloat fog[],
|
|
|
|
GLchan rgba[][4], const GLfloat coverage[],
|
|
|
|
GLenum primitive );
|
2000-10-31 18:00:04 +00:00
|
|
|
|
|
|
|
|
2001-05-15 21:30:26 +00:00
|
|
|
extern void
|
|
|
|
_mesa_write_monocolor_span( GLcontext *ctx, GLuint n, GLint x, GLint y,
|
|
|
|
const GLdepth z[], const GLfloat fog[],
|
|
|
|
const GLchan color[4], const GLfloat coverage[],
|
|
|
|
GLenum primitive );
|
2000-10-31 18:00:04 +00:00
|
|
|
|
|
|
|
|
2001-11-19 01:18:28 +00:00
|
|
|
extern void
|
|
|
|
_mesa_rasterize_span(GLcontext *ctx, struct triangle_span *span);
|
|
|
|
|
|
|
|
|
2001-05-15 21:30:26 +00:00
|
|
|
extern void
|
|
|
|
_mesa_write_texture_span( GLcontext *ctx, GLuint n, GLint x, GLint y,
|
|
|
|
const GLdepth z[], const GLfloat fog[],
|
|
|
|
const GLfloat s[], const GLfloat t[],
|
|
|
|
const GLfloat u[], GLfloat lambda[],
|
|
|
|
GLchan rgba[][4], CONST GLchan spec[][4],
|
|
|
|
const GLfloat coverage[], GLenum primitive );
|
2000-10-31 18:00:04 +00:00
|
|
|
|
|
|
|
|
|
|
|
extern void
|
2001-05-15 21:30:26 +00:00
|
|
|
_mesa_write_multitexture_span( GLcontext *ctx, GLuint n, GLint x, GLint y,
|
|
|
|
const GLdepth z[], const GLfloat fog[],
|
|
|
|
CONST GLfloat s[MAX_TEXTURE_UNITS][MAX_WIDTH],
|
|
|
|
CONST GLfloat t[MAX_TEXTURE_UNITS][MAX_WIDTH],
|
|
|
|
CONST GLfloat u[MAX_TEXTURE_UNITS][MAX_WIDTH],
|
|
|
|
GLfloat lambda[MAX_TEXTURE_UNITS][MAX_WIDTH],
|
|
|
|
GLchan rgba[][4], CONST GLchan spec[][4],
|
|
|
|
const GLfloat coverage[], GLenum primitive );
|
2000-10-31 18:00:04 +00:00
|
|
|
|
|
|
|
|
2001-05-15 21:30:26 +00:00
|
|
|
extern void
|
|
|
|
_mesa_read_rgba_span( GLcontext *ctx, GLframebuffer *buffer,
|
|
|
|
GLuint n, GLint x, GLint y, GLchan rgba[][4] );
|
2000-10-31 18:00:04 +00:00
|
|
|
|
|
|
|
|
2001-05-15 21:30:26 +00:00
|
|
|
extern void
|
|
|
|
_mesa_read_index_span( GLcontext *ctx, GLframebuffer *buffer,
|
|
|
|
GLuint n, GLint x, GLint y, GLuint indx[] );
|
2000-10-31 18:00:04 +00:00
|
|
|
|
|
|
|
|
|
|
|
#endif
|