~ubuntu-branches/ubuntu/quantal/mesa/quantal

« back to all changes in this revision

Viewing changes to src/mesa/swrast/s_span.h

  • Committer: Bazaar Package Importer
  • Author(s): Sebastien Bacher
  • Date: 2007-02-21 12:44:07 UTC
  • mfrom: (1.2.1 upstream)
  • mto: This revision was merged to the branch mainline in revision 22.
  • Revision ID: james.westby@ubuntu.com-20070221124407-rgcacs32mycrtadl
ImportĀ upstreamĀ versionĀ 6.5.2

Show diffs side-by-side

added added

removed removed

Lines of Context:
32
32
 
33
33
 
34
34
extern void
35
 
_swrast_span_default_z( GLcontext *ctx, struct sw_span *span );
36
 
 
37
 
extern void
38
 
_swrast_span_interpolate_z( const GLcontext *ctx, struct sw_span *span );
39
 
 
40
 
extern void
41
 
_swrast_span_default_fog( GLcontext *ctx, struct sw_span *span );
42
 
 
43
 
extern void
44
 
_swrast_span_default_color( GLcontext *ctx, struct sw_span *span );
45
 
 
46
 
extern void
47
 
_swrast_span_default_texcoords( GLcontext *ctx, struct sw_span *span );
 
35
_swrast_span_default_z( GLcontext *ctx, SWspan *span );
 
36
 
 
37
extern void
 
38
_swrast_span_interpolate_z( const GLcontext *ctx, SWspan *span );
 
39
 
 
40
extern void
 
41
_swrast_span_default_fog( GLcontext *ctx, SWspan *span );
 
42
 
 
43
extern void
 
44
_swrast_span_default_color( GLcontext *ctx, SWspan *span );
 
45
 
 
46
extern void
 
47
_swrast_span_default_texcoords( GLcontext *ctx, SWspan *span );
48
48
 
49
49
extern GLfloat
50
50
_swrast_compute_lambda(GLfloat dsdx, GLfloat dsdy, GLfloat dtdx, GLfloat dtdy,
52
52
                       GLfloat s, GLfloat t, GLfloat q, GLfloat invQ);
53
53
 
54
54
extern void
55
 
_swrast_write_index_span( GLcontext *ctx, struct sw_span *span);
56
 
 
57
 
 
58
 
extern void
59
 
_swrast_write_rgba_span( GLcontext *ctx, struct sw_span *span);
60
 
 
61
 
 
62
 
extern void
63
 
_swrast_read_rgba_span( GLcontext *ctx, struct gl_renderbuffer *rb,
64
 
                        GLuint n, GLint x, GLint y, GLchan rgba[][4] );
 
55
_swrast_write_index_span( GLcontext *ctx, SWspan *span);
 
56
 
 
57
 
 
58
extern void
 
59
_swrast_write_rgba_span( GLcontext *ctx, SWspan *span);
 
60
 
 
61
 
 
62
extern void
 
63
_swrast_read_rgba_span(GLcontext *ctx, struct gl_renderbuffer *rb,
 
64
                       GLuint n, GLint x, GLint y, GLenum type, GLvoid *rgba);
65
65
 
66
66
extern void
67
67
_swrast_read_index_span( GLcontext *ctx, struct gl_renderbuffer *rb,
82
82
                GLuint count, GLint x, GLint y,
83
83
                GLvoid *values, GLuint valueSize);
84
84
 
 
85
 
 
86
extern void *
 
87
_swrast_get_dest_rgba(GLcontext *ctx, struct gl_renderbuffer *rb,
 
88
                      SWspan *span);
 
89
 
85
90
#endif