Merge commit 'origin/gallium-0.1'
[mesa.git] / src / mesa / drivers / dri / r300 / r300_state.h
1 /*
2 Copyright (C) The Weather Channel, Inc. 2002. All Rights Reserved.
3
4 The Weather Channel (TM) funded Tungsten Graphics to develop the
5 initial release of the Radeon 8500 driver under the XFree86 license.
6 This notice must be preserved.
7
8 Permission is hereby granted, free of charge, to any person obtaining
9 a copy of this software and associated documentation files (the
10 "Software"), to deal in the Software without restriction, including
11 without limitation the rights to use, copy, modify, merge, publish,
12 distribute, sublicense, and/or sell copies of the Software, and to
13 permit persons to whom the Software is furnished to do so, subject to
14 the following conditions:
15
16 The above copyright notice and this permission notice (including the
17 next paragraph) shall be included in all copies or substantial
18 portions of the Software.
19
20 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
21 EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
22 MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
23 IN NO EVENT SHALL THE COPYRIGHT OWNER(S) AND/OR ITS SUPPLIERS BE
24 LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
25 OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
26 WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
27
28 **************************************************************************/
29
30 /*
31 * Authors:
32 * Nicolai Haehnle <prefect_@gmx.net>
33 */
34
35 #ifndef __R300_STATE_H__
36 #define __R300_STATE_H__
37
38 #include "r300_context.h"
39
40 #define R300_NEWPRIM( rmesa ) \
41 do { \
42 if ( rmesa->dma.flush ) \
43 rmesa->dma.flush( rmesa ); \
44 } while (0)
45
46 #define R300_STATECHANGE(r300, atom) \
47 do { \
48 R300_NEWPRIM(r300); \
49 r300->hw.atom.dirty = GL_TRUE; \
50 r300->hw.is_dirty = GL_TRUE; \
51 } while(0)
52
53 #define R300_PRINT_STATE(r300, atom) \
54 r300PrintStateAtom(r300, &r300->hw.atom)
55
56 /* Fire the buffered vertices no matter what.
57 TODO: This has not been implemented yet
58 */
59 #define R300_FIREVERTICES( r300 ) \
60 do { \
61 \
62 if ( (r300)->cmdbuf.count_used || (r300)->dma.flush ) { \
63 r300Flush( (r300)->radeon.glCtx ); \
64 } \
65 \
66 } while (0)
67
68 // r300_state.c
69 extern int future_hw_tcl_on;
70 void _tnl_UpdateFixedFunctionProgram (GLcontext * ctx);
71 void r300UpdateViewportOffset (GLcontext * ctx);
72 void r300UpdateDrawBuffer (GLcontext * ctx);
73 void r300UpdateStateParameters (GLcontext * ctx, GLuint new_state);
74 void r300UpdateShaders (r300ContextPtr rmesa);
75 void r300UpdateShaderStates (r300ContextPtr rmesa);
76 void r300InitState (r300ContextPtr r300);
77 void r300UpdateClipPlanes (GLcontext * ctx);
78 void r300InitStateFuncs (struct dd_function_table *functions);
79
80 #endif /* __R300_STATE_H__ */