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

« back to all changes in this revision

Viewing changes to src/mesa/drivers/dri/r300/r200_state.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:
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
 
 *   Keith Whitwell <keith@tungstengraphics.com>
33
 
 */
34
 
 
35
 
#ifndef __R200_STATE_H__
36
 
#define __R200_STATE_H__
37
 
 
38
 
#ifdef GLX_DIRECT_RENDERING
39
 
 
40
 
#include "r200_context.h"
41
 
 
42
 
extern void r200InitState(r200ContextPtr rmesa);
43
 
extern void r200InitStateFuncs(struct dd_function_table *functions);
44
 
extern void r200InitTnlFuncs(GLcontext * ctx);
45
 
 
46
 
extern void r200UpdateMaterial(GLcontext * ctx);
47
 
 
48
 
extern void r200UpdateViewportOffset(GLcontext * ctx);
49
 
extern void r200UpdateWindow(GLcontext * ctx);
50
 
 
51
 
extern void r200ValidateState(GLcontext * ctx);
52
 
 
53
 
extern void r200PrintDirty(r200ContextPtr rmesa, const char *msg);
54
 
 
55
 
extern void r200LightingSpaceChange(GLcontext * ctx);
56
 
 
57
 
#endif
58
 
#endif