blob: 7b9b0c106aa10876d0574bc82fc9a9b928186c0f [file] [log] [blame]
Jon Smirlbcc6edd2003-10-21 06:05:39 +00001/*
Keith Whitwelladbec392003-08-06 17:59:57 +00002Copyright (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/*
31 * Authors:
32 * Keith Whitwell <keith@tungstengraphics.com>
33 */
34
35#ifndef __R200_STATE_H__
36#define __R200_STATE_H__
37
Keith Whitwelladbec392003-08-06 17:59:57 +000038#include "r200_context.h"
39
40extern void r200InitState( r200ContextPtr rmesa );
Alex Deucher2b5618f2009-12-03 11:20:40 -050041extern void r200InitStateFuncs( struct dd_function_table *functions );
Brian Pauld3fd7ba2004-01-20 02:49:27 +000042extern void r200InitTnlFuncs( GLcontext *ctx );
Keith Whitwelladbec392003-08-06 17:59:57 +000043
44extern void r200UpdateMaterial( GLcontext *ctx );
45
Keith Whitwelladbec392003-08-06 17:59:57 +000046extern void r200UpdateViewportOffset( GLcontext *ctx );
47extern void r200UpdateWindow( GLcontext *ctx );
Brian Paulfcbfeb52005-09-01 04:03:44 +000048extern void r200UpdateDrawBuffer(GLcontext *ctx);
Keith Whitwelladbec392003-08-06 17:59:57 +000049
Dave Airliee45213d2009-01-31 01:59:57 +100050extern GLboolean r200ValidateState( GLcontext *ctx );
Keith Whitwelladbec392003-08-06 17:59:57 +000051
Pauli Nieminendbf59de2009-08-26 01:43:27 +030052extern void r200_vtbl_update_scissor( GLcontext *ctx );
53
Keith Whitwelladbec392003-08-06 17:59:57 +000054extern void r200Fallback( GLcontext *ctx, GLuint bit, GLboolean mode );
55#define FALLBACK( rmesa, bit, mode ) do { \
56 if ( 0 ) fprintf( stderr, "FALLBACK in %s: #%d=%d\n", \
57 __FUNCTION__, bit, mode ); \
Dave Airlie46372352009-01-14 10:44:48 +100058 r200Fallback( rmesa->radeon.glCtx, bit, mode ); \
Keith Whitwelladbec392003-08-06 17:59:57 +000059} while (0)
60
61extern void r200LightingSpaceChange( GLcontext *ctx );
62
63#endif