gallium: make user vertex buffers optional
[mesa.git] / src / mesa / state_tracker / st_context.h
1 /**************************************************************************
2 *
3 * Copyright 2003 Tungsten Graphics, Inc., Cedar Park, Texas.
4 * All Rights Reserved.
5 *
6 * Permission is hereby granted, free of charge, to any person obtaining a
7 * copy of this software and associated documentation files (the
8 * "Software"), to deal in the Software without restriction, including
9 * without limitation the rights to use, copy, modify, merge, publish,
10 * distribute, sub license, and/or sell copies of the Software, and to
11 * permit persons to whom the Software is furnished to do so, subject to
12 * the following conditions:
13 *
14 * The above copyright notice and this permission notice (including the
15 * next paragraph) shall be included in all copies or substantial portions
16 * of the Software.
17 *
18 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
19 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
20 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.
21 * IN NO EVENT SHALL TUNGSTEN GRAPHICS AND/OR ITS SUPPLIERS BE LIABLE FOR
22 * ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
23 * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
24 * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
25 *
26 **************************************************************************/
27
28 #ifndef ST_CONTEXT_H
29 #define ST_CONTEXT_H
30
31 #include "main/mtypes.h"
32 #include "pipe/p_state.h"
33 #include "state_tracker/st_api.h"
34
35 struct bitmap_cache;
36 struct blit_state;
37 struct dd_function_table;
38 struct draw_context;
39 struct draw_stage;
40 struct gen_mipmap_state;
41 struct st_context;
42 struct st_fragment_program;
43 struct u_upload_mgr;
44 struct u_vbuf;
45
46
47 #define ST_NEW_MESA (1 << 0) /* Mesa state has changed */
48 #define ST_NEW_FRAGMENT_PROGRAM (1 << 1)
49 #define ST_NEW_VERTEX_PROGRAM (1 << 2)
50 #define ST_NEW_FRAMEBUFFER (1 << 3)
51 #define ST_NEW_EDGEFLAGS_DATA (1 << 4)
52 #define ST_NEW_GEOMETRY_PROGRAM (1 << 5)
53
54
55 struct st_state_flags {
56 GLuint mesa;
57 GLuint st;
58 };
59
60 struct st_tracked_state {
61 const char *name;
62 struct st_state_flags dirty;
63 void (*update)( struct st_context *st );
64 };
65
66
67
68 struct st_context
69 {
70 struct st_context_iface iface;
71
72 struct gl_context *ctx;
73
74 struct pipe_context *pipe;
75
76 struct u_upload_mgr *uploader;
77 struct u_vbuf *vbuf;
78
79 struct draw_context *draw; /**< For selection/feedback/rastpos only */
80 struct draw_stage *feedback_stage; /**< For GL_FEEDBACK rendermode */
81 struct draw_stage *selection_stage; /**< For GL_SELECT rendermode */
82 struct draw_stage *rastpos_stage; /**< For glRasterPos */
83 GLboolean sw_primitive_restart;
84 GLboolean clamp_frag_color_in_shader;
85 GLboolean clamp_vert_color_in_shader;
86
87
88 /* On old libGL's for linux we need to invalidate the drawables
89 * on glViewpport calls, this is set via a option.
90 */
91 boolean invalidate_on_gl_viewport;
92
93 /* Some state is contained in constant objects.
94 * Other state is just parameter values.
95 */
96 struct {
97 struct pipe_blend_state blend;
98 struct pipe_depth_stencil_alpha_state depth_stencil;
99 struct pipe_rasterizer_state rasterizer;
100 struct pipe_sampler_state samplers[PIPE_MAX_SAMPLERS];
101 struct pipe_sampler_state vertex_samplers[PIPE_MAX_VERTEX_SAMPLERS];
102 struct pipe_clip_state clip;
103 struct {
104 void *ptr;
105 unsigned size;
106 } constants[PIPE_SHADER_TYPES];
107 struct pipe_framebuffer_state framebuffer;
108 struct pipe_sampler_view *sampler_views[PIPE_MAX_SAMPLERS];
109 struct pipe_sampler_view *sampler_vertex_views[PIPE_MAX_VERTEX_SAMPLERS];
110 struct pipe_scissor_state scissor;
111 struct pipe_viewport_state viewport;
112 unsigned sample_mask;
113
114 GLuint num_samplers;
115 GLuint num_vertex_samplers;
116 GLuint num_textures;
117 GLuint num_vertex_textures;
118
119 GLuint poly_stipple[32]; /**< In OpenGL's bottom-to-top order */
120 } state;
121
122 char vendor[100];
123 char renderer[100];
124
125 struct st_state_flags dirty;
126
127 GLboolean missing_textures;
128 GLboolean vertdata_edgeflags;
129
130 /** Mapping from VERT_RESULT_x to post-transformed vertex slot */
131 const GLuint *vertex_result_to_slot;
132
133 struct st_vertex_program *vp; /**< Currently bound vertex program */
134 struct st_fragment_program *fp; /**< Currently bound fragment program */
135 struct st_geometry_program *gp; /**< Currently bound geometry program */
136
137 struct st_vp_variant *vp_variant;
138 struct st_fp_variant *fp_variant;
139 struct st_gp_variant *gp_variant;
140
141 struct gl_texture_object *default_texture;
142
143 struct {
144 struct gl_program_cache *cache;
145 struct st_fragment_program *program; /**< cur pixel transfer prog */
146 GLuint xfer_prog_sn; /**< pixel xfer program serial no. */
147 GLuint user_prog_sn; /**< user fragment program serial no. */
148 struct st_fragment_program *combined_prog;
149 GLuint combined_prog_sn;
150 struct pipe_resource *pixelmap_texture;
151 struct pipe_sampler_view *pixelmap_sampler_view;
152 boolean pixelmap_enabled; /**< use the pixelmap texture? */
153 } pixel_xfer;
154
155 /** for glBitmap */
156 struct {
157 struct pipe_rasterizer_state rasterizer;
158 struct pipe_sampler_state samplers[2];
159 enum pipe_format tex_format;
160 void *vs;
161 struct bitmap_cache *cache;
162 } bitmap;
163
164 /** for glDraw/CopyPixels */
165 struct {
166 struct gl_fragment_program *shaders[4];
167 void *vert_shaders[2]; /**< ureg shaders */
168 } drawpix;
169
170 /** for glClear */
171 struct {
172 struct pipe_rasterizer_state raster;
173 struct pipe_viewport_state viewport;
174 void *vs;
175 void *fs;
176 boolean enable_ds_separate;
177 } clear;
178
179 /** used for anything using util_draw_vertex_buffer */
180 struct pipe_vertex_element velems_util_draw[3];
181
182 void *passthrough_fs; /**< simple pass-through frag shader */
183
184 enum pipe_texture_target internal_target;
185 struct gen_mipmap_state *gen_mipmap;
186 struct blit_state *blit;
187
188 struct cso_context *cso_context;
189
190 int force_msaa;
191 void *winsys_drawable_handle;
192
193 /* User vertex buffers. */
194 struct {
195 struct pipe_resource *buffer;
196
197 /** Element size */
198 GLuint element_size;
199
200 /** Attribute stride */
201 GLsizei stride;
202 } user_attrib[PIPE_MAX_ATTRIBS];
203 unsigned num_user_attribs;
204
205 /* Active render condition. */
206 struct pipe_query *render_condition;
207 unsigned condition_mode;
208
209 int32_t draw_stamp;
210 int32_t read_stamp;
211 };
212
213
214 /* Need this so that we can implement Mesa callbacks in this module.
215 */
216 static INLINE struct st_context *st_context(struct gl_context *ctx)
217 {
218 return ctx->st;
219 }
220
221
222 /**
223 * Wrapper for struct gl_framebuffer.
224 * This is an opaque type to the outside world.
225 */
226 struct st_framebuffer
227 {
228 struct gl_framebuffer Base;
229 void *Private;
230
231 struct st_framebuffer_iface *iface;
232 enum st_attachment_type statts[ST_ATTACHMENT_COUNT];
233 unsigned num_statts;
234 int32_t stamp;
235 int32_t iface_stamp;
236 };
237
238
239 extern void st_init_driver_functions(struct dd_function_table *functions);
240
241 void st_invalidate_state(struct gl_context * ctx, GLuint new_state);
242
243
244
245 #define Y_0_TOP 1
246 #define Y_0_BOTTOM 2
247
248 static INLINE GLuint
249 st_fb_orientation(const struct gl_framebuffer *fb)
250 {
251 if (fb && fb->Name == 0) {
252 /* Drawing into a window (on-screen buffer).
253 *
254 * Negate Y scale to flip image vertically.
255 * The NDC Y coords prior to viewport transformation are in the range
256 * [y=-1=bottom, y=1=top]
257 * Hardware window coords are in the range [y=0=top, y=H-1=bottom] where
258 * H is the window height.
259 * Use the viewport transformation to invert Y.
260 */
261 return Y_0_TOP;
262 }
263 else {
264 /* Drawing into user-created FBO (very likely a texture).
265 *
266 * For textures, T=0=Bottom, so by extension Y=0=Bottom for rendering.
267 */
268 return Y_0_BOTTOM;
269 }
270 }
271
272
273 /** clear-alloc a struct-sized object, with casting */
274 #define ST_CALLOC_STRUCT(T) (struct T *) calloc(1, sizeof(struct T))
275
276
277 extern int
278 st_get_msaa(void);
279
280 extern struct st_context *
281 st_create_context(gl_api api, struct pipe_context *pipe,
282 const struct gl_config *visual,
283 struct st_context *share);
284
285 extern void
286 st_destroy_context(struct st_context *st);
287
288
289 #endif