1/*
2Copyright (C) The Weather Channel, Inc.  2002.  All Rights Reserved.
3
4The Weather Channel (TM) funded Tungsten Graphics to develop the
5initial release of the Radeon 8500 driver under the XFree86 license.
6This notice must be preserved.
7
8Permission is hereby granted, free of charge, to any person obtaining
9a copy of this software and associated documentation files (the
10"Software"), to deal in the Software without restriction, including
11without limitation the rights to use, copy, modify, merge, publish,
12distribute, sublicense, and/or sell copies of the Software, and to
13permit persons to whom the Software is furnished to do so, subject to
14the following conditions:
15
16The above copyright notice and this permission notice (including the
17next paragraph) shall be included in all copies or substantial
18portions of the Software.
19
20THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
21EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
22MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
23IN NO EVENT SHALL THE COPYRIGHT OWNER(S) AND/OR ITS SUPPLIERS BE
24LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
25OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
26WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
27*/
28
29/*
30 * Authors:
31 *   Keith Whitwell <keith@tungstengraphics.com>
32 */
33
34#ifndef __R200_SWTCL_H__
35#define __R200_SWTCL_H__
36
37#include "main/mtypes.h"
38#include "swrast/swrast.h"
39#include "r200_context.h"
40
41extern void r200InitSwtcl( struct gl_context *ctx );
42
43extern void r200ChooseRenderState( struct gl_context *ctx );
44extern void r200ChooseVertexState( struct gl_context *ctx );
45
46extern void r200CheckTexSizes( struct gl_context *ctx );
47
48extern void r200BuildVertices( struct gl_context *ctx, GLuint start, GLuint count,
49				 GLuint newinputs );
50
51extern void r200PrintSetupFlags(char *msg, GLuint flags );
52
53
54extern void r200_translate_vertex( struct gl_context *ctx,
55				     const radeonVertex *src,
56				     SWvertex *dst );
57
58extern void r200_print_vertex( struct gl_context *ctx, const radeonVertex *v );
59
60extern void r200_import_float_colors( struct gl_context *ctx );
61extern void r200_import_float_spec_colors( struct gl_context *ctx );
62
63extern void r200PointsBitmap( struct gl_context *ctx, GLint px, GLint py,
64			      GLsizei width, GLsizei height,
65			      const struct gl_pixelstore_attrib *unpack,
66			      const GLubyte *bitmap );
67
68void r200_swtcl_flush(struct gl_context *ctx, uint32_t current_offset);
69#endif
70