Merge remote branch 'origin/lp-binning'
[mesa.git] / src / mesa / drivers / dri / nouveau / nv10_driver.h
1 /*
2 * Copyright (C) 2009 Francisco Jerez.
3 * All Rights Reserved.
4 *
5 * Permission is hereby granted, free of charge, to any person obtaining
6 * a copy of this software and associated documentation files (the
7 * "Software"), to deal in the Software without restriction, including
8 * without limitation the rights to use, copy, modify, merge, publish,
9 * distribute, sublicense, and/or sell copies of the Software, and to
10 * permit persons to whom the Software is furnished to do so, subject to
11 * the following conditions:
12 *
13 * The above copyright notice and this permission notice (including the
14 * next paragraph) shall be included in all copies or substantial
15 * portions of the Software.
16 *
17 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
18 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
19 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
20 * IN NO EVENT SHALL THE COPYRIGHT OWNER(S) AND/OR ITS SUPPLIERS BE
21 * LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
22 * OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
23 * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
24 *
25 */
26
27 #ifndef __NV10_DRIVER_H__
28 #define __NV10_DRIVER_H__
29
30 #define NV10_TEXTURE_UNITS 2
31
32 /* nv10_screen.c */
33 GLboolean
34 nv10_screen_init(struct nouveau_screen *screen);
35
36 /* nv10_context.c */
37 GLcontext *
38 nv10_context_create(struct nouveau_screen *screen, const GLvisual *visual,
39 GLcontext *share_ctx);
40
41 void
42 nv10_context_destroy(GLcontext *ctx);
43
44 /* nv10_render.c */
45 void
46 nv10_render_init(GLcontext *ctx);
47
48 void
49 nv10_render_destroy(GLcontext *ctx);
50
51 /* nv10_state_fb.c */
52 void
53 nv10_emit_framebuffer(GLcontext *ctx, int emit);
54
55 void
56 nv10_emit_render_mode(GLcontext *ctx, int emit);
57
58 void
59 nv10_emit_scissor(GLcontext *ctx, int emit);
60
61 void
62 nv10_emit_viewport(GLcontext *ctx, int emit);
63
64 /* nv10_state_polygon.c */
65 void
66 nv10_emit_cull_face(GLcontext *ctx, int emit);
67
68 void
69 nv10_emit_front_face(GLcontext *ctx, int emit);
70
71 void
72 nv10_emit_line_mode(GLcontext *ctx, int emit);
73
74 void
75 nv10_emit_line_stipple(GLcontext *ctx, int emit);
76
77 void
78 nv10_emit_point_mode(GLcontext *ctx, int emit);
79
80 void
81 nv10_emit_polygon_mode(GLcontext *ctx, int emit);
82
83 void
84 nv10_emit_polygon_offset(GLcontext *ctx, int emit);
85
86 void
87 nv10_emit_polygon_stipple(GLcontext *ctx, int emit);
88
89 /* nv10_state_raster.c */
90 void
91 nv10_emit_alpha_func(GLcontext *ctx, int emit);
92
93 void
94 nv10_emit_blend_color(GLcontext *ctx, int emit);
95
96 void
97 nv10_emit_blend_equation(GLcontext *ctx, int emit);
98
99 void
100 nv10_emit_blend_func(GLcontext *ctx, int emit);
101
102 void
103 nv10_emit_color_mask(GLcontext *ctx, int emit);
104
105 void
106 nv10_emit_depth(GLcontext *ctx, int emit);
107
108 void
109 nv10_emit_dither(GLcontext *ctx, int emit);
110
111 void
112 nv10_emit_index_mask(GLcontext *ctx, int emit);
113
114 void
115 nv10_emit_logic_opcode(GLcontext *ctx, int emit);
116
117 void
118 nv10_emit_shade_model(GLcontext *ctx, int emit);
119
120 void
121 nv10_emit_stencil_func(GLcontext *ctx, int emit);
122
123 void
124 nv10_emit_stencil_mask(GLcontext *ctx, int emit);
125
126 void
127 nv10_emit_stencil_op(GLcontext *ctx, int emit);
128
129 /* nv10_state_frag.c */
130 void
131 nv10_emit_tex_env(GLcontext *ctx, int emit);
132
133 void
134 nv10_emit_frag(GLcontext *ctx, int emit);
135
136 /* nv10_state_tex.c */
137 void
138 nv10_emit_tex_gen(GLcontext *ctx, int emit);
139
140 void
141 nv10_emit_tex_obj(GLcontext *ctx, int emit);
142
143 /* nv10_state_tnl.c */
144 void
145 nv10_get_fog_coeff(GLcontext *ctx, float k[3]);
146
147 void
148 nv10_get_spot_coeff(struct gl_light *l, float k[7]);
149
150 void
151 nv10_get_shininess_coeff(float s, float k[6]);
152
153 void
154 nv10_emit_clip_plane(GLcontext *ctx, int emit);
155
156 void
157 nv10_emit_color_material(GLcontext *ctx, int emit);
158
159 void
160 nv10_emit_fog(GLcontext *ctx, int emit);
161
162 void
163 nv10_emit_light_enable(GLcontext *ctx, int emit);
164
165 void
166 nv10_emit_light_model(GLcontext *ctx, int emit);
167
168 void
169 nv10_emit_light_source(GLcontext *ctx, int emit);
170
171 void
172 nv10_emit_material_ambient(GLcontext *ctx, int emit);
173
174 void
175 nv10_emit_material_diffuse(GLcontext *ctx, int emit);
176
177 void
178 nv10_emit_material_specular(GLcontext *ctx, int emit);
179
180 void
181 nv10_emit_material_shininess(GLcontext *ctx, int emit);
182
183 void
184 nv10_emit_modelview(GLcontext *ctx, int emit);
185
186 void
187 nv10_emit_point_parameter(GLcontext *ctx, int emit);
188
189 void
190 nv10_emit_projection(GLcontext *ctx, int emit);
191
192 #endif