92eefca2e79068d41c20a280b98af7c6bb04777b
[mesa.git] / src / mesa / state_tracker / st_cb_texture.c
1 /**************************************************************************
2 *
3 * Copyright 2007 Tungsten Graphics, Inc., Cedar Park, Texas.
4 * All Rights Reserved.
5 *
6 * Permission is hereby granted, free of charge, to any person obtaining a
7 * copy of this software and associated documentation files (the
8 * "Software"), to deal in the Software without restriction, including
9 * without limitation the rights to use, copy, modify, merge, publish,
10 * distribute, sub license, and/or sell copies of the Software, and to
11 * permit persons to whom the Software is furnished to do so, subject to
12 * the following conditions:
13 *
14 * The above copyright notice and this permission notice (including the
15 * next paragraph) shall be included in all copies or substantial portions
16 * of the Software.
17 *
18 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
19 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
20 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.
21 * IN NO EVENT SHALL TUNGSTEN GRAPHICS AND/OR ITS SUPPLIERS BE LIABLE FOR
22 * ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
23 * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
24 * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
25 *
26 **************************************************************************/
27
28 #include "main/mfeatures.h"
29 #include "main/bufferobj.h"
30 #if FEATURE_convolve
31 #include "main/convolve.h"
32 #endif
33 #include "main/enums.h"
34 #include "main/fbobject.h"
35 #include "main/formats.h"
36 #include "main/image.h"
37 #include "main/imports.h"
38 #include "main/macros.h"
39 #include "main/mipmap.h"
40 #include "main/texcompress.h"
41 #include "main/texfetch.h"
42 #include "main/texgetimage.h"
43 #include "main/teximage.h"
44 #include "main/texobj.h"
45 #include "main/texstore.h"
46
47 #include "state_tracker/st_debug.h"
48 #include "state_tracker/st_context.h"
49 #include "state_tracker/st_cb_fbo.h"
50 #include "state_tracker/st_cb_texture.h"
51 #include "state_tracker/st_format.h"
52 #include "state_tracker/st_public.h"
53 #include "state_tracker/st_texture.h"
54 #include "state_tracker/st_gen_mipmap.h"
55 #include "state_tracker/st_inlines.h"
56 #include "state_tracker/st_atom.h"
57
58 #include "pipe/p_context.h"
59 #include "pipe/p_defines.h"
60 #include "util/u_inlines.h"
61 #include "pipe/p_shader_tokens.h"
62 #include "util/u_tile.h"
63 #include "util/u_blit.h"
64 #include "util/u_format.h"
65 #include "util/u_surface.h"
66 #include "util/u_math.h"
67
68
69 #define DBG if (0) printf
70
71
72 static enum pipe_texture_target
73 gl_target_to_pipe(GLenum target)
74 {
75 switch (target) {
76 case GL_TEXTURE_1D:
77 return PIPE_TEXTURE_1D;
78
79 case GL_TEXTURE_2D:
80 case GL_TEXTURE_RECTANGLE_NV:
81 return PIPE_TEXTURE_2D;
82
83 case GL_TEXTURE_3D:
84 return PIPE_TEXTURE_3D;
85
86 case GL_TEXTURE_CUBE_MAP_ARB:
87 return PIPE_TEXTURE_CUBE;
88
89 default:
90 assert(0);
91 return 0;
92 }
93 }
94
95
96 /** called via ctx->Driver.NewTextureImage() */
97 static struct gl_texture_image *
98 st_NewTextureImage(GLcontext * ctx)
99 {
100 DBG("%s\n", __FUNCTION__);
101 (void) ctx;
102 return (struct gl_texture_image *) ST_CALLOC_STRUCT(st_texture_image);
103 }
104
105
106 /** called via ctx->Driver.NewTextureObject() */
107 static struct gl_texture_object *
108 st_NewTextureObject(GLcontext * ctx, GLuint name, GLenum target)
109 {
110 struct st_texture_object *obj = ST_CALLOC_STRUCT(st_texture_object);
111
112 DBG("%s\n", __FUNCTION__);
113 _mesa_initialize_texture_object(&obj->base, name, target);
114
115 return &obj->base;
116 }
117
118 /** called via ctx->Driver.DeleteTextureImage() */
119 static void
120 st_DeleteTextureObject(GLcontext *ctx,
121 struct gl_texture_object *texObj)
122 {
123 struct st_texture_object *stObj = st_texture_object(texObj);
124 if (stObj->pt)
125 pipe_texture_reference(&stObj->pt, NULL);
126
127 _mesa_delete_texture_object(ctx, texObj);
128 }
129
130
131 /** called via ctx->Driver.FreeTexImageData() */
132 static void
133 st_FreeTextureImageData(GLcontext * ctx, struct gl_texture_image *texImage)
134 {
135 struct st_texture_image *stImage = st_texture_image(texImage);
136
137 DBG("%s\n", __FUNCTION__);
138
139 if (stImage->pt) {
140 pipe_texture_reference(&stImage->pt, NULL);
141 }
142
143 if (texImage->Data) {
144 _mesa_align_free(texImage->Data);
145 texImage->Data = NULL;
146 }
147 }
148
149
150 /**
151 * From linux kernel i386 header files, copes with odd sizes better
152 * than COPY_DWORDS would:
153 * XXX Put this in src/mesa/main/imports.h ???
154 */
155 #if defined(PIPE_CC_GCC) && defined(PIPE_ARCH_X86)
156 static INLINE void *
157 __memcpy(void *to, const void *from, size_t n)
158 {
159 int d0, d1, d2;
160 __asm__ __volatile__("rep ; movsl\n\t"
161 "testb $2,%b4\n\t"
162 "je 1f\n\t"
163 "movsw\n"
164 "1:\ttestb $1,%b4\n\t"
165 "je 2f\n\t"
166 "movsb\n" "2:":"=&c"(d0), "=&D"(d1), "=&S"(d2)
167 :"0"(n / 4), "q"(n), "1"((long) to), "2"((long) from)
168 :"memory");
169 return (to);
170 }
171 #else
172 #define __memcpy(a,b,c) memcpy(a,b,c)
173 #endif
174
175
176 /**
177 * The system memcpy (at least on ubuntu 5.10) has problems copying
178 * to agp (writecombined) memory from a source which isn't 64-byte
179 * aligned - there is a 4x performance falloff.
180 *
181 * The x86 __memcpy is immune to this but is slightly slower
182 * (10%-ish) than the system memcpy.
183 *
184 * The sse_memcpy seems to have a slight cliff at 64/32 bytes, but
185 * isn't much faster than x86_memcpy for agp copies.
186 *
187 * TODO: switch dynamically.
188 */
189 static void *
190 do_memcpy(void *dest, const void *src, size_t n)
191 {
192 if ((((unsigned long) src) & 63) || (((unsigned long) dest) & 63)) {
193 return __memcpy(dest, src, n);
194 }
195 else
196 return memcpy(dest, src, n);
197 }
198
199
200 /**
201 * Return default texture usage bitmask for the given texture format.
202 */
203 static GLuint
204 default_usage(enum pipe_format fmt)
205 {
206 GLuint usage = PIPE_TEXTURE_USAGE_SAMPLER;
207 if (util_format_is_depth_or_stencil(fmt))
208 usage |= PIPE_TEXTURE_USAGE_DEPTH_STENCIL;
209 else
210 usage |= PIPE_TEXTURE_USAGE_RENDER_TARGET;
211 return usage;
212 }
213
214
215 /**
216 * Allocate a pipe_texture object for the given st_texture_object using
217 * the given st_texture_image to guess the mipmap size/levels.
218 *
219 * [comments...]
220 * Otherwise, store it in memory if (Border != 0) or (any dimension ==
221 * 1).
222 *
223 * Otherwise, if max_level >= level >= min_level, create texture with
224 * space for images from min_level down to max_level.
225 *
226 * Otherwise, create texture with space for images from (level 0)..(1x1).
227 * Consider pruning this texture at a validation if the saving is worth it.
228 */
229 static void
230 guess_and_alloc_texture(struct st_context *st,
231 struct st_texture_object *stObj,
232 const struct st_texture_image *stImage)
233 {
234 GLuint firstLevel;
235 GLuint lastLevel;
236 GLuint width = stImage->base.Width2; /* size w/out border */
237 GLuint height = stImage->base.Height2;
238 GLuint depth = stImage->base.Depth2;
239 GLuint i, usage;
240 enum pipe_format fmt;
241
242 DBG("%s\n", __FUNCTION__);
243
244 assert(!stObj->pt);
245
246 if (stObj->pt &&
247 (GLint) stImage->level > stObj->base.BaseLevel &&
248 (stImage->base.Width == 1 ||
249 (stObj->base.Target != GL_TEXTURE_1D &&
250 stImage->base.Height == 1) ||
251 (stObj->base.Target == GL_TEXTURE_3D &&
252 stImage->base.Depth == 1)))
253 return;
254
255 /* If this image disrespects BaseLevel, allocate from level zero.
256 * Usually BaseLevel == 0, so it's unlikely to happen.
257 */
258 if ((GLint) stImage->level < stObj->base.BaseLevel)
259 firstLevel = 0;
260 else
261 firstLevel = stObj->base.BaseLevel;
262
263
264 /* Figure out image dimensions at start level.
265 */
266 for (i = stImage->level; i > firstLevel; i--) {
267 if (width != 1)
268 width <<= 1;
269 if (height != 1)
270 height <<= 1;
271 if (depth != 1)
272 depth <<= 1;
273 }
274
275 if (width == 0 || height == 0 || depth == 0) {
276 /* no texture needed */
277 return;
278 }
279
280 /* Guess a reasonable value for lastLevel. This is probably going
281 * to be wrong fairly often and might mean that we have to look at
282 * resizable buffers, or require that buffers implement lazy
283 * pagetable arrangements.
284 */
285 if ((stObj->base.MinFilter == GL_NEAREST ||
286 stObj->base.MinFilter == GL_LINEAR ||
287 stImage->base._BaseFormat == GL_DEPTH_COMPONENT ||
288 stImage->base._BaseFormat == GL_DEPTH_STENCIL_EXT) &&
289 !stObj->base.GenerateMipmap &&
290 stImage->level == firstLevel) {
291 /* only alloc space for a single mipmap level */
292 lastLevel = firstLevel;
293 }
294 else {
295 /* alloc space for a full mipmap */
296 GLuint l2width = util_logbase2(width);
297 GLuint l2height = util_logbase2(height);
298 GLuint l2depth = util_logbase2(depth);
299 lastLevel = firstLevel + MAX2(MAX2(l2width, l2height), l2depth);
300 }
301
302 fmt = st_mesa_format_to_pipe_format(stImage->base.TexFormat);
303
304 usage = default_usage(fmt);
305
306 stObj->pt = st_texture_create(st,
307 gl_target_to_pipe(stObj->base.Target),
308 fmt,
309 lastLevel,
310 width,
311 height,
312 depth,
313 usage);
314
315 DBG("%s - success\n", __FUNCTION__);
316 }
317
318
319 /**
320 * Adjust pixel unpack params and image dimensions to strip off the
321 * texture border.
322 * Gallium doesn't support texture borders. They've seldem been used
323 * and seldom been implemented correctly anyway.
324 * \param unpackNew returns the new pixel unpack parameters
325 */
326 static void
327 strip_texture_border(GLint border,
328 GLint *width, GLint *height, GLint *depth,
329 const struct gl_pixelstore_attrib *unpack,
330 struct gl_pixelstore_attrib *unpackNew)
331 {
332 assert(border > 0); /* sanity check */
333
334 *unpackNew = *unpack;
335
336 if (unpackNew->RowLength == 0)
337 unpackNew->RowLength = *width;
338
339 if (depth && unpackNew->ImageHeight == 0)
340 unpackNew->ImageHeight = *height;
341
342 unpackNew->SkipPixels += border;
343 if (height)
344 unpackNew->SkipRows += border;
345 if (depth)
346 unpackNew->SkipImages += border;
347
348 assert(*width >= 3);
349 *width = *width - 2 * border;
350 if (height && *height >= 3)
351 *height = *height - 2 * border;
352 if (depth && *depth >= 3)
353 *depth = *depth - 2 * border;
354 }
355
356
357 /**
358 * Try to do texture compression via rendering. If the Gallium driver
359 * can render into a compressed surface this will allow us to do texture
360 * compression.
361 * \return GL_TRUE for success, GL_FALSE for failure
362 */
363 static GLboolean
364 compress_with_blit(GLcontext * ctx,
365 GLenum target, GLint level,
366 GLint xoffset, GLint yoffset, GLint zoffset,
367 GLint width, GLint height, GLint depth,
368 GLenum format, GLenum type, const void *pixels,
369 const struct gl_pixelstore_attrib *unpack,
370 struct gl_texture_image *texImage)
371 {
372 const GLuint dstImageOffsets[1] = {0};
373 struct st_texture_image *stImage = st_texture_image(texImage);
374 struct pipe_screen *screen = ctx->st->pipe->screen;
375 gl_format mesa_format;
376 struct pipe_texture templ;
377 struct pipe_texture *src_tex;
378 struct pipe_surface *dst_surface;
379 struct pipe_transfer *tex_xfer;
380 void *map;
381
382 if (!stImage->pt) {
383 /* XXX: Can this happen? Should we assert? */
384 return GL_FALSE;
385 }
386
387 /* get destination surface (in the compressed texture) */
388 dst_surface = screen->get_tex_surface(screen, stImage->pt,
389 stImage->face, stImage->level, 0,
390 PIPE_BUFFER_USAGE_GPU_WRITE);
391 if (!dst_surface) {
392 /* can't render into this format (or other problem) */
393 return GL_FALSE;
394 }
395
396 /* Choose format for the temporary RGBA texture image.
397 */
398 mesa_format = st_ChooseTextureFormat(ctx, GL_RGBA, format, type);
399 assert(mesa_format);
400 if (!mesa_format)
401 return GL_FALSE;
402
403 /* Create the temporary source texture
404 */
405 memset(&templ, 0, sizeof(templ));
406 templ.target = PIPE_TEXTURE_2D;
407 templ.format = st_mesa_format_to_pipe_format(mesa_format);
408 templ.width0 = width;
409 templ.height0 = height;
410 templ.depth0 = 1;
411 templ.last_level = 0;
412 templ.tex_usage = PIPE_TEXTURE_USAGE_SAMPLER;
413 src_tex = screen->texture_create(screen, &templ);
414
415 if (!src_tex)
416 return GL_FALSE;
417
418 /* Put user's tex data into the temporary texture
419 */
420 tex_xfer = st_cond_flush_get_tex_transfer(st_context(ctx), src_tex,
421 0, 0, 0, /* face, level are zero */
422 PIPE_TRANSFER_WRITE,
423 0, 0, width, height); /* x, y, w, h */
424 map = screen->transfer_map(screen, tex_xfer);
425
426 _mesa_texstore(ctx, 2, GL_RGBA, mesa_format,
427 map, /* dest ptr */
428 0, 0, 0, /* dest x/y/z offset */
429 tex_xfer->stride, /* dest row stride (bytes) */
430 dstImageOffsets, /* image offsets (for 3D only) */
431 width, height, 1, /* size */
432 format, type, /* source format/type */
433 pixels, /* source data */
434 unpack); /* source data packing */
435
436 screen->transfer_unmap(screen, tex_xfer);
437 screen->tex_transfer_destroy(tex_xfer);
438
439 /* copy / compress image */
440 util_blit_pixels_tex(ctx->st->blit,
441 src_tex, /* pipe_texture (src) */
442 0, 0, /* src x0, y0 */
443 width, height, /* src x1, y1 */
444 dst_surface, /* pipe_surface (dst) */
445 xoffset, yoffset, /* dst x0, y0 */
446 xoffset + width, /* dst x1 */
447 yoffset + height, /* dst y1 */
448 0.0, /* z */
449 PIPE_TEX_MIPFILTER_NEAREST);
450
451 pipe_surface_reference(&dst_surface, NULL);
452 pipe_texture_reference(&src_tex, NULL);
453
454 return GL_TRUE;
455 }
456
457
458 /**
459 * Do glTexImage1/2/3D().
460 */
461 static void
462 st_TexImage(GLcontext * ctx,
463 GLint dims,
464 GLenum target, GLint level,
465 GLint internalFormat,
466 GLint width, GLint height, GLint depth,
467 GLint border,
468 GLenum format, GLenum type, const void *pixels,
469 const struct gl_pixelstore_attrib *unpack,
470 struct gl_texture_object *texObj,
471 struct gl_texture_image *texImage,
472 GLsizei imageSize, GLboolean compressed_src)
473 {
474 struct pipe_screen *screen = ctx->st->pipe->screen;
475 struct st_texture_object *stObj = st_texture_object(texObj);
476 struct st_texture_image *stImage = st_texture_image(texImage);
477 GLint postConvWidth, postConvHeight;
478 GLint texelBytes, sizeInBytes;
479 GLuint dstRowStride = 0;
480 struct gl_pixelstore_attrib unpackNB;
481 enum pipe_transfer_usage transfer_usage = 0;
482
483 DBG("%s target %s level %d %dx%dx%d border %d\n", __FUNCTION__,
484 _mesa_lookup_enum_by_nr(target), level, width, height, depth, border);
485
486 /* switch to "normal" */
487 if (stObj->surface_based) {
488 _mesa_clear_texture_object(ctx, texObj);
489 stObj->surface_based = GL_FALSE;
490 }
491
492 /* gallium does not support texture borders, strip it off */
493 if (border) {
494 strip_texture_border(border, &width, &height, &depth, unpack, &unpackNB);
495 unpack = &unpackNB;
496 texImage->Width = width;
497 texImage->Height = height;
498 texImage->Depth = depth;
499 texImage->Border = 0;
500 border = 0;
501 }
502
503 postConvWidth = width;
504 postConvHeight = height;
505
506 stImage->face = _mesa_tex_target_to_face(target);
507 stImage->level = level;
508
509 #if FEATURE_convolve
510 if (ctx->_ImageTransferState & IMAGE_CONVOLUTION_BIT) {
511 _mesa_adjust_image_for_convolution(ctx, dims, &postConvWidth,
512 &postConvHeight);
513 }
514 #endif
515
516 _mesa_set_fetch_functions(texImage, dims);
517
518 if (_mesa_is_format_compressed(texImage->TexFormat)) {
519 /* must be a compressed format */
520 texelBytes = 0;
521 }
522 else {
523 texelBytes = _mesa_get_format_bytes(texImage->TexFormat);
524
525 /* Minimum pitch of 32 bytes */
526 if (postConvWidth * texelBytes < 32) {
527 postConvWidth = 32 / texelBytes;
528 texImage->RowStride = postConvWidth;
529 }
530
531 /* we'll set RowStride elsewhere when the texture is a "mapped" state */
532 /*assert(texImage->RowStride == postConvWidth);*/
533 }
534
535 /* Release the reference to a potentially orphaned buffer.
536 * Release any old malloced memory.
537 */
538 if (stImage->pt) {
539 pipe_texture_reference(&stImage->pt, NULL);
540 assert(!texImage->Data);
541 }
542 else if (texImage->Data) {
543 _mesa_align_free(texImage->Data);
544 }
545
546 /*
547 * See if the new image is somehow incompatible with the existing
548 * mipmap. If so, free the old mipmap.
549 */
550 if (stObj->pt) {
551 if (stObj->teximage_realloc ||
552 level > (GLint) stObj->pt->last_level ||
553 !st_texture_match_image(stObj->pt, &stImage->base,
554 stImage->face, stImage->level)) {
555 DBG("release it\n");
556 pipe_texture_reference(&stObj->pt, NULL);
557 assert(!stObj->pt);
558 stObj->teximage_realloc = FALSE;
559 }
560 }
561
562 if (width == 0 || height == 0 || depth == 0) {
563 /* stop after freeing old image */
564 return;
565 }
566
567 if (!stObj->pt) {
568 guess_and_alloc_texture(ctx->st, stObj, stImage);
569 if (!stObj->pt) {
570 /* Probably out of memory.
571 * Try flushing any pending rendering, then retry.
572 */
573 st_finish(ctx->st);
574 guess_and_alloc_texture(ctx->st, stObj, stImage);
575 if (!stObj->pt) {
576 _mesa_error(ctx, GL_OUT_OF_MEMORY, "glTexImage");
577 return;
578 }
579 }
580 }
581
582 assert(!stImage->pt);
583
584 if (stObj->pt &&
585 st_texture_match_image(stObj->pt, &stImage->base,
586 stImage->face, stImage->level)) {
587
588 pipe_texture_reference(&stImage->pt, stObj->pt);
589 assert(stImage->pt);
590 }
591
592 if (!stImage->pt)
593 DBG("XXX: Image did not fit into texture - storing in local memory!\n");
594
595 /* st_CopyTexImage calls this function with pixels == NULL, with
596 * the expectation that the texture will be set up but nothing
597 * more will be done. This is where those calls return:
598 */
599 if (compressed_src) {
600 pixels = _mesa_validate_pbo_compressed_teximage(ctx, imageSize, pixels,
601 unpack,
602 "glCompressedTexImage");
603 }
604 else {
605 pixels = _mesa_validate_pbo_teximage(ctx, dims, width, height, 1,
606 format, type,
607 pixels, unpack, "glTexImage");
608 }
609
610 /* Note: we can't check for pixels==NULL until after we've allocated
611 * memory for the texture.
612 */
613
614 /* See if we can do texture compression with a blit/render.
615 */
616 if (!compressed_src &&
617 !ctx->Mesa_DXTn &&
618 _mesa_is_format_compressed(texImage->TexFormat) &&
619 screen->is_format_supported(screen,
620 stImage->pt->format,
621 stImage->pt->target,
622 PIPE_TEXTURE_USAGE_RENDER_TARGET, 0)) {
623 if (!pixels)
624 goto done;
625
626 if (compress_with_blit(ctx, target, level, 0, 0, 0, width, height, depth,
627 format, type, pixels, unpack, texImage)) {
628 goto done;
629 }
630 }
631
632 if (stImage->pt) {
633 if (format == GL_DEPTH_COMPONENT &&
634 util_format_is_depth_and_stencil(stImage->pt->format))
635 transfer_usage = PIPE_TRANSFER_READ_WRITE;
636 else
637 transfer_usage = PIPE_TRANSFER_WRITE;
638
639 texImage->Data = st_texture_image_map(ctx->st, stImage, 0,
640 transfer_usage, 0, 0,
641 stImage->base.Width,
642 stImage->base.Height);
643 if(stImage->transfer)
644 dstRowStride = stImage->transfer->stride;
645 }
646 else {
647 /* Allocate regular memory and store the image there temporarily. */
648 if (_mesa_is_format_compressed(texImage->TexFormat)) {
649 sizeInBytes = _mesa_format_image_size(texImage->TexFormat,
650 texImage->Width,
651 texImage->Height,
652 texImage->Depth);
653 dstRowStride = _mesa_format_row_stride(texImage->TexFormat, width);
654 assert(dims != 3);
655 }
656 else {
657 dstRowStride = postConvWidth * texelBytes;
658 sizeInBytes = depth * dstRowStride * postConvHeight;
659 }
660
661 texImage->Data = _mesa_align_malloc(sizeInBytes, 16);
662 }
663
664 if (!texImage->Data) {
665 _mesa_error(ctx, GL_OUT_OF_MEMORY, "glTexImage");
666 return;
667 }
668
669 if (!pixels)
670 goto done;
671
672 DBG("Upload image %dx%dx%d row_len %x pitch %x\n",
673 width, height, depth, width * texelBytes, dstRowStride);
674
675 /* Copy data. Would like to know when it's ok for us to eg. use
676 * the blitter to copy. Or, use the hardware to do the format
677 * conversion and copy:
678 */
679 if (compressed_src) {
680 const GLuint srcImageStride = _mesa_format_row_stride(texImage->TexFormat, width);
681 if(dstRowStride == srcImageStride)
682 memcpy(texImage->Data, pixels, imageSize);
683 else
684 {
685 char *dst = texImage->Data;
686 const char *src = pixels;
687 GLuint i, bw, bh, lines;
688 _mesa_get_format_block_size(texImage->TexFormat, &bw, &bh);
689 lines = (height + bh - 1) / bh;
690
691 for(i = 0; i < lines; ++i)
692 {
693 memcpy(dst, src, srcImageStride);
694 dst += dstRowStride;
695 src += srcImageStride;
696 }
697 }
698 }
699 else {
700 const GLuint srcImageStride =
701 _mesa_image_image_stride(unpack, width, height, format, type);
702 GLint i;
703 const GLubyte *src = (const GLubyte *) pixels;
704
705 for (i = 0; i < depth; i++) {
706 if (!_mesa_texstore(ctx, dims,
707 texImage->_BaseFormat,
708 texImage->TexFormat,
709 texImage->Data,
710 0, 0, 0, /* dstX/Y/Zoffset */
711 dstRowStride,
712 texImage->ImageOffsets,
713 width, height, 1,
714 format, type, src, unpack)) {
715 _mesa_error(ctx, GL_OUT_OF_MEMORY, "glTexImage");
716 }
717
718 if (stImage->pt && i + 1 < depth) {
719 /* unmap this slice */
720 st_texture_image_unmap(ctx->st, stImage);
721 /* map next slice of 3D texture */
722 texImage->Data = st_texture_image_map(ctx->st, stImage, i + 1,
723 transfer_usage, 0, 0,
724 stImage->base.Width,
725 stImage->base.Height);
726 src += srcImageStride;
727 }
728 }
729 }
730
731 done:
732 _mesa_unmap_teximage_pbo(ctx, unpack);
733
734 if (stImage->pt && texImage->Data) {
735 st_texture_image_unmap(ctx->st, stImage);
736 texImage->Data = NULL;
737 }
738 }
739
740
741 static void
742 st_TexImage3D(GLcontext * ctx,
743 GLenum target, GLint level,
744 GLint internalFormat,
745 GLint width, GLint height, GLint depth,
746 GLint border,
747 GLenum format, GLenum type, const void *pixels,
748 const struct gl_pixelstore_attrib *unpack,
749 struct gl_texture_object *texObj,
750 struct gl_texture_image *texImage)
751 {
752 st_TexImage(ctx, 3, target, level, internalFormat, width, height, depth,
753 border, format, type, pixels, unpack, texObj, texImage,
754 0, GL_FALSE);
755 }
756
757
758 static void
759 st_TexImage2D(GLcontext * ctx,
760 GLenum target, GLint level,
761 GLint internalFormat,
762 GLint width, GLint height, GLint border,
763 GLenum format, GLenum type, const void *pixels,
764 const struct gl_pixelstore_attrib *unpack,
765 struct gl_texture_object *texObj,
766 struct gl_texture_image *texImage)
767 {
768 st_TexImage(ctx, 2, target, level, internalFormat, width, height, 1, border,
769 format, type, pixels, unpack, texObj, texImage, 0, GL_FALSE);
770 }
771
772
773 static void
774 st_TexImage1D(GLcontext * ctx,
775 GLenum target, GLint level,
776 GLint internalFormat,
777 GLint width, GLint border,
778 GLenum format, GLenum type, const void *pixels,
779 const struct gl_pixelstore_attrib *unpack,
780 struct gl_texture_object *texObj,
781 struct gl_texture_image *texImage)
782 {
783 st_TexImage(ctx, 1, target, level, internalFormat, width, 1, 1, border,
784 format, type, pixels, unpack, texObj, texImage, 0, GL_FALSE);
785 }
786
787
788 static void
789 st_CompressedTexImage2D(GLcontext *ctx, GLenum target, GLint level,
790 GLint internalFormat,
791 GLint width, GLint height, GLint border,
792 GLsizei imageSize, const GLvoid *data,
793 struct gl_texture_object *texObj,
794 struct gl_texture_image *texImage)
795 {
796 st_TexImage(ctx, 2, target, level, internalFormat, width, height, 1, border,
797 0, 0, data, &ctx->Unpack, texObj, texImage, imageSize, GL_TRUE);
798 }
799
800
801
802 /**
803 * glGetTexImage() helper: decompress a compressed texture by rendering
804 * a textured quad. Store the results in the user's buffer.
805 */
806 static void
807 decompress_with_blit(GLcontext * ctx, GLenum target, GLint level,
808 GLenum format, GLenum type, GLvoid *pixels,
809 struct gl_texture_object *texObj,
810 struct gl_texture_image *texImage)
811 {
812 struct pipe_screen *screen = ctx->st->pipe->screen;
813 struct st_texture_image *stImage = st_texture_image(texImage);
814 const GLuint width = texImage->Width;
815 const GLuint height = texImage->Height;
816 struct pipe_surface *dst_surface;
817 struct pipe_texture *dst_texture;
818 struct pipe_transfer *tex_xfer;
819
820 /* create temp / dest surface */
821 if (!util_create_rgba_surface(screen, width, height,
822 &dst_texture, &dst_surface)) {
823 _mesa_problem(ctx, "util_create_rgba_surface() failed "
824 "in decompress_with_blit()");
825 return;
826 }
827
828 /* blit/render/decompress */
829 util_blit_pixels_tex(ctx->st->blit,
830 stImage->pt, /* pipe_texture (src) */
831 0, 0, /* src x0, y0 */
832 width, height, /* src x1, y1 */
833 dst_surface, /* pipe_surface (dst) */
834 0, 0, /* dst x0, y0 */
835 width, height, /* dst x1, y1 */
836 0.0, /* z */
837 PIPE_TEX_MIPFILTER_NEAREST);
838
839 /* map the dst_surface so we can read from it */
840 tex_xfer = st_cond_flush_get_tex_transfer(st_context(ctx),
841 dst_texture, 0, 0, 0,
842 PIPE_TRANSFER_READ,
843 0, 0, width, height);
844
845 pixels = _mesa_map_pbo_dest(ctx, &ctx->Pack, pixels);
846
847 /* copy/pack data into user buffer */
848 if (st_equal_formats(stImage->pt->format, format, type)) {
849 /* memcpy */
850 const uint bytesPerRow = width * util_format_get_blocksize(stImage->pt->format);
851 ubyte *map = screen->transfer_map(screen, tex_xfer);
852 GLuint row;
853 for (row = 0; row < height; row++) {
854 GLvoid *dest = _mesa_image_address2d(&ctx->Pack, pixels, width,
855 height, format, type, row, 0);
856 memcpy(dest, map, bytesPerRow);
857 map += tex_xfer->stride;
858 }
859 screen->transfer_unmap(screen, tex_xfer);
860 }
861 else {
862 /* format translation via floats */
863 GLuint row;
864 for (row = 0; row < height; row++) {
865 const GLbitfield transferOps = 0x0; /* bypassed for glGetTexImage() */
866 GLfloat rgba[4 * MAX_WIDTH];
867 GLvoid *dest = _mesa_image_address2d(&ctx->Pack, pixels, width,
868 height, format, type, row, 0);
869
870 if (ST_DEBUG & DEBUG_FALLBACK)
871 debug_printf("%s: fallback format translation\n", __FUNCTION__);
872
873 /* get float[4] rgba row from surface */
874 pipe_get_tile_rgba(tex_xfer, 0, row, width, 1, rgba);
875
876 _mesa_pack_rgba_span_float(ctx, width, (GLfloat (*)[4]) rgba, format,
877 type, dest, &ctx->Pack, transferOps);
878 }
879 }
880
881 _mesa_unmap_pbo_dest(ctx, &ctx->Pack);
882
883 screen->tex_transfer_destroy(tex_xfer);
884
885 /* destroy the temp / dest surface */
886 util_destroy_rgba_surface(dst_texture, dst_surface);
887 }
888
889
890
891 /**
892 * Need to map texture image into memory before copying image data,
893 * then unmap it.
894 */
895 static void
896 st_get_tex_image(GLcontext * ctx, GLenum target, GLint level,
897 GLenum format, GLenum type, GLvoid * pixels,
898 struct gl_texture_object *texObj,
899 struct gl_texture_image *texImage, GLboolean compressed_dst)
900 {
901 struct st_texture_image *stImage = st_texture_image(texImage);
902 const GLuint dstImageStride =
903 _mesa_image_image_stride(&ctx->Pack, texImage->Width, texImage->Height,
904 format, type);
905 GLuint depth, i;
906 GLubyte *dest;
907
908 if (stImage->pt &&
909 util_format_is_compressed(stImage->pt->format) &&
910 !compressed_dst) {
911 /* Need to decompress the texture.
912 * We'll do this by rendering a textured quad.
913 * Note that we only expect RGBA formats (no Z/depth formats).
914 */
915 decompress_with_blit(ctx, target, level, format, type, pixels,
916 texObj, texImage);
917 return;
918 }
919
920 /* Map */
921 if (stImage->pt) {
922 /* Image is stored in hardware format in a buffer managed by the
923 * kernel. Need to explicitly map and unmap it.
924 */
925 unsigned face = _mesa_tex_target_to_face(target);
926
927 st_teximage_flush_before_map(ctx->st, stImage->pt, face, level,
928 PIPE_TRANSFER_READ);
929
930 texImage->Data = st_texture_image_map(ctx->st, stImage, 0,
931 PIPE_TRANSFER_READ, 0, 0,
932 stImage->base.Width,
933 stImage->base.Height);
934 texImage->RowStride = stImage->transfer->stride / util_format_get_blocksize(stImage->pt->format);
935 }
936 else {
937 /* Otherwise, the image should actually be stored in
938 * texImage->Data. This is pretty confusing for
939 * everybody, I'd much prefer to separate the two functions of
940 * texImage->Data - storage for texture images in main memory
941 * and access (ie mappings) of images. In other words, we'd
942 * create a new texImage->Map field and leave Data simply for
943 * storage.
944 */
945 assert(texImage->Data);
946 }
947
948 depth = texImage->Depth;
949 texImage->Depth = 1;
950
951 dest = (GLubyte *) pixels;
952
953 for (i = 0; i < depth; i++) {
954 if (compressed_dst) {
955 _mesa_get_compressed_teximage(ctx, target, level, dest,
956 texObj, texImage);
957 }
958 else {
959 _mesa_get_teximage(ctx, target, level, format, type, dest,
960 texObj, texImage);
961 }
962
963 if (stImage->pt && i + 1 < depth) {
964 /* unmap this slice */
965 st_texture_image_unmap(ctx->st, stImage);
966 /* map next slice of 3D texture */
967 texImage->Data = st_texture_image_map(ctx->st, stImage, i + 1,
968 PIPE_TRANSFER_READ, 0, 0,
969 stImage->base.Width,
970 stImage->base.Height);
971 dest += dstImageStride;
972 }
973 }
974
975 texImage->Depth = depth;
976
977 /* Unmap */
978 if (stImage->pt) {
979 st_texture_image_unmap(ctx->st, stImage);
980 texImage->Data = NULL;
981 }
982 }
983
984
985 static void
986 st_GetTexImage(GLcontext * ctx, GLenum target, GLint level,
987 GLenum format, GLenum type, GLvoid * pixels,
988 struct gl_texture_object *texObj,
989 struct gl_texture_image *texImage)
990 {
991 st_get_tex_image(ctx, target, level, format, type, pixels, texObj, texImage,
992 GL_FALSE);
993 }
994
995
996 static void
997 st_GetCompressedTexImage(GLcontext *ctx, GLenum target, GLint level,
998 GLvoid *pixels,
999 struct gl_texture_object *texObj,
1000 struct gl_texture_image *texImage)
1001 {
1002 st_get_tex_image(ctx, target, level, 0, 0, pixels, texObj, texImage,
1003 GL_TRUE);
1004 }
1005
1006
1007
1008 static void
1009 st_TexSubimage(GLcontext *ctx, GLint dims, GLenum target, GLint level,
1010 GLint xoffset, GLint yoffset, GLint zoffset,
1011 GLint width, GLint height, GLint depth,
1012 GLenum format, GLenum type, const void *pixels,
1013 const struct gl_pixelstore_attrib *packing,
1014 struct gl_texture_object *texObj,
1015 struct gl_texture_image *texImage)
1016 {
1017 struct pipe_screen *screen = ctx->st->pipe->screen;
1018 struct st_texture_image *stImage = st_texture_image(texImage);
1019 GLuint dstRowStride;
1020 const GLuint srcImageStride =
1021 _mesa_image_image_stride(packing, width, height, format, type);
1022 GLint i;
1023 const GLubyte *src;
1024 /* init to silence warning only: */
1025 enum pipe_transfer_usage transfer_usage = PIPE_TRANSFER_WRITE;
1026
1027 DBG("%s target %s level %d offset %d,%d %dx%d\n", __FUNCTION__,
1028 _mesa_lookup_enum_by_nr(target),
1029 level, xoffset, yoffset, width, height);
1030
1031 pixels =
1032 _mesa_validate_pbo_teximage(ctx, dims, width, height, depth, format,
1033 type, pixels, packing, "glTexSubImage2D");
1034 if (!pixels)
1035 return;
1036
1037 /* See if we can do texture compression with a blit/render.
1038 */
1039 if (!ctx->Mesa_DXTn &&
1040 _mesa_is_format_compressed(texImage->TexFormat) &&
1041 screen->is_format_supported(screen,
1042 stImage->pt->format,
1043 stImage->pt->target,
1044 PIPE_TEXTURE_USAGE_RENDER_TARGET, 0)) {
1045 if (compress_with_blit(ctx, target, level,
1046 xoffset, yoffset, zoffset,
1047 width, height, depth,
1048 format, type, pixels, packing, texImage)) {
1049 goto done;
1050 }
1051 }
1052
1053 /* Map buffer if necessary. Need to lock to prevent other contexts
1054 * from uploading the buffer under us.
1055 */
1056 if (stImage->pt) {
1057 unsigned face = _mesa_tex_target_to_face(target);
1058
1059 if (format == GL_DEPTH_COMPONENT &&
1060 util_format_is_depth_and_stencil(stImage->pt->format))
1061 transfer_usage = PIPE_TRANSFER_READ_WRITE;
1062 else
1063 transfer_usage = PIPE_TRANSFER_WRITE;
1064
1065 st_teximage_flush_before_map(ctx->st, stImage->pt, face, level,
1066 transfer_usage);
1067 texImage->Data = st_texture_image_map(ctx->st, stImage, zoffset,
1068 transfer_usage,
1069 xoffset, yoffset,
1070 width, height);
1071 }
1072
1073 if (!texImage->Data) {
1074 _mesa_error(ctx, GL_OUT_OF_MEMORY, "glTexSubImage");
1075 goto done;
1076 }
1077
1078 src = (const GLubyte *) pixels;
1079 dstRowStride = stImage->transfer->stride;
1080
1081 for (i = 0; i < depth; i++) {
1082 if (!_mesa_texstore(ctx, dims, texImage->_BaseFormat,
1083 texImage->TexFormat,
1084 texImage->Data,
1085 0, 0, 0,
1086 dstRowStride,
1087 texImage->ImageOffsets,
1088 width, height, 1,
1089 format, type, src, packing)) {
1090 _mesa_error(ctx, GL_OUT_OF_MEMORY, "glTexSubImage");
1091 }
1092
1093 if (stImage->pt && i + 1 < depth) {
1094 /* unmap this slice */
1095 st_texture_image_unmap(ctx->st, stImage);
1096 /* map next slice of 3D texture */
1097 texImage->Data = st_texture_image_map(ctx->st, stImage,
1098 zoffset + i + 1,
1099 transfer_usage,
1100 xoffset, yoffset,
1101 width, height);
1102 src += srcImageStride;
1103 }
1104 }
1105
1106 done:
1107 _mesa_unmap_teximage_pbo(ctx, packing);
1108
1109 if (stImage->pt && texImage->Data) {
1110 st_texture_image_unmap(ctx->st, stImage);
1111 texImage->Data = NULL;
1112 }
1113 }
1114
1115
1116
1117 static void
1118 st_TexSubImage3D(GLcontext *ctx, GLenum target, GLint level,
1119 GLint xoffset, GLint yoffset, GLint zoffset,
1120 GLsizei width, GLsizei height, GLsizei depth,
1121 GLenum format, GLenum type, const GLvoid *pixels,
1122 const struct gl_pixelstore_attrib *packing,
1123 struct gl_texture_object *texObj,
1124 struct gl_texture_image *texImage)
1125 {
1126 st_TexSubimage(ctx, 3, target, level, xoffset, yoffset, zoffset,
1127 width, height, depth, format, type,
1128 pixels, packing, texObj, texImage);
1129 }
1130
1131
1132 static void
1133 st_TexSubImage2D(GLcontext *ctx, GLenum target, GLint level,
1134 GLint xoffset, GLint yoffset,
1135 GLsizei width, GLsizei height,
1136 GLenum format, GLenum type, const GLvoid * pixels,
1137 const struct gl_pixelstore_attrib *packing,
1138 struct gl_texture_object *texObj,
1139 struct gl_texture_image *texImage)
1140 {
1141 st_TexSubimage(ctx, 2, target, level, xoffset, yoffset, 0,
1142 width, height, 1, format, type,
1143 pixels, packing, texObj, texImage);
1144 }
1145
1146
1147 static void
1148 st_TexSubImage1D(GLcontext *ctx, GLenum target, GLint level,
1149 GLint xoffset, GLsizei width, GLenum format, GLenum type,
1150 const GLvoid * pixels,
1151 const struct gl_pixelstore_attrib *packing,
1152 struct gl_texture_object *texObj,
1153 struct gl_texture_image *texImage)
1154 {
1155 st_TexSubimage(ctx, 1, target, level, xoffset, 0, 0, width, 1, 1,
1156 format, type, pixels, packing, texObj, texImage);
1157 }
1158
1159
1160 static void
1161 st_CompressedTexSubImage1D(GLcontext *ctx, GLenum target, GLint level,
1162 GLint xoffset, GLsizei width,
1163 GLenum format,
1164 GLsizei imageSize, const GLvoid *data,
1165 struct gl_texture_object *texObj,
1166 struct gl_texture_image *texImage)
1167 {
1168 assert(0);
1169 }
1170
1171
1172 static void
1173 st_CompressedTexSubImage2D(GLcontext *ctx, GLenum target, GLint level,
1174 GLint xoffset, GLint yoffset,
1175 GLsizei width, GLint height,
1176 GLenum format,
1177 GLsizei imageSize, const GLvoid *data,
1178 struct gl_texture_object *texObj,
1179 struct gl_texture_image *texImage)
1180 {
1181 struct st_texture_image *stImage = st_texture_image(texImage);
1182 int srcBlockStride;
1183 int dstBlockStride;
1184 int y;
1185 enum pipe_format pformat= stImage->pt->format;
1186
1187 if (stImage->pt) {
1188 unsigned face = _mesa_tex_target_to_face(target);
1189
1190 st_teximage_flush_before_map(ctx->st, stImage->pt, face, level,
1191 PIPE_TRANSFER_WRITE);
1192 texImage->Data = st_texture_image_map(ctx->st, stImage, 0,
1193 PIPE_TRANSFER_WRITE,
1194 xoffset, yoffset,
1195 width, height);
1196
1197 srcBlockStride = util_format_get_stride(pformat, width);
1198 dstBlockStride = stImage->transfer->stride;
1199 } else {
1200 assert(stImage->pt);
1201 /* TODO find good values for block and strides */
1202 /* TODO also adjust texImage->data for yoffset/xoffset */
1203 return;
1204 }
1205
1206 if (!texImage->Data) {
1207 _mesa_error(ctx, GL_OUT_OF_MEMORY, "glCompressedTexSubImage");
1208 return;
1209 }
1210
1211 assert(xoffset % util_format_get_blockwidth(pformat) == 0);
1212 assert(yoffset % util_format_get_blockheight(pformat) == 0);
1213 assert(width % util_format_get_blockwidth(pformat) == 0);
1214 assert(height % util_format_get_blockheight(pformat) == 0);
1215
1216 for (y = 0; y < height; y += util_format_get_blockheight(pformat)) {
1217 /* don't need to adjust for xoffset and yoffset as st_texture_image_map does that */
1218 const char *src = (const char*)data + srcBlockStride * util_format_get_nblocksy(pformat, y);
1219 char *dst = (char*)texImage->Data + dstBlockStride * util_format_get_nblocksy(pformat, y);
1220 memcpy(dst, src, util_format_get_stride(pformat, width));
1221 }
1222
1223 if (stImage->pt) {
1224 st_texture_image_unmap(ctx->st, stImage);
1225 texImage->Data = NULL;
1226 }
1227 }
1228
1229
1230 static void
1231 st_CompressedTexSubImage3D(GLcontext *ctx, GLenum target, GLint level,
1232 GLint xoffset, GLint yoffset, GLint zoffset,
1233 GLsizei width, GLint height, GLint depth,
1234 GLenum format,
1235 GLsizei imageSize, const GLvoid *data,
1236 struct gl_texture_object *texObj,
1237 struct gl_texture_image *texImage)
1238 {
1239 assert(0);
1240 }
1241
1242
1243
1244 /**
1245 * Do a CopyTexSubImage operation using a read transfer from the source,
1246 * a write transfer to the destination and get_tile()/put_tile() to access
1247 * the pixels/texels.
1248 *
1249 * Note: srcY=0=TOP of renderbuffer
1250 */
1251 static void
1252 fallback_copy_texsubimage(GLcontext *ctx, GLenum target, GLint level,
1253 struct st_renderbuffer *strb,
1254 struct st_texture_image *stImage,
1255 GLenum baseFormat,
1256 GLint destX, GLint destY, GLint destZ,
1257 GLint srcX, GLint srcY,
1258 GLsizei width, GLsizei height)
1259 {
1260 struct pipe_context *pipe = ctx->st->pipe;
1261 struct pipe_screen *screen = pipe->screen;
1262 struct pipe_transfer *src_trans;
1263 GLvoid *texDest;
1264 enum pipe_transfer_usage transfer_usage;
1265
1266 if (ST_DEBUG & DEBUG_FALLBACK)
1267 debug_printf("%s: fallback processing\n", __FUNCTION__);
1268
1269 assert(width <= MAX_WIDTH);
1270
1271 if (st_fb_orientation(ctx->ReadBuffer) == Y_0_TOP) {
1272 srcY = strb->Base.Height - srcY - height;
1273 }
1274
1275 src_trans = st_cond_flush_get_tex_transfer( st_context(ctx),
1276 strb->texture,
1277 0, 0, 0,
1278 PIPE_TRANSFER_READ,
1279 srcX, srcY,
1280 width, height);
1281
1282 if ((baseFormat == GL_DEPTH_COMPONENT ||
1283 baseFormat == GL_DEPTH_STENCIL) &&
1284 util_format_is_depth_and_stencil(stImage->pt->format))
1285 transfer_usage = PIPE_TRANSFER_READ_WRITE;
1286 else
1287 transfer_usage = PIPE_TRANSFER_WRITE;
1288
1289 st_teximage_flush_before_map(ctx->st, stImage->pt, 0, 0,
1290 transfer_usage);
1291
1292 texDest = st_texture_image_map(ctx->st, stImage, 0, transfer_usage,
1293 destX, destY, width, height);
1294
1295 if (baseFormat == GL_DEPTH_COMPONENT ||
1296 baseFormat == GL_DEPTH_STENCIL) {
1297 const GLboolean scaleOrBias = (ctx->Pixel.DepthScale != 1.0F ||
1298 ctx->Pixel.DepthBias != 0.0F);
1299 GLint row, yStep;
1300
1301 /* determine bottom-to-top vs. top-to-bottom order for src buffer */
1302 if (st_fb_orientation(ctx->ReadBuffer) == Y_0_TOP) {
1303 srcY = height - 1;
1304 yStep = -1;
1305 }
1306 else {
1307 srcY = 0;
1308 yStep = 1;
1309 }
1310
1311 /* To avoid a large temp memory allocation, do copy row by row */
1312 for (row = 0; row < height; row++, srcY += yStep) {
1313 uint data[MAX_WIDTH];
1314 pipe_get_tile_z(src_trans, 0, srcY, width, 1, data);
1315 if (scaleOrBias) {
1316 _mesa_scale_and_bias_depth_uint(ctx, width, data);
1317 }
1318 pipe_put_tile_z(stImage->transfer, 0, row, width, 1, data);
1319 }
1320 }
1321 else {
1322 /* RGBA format */
1323 GLfloat *tempSrc =
1324 (GLfloat *) malloc(width * height * 4 * sizeof(GLfloat));
1325
1326 if (tempSrc && texDest) {
1327 const GLint dims = 2;
1328 const GLint dstRowStride = stImage->transfer->stride;
1329 struct gl_texture_image *texImage = &stImage->base;
1330 struct gl_pixelstore_attrib unpack = ctx->DefaultPacking;
1331
1332 if (st_fb_orientation(ctx->ReadBuffer) == Y_0_TOP) {
1333 unpack.Invert = GL_TRUE;
1334 }
1335
1336 /* get float/RGBA image from framebuffer */
1337 /* XXX this usually involves a lot of int/float conversion.
1338 * try to avoid that someday.
1339 */
1340 pipe_get_tile_rgba(src_trans, 0, 0, width, height, tempSrc);
1341
1342 /* Store into texture memory.
1343 * Note that this does some special things such as pixel transfer
1344 * ops and format conversion. In particular, if the dest tex format
1345 * is actually RGBA but the user created the texture as GL_RGB we
1346 * need to fill-in/override the alpha channel with 1.0.
1347 */
1348 _mesa_texstore(ctx, dims,
1349 texImage->_BaseFormat,
1350 texImage->TexFormat,
1351 texDest,
1352 0, 0, 0,
1353 dstRowStride,
1354 texImage->ImageOffsets,
1355 width, height, 1,
1356 GL_RGBA, GL_FLOAT, tempSrc, /* src */
1357 &unpack);
1358 }
1359 else {
1360 _mesa_error(ctx, GL_OUT_OF_MEMORY, "glTexSubImage");
1361 }
1362
1363 if (tempSrc)
1364 free(tempSrc);
1365 }
1366
1367 st_texture_image_unmap(ctx->st, stImage);
1368 screen->tex_transfer_destroy(src_trans);
1369 }
1370
1371
1372
1373 /**
1374 * If the format of the src renderbuffer and the format of the dest
1375 * texture are compatible (in terms of blitting), return a TGSI writemask
1376 * to be used during the blit.
1377 * If the src/dest are incompatible, return 0.
1378 */
1379 static unsigned
1380 compatible_src_dst_formats(GLcontext *ctx,
1381 const struct gl_renderbuffer *src,
1382 const struct gl_texture_image *dst)
1383 {
1384 /* Get logical base formats for the src and dest.
1385 * That is, use the user-requested formats and not the actual, device-
1386 * chosen formats.
1387 * For example, the user may have requested an A8 texture but the
1388 * driver may actually be using an RGBA texture format. When we
1389 * copy/blit to that texture, we only want to copy the Alpha channel
1390 * and not the RGB channels.
1391 *
1392 * Similarly, when the src FBO was created an RGB format may have been
1393 * requested but the driver actually chose an RGBA format. In that case,
1394 * we don't want to copy the undefined Alpha channel to the dest texture
1395 * (it should be 1.0).
1396 */
1397 const GLenum srcFormat = _mesa_base_fbo_format(ctx, src->InternalFormat);
1398 const GLenum dstFormat = _mesa_base_tex_format(ctx, dst->InternalFormat);
1399
1400 /**
1401 * XXX when we have red-only and red/green renderbuffers we'll need
1402 * to add more cases here (or implement a general-purpose routine that
1403 * queries the existance of the R,G,B,A channels in the src and dest).
1404 */
1405 if (srcFormat == dstFormat) {
1406 /* This is the same as matching_base_formats, which should
1407 * always pass, as it did previously.
1408 */
1409 return TGSI_WRITEMASK_XYZW;
1410 }
1411 else if (srcFormat == GL_RGB && dstFormat == GL_RGBA) {
1412 /* Make sure that A in the dest is 1. The actual src format
1413 * may be RGBA and have undefined A values.
1414 */
1415 return TGSI_WRITEMASK_XYZ;
1416 }
1417 else if (srcFormat == GL_RGBA && dstFormat == GL_RGB) {
1418 /* Make sure that A in the dest is 1. The actual dst format
1419 * may be RGBA and will need A=1 to provide proper alpha values
1420 * when sampled later.
1421 */
1422 return TGSI_WRITEMASK_XYZ;
1423 }
1424 else {
1425 if (ST_DEBUG & DEBUG_FALLBACK)
1426 debug_printf("%s failed for src %s, dst %s\n",
1427 __FUNCTION__,
1428 _mesa_lookup_enum_by_nr(srcFormat),
1429 _mesa_lookup_enum_by_nr(dstFormat));
1430
1431 /* Otherwise fail.
1432 */
1433 return 0;
1434 }
1435 }
1436
1437
1438
1439 /**
1440 * Do a CopyTex[Sub]Image1/2/3D() using a hardware (blit) path if possible.
1441 * Note that the region to copy has already been clipped so we know we
1442 * won't read from outside the source renderbuffer's bounds.
1443 *
1444 * Note: srcY=0=Bottom of renderbuffer (GL convention)
1445 */
1446 static void
1447 st_copy_texsubimage(GLcontext *ctx,
1448 GLenum target, GLint level,
1449 GLint destX, GLint destY, GLint destZ,
1450 GLint srcX, GLint srcY,
1451 GLsizei width, GLsizei height)
1452 {
1453 struct gl_texture_unit *texUnit =
1454 &ctx->Texture.Unit[ctx->Texture.CurrentUnit];
1455 struct gl_texture_object *texObj =
1456 _mesa_select_tex_object(ctx, texUnit, target);
1457 struct gl_texture_image *texImage =
1458 _mesa_select_tex_image(ctx, texObj, target, level);
1459 struct st_texture_image *stImage = st_texture_image(texImage);
1460 const GLenum texBaseFormat = texImage->_BaseFormat;
1461 struct gl_framebuffer *fb = ctx->ReadBuffer;
1462 struct st_renderbuffer *strb;
1463 struct pipe_context *pipe = ctx->st->pipe;
1464 struct pipe_screen *screen = pipe->screen;
1465 enum pipe_format dest_format, src_format;
1466 GLboolean use_fallback = GL_TRUE;
1467 GLboolean matching_base_formats;
1468 GLuint format_writemask;
1469 struct pipe_surface *dest_surface = NULL;
1470 GLboolean do_flip = (st_fb_orientation(ctx->ReadBuffer) == Y_0_TOP);
1471
1472 /* any rendering in progress must flushed before we grab the fb image */
1473 st_flush(ctx->st, PIPE_FLUSH_RENDER_CACHE, NULL);
1474
1475 /* make sure finalize_textures has been called?
1476 */
1477 if (0) st_validate_state(ctx->st);
1478
1479 /* determine if copying depth or color data */
1480 if (texBaseFormat == GL_DEPTH_COMPONENT ||
1481 texBaseFormat == GL_DEPTH_STENCIL) {
1482 strb = st_renderbuffer(fb->_DepthBuffer);
1483 }
1484 else {
1485 /* texBaseFormat == GL_RGB, GL_RGBA, GL_ALPHA, etc */
1486 strb = st_renderbuffer(fb->_ColorReadBuffer);
1487 }
1488
1489 if (!strb || !strb->surface || !stImage->pt) {
1490 debug_printf("%s: null strb or stImage\n", __FUNCTION__);
1491 return;
1492 }
1493
1494 if (srcX < 0) {
1495 width -= -srcX;
1496 destX += -srcX;
1497 srcX = 0;
1498 }
1499
1500 if (srcY < 0) {
1501 height -= -srcY;
1502 destY += -srcY;
1503 srcY = 0;
1504 }
1505
1506 if (destX < 0) {
1507 width -= -destX;
1508 srcX += -destX;
1509 destX = 0;
1510 }
1511
1512 if (destY < 0) {
1513 height -= -destY;
1514 srcY += -destY;
1515 destY = 0;
1516 }
1517
1518 if (width < 0 || height < 0)
1519 return;
1520
1521
1522 assert(strb);
1523 assert(strb->surface);
1524 assert(stImage->pt);
1525
1526 src_format = strb->surface->format;
1527 dest_format = stImage->pt->format;
1528
1529 /*
1530 * Determine if the src framebuffer and dest texture have the same
1531 * base format. We need this to detect a case such as the framebuffer
1532 * being GL_RGBA but the texture being GL_RGB. If the actual hardware
1533 * texture format stores RGBA we need to set A=1 (overriding the
1534 * framebuffer's alpha values). We can't do that with the blit or
1535 * textured-quad paths.
1536 */
1537 matching_base_formats =
1538 (_mesa_get_format_base_format(strb->Base.Format) ==
1539 _mesa_get_format_base_format(texImage->TexFormat));
1540 format_writemask = compatible_src_dst_formats(ctx, &strb->Base, texImage);
1541
1542 if (ctx->_ImageTransferState == 0x0) {
1543
1544 if (pipe->surface_copy &&
1545 matching_base_formats &&
1546 src_format == dest_format &&
1547 !do_flip)
1548 {
1549 /* use surface_copy() / blit */
1550
1551 dest_surface = screen->get_tex_surface(screen, stImage->pt,
1552 stImage->face, stImage->level,
1553 destZ,
1554 PIPE_BUFFER_USAGE_GPU_WRITE);
1555
1556 /* for surface_copy(), y=0=top, always */
1557 pipe->surface_copy(pipe,
1558 /* dest */
1559 dest_surface,
1560 destX, destY,
1561 /* src */
1562 strb->surface,
1563 srcX, srcY,
1564 /* size */
1565 width, height);
1566 use_fallback = GL_FALSE;
1567 }
1568 else if (format_writemask &&
1569 texBaseFormat != GL_DEPTH_COMPONENT &&
1570 texBaseFormat != GL_DEPTH_STENCIL &&
1571 screen->is_format_supported(screen, src_format,
1572 PIPE_TEXTURE_2D,
1573 PIPE_TEXTURE_USAGE_SAMPLER,
1574 0) &&
1575 screen->is_format_supported(screen, dest_format,
1576 PIPE_TEXTURE_2D,
1577 PIPE_TEXTURE_USAGE_RENDER_TARGET,
1578 0)) {
1579 /* draw textured quad to do the copy */
1580 GLint srcY0, srcY1;
1581
1582 dest_surface = screen->get_tex_surface(screen, stImage->pt,
1583 stImage->face, stImage->level,
1584 destZ,
1585 PIPE_BUFFER_USAGE_GPU_WRITE);
1586
1587 if (do_flip) {
1588 srcY1 = strb->Base.Height - srcY - height;
1589 srcY0 = srcY1 + height;
1590 }
1591 else {
1592 srcY0 = srcY;
1593 srcY1 = srcY0 + height;
1594 }
1595 util_blit_pixels_writemask(ctx->st->blit,
1596 strb->surface,
1597 srcX, srcY0,
1598 srcX + width, srcY1,
1599 dest_surface,
1600 destX, destY,
1601 destX + width, destY + height,
1602 0.0, PIPE_TEX_MIPFILTER_NEAREST,
1603 format_writemask);
1604 use_fallback = GL_FALSE;
1605 }
1606
1607 if (dest_surface)
1608 pipe_surface_reference(&dest_surface, NULL);
1609 }
1610
1611 if (use_fallback) {
1612 /* software fallback */
1613 fallback_copy_texsubimage(ctx, target, level,
1614 strb, stImage, texBaseFormat,
1615 destX, destY, destZ,
1616 srcX, srcY, width, height);
1617 }
1618 }
1619
1620
1621
1622 static void
1623 st_CopyTexImage1D(GLcontext * ctx, GLenum target, GLint level,
1624 GLenum internalFormat,
1625 GLint x, GLint y, GLsizei width, GLint border)
1626 {
1627 struct gl_texture_unit *texUnit =
1628 &ctx->Texture.Unit[ctx->Texture.CurrentUnit];
1629 struct gl_texture_object *texObj =
1630 _mesa_select_tex_object(ctx, texUnit, target);
1631 struct gl_texture_image *texImage =
1632 _mesa_select_tex_image(ctx, texObj, target, level);
1633
1634 /* Setup or redefine the texture object, texture and texture
1635 * image. Don't populate yet.
1636 */
1637 ctx->Driver.TexImage1D(ctx, target, level, internalFormat,
1638 width, border,
1639 GL_RGBA, CHAN_TYPE, NULL,
1640 &ctx->DefaultPacking, texObj, texImage);
1641
1642 st_copy_texsubimage(ctx, target, level,
1643 0, 0, 0, /* destX,Y,Z */
1644 x, y, width, 1); /* src X, Y, size */
1645 }
1646
1647
1648 static void
1649 st_CopyTexImage2D(GLcontext * ctx, GLenum target, GLint level,
1650 GLenum internalFormat,
1651 GLint x, GLint y, GLsizei width, GLsizei height,
1652 GLint border)
1653 {
1654 struct gl_texture_unit *texUnit =
1655 &ctx->Texture.Unit[ctx->Texture.CurrentUnit];
1656 struct gl_texture_object *texObj =
1657 _mesa_select_tex_object(ctx, texUnit, target);
1658 struct gl_texture_image *texImage =
1659 _mesa_select_tex_image(ctx, texObj, target, level);
1660
1661 /* Setup or redefine the texture object, texture and texture
1662 * image. Don't populate yet.
1663 */
1664 ctx->Driver.TexImage2D(ctx, target, level, internalFormat,
1665 width, height, border,
1666 GL_RGBA, CHAN_TYPE, NULL,
1667 &ctx->DefaultPacking, texObj, texImage);
1668
1669 st_copy_texsubimage(ctx, target, level,
1670 0, 0, 0, /* destX,Y,Z */
1671 x, y, width, height); /* src X, Y, size */
1672 }
1673
1674
1675 static void
1676 st_CopyTexSubImage1D(GLcontext * ctx, GLenum target, GLint level,
1677 GLint xoffset, GLint x, GLint y, GLsizei width)
1678 {
1679 const GLint yoffset = 0, zoffset = 0;
1680 const GLsizei height = 1;
1681 st_copy_texsubimage(ctx, target, level,
1682 xoffset, yoffset, zoffset, /* destX,Y,Z */
1683 x, y, width, height); /* src X, Y, size */
1684 }
1685
1686
1687 static void
1688 st_CopyTexSubImage2D(GLcontext * ctx, GLenum target, GLint level,
1689 GLint xoffset, GLint yoffset,
1690 GLint x, GLint y, GLsizei width, GLsizei height)
1691 {
1692 const GLint zoffset = 0;
1693 st_copy_texsubimage(ctx, target, level,
1694 xoffset, yoffset, zoffset, /* destX,Y,Z */
1695 x, y, width, height); /* src X, Y, size */
1696 }
1697
1698
1699 static void
1700 st_CopyTexSubImage3D(GLcontext * ctx, GLenum target, GLint level,
1701 GLint xoffset, GLint yoffset, GLint zoffset,
1702 GLint x, GLint y, GLsizei width, GLsizei height)
1703 {
1704 st_copy_texsubimage(ctx, target, level,
1705 xoffset, yoffset, zoffset, /* destX,Y,Z */
1706 x, y, width, height); /* src X, Y, size */
1707 }
1708
1709
1710 static void
1711 copy_image_data_to_texture(struct st_context *st,
1712 struct st_texture_object *stObj,
1713 GLuint dstLevel,
1714 struct st_texture_image *stImage)
1715 {
1716 if (stImage->pt) {
1717 /* Copy potentially with the blitter:
1718 */
1719 st_texture_image_copy(st->pipe,
1720 stObj->pt, dstLevel, /* dest texture, level */
1721 stImage->pt, /* src texture */
1722 stImage->face);
1723
1724 pipe_texture_reference(&stImage->pt, NULL);
1725 }
1726 else if (stImage->base.Data) {
1727 /* More straightforward upload.
1728 */
1729 st_teximage_flush_before_map(st, stObj->pt, stImage->face, dstLevel,
1730 PIPE_TRANSFER_WRITE);
1731
1732 st_texture_image_data(st,
1733 stObj->pt,
1734 stImage->face,
1735 dstLevel,
1736 stImage->base.Data,
1737 stImage->base.RowStride *
1738 util_format_get_blocksize(stObj->pt->format),
1739 stImage->base.RowStride *
1740 stImage->base.Height *
1741 util_format_get_blocksize(stObj->pt->format));
1742 _mesa_align_free(stImage->base.Data);
1743 stImage->base.Data = NULL;
1744 }
1745
1746 pipe_texture_reference(&stImage->pt, stObj->pt);
1747 }
1748
1749
1750 /**
1751 * Called during state validation. When this function is finished,
1752 * the texture object should be ready for rendering.
1753 * \return GL_TRUE for success, GL_FALSE for failure (out of mem)
1754 */
1755 GLboolean
1756 st_finalize_texture(GLcontext *ctx,
1757 struct pipe_context *pipe,
1758 struct gl_texture_object *tObj,
1759 GLboolean *needFlush)
1760 {
1761 struct st_texture_object *stObj = st_texture_object(tObj);
1762 const GLuint nr_faces = (stObj->base.Target == GL_TEXTURE_CUBE_MAP) ? 6 : 1;
1763 GLuint blockSize, face;
1764 struct st_texture_image *firstImage;
1765
1766 *needFlush = GL_FALSE;
1767
1768 if (stObj->base._Complete) {
1769 /* The texture is complete and we know exactly how many mipmap levels
1770 * are present/needed. This is conditional because we may be called
1771 * from the st_generate_mipmap() function when the texture object is
1772 * incomplete. In that case, we'll have set stObj->lastLevel before
1773 * we get here.
1774 */
1775 if (stObj->base.MinFilter == GL_LINEAR ||
1776 stObj->base.MinFilter == GL_NEAREST)
1777 stObj->lastLevel = stObj->base.BaseLevel;
1778 else
1779 stObj->lastLevel = stObj->base._MaxLevel - stObj->base.BaseLevel;
1780 }
1781
1782 firstImage = st_texture_image(stObj->base.Image[0][stObj->base.BaseLevel]);
1783
1784 /* If both firstImage and stObj point to a texture which can contain
1785 * all active images, favour firstImage. Note that because of the
1786 * completeness requirement, we know that the image dimensions
1787 * will match.
1788 */
1789 if (firstImage->pt &&
1790 firstImage->pt != stObj->pt &&
1791 firstImage->pt->last_level >= stObj->lastLevel) {
1792 pipe_texture_reference(&stObj->pt, firstImage->pt);
1793 }
1794
1795 /* bytes per pixel block (blocks are usually 1x1) */
1796 blockSize = _mesa_get_format_bytes(firstImage->base.TexFormat);
1797
1798 /* If we already have a gallium texture, check that it matches the texture
1799 * object's format, target, size, num_levels, etc.
1800 */
1801 if (stObj->pt) {
1802 const enum pipe_format fmt =
1803 st_mesa_format_to_pipe_format(firstImage->base.TexFormat);
1804 if (stObj->pt->target != gl_target_to_pipe(stObj->base.Target) ||
1805 stObj->pt->format != fmt ||
1806 stObj->pt->last_level < stObj->lastLevel ||
1807 stObj->pt->width0 != firstImage->base.Width2 ||
1808 stObj->pt->height0 != firstImage->base.Height2 ||
1809 stObj->pt->depth0 != firstImage->base.Depth2)
1810 {
1811 pipe_texture_reference(&stObj->pt, NULL);
1812 ctx->st->dirty.st |= ST_NEW_FRAMEBUFFER;
1813 }
1814 }
1815
1816 /* May need to create a new gallium texture:
1817 */
1818 if (!stObj->pt) {
1819 const enum pipe_format fmt =
1820 st_mesa_format_to_pipe_format(firstImage->base.TexFormat);
1821 GLuint usage = default_usage(fmt);
1822
1823 stObj->pt = st_texture_create(ctx->st,
1824 gl_target_to_pipe(stObj->base.Target),
1825 fmt,
1826 stObj->lastLevel,
1827 firstImage->base.Width2,
1828 firstImage->base.Height2,
1829 firstImage->base.Depth2,
1830 usage);
1831
1832 if (!stObj->pt) {
1833 _mesa_error(ctx, GL_OUT_OF_MEMORY, "glTexImage");
1834 return GL_FALSE;
1835 }
1836 }
1837
1838 /* Pull in any images not in the object's texture:
1839 */
1840 for (face = 0; face < nr_faces; face++) {
1841 GLuint level;
1842 for (level = 0; level <= stObj->lastLevel; level++) {
1843 struct st_texture_image *stImage =
1844 st_texture_image(stObj->base.Image[face][stObj->base.BaseLevel + level]);
1845
1846 /* Need to import images in main memory or held in other textures.
1847 */
1848 if (stImage && stObj->pt != stImage->pt) {
1849 copy_image_data_to_texture(ctx->st, stObj, level, stImage);
1850 *needFlush = GL_TRUE;
1851 }
1852 }
1853 }
1854
1855 return GL_TRUE;
1856 }
1857
1858
1859 /**
1860 * Returns pointer to a default/dummy texture.
1861 * This is typically used when the current shader has tex/sample instructions
1862 * but the user has not provided a (any) texture(s).
1863 */
1864 struct gl_texture_object *
1865 st_get_default_texture(struct st_context *st)
1866 {
1867 if (!st->default_texture) {
1868 static const GLenum target = GL_TEXTURE_2D;
1869 GLubyte pixels[16][16][4];
1870 struct gl_texture_object *texObj;
1871 struct gl_texture_image *texImg;
1872 GLuint i, j;
1873
1874 /* The ARB_fragment_program spec says (0,0,0,1) should be returned
1875 * when attempting to sample incomplete textures.
1876 */
1877 for (i = 0; i < 16; i++) {
1878 for (j = 0; j < 16; j++) {
1879 pixels[i][j][0] = 0;
1880 pixels[i][j][1] = 0;
1881 pixels[i][j][2] = 0;
1882 pixels[i][j][3] = 255;
1883 }
1884 }
1885
1886 texObj = st->ctx->Driver.NewTextureObject(st->ctx, 0, target);
1887
1888 texImg = _mesa_get_tex_image(st->ctx, texObj, target, 0);
1889
1890 _mesa_init_teximage_fields(st->ctx, target, texImg,
1891 16, 16, 1, 0, /* w, h, d, border */
1892 GL_RGBA);
1893
1894 st_TexImage(st->ctx, 2, target,
1895 0, GL_RGBA, /* level, intformat */
1896 16, 16, 1, 0, /* w, h, d, border */
1897 GL_RGBA, GL_UNSIGNED_BYTE, pixels,
1898 &st->ctx->DefaultPacking,
1899 texObj, texImg,
1900 0, 0);
1901
1902 texObj->MinFilter = GL_NEAREST;
1903 texObj->MagFilter = GL_NEAREST;
1904 texObj->_Complete = GL_TRUE;
1905
1906 st->default_texture = texObj;
1907 }
1908 return st->default_texture;
1909 }
1910
1911
1912 void
1913 st_init_texture_functions(struct dd_function_table *functions)
1914 {
1915 functions->ChooseTextureFormat = st_ChooseTextureFormat;
1916 functions->TexImage1D = st_TexImage1D;
1917 functions->TexImage2D = st_TexImage2D;
1918 functions->TexImage3D = st_TexImage3D;
1919 functions->TexSubImage1D = st_TexSubImage1D;
1920 functions->TexSubImage2D = st_TexSubImage2D;
1921 functions->TexSubImage3D = st_TexSubImage3D;
1922 functions->CompressedTexSubImage1D = st_CompressedTexSubImage1D;
1923 functions->CompressedTexSubImage2D = st_CompressedTexSubImage2D;
1924 functions->CompressedTexSubImage3D = st_CompressedTexSubImage3D;
1925 functions->CopyTexImage1D = st_CopyTexImage1D;
1926 functions->CopyTexImage2D = st_CopyTexImage2D;
1927 functions->CopyTexSubImage1D = st_CopyTexSubImage1D;
1928 functions->CopyTexSubImage2D = st_CopyTexSubImage2D;
1929 functions->CopyTexSubImage3D = st_CopyTexSubImage3D;
1930 functions->GenerateMipmap = st_generate_mipmap;
1931
1932 functions->GetTexImage = st_GetTexImage;
1933
1934 /* compressed texture functions */
1935 functions->CompressedTexImage2D = st_CompressedTexImage2D;
1936 functions->GetCompressedTexImage = st_GetCompressedTexImage;
1937
1938 functions->NewTextureObject = st_NewTextureObject;
1939 functions->NewTextureImage = st_NewTextureImage;
1940 functions->DeleteTexture = st_DeleteTextureObject;
1941 functions->FreeTexImageData = st_FreeTextureImageData;
1942 functions->UpdateTexturePalette = 0;
1943
1944 functions->TextureMemCpy = do_memcpy;
1945
1946 /* XXX Temporary until we can query pipe's texture sizes */
1947 functions->TestProxyTexImage = _mesa_test_proxy_teximage;
1948 }