meta: Don't smash ColorMask when using MESA_META_COLOR_MASK save bit.
[mesa.git] / src / mesa / drivers / common / meta.c
1 /*
2 * Mesa 3-D graphics library
3 *
4 * Copyright (C) 2009 VMware, Inc. 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 "Software"),
8 * to deal in the Software without restriction, including without limitation
9 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
10 * and/or sell copies of the Software, and to permit persons to whom the
11 * Software is furnished to do so, subject to the following conditions:
12 *
13 * The above copyright notice and this permission notice shall be included
14 * in all copies or substantial portions of the Software.
15 *
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
17 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
19 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR
20 * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
21 * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
22 * OTHER DEALINGS IN THE SOFTWARE.
23 */
24
25 /**
26 * Meta operations. Some GL operations can be expressed in terms of
27 * other GL operations. For example, glBlitFramebuffer() can be done
28 * with texture mapping and glClear() can be done with polygon rendering.
29 *
30 * \author Brian Paul
31 */
32
33
34 #include "main/glheader.h"
35 #include "main/mtypes.h"
36 #include "main/imports.h"
37 #include "main/arbprogram.h"
38 #include "main/arrayobj.h"
39 #include "main/blend.h"
40 #include "main/blit.h"
41 #include "main/bufferobj.h"
42 #include "main/buffers.h"
43 #include "main/clear.h"
44 #include "main/condrender.h"
45 #include "main/depth.h"
46 #include "main/enable.h"
47 #include "main/fbobject.h"
48 #include "main/feedback.h"
49 #include "main/formats.h"
50 #include "main/format_unpack.h"
51 #include "main/framebuffer.h"
52 #include "main/glformats.h"
53 #include "main/image.h"
54 #include "main/macros.h"
55 #include "main/matrix.h"
56 #include "main/mipmap.h"
57 #include "main/multisample.h"
58 #include "main/objectlabel.h"
59 #include "main/pipelineobj.h"
60 #include "main/pixel.h"
61 #include "main/pbo.h"
62 #include "main/polygon.h"
63 #include "main/queryobj.h"
64 #include "main/readpix.h"
65 #include "main/renderbuffer.h"
66 #include "main/scissor.h"
67 #include "main/shaderapi.h"
68 #include "main/shaderobj.h"
69 #include "main/state.h"
70 #include "main/stencil.h"
71 #include "main/texobj.h"
72 #include "main/texenv.h"
73 #include "main/texgetimage.h"
74 #include "main/teximage.h"
75 #include "main/texparam.h"
76 #include "main/texstate.h"
77 #include "main/texstore.h"
78 #include "main/transformfeedback.h"
79 #include "main/uniforms.h"
80 #include "main/varray.h"
81 #include "main/viewport.h"
82 #include "main/samplerobj.h"
83 #include "program/program.h"
84 #include "swrast/swrast.h"
85 #include "drivers/common/meta.h"
86 #include "main/enums.h"
87 #include "main/glformats.h"
88 #include "util/ralloc.h"
89
90 /** Return offset in bytes of the field within a vertex struct */
91 #define OFFSET(FIELD) ((void *) offsetof(struct vertex, FIELD))
92
93 static void
94 meta_clear(struct gl_context *ctx, GLbitfield buffers, bool glsl);
95
96 static struct blit_shader *
97 choose_blit_shader(GLenum target, struct blit_shader_table *table);
98
99 static void cleanup_temp_texture(struct temp_texture *tex);
100 static void meta_glsl_clear_cleanup(struct gl_context *ctx,
101 struct clear_state *clear);
102 static void meta_decompress_cleanup(struct gl_context *ctx,
103 struct decompress_state *decompress);
104 static void meta_drawpix_cleanup(struct gl_context *ctx,
105 struct drawpix_state *drawpix);
106
107 void
108 _mesa_meta_framebuffer_texture_image(struct gl_context *ctx,
109 struct gl_framebuffer *fb,
110 GLenum attachment,
111 struct gl_texture_image *texImage,
112 GLuint layer)
113 {
114 struct gl_texture_object *texObj = texImage->TexObject;
115 int level = texImage->Level;
116 const GLenum texTarget = texObj->Target == GL_TEXTURE_CUBE_MAP
117 ? GL_TEXTURE_CUBE_MAP_POSITIVE_X + texImage->Face
118 : texObj->Target;
119
120 _mesa_framebuffer_texture(ctx, fb, attachment, texObj, texTarget,
121 level, layer, false, __func__);
122 }
123
124 struct gl_shader *
125 _mesa_meta_compile_shader_with_debug(struct gl_context *ctx, GLenum target,
126 const GLcharARB *source)
127 {
128 const GLuint name = ~0;
129 struct gl_shader *sh;
130
131 sh = ctx->Driver.NewShader(ctx, name, target);
132 sh->Source = strdup(source);
133 sh->CompileStatus = false;
134 _mesa_compile_shader(ctx, sh);
135
136 if (!sh->CompileStatus) {
137 if (sh->InfoLog) {
138 _mesa_problem(ctx,
139 "meta program compile failed:\n%s\nsource:\n%s\n",
140 sh->InfoLog, source);
141 }
142
143 _mesa_reference_shader(ctx, &sh, NULL);
144 }
145
146 return sh;
147 }
148
149 void
150 _mesa_meta_link_program_with_debug(struct gl_context *ctx,
151 struct gl_shader_program *sh_prog)
152 {
153 _mesa_link_program(ctx, sh_prog);
154
155 if (!sh_prog->LinkStatus) {
156 _mesa_problem(ctx, "meta program link failed:\n%s", sh_prog->InfoLog);
157 }
158 }
159
160 void
161 _mesa_meta_use_program(struct gl_context *ctx,
162 struct gl_shader_program *sh_prog)
163 {
164 /* Attach shader state to the binding point */
165 _mesa_reference_pipeline_object(ctx, &ctx->_Shader, &ctx->Shader);
166
167 /* Update the program */
168 _mesa_use_program(ctx, sh_prog);
169 }
170
171 void
172 _mesa_meta_compile_and_link_program(struct gl_context *ctx,
173 const char *vs_source,
174 const char *fs_source,
175 const char *name,
176 struct gl_shader_program **out_sh_prog)
177 {
178 struct gl_shader_program *sh_prog;
179 const GLuint id = ~0;
180
181 sh_prog = _mesa_new_shader_program(id);
182 sh_prog->Label = strdup(name);
183 sh_prog->NumShaders = 2;
184 sh_prog->Shaders = malloc(2 * sizeof(struct gl_shader *));
185 sh_prog->Shaders[0] =
186 _mesa_meta_compile_shader_with_debug(ctx, GL_VERTEX_SHADER, vs_source);
187 sh_prog->Shaders[1] =
188 _mesa_meta_compile_shader_with_debug(ctx, GL_FRAGMENT_SHADER, fs_source);
189
190 _mesa_meta_link_program_with_debug(ctx, sh_prog);
191
192 _mesa_meta_use_program(ctx, sh_prog);
193
194 *out_sh_prog = sh_prog;
195 }
196
197 /**
198 * Generate a generic shader to blit from a texture to a framebuffer
199 *
200 * \param ctx Current GL context
201 * \param texTarget Texture target that will be the source of the blit
202 *
203 * \returns a handle to a shader program on success or zero on failure.
204 */
205 void
206 _mesa_meta_setup_blit_shader(struct gl_context *ctx,
207 GLenum target,
208 bool do_depth,
209 struct blit_shader_table *table)
210 {
211 char *vs_source, *fs_source;
212 struct blit_shader *shader = choose_blit_shader(target, table);
213 const char *fs_input, *vs_preprocess, *fs_preprocess;
214 void *mem_ctx;
215
216 if (ctx->Const.GLSLVersion < 130) {
217 vs_preprocess = "";
218 fs_preprocess = "#extension GL_EXT_texture_array : enable";
219 fs_input = "varying";
220 } else {
221 vs_preprocess = "#version 130";
222 fs_preprocess = "#version 130";
223 fs_input = "in";
224 shader->func = "texture";
225 }
226
227 assert(shader != NULL);
228
229 if (shader->shader_prog != NULL) {
230 _mesa_meta_use_program(ctx, shader->shader_prog);
231 return;
232 }
233
234 mem_ctx = ralloc_context(NULL);
235
236 vs_source = ralloc_asprintf(mem_ctx,
237 "%s\n"
238 "#extension GL_ARB_explicit_attrib_location: enable\n"
239 "layout(location = 0) in vec2 position;\n"
240 "layout(location = 1) in vec4 textureCoords;\n"
241 "out vec4 texCoords;\n"
242 "void main()\n"
243 "{\n"
244 " texCoords = textureCoords;\n"
245 " gl_Position = vec4(position, 0.0, 1.0);\n"
246 "}\n",
247 vs_preprocess);
248
249 fs_source = ralloc_asprintf(mem_ctx,
250 "%s\n"
251 "#extension GL_ARB_texture_cube_map_array: enable\n"
252 "uniform %s texSampler;\n"
253 "%s vec4 texCoords;\n"
254 "void main()\n"
255 "{\n"
256 " gl_FragColor = %s(texSampler, %s);\n"
257 "%s"
258 "}\n",
259 fs_preprocess, shader->type, fs_input,
260 shader->func, shader->texcoords,
261 do_depth ? " gl_FragDepth = gl_FragColor.x;\n" : "");
262
263 _mesa_meta_compile_and_link_program(ctx, vs_source, fs_source,
264 ralloc_asprintf(mem_ctx, "%s blit",
265 shader->type),
266 &shader->shader_prog);
267 ralloc_free(mem_ctx);
268 }
269
270 /**
271 * Configure vertex buffer and vertex array objects for tests
272 *
273 * Regardless of whether a new VAO is created, the object referenced by \c VAO
274 * will be bound into the GL state vector when this function terminates. The
275 * object referenced by \c VBO will \b not be bound.
276 *
277 * \param VAO Storage for vertex array object handle. If 0, a new VAO
278 * will be created.
279 * \param buf_obj Storage for vertex buffer object pointer. If \c NULL, a new VBO
280 * will be created. The new VBO will have storage for 4
281 * \c vertex structures.
282 * \param use_generic_attributes Should generic attributes 0 and 1 be used,
283 * or should traditional, fixed-function color and texture
284 * coordinate be used?
285 * \param vertex_size Number of components for attribute 0 / vertex.
286 * \param texcoord_size Number of components for attribute 1 / texture
287 * coordinate. If this is 0, attribute 1 will not be set or
288 * enabled.
289 * \param color_size Number of components for attribute 1 / primary color.
290 * If this is 0, attribute 1 will not be set or enabled.
291 *
292 * \note If \c use_generic_attributes is \c true, \c color_size must be zero.
293 * Use \c texcoord_size instead.
294 */
295 void
296 _mesa_meta_setup_vertex_objects(struct gl_context *ctx,
297 GLuint *VAO, struct gl_buffer_object **buf_obj,
298 bool use_generic_attributes,
299 unsigned vertex_size, unsigned texcoord_size,
300 unsigned color_size)
301 {
302 if (*VAO == 0) {
303 struct gl_vertex_array_object *array_obj;
304 assert(*buf_obj == NULL);
305
306 /* create vertex array object */
307 _mesa_GenVertexArrays(1, VAO);
308 _mesa_BindVertexArray(*VAO);
309
310 array_obj = _mesa_lookup_vao(ctx, *VAO);
311 assert(array_obj != NULL);
312
313 /* create vertex array buffer */
314 *buf_obj = ctx->Driver.NewBufferObject(ctx, 0xDEADBEEF);
315 if (*buf_obj == NULL)
316 return;
317
318 _mesa_buffer_data(ctx, *buf_obj, GL_NONE, 4 * sizeof(struct vertex), NULL,
319 GL_DYNAMIC_DRAW, __func__);
320
321 /* setup vertex arrays */
322 if (use_generic_attributes) {
323 assert(color_size == 0);
324
325 _mesa_update_array_format(ctx, array_obj, VERT_ATTRIB_GENERIC(0),
326 vertex_size, GL_FLOAT, GL_RGBA, GL_FALSE,
327 GL_FALSE, GL_FALSE,
328 offsetof(struct vertex, x), true);
329 _mesa_bind_vertex_buffer(ctx, array_obj, VERT_ATTRIB_GENERIC(0),
330 *buf_obj, 0, sizeof(struct vertex));
331 _mesa_enable_vertex_array_attrib(ctx, array_obj,
332 VERT_ATTRIB_GENERIC(0));
333 if (texcoord_size > 0) {
334 _mesa_update_array_format(ctx, array_obj, VERT_ATTRIB_GENERIC(1),
335 texcoord_size, GL_FLOAT, GL_RGBA,
336 GL_FALSE, GL_FALSE, GL_FALSE,
337 offsetof(struct vertex, tex), false);
338 _mesa_bind_vertex_buffer(ctx, array_obj, VERT_ATTRIB_GENERIC(1),
339 *buf_obj, 0, sizeof(struct vertex));
340 _mesa_enable_vertex_array_attrib(ctx, array_obj,
341 VERT_ATTRIB_GENERIC(1));
342 }
343 } else {
344 _mesa_update_array_format(ctx, array_obj, VERT_ATTRIB_POS,
345 vertex_size, GL_FLOAT, GL_RGBA, GL_FALSE,
346 GL_FALSE, GL_FALSE,
347 offsetof(struct vertex, x), true);
348 _mesa_bind_vertex_buffer(ctx, array_obj, VERT_ATTRIB_POS,
349 *buf_obj, 0, sizeof(struct vertex));
350 _mesa_enable_vertex_array_attrib(ctx, array_obj, VERT_ATTRIB_POS);
351
352 if (texcoord_size > 0) {
353 _mesa_update_array_format(ctx, array_obj, VERT_ATTRIB_TEX(0),
354 vertex_size, GL_FLOAT, GL_RGBA, GL_FALSE,
355 GL_FALSE, GL_FALSE,
356 offsetof(struct vertex, tex), false);
357 _mesa_bind_vertex_buffer(ctx, array_obj, VERT_ATTRIB_TEX(0),
358 *buf_obj, 0, sizeof(struct vertex));
359 _mesa_enable_vertex_array_attrib(ctx, array_obj, VERT_ATTRIB_TEX(0));
360 }
361
362 if (color_size > 0) {
363 _mesa_update_array_format(ctx, array_obj, VERT_ATTRIB_COLOR0,
364 vertex_size, GL_FLOAT, GL_RGBA, GL_FALSE,
365 GL_FALSE, GL_FALSE,
366 offsetof(struct vertex, r), false);
367 _mesa_bind_vertex_buffer(ctx, array_obj, VERT_ATTRIB_COLOR0,
368 *buf_obj, 0, sizeof(struct vertex));
369 _mesa_enable_vertex_array_attrib(ctx, array_obj, VERT_ATTRIB_COLOR0);
370 }
371 }
372 } else {
373 _mesa_BindVertexArray(*VAO);
374 }
375 }
376
377 /**
378 * Initialize meta-ops for a context.
379 * To be called once during context creation.
380 */
381 void
382 _mesa_meta_init(struct gl_context *ctx)
383 {
384 assert(!ctx->Meta);
385
386 ctx->Meta = CALLOC_STRUCT(gl_meta_state);
387 }
388
389 /**
390 * Free context meta-op state.
391 * To be called once during context destruction.
392 */
393 void
394 _mesa_meta_free(struct gl_context *ctx)
395 {
396 GET_CURRENT_CONTEXT(old_context);
397 _mesa_make_current(ctx, NULL, NULL);
398 _mesa_meta_glsl_blit_cleanup(ctx, &ctx->Meta->Blit);
399 meta_glsl_clear_cleanup(ctx, &ctx->Meta->Clear);
400 _mesa_meta_glsl_generate_mipmap_cleanup(ctx, &ctx->Meta->Mipmap);
401 cleanup_temp_texture(&ctx->Meta->TempTex);
402 meta_decompress_cleanup(ctx, &ctx->Meta->Decompress);
403 meta_drawpix_cleanup(ctx, &ctx->Meta->DrawPix);
404 if (old_context)
405 _mesa_make_current(old_context, old_context->WinSysDrawBuffer, old_context->WinSysReadBuffer);
406 else
407 _mesa_make_current(NULL, NULL, NULL);
408 free(ctx->Meta);
409 ctx->Meta = NULL;
410 }
411
412
413 /**
414 * Enter meta state. This is like a light-weight version of glPushAttrib
415 * but it also resets most GL state back to default values.
416 *
417 * \param state bitmask of MESA_META_* flags indicating which attribute groups
418 * to save and reset to their defaults
419 */
420 void
421 _mesa_meta_begin(struct gl_context *ctx, GLbitfield state)
422 {
423 struct save_state *save;
424
425 /* hope MAX_META_OPS_DEPTH is large enough */
426 assert(ctx->Meta->SaveStackDepth < MAX_META_OPS_DEPTH);
427
428 save = &ctx->Meta->Save[ctx->Meta->SaveStackDepth++];
429 memset(save, 0, sizeof(*save));
430 save->SavedState = state;
431
432 /* We always push into desktop GL mode and pop out at the end. No sense in
433 * writing our shaders varying based on the user's context choice, when
434 * Mesa can handle either.
435 */
436 save->API = ctx->API;
437 ctx->API = API_OPENGL_COMPAT;
438
439 /* Mesa's extension helper functions use the current context's API to look up
440 * the version required by an extension as a step in determining whether or
441 * not it has been advertised. Since meta aims to only be restricted by the
442 * driver capability (and not by whether or not an extension has been
443 * advertised), set the helper functions' Version variable to a value that
444 * will make the checks on the context API and version unconditionally pass.
445 */
446 save->ExtensionsVersion = ctx->Extensions.Version;
447 ctx->Extensions.Version = ~0;
448
449 /* Pausing transform feedback needs to be done early, or else we won't be
450 * able to change other state.
451 */
452 save->TransformFeedbackNeedsResume =
453 _mesa_is_xfb_active_and_unpaused(ctx);
454 if (save->TransformFeedbackNeedsResume)
455 _mesa_PauseTransformFeedback();
456
457 /* After saving the current occlusion object, call EndQuery so that no
458 * occlusion querying will be active during the meta-operation.
459 */
460 if (state & MESA_META_OCCLUSION_QUERY) {
461 save->CurrentOcclusionObject = ctx->Query.CurrentOcclusionObject;
462 if (save->CurrentOcclusionObject)
463 _mesa_EndQuery(save->CurrentOcclusionObject->Target);
464 }
465
466 if (state & MESA_META_ALPHA_TEST) {
467 save->AlphaEnabled = ctx->Color.AlphaEnabled;
468 save->AlphaFunc = ctx->Color.AlphaFunc;
469 save->AlphaRef = ctx->Color.AlphaRef;
470 if (ctx->Color.AlphaEnabled)
471 _mesa_set_enable(ctx, GL_ALPHA_TEST, GL_FALSE);
472 }
473
474 if (state & MESA_META_BLEND) {
475 save->BlendEnabled = ctx->Color.BlendEnabled;
476 if (ctx->Color.BlendEnabled) {
477 if (ctx->Extensions.EXT_draw_buffers2) {
478 GLuint i;
479 for (i = 0; i < ctx->Const.MaxDrawBuffers; i++) {
480 _mesa_set_enablei(ctx, GL_BLEND, i, GL_FALSE);
481 }
482 }
483 else {
484 _mesa_set_enable(ctx, GL_BLEND, GL_FALSE);
485 }
486 }
487 save->ColorLogicOpEnabled = ctx->Color.ColorLogicOpEnabled;
488 if (ctx->Color.ColorLogicOpEnabled)
489 _mesa_set_enable(ctx, GL_COLOR_LOGIC_OP, GL_FALSE);
490 }
491
492 if (state & MESA_META_DITHER) {
493 save->DitherFlag = ctx->Color.DitherFlag;
494 _mesa_set_enable(ctx, GL_DITHER, GL_TRUE);
495 }
496
497 if (state & MESA_META_COLOR_MASK) {
498 memcpy(save->ColorMask, ctx->Color.ColorMask,
499 sizeof(ctx->Color.ColorMask));
500 }
501
502 if (state & MESA_META_DEPTH_TEST) {
503 save->Depth = ctx->Depth; /* struct copy */
504 if (ctx->Depth.Test)
505 _mesa_set_enable(ctx, GL_DEPTH_TEST, GL_FALSE);
506 }
507
508 if (state & MESA_META_FOG) {
509 save->Fog = ctx->Fog.Enabled;
510 if (ctx->Fog.Enabled)
511 _mesa_set_enable(ctx, GL_FOG, GL_FALSE);
512 }
513
514 if (state & MESA_META_PIXEL_STORE) {
515 save->Pack = ctx->Pack;
516 save->Unpack = ctx->Unpack;
517 ctx->Pack = ctx->DefaultPacking;
518 ctx->Unpack = ctx->DefaultPacking;
519 }
520
521 if (state & MESA_META_PIXEL_TRANSFER) {
522 save->RedScale = ctx->Pixel.RedScale;
523 save->RedBias = ctx->Pixel.RedBias;
524 save->GreenScale = ctx->Pixel.GreenScale;
525 save->GreenBias = ctx->Pixel.GreenBias;
526 save->BlueScale = ctx->Pixel.BlueScale;
527 save->BlueBias = ctx->Pixel.BlueBias;
528 save->AlphaScale = ctx->Pixel.AlphaScale;
529 save->AlphaBias = ctx->Pixel.AlphaBias;
530 save->MapColorFlag = ctx->Pixel.MapColorFlag;
531 ctx->Pixel.RedScale = 1.0F;
532 ctx->Pixel.RedBias = 0.0F;
533 ctx->Pixel.GreenScale = 1.0F;
534 ctx->Pixel.GreenBias = 0.0F;
535 ctx->Pixel.BlueScale = 1.0F;
536 ctx->Pixel.BlueBias = 0.0F;
537 ctx->Pixel.AlphaScale = 1.0F;
538 ctx->Pixel.AlphaBias = 0.0F;
539 ctx->Pixel.MapColorFlag = GL_FALSE;
540 /* XXX more state */
541 ctx->NewState |=_NEW_PIXEL;
542 }
543
544 if (state & MESA_META_RASTERIZATION) {
545 save->FrontPolygonMode = ctx->Polygon.FrontMode;
546 save->BackPolygonMode = ctx->Polygon.BackMode;
547 save->PolygonOffset = ctx->Polygon.OffsetFill;
548 save->PolygonSmooth = ctx->Polygon.SmoothFlag;
549 save->PolygonStipple = ctx->Polygon.StippleFlag;
550 save->PolygonCull = ctx->Polygon.CullFlag;
551 _mesa_PolygonMode(GL_FRONT_AND_BACK, GL_FILL);
552 _mesa_set_enable(ctx, GL_POLYGON_OFFSET_FILL, GL_FALSE);
553 _mesa_set_enable(ctx, GL_POLYGON_SMOOTH, GL_FALSE);
554 _mesa_set_enable(ctx, GL_POLYGON_STIPPLE, GL_FALSE);
555 _mesa_set_enable(ctx, GL_CULL_FACE, GL_FALSE);
556 }
557
558 if (state & MESA_META_SCISSOR) {
559 save->Scissor = ctx->Scissor; /* struct copy */
560 _mesa_set_enable(ctx, GL_SCISSOR_TEST, GL_FALSE);
561 }
562
563 if (state & MESA_META_SHADER) {
564 int i;
565
566 if (ctx->Extensions.ARB_vertex_program) {
567 save->VertexProgramEnabled = ctx->VertexProgram.Enabled;
568 _mesa_reference_vertprog(ctx, &save->VertexProgram,
569 ctx->VertexProgram.Current);
570 _mesa_set_enable(ctx, GL_VERTEX_PROGRAM_ARB, GL_FALSE);
571 }
572
573 if (ctx->Extensions.ARB_fragment_program) {
574 save->FragmentProgramEnabled = ctx->FragmentProgram.Enabled;
575 _mesa_reference_fragprog(ctx, &save->FragmentProgram,
576 ctx->FragmentProgram.Current);
577 _mesa_set_enable(ctx, GL_FRAGMENT_PROGRAM_ARB, GL_FALSE);
578 }
579
580 if (ctx->Extensions.ATI_fragment_shader) {
581 save->ATIFragmentShaderEnabled = ctx->ATIFragmentShader.Enabled;
582 _mesa_set_enable(ctx, GL_FRAGMENT_SHADER_ATI, GL_FALSE);
583 }
584
585 if (ctx->Pipeline.Current) {
586 _mesa_reference_pipeline_object(ctx, &save->Pipeline,
587 ctx->Pipeline.Current);
588 _mesa_BindProgramPipeline(0);
589 }
590
591 /* Save the shader state from ctx->Shader (instead of ctx->_Shader) so
592 * that we don't have to worry about the current pipeline state.
593 */
594 for (i = 0; i < MESA_SHADER_STAGES; i++) {
595 _mesa_reference_shader_program(ctx, &save->Shader[i],
596 ctx->Shader.CurrentProgram[i]);
597 }
598 _mesa_reference_shader_program(ctx, &save->ActiveShader,
599 ctx->Shader.ActiveProgram);
600
601 _mesa_UseProgram(0);
602 }
603
604 if (state & MESA_META_STENCIL_TEST) {
605 save->Stencil = ctx->Stencil; /* struct copy */
606 if (ctx->Stencil.Enabled)
607 _mesa_set_enable(ctx, GL_STENCIL_TEST, GL_FALSE);
608 /* NOTE: other stencil state not reset */
609 }
610
611 if (state & MESA_META_TEXTURE) {
612 GLuint u, tgt;
613
614 save->ActiveUnit = ctx->Texture.CurrentUnit;
615 save->EnvMode = ctx->Texture.Unit[0].EnvMode;
616
617 /* Disable all texture units */
618 for (u = 0; u < ctx->Const.MaxTextureUnits; u++) {
619 save->TexEnabled[u] = ctx->Texture.Unit[u].Enabled;
620 save->TexGenEnabled[u] = ctx->Texture.Unit[u].TexGenEnabled;
621 if (ctx->Texture.Unit[u].Enabled ||
622 ctx->Texture.Unit[u].TexGenEnabled) {
623 _mesa_ActiveTexture(GL_TEXTURE0 + u);
624 _mesa_set_enable(ctx, GL_TEXTURE_2D, GL_FALSE);
625 if (ctx->Extensions.ARB_texture_cube_map)
626 _mesa_set_enable(ctx, GL_TEXTURE_CUBE_MAP, GL_FALSE);
627
628 _mesa_set_enable(ctx, GL_TEXTURE_1D, GL_FALSE);
629 _mesa_set_enable(ctx, GL_TEXTURE_3D, GL_FALSE);
630 if (ctx->Extensions.NV_texture_rectangle)
631 _mesa_set_enable(ctx, GL_TEXTURE_RECTANGLE, GL_FALSE);
632 _mesa_set_enable(ctx, GL_TEXTURE_GEN_S, GL_FALSE);
633 _mesa_set_enable(ctx, GL_TEXTURE_GEN_T, GL_FALSE);
634 _mesa_set_enable(ctx, GL_TEXTURE_GEN_R, GL_FALSE);
635 _mesa_set_enable(ctx, GL_TEXTURE_GEN_Q, GL_FALSE);
636 }
637 }
638
639 /* save current texture objects for unit[0] only */
640 for (tgt = 0; tgt < NUM_TEXTURE_TARGETS; tgt++) {
641 _mesa_reference_texobj(&save->CurrentTexture[tgt],
642 ctx->Texture.Unit[0].CurrentTex[tgt]);
643 }
644
645 /* set defaults for unit[0] */
646 _mesa_ActiveTexture(GL_TEXTURE0);
647 _mesa_TexEnvi(GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_REPLACE);
648 }
649
650 if (state & MESA_META_TRANSFORM) {
651 GLuint activeTexture = ctx->Texture.CurrentUnit;
652 memcpy(save->ModelviewMatrix, ctx->ModelviewMatrixStack.Top->m,
653 16 * sizeof(GLfloat));
654 memcpy(save->ProjectionMatrix, ctx->ProjectionMatrixStack.Top->m,
655 16 * sizeof(GLfloat));
656 memcpy(save->TextureMatrix, ctx->TextureMatrixStack[0].Top->m,
657 16 * sizeof(GLfloat));
658 save->MatrixMode = ctx->Transform.MatrixMode;
659 /* set 1:1 vertex:pixel coordinate transform */
660 _mesa_ActiveTexture(GL_TEXTURE0);
661 _mesa_MatrixMode(GL_TEXTURE);
662 _mesa_LoadIdentity();
663 _mesa_ActiveTexture(GL_TEXTURE0 + activeTexture);
664 _mesa_MatrixMode(GL_MODELVIEW);
665 _mesa_LoadIdentity();
666 _mesa_MatrixMode(GL_PROJECTION);
667 _mesa_LoadIdentity();
668
669 /* glOrtho with width = 0 or height = 0 generates GL_INVALID_VALUE.
670 * This can occur when there is no draw buffer.
671 */
672 if (ctx->DrawBuffer->Width != 0 && ctx->DrawBuffer->Height != 0)
673 _mesa_Ortho(0.0, ctx->DrawBuffer->Width,
674 0.0, ctx->DrawBuffer->Height,
675 -1.0, 1.0);
676
677 if (ctx->Extensions.ARB_clip_control) {
678 save->ClipOrigin = ctx->Transform.ClipOrigin;
679 save->ClipDepthMode = ctx->Transform.ClipDepthMode;
680 _mesa_ClipControl(GL_LOWER_LEFT, GL_NEGATIVE_ONE_TO_ONE);
681 }
682 }
683
684 if (state & MESA_META_CLIP) {
685 save->ClipPlanesEnabled = ctx->Transform.ClipPlanesEnabled;
686 if (ctx->Transform.ClipPlanesEnabled) {
687 GLuint i;
688 for (i = 0; i < ctx->Const.MaxClipPlanes; i++) {
689 _mesa_set_enable(ctx, GL_CLIP_PLANE0 + i, GL_FALSE);
690 }
691 }
692 }
693
694 if (state & MESA_META_VERTEX) {
695 /* save vertex array object state */
696 _mesa_reference_vao(ctx, &save->VAO,
697 ctx->Array.VAO);
698 /* set some default state? */
699 }
700
701 if (state & MESA_META_VIEWPORT) {
702 /* save viewport state */
703 save->ViewportX = ctx->ViewportArray[0].X;
704 save->ViewportY = ctx->ViewportArray[0].Y;
705 save->ViewportW = ctx->ViewportArray[0].Width;
706 save->ViewportH = ctx->ViewportArray[0].Height;
707 /* set viewport to match window size */
708 if (ctx->ViewportArray[0].X != 0 ||
709 ctx->ViewportArray[0].Y != 0 ||
710 ctx->ViewportArray[0].Width != (float) ctx->DrawBuffer->Width ||
711 ctx->ViewportArray[0].Height != (float) ctx->DrawBuffer->Height) {
712 _mesa_set_viewport(ctx, 0, 0, 0,
713 ctx->DrawBuffer->Width, ctx->DrawBuffer->Height);
714 }
715 /* save depth range state */
716 save->DepthNear = ctx->ViewportArray[0].Near;
717 save->DepthFar = ctx->ViewportArray[0].Far;
718 /* set depth range to default */
719 _mesa_set_depth_range(ctx, 0, 0.0, 1.0);
720 }
721
722 if (state & MESA_META_CLAMP_FRAGMENT_COLOR) {
723 save->ClampFragmentColor = ctx->Color.ClampFragmentColor;
724
725 /* Generally in here we want to do clamping according to whether
726 * it's for the pixel path (ClampFragmentColor is GL_TRUE),
727 * regardless of the internal implementation of the metaops.
728 */
729 if (ctx->Color.ClampFragmentColor != GL_TRUE &&
730 ctx->Extensions.ARB_color_buffer_float)
731 _mesa_ClampColor(GL_CLAMP_FRAGMENT_COLOR, GL_FALSE);
732 }
733
734 if (state & MESA_META_CLAMP_VERTEX_COLOR) {
735 save->ClampVertexColor = ctx->Light.ClampVertexColor;
736
737 /* Generally in here we never want vertex color clamping --
738 * result clamping is only dependent on fragment clamping.
739 */
740 if (ctx->Extensions.ARB_color_buffer_float)
741 _mesa_ClampColor(GL_CLAMP_VERTEX_COLOR, GL_FALSE);
742 }
743
744 if (state & MESA_META_CONDITIONAL_RENDER) {
745 save->CondRenderQuery = ctx->Query.CondRenderQuery;
746 save->CondRenderMode = ctx->Query.CondRenderMode;
747
748 if (ctx->Query.CondRenderQuery)
749 _mesa_EndConditionalRender();
750 }
751
752 if (state & MESA_META_SELECT_FEEDBACK) {
753 save->RenderMode = ctx->RenderMode;
754 if (ctx->RenderMode == GL_SELECT) {
755 save->Select = ctx->Select; /* struct copy */
756 _mesa_RenderMode(GL_RENDER);
757 } else if (ctx->RenderMode == GL_FEEDBACK) {
758 save->Feedback = ctx->Feedback; /* struct copy */
759 _mesa_RenderMode(GL_RENDER);
760 }
761 }
762
763 if (state & MESA_META_MULTISAMPLE) {
764 save->Multisample = ctx->Multisample; /* struct copy */
765
766 if (ctx->Multisample.Enabled)
767 _mesa_set_multisample(ctx, GL_FALSE);
768 if (ctx->Multisample.SampleCoverage)
769 _mesa_set_enable(ctx, GL_SAMPLE_COVERAGE, GL_FALSE);
770 if (ctx->Multisample.SampleAlphaToCoverage)
771 _mesa_set_enable(ctx, GL_SAMPLE_ALPHA_TO_COVERAGE, GL_FALSE);
772 if (ctx->Multisample.SampleAlphaToOne)
773 _mesa_set_enable(ctx, GL_SAMPLE_ALPHA_TO_ONE, GL_FALSE);
774 if (ctx->Multisample.SampleShading)
775 _mesa_set_enable(ctx, GL_SAMPLE_SHADING, GL_FALSE);
776 if (ctx->Multisample.SampleMask)
777 _mesa_set_enable(ctx, GL_SAMPLE_MASK, GL_FALSE);
778 }
779
780 if (state & MESA_META_FRAMEBUFFER_SRGB) {
781 save->sRGBEnabled = ctx->Color.sRGBEnabled;
782 if (ctx->Color.sRGBEnabled)
783 _mesa_set_framebuffer_srgb(ctx, GL_FALSE);
784 }
785
786 if (state & MESA_META_DRAW_BUFFERS) {
787 struct gl_framebuffer *fb = ctx->DrawBuffer;
788 memcpy(save->ColorDrawBuffers, fb->ColorDrawBuffer,
789 sizeof(save->ColorDrawBuffers));
790 }
791
792 /* misc */
793 {
794 save->Lighting = ctx->Light.Enabled;
795 if (ctx->Light.Enabled)
796 _mesa_set_enable(ctx, GL_LIGHTING, GL_FALSE);
797 save->RasterDiscard = ctx->RasterDiscard;
798 if (ctx->RasterDiscard)
799 _mesa_set_enable(ctx, GL_RASTERIZER_DISCARD, GL_FALSE);
800
801 _mesa_reference_framebuffer(&save->DrawBuffer, ctx->DrawBuffer);
802 _mesa_reference_framebuffer(&save->ReadBuffer, ctx->ReadBuffer);
803 }
804 }
805
806
807 /**
808 * Leave meta state. This is like a light-weight version of glPopAttrib().
809 */
810 void
811 _mesa_meta_end(struct gl_context *ctx)
812 {
813 assert(ctx->Meta->SaveStackDepth > 0);
814
815 struct save_state *save = &ctx->Meta->Save[ctx->Meta->SaveStackDepth - 1];
816 const GLbitfield state = save->SavedState;
817 int i;
818
819 /* Grab the result of the old occlusion query before starting it again. The
820 * old result is added to the result of the new query so the driver will
821 * continue adding where it left off. */
822 if (state & MESA_META_OCCLUSION_QUERY) {
823 if (save->CurrentOcclusionObject) {
824 struct gl_query_object *q = save->CurrentOcclusionObject;
825 GLuint64EXT result;
826 if (!q->Ready)
827 ctx->Driver.WaitQuery(ctx, q);
828 result = q->Result;
829 _mesa_BeginQuery(q->Target, q->Id);
830 ctx->Query.CurrentOcclusionObject->Result += result;
831 }
832 }
833
834 if (state & MESA_META_ALPHA_TEST) {
835 if (ctx->Color.AlphaEnabled != save->AlphaEnabled)
836 _mesa_set_enable(ctx, GL_ALPHA_TEST, save->AlphaEnabled);
837 _mesa_AlphaFunc(save->AlphaFunc, save->AlphaRef);
838 }
839
840 if (state & MESA_META_BLEND) {
841 if (ctx->Color.BlendEnabled != save->BlendEnabled) {
842 if (ctx->Extensions.EXT_draw_buffers2) {
843 GLuint i;
844 for (i = 0; i < ctx->Const.MaxDrawBuffers; i++) {
845 _mesa_set_enablei(ctx, GL_BLEND, i, (save->BlendEnabled >> i) & 1);
846 }
847 }
848 else {
849 _mesa_set_enable(ctx, GL_BLEND, (save->BlendEnabled & 1));
850 }
851 }
852 if (ctx->Color.ColorLogicOpEnabled != save->ColorLogicOpEnabled)
853 _mesa_set_enable(ctx, GL_COLOR_LOGIC_OP, save->ColorLogicOpEnabled);
854 }
855
856 if (state & MESA_META_DITHER)
857 _mesa_set_enable(ctx, GL_DITHER, save->DitherFlag);
858
859 if (state & MESA_META_COLOR_MASK) {
860 GLuint i;
861 for (i = 0; i < ctx->Const.MaxDrawBuffers; i++) {
862 if (!TEST_EQ_4V(ctx->Color.ColorMask[i], save->ColorMask[i])) {
863 if (i == 0) {
864 _mesa_ColorMask(save->ColorMask[i][0], save->ColorMask[i][1],
865 save->ColorMask[i][2], save->ColorMask[i][3]);
866 }
867 else {
868 _mesa_ColorMaski(i,
869 save->ColorMask[i][0],
870 save->ColorMask[i][1],
871 save->ColorMask[i][2],
872 save->ColorMask[i][3]);
873 }
874 }
875 }
876 }
877
878 if (state & MESA_META_DEPTH_TEST) {
879 if (ctx->Depth.Test != save->Depth.Test)
880 _mesa_set_enable(ctx, GL_DEPTH_TEST, save->Depth.Test);
881 _mesa_DepthFunc(save->Depth.Func);
882 _mesa_DepthMask(save->Depth.Mask);
883 }
884
885 if (state & MESA_META_FOG) {
886 _mesa_set_enable(ctx, GL_FOG, save->Fog);
887 }
888
889 if (state & MESA_META_PIXEL_STORE) {
890 ctx->Pack = save->Pack;
891 ctx->Unpack = save->Unpack;
892 }
893
894 if (state & MESA_META_PIXEL_TRANSFER) {
895 ctx->Pixel.RedScale = save->RedScale;
896 ctx->Pixel.RedBias = save->RedBias;
897 ctx->Pixel.GreenScale = save->GreenScale;
898 ctx->Pixel.GreenBias = save->GreenBias;
899 ctx->Pixel.BlueScale = save->BlueScale;
900 ctx->Pixel.BlueBias = save->BlueBias;
901 ctx->Pixel.AlphaScale = save->AlphaScale;
902 ctx->Pixel.AlphaBias = save->AlphaBias;
903 ctx->Pixel.MapColorFlag = save->MapColorFlag;
904 /* XXX more state */
905 ctx->NewState |=_NEW_PIXEL;
906 }
907
908 if (state & MESA_META_RASTERIZATION) {
909 _mesa_PolygonMode(GL_FRONT, save->FrontPolygonMode);
910 _mesa_PolygonMode(GL_BACK, save->BackPolygonMode);
911 _mesa_set_enable(ctx, GL_POLYGON_STIPPLE, save->PolygonStipple);
912 _mesa_set_enable(ctx, GL_POLYGON_SMOOTH, save->PolygonSmooth);
913 _mesa_set_enable(ctx, GL_POLYGON_OFFSET_FILL, save->PolygonOffset);
914 _mesa_set_enable(ctx, GL_CULL_FACE, save->PolygonCull);
915 }
916
917 if (state & MESA_META_SCISSOR) {
918 unsigned i;
919
920 for (i = 0; i < ctx->Const.MaxViewports; i++) {
921 _mesa_set_scissor(ctx, i,
922 save->Scissor.ScissorArray[i].X,
923 save->Scissor.ScissorArray[i].Y,
924 save->Scissor.ScissorArray[i].Width,
925 save->Scissor.ScissorArray[i].Height);
926 _mesa_set_enablei(ctx, GL_SCISSOR_TEST, i,
927 (save->Scissor.EnableFlags >> i) & 1);
928 }
929 }
930
931 if (state & MESA_META_SHADER) {
932 static const GLenum targets[] = {
933 GL_VERTEX_SHADER,
934 GL_TESS_CONTROL_SHADER,
935 GL_TESS_EVALUATION_SHADER,
936 GL_GEOMETRY_SHADER,
937 GL_FRAGMENT_SHADER,
938 GL_COMPUTE_SHADER,
939 };
940 STATIC_ASSERT(MESA_SHADER_STAGES == ARRAY_SIZE(targets));
941
942 bool any_shader;
943
944 if (ctx->Extensions.ARB_vertex_program) {
945 _mesa_set_enable(ctx, GL_VERTEX_PROGRAM_ARB,
946 save->VertexProgramEnabled);
947 _mesa_reference_vertprog(ctx, &ctx->VertexProgram.Current,
948 save->VertexProgram);
949 _mesa_reference_vertprog(ctx, &save->VertexProgram, NULL);
950 }
951
952 if (ctx->Extensions.ARB_fragment_program) {
953 _mesa_set_enable(ctx, GL_FRAGMENT_PROGRAM_ARB,
954 save->FragmentProgramEnabled);
955 _mesa_reference_fragprog(ctx, &ctx->FragmentProgram.Current,
956 save->FragmentProgram);
957 _mesa_reference_fragprog(ctx, &save->FragmentProgram, NULL);
958 }
959
960 if (ctx->Extensions.ATI_fragment_shader) {
961 _mesa_set_enable(ctx, GL_FRAGMENT_SHADER_ATI,
962 save->ATIFragmentShaderEnabled);
963 }
964
965 any_shader = false;
966 for (i = 0; i < MESA_SHADER_STAGES; i++) {
967 /* It is safe to call _mesa_use_shader_program even if the extension
968 * necessary for that program state is not supported. In that case,
969 * the saved program object must be NULL and the currently bound
970 * program object must be NULL. _mesa_use_shader_program is a no-op
971 * in that case.
972 */
973 _mesa_use_shader_program(ctx, targets[i],
974 save->Shader[i],
975 &ctx->Shader);
976
977 /* Do this *before* killing the reference. :)
978 */
979 if (save->Shader[i] != NULL)
980 any_shader = true;
981
982 _mesa_reference_shader_program(ctx, &save->Shader[i], NULL);
983 }
984
985 _mesa_reference_shader_program(ctx, &ctx->Shader.ActiveProgram,
986 save->ActiveShader);
987 _mesa_reference_shader_program(ctx, &save->ActiveShader, NULL);
988
989 /* If there were any stages set with programs, use ctx->Shader as the
990 * current shader state. Otherwise, use Pipeline.Default. The pipeline
991 * hasn't been restored yet, and that may modify ctx->_Shader further.
992 */
993 if (any_shader)
994 _mesa_reference_pipeline_object(ctx, &ctx->_Shader,
995 &ctx->Shader);
996 else
997 _mesa_reference_pipeline_object(ctx, &ctx->_Shader,
998 ctx->Pipeline.Default);
999
1000 if (save->Pipeline) {
1001 _mesa_bind_pipeline(ctx, save->Pipeline);
1002
1003 _mesa_reference_pipeline_object(ctx, &save->Pipeline, NULL);
1004 }
1005 }
1006
1007 if (state & MESA_META_STENCIL_TEST) {
1008 const struct gl_stencil_attrib *stencil = &save->Stencil;
1009
1010 _mesa_set_enable(ctx, GL_STENCIL_TEST, stencil->Enabled);
1011 _mesa_ClearStencil(stencil->Clear);
1012 if (ctx->Extensions.EXT_stencil_two_side) {
1013 _mesa_set_enable(ctx, GL_STENCIL_TEST_TWO_SIDE_EXT,
1014 stencil->TestTwoSide);
1015 _mesa_ActiveStencilFaceEXT(stencil->ActiveFace
1016 ? GL_BACK : GL_FRONT);
1017 }
1018 /* front state */
1019 _mesa_StencilFuncSeparate(GL_FRONT,
1020 stencil->Function[0],
1021 stencil->Ref[0],
1022 stencil->ValueMask[0]);
1023 _mesa_StencilMaskSeparate(GL_FRONT, stencil->WriteMask[0]);
1024 _mesa_StencilOpSeparate(GL_FRONT, stencil->FailFunc[0],
1025 stencil->ZFailFunc[0],
1026 stencil->ZPassFunc[0]);
1027 /* back state */
1028 _mesa_StencilFuncSeparate(GL_BACK,
1029 stencil->Function[1],
1030 stencil->Ref[1],
1031 stencil->ValueMask[1]);
1032 _mesa_StencilMaskSeparate(GL_BACK, stencil->WriteMask[1]);
1033 _mesa_StencilOpSeparate(GL_BACK, stencil->FailFunc[1],
1034 stencil->ZFailFunc[1],
1035 stencil->ZPassFunc[1]);
1036 }
1037
1038 if (state & MESA_META_TEXTURE) {
1039 GLuint u, tgt;
1040
1041 assert(ctx->Texture.CurrentUnit == 0);
1042
1043 /* restore texenv for unit[0] */
1044 _mesa_TexEnvi(GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, save->EnvMode);
1045
1046 /* restore texture objects for unit[0] only */
1047 for (tgt = 0; tgt < NUM_TEXTURE_TARGETS; tgt++) {
1048 if (ctx->Texture.Unit[0].CurrentTex[tgt] != save->CurrentTexture[tgt]) {
1049 FLUSH_VERTICES(ctx, _NEW_TEXTURE);
1050 _mesa_reference_texobj(&ctx->Texture.Unit[0].CurrentTex[tgt],
1051 save->CurrentTexture[tgt]);
1052 }
1053 _mesa_reference_texobj(&save->CurrentTexture[tgt], NULL);
1054 }
1055
1056 /* Restore fixed function texture enables, texgen */
1057 for (u = 0; u < ctx->Const.MaxTextureUnits; u++) {
1058 if (ctx->Texture.Unit[u].Enabled != save->TexEnabled[u]) {
1059 FLUSH_VERTICES(ctx, _NEW_TEXTURE);
1060 ctx->Texture.Unit[u].Enabled = save->TexEnabled[u];
1061 }
1062
1063 if (ctx->Texture.Unit[u].TexGenEnabled != save->TexGenEnabled[u]) {
1064 FLUSH_VERTICES(ctx, _NEW_TEXTURE);
1065 ctx->Texture.Unit[u].TexGenEnabled = save->TexGenEnabled[u];
1066 }
1067 }
1068
1069 /* restore current unit state */
1070 _mesa_ActiveTexture(GL_TEXTURE0 + save->ActiveUnit);
1071 }
1072
1073 if (state & MESA_META_TRANSFORM) {
1074 GLuint activeTexture = ctx->Texture.CurrentUnit;
1075 _mesa_ActiveTexture(GL_TEXTURE0);
1076 _mesa_MatrixMode(GL_TEXTURE);
1077 _mesa_LoadMatrixf(save->TextureMatrix);
1078 _mesa_ActiveTexture(GL_TEXTURE0 + activeTexture);
1079
1080 _mesa_MatrixMode(GL_MODELVIEW);
1081 _mesa_LoadMatrixf(save->ModelviewMatrix);
1082
1083 _mesa_MatrixMode(GL_PROJECTION);
1084 _mesa_LoadMatrixf(save->ProjectionMatrix);
1085
1086 _mesa_MatrixMode(save->MatrixMode);
1087
1088 if (ctx->Extensions.ARB_clip_control)
1089 _mesa_ClipControl(save->ClipOrigin, save->ClipDepthMode);
1090 }
1091
1092 if (state & MESA_META_CLIP) {
1093 if (save->ClipPlanesEnabled) {
1094 GLuint i;
1095 for (i = 0; i < ctx->Const.MaxClipPlanes; i++) {
1096 if (save->ClipPlanesEnabled & (1 << i)) {
1097 _mesa_set_enable(ctx, GL_CLIP_PLANE0 + i, GL_TRUE);
1098 }
1099 }
1100 }
1101 }
1102
1103 if (state & MESA_META_VERTEX) {
1104 /* restore vertex array object */
1105 _mesa_BindVertexArray(save->VAO->Name);
1106 _mesa_reference_vao(ctx, &save->VAO, NULL);
1107 }
1108
1109 if (state & MESA_META_VIEWPORT) {
1110 if (save->ViewportX != ctx->ViewportArray[0].X ||
1111 save->ViewportY != ctx->ViewportArray[0].Y ||
1112 save->ViewportW != ctx->ViewportArray[0].Width ||
1113 save->ViewportH != ctx->ViewportArray[0].Height) {
1114 _mesa_set_viewport(ctx, 0, save->ViewportX, save->ViewportY,
1115 save->ViewportW, save->ViewportH);
1116 }
1117 _mesa_set_depth_range(ctx, 0, save->DepthNear, save->DepthFar);
1118 }
1119
1120 if (state & MESA_META_CLAMP_FRAGMENT_COLOR &&
1121 ctx->Extensions.ARB_color_buffer_float) {
1122 _mesa_ClampColor(GL_CLAMP_FRAGMENT_COLOR, save->ClampFragmentColor);
1123 }
1124
1125 if (state & MESA_META_CLAMP_VERTEX_COLOR &&
1126 ctx->Extensions.ARB_color_buffer_float) {
1127 _mesa_ClampColor(GL_CLAMP_VERTEX_COLOR, save->ClampVertexColor);
1128 }
1129
1130 if (state & MESA_META_CONDITIONAL_RENDER) {
1131 if (save->CondRenderQuery)
1132 _mesa_BeginConditionalRender(save->CondRenderQuery->Id,
1133 save->CondRenderMode);
1134 }
1135
1136 if (state & MESA_META_SELECT_FEEDBACK) {
1137 if (save->RenderMode == GL_SELECT) {
1138 _mesa_RenderMode(GL_SELECT);
1139 ctx->Select = save->Select;
1140 } else if (save->RenderMode == GL_FEEDBACK) {
1141 _mesa_RenderMode(GL_FEEDBACK);
1142 ctx->Feedback = save->Feedback;
1143 }
1144 }
1145
1146 if (state & MESA_META_MULTISAMPLE) {
1147 struct gl_multisample_attrib *ctx_ms = &ctx->Multisample;
1148 struct gl_multisample_attrib *save_ms = &save->Multisample;
1149
1150 if (ctx_ms->Enabled != save_ms->Enabled)
1151 _mesa_set_multisample(ctx, save_ms->Enabled);
1152 if (ctx_ms->SampleCoverage != save_ms->SampleCoverage)
1153 _mesa_set_enable(ctx, GL_SAMPLE_COVERAGE, save_ms->SampleCoverage);
1154 if (ctx_ms->SampleAlphaToCoverage != save_ms->SampleAlphaToCoverage)
1155 _mesa_set_enable(ctx, GL_SAMPLE_ALPHA_TO_COVERAGE, save_ms->SampleAlphaToCoverage);
1156 if (ctx_ms->SampleAlphaToOne != save_ms->SampleAlphaToOne)
1157 _mesa_set_enable(ctx, GL_SAMPLE_ALPHA_TO_ONE, save_ms->SampleAlphaToOne);
1158 if (ctx_ms->SampleCoverageValue != save_ms->SampleCoverageValue ||
1159 ctx_ms->SampleCoverageInvert != save_ms->SampleCoverageInvert) {
1160 _mesa_SampleCoverage(save_ms->SampleCoverageValue,
1161 save_ms->SampleCoverageInvert);
1162 }
1163 if (ctx_ms->SampleShading != save_ms->SampleShading)
1164 _mesa_set_enable(ctx, GL_SAMPLE_SHADING, save_ms->SampleShading);
1165 if (ctx_ms->SampleMask != save_ms->SampleMask)
1166 _mesa_set_enable(ctx, GL_SAMPLE_MASK, save_ms->SampleMask);
1167 if (ctx_ms->SampleMaskValue != save_ms->SampleMaskValue)
1168 _mesa_SampleMaski(0, save_ms->SampleMaskValue);
1169 if (ctx_ms->MinSampleShadingValue != save_ms->MinSampleShadingValue)
1170 _mesa_MinSampleShading(save_ms->MinSampleShadingValue);
1171 }
1172
1173 if (state & MESA_META_FRAMEBUFFER_SRGB) {
1174 if (ctx->Color.sRGBEnabled != save->sRGBEnabled)
1175 _mesa_set_framebuffer_srgb(ctx, save->sRGBEnabled);
1176 }
1177
1178 /* misc */
1179 if (save->Lighting) {
1180 _mesa_set_enable(ctx, GL_LIGHTING, GL_TRUE);
1181 }
1182 if (save->RasterDiscard) {
1183 _mesa_set_enable(ctx, GL_RASTERIZER_DISCARD, GL_TRUE);
1184 }
1185 if (save->TransformFeedbackNeedsResume)
1186 _mesa_ResumeTransformFeedback();
1187
1188 _mesa_bind_framebuffers(ctx, save->DrawBuffer, save->ReadBuffer);
1189 _mesa_reference_framebuffer(&save->DrawBuffer, NULL);
1190 _mesa_reference_framebuffer(&save->ReadBuffer, NULL);
1191
1192 if (state & MESA_META_DRAW_BUFFERS) {
1193 _mesa_drawbuffers(ctx, ctx->DrawBuffer, ctx->Const.MaxDrawBuffers,
1194 save->ColorDrawBuffers, NULL);
1195 }
1196
1197 ctx->Meta->SaveStackDepth--;
1198
1199 ctx->API = save->API;
1200 ctx->Extensions.Version = save->ExtensionsVersion;
1201 }
1202
1203
1204 /**
1205 * Convert Z from a normalized value in the range [0, 1] to an object-space
1206 * Z coordinate in [-1, +1] so that drawing at the new Z position with the
1207 * default/identity ortho projection results in the original Z value.
1208 * Used by the meta-Clear, Draw/CopyPixels and Bitmap functions where the Z
1209 * value comes from the clear value or raster position.
1210 */
1211 static inline GLfloat
1212 invert_z(GLfloat normZ)
1213 {
1214 GLfloat objZ = 1.0f - 2.0f * normZ;
1215 return objZ;
1216 }
1217
1218
1219 /**
1220 * One-time init for a temp_texture object.
1221 * Choose tex target, compute max tex size, etc.
1222 */
1223 static void
1224 init_temp_texture(struct gl_context *ctx, struct temp_texture *tex)
1225 {
1226 /* prefer texture rectangle */
1227 if (_mesa_is_desktop_gl(ctx) && ctx->Extensions.NV_texture_rectangle) {
1228 tex->Target = GL_TEXTURE_RECTANGLE;
1229 tex->MaxSize = ctx->Const.MaxTextureRectSize;
1230 tex->NPOT = GL_TRUE;
1231 }
1232 else {
1233 /* use 2D texture, NPOT if possible */
1234 tex->Target = GL_TEXTURE_2D;
1235 tex->MaxSize = 1 << (ctx->Const.MaxTextureLevels - 1);
1236 tex->NPOT = ctx->Extensions.ARB_texture_non_power_of_two;
1237 }
1238 tex->MinSize = 16; /* 16 x 16 at least */
1239 assert(tex->MaxSize > 0);
1240
1241 _mesa_GenTextures(1, &tex->TexObj);
1242 }
1243
1244 static void
1245 cleanup_temp_texture(struct temp_texture *tex)
1246 {
1247 if (!tex->TexObj)
1248 return;
1249 _mesa_DeleteTextures(1, &tex->TexObj);
1250 tex->TexObj = 0;
1251 }
1252
1253
1254 /**
1255 * Return pointer to temp_texture info for non-bitmap ops.
1256 * This does some one-time init if needed.
1257 */
1258 struct temp_texture *
1259 _mesa_meta_get_temp_texture(struct gl_context *ctx)
1260 {
1261 struct temp_texture *tex = &ctx->Meta->TempTex;
1262
1263 if (!tex->TexObj) {
1264 init_temp_texture(ctx, tex);
1265 }
1266
1267 return tex;
1268 }
1269
1270
1271 /**
1272 * Return pointer to temp_texture info for _mesa_meta_bitmap().
1273 * We use a separate texture for bitmaps to reduce texture
1274 * allocation/deallocation.
1275 */
1276 static struct temp_texture *
1277 get_bitmap_temp_texture(struct gl_context *ctx)
1278 {
1279 struct temp_texture *tex = &ctx->Meta->Bitmap.Tex;
1280
1281 if (!tex->TexObj) {
1282 init_temp_texture(ctx, tex);
1283 }
1284
1285 return tex;
1286 }
1287
1288 /**
1289 * Return pointer to depth temp_texture.
1290 * This does some one-time init if needed.
1291 */
1292 struct temp_texture *
1293 _mesa_meta_get_temp_depth_texture(struct gl_context *ctx)
1294 {
1295 struct temp_texture *tex = &ctx->Meta->Blit.depthTex;
1296
1297 if (!tex->TexObj) {
1298 init_temp_texture(ctx, tex);
1299 }
1300
1301 return tex;
1302 }
1303
1304 /**
1305 * Compute the width/height of texture needed to draw an image of the
1306 * given size. Return a flag indicating whether the current texture
1307 * can be re-used (glTexSubImage2D) or if a new texture needs to be
1308 * allocated (glTexImage2D).
1309 * Also, compute s/t texcoords for drawing.
1310 *
1311 * \return GL_TRUE if new texture is needed, GL_FALSE otherwise
1312 */
1313 GLboolean
1314 _mesa_meta_alloc_texture(struct temp_texture *tex,
1315 GLsizei width, GLsizei height, GLenum intFormat)
1316 {
1317 GLboolean newTex = GL_FALSE;
1318
1319 assert(width <= tex->MaxSize);
1320 assert(height <= tex->MaxSize);
1321
1322 if (width > tex->Width ||
1323 height > tex->Height ||
1324 intFormat != tex->IntFormat) {
1325 /* alloc new texture (larger or different format) */
1326
1327 if (tex->NPOT) {
1328 /* use non-power of two size */
1329 tex->Width = MAX2(tex->MinSize, width);
1330 tex->Height = MAX2(tex->MinSize, height);
1331 }
1332 else {
1333 /* find power of two size */
1334 GLsizei w, h;
1335 w = h = tex->MinSize;
1336 while (w < width)
1337 w *= 2;
1338 while (h < height)
1339 h *= 2;
1340 tex->Width = w;
1341 tex->Height = h;
1342 }
1343
1344 tex->IntFormat = intFormat;
1345
1346 newTex = GL_TRUE;
1347 }
1348
1349 /* compute texcoords */
1350 if (tex->Target == GL_TEXTURE_RECTANGLE) {
1351 tex->Sright = (GLfloat) width;
1352 tex->Ttop = (GLfloat) height;
1353 }
1354 else {
1355 tex->Sright = (GLfloat) width / tex->Width;
1356 tex->Ttop = (GLfloat) height / tex->Height;
1357 }
1358
1359 return newTex;
1360 }
1361
1362
1363 /**
1364 * Setup/load texture for glCopyPixels or glBlitFramebuffer.
1365 */
1366 void
1367 _mesa_meta_setup_copypix_texture(struct gl_context *ctx,
1368 struct temp_texture *tex,
1369 GLint srcX, GLint srcY,
1370 GLsizei width, GLsizei height,
1371 GLenum intFormat,
1372 GLenum filter)
1373 {
1374 bool newTex;
1375
1376 _mesa_BindTexture(tex->Target, tex->TexObj);
1377 _mesa_TexParameteri(tex->Target, GL_TEXTURE_MIN_FILTER, filter);
1378 _mesa_TexParameteri(tex->Target, GL_TEXTURE_MAG_FILTER, filter);
1379 _mesa_TexEnvi(GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_REPLACE);
1380
1381 newTex = _mesa_meta_alloc_texture(tex, width, height, intFormat);
1382
1383 /* copy framebuffer image to texture */
1384 if (newTex) {
1385 /* create new tex image */
1386 if (tex->Width == width && tex->Height == height) {
1387 /* create new tex with framebuffer data */
1388 _mesa_CopyTexImage2D(tex->Target, 0, tex->IntFormat,
1389 srcX, srcY, width, height, 0);
1390 }
1391 else {
1392 /* create empty texture */
1393 _mesa_TexImage2D(tex->Target, 0, tex->IntFormat,
1394 tex->Width, tex->Height, 0,
1395 intFormat, GL_UNSIGNED_BYTE, NULL);
1396 /* load image */
1397 _mesa_CopyTexSubImage2D(tex->Target, 0,
1398 0, 0, srcX, srcY, width, height);
1399 }
1400 }
1401 else {
1402 /* replace existing tex image */
1403 _mesa_CopyTexSubImage2D(tex->Target, 0,
1404 0, 0, srcX, srcY, width, height);
1405 }
1406 }
1407
1408
1409 /**
1410 * Setup/load texture for glDrawPixels.
1411 */
1412 void
1413 _mesa_meta_setup_drawpix_texture(struct gl_context *ctx,
1414 struct temp_texture *tex,
1415 GLboolean newTex,
1416 GLsizei width, GLsizei height,
1417 GLenum format, GLenum type,
1418 const GLvoid *pixels)
1419 {
1420 _mesa_BindTexture(tex->Target, tex->TexObj);
1421 _mesa_TexParameteri(tex->Target, GL_TEXTURE_MIN_FILTER, GL_NEAREST);
1422 _mesa_TexParameteri(tex->Target, GL_TEXTURE_MAG_FILTER, GL_NEAREST);
1423 _mesa_TexEnvi(GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_REPLACE);
1424
1425 /* copy pixel data to texture */
1426 if (newTex) {
1427 /* create new tex image */
1428 if (tex->Width == width && tex->Height == height) {
1429 /* create new tex and load image data */
1430 _mesa_TexImage2D(tex->Target, 0, tex->IntFormat,
1431 tex->Width, tex->Height, 0, format, type, pixels);
1432 }
1433 else {
1434 struct gl_buffer_object *save_unpack_obj = NULL;
1435
1436 _mesa_reference_buffer_object(ctx, &save_unpack_obj,
1437 ctx->Unpack.BufferObj);
1438 _mesa_BindBuffer(GL_PIXEL_UNPACK_BUFFER_ARB, 0);
1439 /* create empty texture */
1440 _mesa_TexImage2D(tex->Target, 0, tex->IntFormat,
1441 tex->Width, tex->Height, 0, format, type, NULL);
1442 if (save_unpack_obj != NULL)
1443 _mesa_BindBuffer(GL_PIXEL_UNPACK_BUFFER_ARB,
1444 save_unpack_obj->Name);
1445 /* load image */
1446 _mesa_TexSubImage2D(tex->Target, 0,
1447 0, 0, width, height, format, type, pixels);
1448 }
1449 }
1450 else {
1451 /* replace existing tex image */
1452 _mesa_TexSubImage2D(tex->Target, 0,
1453 0, 0, width, height, format, type, pixels);
1454 }
1455 }
1456
1457 void
1458 _mesa_meta_setup_ff_tnl_for_blit(struct gl_context *ctx,
1459 GLuint *VAO, struct gl_buffer_object **buf_obj,
1460 unsigned texcoord_size)
1461 {
1462 _mesa_meta_setup_vertex_objects(ctx, VAO, buf_obj, false, 2, texcoord_size,
1463 0);
1464
1465 /* setup projection matrix */
1466 _mesa_MatrixMode(GL_PROJECTION);
1467 _mesa_LoadIdentity();
1468 }
1469
1470 /**
1471 * Meta implementation of ctx->Driver.Clear() in terms of polygon rendering.
1472 */
1473 void
1474 _mesa_meta_Clear(struct gl_context *ctx, GLbitfield buffers)
1475 {
1476 meta_clear(ctx, buffers, false);
1477 }
1478
1479 void
1480 _mesa_meta_glsl_Clear(struct gl_context *ctx, GLbitfield buffers)
1481 {
1482 meta_clear(ctx, buffers, true);
1483 }
1484
1485 static void
1486 meta_glsl_clear_init(struct gl_context *ctx, struct clear_state *clear)
1487 {
1488 const char *vs_source =
1489 "#extension GL_AMD_vertex_shader_layer : enable\n"
1490 "#extension GL_ARB_draw_instanced : enable\n"
1491 "#extension GL_ARB_explicit_attrib_location :enable\n"
1492 "layout(location = 0) in vec4 position;\n"
1493 "void main()\n"
1494 "{\n"
1495 "#ifdef GL_AMD_vertex_shader_layer\n"
1496 " gl_Layer = gl_InstanceID;\n"
1497 "#endif\n"
1498 " gl_Position = position;\n"
1499 "}\n";
1500 const char *fs_source =
1501 "#extension GL_ARB_explicit_attrib_location :enable\n"
1502 "#extension GL_ARB_explicit_uniform_location :enable\n"
1503 "layout(location = 0) uniform vec4 color;\n"
1504 "void main()\n"
1505 "{\n"
1506 " gl_FragColor = color;\n"
1507 "}\n";
1508 bool has_integer_textures;
1509
1510 _mesa_meta_setup_vertex_objects(ctx, &clear->VAO, &clear->buf_obj, true,
1511 3, 0, 0);
1512
1513 if (clear->ShaderProg != 0)
1514 return;
1515
1516 _mesa_meta_compile_and_link_program(ctx, vs_source, fs_source, "meta clear",
1517 &clear->ShaderProg);
1518
1519 has_integer_textures = _mesa_is_gles3(ctx) ||
1520 (_mesa_is_desktop_gl(ctx) && ctx->Const.GLSLVersion >= 130);
1521
1522 if (has_integer_textures) {
1523 void *shader_source_mem_ctx = ralloc_context(NULL);
1524 const char *vs_int_source =
1525 ralloc_asprintf(shader_source_mem_ctx,
1526 "#version 130\n"
1527 "#extension GL_AMD_vertex_shader_layer : enable\n"
1528 "#extension GL_ARB_draw_instanced : enable\n"
1529 "#extension GL_ARB_explicit_attrib_location :enable\n"
1530 "layout(location = 0) in vec4 position;\n"
1531 "void main()\n"
1532 "{\n"
1533 "#ifdef GL_AMD_vertex_shader_layer\n"
1534 " gl_Layer = gl_InstanceID;\n"
1535 "#endif\n"
1536 " gl_Position = position;\n"
1537 "}\n");
1538 const char *fs_int_source =
1539 ralloc_asprintf(shader_source_mem_ctx,
1540 "#version 130\n"
1541 "#extension GL_ARB_explicit_attrib_location :enable\n"
1542 "#extension GL_ARB_explicit_uniform_location :enable\n"
1543 "layout(location = 0) uniform ivec4 color;\n"
1544 "out ivec4 out_color;\n"
1545 "\n"
1546 "void main()\n"
1547 "{\n"
1548 " out_color = color;\n"
1549 "}\n");
1550
1551 _mesa_meta_compile_and_link_program(ctx, vs_int_source, fs_int_source,
1552 "integer clear",
1553 &clear->IntegerShaderProg);
1554 ralloc_free(shader_source_mem_ctx);
1555
1556 /* Note that user-defined out attributes get automatically assigned
1557 * locations starting from 0, so we don't need to explicitly
1558 * BindFragDataLocation to 0.
1559 */
1560 }
1561 }
1562
1563 static void
1564 meta_glsl_clear_cleanup(struct gl_context *ctx, struct clear_state *clear)
1565 {
1566 if (clear->VAO == 0)
1567 return;
1568 _mesa_DeleteVertexArrays(1, &clear->VAO);
1569 clear->VAO = 0;
1570 _mesa_reference_buffer_object(ctx, &clear->buf_obj, NULL);
1571 _mesa_reference_shader_program(ctx, &clear->ShaderProg, NULL);
1572
1573 if (clear->IntegerShaderProg) {
1574 _mesa_reference_shader_program(ctx, &clear->IntegerShaderProg, NULL);
1575 }
1576 }
1577
1578 /**
1579 * Given a bitfield of BUFFER_BIT_x draw buffers, call glDrawBuffers to
1580 * set GL to only draw to those buffers.
1581 *
1582 * Since the bitfield has no associated order, the assignment of draw buffer
1583 * indices to color attachment indices is rather arbitrary.
1584 */
1585 void
1586 _mesa_meta_drawbuffers_from_bitfield(GLbitfield bits)
1587 {
1588 GLenum enums[MAX_DRAW_BUFFERS];
1589 int i = 0;
1590 int n;
1591
1592 /* This function is only legal for color buffer bitfields. */
1593 assert((bits & ~BUFFER_BITS_COLOR) == 0);
1594
1595 /* Make sure we don't overflow any arrays. */
1596 assert(_mesa_bitcount(bits) <= MAX_DRAW_BUFFERS);
1597
1598 enums[0] = GL_NONE;
1599
1600 if (bits & BUFFER_BIT_FRONT_LEFT)
1601 enums[i++] = GL_FRONT_LEFT;
1602
1603 if (bits & BUFFER_BIT_FRONT_RIGHT)
1604 enums[i++] = GL_FRONT_RIGHT;
1605
1606 if (bits & BUFFER_BIT_BACK_LEFT)
1607 enums[i++] = GL_BACK_LEFT;
1608
1609 if (bits & BUFFER_BIT_BACK_RIGHT)
1610 enums[i++] = GL_BACK_RIGHT;
1611
1612 for (n = 0; n < MAX_COLOR_ATTACHMENTS; n++) {
1613 if (bits & (1 << (BUFFER_COLOR0 + n)))
1614 enums[i++] = GL_COLOR_ATTACHMENT0 + n;
1615 }
1616
1617 _mesa_DrawBuffers(i, enums);
1618 }
1619
1620 /**
1621 * Meta implementation of ctx->Driver.Clear() in terms of polygon rendering.
1622 */
1623 static void
1624 meta_clear(struct gl_context *ctx, GLbitfield buffers, bool glsl)
1625 {
1626 struct clear_state *clear = &ctx->Meta->Clear;
1627 GLbitfield metaSave;
1628 const GLuint stencilMax = (1 << ctx->DrawBuffer->Visual.stencilBits) - 1;
1629 struct gl_framebuffer *fb = ctx->DrawBuffer;
1630 float x0, y0, x1, y1, z;
1631 struct vertex verts[4];
1632 int i;
1633
1634 metaSave = (MESA_META_ALPHA_TEST |
1635 MESA_META_BLEND |
1636 MESA_META_DEPTH_TEST |
1637 MESA_META_RASTERIZATION |
1638 MESA_META_SHADER |
1639 MESA_META_STENCIL_TEST |
1640 MESA_META_VERTEX |
1641 MESA_META_VIEWPORT |
1642 MESA_META_CLIP |
1643 MESA_META_CLAMP_FRAGMENT_COLOR |
1644 MESA_META_MULTISAMPLE |
1645 MESA_META_OCCLUSION_QUERY);
1646
1647 if (!glsl) {
1648 metaSave |= MESA_META_FOG |
1649 MESA_META_PIXEL_TRANSFER |
1650 MESA_META_TRANSFORM |
1651 MESA_META_TEXTURE |
1652 MESA_META_CLAMP_VERTEX_COLOR |
1653 MESA_META_SELECT_FEEDBACK;
1654 }
1655
1656 if (buffers & BUFFER_BITS_COLOR) {
1657 metaSave |= MESA_META_DRAW_BUFFERS;
1658 } else {
1659 /* We'll use colormask to disable color writes. Otherwise,
1660 * respect color mask
1661 */
1662 metaSave |= MESA_META_COLOR_MASK;
1663 }
1664
1665 _mesa_meta_begin(ctx, metaSave);
1666
1667 if (glsl) {
1668 meta_glsl_clear_init(ctx, clear);
1669
1670 x0 = ((float) fb->_Xmin / fb->Width) * 2.0f - 1.0f;
1671 y0 = ((float) fb->_Ymin / fb->Height) * 2.0f - 1.0f;
1672 x1 = ((float) fb->_Xmax / fb->Width) * 2.0f - 1.0f;
1673 y1 = ((float) fb->_Ymax / fb->Height) * 2.0f - 1.0f;
1674 z = -invert_z(ctx->Depth.Clear);
1675 } else {
1676 _mesa_meta_setup_vertex_objects(ctx, &clear->VAO, &clear->buf_obj, false,
1677 3, 0, 4);
1678
1679 x0 = (float) fb->_Xmin;
1680 y0 = (float) fb->_Ymin;
1681 x1 = (float) fb->_Xmax;
1682 y1 = (float) fb->_Ymax;
1683 z = invert_z(ctx->Depth.Clear);
1684 }
1685
1686 if (fb->_IntegerColor) {
1687 assert(glsl);
1688 _mesa_meta_use_program(ctx, clear->IntegerShaderProg);
1689 _mesa_Uniform4iv(0, 1, ctx->Color.ClearColor.i);
1690 } else if (glsl) {
1691 _mesa_meta_use_program(ctx, clear->ShaderProg);
1692 _mesa_Uniform4fv(0, 1, ctx->Color.ClearColor.f);
1693 }
1694
1695 /* GL_COLOR_BUFFER_BIT */
1696 if (buffers & BUFFER_BITS_COLOR) {
1697 /* Only draw to the buffers we were asked to clear. */
1698 _mesa_meta_drawbuffers_from_bitfield(buffers & BUFFER_BITS_COLOR);
1699
1700 /* leave colormask state as-is */
1701
1702 /* Clears never have the color clamped. */
1703 if (ctx->Extensions.ARB_color_buffer_float)
1704 _mesa_ClampColor(GL_CLAMP_FRAGMENT_COLOR, GL_FALSE);
1705 }
1706 else {
1707 assert(metaSave & MESA_META_COLOR_MASK);
1708 _mesa_ColorMask(GL_FALSE, GL_FALSE, GL_FALSE, GL_FALSE);
1709 }
1710
1711 /* GL_DEPTH_BUFFER_BIT */
1712 if (buffers & BUFFER_BIT_DEPTH) {
1713 _mesa_set_enable(ctx, GL_DEPTH_TEST, GL_TRUE);
1714 _mesa_DepthFunc(GL_ALWAYS);
1715 _mesa_DepthMask(GL_TRUE);
1716 }
1717 else {
1718 assert(!ctx->Depth.Test);
1719 }
1720
1721 /* GL_STENCIL_BUFFER_BIT */
1722 if (buffers & BUFFER_BIT_STENCIL) {
1723 _mesa_set_enable(ctx, GL_STENCIL_TEST, GL_TRUE);
1724 _mesa_StencilOpSeparate(GL_FRONT_AND_BACK,
1725 GL_REPLACE, GL_REPLACE, GL_REPLACE);
1726 _mesa_StencilFuncSeparate(GL_FRONT_AND_BACK, GL_ALWAYS,
1727 ctx->Stencil.Clear & stencilMax,
1728 ctx->Stencil.WriteMask[0]);
1729 }
1730 else {
1731 assert(!ctx->Stencil.Enabled);
1732 }
1733
1734 /* vertex positions */
1735 verts[0].x = x0;
1736 verts[0].y = y0;
1737 verts[0].z = z;
1738 verts[1].x = x1;
1739 verts[1].y = y0;
1740 verts[1].z = z;
1741 verts[2].x = x1;
1742 verts[2].y = y1;
1743 verts[2].z = z;
1744 verts[3].x = x0;
1745 verts[3].y = y1;
1746 verts[3].z = z;
1747
1748 if (!glsl) {
1749 for (i = 0; i < 4; i++) {
1750 verts[i].r = ctx->Color.ClearColor.f[0];
1751 verts[i].g = ctx->Color.ClearColor.f[1];
1752 verts[i].b = ctx->Color.ClearColor.f[2];
1753 verts[i].a = ctx->Color.ClearColor.f[3];
1754 }
1755 }
1756
1757 /* upload new vertex data */
1758 _mesa_buffer_data(ctx, clear->buf_obj, GL_NONE, sizeof(verts), verts,
1759 GL_DYNAMIC_DRAW, __func__);
1760
1761 /* draw quad(s) */
1762 if (fb->MaxNumLayers > 0) {
1763 _mesa_DrawArraysInstanced(GL_TRIANGLE_FAN, 0, 4, fb->MaxNumLayers);
1764 } else {
1765 _mesa_DrawArrays(GL_TRIANGLE_FAN, 0, 4);
1766 }
1767
1768 _mesa_meta_end(ctx);
1769 }
1770
1771 /**
1772 * Meta implementation of ctx->Driver.CopyPixels() in terms
1773 * of texture mapping and polygon rendering and GLSL shaders.
1774 */
1775 void
1776 _mesa_meta_CopyPixels(struct gl_context *ctx, GLint srcX, GLint srcY,
1777 GLsizei width, GLsizei height,
1778 GLint dstX, GLint dstY, GLenum type)
1779 {
1780 struct copypix_state *copypix = &ctx->Meta->CopyPix;
1781 struct temp_texture *tex = _mesa_meta_get_temp_texture(ctx);
1782 struct vertex verts[4];
1783
1784 if (type != GL_COLOR ||
1785 ctx->_ImageTransferState ||
1786 ctx->Fog.Enabled ||
1787 width > tex->MaxSize ||
1788 height > tex->MaxSize) {
1789 /* XXX avoid this fallback */
1790 _swrast_CopyPixels(ctx, srcX, srcY, width, height, dstX, dstY, type);
1791 return;
1792 }
1793
1794 /* Most GL state applies to glCopyPixels, but a there's a few things
1795 * we need to override:
1796 */
1797 _mesa_meta_begin(ctx, (MESA_META_RASTERIZATION |
1798 MESA_META_SHADER |
1799 MESA_META_TEXTURE |
1800 MESA_META_TRANSFORM |
1801 MESA_META_CLIP |
1802 MESA_META_VERTEX |
1803 MESA_META_VIEWPORT));
1804
1805 _mesa_meta_setup_vertex_objects(ctx, &copypix->VAO, &copypix->buf_obj, false,
1806 3, 2, 0);
1807
1808 /* Silence valgrind warnings about reading uninitialized stack. */
1809 memset(verts, 0, sizeof(verts));
1810
1811 /* Alloc/setup texture */
1812 _mesa_meta_setup_copypix_texture(ctx, tex, srcX, srcY, width, height,
1813 GL_RGBA, GL_NEAREST);
1814
1815 /* vertex positions, texcoords (after texture allocation!) */
1816 {
1817 const GLfloat dstX0 = (GLfloat) dstX;
1818 const GLfloat dstY0 = (GLfloat) dstY;
1819 const GLfloat dstX1 = dstX + width * ctx->Pixel.ZoomX;
1820 const GLfloat dstY1 = dstY + height * ctx->Pixel.ZoomY;
1821 const GLfloat z = invert_z(ctx->Current.RasterPos[2]);
1822
1823 verts[0].x = dstX0;
1824 verts[0].y = dstY0;
1825 verts[0].z = z;
1826 verts[0].tex[0] = 0.0F;
1827 verts[0].tex[1] = 0.0F;
1828 verts[1].x = dstX1;
1829 verts[1].y = dstY0;
1830 verts[1].z = z;
1831 verts[1].tex[0] = tex->Sright;
1832 verts[1].tex[1] = 0.0F;
1833 verts[2].x = dstX1;
1834 verts[2].y = dstY1;
1835 verts[2].z = z;
1836 verts[2].tex[0] = tex->Sright;
1837 verts[2].tex[1] = tex->Ttop;
1838 verts[3].x = dstX0;
1839 verts[3].y = dstY1;
1840 verts[3].z = z;
1841 verts[3].tex[0] = 0.0F;
1842 verts[3].tex[1] = tex->Ttop;
1843
1844 /* upload new vertex data */
1845 _mesa_buffer_sub_data(ctx, copypix->buf_obj, 0, sizeof(verts), verts,
1846 __func__);
1847 }
1848
1849 _mesa_set_enable(ctx, tex->Target, GL_TRUE);
1850
1851 /* draw textured quad */
1852 _mesa_DrawArrays(GL_TRIANGLE_FAN, 0, 4);
1853
1854 _mesa_set_enable(ctx, tex->Target, GL_FALSE);
1855
1856 _mesa_meta_end(ctx);
1857 }
1858
1859 static void
1860 meta_drawpix_cleanup(struct gl_context *ctx, struct drawpix_state *drawpix)
1861 {
1862 if (drawpix->VAO != 0) {
1863 _mesa_DeleteVertexArrays(1, &drawpix->VAO);
1864 drawpix->VAO = 0;
1865
1866 _mesa_reference_buffer_object(ctx, &drawpix->buf_obj, NULL);
1867 }
1868
1869 if (drawpix->StencilFP != 0) {
1870 _mesa_DeleteProgramsARB(1, &drawpix->StencilFP);
1871 drawpix->StencilFP = 0;
1872 }
1873
1874 if (drawpix->DepthFP != 0) {
1875 _mesa_DeleteProgramsARB(1, &drawpix->DepthFP);
1876 drawpix->DepthFP = 0;
1877 }
1878 }
1879
1880 /**
1881 * When the glDrawPixels() image size is greater than the max rectangle
1882 * texture size we use this function to break the glDrawPixels() image
1883 * into tiles which fit into the max texture size.
1884 */
1885 static void
1886 tiled_draw_pixels(struct gl_context *ctx,
1887 GLint tileSize,
1888 GLint x, GLint y, GLsizei width, GLsizei height,
1889 GLenum format, GLenum type,
1890 const struct gl_pixelstore_attrib *unpack,
1891 const GLvoid *pixels)
1892 {
1893 struct gl_pixelstore_attrib tileUnpack = *unpack;
1894 GLint i, j;
1895
1896 if (tileUnpack.RowLength == 0)
1897 tileUnpack.RowLength = width;
1898
1899 for (i = 0; i < width; i += tileSize) {
1900 const GLint tileWidth = MIN2(tileSize, width - i);
1901 const GLint tileX = (GLint) (x + i * ctx->Pixel.ZoomX);
1902
1903 tileUnpack.SkipPixels = unpack->SkipPixels + i;
1904
1905 for (j = 0; j < height; j += tileSize) {
1906 const GLint tileHeight = MIN2(tileSize, height - j);
1907 const GLint tileY = (GLint) (y + j * ctx->Pixel.ZoomY);
1908
1909 tileUnpack.SkipRows = unpack->SkipRows + j;
1910
1911 _mesa_meta_DrawPixels(ctx, tileX, tileY, tileWidth, tileHeight,
1912 format, type, &tileUnpack, pixels);
1913 }
1914 }
1915 }
1916
1917
1918 /**
1919 * One-time init for drawing stencil pixels.
1920 */
1921 static void
1922 init_draw_stencil_pixels(struct gl_context *ctx)
1923 {
1924 /* This program is run eight times, once for each stencil bit.
1925 * The stencil values to draw are found in an 8-bit alpha texture.
1926 * We read the texture/stencil value and test if bit 'b' is set.
1927 * If the bit is not set, use KIL to kill the fragment.
1928 * Finally, we use the stencil test to update the stencil buffer.
1929 *
1930 * The basic algorithm for checking if a bit is set is:
1931 * if (is_odd(value / (1 << bit)))
1932 * result is one (or non-zero).
1933 * else
1934 * result is zero.
1935 * The program parameter contains three values:
1936 * parm.x = 255 / (1 << bit)
1937 * parm.y = 0.5
1938 * parm.z = 0.0
1939 */
1940 static const char *program =
1941 "!!ARBfp1.0\n"
1942 "PARAM parm = program.local[0]; \n"
1943 "TEMP t; \n"
1944 "TEX t, fragment.texcoord[0], texture[0], %s; \n" /* NOTE %s here! */
1945 "# t = t * 255 / bit \n"
1946 "MUL t.x, t.a, parm.x; \n"
1947 "# t = (int) t \n"
1948 "FRC t.y, t.x; \n"
1949 "SUB t.x, t.x, t.y; \n"
1950 "# t = t * 0.5 \n"
1951 "MUL t.x, t.x, parm.y; \n"
1952 "# t = fract(t.x) \n"
1953 "FRC t.x, t.x; # if t.x != 0, then the bit is set \n"
1954 "# t.x = (t.x == 0 ? 1 : 0) \n"
1955 "SGE t.x, -t.x, parm.z; \n"
1956 "KIL -t.x; \n"
1957 "# for debug only \n"
1958 "#MOV result.color, t.x; \n"
1959 "END \n";
1960 char program2[1000];
1961 struct drawpix_state *drawpix = &ctx->Meta->DrawPix;
1962 struct temp_texture *tex = _mesa_meta_get_temp_texture(ctx);
1963 const char *texTarget;
1964
1965 assert(drawpix->StencilFP == 0);
1966
1967 /* replace %s with "RECT" or "2D" */
1968 assert(strlen(program) + 4 < sizeof(program2));
1969 if (tex->Target == GL_TEXTURE_RECTANGLE)
1970 texTarget = "RECT";
1971 else
1972 texTarget = "2D";
1973 _mesa_snprintf(program2, sizeof(program2), program, texTarget);
1974
1975 _mesa_GenProgramsARB(1, &drawpix->StencilFP);
1976 _mesa_BindProgramARB(GL_FRAGMENT_PROGRAM_ARB, drawpix->StencilFP);
1977 _mesa_ProgramStringARB(GL_FRAGMENT_PROGRAM_ARB, GL_PROGRAM_FORMAT_ASCII_ARB,
1978 strlen(program2), (const GLubyte *) program2);
1979 }
1980
1981
1982 /**
1983 * One-time init for drawing depth pixels.
1984 */
1985 static void
1986 init_draw_depth_pixels(struct gl_context *ctx)
1987 {
1988 static const char *program =
1989 "!!ARBfp1.0\n"
1990 "PARAM color = program.local[0]; \n"
1991 "TEX result.depth, fragment.texcoord[0], texture[0], %s; \n"
1992 "MOV result.color, color; \n"
1993 "END \n";
1994 char program2[200];
1995 struct drawpix_state *drawpix = &ctx->Meta->DrawPix;
1996 struct temp_texture *tex = _mesa_meta_get_temp_texture(ctx);
1997 const char *texTarget;
1998
1999 assert(drawpix->DepthFP == 0);
2000
2001 /* replace %s with "RECT" or "2D" */
2002 assert(strlen(program) + 4 < sizeof(program2));
2003 if (tex->Target == GL_TEXTURE_RECTANGLE)
2004 texTarget = "RECT";
2005 else
2006 texTarget = "2D";
2007 _mesa_snprintf(program2, sizeof(program2), program, texTarget);
2008
2009 _mesa_GenProgramsARB(1, &drawpix->DepthFP);
2010 _mesa_BindProgramARB(GL_FRAGMENT_PROGRAM_ARB, drawpix->DepthFP);
2011 _mesa_ProgramStringARB(GL_FRAGMENT_PROGRAM_ARB, GL_PROGRAM_FORMAT_ASCII_ARB,
2012 strlen(program2), (const GLubyte *) program2);
2013 }
2014
2015
2016 /**
2017 * Meta implementation of ctx->Driver.DrawPixels() in terms
2018 * of texture mapping and polygon rendering.
2019 */
2020 void
2021 _mesa_meta_DrawPixels(struct gl_context *ctx,
2022 GLint x, GLint y, GLsizei width, GLsizei height,
2023 GLenum format, GLenum type,
2024 const struct gl_pixelstore_attrib *unpack,
2025 const GLvoid *pixels)
2026 {
2027 struct drawpix_state *drawpix = &ctx->Meta->DrawPix;
2028 struct temp_texture *tex = _mesa_meta_get_temp_texture(ctx);
2029 const struct gl_pixelstore_attrib unpackSave = ctx->Unpack;
2030 const GLuint origStencilMask = ctx->Stencil.WriteMask[0];
2031 struct vertex verts[4];
2032 GLenum texIntFormat;
2033 GLboolean fallback, newTex;
2034 GLbitfield metaExtraSave = 0x0;
2035
2036 /*
2037 * Determine if we can do the glDrawPixels with texture mapping.
2038 */
2039 fallback = GL_FALSE;
2040 if (ctx->Fog.Enabled) {
2041 fallback = GL_TRUE;
2042 }
2043
2044 if (_mesa_is_color_format(format)) {
2045 /* use more compact format when possible */
2046 /* XXX disable special case for GL_LUMINANCE for now to work around
2047 * apparent i965 driver bug (see bug #23670).
2048 */
2049 if (/*format == GL_LUMINANCE ||*/ format == GL_LUMINANCE_ALPHA)
2050 texIntFormat = format;
2051 else
2052 texIntFormat = GL_RGBA;
2053
2054 /* If we're not supposed to clamp the resulting color, then just
2055 * promote our texture to fully float. We could do better by
2056 * just going for the matching set of channels, in floating
2057 * point.
2058 */
2059 if (ctx->Color.ClampFragmentColor != GL_TRUE &&
2060 ctx->Extensions.ARB_texture_float)
2061 texIntFormat = GL_RGBA32F;
2062 }
2063 else if (_mesa_is_stencil_format(format)) {
2064 if (ctx->Extensions.ARB_fragment_program &&
2065 ctx->Pixel.IndexShift == 0 &&
2066 ctx->Pixel.IndexOffset == 0 &&
2067 type == GL_UNSIGNED_BYTE) {
2068 /* We'll store stencil as alpha. This only works for GLubyte
2069 * image data because of how incoming values are mapped to alpha
2070 * in [0,1].
2071 */
2072 texIntFormat = GL_ALPHA;
2073 metaExtraSave = (MESA_META_COLOR_MASK |
2074 MESA_META_DEPTH_TEST |
2075 MESA_META_PIXEL_TRANSFER |
2076 MESA_META_SHADER |
2077 MESA_META_STENCIL_TEST);
2078 }
2079 else {
2080 fallback = GL_TRUE;
2081 }
2082 }
2083 else if (_mesa_is_depth_format(format)) {
2084 if (ctx->Extensions.ARB_depth_texture &&
2085 ctx->Extensions.ARB_fragment_program) {
2086 texIntFormat = GL_DEPTH_COMPONENT;
2087 metaExtraSave = (MESA_META_SHADER);
2088 }
2089 else {
2090 fallback = GL_TRUE;
2091 }
2092 }
2093 else {
2094 fallback = GL_TRUE;
2095 }
2096
2097 if (fallback) {
2098 _swrast_DrawPixels(ctx, x, y, width, height,
2099 format, type, unpack, pixels);
2100 return;
2101 }
2102
2103 /*
2104 * Check image size against max texture size, draw as tiles if needed.
2105 */
2106 if (width > tex->MaxSize || height > tex->MaxSize) {
2107 tiled_draw_pixels(ctx, tex->MaxSize, x, y, width, height,
2108 format, type, unpack, pixels);
2109 return;
2110 }
2111
2112 /* Most GL state applies to glDrawPixels (like blending, stencil, etc),
2113 * but a there's a few things we need to override:
2114 */
2115 _mesa_meta_begin(ctx, (MESA_META_RASTERIZATION |
2116 MESA_META_SHADER |
2117 MESA_META_TEXTURE |
2118 MESA_META_TRANSFORM |
2119 MESA_META_CLIP |
2120 MESA_META_VERTEX |
2121 MESA_META_VIEWPORT |
2122 metaExtraSave));
2123
2124 newTex = _mesa_meta_alloc_texture(tex, width, height, texIntFormat);
2125
2126 _mesa_meta_setup_vertex_objects(ctx, &drawpix->VAO, &drawpix->buf_obj, false,
2127 3, 2, 0);
2128
2129 /* Silence valgrind warnings about reading uninitialized stack. */
2130 memset(verts, 0, sizeof(verts));
2131
2132 /* vertex positions, texcoords (after texture allocation!) */
2133 {
2134 const GLfloat x0 = (GLfloat) x;
2135 const GLfloat y0 = (GLfloat) y;
2136 const GLfloat x1 = x + width * ctx->Pixel.ZoomX;
2137 const GLfloat y1 = y + height * ctx->Pixel.ZoomY;
2138 const GLfloat z = invert_z(ctx->Current.RasterPos[2]);
2139
2140 verts[0].x = x0;
2141 verts[0].y = y0;
2142 verts[0].z = z;
2143 verts[0].tex[0] = 0.0F;
2144 verts[0].tex[1] = 0.0F;
2145 verts[1].x = x1;
2146 verts[1].y = y0;
2147 verts[1].z = z;
2148 verts[1].tex[0] = tex->Sright;
2149 verts[1].tex[1] = 0.0F;
2150 verts[2].x = x1;
2151 verts[2].y = y1;
2152 verts[2].z = z;
2153 verts[2].tex[0] = tex->Sright;
2154 verts[2].tex[1] = tex->Ttop;
2155 verts[3].x = x0;
2156 verts[3].y = y1;
2157 verts[3].z = z;
2158 verts[3].tex[0] = 0.0F;
2159 verts[3].tex[1] = tex->Ttop;
2160 }
2161
2162 /* upload new vertex data */
2163 _mesa_buffer_data(ctx, drawpix->buf_obj, GL_NONE, sizeof(verts), verts,
2164 GL_DYNAMIC_DRAW, __func__);
2165
2166 /* set given unpack params */
2167 ctx->Unpack = *unpack;
2168
2169 _mesa_set_enable(ctx, tex->Target, GL_TRUE);
2170
2171 if (_mesa_is_stencil_format(format)) {
2172 /* Drawing stencil */
2173 GLint bit;
2174
2175 if (!drawpix->StencilFP)
2176 init_draw_stencil_pixels(ctx);
2177
2178 _mesa_meta_setup_drawpix_texture(ctx, tex, newTex, width, height,
2179 GL_ALPHA, type, pixels);
2180
2181 _mesa_ColorMask(GL_FALSE, GL_FALSE, GL_FALSE, GL_FALSE);
2182
2183 _mesa_set_enable(ctx, GL_STENCIL_TEST, GL_TRUE);
2184
2185 /* set all stencil bits to 0 */
2186 _mesa_StencilOp(GL_REPLACE, GL_REPLACE, GL_REPLACE);
2187 _mesa_StencilFunc(GL_ALWAYS, 0, 255);
2188 _mesa_DrawArrays(GL_TRIANGLE_FAN, 0, 4);
2189
2190 /* set stencil bits to 1 where needed */
2191 _mesa_StencilOp(GL_KEEP, GL_KEEP, GL_REPLACE);
2192
2193 _mesa_BindProgramARB(GL_FRAGMENT_PROGRAM_ARB, drawpix->StencilFP);
2194 _mesa_set_enable(ctx, GL_FRAGMENT_PROGRAM_ARB, GL_TRUE);
2195
2196 for (bit = 0; bit < ctx->DrawBuffer->Visual.stencilBits; bit++) {
2197 const GLuint mask = 1 << bit;
2198 if (mask & origStencilMask) {
2199 _mesa_StencilFunc(GL_ALWAYS, mask, mask);
2200 _mesa_StencilMask(mask);
2201
2202 _mesa_ProgramLocalParameter4fARB(GL_FRAGMENT_PROGRAM_ARB, 0,
2203 255.0f / mask, 0.5f, 0.0f, 0.0f);
2204
2205 _mesa_DrawArrays(GL_TRIANGLE_FAN, 0, 4);
2206 }
2207 }
2208 }
2209 else if (_mesa_is_depth_format(format)) {
2210 /* Drawing depth */
2211 if (!drawpix->DepthFP)
2212 init_draw_depth_pixels(ctx);
2213
2214 _mesa_BindProgramARB(GL_FRAGMENT_PROGRAM_ARB, drawpix->DepthFP);
2215 _mesa_set_enable(ctx, GL_FRAGMENT_PROGRAM_ARB, GL_TRUE);
2216
2217 /* polygon color = current raster color */
2218 _mesa_ProgramLocalParameter4fvARB(GL_FRAGMENT_PROGRAM_ARB, 0,
2219 ctx->Current.RasterColor);
2220
2221 _mesa_meta_setup_drawpix_texture(ctx, tex, newTex, width, height,
2222 format, type, pixels);
2223
2224 _mesa_DrawArrays(GL_TRIANGLE_FAN, 0, 4);
2225 }
2226 else {
2227 /* Drawing RGBA */
2228 _mesa_meta_setup_drawpix_texture(ctx, tex, newTex, width, height,
2229 format, type, pixels);
2230 _mesa_DrawArrays(GL_TRIANGLE_FAN, 0, 4);
2231 }
2232
2233 _mesa_set_enable(ctx, tex->Target, GL_FALSE);
2234
2235 /* restore unpack params */
2236 ctx->Unpack = unpackSave;
2237
2238 _mesa_meta_end(ctx);
2239 }
2240
2241 static GLboolean
2242 alpha_test_raster_color(struct gl_context *ctx)
2243 {
2244 GLfloat alpha = ctx->Current.RasterColor[ACOMP];
2245 GLfloat ref = ctx->Color.AlphaRef;
2246
2247 switch (ctx->Color.AlphaFunc) {
2248 case GL_NEVER:
2249 return GL_FALSE;
2250 case GL_LESS:
2251 return alpha < ref;
2252 case GL_EQUAL:
2253 return alpha == ref;
2254 case GL_LEQUAL:
2255 return alpha <= ref;
2256 case GL_GREATER:
2257 return alpha > ref;
2258 case GL_NOTEQUAL:
2259 return alpha != ref;
2260 case GL_GEQUAL:
2261 return alpha >= ref;
2262 case GL_ALWAYS:
2263 return GL_TRUE;
2264 default:
2265 assert(0);
2266 return GL_FALSE;
2267 }
2268 }
2269
2270 /**
2271 * Do glBitmap with a alpha texture quad. Use the alpha test to cull
2272 * the 'off' bits. A bitmap cache as in the gallium/mesa state
2273 * tracker would improve performance a lot.
2274 */
2275 void
2276 _mesa_meta_Bitmap(struct gl_context *ctx,
2277 GLint x, GLint y, GLsizei width, GLsizei height,
2278 const struct gl_pixelstore_attrib *unpack,
2279 const GLubyte *bitmap1)
2280 {
2281 struct bitmap_state *bitmap = &ctx->Meta->Bitmap;
2282 struct temp_texture *tex = get_bitmap_temp_texture(ctx);
2283 const GLenum texIntFormat = GL_ALPHA;
2284 const struct gl_pixelstore_attrib unpackSave = *unpack;
2285 GLubyte fg, bg;
2286 struct vertex verts[4];
2287 GLboolean newTex;
2288 GLubyte *bitmap8;
2289
2290 /*
2291 * Check if swrast fallback is needed.
2292 */
2293 if (ctx->_ImageTransferState ||
2294 ctx->FragmentProgram._Enabled ||
2295 ctx->Fog.Enabled ||
2296 ctx->Texture._MaxEnabledTexImageUnit != -1 ||
2297 width > tex->MaxSize ||
2298 height > tex->MaxSize) {
2299 _swrast_Bitmap(ctx, x, y, width, height, unpack, bitmap1);
2300 return;
2301 }
2302
2303 if (ctx->Color.AlphaEnabled && !alpha_test_raster_color(ctx))
2304 return;
2305
2306 /* Most GL state applies to glBitmap (like blending, stencil, etc),
2307 * but a there's a few things we need to override:
2308 */
2309 _mesa_meta_begin(ctx, (MESA_META_ALPHA_TEST |
2310 MESA_META_PIXEL_STORE |
2311 MESA_META_RASTERIZATION |
2312 MESA_META_SHADER |
2313 MESA_META_TEXTURE |
2314 MESA_META_TRANSFORM |
2315 MESA_META_CLIP |
2316 MESA_META_VERTEX |
2317 MESA_META_VIEWPORT));
2318
2319 _mesa_meta_setup_vertex_objects(ctx, &bitmap->VAO, &bitmap->buf_obj, false,
2320 3, 2, 4);
2321
2322 newTex = _mesa_meta_alloc_texture(tex, width, height, texIntFormat);
2323
2324 /* Silence valgrind warnings about reading uninitialized stack. */
2325 memset(verts, 0, sizeof(verts));
2326
2327 /* vertex positions, texcoords, colors (after texture allocation!) */
2328 {
2329 const GLfloat x0 = (GLfloat) x;
2330 const GLfloat y0 = (GLfloat) y;
2331 const GLfloat x1 = (GLfloat) (x + width);
2332 const GLfloat y1 = (GLfloat) (y + height);
2333 const GLfloat z = invert_z(ctx->Current.RasterPos[2]);
2334 GLuint i;
2335
2336 verts[0].x = x0;
2337 verts[0].y = y0;
2338 verts[0].z = z;
2339 verts[0].tex[0] = 0.0F;
2340 verts[0].tex[1] = 0.0F;
2341 verts[1].x = x1;
2342 verts[1].y = y0;
2343 verts[1].z = z;
2344 verts[1].tex[0] = tex->Sright;
2345 verts[1].tex[1] = 0.0F;
2346 verts[2].x = x1;
2347 verts[2].y = y1;
2348 verts[2].z = z;
2349 verts[2].tex[0] = tex->Sright;
2350 verts[2].tex[1] = tex->Ttop;
2351 verts[3].x = x0;
2352 verts[3].y = y1;
2353 verts[3].z = z;
2354 verts[3].tex[0] = 0.0F;
2355 verts[3].tex[1] = tex->Ttop;
2356
2357 for (i = 0; i < 4; i++) {
2358 verts[i].r = ctx->Current.RasterColor[0];
2359 verts[i].g = ctx->Current.RasterColor[1];
2360 verts[i].b = ctx->Current.RasterColor[2];
2361 verts[i].a = ctx->Current.RasterColor[3];
2362 }
2363
2364 /* upload new vertex data */
2365 _mesa_buffer_sub_data(ctx, bitmap->buf_obj, 0, sizeof(verts), verts,
2366 __func__);
2367 }
2368
2369 /* choose different foreground/background alpha values */
2370 CLAMPED_FLOAT_TO_UBYTE(fg, ctx->Current.RasterColor[ACOMP]);
2371 bg = (fg > 127 ? 0 : 255);
2372
2373 bitmap1 = _mesa_map_pbo_source(ctx, &unpackSave, bitmap1);
2374 if (!bitmap1) {
2375 _mesa_meta_end(ctx);
2376 return;
2377 }
2378
2379 bitmap8 = malloc(width * height);
2380 if (bitmap8) {
2381 memset(bitmap8, bg, width * height);
2382 _mesa_expand_bitmap(width, height, &unpackSave, bitmap1,
2383 bitmap8, width, fg);
2384
2385 _mesa_set_enable(ctx, tex->Target, GL_TRUE);
2386
2387 _mesa_set_enable(ctx, GL_ALPHA_TEST, GL_TRUE);
2388 _mesa_AlphaFunc(GL_NOTEQUAL, UBYTE_TO_FLOAT(bg));
2389
2390 _mesa_meta_setup_drawpix_texture(ctx, tex, newTex, width, height,
2391 GL_ALPHA, GL_UNSIGNED_BYTE, bitmap8);
2392
2393 _mesa_DrawArrays(GL_TRIANGLE_FAN, 0, 4);
2394
2395 _mesa_set_enable(ctx, tex->Target, GL_FALSE);
2396
2397 free(bitmap8);
2398 }
2399
2400 _mesa_unmap_pbo_source(ctx, &unpackSave);
2401
2402 _mesa_meta_end(ctx);
2403 }
2404
2405 /**
2406 * Compute the texture coordinates for the four vertices of a quad for
2407 * drawing a 2D texture image or slice of a cube/3D texture. The offset
2408 * and width, height specify a sub-region of the 2D image.
2409 *
2410 * \param faceTarget GL_TEXTURE_1D/2D/3D or cube face name
2411 * \param slice slice of a 1D/2D array texture or 3D texture
2412 * \param xoffset X position of sub texture
2413 * \param yoffset Y position of sub texture
2414 * \param width width of the sub texture image
2415 * \param height height of the sub texture image
2416 * \param total_width total width of the texture image
2417 * \param total_height total height of the texture image
2418 * \param total_depth total depth of the texture image
2419 * \param coords0/1/2/3 returns the computed texcoords
2420 */
2421 void
2422 _mesa_meta_setup_texture_coords(GLenum faceTarget,
2423 GLint slice,
2424 GLint xoffset,
2425 GLint yoffset,
2426 GLint width,
2427 GLint height,
2428 GLint total_width,
2429 GLint total_height,
2430 GLint total_depth,
2431 GLfloat coords0[4],
2432 GLfloat coords1[4],
2433 GLfloat coords2[4],
2434 GLfloat coords3[4])
2435 {
2436 float st[4][2];
2437 GLuint i;
2438 const float s0 = (float) xoffset / (float) total_width;
2439 const float s1 = (float) (xoffset + width) / (float) total_width;
2440 const float t0 = (float) yoffset / (float) total_height;
2441 const float t1 = (float) (yoffset + height) / (float) total_height;
2442 GLfloat r;
2443
2444 /* setup the reference texcoords */
2445 st[0][0] = s0;
2446 st[0][1] = t0;
2447 st[1][0] = s1;
2448 st[1][1] = t0;
2449 st[2][0] = s1;
2450 st[2][1] = t1;
2451 st[3][0] = s0;
2452 st[3][1] = t1;
2453
2454 if (faceTarget == GL_TEXTURE_CUBE_MAP_ARRAY)
2455 faceTarget = GL_TEXTURE_CUBE_MAP_POSITIVE_X + slice % 6;
2456
2457 /* Currently all texture targets want the W component to be 1.0.
2458 */
2459 coords0[3] = 1.0F;
2460 coords1[3] = 1.0F;
2461 coords2[3] = 1.0F;
2462 coords3[3] = 1.0F;
2463
2464 switch (faceTarget) {
2465 case GL_TEXTURE_1D:
2466 case GL_TEXTURE_2D:
2467 case GL_TEXTURE_3D:
2468 case GL_TEXTURE_2D_ARRAY:
2469 if (faceTarget == GL_TEXTURE_3D) {
2470 assert(slice < total_depth);
2471 assert(total_depth >= 1);
2472 r = (slice + 0.5f) / total_depth;
2473 }
2474 else if (faceTarget == GL_TEXTURE_2D_ARRAY)
2475 r = (float) slice;
2476 else
2477 r = 0.0F;
2478 coords0[0] = st[0][0]; /* s */
2479 coords0[1] = st[0][1]; /* t */
2480 coords0[2] = r; /* r */
2481 coords1[0] = st[1][0];
2482 coords1[1] = st[1][1];
2483 coords1[2] = r;
2484 coords2[0] = st[2][0];
2485 coords2[1] = st[2][1];
2486 coords2[2] = r;
2487 coords3[0] = st[3][0];
2488 coords3[1] = st[3][1];
2489 coords3[2] = r;
2490 break;
2491 case GL_TEXTURE_RECTANGLE_ARB:
2492 coords0[0] = (float) xoffset; /* s */
2493 coords0[1] = (float) yoffset; /* t */
2494 coords0[2] = 0.0F; /* r */
2495 coords1[0] = (float) (xoffset + width);
2496 coords1[1] = (float) yoffset;
2497 coords1[2] = 0.0F;
2498 coords2[0] = (float) (xoffset + width);
2499 coords2[1] = (float) (yoffset + height);
2500 coords2[2] = 0.0F;
2501 coords3[0] = (float) xoffset;
2502 coords3[1] = (float) (yoffset + height);
2503 coords3[2] = 0.0F;
2504 break;
2505 case GL_TEXTURE_1D_ARRAY:
2506 coords0[0] = st[0][0]; /* s */
2507 coords0[1] = (float) slice; /* t */
2508 coords0[2] = 0.0F; /* r */
2509 coords1[0] = st[1][0];
2510 coords1[1] = (float) slice;
2511 coords1[2] = 0.0F;
2512 coords2[0] = st[2][0];
2513 coords2[1] = (float) slice;
2514 coords2[2] = 0.0F;
2515 coords3[0] = st[3][0];
2516 coords3[1] = (float) slice;
2517 coords3[2] = 0.0F;
2518 break;
2519
2520 case GL_TEXTURE_CUBE_MAP_POSITIVE_X:
2521 case GL_TEXTURE_CUBE_MAP_NEGATIVE_X:
2522 case GL_TEXTURE_CUBE_MAP_POSITIVE_Y:
2523 case GL_TEXTURE_CUBE_MAP_NEGATIVE_Y:
2524 case GL_TEXTURE_CUBE_MAP_POSITIVE_Z:
2525 case GL_TEXTURE_CUBE_MAP_NEGATIVE_Z:
2526 /* loop over quad verts */
2527 for (i = 0; i < 4; i++) {
2528 /* Compute sc = +/-scale and tc = +/-scale.
2529 * Not +/-1 to avoid cube face selection ambiguity near the edges,
2530 * though that can still sometimes happen with this scale factor...
2531 */
2532 const GLfloat scale = 0.9999f;
2533 const GLfloat sc = (2.0f * st[i][0] - 1.0f) * scale;
2534 const GLfloat tc = (2.0f * st[i][1] - 1.0f) * scale;
2535 GLfloat *coord;
2536
2537 switch (i) {
2538 case 0:
2539 coord = coords0;
2540 break;
2541 case 1:
2542 coord = coords1;
2543 break;
2544 case 2:
2545 coord = coords2;
2546 break;
2547 case 3:
2548 coord = coords3;
2549 break;
2550 default:
2551 unreachable("not reached");
2552 }
2553
2554 coord[3] = (float) (slice / 6);
2555
2556 switch (faceTarget) {
2557 case GL_TEXTURE_CUBE_MAP_POSITIVE_X:
2558 coord[0] = 1.0f;
2559 coord[1] = -tc;
2560 coord[2] = -sc;
2561 break;
2562 case GL_TEXTURE_CUBE_MAP_NEGATIVE_X:
2563 coord[0] = -1.0f;
2564 coord[1] = -tc;
2565 coord[2] = sc;
2566 break;
2567 case GL_TEXTURE_CUBE_MAP_POSITIVE_Y:
2568 coord[0] = sc;
2569 coord[1] = 1.0f;
2570 coord[2] = tc;
2571 break;
2572 case GL_TEXTURE_CUBE_MAP_NEGATIVE_Y:
2573 coord[0] = sc;
2574 coord[1] = -1.0f;
2575 coord[2] = -tc;
2576 break;
2577 case GL_TEXTURE_CUBE_MAP_POSITIVE_Z:
2578 coord[0] = sc;
2579 coord[1] = -tc;
2580 coord[2] = 1.0f;
2581 break;
2582 case GL_TEXTURE_CUBE_MAP_NEGATIVE_Z:
2583 coord[0] = -sc;
2584 coord[1] = -tc;
2585 coord[2] = -1.0f;
2586 break;
2587 default:
2588 assert(0);
2589 }
2590 }
2591 break;
2592 default:
2593 assert(!"unexpected target in _mesa_meta_setup_texture_coords()");
2594 }
2595 }
2596
2597 static struct blit_shader *
2598 choose_blit_shader(GLenum target, struct blit_shader_table *table)
2599 {
2600 switch(target) {
2601 case GL_TEXTURE_1D:
2602 table->sampler_1d.type = "sampler1D";
2603 table->sampler_1d.func = "texture1D";
2604 table->sampler_1d.texcoords = "texCoords.x";
2605 return &table->sampler_1d;
2606 case GL_TEXTURE_2D:
2607 table->sampler_2d.type = "sampler2D";
2608 table->sampler_2d.func = "texture2D";
2609 table->sampler_2d.texcoords = "texCoords.xy";
2610 return &table->sampler_2d;
2611 case GL_TEXTURE_RECTANGLE:
2612 table->sampler_rect.type = "sampler2DRect";
2613 table->sampler_rect.func = "texture2DRect";
2614 table->sampler_rect.texcoords = "texCoords.xy";
2615 return &table->sampler_rect;
2616 case GL_TEXTURE_3D:
2617 /* Code for mipmap generation with 3D textures is not used yet.
2618 * It's a sw fallback.
2619 */
2620 table->sampler_3d.type = "sampler3D";
2621 table->sampler_3d.func = "texture3D";
2622 table->sampler_3d.texcoords = "texCoords.xyz";
2623 return &table->sampler_3d;
2624 case GL_TEXTURE_CUBE_MAP:
2625 table->sampler_cubemap.type = "samplerCube";
2626 table->sampler_cubemap.func = "textureCube";
2627 table->sampler_cubemap.texcoords = "texCoords.xyz";
2628 return &table->sampler_cubemap;
2629 case GL_TEXTURE_1D_ARRAY:
2630 table->sampler_1d_array.type = "sampler1DArray";
2631 table->sampler_1d_array.func = "texture1DArray";
2632 table->sampler_1d_array.texcoords = "texCoords.xy";
2633 return &table->sampler_1d_array;
2634 case GL_TEXTURE_2D_ARRAY:
2635 table->sampler_2d_array.type = "sampler2DArray";
2636 table->sampler_2d_array.func = "texture2DArray";
2637 table->sampler_2d_array.texcoords = "texCoords.xyz";
2638 return &table->sampler_2d_array;
2639 case GL_TEXTURE_CUBE_MAP_ARRAY:
2640 table->sampler_cubemap_array.type = "samplerCubeArray";
2641 table->sampler_cubemap_array.func = "textureCubeArray";
2642 table->sampler_cubemap_array.texcoords = "texCoords.xyzw";
2643 return &table->sampler_cubemap_array;
2644 default:
2645 _mesa_problem(NULL, "Unexpected texture target 0x%x in"
2646 " setup_texture_sampler()\n", target);
2647 return NULL;
2648 }
2649 }
2650
2651 void
2652 _mesa_meta_blit_shader_table_cleanup(struct gl_context *ctx,
2653 struct blit_shader_table *table)
2654 {
2655 _mesa_reference_shader_program(ctx, &table->sampler_1d.shader_prog, NULL);
2656 _mesa_reference_shader_program(ctx, &table->sampler_2d.shader_prog, NULL);
2657 _mesa_reference_shader_program(ctx, &table->sampler_3d.shader_prog, NULL);
2658 _mesa_reference_shader_program(ctx, &table->sampler_rect.shader_prog, NULL);
2659 _mesa_reference_shader_program(ctx, &table->sampler_cubemap.shader_prog, NULL);
2660 _mesa_reference_shader_program(ctx, &table->sampler_1d_array.shader_prog, NULL);
2661 _mesa_reference_shader_program(ctx, &table->sampler_2d_array.shader_prog, NULL);
2662 _mesa_reference_shader_program(ctx, &table->sampler_cubemap_array.shader_prog, NULL);
2663 }
2664
2665 /**
2666 * Determine the GL data type to use for the temporary image read with
2667 * ReadPixels() and passed to Tex[Sub]Image().
2668 */
2669 static GLenum
2670 get_temp_image_type(struct gl_context *ctx, mesa_format format)
2671 {
2672 const GLenum baseFormat = _mesa_get_format_base_format(format);
2673 const GLenum datatype = _mesa_get_format_datatype(format);
2674 const GLint format_red_bits = _mesa_get_format_bits(format, GL_RED_BITS);
2675
2676 switch (baseFormat) {
2677 case GL_RGBA:
2678 case GL_RGB:
2679 case GL_RG:
2680 case GL_RED:
2681 case GL_ALPHA:
2682 case GL_LUMINANCE:
2683 case GL_LUMINANCE_ALPHA:
2684 case GL_INTENSITY:
2685 if (datatype == GL_INT || datatype == GL_UNSIGNED_INT) {
2686 return datatype;
2687 } else if (format_red_bits <= 8) {
2688 return GL_UNSIGNED_BYTE;
2689 } else if (format_red_bits <= 16) {
2690 return GL_UNSIGNED_SHORT;
2691 }
2692 return GL_FLOAT;
2693 case GL_DEPTH_COMPONENT:
2694 if (datatype == GL_FLOAT)
2695 return GL_FLOAT;
2696 else
2697 return GL_UNSIGNED_INT;
2698 case GL_DEPTH_STENCIL:
2699 if (datatype == GL_FLOAT)
2700 return GL_FLOAT_32_UNSIGNED_INT_24_8_REV;
2701 else
2702 return GL_UNSIGNED_INT_24_8;
2703 default:
2704 _mesa_problem(ctx, "Unexpected format %d in get_temp_image_type()",
2705 baseFormat);
2706 return 0;
2707 }
2708 }
2709
2710 /**
2711 * Attempts to wrap the destination texture in an FBO and use
2712 * glBlitFramebuffer() to implement glCopyTexSubImage().
2713 */
2714 static bool
2715 copytexsubimage_using_blit_framebuffer(struct gl_context *ctx, GLuint dims,
2716 struct gl_texture_image *texImage,
2717 GLint xoffset,
2718 GLint yoffset,
2719 GLint zoffset,
2720 struct gl_renderbuffer *rb,
2721 GLint x, GLint y,
2722 GLsizei width, GLsizei height)
2723 {
2724 struct gl_framebuffer *drawFb;
2725 bool success = false;
2726 GLbitfield mask;
2727 GLenum status;
2728
2729 if (!ctx->Extensions.ARB_framebuffer_object)
2730 return false;
2731
2732 drawFb = ctx->Driver.NewFramebuffer(ctx, 0xDEADBEEF);
2733 if (drawFb == NULL)
2734 return false;
2735
2736 _mesa_meta_begin(ctx, MESA_META_ALL & ~MESA_META_DRAW_BUFFERS);
2737 _mesa_bind_framebuffers(ctx, drawFb, ctx->ReadBuffer);
2738
2739 if (rb->_BaseFormat == GL_DEPTH_STENCIL ||
2740 rb->_BaseFormat == GL_DEPTH_COMPONENT) {
2741 _mesa_meta_framebuffer_texture_image(ctx, ctx->DrawBuffer,
2742 GL_DEPTH_ATTACHMENT,
2743 texImage, zoffset);
2744 mask = GL_DEPTH_BUFFER_BIT;
2745
2746 if (rb->_BaseFormat == GL_DEPTH_STENCIL &&
2747 texImage->_BaseFormat == GL_DEPTH_STENCIL) {
2748 _mesa_meta_framebuffer_texture_image(ctx, ctx->DrawBuffer,
2749 GL_STENCIL_ATTACHMENT,
2750 texImage, zoffset);
2751 mask |= GL_STENCIL_BUFFER_BIT;
2752 }
2753 _mesa_DrawBuffer(GL_NONE);
2754 } else {
2755 _mesa_meta_framebuffer_texture_image(ctx, ctx->DrawBuffer,
2756 GL_COLOR_ATTACHMENT0,
2757 texImage, zoffset);
2758 mask = GL_COLOR_BUFFER_BIT;
2759 _mesa_DrawBuffer(GL_COLOR_ATTACHMENT0);
2760 }
2761
2762 status = _mesa_check_framebuffer_status(ctx, ctx->DrawBuffer);
2763 if (status != GL_FRAMEBUFFER_COMPLETE)
2764 goto out;
2765
2766 ctx->Meta->Blit.no_ctsi_fallback = true;
2767
2768 /* Since we've bound a new draw framebuffer, we need to update
2769 * its derived state -- _Xmin, etc -- for BlitFramebuffer's clipping to
2770 * be correct.
2771 */
2772 _mesa_update_state(ctx);
2773
2774 /* We skip the core BlitFramebuffer checks for format consistency, which
2775 * are too strict for CopyTexImage. We know meta will be fine with format
2776 * changes.
2777 */
2778 mask = _mesa_meta_BlitFramebuffer(ctx, ctx->ReadBuffer, ctx->DrawBuffer,
2779 x, y,
2780 x + width, y + height,
2781 xoffset, yoffset,
2782 xoffset + width, yoffset + height,
2783 mask, GL_NEAREST);
2784 ctx->Meta->Blit.no_ctsi_fallback = false;
2785 success = mask == 0x0;
2786
2787 out:
2788 _mesa_reference_framebuffer(&drawFb, NULL);
2789 _mesa_meta_end(ctx);
2790 return success;
2791 }
2792
2793 /**
2794 * Helper for _mesa_meta_CopyTexSubImage1/2/3D() functions.
2795 * Have to be careful with locking and meta state for pixel transfer.
2796 */
2797 void
2798 _mesa_meta_CopyTexSubImage(struct gl_context *ctx, GLuint dims,
2799 struct gl_texture_image *texImage,
2800 GLint xoffset, GLint yoffset, GLint zoffset,
2801 struct gl_renderbuffer *rb,
2802 GLint x, GLint y,
2803 GLsizei width, GLsizei height)
2804 {
2805 GLenum format, type;
2806 GLint bpp;
2807 void *buf;
2808
2809 if (copytexsubimage_using_blit_framebuffer(ctx, dims,
2810 texImage,
2811 xoffset, yoffset, zoffset,
2812 rb,
2813 x, y,
2814 width, height)) {
2815 return;
2816 }
2817
2818 /* Choose format/type for temporary image buffer */
2819 format = _mesa_get_format_base_format(texImage->TexFormat);
2820 if (format == GL_LUMINANCE ||
2821 format == GL_LUMINANCE_ALPHA ||
2822 format == GL_INTENSITY) {
2823 /* We don't want to use GL_LUMINANCE, GL_INTENSITY, etc. for the
2824 * temp image buffer because glReadPixels will do L=R+G+B which is
2825 * not what we want (should be L=R).
2826 */
2827 format = GL_RGBA;
2828 }
2829
2830 type = get_temp_image_type(ctx, texImage->TexFormat);
2831 if (_mesa_is_format_integer_color(texImage->TexFormat)) {
2832 format = _mesa_base_format_to_integer_format(format);
2833 }
2834 bpp = _mesa_bytes_per_pixel(format, type);
2835 if (bpp <= 0) {
2836 _mesa_problem(ctx, "Bad bpp in _mesa_meta_CopyTexSubImage()");
2837 return;
2838 }
2839
2840 /*
2841 * Alloc image buffer (XXX could use a PBO)
2842 */
2843 buf = malloc(width * height * bpp);
2844 if (!buf) {
2845 _mesa_error(ctx, GL_OUT_OF_MEMORY, "glCopyTexSubImage%uD", dims);
2846 return;
2847 }
2848
2849 /*
2850 * Read image from framebuffer (disable pixel transfer ops)
2851 */
2852 _mesa_meta_begin(ctx, MESA_META_PIXEL_STORE | MESA_META_PIXEL_TRANSFER);
2853 ctx->Driver.ReadPixels(ctx, x, y, width, height,
2854 format, type, &ctx->Pack, buf);
2855 _mesa_meta_end(ctx);
2856
2857 _mesa_update_state(ctx); /* to update pixel transfer state */
2858
2859 /*
2860 * Store texture data (with pixel transfer ops)
2861 */
2862 _mesa_meta_begin(ctx, MESA_META_PIXEL_STORE);
2863
2864 if (texImage->TexObject->Target == GL_TEXTURE_1D_ARRAY) {
2865 assert(yoffset == 0);
2866 ctx->Driver.TexSubImage(ctx, dims, texImage,
2867 xoffset, zoffset, 0, width, 1, 1,
2868 format, type, buf, &ctx->Unpack);
2869 } else {
2870 ctx->Driver.TexSubImage(ctx, dims, texImage,
2871 xoffset, yoffset, zoffset, width, height, 1,
2872 format, type, buf, &ctx->Unpack);
2873 }
2874
2875 _mesa_meta_end(ctx);
2876
2877 free(buf);
2878 }
2879
2880 static void
2881 meta_decompress_fbo_cleanup(struct decompress_fbo_state *decompress_fbo)
2882 {
2883 if (decompress_fbo->fb != NULL) {
2884 _mesa_reference_framebuffer(&decompress_fbo->fb, NULL);
2885 _mesa_reference_renderbuffer(&decompress_fbo->rb, NULL);
2886 }
2887
2888 memset(decompress_fbo, 0, sizeof(*decompress_fbo));
2889 }
2890
2891 static void
2892 meta_decompress_cleanup(struct gl_context *ctx,
2893 struct decompress_state *decompress)
2894 {
2895 meta_decompress_fbo_cleanup(&decompress->byteFBO);
2896 meta_decompress_fbo_cleanup(&decompress->floatFBO);
2897
2898 if (decompress->VAO != 0) {
2899 _mesa_DeleteVertexArrays(1, &decompress->VAO);
2900 _mesa_reference_buffer_object(ctx, &decompress->buf_obj, NULL);
2901 }
2902
2903 _mesa_reference_sampler_object(ctx, &decompress->samp_obj, NULL);
2904
2905 memset(decompress, 0, sizeof(*decompress));
2906 }
2907
2908 /**
2909 * Decompress a texture image by drawing a quad with the compressed
2910 * texture and reading the pixels out of the color buffer.
2911 * \param slice which slice of a 3D texture or layer of a 1D/2D texture
2912 * \param destFormat format, ala glReadPixels
2913 * \param destType type, ala glReadPixels
2914 * \param dest destination buffer
2915 * \param destRowLength dest image rowLength (ala GL_PACK_ROW_LENGTH)
2916 */
2917 static bool
2918 decompress_texture_image(struct gl_context *ctx,
2919 struct gl_texture_image *texImage,
2920 GLuint slice,
2921 GLint xoffset, GLint yoffset,
2922 GLsizei width, GLsizei height,
2923 GLenum destFormat, GLenum destType,
2924 GLvoid *dest)
2925 {
2926 struct decompress_state *decompress = &ctx->Meta->Decompress;
2927 struct decompress_fbo_state *decompress_fbo;
2928 struct gl_texture_object *texObj = texImage->TexObject;
2929 const GLenum target = texObj->Target;
2930 GLenum rbFormat;
2931 GLenum faceTarget;
2932 struct vertex verts[4];
2933 struct gl_sampler_object *samp_obj_save = NULL;
2934 GLenum status;
2935 const bool use_glsl_version = ctx->Extensions.ARB_vertex_shader &&
2936 ctx->Extensions.ARB_fragment_shader;
2937
2938 switch (_mesa_get_format_datatype(texImage->TexFormat)) {
2939 case GL_FLOAT:
2940 decompress_fbo = &decompress->floatFBO;
2941 rbFormat = GL_RGBA32F;
2942 break;
2943 case GL_UNSIGNED_NORMALIZED:
2944 decompress_fbo = &decompress->byteFBO;
2945 rbFormat = GL_RGBA;
2946 break;
2947 default:
2948 return false;
2949 }
2950
2951 if (slice > 0) {
2952 assert(target == GL_TEXTURE_3D ||
2953 target == GL_TEXTURE_2D_ARRAY ||
2954 target == GL_TEXTURE_CUBE_MAP_ARRAY);
2955 }
2956
2957 switch (target) {
2958 case GL_TEXTURE_1D:
2959 case GL_TEXTURE_1D_ARRAY:
2960 assert(!"No compressed 1D textures.");
2961 return false;
2962
2963 case GL_TEXTURE_3D:
2964 assert(!"No compressed 3D textures.");
2965 return false;
2966
2967 case GL_TEXTURE_CUBE_MAP_ARRAY:
2968 faceTarget = GL_TEXTURE_CUBE_MAP_POSITIVE_X + (slice % 6);
2969 break;
2970
2971 case GL_TEXTURE_CUBE_MAP:
2972 faceTarget = GL_TEXTURE_CUBE_MAP_POSITIVE_X + texImage->Face;
2973 break;
2974
2975 default:
2976 faceTarget = target;
2977 break;
2978 }
2979
2980 _mesa_meta_begin(ctx, MESA_META_ALL & ~(MESA_META_PIXEL_STORE |
2981 MESA_META_DRAW_BUFFERS));
2982 _mesa_ColorMask(GL_TRUE, GL_TRUE, GL_TRUE, GL_TRUE);
2983
2984 _mesa_reference_sampler_object(ctx, &samp_obj_save,
2985 ctx->Texture.Unit[ctx->Texture.CurrentUnit].Sampler);
2986
2987 /* Create/bind FBO/renderbuffer */
2988 if (decompress_fbo->fb == NULL) {
2989 decompress_fbo->rb = ctx->Driver.NewRenderbuffer(ctx, 0xDEADBEEF);
2990 if (decompress_fbo->rb == NULL) {
2991 _mesa_meta_end(ctx);
2992 return false;
2993 }
2994
2995 decompress_fbo->rb->RefCount = 1;
2996
2997 decompress_fbo->fb = ctx->Driver.NewFramebuffer(ctx, 0xDEADBEEF);
2998 if (decompress_fbo->fb == NULL) {
2999 _mesa_meta_end(ctx);
3000 return false;
3001 }
3002
3003 _mesa_bind_framebuffers(ctx, decompress_fbo->fb, decompress_fbo->fb);
3004 _mesa_framebuffer_renderbuffer(ctx, ctx->DrawBuffer, GL_COLOR_ATTACHMENT0,
3005 decompress_fbo->rb);
3006 }
3007 else {
3008 _mesa_bind_framebuffers(ctx, decompress_fbo->fb, decompress_fbo->fb);
3009 }
3010
3011 /* alloc dest surface */
3012 if (width > decompress_fbo->Width || height > decompress_fbo->Height) {
3013 _mesa_renderbuffer_storage(ctx, decompress_fbo->rb, rbFormat,
3014 width, height, 0);
3015 status = _mesa_check_framebuffer_status(ctx, ctx->DrawBuffer);
3016 if (status != GL_FRAMEBUFFER_COMPLETE) {
3017 /* If the framebuffer isn't complete then we'll leave
3018 * decompress_fbo->Width as zero so that it will fail again next time
3019 * too */
3020 _mesa_meta_end(ctx);
3021 return false;
3022 }
3023 decompress_fbo->Width = width;
3024 decompress_fbo->Height = height;
3025 }
3026
3027 if (use_glsl_version) {
3028 _mesa_meta_setup_vertex_objects(ctx, &decompress->VAO,
3029 &decompress->buf_obj, true,
3030 2, 4, 0);
3031
3032 _mesa_meta_setup_blit_shader(ctx, target, false, &decompress->shaders);
3033 } else {
3034 _mesa_meta_setup_ff_tnl_for_blit(ctx, &decompress->VAO,
3035 &decompress->buf_obj, 3);
3036 }
3037
3038 if (decompress->samp_obj == NULL) {
3039 decompress->samp_obj = ctx->Driver.NewSamplerObject(ctx, 0xDEADBEEF);
3040 if (decompress->samp_obj == NULL) {
3041 _mesa_meta_end(ctx);
3042
3043 /* This is a bit lazy. Flag out of memory, and then don't bother to
3044 * clean up. Once out of memory is flagged, the only realistic next
3045 * move is to destroy the context. That will trigger all the right
3046 * clean up.
3047 *
3048 * Returning true prevents other GetTexImage methods from attempting
3049 * anything since they will likely fail too.
3050 */
3051 _mesa_error(ctx, GL_OUT_OF_MEMORY, "glGetTexImage");
3052 return true;
3053 }
3054
3055 /* nearest filtering */
3056 _mesa_set_sampler_filters(ctx, decompress->samp_obj, GL_NEAREST, GL_NEAREST);
3057
3058 /* We don't want to encode or decode sRGB values; treat them as linear. */
3059 _mesa_set_sampler_srgb_decode(ctx, decompress->samp_obj, GL_SKIP_DECODE_EXT);
3060 }
3061
3062 _mesa_bind_sampler(ctx, ctx->Texture.CurrentUnit, decompress->samp_obj);
3063
3064 /* Silence valgrind warnings about reading uninitialized stack. */
3065 memset(verts, 0, sizeof(verts));
3066
3067 _mesa_meta_setup_texture_coords(faceTarget, slice,
3068 xoffset, yoffset, width, height,
3069 texImage->Width, texImage->Height,
3070 texImage->Depth,
3071 verts[0].tex,
3072 verts[1].tex,
3073 verts[2].tex,
3074 verts[3].tex);
3075
3076 /* setup vertex positions */
3077 verts[0].x = -1.0F;
3078 verts[0].y = -1.0F;
3079 verts[1].x = 1.0F;
3080 verts[1].y = -1.0F;
3081 verts[2].x = 1.0F;
3082 verts[2].y = 1.0F;
3083 verts[3].x = -1.0F;
3084 verts[3].y = 1.0F;
3085
3086 _mesa_set_viewport(ctx, 0, 0, 0, width, height);
3087
3088 /* upload new vertex data */
3089 _mesa_buffer_sub_data(ctx, decompress->buf_obj, 0, sizeof(verts), verts,
3090 __func__);
3091
3092 /* setup texture state */
3093 _mesa_BindTexture(target, texObj->Name);
3094
3095 if (!use_glsl_version)
3096 _mesa_set_enable(ctx, target, GL_TRUE);
3097
3098 {
3099 /* save texture object state */
3100 const GLint baseLevelSave = texObj->BaseLevel;
3101 const GLint maxLevelSave = texObj->MaxLevel;
3102
3103 /* restrict sampling to the texture level of interest */
3104 if (target != GL_TEXTURE_RECTANGLE_ARB) {
3105 _mesa_texture_parameteriv(ctx, texObj, GL_TEXTURE_BASE_LEVEL,
3106 (GLint *) &texImage->Level, false);
3107 _mesa_texture_parameteriv(ctx, texObj, GL_TEXTURE_MAX_LEVEL,
3108 (GLint *) &texImage->Level, false);
3109 }
3110
3111 /* render quad w/ texture into renderbuffer */
3112 _mesa_DrawArrays(GL_TRIANGLE_FAN, 0, 4);
3113
3114 /* Restore texture object state, the texture binding will
3115 * be restored by _mesa_meta_end().
3116 */
3117 if (target != GL_TEXTURE_RECTANGLE_ARB) {
3118 _mesa_texture_parameteriv(ctx, texObj, GL_TEXTURE_BASE_LEVEL,
3119 &baseLevelSave, false);
3120 _mesa_texture_parameteriv(ctx, texObj, GL_TEXTURE_MAX_LEVEL,
3121 &maxLevelSave, false);
3122 }
3123
3124 }
3125
3126 /* read pixels from renderbuffer */
3127 {
3128 GLenum baseTexFormat = texImage->_BaseFormat;
3129 GLenum destBaseFormat = _mesa_unpack_format_to_base_format(destFormat);
3130
3131 /* The pixel transfer state will be set to default values at this point
3132 * (see MESA_META_PIXEL_TRANSFER) so pixel transfer ops are effectively
3133 * turned off (as required by glGetTexImage) but we need to handle some
3134 * special cases. In particular, single-channel texture values are
3135 * returned as red and two-channel texture values are returned as
3136 * red/alpha.
3137 */
3138 if (_mesa_need_luminance_to_rgb_conversion(baseTexFormat,
3139 destBaseFormat) ||
3140 /* If we're reading back an RGB(A) texture (using glGetTexImage) as
3141 * luminance then we need to return L=tex(R).
3142 */
3143 _mesa_need_rgb_to_luminance_conversion(baseTexFormat,
3144 destBaseFormat)) {
3145 /* Green and blue must be zero */
3146 _mesa_PixelTransferf(GL_GREEN_SCALE, 0.0f);
3147 _mesa_PixelTransferf(GL_BLUE_SCALE, 0.0f);
3148 }
3149
3150 _mesa_ReadPixels(0, 0, width, height, destFormat, destType, dest);
3151 }
3152
3153 /* disable texture unit */
3154 if (!use_glsl_version)
3155 _mesa_set_enable(ctx, target, GL_FALSE);
3156
3157 _mesa_bind_sampler(ctx, ctx->Texture.CurrentUnit, samp_obj_save);
3158 _mesa_reference_sampler_object(ctx, &samp_obj_save, NULL);
3159
3160 _mesa_meta_end(ctx);
3161
3162 return true;
3163 }
3164
3165
3166 /**
3167 * This is just a wrapper around _mesa_get_tex_image() and
3168 * decompress_texture_image(). Meta functions should not be directly called
3169 * from core Mesa.
3170 */
3171 void
3172 _mesa_meta_GetTexSubImage(struct gl_context *ctx,
3173 GLint xoffset, GLint yoffset, GLint zoffset,
3174 GLsizei width, GLsizei height, GLsizei depth,
3175 GLenum format, GLenum type, GLvoid *pixels,
3176 struct gl_texture_image *texImage)
3177 {
3178 if (_mesa_is_format_compressed(texImage->TexFormat)) {
3179 GLuint slice;
3180 bool result = true;
3181
3182 for (slice = 0; slice < depth; slice++) {
3183 void *dst;
3184 if (texImage->TexObject->Target == GL_TEXTURE_2D_ARRAY
3185 || texImage->TexObject->Target == GL_TEXTURE_CUBE_MAP_ARRAY) {
3186 /* Setup pixel packing. SkipPixels and SkipRows will be applied
3187 * in the decompress_texture_image() function's call to
3188 * glReadPixels but we need to compute the dest slice's address
3189 * here (according to SkipImages and ImageHeight).
3190 */
3191 struct gl_pixelstore_attrib packing = ctx->Pack;
3192 packing.SkipPixels = 0;
3193 packing.SkipRows = 0;
3194 dst = _mesa_image_address3d(&packing, pixels, width, height,
3195 format, type, slice, 0, 0);
3196 }
3197 else {
3198 dst = pixels;
3199 }
3200 result = decompress_texture_image(ctx, texImage, slice,
3201 xoffset, yoffset, width, height,
3202 format, type, dst);
3203 if (!result)
3204 break;
3205 }
3206
3207 if (result)
3208 return;
3209 }
3210
3211 _mesa_GetTexSubImage_sw(ctx, xoffset, yoffset, zoffset,
3212 width, height, depth, format, type, pixels, texImage);
3213 }
3214
3215
3216 /**
3217 * Meta implementation of ctx->Driver.DrawTex() in terms
3218 * of polygon rendering.
3219 */
3220 void
3221 _mesa_meta_DrawTex(struct gl_context *ctx, GLfloat x, GLfloat y, GLfloat z,
3222 GLfloat width, GLfloat height)
3223 {
3224 struct drawtex_state *drawtex = &ctx->Meta->DrawTex;
3225 struct vertex {
3226 GLfloat x, y, z, st[MAX_TEXTURE_UNITS][2];
3227 };
3228 struct vertex verts[4];
3229 GLuint i;
3230
3231 _mesa_meta_begin(ctx, (MESA_META_RASTERIZATION |
3232 MESA_META_SHADER |
3233 MESA_META_TRANSFORM |
3234 MESA_META_VERTEX |
3235 MESA_META_VIEWPORT));
3236
3237 if (drawtex->VAO == 0) {
3238 /* one-time setup */
3239 struct gl_vertex_array_object *array_obj;
3240
3241 /* create vertex array object */
3242 _mesa_GenVertexArrays(1, &drawtex->VAO);
3243 _mesa_BindVertexArray(drawtex->VAO);
3244
3245 array_obj = _mesa_lookup_vao(ctx, drawtex->VAO);
3246 assert(array_obj != NULL);
3247
3248 /* create vertex array buffer */
3249 drawtex->buf_obj = ctx->Driver.NewBufferObject(ctx, 0xDEADBEEF);
3250 if (drawtex->buf_obj == NULL)
3251 return;
3252
3253 _mesa_buffer_data(ctx, drawtex->buf_obj, GL_NONE, sizeof(verts), verts,
3254 GL_DYNAMIC_DRAW, __func__);
3255
3256 /* setup vertex arrays */
3257 _mesa_update_array_format(ctx, array_obj, VERT_ATTRIB_POS,
3258 3, GL_FLOAT, GL_RGBA, GL_FALSE,
3259 GL_FALSE, GL_FALSE,
3260 offsetof(struct vertex, x), true);
3261 _mesa_bind_vertex_buffer(ctx, array_obj, VERT_ATTRIB_POS,
3262 drawtex->buf_obj, 0, sizeof(struct vertex));
3263 _mesa_enable_vertex_array_attrib(ctx, array_obj, VERT_ATTRIB_POS);
3264
3265
3266 for (i = 0; i < ctx->Const.MaxTextureUnits; i++) {
3267 _mesa_update_array_format(ctx, array_obj, VERT_ATTRIB_TEX(i),
3268 2, GL_FLOAT, GL_RGBA, GL_FALSE,
3269 GL_FALSE, GL_FALSE,
3270 offsetof(struct vertex, st[i]), true);
3271 _mesa_bind_vertex_buffer(ctx, array_obj, VERT_ATTRIB_TEX(i),
3272 drawtex->buf_obj, 0, sizeof(struct vertex));
3273 _mesa_enable_vertex_array_attrib(ctx, array_obj, VERT_ATTRIB_TEX(i));
3274 }
3275 }
3276 else {
3277 _mesa_BindVertexArray(drawtex->VAO);
3278 }
3279
3280 /* vertex positions, texcoords */
3281 {
3282 const GLfloat x1 = x + width;
3283 const GLfloat y1 = y + height;
3284
3285 z = CLAMP(z, 0.0f, 1.0f);
3286 z = invert_z(z);
3287
3288 verts[0].x = x;
3289 verts[0].y = y;
3290 verts[0].z = z;
3291
3292 verts[1].x = x1;
3293 verts[1].y = y;
3294 verts[1].z = z;
3295
3296 verts[2].x = x1;
3297 verts[2].y = y1;
3298 verts[2].z = z;
3299
3300 verts[3].x = x;
3301 verts[3].y = y1;
3302 verts[3].z = z;
3303
3304 for (i = 0; i < ctx->Const.MaxTextureUnits; i++) {
3305 const struct gl_texture_object *texObj;
3306 const struct gl_texture_image *texImage;
3307 GLfloat s, t, s1, t1;
3308 GLuint tw, th;
3309
3310 if (!ctx->Texture.Unit[i]._Current) {
3311 GLuint j;
3312 for (j = 0; j < 4; j++) {
3313 verts[j].st[i][0] = 0.0f;
3314 verts[j].st[i][1] = 0.0f;
3315 }
3316 continue;
3317 }
3318
3319 texObj = ctx->Texture.Unit[i]._Current;
3320 texImage = texObj->Image[0][texObj->BaseLevel];
3321 tw = texImage->Width2;
3322 th = texImage->Height2;
3323
3324 s = (GLfloat) texObj->CropRect[0] / tw;
3325 t = (GLfloat) texObj->CropRect[1] / th;
3326 s1 = (GLfloat) (texObj->CropRect[0] + texObj->CropRect[2]) / tw;
3327 t1 = (GLfloat) (texObj->CropRect[1] + texObj->CropRect[3]) / th;
3328
3329 verts[0].st[i][0] = s;
3330 verts[0].st[i][1] = t;
3331
3332 verts[1].st[i][0] = s1;
3333 verts[1].st[i][1] = t;
3334
3335 verts[2].st[i][0] = s1;
3336 verts[2].st[i][1] = t1;
3337
3338 verts[3].st[i][0] = s;
3339 verts[3].st[i][1] = t1;
3340 }
3341
3342 _mesa_buffer_sub_data(ctx, drawtex->buf_obj, 0, sizeof(verts), verts,
3343 __func__);
3344 }
3345
3346 _mesa_DrawArrays(GL_TRIANGLE_FAN, 0, 4);
3347
3348 _mesa_meta_end(ctx);
3349 }
3350
3351 static bool
3352 cleartexsubimage_color(struct gl_context *ctx,
3353 struct gl_texture_image *texImage,
3354 const GLvoid *clearValue,
3355 GLint zoffset)
3356 {
3357 mesa_format format;
3358 union gl_color_union colorValue;
3359 GLenum datatype;
3360 GLenum status;
3361
3362 _mesa_meta_framebuffer_texture_image(ctx, ctx->DrawBuffer,
3363 GL_COLOR_ATTACHMENT0,
3364 texImage, zoffset);
3365
3366 status = _mesa_check_framebuffer_status(ctx, ctx->DrawBuffer);
3367 if (status != GL_FRAMEBUFFER_COMPLETE)
3368 return false;
3369
3370 /* We don't want to apply an sRGB conversion so override the format */
3371 format = _mesa_get_srgb_format_linear(texImage->TexFormat);
3372 datatype = _mesa_get_format_datatype(format);
3373
3374 switch (datatype) {
3375 case GL_UNSIGNED_INT:
3376 case GL_INT:
3377 if (clearValue)
3378 _mesa_unpack_uint_rgba_row(format, 1, clearValue,
3379 (GLuint (*)[4]) colorValue.ui);
3380 else
3381 memset(&colorValue, 0, sizeof colorValue);
3382 if (datatype == GL_INT)
3383 _mesa_ClearBufferiv(GL_COLOR, 0, colorValue.i);
3384 else
3385 _mesa_ClearBufferuiv(GL_COLOR, 0, colorValue.ui);
3386 break;
3387 default:
3388 if (clearValue)
3389 _mesa_unpack_rgba_row(format, 1, clearValue,
3390 (GLfloat (*)[4]) colorValue.f);
3391 else
3392 memset(&colorValue, 0, sizeof colorValue);
3393 _mesa_ClearBufferfv(GL_COLOR, 0, colorValue.f);
3394 break;
3395 }
3396
3397 return true;
3398 }
3399
3400 static bool
3401 cleartexsubimage_depth_stencil(struct gl_context *ctx,
3402 struct gl_texture_image *texImage,
3403 const GLvoid *clearValue,
3404 GLint zoffset)
3405 {
3406 GLint stencilValue;
3407 GLfloat depthValue;
3408 GLenum status;
3409
3410 _mesa_meta_framebuffer_texture_image(ctx, ctx->DrawBuffer,
3411 GL_DEPTH_ATTACHMENT,
3412 texImage, zoffset);
3413
3414 if (texImage->_BaseFormat == GL_DEPTH_STENCIL)
3415 _mesa_meta_framebuffer_texture_image(ctx, ctx->DrawBuffer,
3416 GL_STENCIL_ATTACHMENT,
3417 texImage, zoffset);
3418
3419 status = _mesa_check_framebuffer_status(ctx, ctx->DrawBuffer);
3420 if (status != GL_FRAMEBUFFER_COMPLETE)
3421 return false;
3422
3423 if (clearValue) {
3424 GLuint depthStencilValue[2];
3425
3426 /* Convert the clearValue from whatever format it's in to a floating
3427 * point value for the depth and an integer value for the stencil index
3428 */
3429 _mesa_unpack_float_32_uint_24_8_depth_stencil_row(texImage->TexFormat,
3430 1, /* n */
3431 clearValue,
3432 depthStencilValue);
3433 /* We need a memcpy here instead of a cast because we need to
3434 * reinterpret the bytes as a float rather than converting it
3435 */
3436 memcpy(&depthValue, depthStencilValue, sizeof depthValue);
3437 stencilValue = depthStencilValue[1] & 0xff;
3438 } else {
3439 depthValue = 0.0f;
3440 stencilValue = 0;
3441 }
3442
3443 if (texImage->_BaseFormat == GL_DEPTH_STENCIL)
3444 _mesa_ClearBufferfi(GL_DEPTH_STENCIL, 0, depthValue, stencilValue);
3445 else
3446 _mesa_ClearBufferfv(GL_DEPTH, 0, &depthValue);
3447
3448 return true;
3449 }
3450
3451 static bool
3452 cleartexsubimage_for_zoffset(struct gl_context *ctx,
3453 struct gl_texture_image *texImage,
3454 GLint zoffset,
3455 const GLvoid *clearValue)
3456 {
3457 struct gl_framebuffer *drawFb;
3458 bool success;
3459
3460 drawFb = ctx->Driver.NewFramebuffer(ctx, 0xDEADBEEF);
3461 if (drawFb == NULL)
3462 return false;
3463
3464 _mesa_bind_framebuffers(ctx, drawFb, ctx->ReadBuffer);
3465
3466 switch(texImage->_BaseFormat) {
3467 case GL_DEPTH_STENCIL:
3468 case GL_DEPTH_COMPONENT:
3469 success = cleartexsubimage_depth_stencil(ctx, texImage,
3470 clearValue, zoffset);
3471 break;
3472 default:
3473 success = cleartexsubimage_color(ctx, texImage, clearValue, zoffset);
3474 break;
3475 }
3476
3477 _mesa_reference_framebuffer(&drawFb, NULL);
3478
3479 return success;
3480 }
3481
3482 static bool
3483 cleartexsubimage_using_fbo(struct gl_context *ctx,
3484 struct gl_texture_image *texImage,
3485 GLint xoffset, GLint yoffset, GLint zoffset,
3486 GLsizei width, GLsizei height, GLsizei depth,
3487 const GLvoid *clearValue)
3488 {
3489 bool success = true;
3490 GLint z;
3491
3492 _mesa_meta_begin(ctx,
3493 MESA_META_SCISSOR |
3494 MESA_META_COLOR_MASK |
3495 MESA_META_DITHER |
3496 MESA_META_FRAMEBUFFER_SRGB);
3497
3498 _mesa_ColorMask(GL_TRUE, GL_TRUE, GL_TRUE, GL_TRUE);
3499 _mesa_set_enable(ctx, GL_DITHER, GL_FALSE);
3500
3501 _mesa_set_enable(ctx, GL_SCISSOR_TEST, GL_TRUE);
3502 _mesa_Scissor(xoffset, yoffset, width, height);
3503
3504 for (z = zoffset; z < zoffset + depth; z++) {
3505 if (!cleartexsubimage_for_zoffset(ctx, texImage, z, clearValue)) {
3506 success = false;
3507 break;
3508 }
3509 }
3510
3511 _mesa_meta_end(ctx);
3512
3513 return success;
3514 }
3515
3516 extern void
3517 _mesa_meta_ClearTexSubImage(struct gl_context *ctx,
3518 struct gl_texture_image *texImage,
3519 GLint xoffset, GLint yoffset, GLint zoffset,
3520 GLsizei width, GLsizei height, GLsizei depth,
3521 const GLvoid *clearValue)
3522 {
3523 bool res;
3524
3525 res = cleartexsubimage_using_fbo(ctx, texImage,
3526 xoffset, yoffset, zoffset,
3527 width, height, depth,
3528 clearValue);
3529
3530 if (res)
3531 return;
3532
3533 _mesa_warning(ctx,
3534 "Falling back to mapping the texture in "
3535 "glClearTexSubImage\n");
3536
3537 _mesa_store_cleartexsubimage(ctx, texImage,
3538 xoffset, yoffset, zoffset,
3539 width, height, depth,
3540 clearValue);
3541 }