st/mesa: fix incorrect RowStride computation
[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 /* compute stride in texels from stride in bytes */
935 texImage->RowStride = stImage->transfer->stride
936 * util_format_get_blockwidth(stImage->pt->format)
937 / util_format_get_blocksize(stImage->pt->format);
938 }
939 else {
940 /* Otherwise, the image should actually be stored in
941 * texImage->Data. This is pretty confusing for
942 * everybody, I'd much prefer to separate the two functions of
943 * texImage->Data - storage for texture images in main memory
944 * and access (ie mappings) of images. In other words, we'd
945 * create a new texImage->Map field and leave Data simply for
946 * storage.
947 */
948 assert(texImage->Data);
949 }
950
951 depth = texImage->Depth;
952 texImage->Depth = 1;
953
954 dest = (GLubyte *) pixels;
955
956 for (i = 0; i < depth; i++) {
957 if (compressed_dst) {
958 _mesa_get_compressed_teximage(ctx, target, level, dest,
959 texObj, texImage);
960 }
961 else {
962 _mesa_get_teximage(ctx, target, level, format, type, dest,
963 texObj, texImage);
964 }
965
966 if (stImage->pt && i + 1 < depth) {
967 /* unmap this slice */
968 st_texture_image_unmap(ctx->st, stImage);
969 /* map next slice of 3D texture */
970 texImage->Data = st_texture_image_map(ctx->st, stImage, i + 1,
971 PIPE_TRANSFER_READ, 0, 0,
972 stImage->base.Width,
973 stImage->base.Height);
974 dest += dstImageStride;
975 }
976 }
977
978 texImage->Depth = depth;
979
980 /* Unmap */
981 if (stImage->pt) {
982 st_texture_image_unmap(ctx->st, stImage);
983 texImage->Data = NULL;
984 }
985 }
986
987
988 static void
989 st_GetTexImage(GLcontext * ctx, GLenum target, GLint level,
990 GLenum format, GLenum type, GLvoid * pixels,
991 struct gl_texture_object *texObj,
992 struct gl_texture_image *texImage)
993 {
994 st_get_tex_image(ctx, target, level, format, type, pixels, texObj, texImage,
995 GL_FALSE);
996 }
997
998
999 static void
1000 st_GetCompressedTexImage(GLcontext *ctx, GLenum target, GLint level,
1001 GLvoid *pixels,
1002 struct gl_texture_object *texObj,
1003 struct gl_texture_image *texImage)
1004 {
1005 st_get_tex_image(ctx, target, level, 0, 0, pixels, texObj, texImage,
1006 GL_TRUE);
1007 }
1008
1009
1010
1011 static void
1012 st_TexSubimage(GLcontext *ctx, GLint dims, GLenum target, GLint level,
1013 GLint xoffset, GLint yoffset, GLint zoffset,
1014 GLint width, GLint height, GLint depth,
1015 GLenum format, GLenum type, const void *pixels,
1016 const struct gl_pixelstore_attrib *packing,
1017 struct gl_texture_object *texObj,
1018 struct gl_texture_image *texImage)
1019 {
1020 struct pipe_screen *screen = ctx->st->pipe->screen;
1021 struct st_texture_image *stImage = st_texture_image(texImage);
1022 GLuint dstRowStride;
1023 const GLuint srcImageStride =
1024 _mesa_image_image_stride(packing, width, height, format, type);
1025 GLint i;
1026 const GLubyte *src;
1027 /* init to silence warning only: */
1028 enum pipe_transfer_usage transfer_usage = PIPE_TRANSFER_WRITE;
1029
1030 DBG("%s target %s level %d offset %d,%d %dx%d\n", __FUNCTION__,
1031 _mesa_lookup_enum_by_nr(target),
1032 level, xoffset, yoffset, width, height);
1033
1034 pixels =
1035 _mesa_validate_pbo_teximage(ctx, dims, width, height, depth, format,
1036 type, pixels, packing, "glTexSubImage2D");
1037 if (!pixels)
1038 return;
1039
1040 /* See if we can do texture compression with a blit/render.
1041 */
1042 if (!ctx->Mesa_DXTn &&
1043 _mesa_is_format_compressed(texImage->TexFormat) &&
1044 screen->is_format_supported(screen,
1045 stImage->pt->format,
1046 stImage->pt->target,
1047 PIPE_TEXTURE_USAGE_RENDER_TARGET, 0)) {
1048 if (compress_with_blit(ctx, target, level,
1049 xoffset, yoffset, zoffset,
1050 width, height, depth,
1051 format, type, pixels, packing, texImage)) {
1052 goto done;
1053 }
1054 }
1055
1056 /* Map buffer if necessary. Need to lock to prevent other contexts
1057 * from uploading the buffer under us.
1058 */
1059 if (stImage->pt) {
1060 unsigned face = _mesa_tex_target_to_face(target);
1061
1062 if (format == GL_DEPTH_COMPONENT &&
1063 util_format_is_depth_and_stencil(stImage->pt->format))
1064 transfer_usage = PIPE_TRANSFER_READ_WRITE;
1065 else
1066 transfer_usage = PIPE_TRANSFER_WRITE;
1067
1068 st_teximage_flush_before_map(ctx->st, stImage->pt, face, level,
1069 transfer_usage);
1070 texImage->Data = st_texture_image_map(ctx->st, stImage, zoffset,
1071 transfer_usage,
1072 xoffset, yoffset,
1073 width, height);
1074 }
1075
1076 if (!texImage->Data) {
1077 _mesa_error(ctx, GL_OUT_OF_MEMORY, "glTexSubImage");
1078 goto done;
1079 }
1080
1081 src = (const GLubyte *) pixels;
1082 dstRowStride = stImage->transfer->stride;
1083
1084 for (i = 0; i < depth; i++) {
1085 if (!_mesa_texstore(ctx, dims, texImage->_BaseFormat,
1086 texImage->TexFormat,
1087 texImage->Data,
1088 0, 0, 0,
1089 dstRowStride,
1090 texImage->ImageOffsets,
1091 width, height, 1,
1092 format, type, src, packing)) {
1093 _mesa_error(ctx, GL_OUT_OF_MEMORY, "glTexSubImage");
1094 }
1095
1096 if (stImage->pt && i + 1 < depth) {
1097 /* unmap this slice */
1098 st_texture_image_unmap(ctx->st, stImage);
1099 /* map next slice of 3D texture */
1100 texImage->Data = st_texture_image_map(ctx->st, stImage,
1101 zoffset + i + 1,
1102 transfer_usage,
1103 xoffset, yoffset,
1104 width, height);
1105 src += srcImageStride;
1106 }
1107 }
1108
1109 done:
1110 _mesa_unmap_teximage_pbo(ctx, packing);
1111
1112 if (stImage->pt && texImage->Data) {
1113 st_texture_image_unmap(ctx->st, stImage);
1114 texImage->Data = NULL;
1115 }
1116 }
1117
1118
1119
1120 static void
1121 st_TexSubImage3D(GLcontext *ctx, GLenum target, GLint level,
1122 GLint xoffset, GLint yoffset, GLint zoffset,
1123 GLsizei width, GLsizei height, GLsizei depth,
1124 GLenum format, GLenum type, const GLvoid *pixels,
1125 const struct gl_pixelstore_attrib *packing,
1126 struct gl_texture_object *texObj,
1127 struct gl_texture_image *texImage)
1128 {
1129 st_TexSubimage(ctx, 3, target, level, xoffset, yoffset, zoffset,
1130 width, height, depth, format, type,
1131 pixels, packing, texObj, texImage);
1132 }
1133
1134
1135 static void
1136 st_TexSubImage2D(GLcontext *ctx, GLenum target, GLint level,
1137 GLint xoffset, GLint yoffset,
1138 GLsizei width, GLsizei height,
1139 GLenum format, GLenum type, const GLvoid * pixels,
1140 const struct gl_pixelstore_attrib *packing,
1141 struct gl_texture_object *texObj,
1142 struct gl_texture_image *texImage)
1143 {
1144 st_TexSubimage(ctx, 2, target, level, xoffset, yoffset, 0,
1145 width, height, 1, format, type,
1146 pixels, packing, texObj, texImage);
1147 }
1148
1149
1150 static void
1151 st_TexSubImage1D(GLcontext *ctx, GLenum target, GLint level,
1152 GLint xoffset, GLsizei width, GLenum format, GLenum type,
1153 const GLvoid * pixels,
1154 const struct gl_pixelstore_attrib *packing,
1155 struct gl_texture_object *texObj,
1156 struct gl_texture_image *texImage)
1157 {
1158 st_TexSubimage(ctx, 1, target, level, xoffset, 0, 0, width, 1, 1,
1159 format, type, pixels, packing, texObj, texImage);
1160 }
1161
1162
1163 static void
1164 st_CompressedTexSubImage1D(GLcontext *ctx, GLenum target, GLint level,
1165 GLint xoffset, GLsizei width,
1166 GLenum format,
1167 GLsizei imageSize, const GLvoid *data,
1168 struct gl_texture_object *texObj,
1169 struct gl_texture_image *texImage)
1170 {
1171 assert(0);
1172 }
1173
1174
1175 static void
1176 st_CompressedTexSubImage2D(GLcontext *ctx, GLenum target, GLint level,
1177 GLint xoffset, GLint yoffset,
1178 GLsizei width, GLint height,
1179 GLenum format,
1180 GLsizei imageSize, const GLvoid *data,
1181 struct gl_texture_object *texObj,
1182 struct gl_texture_image *texImage)
1183 {
1184 struct st_texture_image *stImage = st_texture_image(texImage);
1185 int srcBlockStride;
1186 int dstBlockStride;
1187 int y;
1188 enum pipe_format pformat= stImage->pt->format;
1189
1190 if (stImage->pt) {
1191 unsigned face = _mesa_tex_target_to_face(target);
1192
1193 st_teximage_flush_before_map(ctx->st, stImage->pt, face, level,
1194 PIPE_TRANSFER_WRITE);
1195 texImage->Data = st_texture_image_map(ctx->st, stImage, 0,
1196 PIPE_TRANSFER_WRITE,
1197 xoffset, yoffset,
1198 width, height);
1199
1200 srcBlockStride = util_format_get_stride(pformat, width);
1201 dstBlockStride = stImage->transfer->stride;
1202 } else {
1203 assert(stImage->pt);
1204 /* TODO find good values for block and strides */
1205 /* TODO also adjust texImage->data for yoffset/xoffset */
1206 return;
1207 }
1208
1209 if (!texImage->Data) {
1210 _mesa_error(ctx, GL_OUT_OF_MEMORY, "glCompressedTexSubImage");
1211 return;
1212 }
1213
1214 assert(xoffset % util_format_get_blockwidth(pformat) == 0);
1215 assert(yoffset % util_format_get_blockheight(pformat) == 0);
1216 assert(width % util_format_get_blockwidth(pformat) == 0);
1217 assert(height % util_format_get_blockheight(pformat) == 0);
1218
1219 for (y = 0; y < height; y += util_format_get_blockheight(pformat)) {
1220 /* don't need to adjust for xoffset and yoffset as st_texture_image_map does that */
1221 const char *src = (const char*)data + srcBlockStride * util_format_get_nblocksy(pformat, y);
1222 char *dst = (char*)texImage->Data + dstBlockStride * util_format_get_nblocksy(pformat, y);
1223 memcpy(dst, src, util_format_get_stride(pformat, width));
1224 }
1225
1226 if (stImage->pt) {
1227 st_texture_image_unmap(ctx->st, stImage);
1228 texImage->Data = NULL;
1229 }
1230 }
1231
1232
1233 static void
1234 st_CompressedTexSubImage3D(GLcontext *ctx, GLenum target, GLint level,
1235 GLint xoffset, GLint yoffset, GLint zoffset,
1236 GLsizei width, GLint height, GLint depth,
1237 GLenum format,
1238 GLsizei imageSize, const GLvoid *data,
1239 struct gl_texture_object *texObj,
1240 struct gl_texture_image *texImage)
1241 {
1242 assert(0);
1243 }
1244
1245
1246
1247 /**
1248 * Do a CopyTexSubImage operation using a read transfer from the source,
1249 * a write transfer to the destination and get_tile()/put_tile() to access
1250 * the pixels/texels.
1251 *
1252 * Note: srcY=0=TOP of renderbuffer
1253 */
1254 static void
1255 fallback_copy_texsubimage(GLcontext *ctx, GLenum target, GLint level,
1256 struct st_renderbuffer *strb,
1257 struct st_texture_image *stImage,
1258 GLenum baseFormat,
1259 GLint destX, GLint destY, GLint destZ,
1260 GLint srcX, GLint srcY,
1261 GLsizei width, GLsizei height)
1262 {
1263 struct pipe_context *pipe = ctx->st->pipe;
1264 struct pipe_screen *screen = pipe->screen;
1265 struct pipe_transfer *src_trans;
1266 GLvoid *texDest;
1267 enum pipe_transfer_usage transfer_usage;
1268
1269 if (ST_DEBUG & DEBUG_FALLBACK)
1270 debug_printf("%s: fallback processing\n", __FUNCTION__);
1271
1272 assert(width <= MAX_WIDTH);
1273
1274 if (st_fb_orientation(ctx->ReadBuffer) == Y_0_TOP) {
1275 srcY = strb->Base.Height - srcY - height;
1276 }
1277
1278 src_trans = st_cond_flush_get_tex_transfer( st_context(ctx),
1279 strb->texture,
1280 0, 0, 0,
1281 PIPE_TRANSFER_READ,
1282 srcX, srcY,
1283 width, height);
1284
1285 if ((baseFormat == GL_DEPTH_COMPONENT ||
1286 baseFormat == GL_DEPTH_STENCIL) &&
1287 util_format_is_depth_and_stencil(stImage->pt->format))
1288 transfer_usage = PIPE_TRANSFER_READ_WRITE;
1289 else
1290 transfer_usage = PIPE_TRANSFER_WRITE;
1291
1292 st_teximage_flush_before_map(ctx->st, stImage->pt, 0, 0,
1293 transfer_usage);
1294
1295 texDest = st_texture_image_map(ctx->st, stImage, 0, transfer_usage,
1296 destX, destY, width, height);
1297
1298 if (baseFormat == GL_DEPTH_COMPONENT ||
1299 baseFormat == GL_DEPTH_STENCIL) {
1300 const GLboolean scaleOrBias = (ctx->Pixel.DepthScale != 1.0F ||
1301 ctx->Pixel.DepthBias != 0.0F);
1302 GLint row, yStep;
1303
1304 /* determine bottom-to-top vs. top-to-bottom order for src buffer */
1305 if (st_fb_orientation(ctx->ReadBuffer) == Y_0_TOP) {
1306 srcY = height - 1;
1307 yStep = -1;
1308 }
1309 else {
1310 srcY = 0;
1311 yStep = 1;
1312 }
1313
1314 /* To avoid a large temp memory allocation, do copy row by row */
1315 for (row = 0; row < height; row++, srcY += yStep) {
1316 uint data[MAX_WIDTH];
1317 pipe_get_tile_z(src_trans, 0, srcY, width, 1, data);
1318 if (scaleOrBias) {
1319 _mesa_scale_and_bias_depth_uint(ctx, width, data);
1320 }
1321 pipe_put_tile_z(stImage->transfer, 0, row, width, 1, data);
1322 }
1323 }
1324 else {
1325 /* RGBA format */
1326 GLfloat *tempSrc =
1327 (GLfloat *) malloc(width * height * 4 * sizeof(GLfloat));
1328
1329 if (tempSrc && texDest) {
1330 const GLint dims = 2;
1331 const GLint dstRowStride = stImage->transfer->stride;
1332 struct gl_texture_image *texImage = &stImage->base;
1333 struct gl_pixelstore_attrib unpack = ctx->DefaultPacking;
1334
1335 if (st_fb_orientation(ctx->ReadBuffer) == Y_0_TOP) {
1336 unpack.Invert = GL_TRUE;
1337 }
1338
1339 /* get float/RGBA image from framebuffer */
1340 /* XXX this usually involves a lot of int/float conversion.
1341 * try to avoid that someday.
1342 */
1343 pipe_get_tile_rgba(src_trans, 0, 0, width, height, tempSrc);
1344
1345 /* Store into texture memory.
1346 * Note that this does some special things such as pixel transfer
1347 * ops and format conversion. In particular, if the dest tex format
1348 * is actually RGBA but the user created the texture as GL_RGB we
1349 * need to fill-in/override the alpha channel with 1.0.
1350 */
1351 _mesa_texstore(ctx, dims,
1352 texImage->_BaseFormat,
1353 texImage->TexFormat,
1354 texDest,
1355 0, 0, 0,
1356 dstRowStride,
1357 texImage->ImageOffsets,
1358 width, height, 1,
1359 GL_RGBA, GL_FLOAT, tempSrc, /* src */
1360 &unpack);
1361 }
1362 else {
1363 _mesa_error(ctx, GL_OUT_OF_MEMORY, "glTexSubImage");
1364 }
1365
1366 if (tempSrc)
1367 free(tempSrc);
1368 }
1369
1370 st_texture_image_unmap(ctx->st, stImage);
1371 screen->tex_transfer_destroy(src_trans);
1372 }
1373
1374
1375
1376 /**
1377 * If the format of the src renderbuffer and the format of the dest
1378 * texture are compatible (in terms of blitting), return a TGSI writemask
1379 * to be used during the blit.
1380 * If the src/dest are incompatible, return 0.
1381 */
1382 static unsigned
1383 compatible_src_dst_formats(GLcontext *ctx,
1384 const struct gl_renderbuffer *src,
1385 const struct gl_texture_image *dst)
1386 {
1387 /* Get logical base formats for the src and dest.
1388 * That is, use the user-requested formats and not the actual, device-
1389 * chosen formats.
1390 * For example, the user may have requested an A8 texture but the
1391 * driver may actually be using an RGBA texture format. When we
1392 * copy/blit to that texture, we only want to copy the Alpha channel
1393 * and not the RGB channels.
1394 *
1395 * Similarly, when the src FBO was created an RGB format may have been
1396 * requested but the driver actually chose an RGBA format. In that case,
1397 * we don't want to copy the undefined Alpha channel to the dest texture
1398 * (it should be 1.0).
1399 */
1400 const GLenum srcFormat = _mesa_base_fbo_format(ctx, src->InternalFormat);
1401 const GLenum dstFormat = _mesa_base_tex_format(ctx, dst->InternalFormat);
1402
1403 /**
1404 * XXX when we have red-only and red/green renderbuffers we'll need
1405 * to add more cases here (or implement a general-purpose routine that
1406 * queries the existance of the R,G,B,A channels in the src and dest).
1407 */
1408 if (srcFormat == dstFormat) {
1409 /* This is the same as matching_base_formats, which should
1410 * always pass, as it did previously.
1411 */
1412 return TGSI_WRITEMASK_XYZW;
1413 }
1414 else if (srcFormat == GL_RGB && dstFormat == GL_RGBA) {
1415 /* Make sure that A in the dest is 1. The actual src format
1416 * may be RGBA and have undefined A values.
1417 */
1418 return TGSI_WRITEMASK_XYZ;
1419 }
1420 else if (srcFormat == GL_RGBA && dstFormat == GL_RGB) {
1421 /* Make sure that A in the dest is 1. The actual dst format
1422 * may be RGBA and will need A=1 to provide proper alpha values
1423 * when sampled later.
1424 */
1425 return TGSI_WRITEMASK_XYZ;
1426 }
1427 else {
1428 if (ST_DEBUG & DEBUG_FALLBACK)
1429 debug_printf("%s failed for src %s, dst %s\n",
1430 __FUNCTION__,
1431 _mesa_lookup_enum_by_nr(srcFormat),
1432 _mesa_lookup_enum_by_nr(dstFormat));
1433
1434 /* Otherwise fail.
1435 */
1436 return 0;
1437 }
1438 }
1439
1440
1441
1442 /**
1443 * Do a CopyTex[Sub]Image1/2/3D() using a hardware (blit) path if possible.
1444 * Note that the region to copy has already been clipped so we know we
1445 * won't read from outside the source renderbuffer's bounds.
1446 *
1447 * Note: srcY=0=Bottom of renderbuffer (GL convention)
1448 */
1449 static void
1450 st_copy_texsubimage(GLcontext *ctx,
1451 GLenum target, GLint level,
1452 GLint destX, GLint destY, GLint destZ,
1453 GLint srcX, GLint srcY,
1454 GLsizei width, GLsizei height)
1455 {
1456 struct gl_texture_unit *texUnit =
1457 &ctx->Texture.Unit[ctx->Texture.CurrentUnit];
1458 struct gl_texture_object *texObj =
1459 _mesa_select_tex_object(ctx, texUnit, target);
1460 struct gl_texture_image *texImage =
1461 _mesa_select_tex_image(ctx, texObj, target, level);
1462 struct st_texture_image *stImage = st_texture_image(texImage);
1463 const GLenum texBaseFormat = texImage->_BaseFormat;
1464 struct gl_framebuffer *fb = ctx->ReadBuffer;
1465 struct st_renderbuffer *strb;
1466 struct pipe_context *pipe = ctx->st->pipe;
1467 struct pipe_screen *screen = pipe->screen;
1468 enum pipe_format dest_format, src_format;
1469 GLboolean use_fallback = GL_TRUE;
1470 GLboolean matching_base_formats;
1471 GLuint format_writemask;
1472 struct pipe_surface *dest_surface = NULL;
1473 GLboolean do_flip = (st_fb_orientation(ctx->ReadBuffer) == Y_0_TOP);
1474
1475 /* any rendering in progress must flushed before we grab the fb image */
1476 st_flush(ctx->st, PIPE_FLUSH_RENDER_CACHE, NULL);
1477
1478 /* make sure finalize_textures has been called?
1479 */
1480 if (0) st_validate_state(ctx->st);
1481
1482 /* determine if copying depth or color data */
1483 if (texBaseFormat == GL_DEPTH_COMPONENT ||
1484 texBaseFormat == GL_DEPTH_STENCIL) {
1485 strb = st_renderbuffer(fb->_DepthBuffer);
1486 }
1487 else {
1488 /* texBaseFormat == GL_RGB, GL_RGBA, GL_ALPHA, etc */
1489 strb = st_renderbuffer(fb->_ColorReadBuffer);
1490 }
1491
1492 if (!strb || !strb->surface || !stImage->pt) {
1493 debug_printf("%s: null strb or stImage\n", __FUNCTION__);
1494 return;
1495 }
1496
1497 if (srcX < 0) {
1498 width -= -srcX;
1499 destX += -srcX;
1500 srcX = 0;
1501 }
1502
1503 if (srcY < 0) {
1504 height -= -srcY;
1505 destY += -srcY;
1506 srcY = 0;
1507 }
1508
1509 if (destX < 0) {
1510 width -= -destX;
1511 srcX += -destX;
1512 destX = 0;
1513 }
1514
1515 if (destY < 0) {
1516 height -= -destY;
1517 srcY += -destY;
1518 destY = 0;
1519 }
1520
1521 if (width < 0 || height < 0)
1522 return;
1523
1524
1525 assert(strb);
1526 assert(strb->surface);
1527 assert(stImage->pt);
1528
1529 src_format = strb->surface->format;
1530 dest_format = stImage->pt->format;
1531
1532 /*
1533 * Determine if the src framebuffer and dest texture have the same
1534 * base format. We need this to detect a case such as the framebuffer
1535 * being GL_RGBA but the texture being GL_RGB. If the actual hardware
1536 * texture format stores RGBA we need to set A=1 (overriding the
1537 * framebuffer's alpha values). We can't do that with the blit or
1538 * textured-quad paths.
1539 */
1540 matching_base_formats =
1541 (_mesa_get_format_base_format(strb->Base.Format) ==
1542 _mesa_get_format_base_format(texImage->TexFormat));
1543 format_writemask = compatible_src_dst_formats(ctx, &strb->Base, texImage);
1544
1545 if (ctx->_ImageTransferState == 0x0) {
1546
1547 if (pipe->surface_copy &&
1548 matching_base_formats &&
1549 src_format == dest_format &&
1550 !do_flip)
1551 {
1552 /* use surface_copy() / blit */
1553
1554 dest_surface = screen->get_tex_surface(screen, stImage->pt,
1555 stImage->face, stImage->level,
1556 destZ,
1557 PIPE_BUFFER_USAGE_GPU_WRITE);
1558
1559 /* for surface_copy(), y=0=top, always */
1560 pipe->surface_copy(pipe,
1561 /* dest */
1562 dest_surface,
1563 destX, destY,
1564 /* src */
1565 strb->surface,
1566 srcX, srcY,
1567 /* size */
1568 width, height);
1569 use_fallback = GL_FALSE;
1570 }
1571 else if (format_writemask &&
1572 texBaseFormat != GL_DEPTH_COMPONENT &&
1573 texBaseFormat != GL_DEPTH_STENCIL &&
1574 screen->is_format_supported(screen, src_format,
1575 PIPE_TEXTURE_2D,
1576 PIPE_TEXTURE_USAGE_SAMPLER,
1577 0) &&
1578 screen->is_format_supported(screen, dest_format,
1579 PIPE_TEXTURE_2D,
1580 PIPE_TEXTURE_USAGE_RENDER_TARGET,
1581 0)) {
1582 /* draw textured quad to do the copy */
1583 GLint srcY0, srcY1;
1584
1585 dest_surface = screen->get_tex_surface(screen, stImage->pt,
1586 stImage->face, stImage->level,
1587 destZ,
1588 PIPE_BUFFER_USAGE_GPU_WRITE);
1589
1590 if (do_flip) {
1591 srcY1 = strb->Base.Height - srcY - height;
1592 srcY0 = srcY1 + height;
1593 }
1594 else {
1595 srcY0 = srcY;
1596 srcY1 = srcY0 + height;
1597 }
1598 util_blit_pixels_writemask(ctx->st->blit,
1599 strb->surface,
1600 srcX, srcY0,
1601 srcX + width, srcY1,
1602 dest_surface,
1603 destX, destY,
1604 destX + width, destY + height,
1605 0.0, PIPE_TEX_MIPFILTER_NEAREST,
1606 format_writemask);
1607 use_fallback = GL_FALSE;
1608 }
1609
1610 if (dest_surface)
1611 pipe_surface_reference(&dest_surface, NULL);
1612 }
1613
1614 if (use_fallback) {
1615 /* software fallback */
1616 fallback_copy_texsubimage(ctx, target, level,
1617 strb, stImage, texBaseFormat,
1618 destX, destY, destZ,
1619 srcX, srcY, width, height);
1620 }
1621 }
1622
1623
1624
1625 static void
1626 st_CopyTexImage1D(GLcontext * ctx, GLenum target, GLint level,
1627 GLenum internalFormat,
1628 GLint x, GLint y, GLsizei width, GLint border)
1629 {
1630 struct gl_texture_unit *texUnit =
1631 &ctx->Texture.Unit[ctx->Texture.CurrentUnit];
1632 struct gl_texture_object *texObj =
1633 _mesa_select_tex_object(ctx, texUnit, target);
1634 struct gl_texture_image *texImage =
1635 _mesa_select_tex_image(ctx, texObj, target, level);
1636
1637 /* Setup or redefine the texture object, texture and texture
1638 * image. Don't populate yet.
1639 */
1640 ctx->Driver.TexImage1D(ctx, target, level, internalFormat,
1641 width, border,
1642 GL_RGBA, CHAN_TYPE, NULL,
1643 &ctx->DefaultPacking, texObj, texImage);
1644
1645 st_copy_texsubimage(ctx, target, level,
1646 0, 0, 0, /* destX,Y,Z */
1647 x, y, width, 1); /* src X, Y, size */
1648 }
1649
1650
1651 static void
1652 st_CopyTexImage2D(GLcontext * ctx, GLenum target, GLint level,
1653 GLenum internalFormat,
1654 GLint x, GLint y, GLsizei width, GLsizei height,
1655 GLint border)
1656 {
1657 struct gl_texture_unit *texUnit =
1658 &ctx->Texture.Unit[ctx->Texture.CurrentUnit];
1659 struct gl_texture_object *texObj =
1660 _mesa_select_tex_object(ctx, texUnit, target);
1661 struct gl_texture_image *texImage =
1662 _mesa_select_tex_image(ctx, texObj, target, level);
1663
1664 /* Setup or redefine the texture object, texture and texture
1665 * image. Don't populate yet.
1666 */
1667 ctx->Driver.TexImage2D(ctx, target, level, internalFormat,
1668 width, height, border,
1669 GL_RGBA, CHAN_TYPE, NULL,
1670 &ctx->DefaultPacking, texObj, texImage);
1671
1672 st_copy_texsubimage(ctx, target, level,
1673 0, 0, 0, /* destX,Y,Z */
1674 x, y, width, height); /* src X, Y, size */
1675 }
1676
1677
1678 static void
1679 st_CopyTexSubImage1D(GLcontext * ctx, GLenum target, GLint level,
1680 GLint xoffset, GLint x, GLint y, GLsizei width)
1681 {
1682 const GLint yoffset = 0, zoffset = 0;
1683 const GLsizei height = 1;
1684 st_copy_texsubimage(ctx, target, level,
1685 xoffset, yoffset, zoffset, /* destX,Y,Z */
1686 x, y, width, height); /* src X, Y, size */
1687 }
1688
1689
1690 static void
1691 st_CopyTexSubImage2D(GLcontext * ctx, GLenum target, GLint level,
1692 GLint xoffset, GLint yoffset,
1693 GLint x, GLint y, GLsizei width, GLsizei height)
1694 {
1695 const GLint zoffset = 0;
1696 st_copy_texsubimage(ctx, target, level,
1697 xoffset, yoffset, zoffset, /* destX,Y,Z */
1698 x, y, width, height); /* src X, Y, size */
1699 }
1700
1701
1702 static void
1703 st_CopyTexSubImage3D(GLcontext * ctx, GLenum target, GLint level,
1704 GLint xoffset, GLint yoffset, GLint zoffset,
1705 GLint x, GLint y, GLsizei width, GLsizei height)
1706 {
1707 st_copy_texsubimage(ctx, target, level,
1708 xoffset, yoffset, zoffset, /* destX,Y,Z */
1709 x, y, width, height); /* src X, Y, size */
1710 }
1711
1712
1713 static void
1714 copy_image_data_to_texture(struct st_context *st,
1715 struct st_texture_object *stObj,
1716 GLuint dstLevel,
1717 struct st_texture_image *stImage)
1718 {
1719 if (stImage->pt) {
1720 /* Copy potentially with the blitter:
1721 */
1722 st_texture_image_copy(st->pipe,
1723 stObj->pt, dstLevel, /* dest texture, level */
1724 stImage->pt, /* src texture */
1725 stImage->face);
1726
1727 pipe_texture_reference(&stImage->pt, NULL);
1728 }
1729 else if (stImage->base.Data) {
1730 /* More straightforward upload.
1731 */
1732 st_teximage_flush_before_map(st, stObj->pt, stImage->face, dstLevel,
1733 PIPE_TRANSFER_WRITE);
1734
1735 st_texture_image_data(st,
1736 stObj->pt,
1737 stImage->face,
1738 dstLevel,
1739 stImage->base.Data,
1740 stImage->base.RowStride *
1741 util_format_get_blocksize(stObj->pt->format),
1742 stImage->base.RowStride *
1743 stImage->base.Height *
1744 util_format_get_blocksize(stObj->pt->format));
1745 _mesa_align_free(stImage->base.Data);
1746 stImage->base.Data = NULL;
1747 }
1748
1749 pipe_texture_reference(&stImage->pt, stObj->pt);
1750 }
1751
1752
1753 /**
1754 * Called during state validation. When this function is finished,
1755 * the texture object should be ready for rendering.
1756 * \return GL_TRUE for success, GL_FALSE for failure (out of mem)
1757 */
1758 GLboolean
1759 st_finalize_texture(GLcontext *ctx,
1760 struct pipe_context *pipe,
1761 struct gl_texture_object *tObj,
1762 GLboolean *needFlush)
1763 {
1764 struct st_texture_object *stObj = st_texture_object(tObj);
1765 const GLuint nr_faces = (stObj->base.Target == GL_TEXTURE_CUBE_MAP) ? 6 : 1;
1766 GLuint blockSize, face;
1767 struct st_texture_image *firstImage;
1768
1769 *needFlush = GL_FALSE;
1770
1771 if (stObj->base._Complete) {
1772 /* The texture is complete and we know exactly how many mipmap levels
1773 * are present/needed. This is conditional because we may be called
1774 * from the st_generate_mipmap() function when the texture object is
1775 * incomplete. In that case, we'll have set stObj->lastLevel before
1776 * we get here.
1777 */
1778 if (stObj->base.MinFilter == GL_LINEAR ||
1779 stObj->base.MinFilter == GL_NEAREST)
1780 stObj->lastLevel = stObj->base.BaseLevel;
1781 else
1782 stObj->lastLevel = stObj->base._MaxLevel - stObj->base.BaseLevel;
1783 }
1784
1785 firstImage = st_texture_image(stObj->base.Image[0][stObj->base.BaseLevel]);
1786
1787 /* If both firstImage and stObj point to a texture which can contain
1788 * all active images, favour firstImage. Note that because of the
1789 * completeness requirement, we know that the image dimensions
1790 * will match.
1791 */
1792 if (firstImage->pt &&
1793 firstImage->pt != stObj->pt &&
1794 firstImage->pt->last_level >= stObj->lastLevel) {
1795 pipe_texture_reference(&stObj->pt, firstImage->pt);
1796 }
1797
1798 /* bytes per pixel block (blocks are usually 1x1) */
1799 blockSize = _mesa_get_format_bytes(firstImage->base.TexFormat);
1800
1801 /* If we already have a gallium texture, check that it matches the texture
1802 * object's format, target, size, num_levels, etc.
1803 */
1804 if (stObj->pt) {
1805 const enum pipe_format fmt =
1806 st_mesa_format_to_pipe_format(firstImage->base.TexFormat);
1807 if (stObj->pt->target != gl_target_to_pipe(stObj->base.Target) ||
1808 stObj->pt->format != fmt ||
1809 stObj->pt->last_level < stObj->lastLevel ||
1810 stObj->pt->width0 != firstImage->base.Width2 ||
1811 stObj->pt->height0 != firstImage->base.Height2 ||
1812 stObj->pt->depth0 != firstImage->base.Depth2)
1813 {
1814 pipe_texture_reference(&stObj->pt, NULL);
1815 ctx->st->dirty.st |= ST_NEW_FRAMEBUFFER;
1816 }
1817 }
1818
1819 /* May need to create a new gallium texture:
1820 */
1821 if (!stObj->pt) {
1822 const enum pipe_format fmt =
1823 st_mesa_format_to_pipe_format(firstImage->base.TexFormat);
1824 GLuint usage = default_usage(fmt);
1825
1826 stObj->pt = st_texture_create(ctx->st,
1827 gl_target_to_pipe(stObj->base.Target),
1828 fmt,
1829 stObj->lastLevel,
1830 firstImage->base.Width2,
1831 firstImage->base.Height2,
1832 firstImage->base.Depth2,
1833 usage);
1834
1835 if (!stObj->pt) {
1836 _mesa_error(ctx, GL_OUT_OF_MEMORY, "glTexImage");
1837 return GL_FALSE;
1838 }
1839 }
1840
1841 /* Pull in any images not in the object's texture:
1842 */
1843 for (face = 0; face < nr_faces; face++) {
1844 GLuint level;
1845 for (level = 0; level <= stObj->lastLevel; level++) {
1846 struct st_texture_image *stImage =
1847 st_texture_image(stObj->base.Image[face][stObj->base.BaseLevel + level]);
1848
1849 /* Need to import images in main memory or held in other textures.
1850 */
1851 if (stImage && stObj->pt != stImage->pt) {
1852 copy_image_data_to_texture(ctx->st, stObj, level, stImage);
1853 *needFlush = GL_TRUE;
1854 }
1855 }
1856 }
1857
1858 return GL_TRUE;
1859 }
1860
1861
1862 /**
1863 * Returns pointer to a default/dummy texture.
1864 * This is typically used when the current shader has tex/sample instructions
1865 * but the user has not provided a (any) texture(s).
1866 */
1867 struct gl_texture_object *
1868 st_get_default_texture(struct st_context *st)
1869 {
1870 if (!st->default_texture) {
1871 static const GLenum target = GL_TEXTURE_2D;
1872 GLubyte pixels[16][16][4];
1873 struct gl_texture_object *texObj;
1874 struct gl_texture_image *texImg;
1875 GLuint i, j;
1876
1877 /* The ARB_fragment_program spec says (0,0,0,1) should be returned
1878 * when attempting to sample incomplete textures.
1879 */
1880 for (i = 0; i < 16; i++) {
1881 for (j = 0; j < 16; j++) {
1882 pixels[i][j][0] = 0;
1883 pixels[i][j][1] = 0;
1884 pixels[i][j][2] = 0;
1885 pixels[i][j][3] = 255;
1886 }
1887 }
1888
1889 texObj = st->ctx->Driver.NewTextureObject(st->ctx, 0, target);
1890
1891 texImg = _mesa_get_tex_image(st->ctx, texObj, target, 0);
1892
1893 _mesa_init_teximage_fields(st->ctx, target, texImg,
1894 16, 16, 1, 0, /* w, h, d, border */
1895 GL_RGBA);
1896
1897 st_TexImage(st->ctx, 2, target,
1898 0, GL_RGBA, /* level, intformat */
1899 16, 16, 1, 0, /* w, h, d, border */
1900 GL_RGBA, GL_UNSIGNED_BYTE, pixels,
1901 &st->ctx->DefaultPacking,
1902 texObj, texImg,
1903 0, 0);
1904
1905 texObj->MinFilter = GL_NEAREST;
1906 texObj->MagFilter = GL_NEAREST;
1907 texObj->_Complete = GL_TRUE;
1908
1909 st->default_texture = texObj;
1910 }
1911 return st->default_texture;
1912 }
1913
1914
1915 void
1916 st_init_texture_functions(struct dd_function_table *functions)
1917 {
1918 functions->ChooseTextureFormat = st_ChooseTextureFormat;
1919 functions->TexImage1D = st_TexImage1D;
1920 functions->TexImage2D = st_TexImage2D;
1921 functions->TexImage3D = st_TexImage3D;
1922 functions->TexSubImage1D = st_TexSubImage1D;
1923 functions->TexSubImage2D = st_TexSubImage2D;
1924 functions->TexSubImage3D = st_TexSubImage3D;
1925 functions->CompressedTexSubImage1D = st_CompressedTexSubImage1D;
1926 functions->CompressedTexSubImage2D = st_CompressedTexSubImage2D;
1927 functions->CompressedTexSubImage3D = st_CompressedTexSubImage3D;
1928 functions->CopyTexImage1D = st_CopyTexImage1D;
1929 functions->CopyTexImage2D = st_CopyTexImage2D;
1930 functions->CopyTexSubImage1D = st_CopyTexSubImage1D;
1931 functions->CopyTexSubImage2D = st_CopyTexSubImage2D;
1932 functions->CopyTexSubImage3D = st_CopyTexSubImage3D;
1933 functions->GenerateMipmap = st_generate_mipmap;
1934
1935 functions->GetTexImage = st_GetTexImage;
1936
1937 /* compressed texture functions */
1938 functions->CompressedTexImage2D = st_CompressedTexImage2D;
1939 functions->GetCompressedTexImage = st_GetCompressedTexImage;
1940
1941 functions->NewTextureObject = st_NewTextureObject;
1942 functions->NewTextureImage = st_NewTextureImage;
1943 functions->DeleteTexture = st_DeleteTextureObject;
1944 functions->FreeTexImageData = st_FreeTextureImageData;
1945 functions->UpdateTexturePalette = 0;
1946
1947 functions->TextureMemCpy = do_memcpy;
1948
1949 /* XXX Temporary until we can query pipe's texture sizes */
1950 functions->TestProxyTexImage = _mesa_test_proxy_teximage;
1951 }