st/mesa: negate the can_force_persample_interp flag
[mesa.git] / src / mesa / state_tracker / st_context.h
1 /**************************************************************************
2 *
3 * Copyright 2003 VMware, Inc.
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 VMWARE 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 #include "main/fbobject.h"
35
36
37 #ifdef __cplusplus
38 extern "C" {
39 #endif
40
41
42 struct bitmap_cache;
43 struct dd_function_table;
44 struct draw_context;
45 struct draw_stage;
46 struct gen_mipmap_state;
47 struct st_context;
48 struct st_fragment_program;
49 struct u_upload_mgr;
50
51
52 #define ST_NEW_MESA (1 << 0) /* Mesa state has changed */
53 #define ST_NEW_FRAGMENT_PROGRAM (1 << 1)
54 #define ST_NEW_VERTEX_PROGRAM (1 << 2)
55 #define ST_NEW_FRAMEBUFFER (1 << 3)
56 #define ST_NEW_TESS_STATE (1 << 4)
57 #define ST_NEW_GEOMETRY_PROGRAM (1 << 5)
58 #define ST_NEW_VERTEX_ARRAYS (1 << 6)
59 #define ST_NEW_RASTERIZER (1 << 7)
60 #define ST_NEW_UNIFORM_BUFFER (1 << 8)
61 #define ST_NEW_TESSCTRL_PROGRAM (1 << 9)
62 #define ST_NEW_TESSEVAL_PROGRAM (1 << 10)
63 #define ST_NEW_SAMPLER_VIEWS (1 << 11)
64
65
66 struct st_state_flags {
67 GLuint mesa;
68 uint64_t st;
69 };
70
71 struct st_tracked_state {
72 const char *name;
73 struct st_state_flags dirty;
74 void (*update)( struct st_context *st );
75 };
76
77
78
79 struct st_context
80 {
81 struct st_context_iface iface;
82
83 struct gl_context *ctx;
84
85 struct pipe_context *pipe;
86
87 struct u_upload_mgr *uploader, *indexbuf_uploader, *constbuf_uploader;
88
89 struct draw_context *draw; /**< For selection/feedback/rastpos only */
90 struct draw_stage *feedback_stage; /**< For GL_FEEDBACK rendermode */
91 struct draw_stage *selection_stage; /**< For GL_SELECT rendermode */
92 struct draw_stage *rastpos_stage; /**< For glRasterPos */
93 GLboolean clamp_frag_color_in_shader;
94 GLboolean clamp_vert_color_in_shader;
95 boolean has_stencil_export; /**< can do shader stencil export? */
96 boolean has_time_elapsed;
97 boolean has_shader_model3;
98 boolean has_etc1;
99 boolean has_etc2;
100 boolean prefer_blit_based_texture_transfer;
101 boolean force_persample_in_shader;
102 boolean has_shareable_shaders;
103
104 boolean needs_texcoord_semantic;
105 boolean apply_texture_swizzle_to_border_color;
106
107 /* On old libGL's for linux we need to invalidate the drawables
108 * on glViewpport calls, this is set via a option.
109 */
110 boolean invalidate_on_gl_viewport;
111
112 boolean vertex_array_out_of_memory;
113
114 /* Some state is contained in constant objects.
115 * Other state is just parameter values.
116 */
117 struct {
118 struct pipe_blend_state blend;
119 struct pipe_depth_stencil_alpha_state depth_stencil;
120 struct pipe_rasterizer_state rasterizer;
121 struct pipe_sampler_state samplers[PIPE_SHADER_TYPES][PIPE_MAX_SAMPLERS];
122 GLuint num_samplers[PIPE_SHADER_TYPES];
123 struct pipe_sampler_view *sampler_views[PIPE_SHADER_TYPES][PIPE_MAX_SAMPLERS];
124 GLuint num_sampler_views[PIPE_SHADER_TYPES];
125 struct pipe_clip_state clip;
126 struct {
127 void *ptr;
128 unsigned size;
129 } constants[PIPE_SHADER_TYPES];
130 struct pipe_framebuffer_state framebuffer;
131 struct pipe_scissor_state scissor[PIPE_MAX_VIEWPORTS];
132 struct pipe_viewport_state viewport[PIPE_MAX_VIEWPORTS];
133 unsigned sample_mask;
134
135 GLuint poly_stipple[32]; /**< In OpenGL's bottom-to-top order */
136
137 GLuint fb_orientation;
138 } state;
139
140 char vendor[100];
141 char renderer[100];
142
143 struct st_state_flags dirty;
144
145 GLboolean vertdata_edgeflags;
146 GLboolean edgeflag_culls_prims;
147
148 /** Mapping from VARYING_SLOT_x to post-transformed vertex slot */
149 const GLuint *vertex_result_to_slot;
150
151 struct st_vertex_program *vp; /**< Currently bound vertex program */
152 struct st_fragment_program *fp; /**< Currently bound fragment program */
153 struct st_geometry_program *gp; /**< Currently bound geometry program */
154 struct st_tessctrl_program *tcp; /**< Currently bound tess control program */
155 struct st_tesseval_program *tep; /**< Currently bound tess eval program */
156
157 struct st_vp_variant *vp_variant;
158 struct st_fp_variant *fp_variant;
159 struct st_gp_variant *gp_variant;
160 struct st_tcp_variant *tcp_variant;
161 struct st_tep_variant *tep_variant;
162
163 struct gl_texture_object *default_texture;
164
165 struct {
166 struct pipe_resource *pixelmap_texture;
167 struct pipe_sampler_view *pixelmap_sampler_view;
168 } pixel_xfer;
169
170 /** for glBitmap */
171 struct {
172 struct pipe_rasterizer_state rasterizer;
173 struct pipe_sampler_state samplers[2];
174 enum pipe_format tex_format;
175 void *vs;
176 struct bitmap_cache *cache;
177 } bitmap;
178
179 /** for glDraw/CopyPixels */
180 struct {
181 void *zs_shaders[4];
182 void *vert_shaders[2]; /**< ureg shaders */
183 } drawpix;
184
185 /** for glClear */
186 struct {
187 struct pipe_rasterizer_state raster;
188 struct pipe_viewport_state viewport;
189 void *vs;
190 void *fs;
191 void *vs_layered;
192 void *gs_layered;
193 } clear;
194
195 /** used for anything using util_draw_vertex_buffer */
196 struct pipe_vertex_element velems_util_draw[3];
197
198 void *passthrough_fs; /**< simple pass-through frag shader */
199
200 enum pipe_texture_target internal_target;
201
202 struct cso_context *cso_context;
203
204 void *winsys_drawable_handle;
205
206 /* The number of vertex buffers from the last call of validate_arrays. */
207 unsigned last_num_vbuffers;
208
209 int32_t draw_stamp;
210 int32_t read_stamp;
211
212 struct st_config_options options;
213 };
214
215
216 /* Need this so that we can implement Mesa callbacks in this module.
217 */
218 static inline struct st_context *st_context(struct gl_context *ctx)
219 {
220 return ctx->st;
221 }
222
223
224 /**
225 * Wrapper for struct gl_framebuffer.
226 * This is an opaque type to the outside world.
227 */
228 struct st_framebuffer
229 {
230 struct gl_framebuffer Base;
231 void *Private;
232
233 struct st_framebuffer_iface *iface;
234 enum st_attachment_type statts[ST_ATTACHMENT_COUNT];
235 unsigned num_statts;
236 int32_t stamp;
237 int32_t iface_stamp;
238 };
239
240
241 extern void st_init_driver_functions(struct pipe_screen *screen,
242 struct dd_function_table *functions);
243
244 void st_invalidate_state(struct gl_context * ctx, GLuint new_state);
245
246
247
248 #define Y_0_TOP 1
249 #define Y_0_BOTTOM 2
250
251 static inline GLuint
252 st_fb_orientation(const struct gl_framebuffer *fb)
253 {
254 if (fb && _mesa_is_winsys_fbo(fb)) {
255 /* Drawing into a window (on-screen buffer).
256 *
257 * Negate Y scale to flip image vertically.
258 * The NDC Y coords prior to viewport transformation are in the range
259 * [y=-1=bottom, y=1=top]
260 * Hardware window coords are in the range [y=0=top, y=H-1=bottom] where
261 * H is the window height.
262 * Use the viewport transformation to invert Y.
263 */
264 return Y_0_TOP;
265 }
266 else {
267 /* Drawing into user-created FBO (very likely a texture).
268 *
269 * For textures, T=0=Bottom, so by extension Y=0=Bottom for rendering.
270 */
271 return Y_0_BOTTOM;
272 }
273 }
274
275
276 static inline unsigned
277 st_shader_stage_to_ptarget(gl_shader_stage stage)
278 {
279 switch (stage) {
280 case MESA_SHADER_VERTEX:
281 return PIPE_SHADER_VERTEX;
282 case MESA_SHADER_FRAGMENT:
283 return PIPE_SHADER_FRAGMENT;
284 case MESA_SHADER_GEOMETRY:
285 return PIPE_SHADER_GEOMETRY;
286 case MESA_SHADER_TESS_CTRL:
287 return PIPE_SHADER_TESS_CTRL;
288 case MESA_SHADER_TESS_EVAL:
289 return PIPE_SHADER_TESS_EVAL;
290 case MESA_SHADER_COMPUTE:
291 return PIPE_SHADER_COMPUTE;
292 }
293
294 assert(!"should not be reached");
295 return PIPE_SHADER_VERTEX;
296 }
297
298
299 /** clear-alloc a struct-sized object, with casting */
300 #define ST_CALLOC_STRUCT(T) (struct T *) calloc(1, sizeof(struct T))
301
302
303 extern struct st_context *
304 st_create_context(gl_api api, struct pipe_context *pipe,
305 const struct gl_config *visual,
306 struct st_context *share,
307 const struct st_config_options *options);
308
309 extern void
310 st_destroy_context(struct st_context *st);
311
312
313 #ifdef __cplusplus
314 }
315 #endif
316
317 #endif