st/mesa: properly implement MapTextureImage with multiple mapped slices (v2)
[mesa.git] / src / mesa / state_tracker / st_cb_texture.c
1 /**************************************************************************
2 *
3 * Copyright 2007 VMware, Inc.
4 * All Rights Reserved.
5 *
6 * Permission is hereby granted, free of charge, to any person obtaining a
7 * copy of this software and associated documentation files (the
8 * "Software"), to deal in the Software without restriction, including
9 * without limitation the rights to use, copy, modify, merge, publish,
10 * distribute, sub license, and/or sell copies of the Software, and to
11 * permit persons to whom the Software is furnished to do so, subject to
12 * the following conditions:
13 *
14 * The above copyright notice and this permission notice (including the
15 * next paragraph) shall be included in all copies or substantial portions
16 * of the Software.
17 *
18 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
19 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
20 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.
21 * IN NO EVENT SHALL VMWARE AND/OR ITS SUPPLIERS BE LIABLE FOR
22 * ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
23 * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
24 * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
25 *
26 **************************************************************************/
27
28 #include "main/bufferobj.h"
29 #include "main/enums.h"
30 #include "main/fbobject.h"
31 #include "main/formats.h"
32 #include "main/image.h"
33 #include "main/imports.h"
34 #include "main/macros.h"
35 #include "main/mipmap.h"
36 #include "main/pack.h"
37 #include "main/pbo.h"
38 #include "main/pixeltransfer.h"
39 #include "main/texcompress.h"
40 #include "main/texgetimage.h"
41 #include "main/teximage.h"
42 #include "main/texobj.h"
43 #include "main/texstore.h"
44
45 #include "state_tracker/st_debug.h"
46 #include "state_tracker/st_context.h"
47 #include "state_tracker/st_cb_fbo.h"
48 #include "state_tracker/st_cb_flush.h"
49 #include "state_tracker/st_cb_texture.h"
50 #include "state_tracker/st_cb_bufferobjects.h"
51 #include "state_tracker/st_format.h"
52 #include "state_tracker/st_texture.h"
53 #include "state_tracker/st_gen_mipmap.h"
54 #include "state_tracker/st_atom.h"
55
56 #include "pipe/p_context.h"
57 #include "pipe/p_defines.h"
58 #include "util/u_inlines.h"
59 #include "pipe/p_shader_tokens.h"
60 #include "util/u_tile.h"
61 #include "util/u_format.h"
62 #include "util/u_surface.h"
63 #include "util/u_sampler.h"
64 #include "util/u_math.h"
65 #include "util/u_box.h"
66
67 #define DBG if (0) printf
68
69
70 enum pipe_texture_target
71 gl_target_to_pipe(GLenum target)
72 {
73 switch (target) {
74 case GL_TEXTURE_1D:
75 case GL_PROXY_TEXTURE_1D:
76 return PIPE_TEXTURE_1D;
77 case GL_TEXTURE_2D:
78 case GL_PROXY_TEXTURE_2D:
79 case GL_TEXTURE_EXTERNAL_OES:
80 case GL_TEXTURE_2D_MULTISAMPLE:
81 case GL_PROXY_TEXTURE_2D_MULTISAMPLE:
82 return PIPE_TEXTURE_2D;
83 case GL_TEXTURE_RECTANGLE_NV:
84 case GL_PROXY_TEXTURE_RECTANGLE_NV:
85 return PIPE_TEXTURE_RECT;
86 case GL_TEXTURE_3D:
87 case GL_PROXY_TEXTURE_3D:
88 return PIPE_TEXTURE_3D;
89 case GL_TEXTURE_CUBE_MAP_ARB:
90 case GL_PROXY_TEXTURE_CUBE_MAP_ARB:
91 case GL_TEXTURE_CUBE_MAP_POSITIVE_X:
92 case GL_TEXTURE_CUBE_MAP_NEGATIVE_X:
93 case GL_TEXTURE_CUBE_MAP_POSITIVE_Y:
94 case GL_TEXTURE_CUBE_MAP_NEGATIVE_Y:
95 case GL_TEXTURE_CUBE_MAP_POSITIVE_Z:
96 case GL_TEXTURE_CUBE_MAP_NEGATIVE_Z:
97 return PIPE_TEXTURE_CUBE;
98 case GL_TEXTURE_1D_ARRAY_EXT:
99 case GL_PROXY_TEXTURE_1D_ARRAY_EXT:
100 return PIPE_TEXTURE_1D_ARRAY;
101 case GL_TEXTURE_2D_ARRAY_EXT:
102 case GL_PROXY_TEXTURE_2D_ARRAY_EXT:
103 case GL_TEXTURE_2D_MULTISAMPLE_ARRAY:
104 case GL_PROXY_TEXTURE_2D_MULTISAMPLE_ARRAY:
105 return PIPE_TEXTURE_2D_ARRAY;
106 case GL_TEXTURE_BUFFER:
107 return PIPE_BUFFER;
108 case GL_TEXTURE_CUBE_MAP_ARRAY:
109 case GL_PROXY_TEXTURE_CUBE_MAP_ARRAY:
110 return PIPE_TEXTURE_CUBE_ARRAY;
111 default:
112 assert(0);
113 return 0;
114 }
115 }
116
117
118 /** called via ctx->Driver.NewTextureImage() */
119 static struct gl_texture_image *
120 st_NewTextureImage(struct gl_context * ctx)
121 {
122 DBG("%s\n", __FUNCTION__);
123 (void) ctx;
124 return (struct gl_texture_image *) ST_CALLOC_STRUCT(st_texture_image);
125 }
126
127
128 /** called via ctx->Driver.DeleteTextureImage() */
129 static void
130 st_DeleteTextureImage(struct gl_context * ctx, struct gl_texture_image *img)
131 {
132 /* nothing special (yet) for st_texture_image */
133 _mesa_delete_texture_image(ctx, img);
134 }
135
136
137 /** called via ctx->Driver.NewTextureObject() */
138 static struct gl_texture_object *
139 st_NewTextureObject(struct gl_context * ctx, GLuint name, GLenum target)
140 {
141 struct st_texture_object *obj = ST_CALLOC_STRUCT(st_texture_object);
142
143 DBG("%s\n", __FUNCTION__);
144 _mesa_initialize_texture_object(ctx, &obj->base, name, target);
145
146 return &obj->base;
147 }
148
149 /** called via ctx->Driver.DeleteTextureObject() */
150 static void
151 st_DeleteTextureObject(struct gl_context *ctx,
152 struct gl_texture_object *texObj)
153 {
154 struct st_texture_object *stObj = st_texture_object(texObj);
155
156 pipe_resource_reference(&stObj->pt, NULL);
157 st_texture_release_all_sampler_views(stObj);
158 st_texture_free_sampler_views(stObj);
159 _mesa_delete_texture_object(ctx, texObj);
160 }
161
162
163 /** called via ctx->Driver.FreeTextureImageBuffer() */
164 static void
165 st_FreeTextureImageBuffer(struct gl_context *ctx,
166 struct gl_texture_image *texImage)
167 {
168 struct st_texture_image *stImage = st_texture_image(texImage);
169
170 DBG("%s\n", __FUNCTION__);
171
172 if (stImage->pt) {
173 pipe_resource_reference(&stImage->pt, NULL);
174 }
175
176 _mesa_align_free(stImage->TexData);
177 stImage->TexData = NULL;
178
179 free(stImage->transfer);
180 stImage->transfer = NULL;
181 stImage->num_transfers = 0;
182 }
183
184
185 /** called via ctx->Driver.MapTextureImage() */
186 static void
187 st_MapTextureImage(struct gl_context *ctx,
188 struct gl_texture_image *texImage,
189 GLuint slice, GLuint x, GLuint y, GLuint w, GLuint h,
190 GLbitfield mode,
191 GLubyte **mapOut, GLint *rowStrideOut)
192 {
193 struct st_context *st = st_context(ctx);
194 struct st_texture_image *stImage = st_texture_image(texImage);
195 unsigned pipeMode;
196 GLubyte *map;
197 struct pipe_transfer *transfer;
198
199 pipeMode = 0x0;
200 if (mode & GL_MAP_READ_BIT)
201 pipeMode |= PIPE_TRANSFER_READ;
202 if (mode & GL_MAP_WRITE_BIT)
203 pipeMode |= PIPE_TRANSFER_WRITE;
204 if (mode & GL_MAP_INVALIDATE_RANGE_BIT)
205 pipeMode |= PIPE_TRANSFER_DISCARD_RANGE;
206
207 map = st_texture_image_map(st, stImage, pipeMode, x, y, slice, w, h, 1,
208 &transfer);
209 if (map) {
210 *mapOut = map;
211 *rowStrideOut = transfer->stride;
212 }
213 else {
214 *mapOut = NULL;
215 *rowStrideOut = 0;
216 }
217 }
218
219
220 /** called via ctx->Driver.UnmapTextureImage() */
221 static void
222 st_UnmapTextureImage(struct gl_context *ctx,
223 struct gl_texture_image *texImage,
224 GLuint slice)
225 {
226 struct st_context *st = st_context(ctx);
227 struct st_texture_image *stImage = st_texture_image(texImage);
228 st_texture_image_unmap(st, stImage, slice);
229 }
230
231
232 /**
233 * Return default texture resource binding bitmask for the given format.
234 */
235 static GLuint
236 default_bindings(struct st_context *st, enum pipe_format format)
237 {
238 struct pipe_screen *screen = st->pipe->screen;
239 const unsigned target = PIPE_TEXTURE_2D;
240 unsigned bindings;
241
242 if (util_format_is_depth_or_stencil(format))
243 bindings = PIPE_BIND_SAMPLER_VIEW | PIPE_BIND_DEPTH_STENCIL;
244 else
245 bindings = PIPE_BIND_SAMPLER_VIEW | PIPE_BIND_RENDER_TARGET;
246
247 if (screen->is_format_supported(screen, format, target, 0, bindings))
248 return bindings;
249 else {
250 /* Try non-sRGB. */
251 format = util_format_linear(format);
252
253 if (screen->is_format_supported(screen, format, target, 0, bindings))
254 return bindings;
255 else
256 return PIPE_BIND_SAMPLER_VIEW;
257 }
258 }
259
260
261 /**
262 * Given the size of a mipmap image, try to compute the size of the level=0
263 * mipmap image.
264 *
265 * Note that this isn't always accurate for odd-sized, non-POW textures.
266 * For example, if level=1 and width=40 then the level=0 width may be 80 or 81.
267 *
268 * \return GL_TRUE for success, GL_FALSE for failure
269 */
270 static GLboolean
271 guess_base_level_size(GLenum target,
272 GLuint width, GLuint height, GLuint depth, GLuint level,
273 GLuint *width0, GLuint *height0, GLuint *depth0)
274 {
275 assert(width >= 1);
276 assert(height >= 1);
277 assert(depth >= 1);
278
279 if (level > 0) {
280 /* Guess the size of the base level.
281 * Depending on the image's size, we can't always make a guess here.
282 */
283 switch (target) {
284 case GL_TEXTURE_1D:
285 case GL_TEXTURE_1D_ARRAY:
286 width <<= level;
287 break;
288
289 case GL_TEXTURE_2D:
290 case GL_TEXTURE_2D_ARRAY:
291 /* We can't make a good guess here, because the base level dimensions
292 * can be non-square.
293 */
294 if (width == 1 || height == 1) {
295 return GL_FALSE;
296 }
297 width <<= level;
298 height <<= level;
299 break;
300
301 case GL_TEXTURE_CUBE_MAP:
302 case GL_TEXTURE_CUBE_MAP_ARRAY:
303 width <<= level;
304 height <<= level;
305 break;
306
307 case GL_TEXTURE_3D:
308 /* We can't make a good guess here, because the base level dimensions
309 * can be non-cube.
310 */
311 if (width == 1 || height == 1 || depth == 1) {
312 return GL_FALSE;
313 }
314 width <<= level;
315 height <<= level;
316 depth <<= level;
317 break;
318
319 case GL_TEXTURE_RECTANGLE:
320 break;
321
322 default:
323 assert(0);
324 }
325 }
326
327 *width0 = width;
328 *height0 = height;
329 *depth0 = depth;
330
331 return GL_TRUE;
332 }
333
334
335 /**
336 * Try to allocate a pipe_resource object for the given st_texture_object.
337 *
338 * We use the given st_texture_image as a clue to determine the size of the
339 * mipmap image at level=0.
340 *
341 * \return GL_TRUE for success, GL_FALSE if out of memory.
342 */
343 static GLboolean
344 guess_and_alloc_texture(struct st_context *st,
345 struct st_texture_object *stObj,
346 const struct st_texture_image *stImage)
347 {
348 GLuint lastLevel, width, height, depth;
349 GLuint bindings;
350 GLuint ptWidth, ptHeight, ptDepth, ptLayers;
351 enum pipe_format fmt;
352
353 DBG("%s\n", __FUNCTION__);
354
355 assert(!stObj->pt);
356
357 if (!guess_base_level_size(stObj->base.Target,
358 stImage->base.Width2,
359 stImage->base.Height2,
360 stImage->base.Depth2,
361 stImage->base.Level,
362 &width, &height, &depth)) {
363 /* we can't determine the image size at level=0 */
364 stObj->width0 = stObj->height0 = stObj->depth0 = 0;
365 /* this is not an out of memory error */
366 return GL_TRUE;
367 }
368
369 /* At this point, (width x height x depth) is the expected size of
370 * the level=0 mipmap image.
371 */
372
373 /* Guess a reasonable value for lastLevel. With OpenGL we have no
374 * idea how many mipmap levels will be in a texture until we start
375 * to render with it. Make an educated guess here but be prepared
376 * to re-allocating a texture buffer with space for more (or fewer)
377 * mipmap levels later.
378 */
379 if ((stObj->base.Sampler.MinFilter == GL_NEAREST ||
380 stObj->base.Sampler.MinFilter == GL_LINEAR ||
381 (stObj->base.BaseLevel == 0 &&
382 stObj->base.MaxLevel == 0) ||
383 stImage->base._BaseFormat == GL_DEPTH_COMPONENT ||
384 stImage->base._BaseFormat == GL_DEPTH_STENCIL_EXT) &&
385 !stObj->base.GenerateMipmap &&
386 stImage->base.Level == 0) {
387 /* only alloc space for a single mipmap level */
388 lastLevel = 0;
389 }
390 else {
391 /* alloc space for a full mipmap */
392 lastLevel = _mesa_get_tex_max_num_levels(stObj->base.Target,
393 width, height, depth) - 1;
394 }
395
396 /* Save the level=0 dimensions */
397 stObj->width0 = width;
398 stObj->height0 = height;
399 stObj->depth0 = depth;
400
401 fmt = st_mesa_format_to_pipe_format(stImage->base.TexFormat);
402
403 bindings = default_bindings(st, fmt);
404
405 st_gl_texture_dims_to_pipe_dims(stObj->base.Target,
406 width, height, depth,
407 &ptWidth, &ptHeight, &ptDepth, &ptLayers);
408
409 stObj->pt = st_texture_create(st,
410 gl_target_to_pipe(stObj->base.Target),
411 fmt,
412 lastLevel,
413 ptWidth,
414 ptHeight,
415 ptDepth,
416 ptLayers, 0,
417 bindings);
418
419 stObj->lastLevel = lastLevel;
420
421 DBG("%s returning %d\n", __FUNCTION__, (stObj->pt != NULL));
422
423 return stObj->pt != NULL;
424 }
425
426
427 /**
428 * Called via ctx->Driver.AllocTextureImageBuffer().
429 * If the texture object/buffer already has space for the indicated image,
430 * we're done. Otherwise, allocate memory for the new texture image.
431 */
432 static GLboolean
433 st_AllocTextureImageBuffer(struct gl_context *ctx,
434 struct gl_texture_image *texImage)
435 {
436 struct st_context *st = st_context(ctx);
437 struct st_texture_image *stImage = st_texture_image(texImage);
438 struct st_texture_object *stObj = st_texture_object(texImage->TexObject);
439 const GLuint level = texImage->Level;
440 GLuint width = texImage->Width;
441 GLuint height = texImage->Height;
442 GLuint depth = texImage->Depth;
443
444 DBG("%s\n", __FUNCTION__);
445
446 assert(!stImage->TexData);
447 assert(!stImage->pt); /* xxx this might be wrong */
448
449 /* Look if the parent texture object has space for this image */
450 if (stObj->pt &&
451 level <= stObj->pt->last_level &&
452 st_texture_match_image(stObj->pt, texImage)) {
453 /* this image will fit in the existing texture object's memory */
454 pipe_resource_reference(&stImage->pt, stObj->pt);
455 return GL_TRUE;
456 }
457
458 /* The parent texture object does not have space for this image */
459
460 pipe_resource_reference(&stObj->pt, NULL);
461 st_texture_release_all_sampler_views(stObj);
462
463 if (!guess_and_alloc_texture(st, stObj, stImage)) {
464 /* Probably out of memory.
465 * Try flushing any pending rendering, then retry.
466 */
467 st_finish(st);
468 if (!guess_and_alloc_texture(st, stObj, stImage)) {
469 _mesa_error(ctx, GL_OUT_OF_MEMORY, "glTexImage");
470 return GL_FALSE;
471 }
472 }
473
474 if (stObj->pt &&
475 st_texture_match_image(stObj->pt, texImage)) {
476 /* The image will live in the object's mipmap memory */
477 pipe_resource_reference(&stImage->pt, stObj->pt);
478 assert(stImage->pt);
479 return GL_TRUE;
480 }
481 else {
482 /* Create a new, temporary texture/resource/buffer to hold this
483 * one texture image. Note that when we later access this image
484 * (either for mapping or copying) we'll want to always specify
485 * mipmap level=0, even if the image represents some other mipmap
486 * level.
487 */
488 enum pipe_format format =
489 st_mesa_format_to_pipe_format(texImage->TexFormat);
490 GLuint bindings = default_bindings(st, format);
491 GLuint ptWidth, ptHeight, ptDepth, ptLayers;
492
493 st_gl_texture_dims_to_pipe_dims(stObj->base.Target,
494 width, height, depth,
495 &ptWidth, &ptHeight, &ptDepth, &ptLayers);
496
497 stImage->pt = st_texture_create(st,
498 gl_target_to_pipe(stObj->base.Target),
499 format,
500 0, /* lastLevel */
501 ptWidth,
502 ptHeight,
503 ptDepth,
504 ptLayers, 0,
505 bindings);
506 return stImage->pt != NULL;
507 }
508 }
509
510
511 /**
512 * Preparation prior to glTexImage. Basically check the 'surface_based'
513 * field and switch to a "normal" tex image if necessary.
514 */
515 static void
516 prep_teximage(struct gl_context *ctx, struct gl_texture_image *texImage,
517 GLenum format, GLenum type)
518 {
519 struct gl_texture_object *texObj = texImage->TexObject;
520 struct st_texture_object *stObj = st_texture_object(texObj);
521
522 /* switch to "normal" */
523 if (stObj->surface_based) {
524 const GLenum target = texObj->Target;
525 const GLuint level = texImage->Level;
526 mesa_format texFormat;
527
528 _mesa_clear_texture_object(ctx, texObj);
529 pipe_resource_reference(&stObj->pt, NULL);
530
531 /* oops, need to init this image again */
532 texFormat = _mesa_choose_texture_format(ctx, texObj, target, level,
533 texImage->InternalFormat, format,
534 type);
535
536 _mesa_init_teximage_fields(ctx, texImage,
537 texImage->Width, texImage->Height,
538 texImage->Depth, texImage->Border,
539 texImage->InternalFormat, texFormat);
540
541 stObj->surface_based = GL_FALSE;
542 }
543 }
544
545
546 /**
547 * Return a writemask for the gallium blit. The parameters can be base
548 * formats or "format" from glDrawPixels/glTexImage/glGetTexImage.
549 */
550 unsigned
551 st_get_blit_mask(GLenum srcFormat, GLenum dstFormat)
552 {
553 switch (dstFormat) {
554 case GL_DEPTH_STENCIL:
555 switch (srcFormat) {
556 case GL_DEPTH_STENCIL:
557 return PIPE_MASK_ZS;
558 case GL_DEPTH_COMPONENT:
559 return PIPE_MASK_Z;
560 case GL_STENCIL_INDEX:
561 return PIPE_MASK_S;
562 default:
563 assert(0);
564 return 0;
565 }
566
567 case GL_DEPTH_COMPONENT:
568 switch (srcFormat) {
569 case GL_DEPTH_STENCIL:
570 case GL_DEPTH_COMPONENT:
571 return PIPE_MASK_Z;
572 default:
573 assert(0);
574 return 0;
575 }
576
577 case GL_STENCIL_INDEX:
578 switch (srcFormat) {
579 case GL_STENCIL_INDEX:
580 return PIPE_MASK_S;
581 default:
582 assert(0);
583 return 0;
584 }
585
586 default:
587 return PIPE_MASK_RGBA;
588 }
589 }
590
591
592 static void
593 st_TexSubImage(struct gl_context *ctx, GLuint dims,
594 struct gl_texture_image *texImage,
595 GLint xoffset, GLint yoffset, GLint zoffset,
596 GLint width, GLint height, GLint depth,
597 GLenum format, GLenum type, const void *pixels,
598 const struct gl_pixelstore_attrib *unpack)
599 {
600 struct st_context *st = st_context(ctx);
601 struct st_texture_image *stImage = st_texture_image(texImage);
602 struct st_texture_object *stObj = st_texture_object(texImage->TexObject);
603 struct pipe_context *pipe = st->pipe;
604 struct pipe_screen *screen = pipe->screen;
605 struct pipe_resource *dst = stImage->pt;
606 struct pipe_resource *src = NULL;
607 struct pipe_resource src_templ;
608 struct pipe_transfer *transfer;
609 struct pipe_blit_info blit;
610 enum pipe_format src_format, dst_format;
611 mesa_format mesa_src_format;
612 GLenum gl_target = texImage->TexObject->Target;
613 unsigned bind;
614 GLubyte *map;
615
616 if (!st->prefer_blit_based_texture_transfer) {
617 goto fallback;
618 }
619
620 if (!dst) {
621 goto fallback;
622 }
623
624 /* XXX Fallback for depth-stencil formats due to an incomplete stencil
625 * blit implementation in some drivers. */
626 if (format == GL_DEPTH_STENCIL) {
627 goto fallback;
628 }
629
630 /* If the base internal format and the texture format don't match,
631 * we can't use blit-based TexSubImage. */
632 if (texImage->_BaseFormat !=
633 _mesa_get_format_base_format(texImage->TexFormat)) {
634 goto fallback;
635 }
636
637 /* See if the texture format already matches the format and type,
638 * in which case the memcpy-based fast path will likely be used and
639 * we don't have to blit. */
640 if (_mesa_format_matches_format_and_type(texImage->TexFormat, format,
641 type, unpack->SwapBytes)) {
642 goto fallback;
643 }
644
645 if (format == GL_DEPTH_COMPONENT || format == GL_DEPTH_STENCIL)
646 bind = PIPE_BIND_DEPTH_STENCIL;
647 else
648 bind = PIPE_BIND_RENDER_TARGET;
649
650 /* See if the destination format is supported.
651 * For luminance and intensity, only the red channel is stored there. */
652 dst_format = util_format_linear(dst->format);
653 dst_format = util_format_luminance_to_red(dst_format);
654 dst_format = util_format_intensity_to_red(dst_format);
655
656 if (!dst_format ||
657 !screen->is_format_supported(screen, dst_format, dst->target,
658 dst->nr_samples, bind)) {
659 goto fallback;
660 }
661
662 /* Choose the source format. */
663 src_format = st_choose_matching_format(screen, PIPE_BIND_SAMPLER_VIEW,
664 format, type, unpack->SwapBytes);
665 if (!src_format) {
666 goto fallback;
667 }
668
669 mesa_src_format = st_pipe_format_to_mesa_format(src_format);
670
671 /* There is no reason to do this if we cannot use memcpy for the temporary
672 * source texture at least. This also takes transfer ops into account,
673 * etc. */
674 if (!_mesa_texstore_can_use_memcpy(ctx,
675 _mesa_get_format_base_format(mesa_src_format),
676 mesa_src_format, format, type, unpack)) {
677 goto fallback;
678 }
679
680 /* TexSubImage only sets a single cubemap face. */
681 if (gl_target == GL_TEXTURE_CUBE_MAP) {
682 gl_target = GL_TEXTURE_2D;
683 }
684
685 /* Initialize the source texture description. */
686 memset(&src_templ, 0, sizeof(src_templ));
687 src_templ.target = gl_target_to_pipe(gl_target);
688 src_templ.format = src_format;
689 src_templ.bind = PIPE_BIND_SAMPLER_VIEW;
690 src_templ.usage = PIPE_USAGE_STAGING;
691
692 st_gl_texture_dims_to_pipe_dims(gl_target, width, height, depth,
693 &src_templ.width0, &src_templ.height0,
694 &src_templ.depth0, &src_templ.array_size);
695
696 /* Check for NPOT texture support. */
697 if (!screen->get_param(screen, PIPE_CAP_NPOT_TEXTURES) &&
698 (!util_is_power_of_two(src_templ.width0) ||
699 !util_is_power_of_two(src_templ.height0) ||
700 !util_is_power_of_two(src_templ.depth0))) {
701 goto fallback;
702 }
703
704 /* Create the source texture. */
705 src = screen->resource_create(screen, &src_templ);
706 if (!src) {
707 goto fallback;
708 }
709
710 /* Map source pixels. */
711 pixels = _mesa_validate_pbo_teximage(ctx, dims, width, height, depth,
712 format, type, pixels, unpack,
713 "glTexSubImage");
714 if (!pixels) {
715 /* This is a GL error. */
716 pipe_resource_reference(&src, NULL);
717 return;
718 }
719
720 /* From now on, we need the gallium representation of dimensions. */
721 if (gl_target == GL_TEXTURE_1D_ARRAY) {
722 depth = height;
723 height = 1;
724 }
725
726 map = pipe_transfer_map_3d(pipe, src, 0, PIPE_TRANSFER_WRITE, 0, 0, 0,
727 width, height, depth, &transfer);
728 if (!map) {
729 _mesa_unmap_teximage_pbo(ctx, unpack);
730 pipe_resource_reference(&src, NULL);
731 goto fallback;
732 }
733
734 /* Upload pixels (just memcpy). */
735 {
736 const uint bytesPerRow = width * util_format_get_blocksize(src_format);
737 GLuint row, slice;
738
739 for (slice = 0; slice < (unsigned) depth; slice++) {
740 if (gl_target == GL_TEXTURE_1D_ARRAY) {
741 /* 1D array textures.
742 * We need to convert gallium coords to GL coords.
743 */
744 GLvoid *src = _mesa_image_address3d(unpack, pixels,
745 width, depth, format,
746 type, 0, slice, 0);
747 memcpy(map, src, bytesPerRow);
748 }
749 else {
750 ubyte *slice_map = map;
751
752 for (row = 0; row < (unsigned) height; row++) {
753 GLvoid *src = _mesa_image_address3d(unpack, pixels,
754 width, height, format,
755 type, slice, row, 0);
756 memcpy(slice_map, src, bytesPerRow);
757 slice_map += transfer->stride;
758 }
759 }
760 map += transfer->layer_stride;
761 }
762 }
763
764 pipe_transfer_unmap(pipe, transfer);
765 _mesa_unmap_teximage_pbo(ctx, unpack);
766
767 /* Blit. */
768 blit.src.resource = src;
769 blit.src.level = 0;
770 blit.src.format = src_format;
771 blit.dst.resource = dst;
772 blit.dst.level = stObj->pt != stImage->pt ? 0 : texImage->Level;
773 blit.dst.format = dst_format;
774 blit.src.box.x = blit.src.box.y = blit.src.box.z = 0;
775 blit.dst.box.x = xoffset;
776 blit.dst.box.y = yoffset;
777 blit.dst.box.z = zoffset + texImage->Face;
778 blit.src.box.width = blit.dst.box.width = width;
779 blit.src.box.height = blit.dst.box.height = height;
780 blit.src.box.depth = blit.dst.box.depth = depth;
781 blit.mask = st_get_blit_mask(format, texImage->_BaseFormat);
782 blit.filter = PIPE_TEX_FILTER_NEAREST;
783 blit.scissor_enable = FALSE;
784
785 st->pipe->blit(st->pipe, &blit);
786
787 pipe_resource_reference(&src, NULL);
788 return;
789
790 fallback:
791 _mesa_store_texsubimage(ctx, dims, texImage, xoffset, yoffset, zoffset,
792 width, height, depth, format, type, pixels,
793 unpack);
794 }
795
796 static void
797 st_TexImage(struct gl_context * ctx, GLuint dims,
798 struct gl_texture_image *texImage,
799 GLenum format, GLenum type, const void *pixels,
800 const struct gl_pixelstore_attrib *unpack)
801 {
802 assert(dims == 1 || dims == 2 || dims == 3);
803
804 prep_teximage(ctx, texImage, format, type);
805
806 if (texImage->Width == 0 || texImage->Height == 0 || texImage->Depth == 0)
807 return;
808
809 /* allocate storage for texture data */
810 if (!ctx->Driver.AllocTextureImageBuffer(ctx, texImage)) {
811 _mesa_error(ctx, GL_OUT_OF_MEMORY, "glTexImage%uD", dims);
812 return;
813 }
814
815 st_TexSubImage(ctx, dims, texImage, 0, 0, 0,
816 texImage->Width, texImage->Height, texImage->Depth,
817 format, type, pixels, unpack);
818 }
819
820
821 static void
822 st_CompressedTexImage(struct gl_context *ctx, GLuint dims,
823 struct gl_texture_image *texImage,
824 GLsizei imageSize, const GLvoid *data)
825 {
826 prep_teximage(ctx, texImage, GL_NONE, GL_NONE);
827 _mesa_store_compressed_teximage(ctx, dims, texImage, imageSize, data);
828 }
829
830
831
832
833 /**
834 * Called via ctx->Driver.GetTexImage()
835 *
836 * This uses a blit to copy the texture to a texture format which matches
837 * the format and type combo and then a fast read-back is done using memcpy.
838 * We can do arbitrary X/Y/Z/W/0/1 swizzling here as long as there is
839 * a format which matches the swizzling.
840 *
841 * If such a format isn't available, it falls back to _mesa_get_teximage.
842 *
843 * NOTE: Drivers usually do a blit to convert between tiled and linear
844 * texture layouts during texture uploads/downloads, so the blit
845 * we do here should be free in such cases.
846 */
847 static void
848 st_GetTexImage(struct gl_context * ctx,
849 GLenum format, GLenum type, GLvoid * pixels,
850 struct gl_texture_image *texImage)
851 {
852 struct st_context *st = st_context(ctx);
853 struct pipe_context *pipe = st->pipe;
854 struct pipe_screen *screen = pipe->screen;
855 GLuint width = texImage->Width;
856 GLuint height = texImage->Height;
857 GLuint depth = texImage->Depth;
858 struct st_texture_image *stImage = st_texture_image(texImage);
859 struct pipe_resource *src = st_texture_object(texImage->TexObject)->pt;
860 struct pipe_resource *dst = NULL;
861 struct pipe_resource dst_templ;
862 enum pipe_format dst_format, src_format;
863 mesa_format mesa_format;
864 GLenum gl_target = texImage->TexObject->Target;
865 enum pipe_texture_target pipe_target;
866 struct pipe_blit_info blit;
867 unsigned bind = PIPE_BIND_TRANSFER_READ;
868 struct pipe_transfer *tex_xfer;
869 ubyte *map = NULL;
870 boolean done = FALSE;
871
872 if (!st->prefer_blit_based_texture_transfer &&
873 !_mesa_is_format_compressed(texImage->TexFormat)) {
874 /* Try to avoid the fallback if we're doing texture decompression here */
875 goto fallback;
876 }
877
878 if (!stImage->pt || !src) {
879 goto fallback;
880 }
881
882 /* XXX Fallback to _mesa_get_teximage for depth-stencil formats
883 * due to an incomplete stencil blit implementation in some drivers. */
884 if (format == GL_DEPTH_STENCIL) {
885 goto fallback;
886 }
887
888 /* If the base internal format and the texture format don't match, we have
889 * to fall back to _mesa_get_teximage. */
890 if (texImage->_BaseFormat !=
891 _mesa_get_format_base_format(texImage->TexFormat)) {
892 goto fallback;
893 }
894
895 /* See if the texture format already matches the format and type,
896 * in which case the memcpy-based fast path will be used. */
897 if (_mesa_format_matches_format_and_type(texImage->TexFormat, format,
898 type, ctx->Pack.SwapBytes)) {
899 goto fallback;
900 }
901
902 /* Convert the source format to what is expected by GetTexImage
903 * and see if it's supported.
904 *
905 * This only applies to glGetTexImage:
906 * - Luminance must be returned as (L,0,0,1).
907 * - Luminance alpha must be returned as (L,0,0,A).
908 * - Intensity must be returned as (I,0,0,1)
909 */
910 src_format = util_format_linear(src->format);
911 src_format = util_format_luminance_to_red(src_format);
912 src_format = util_format_intensity_to_red(src_format);
913
914 if (!src_format ||
915 !screen->is_format_supported(screen, src_format, src->target,
916 src->nr_samples,
917 PIPE_BIND_SAMPLER_VIEW)) {
918 goto fallback;
919 }
920
921 if (format == GL_DEPTH_COMPONENT || format == GL_DEPTH_STENCIL)
922 bind |= PIPE_BIND_DEPTH_STENCIL;
923 else
924 bind |= PIPE_BIND_RENDER_TARGET;
925
926 /* GetTexImage only returns a single face for cubemaps. */
927 if (gl_target == GL_TEXTURE_CUBE_MAP) {
928 gl_target = GL_TEXTURE_2D;
929 }
930 pipe_target = gl_target_to_pipe(gl_target);
931
932 /* Choose the destination format by finding the best match
933 * for the format+type combo. */
934 dst_format = st_choose_matching_format(screen, bind, format, type,
935 ctx->Pack.SwapBytes);
936
937 if (dst_format == PIPE_FORMAT_NONE) {
938 GLenum dst_glformat;
939
940 /* Fall back to _mesa_get_teximage except for compressed formats,
941 * where decompression with a blit is always preferred. */
942 if (!util_format_is_compressed(src->format)) {
943 goto fallback;
944 }
945
946 /* Set the appropriate format for the decompressed texture.
947 * Luminance and sRGB formats shouldn't appear here.*/
948 switch (src_format) {
949 case PIPE_FORMAT_DXT1_RGB:
950 case PIPE_FORMAT_DXT1_RGBA:
951 case PIPE_FORMAT_DXT3_RGBA:
952 case PIPE_FORMAT_DXT5_RGBA:
953 case PIPE_FORMAT_RGTC1_UNORM:
954 case PIPE_FORMAT_RGTC2_UNORM:
955 case PIPE_FORMAT_ETC1_RGB8:
956 dst_glformat = GL_RGBA8;
957 break;
958 case PIPE_FORMAT_RGTC1_SNORM:
959 case PIPE_FORMAT_RGTC2_SNORM:
960 if (!ctx->Extensions.EXT_texture_snorm)
961 goto fallback;
962 dst_glformat = GL_RGBA8_SNORM;
963 break;
964 /* TODO: for BPTC_*FLOAT, set RGBA32F and check for ARB_texture_float */
965 default:
966 assert(0);
967 goto fallback;
968 }
969
970 dst_format = st_choose_format(st, dst_glformat, format, type,
971 pipe_target, 0, bind, FALSE);
972
973 if (dst_format == PIPE_FORMAT_NONE) {
974 /* unable to get an rgba format!?! */
975 goto fallback;
976 }
977 }
978
979 /* create the destination texture */
980 memset(&dst_templ, 0, sizeof(dst_templ));
981 dst_templ.target = pipe_target;
982 dst_templ.format = dst_format;
983 dst_templ.bind = bind;
984 dst_templ.usage = PIPE_USAGE_STAGING;
985
986 st_gl_texture_dims_to_pipe_dims(gl_target, width, height, depth,
987 &dst_templ.width0, &dst_templ.height0,
988 &dst_templ.depth0, &dst_templ.array_size);
989
990 dst = screen->resource_create(screen, &dst_templ);
991 if (!dst) {
992 goto fallback;
993 }
994
995 /* From now on, we need the gallium representation of dimensions. */
996 if (gl_target == GL_TEXTURE_1D_ARRAY) {
997 depth = height;
998 height = 1;
999 }
1000
1001 blit.src.resource = src;
1002 blit.src.level = texImage->Level;
1003 blit.src.format = src_format;
1004 blit.dst.resource = dst;
1005 blit.dst.level = 0;
1006 blit.dst.format = dst->format;
1007 blit.src.box.x = blit.dst.box.x = 0;
1008 blit.src.box.y = blit.dst.box.y = 0;
1009 blit.src.box.z = texImage->Face;
1010 blit.dst.box.z = 0;
1011 blit.src.box.width = blit.dst.box.width = width;
1012 blit.src.box.height = blit.dst.box.height = height;
1013 blit.src.box.depth = blit.dst.box.depth = depth;
1014 blit.mask = st_get_blit_mask(texImage->_BaseFormat, format);
1015 blit.filter = PIPE_TEX_FILTER_NEAREST;
1016 blit.scissor_enable = FALSE;
1017
1018 /* blit/render/decompress */
1019 st->pipe->blit(st->pipe, &blit);
1020
1021 pixels = _mesa_map_pbo_dest(ctx, &ctx->Pack, pixels);
1022
1023 map = pipe_transfer_map_3d(pipe, dst, 0, PIPE_TRANSFER_READ,
1024 0, 0, 0, width, height, depth, &tex_xfer);
1025 if (!map) {
1026 goto end;
1027 }
1028
1029 mesa_format = st_pipe_format_to_mesa_format(dst_format);
1030
1031 /* copy/pack data into user buffer */
1032 if (_mesa_format_matches_format_and_type(mesa_format, format, type,
1033 ctx->Pack.SwapBytes)) {
1034 /* memcpy */
1035 const uint bytesPerRow = width * util_format_get_blocksize(dst_format);
1036 GLuint row, slice;
1037
1038 for (slice = 0; slice < depth; slice++) {
1039 if (gl_target == GL_TEXTURE_1D_ARRAY) {
1040 /* 1D array textures.
1041 * We need to convert gallium coords to GL coords.
1042 */
1043 GLvoid *dest = _mesa_image_address3d(&ctx->Pack, pixels,
1044 width, depth, format,
1045 type, 0, slice, 0);
1046 memcpy(dest, map, bytesPerRow);
1047 }
1048 else {
1049 ubyte *slice_map = map;
1050
1051 for (row = 0; row < height; row++) {
1052 GLvoid *dest = _mesa_image_address3d(&ctx->Pack, pixels,
1053 width, height, format,
1054 type, slice, row, 0);
1055 memcpy(dest, slice_map, bytesPerRow);
1056 slice_map += tex_xfer->stride;
1057 }
1058 }
1059 map += tex_xfer->layer_stride;
1060 }
1061 }
1062 else {
1063 /* format translation via floats */
1064 GLuint row, slice;
1065 GLfloat *rgba;
1066
1067 assert(util_format_is_compressed(src->format));
1068
1069 rgba = malloc(width * 4 * sizeof(GLfloat));
1070 if (!rgba) {
1071 goto end;
1072 }
1073
1074 if (ST_DEBUG & DEBUG_FALLBACK)
1075 debug_printf("%s: fallback format translation\n", __FUNCTION__);
1076
1077 for (slice = 0; slice < depth; slice++) {
1078 if (gl_target == GL_TEXTURE_1D_ARRAY) {
1079 /* 1D array textures.
1080 * We need to convert gallium coords to GL coords.
1081 */
1082 GLvoid *dest = _mesa_image_address3d(&ctx->Pack, pixels,
1083 width, depth, format,
1084 type, 0, slice, 0);
1085
1086 /* get float[4] rgba row from surface */
1087 pipe_get_tile_rgba_format(tex_xfer, map, 0, 0, width, 1,
1088 dst_format, rgba);
1089
1090 _mesa_pack_rgba_span_float(ctx, width, (GLfloat (*)[4]) rgba, format,
1091 type, dest, &ctx->Pack, 0);
1092 }
1093 else {
1094 for (row = 0; row < height; row++) {
1095 GLvoid *dest = _mesa_image_address3d(&ctx->Pack, pixels,
1096 width, height, format,
1097 type, slice, row, 0);
1098
1099 /* get float[4] rgba row from surface */
1100 pipe_get_tile_rgba_format(tex_xfer, map, 0, row, width, 1,
1101 dst_format, rgba);
1102
1103 _mesa_pack_rgba_span_float(ctx, width, (GLfloat (*)[4]) rgba, format,
1104 type, dest, &ctx->Pack, 0);
1105 }
1106 }
1107 map += tex_xfer->layer_stride;
1108 }
1109
1110 free(rgba);
1111 }
1112 done = TRUE;
1113
1114 end:
1115 if (map)
1116 pipe_transfer_unmap(pipe, tex_xfer);
1117
1118 _mesa_unmap_pbo_dest(ctx, &ctx->Pack);
1119 pipe_resource_reference(&dst, NULL);
1120
1121 fallback:
1122 if (!done) {
1123 _mesa_get_teximage(ctx, format, type, pixels, texImage);
1124 }
1125 }
1126
1127
1128 /**
1129 * Do a CopyTexSubImage operation using a read transfer from the source,
1130 * a write transfer to the destination and get_tile()/put_tile() to access
1131 * the pixels/texels.
1132 *
1133 * Note: srcY=0=TOP of renderbuffer
1134 */
1135 static void
1136 fallback_copy_texsubimage(struct gl_context *ctx,
1137 struct st_renderbuffer *strb,
1138 struct st_texture_image *stImage,
1139 GLenum baseFormat,
1140 GLint destX, GLint destY, GLint slice,
1141 GLint srcX, GLint srcY,
1142 GLsizei width, GLsizei height)
1143 {
1144 struct st_context *st = st_context(ctx);
1145 struct pipe_context *pipe = st->pipe;
1146 struct pipe_transfer *src_trans;
1147 GLubyte *texDest;
1148 enum pipe_transfer_usage transfer_usage;
1149 void *map;
1150 unsigned dst_width = width;
1151 unsigned dst_height = height;
1152 unsigned dst_depth = 1;
1153 struct pipe_transfer *transfer;
1154
1155 if (ST_DEBUG & DEBUG_FALLBACK)
1156 debug_printf("%s: fallback processing\n", __FUNCTION__);
1157
1158 if (st_fb_orientation(ctx->ReadBuffer) == Y_0_TOP) {
1159 srcY = strb->Base.Height - srcY - height;
1160 }
1161
1162 map = pipe_transfer_map(pipe,
1163 strb->texture,
1164 strb->surface->u.tex.level,
1165 strb->surface->u.tex.first_layer,
1166 PIPE_TRANSFER_READ,
1167 srcX, srcY,
1168 width, height, &src_trans);
1169
1170 if ((baseFormat == GL_DEPTH_COMPONENT ||
1171 baseFormat == GL_DEPTH_STENCIL) &&
1172 util_format_is_depth_and_stencil(stImage->pt->format))
1173 transfer_usage = PIPE_TRANSFER_READ_WRITE;
1174 else
1175 transfer_usage = PIPE_TRANSFER_WRITE;
1176
1177 texDest = st_texture_image_map(st, stImage, transfer_usage,
1178 destX, destY, slice,
1179 dst_width, dst_height, dst_depth,
1180 &transfer);
1181
1182 if (baseFormat == GL_DEPTH_COMPONENT ||
1183 baseFormat == GL_DEPTH_STENCIL) {
1184 const GLboolean scaleOrBias = (ctx->Pixel.DepthScale != 1.0F ||
1185 ctx->Pixel.DepthBias != 0.0F);
1186 GLint row, yStep;
1187 uint *data;
1188
1189 /* determine bottom-to-top vs. top-to-bottom order for src buffer */
1190 if (st_fb_orientation(ctx->ReadBuffer) == Y_0_TOP) {
1191 srcY = height - 1;
1192 yStep = -1;
1193 }
1194 else {
1195 srcY = 0;
1196 yStep = 1;
1197 }
1198
1199 data = malloc(width * sizeof(uint));
1200
1201 if (data) {
1202 /* To avoid a large temp memory allocation, do copy row by row */
1203 for (row = 0; row < height; row++, srcY += yStep) {
1204 pipe_get_tile_z(src_trans, map, 0, srcY, width, 1, data);
1205 if (scaleOrBias) {
1206 _mesa_scale_and_bias_depth_uint(ctx, width, data);
1207 }
1208
1209 if (stImage->pt->target == PIPE_TEXTURE_1D_ARRAY) {
1210 pipe_put_tile_z(transfer, texDest + row*transfer->layer_stride,
1211 0, 0, width, 1, data);
1212 }
1213 else {
1214 pipe_put_tile_z(transfer, texDest, 0, row, width, 1, data);
1215 }
1216 }
1217 }
1218 else {
1219 _mesa_error(ctx, GL_OUT_OF_MEMORY, "glCopyTexSubImage()");
1220 }
1221
1222 free(data);
1223 }
1224 else {
1225 /* RGBA format */
1226 GLfloat *tempSrc =
1227 malloc(width * height * 4 * sizeof(GLfloat));
1228
1229 if (tempSrc && texDest) {
1230 const GLint dims = 2;
1231 GLint dstRowStride;
1232 struct gl_texture_image *texImage = &stImage->base;
1233 struct gl_pixelstore_attrib unpack = ctx->DefaultPacking;
1234
1235 if (st_fb_orientation(ctx->ReadBuffer) == Y_0_TOP) {
1236 unpack.Invert = GL_TRUE;
1237 }
1238
1239 if (stImage->pt->target == PIPE_TEXTURE_1D_ARRAY) {
1240 dstRowStride = transfer->layer_stride;
1241 }
1242 else {
1243 dstRowStride = transfer->stride;
1244 }
1245
1246 /* get float/RGBA image from framebuffer */
1247 /* XXX this usually involves a lot of int/float conversion.
1248 * try to avoid that someday.
1249 */
1250 pipe_get_tile_rgba_format(src_trans, map, 0, 0, width, height,
1251 util_format_linear(strb->texture->format),
1252 tempSrc);
1253
1254 /* Store into texture memory.
1255 * Note that this does some special things such as pixel transfer
1256 * ops and format conversion. In particular, if the dest tex format
1257 * is actually RGBA but the user created the texture as GL_RGB we
1258 * need to fill-in/override the alpha channel with 1.0.
1259 */
1260 _mesa_texstore(ctx, dims,
1261 texImage->_BaseFormat,
1262 texImage->TexFormat,
1263 dstRowStride,
1264 &texDest,
1265 width, height, 1,
1266 GL_RGBA, GL_FLOAT, tempSrc, /* src */
1267 &unpack);
1268 }
1269 else {
1270 _mesa_error(ctx, GL_OUT_OF_MEMORY, "glTexSubImage");
1271 }
1272
1273 free(tempSrc);
1274 }
1275
1276 st_texture_image_unmap(st, stImage, slice);
1277 pipe->transfer_unmap(pipe, src_trans);
1278 }
1279
1280
1281 /**
1282 * Do a CopyTex[Sub]Image1/2/3D() using a hardware (blit) path if possible.
1283 * Note that the region to copy has already been clipped so we know we
1284 * won't read from outside the source renderbuffer's bounds.
1285 *
1286 * Note: srcY=0=Bottom of renderbuffer (GL convention)
1287 */
1288 static void
1289 st_CopyTexSubImage(struct gl_context *ctx, GLuint dims,
1290 struct gl_texture_image *texImage,
1291 GLint destX, GLint destY, GLint slice,
1292 struct gl_renderbuffer *rb,
1293 GLint srcX, GLint srcY, GLsizei width, GLsizei height)
1294 {
1295 struct st_texture_image *stImage = st_texture_image(texImage);
1296 struct st_texture_object *stObj = st_texture_object(texImage->TexObject);
1297 struct st_renderbuffer *strb = st_renderbuffer(rb);
1298 struct st_context *st = st_context(ctx);
1299 struct pipe_context *pipe = st->pipe;
1300 struct pipe_screen *screen = pipe->screen;
1301 struct pipe_blit_info blit;
1302 enum pipe_format dst_format;
1303 GLboolean do_flip = (st_fb_orientation(ctx->ReadBuffer) == Y_0_TOP);
1304 unsigned bind;
1305 GLint srcY0, srcY1;
1306
1307 if (!strb || !strb->surface || !stImage->pt) {
1308 debug_printf("%s: null strb or stImage\n", __FUNCTION__);
1309 return;
1310 }
1311
1312 if (_mesa_texstore_needs_transfer_ops(ctx, texImage->_BaseFormat,
1313 texImage->TexFormat)) {
1314 goto fallback;
1315 }
1316
1317 /* The base internal format must match the mesa format, so make sure
1318 * e.g. an RGB internal format is really allocated as RGB and not as RGBA.
1319 */
1320 if (texImage->_BaseFormat !=
1321 _mesa_get_format_base_format(texImage->TexFormat) ||
1322 rb->_BaseFormat != _mesa_get_format_base_format(rb->Format)) {
1323 goto fallback;
1324 }
1325
1326 /* Choose the destination format to match the TexImage behavior. */
1327 dst_format = util_format_linear(stImage->pt->format);
1328 dst_format = util_format_luminance_to_red(dst_format);
1329 dst_format = util_format_intensity_to_red(dst_format);
1330
1331 /* See if the destination format is supported. */
1332 if (texImage->_BaseFormat == GL_DEPTH_STENCIL ||
1333 texImage->_BaseFormat == GL_DEPTH_COMPONENT) {
1334 bind = PIPE_BIND_DEPTH_STENCIL;
1335 }
1336 else {
1337 bind = PIPE_BIND_RENDER_TARGET;
1338 }
1339
1340 if (!dst_format ||
1341 !screen->is_format_supported(screen, dst_format, stImage->pt->target,
1342 stImage->pt->nr_samples, bind)) {
1343 goto fallback;
1344 }
1345
1346 /* Y flipping for the main framebuffer. */
1347 if (do_flip) {
1348 srcY1 = strb->Base.Height - srcY - height;
1349 srcY0 = srcY1 + height;
1350 }
1351 else {
1352 srcY0 = srcY;
1353 srcY1 = srcY0 + height;
1354 }
1355
1356 /* Blit the texture.
1357 * This supports flipping, format conversions, and downsampling.
1358 */
1359 memset(&blit, 0, sizeof(blit));
1360 blit.src.resource = strb->texture;
1361 blit.src.format = util_format_linear(strb->surface->format);
1362 blit.src.level = strb->surface->u.tex.level;
1363 blit.src.box.x = srcX;
1364 blit.src.box.y = srcY0;
1365 blit.src.box.z = strb->surface->u.tex.first_layer;
1366 blit.src.box.width = width;
1367 blit.src.box.height = srcY1 - srcY0;
1368 blit.src.box.depth = 1;
1369 blit.dst.resource = stImage->pt;
1370 blit.dst.format = dst_format;
1371 blit.dst.level = stObj->pt != stImage->pt ? 0 : texImage->Level;
1372 blit.dst.box.x = destX;
1373 blit.dst.box.y = destY;
1374 blit.dst.box.z = stImage->base.Face + slice;
1375 blit.dst.box.width = width;
1376 blit.dst.box.height = height;
1377 blit.dst.box.depth = 1;
1378 blit.mask = st_get_blit_mask(rb->_BaseFormat, texImage->_BaseFormat);
1379 blit.filter = PIPE_TEX_FILTER_NEAREST;
1380 pipe->blit(pipe, &blit);
1381 return;
1382
1383 fallback:
1384 /* software fallback */
1385 fallback_copy_texsubimage(ctx,
1386 strb, stImage, texImage->_BaseFormat,
1387 destX, destY, slice,
1388 srcX, srcY, width, height);
1389 }
1390
1391
1392 /**
1393 * Copy image data from stImage into the texture object 'stObj' at level
1394 * 'dstLevel'.
1395 */
1396 static void
1397 copy_image_data_to_texture(struct st_context *st,
1398 struct st_texture_object *stObj,
1399 GLuint dstLevel,
1400 struct st_texture_image *stImage)
1401 {
1402 /* debug checks */
1403 {
1404 const struct gl_texture_image *dstImage =
1405 stObj->base.Image[stImage->base.Face][dstLevel];
1406 assert(dstImage);
1407 assert(dstImage->Width == stImage->base.Width);
1408 assert(dstImage->Height == stImage->base.Height);
1409 assert(dstImage->Depth == stImage->base.Depth);
1410 }
1411
1412 if (stImage->pt) {
1413 /* Copy potentially with the blitter:
1414 */
1415 GLuint src_level;
1416 if (stImage->pt->last_level == 0)
1417 src_level = 0;
1418 else
1419 src_level = stImage->base.Level;
1420
1421 assert(src_level <= stImage->pt->last_level);
1422 assert(u_minify(stImage->pt->width0, src_level) == stImage->base.Width);
1423 assert(stImage->pt->target == PIPE_TEXTURE_1D_ARRAY ||
1424 u_minify(stImage->pt->height0, src_level) == stImage->base.Height);
1425 assert(stImage->pt->target == PIPE_TEXTURE_2D_ARRAY ||
1426 stImage->pt->target == PIPE_TEXTURE_CUBE_ARRAY ||
1427 u_minify(stImage->pt->depth0, src_level) == stImage->base.Depth);
1428
1429 st_texture_image_copy(st->pipe,
1430 stObj->pt, dstLevel, /* dest texture, level */
1431 stImage->pt, src_level, /* src texture, level */
1432 stImage->base.Face);
1433
1434 pipe_resource_reference(&stImage->pt, NULL);
1435 }
1436 else if (stImage->TexData) {
1437 /* Copy from malloc'd memory */
1438 /* XXX this should be re-examined/tested with a compressed format */
1439 GLuint blockSize = util_format_get_blocksize(stObj->pt->format);
1440 GLuint srcRowStride = stImage->base.Width * blockSize;
1441 GLuint srcSliceStride = stImage->base.Height * srcRowStride;
1442 st_texture_image_data(st,
1443 stObj->pt,
1444 stImage->base.Face,
1445 dstLevel,
1446 stImage->TexData,
1447 srcRowStride,
1448 srcSliceStride);
1449 _mesa_align_free(stImage->TexData);
1450 stImage->TexData = NULL;
1451 }
1452
1453 pipe_resource_reference(&stImage->pt, stObj->pt);
1454 }
1455
1456
1457 /**
1458 * Called during state validation. When this function is finished,
1459 * the texture object should be ready for rendering.
1460 * \return GL_TRUE for success, GL_FALSE for failure (out of mem)
1461 */
1462 GLboolean
1463 st_finalize_texture(struct gl_context *ctx,
1464 struct pipe_context *pipe,
1465 struct gl_texture_object *tObj)
1466 {
1467 struct st_context *st = st_context(ctx);
1468 struct st_texture_object *stObj = st_texture_object(tObj);
1469 const GLuint nr_faces = (stObj->base.Target == GL_TEXTURE_CUBE_MAP) ? 6 : 1;
1470 GLuint face;
1471 struct st_texture_image *firstImage;
1472 enum pipe_format firstImageFormat;
1473 GLuint ptWidth, ptHeight, ptDepth, ptLayers, ptNumSamples;
1474
1475 if (_mesa_is_texture_complete(tObj, &tObj->Sampler)) {
1476 /* The texture is complete and we know exactly how many mipmap levels
1477 * are present/needed. This is conditional because we may be called
1478 * from the st_generate_mipmap() function when the texture object is
1479 * incomplete. In that case, we'll have set stObj->lastLevel before
1480 * we get here.
1481 */
1482 if (stObj->base.Sampler.MinFilter == GL_LINEAR ||
1483 stObj->base.Sampler.MinFilter == GL_NEAREST)
1484 stObj->lastLevel = stObj->base.BaseLevel;
1485 else
1486 stObj->lastLevel = stObj->base._MaxLevel;
1487 }
1488
1489 if (tObj->Target == GL_TEXTURE_BUFFER) {
1490 struct st_buffer_object *st_obj = st_buffer_object(tObj->BufferObject);
1491
1492 if (!st_obj) {
1493 pipe_resource_reference(&stObj->pt, NULL);
1494 st_texture_release_all_sampler_views(stObj);
1495 return GL_TRUE;
1496 }
1497
1498 if (st_obj->buffer != stObj->pt) {
1499 pipe_resource_reference(&stObj->pt, st_obj->buffer);
1500 st_texture_release_all_sampler_views(stObj);
1501 stObj->width0 = stObj->pt->width0 / _mesa_get_format_bytes(tObj->_BufferObjectFormat);
1502 stObj->height0 = 1;
1503 stObj->depth0 = 1;
1504 }
1505 return GL_TRUE;
1506
1507 }
1508
1509 firstImage = st_texture_image(stObj->base.Image[0][stObj->base.BaseLevel]);
1510 assert(firstImage);
1511
1512 /* If both firstImage and stObj point to a texture which can contain
1513 * all active images, favour firstImage. Note that because of the
1514 * completeness requirement, we know that the image dimensions
1515 * will match.
1516 */
1517 if (firstImage->pt &&
1518 firstImage->pt != stObj->pt &&
1519 (!stObj->pt || firstImage->pt->last_level >= stObj->pt->last_level)) {
1520 pipe_resource_reference(&stObj->pt, firstImage->pt);
1521 st_texture_release_all_sampler_views(stObj);
1522 }
1523
1524 /* If this texture comes from a window system, there is nothing else to do. */
1525 if (stObj->surface_based) {
1526 return GL_TRUE;
1527 }
1528
1529 /* Find gallium format for the Mesa texture */
1530 firstImageFormat = st_mesa_format_to_pipe_format(firstImage->base.TexFormat);
1531
1532 /* Find size of level=0 Gallium mipmap image, plus number of texture layers */
1533 {
1534 GLuint width, height, depth;
1535 if (!guess_base_level_size(stObj->base.Target,
1536 firstImage->base.Width2,
1537 firstImage->base.Height2,
1538 firstImage->base.Depth2,
1539 firstImage->base.Level,
1540 &width, &height, &depth)) {
1541 width = stObj->width0;
1542 height = stObj->height0;
1543 depth = stObj->depth0;
1544 }
1545 /* convert GL dims to Gallium dims */
1546 st_gl_texture_dims_to_pipe_dims(stObj->base.Target, width, height, depth,
1547 &ptWidth, &ptHeight, &ptDepth, &ptLayers);
1548 ptNumSamples = firstImage->base.NumSamples;
1549 }
1550
1551 /* If we already have a gallium texture, check that it matches the texture
1552 * object's format, target, size, num_levels, etc.
1553 */
1554 if (stObj->pt) {
1555 if (stObj->pt->target != gl_target_to_pipe(stObj->base.Target) ||
1556 stObj->pt->format != firstImageFormat ||
1557 stObj->pt->last_level < stObj->lastLevel ||
1558 stObj->pt->width0 != ptWidth ||
1559 stObj->pt->height0 != ptHeight ||
1560 stObj->pt->depth0 != ptDepth ||
1561 stObj->pt->nr_samples != ptNumSamples ||
1562 stObj->pt->array_size != ptLayers)
1563 {
1564 /* The gallium texture does not match the Mesa texture so delete the
1565 * gallium texture now. We'll make a new one below.
1566 */
1567 pipe_resource_reference(&stObj->pt, NULL);
1568 st_texture_release_all_sampler_views(stObj);
1569 st->dirty.st |= ST_NEW_FRAMEBUFFER;
1570 }
1571 }
1572
1573 /* May need to create a new gallium texture:
1574 */
1575 if (!stObj->pt) {
1576 GLuint bindings = default_bindings(st, firstImageFormat);
1577
1578 stObj->pt = st_texture_create(st,
1579 gl_target_to_pipe(stObj->base.Target),
1580 firstImageFormat,
1581 stObj->lastLevel,
1582 ptWidth,
1583 ptHeight,
1584 ptDepth,
1585 ptLayers, ptNumSamples,
1586 bindings);
1587
1588 if (!stObj->pt) {
1589 _mesa_error(ctx, GL_OUT_OF_MEMORY, "glTexImage");
1590 return GL_FALSE;
1591 }
1592 }
1593
1594 /* Pull in any images not in the object's texture:
1595 */
1596 for (face = 0; face < nr_faces; face++) {
1597 GLuint level;
1598 for (level = stObj->base.BaseLevel; level <= stObj->lastLevel; level++) {
1599 struct st_texture_image *stImage =
1600 st_texture_image(stObj->base.Image[face][level]);
1601
1602 /* Need to import images in main memory or held in other textures.
1603 */
1604 if (stImage && stObj->pt != stImage->pt) {
1605 if (level == 0 ||
1606 (stImage->base.Width == u_minify(stObj->width0, level) &&
1607 stImage->base.Height == u_minify(stObj->height0, level) &&
1608 stImage->base.Depth == u_minify(stObj->depth0, level))) {
1609 /* src image fits expected dest mipmap level size */
1610 copy_image_data_to_texture(st, stObj, level, stImage);
1611 }
1612 }
1613 }
1614 }
1615
1616 return GL_TRUE;
1617 }
1618
1619
1620 /**
1621 * Called via ctx->Driver.AllocTextureStorage() to allocate texture memory
1622 * for a whole mipmap stack.
1623 */
1624 static GLboolean
1625 st_AllocTextureStorage(struct gl_context *ctx,
1626 struct gl_texture_object *texObj,
1627 GLsizei levels, GLsizei width,
1628 GLsizei height, GLsizei depth)
1629 {
1630 const GLuint numFaces = _mesa_num_tex_faces(texObj->Target);
1631 struct gl_texture_image *texImage = texObj->Image[0][0];
1632 struct st_context *st = st_context(ctx);
1633 struct st_texture_object *stObj = st_texture_object(texObj);
1634 struct pipe_screen *screen = st->pipe->screen;
1635 GLuint ptWidth, ptHeight, ptDepth, ptLayers, bindings;
1636 enum pipe_format fmt;
1637 GLint level;
1638 GLuint num_samples = texImage->NumSamples;
1639
1640 assert(levels > 0);
1641
1642 /* Save the level=0 dimensions */
1643 stObj->width0 = width;
1644 stObj->height0 = height;
1645 stObj->depth0 = depth;
1646 stObj->lastLevel = levels - 1;
1647
1648 fmt = st_mesa_format_to_pipe_format(texImage->TexFormat);
1649
1650 bindings = default_bindings(st, fmt);
1651
1652 /* Raise the sample count if the requested one is unsupported. */
1653 if (num_samples > 1) {
1654 boolean found = FALSE;
1655
1656 for (; num_samples <= ctx->Const.MaxSamples; num_samples++) {
1657 if (screen->is_format_supported(screen, fmt, PIPE_TEXTURE_2D,
1658 num_samples,
1659 PIPE_BIND_SAMPLER_VIEW)) {
1660 /* Update the sample count in gl_texture_image as well. */
1661 texImage->NumSamples = num_samples;
1662 found = TRUE;
1663 break;
1664 }
1665 }
1666
1667 if (!found) {
1668 return GL_FALSE;
1669 }
1670 }
1671
1672 st_gl_texture_dims_to_pipe_dims(texObj->Target,
1673 width, height, depth,
1674 &ptWidth, &ptHeight, &ptDepth, &ptLayers);
1675
1676 stObj->pt = st_texture_create(st,
1677 gl_target_to_pipe(texObj->Target),
1678 fmt,
1679 levels - 1,
1680 ptWidth,
1681 ptHeight,
1682 ptDepth,
1683 ptLayers, num_samples,
1684 bindings);
1685 if (!stObj->pt)
1686 return GL_FALSE;
1687
1688 /* Set image resource pointers */
1689 for (level = 0; level < levels; level++) {
1690 GLuint face;
1691 for (face = 0; face < numFaces; face++) {
1692 struct st_texture_image *stImage =
1693 st_texture_image(texObj->Image[face][level]);
1694 pipe_resource_reference(&stImage->pt, stObj->pt);
1695 }
1696 }
1697
1698 return GL_TRUE;
1699 }
1700
1701
1702 static GLboolean
1703 st_TestProxyTexImage(struct gl_context *ctx, GLenum target,
1704 GLint level, mesa_format format,
1705 GLint width, GLint height,
1706 GLint depth, GLint border)
1707 {
1708 struct st_context *st = st_context(ctx);
1709 struct pipe_context *pipe = st->pipe;
1710
1711 if (width == 0 || height == 0 || depth == 0) {
1712 /* zero-sized images are legal, and always fit! */
1713 return GL_TRUE;
1714 }
1715
1716 if (pipe->screen->can_create_resource) {
1717 /* Ask the gallium driver if the texture is too large */
1718 struct gl_texture_object *texObj =
1719 _mesa_get_current_tex_object(ctx, target);
1720 struct pipe_resource pt;
1721
1722 /* Setup the pipe_resource object
1723 */
1724 memset(&pt, 0, sizeof(pt));
1725
1726 pt.target = gl_target_to_pipe(target);
1727 pt.format = st_mesa_format_to_pipe_format(format);
1728
1729 st_gl_texture_dims_to_pipe_dims(target,
1730 width, height, depth,
1731 &pt.width0, &pt.height0,
1732 &pt.depth0, &pt.array_size);
1733
1734 if (level == 0 && (texObj->Sampler.MinFilter == GL_LINEAR ||
1735 texObj->Sampler.MinFilter == GL_NEAREST)) {
1736 /* assume just one mipmap level */
1737 pt.last_level = 0;
1738 }
1739 else {
1740 /* assume a full set of mipmaps */
1741 pt.last_level = _mesa_logbase2(MAX3(width, height, depth));
1742 }
1743
1744 return pipe->screen->can_create_resource(pipe->screen, &pt);
1745 }
1746 else {
1747 /* Use core Mesa fallback */
1748 return _mesa_test_proxy_teximage(ctx, target, level, format,
1749 width, height, depth, border);
1750 }
1751 }
1752
1753
1754 void
1755 st_init_texture_functions(struct dd_function_table *functions)
1756 {
1757 functions->ChooseTextureFormat = st_ChooseTextureFormat;
1758 functions->QuerySamplesForFormat = st_QuerySamplesForFormat;
1759 functions->TexImage = st_TexImage;
1760 functions->TexSubImage = st_TexSubImage;
1761 functions->CompressedTexSubImage = _mesa_store_compressed_texsubimage;
1762 functions->CopyTexSubImage = st_CopyTexSubImage;
1763 functions->GenerateMipmap = st_generate_mipmap;
1764
1765 functions->GetTexImage = st_GetTexImage;
1766
1767 /* compressed texture functions */
1768 functions->CompressedTexImage = st_CompressedTexImage;
1769 functions->GetCompressedTexImage = _mesa_get_compressed_teximage;
1770
1771 functions->NewTextureObject = st_NewTextureObject;
1772 functions->NewTextureImage = st_NewTextureImage;
1773 functions->DeleteTextureImage = st_DeleteTextureImage;
1774 functions->DeleteTexture = st_DeleteTextureObject;
1775 functions->AllocTextureImageBuffer = st_AllocTextureImageBuffer;
1776 functions->FreeTextureImageBuffer = st_FreeTextureImageBuffer;
1777 functions->MapTextureImage = st_MapTextureImage;
1778 functions->UnmapTextureImage = st_UnmapTextureImage;
1779
1780 /* XXX Temporary until we can query pipe's texture sizes */
1781 functions->TestProxyTexImage = st_TestProxyTexImage;
1782
1783 functions->AllocTextureStorage = st_AllocTextureStorage;
1784 }