st/mesa: select ATOMFADD when source type is float
[mesa.git] / src / mesa / state_tracker / st_cb_texture.c
1 /**************************************************************************
2 *
3 * Copyright 2007 VMware, Inc.
4 * All Rights Reserved.
5 *
6 * Permission is hereby granted, free of charge, to any person obtaining a
7 * copy of this software and associated documentation files (the
8 * "Software"), to deal in the Software without restriction, including
9 * without limitation the rights to use, copy, modify, merge, publish,
10 * distribute, sub license, and/or sell copies of the Software, and to
11 * permit persons to whom the Software is furnished to do so, subject to
12 * the following conditions:
13 *
14 * The above copyright notice and this permission notice (including the
15 * next paragraph) shall be included in all copies or substantial portions
16 * of the Software.
17 *
18 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
19 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
20 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.
21 * IN NO EVENT SHALL VMWARE AND/OR ITS SUPPLIERS BE LIABLE FOR
22 * ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
23 * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
24 * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
25 *
26 **************************************************************************/
27
28 #include <stdio.h>
29 #include "main/bufferobj.h"
30 #include "main/enums.h"
31 #include "main/errors.h"
32 #include "main/fbobject.h"
33 #include "main/formats.h"
34 #include "main/format_utils.h"
35 #include "main/glformats.h"
36 #include "main/image.h"
37 #include "main/imports.h"
38 #include "main/macros.h"
39 #include "main/mipmap.h"
40 #include "main/pack.h"
41 #include "main/pbo.h"
42 #include "main/pixeltransfer.h"
43 #include "main/texcompress.h"
44 #include "main/texcompress_astc.h"
45 #include "main/texcompress_etc.h"
46 #include "main/texgetimage.h"
47 #include "main/teximage.h"
48 #include "main/texobj.h"
49 #include "main/texstore.h"
50
51 #include "state_tracker/st_debug.h"
52 #include "state_tracker/st_context.h"
53 #include "state_tracker/st_cb_bitmap.h"
54 #include "state_tracker/st_cb_fbo.h"
55 #include "state_tracker/st_cb_flush.h"
56 #include "state_tracker/st_cb_texture.h"
57 #include "state_tracker/st_cb_bufferobjects.h"
58 #include "state_tracker/st_cb_memoryobjects.h"
59 #include "state_tracker/st_format.h"
60 #include "state_tracker/st_pbo.h"
61 #include "state_tracker/st_texture.h"
62 #include "state_tracker/st_gen_mipmap.h"
63 #include "state_tracker/st_atom.h"
64 #include "state_tracker/st_sampler_view.h"
65
66 #include "pipe/p_context.h"
67 #include "pipe/p_defines.h"
68 #include "util/u_inlines.h"
69 #include "util/u_upload_mgr.h"
70 #include "pipe/p_shader_tokens.h"
71 #include "util/u_tile.h"
72 #include "util/u_format.h"
73 #include "util/u_surface.h"
74 #include "util/u_sampler.h"
75 #include "util/u_math.h"
76 #include "util/u_box.h"
77 #include "util/u_simple_shaders.h"
78 #include "cso_cache/cso_context.h"
79 #include "tgsi/tgsi_ureg.h"
80
81 #define DBG if (0) printf
82
83
84 enum pipe_texture_target
85 gl_target_to_pipe(GLenum target)
86 {
87 switch (target) {
88 case GL_TEXTURE_1D:
89 case GL_PROXY_TEXTURE_1D:
90 return PIPE_TEXTURE_1D;
91 case GL_TEXTURE_2D:
92 case GL_PROXY_TEXTURE_2D:
93 case GL_TEXTURE_EXTERNAL_OES:
94 case GL_TEXTURE_2D_MULTISAMPLE:
95 case GL_PROXY_TEXTURE_2D_MULTISAMPLE:
96 return PIPE_TEXTURE_2D;
97 case GL_TEXTURE_RECTANGLE_NV:
98 case GL_PROXY_TEXTURE_RECTANGLE_NV:
99 return PIPE_TEXTURE_RECT;
100 case GL_TEXTURE_3D:
101 case GL_PROXY_TEXTURE_3D:
102 return PIPE_TEXTURE_3D;
103 case GL_TEXTURE_CUBE_MAP_ARB:
104 case GL_PROXY_TEXTURE_CUBE_MAP_ARB:
105 case GL_TEXTURE_CUBE_MAP_POSITIVE_X:
106 case GL_TEXTURE_CUBE_MAP_NEGATIVE_X:
107 case GL_TEXTURE_CUBE_MAP_POSITIVE_Y:
108 case GL_TEXTURE_CUBE_MAP_NEGATIVE_Y:
109 case GL_TEXTURE_CUBE_MAP_POSITIVE_Z:
110 case GL_TEXTURE_CUBE_MAP_NEGATIVE_Z:
111 return PIPE_TEXTURE_CUBE;
112 case GL_TEXTURE_1D_ARRAY_EXT:
113 case GL_PROXY_TEXTURE_1D_ARRAY_EXT:
114 return PIPE_TEXTURE_1D_ARRAY;
115 case GL_TEXTURE_2D_ARRAY_EXT:
116 case GL_PROXY_TEXTURE_2D_ARRAY_EXT:
117 case GL_TEXTURE_2D_MULTISAMPLE_ARRAY:
118 case GL_PROXY_TEXTURE_2D_MULTISAMPLE_ARRAY:
119 return PIPE_TEXTURE_2D_ARRAY;
120 case GL_TEXTURE_BUFFER:
121 return PIPE_BUFFER;
122 case GL_TEXTURE_CUBE_MAP_ARRAY:
123 case GL_PROXY_TEXTURE_CUBE_MAP_ARRAY:
124 return PIPE_TEXTURE_CUBE_ARRAY;
125 default:
126 assert(0);
127 return 0;
128 }
129 }
130
131
132 /** called via ctx->Driver.NewTextureImage() */
133 static struct gl_texture_image *
134 st_NewTextureImage(struct gl_context * ctx)
135 {
136 DBG("%s\n", __func__);
137 (void) ctx;
138 return (struct gl_texture_image *) ST_CALLOC_STRUCT(st_texture_image);
139 }
140
141
142 /** called via ctx->Driver.DeleteTextureImage() */
143 static void
144 st_DeleteTextureImage(struct gl_context * ctx, struct gl_texture_image *img)
145 {
146 /* nothing special (yet) for st_texture_image */
147 _mesa_delete_texture_image(ctx, img);
148 }
149
150
151 /** called via ctx->Driver.NewTextureObject() */
152 static struct gl_texture_object *
153 st_NewTextureObject(struct gl_context * ctx, GLuint name, GLenum target)
154 {
155 struct st_texture_object *obj = ST_CALLOC_STRUCT(st_texture_object);
156 if (!obj)
157 return NULL;
158
159 /* Pre-allocate a sampler views container to save a branch in the fast path. */
160 obj->sampler_views = calloc(1, sizeof(struct st_sampler_views) + sizeof(struct st_sampler_view));
161 if (!obj->sampler_views) {
162 free(obj);
163 return NULL;
164 }
165 obj->sampler_views->max = 1;
166
167 DBG("%s\n", __func__);
168 _mesa_initialize_texture_object(ctx, &obj->base, name, target);
169
170 simple_mtx_init(&obj->validate_mutex, mtx_plain);
171 obj->needs_validation = true;
172
173 return &obj->base;
174 }
175
176 /** called via ctx->Driver.DeleteTextureObject() */
177 static void
178 st_DeleteTextureObject(struct gl_context *ctx,
179 struct gl_texture_object *texObj)
180 {
181 struct st_context *st = st_context(ctx);
182 struct st_texture_object *stObj = st_texture_object(texObj);
183
184 pipe_resource_reference(&stObj->pt, NULL);
185 st_texture_release_all_sampler_views(st, stObj);
186 st_texture_free_sampler_views(stObj);
187 simple_mtx_destroy(&stObj->validate_mutex);
188 _mesa_delete_texture_object(ctx, texObj);
189 }
190
191
192 /** called via ctx->Driver.FreeTextureImageBuffer() */
193 static void
194 st_FreeTextureImageBuffer(struct gl_context *ctx,
195 struct gl_texture_image *texImage)
196 {
197 struct st_context *st = st_context(ctx);
198 struct st_texture_object *stObj = st_texture_object(texImage->TexObject);
199 struct st_texture_image *stImage = st_texture_image(texImage);
200
201 DBG("%s\n", __func__);
202
203 if (stImage->pt) {
204 pipe_resource_reference(&stImage->pt, NULL);
205 }
206
207 free(stImage->transfer);
208 stImage->transfer = NULL;
209 stImage->num_transfers = 0;
210
211 if (stImage->compressed_data) {
212 free(stImage->compressed_data);
213 stImage->compressed_data = NULL;
214 }
215
216 /* if the texture image is being deallocated, the structure of the
217 * texture is changing so we'll likely need a new sampler view.
218 */
219 st_texture_release_all_sampler_views(st, stObj);
220 }
221
222 bool
223 st_compressed_format_fallback(struct st_context *st, mesa_format format)
224 {
225 if (format == MESA_FORMAT_ETC1_RGB8)
226 return !st->has_etc1;
227
228 if (_mesa_is_format_etc2(format))
229 return !st->has_etc2;
230
231 if (_mesa_is_format_astc_2d(format))
232 return !st->has_astc_2d_ldr;
233
234 return false;
235 }
236
237 static void
238 compressed_tex_fallback_allocate(struct st_context *st,
239 struct st_texture_image *stImage)
240 {
241 struct gl_texture_image *texImage = &stImage->base;
242
243 if (!st_compressed_format_fallback(st, texImage->TexFormat))
244 return;
245
246 if (stImage->compressed_data)
247 free(stImage->compressed_data);
248
249 unsigned data_size = _mesa_format_image_size(texImage->TexFormat,
250 texImage->Width2,
251 texImage->Height2,
252 texImage->Depth2);
253
254 stImage->compressed_data =
255 malloc(data_size * _mesa_num_tex_faces(texImage->TexObject->Target));
256 }
257
258 /** called via ctx->Driver.MapTextureImage() */
259 static void
260 st_MapTextureImage(struct gl_context *ctx,
261 struct gl_texture_image *texImage,
262 GLuint slice, GLuint x, GLuint y, GLuint w, GLuint h,
263 GLbitfield mode,
264 GLubyte **mapOut, GLint *rowStrideOut)
265 {
266 struct st_context *st = st_context(ctx);
267 struct st_texture_image *stImage = st_texture_image(texImage);
268 GLubyte *map;
269 struct pipe_transfer *transfer;
270
271 /* Check for unexpected flags */
272 assert((mode & ~(GL_MAP_READ_BIT |
273 GL_MAP_WRITE_BIT |
274 GL_MAP_INVALIDATE_RANGE_BIT)) == 0);
275
276 const enum pipe_transfer_usage transfer_flags =
277 st_access_flags_to_transfer_flags(mode, false);
278
279 map = st_texture_image_map(st, stImage, transfer_flags, x, y, slice, w, h, 1,
280 &transfer);
281 if (map) {
282 if (st_compressed_format_fallback(st, texImage->TexFormat)) {
283 /* Some compressed formats don't have to be supported by drivers,
284 * and st/mesa transparently handles decompression on upload (Unmap),
285 * so that drivers don't see the compressed formats.
286 *
287 * We store the compressed data (it's needed for glGetCompressedTex-
288 * Image and image copies in OES_copy_image).
289 */
290 unsigned z = transfer->box.z;
291 struct st_texture_image_transfer *itransfer = &stImage->transfer[z];
292
293 unsigned blk_w, blk_h;
294 _mesa_get_format_block_size(texImage->TexFormat, &blk_w, &blk_h);
295
296 unsigned y_blocks = DIV_ROUND_UP(texImage->Height2, blk_h);
297 unsigned stride = *rowStrideOut = itransfer->temp_stride =
298 _mesa_format_row_stride(texImage->TexFormat, texImage->Width2);
299 unsigned block_size = _mesa_get_format_bytes(texImage->TexFormat);
300
301 *mapOut = itransfer->temp_data =
302 stImage->compressed_data +
303 (z * y_blocks + (y / blk_h)) * stride +
304 (x / blk_w) * block_size;
305 itransfer->map = map;
306 }
307 else {
308 /* supported mapping */
309 *mapOut = map;
310 *rowStrideOut = transfer->stride;
311 }
312 }
313 else {
314 *mapOut = NULL;
315 *rowStrideOut = 0;
316 }
317 }
318
319
320 /** called via ctx->Driver.UnmapTextureImage() */
321 static void
322 st_UnmapTextureImage(struct gl_context *ctx,
323 struct gl_texture_image *texImage,
324 GLuint slice)
325 {
326 struct st_context *st = st_context(ctx);
327 struct st_texture_image *stImage = st_texture_image(texImage);
328
329 if (st_compressed_format_fallback(st, texImage->TexFormat)) {
330 /* Decompress the compressed image on upload if the driver doesn't
331 * support the compressed format. */
332 unsigned z = slice + stImage->base.Face;
333 struct st_texture_image_transfer *itransfer = &stImage->transfer[z];
334 struct pipe_transfer *transfer = itransfer->transfer;
335
336 assert(z == transfer->box.z);
337
338 if (transfer->usage & PIPE_TRANSFER_WRITE) {
339 if (texImage->TexFormat == MESA_FORMAT_ETC1_RGB8) {
340 _mesa_etc1_unpack_rgba8888(itransfer->map, transfer->stride,
341 itransfer->temp_data,
342 itransfer->temp_stride,
343 transfer->box.width, transfer->box.height);
344 } else if (_mesa_is_format_etc2(texImage->TexFormat)) {
345 bool bgra = stImage->pt->format == PIPE_FORMAT_B8G8R8A8_SRGB;
346 _mesa_unpack_etc2_format(itransfer->map, transfer->stride,
347 itransfer->temp_data, itransfer->temp_stride,
348 transfer->box.width, transfer->box.height,
349 texImage->TexFormat,
350 bgra);
351 } else if (_mesa_is_format_astc_2d(texImage->TexFormat)) {
352 _mesa_unpack_astc_2d_ldr(itransfer->map, transfer->stride,
353 itransfer->temp_data, itransfer->temp_stride,
354 transfer->box.width, transfer->box.height,
355 texImage->TexFormat);
356 } else {
357 unreachable("unexpected format for a compressed format fallback");
358 }
359 }
360
361 itransfer->temp_data = NULL;
362 itransfer->temp_stride = 0;
363 itransfer->map = 0;
364 }
365
366 st_texture_image_unmap(st, stImage, slice);
367 }
368
369
370 /**
371 * Return default texture resource binding bitmask for the given format.
372 */
373 static GLuint
374 default_bindings(struct st_context *st, enum pipe_format format)
375 {
376 struct pipe_screen *screen = st->pipe->screen;
377 const unsigned target = PIPE_TEXTURE_2D;
378 unsigned bindings;
379
380 if (util_format_is_depth_or_stencil(format))
381 bindings = PIPE_BIND_SAMPLER_VIEW | PIPE_BIND_DEPTH_STENCIL;
382 else
383 bindings = PIPE_BIND_SAMPLER_VIEW | PIPE_BIND_RENDER_TARGET;
384
385 if (screen->is_format_supported(screen, format, target, 0, 0, bindings))
386 return bindings;
387 else {
388 /* Try non-sRGB. */
389 format = util_format_linear(format);
390
391 if (screen->is_format_supported(screen, format, target, 0, 0, bindings))
392 return bindings;
393 else
394 return PIPE_BIND_SAMPLER_VIEW;
395 }
396 }
397
398
399 /**
400 * Given the size of a mipmap image, try to compute the size of the level=0
401 * mipmap image.
402 *
403 * Note that this isn't always accurate for odd-sized, non-POW textures.
404 * For example, if level=1 and width=40 then the level=0 width may be 80 or 81.
405 *
406 * \return GL_TRUE for success, GL_FALSE for failure
407 */
408 static GLboolean
409 guess_base_level_size(GLenum target,
410 GLuint width, GLuint height, GLuint depth, GLuint level,
411 GLuint *width0, GLuint *height0, GLuint *depth0)
412 {
413 assert(width >= 1);
414 assert(height >= 1);
415 assert(depth >= 1);
416
417 if (level > 0) {
418 /* Guess the size of the base level.
419 * Depending on the image's size, we can't always make a guess here.
420 */
421 switch (target) {
422 case GL_TEXTURE_1D:
423 case GL_TEXTURE_1D_ARRAY:
424 width <<= level;
425 break;
426
427 case GL_TEXTURE_2D:
428 case GL_TEXTURE_2D_ARRAY:
429 /* We can't make a good guess here, because the base level dimensions
430 * can be non-square.
431 */
432 if (width == 1 || height == 1) {
433 return GL_FALSE;
434 }
435 width <<= level;
436 height <<= level;
437 break;
438
439 case GL_TEXTURE_CUBE_MAP:
440 case GL_TEXTURE_CUBE_MAP_ARRAY:
441 width <<= level;
442 height <<= level;
443 break;
444
445 case GL_TEXTURE_3D:
446 /* We can't make a good guess here, because the base level dimensions
447 * can be non-cube.
448 */
449 if (width == 1 || height == 1 || depth == 1) {
450 return GL_FALSE;
451 }
452 width <<= level;
453 height <<= level;
454 depth <<= level;
455 break;
456
457 case GL_TEXTURE_RECTANGLE:
458 break;
459
460 default:
461 assert(0);
462 }
463 }
464
465 *width0 = width;
466 *height0 = height;
467 *depth0 = depth;
468
469 return GL_TRUE;
470 }
471
472
473 /**
474 * Try to determine whether we should allocate memory for a full texture
475 * mipmap. The problem is when we get a glTexImage(level=0) call, we
476 * can't immediately know if other mipmap levels are coming next. Here
477 * we try to guess whether to allocate memory for a mipmap or just the
478 * 0th level.
479 *
480 * If we guess incorrectly here we'll later reallocate the right amount of
481 * memory either in st_AllocTextureImageBuffer() or st_finalize_texture().
482 *
483 * \param stObj the texture object we're going to allocate memory for.
484 * \param stImage describes the incoming image which we need to store.
485 */
486 static boolean
487 allocate_full_mipmap(const struct st_texture_object *stObj,
488 const struct st_texture_image *stImage)
489 {
490 switch (stObj->base.Target) {
491 case GL_TEXTURE_RECTANGLE_NV:
492 case GL_TEXTURE_BUFFER:
493 case GL_TEXTURE_EXTERNAL_OES:
494 case GL_TEXTURE_2D_MULTISAMPLE:
495 case GL_TEXTURE_2D_MULTISAMPLE_ARRAY:
496 /* these texture types cannot be mipmapped */
497 return FALSE;
498 }
499
500 if (stImage->base.Level > 0 || stObj->base.GenerateMipmap)
501 return TRUE;
502
503 if (stImage->base._BaseFormat == GL_DEPTH_COMPONENT ||
504 stImage->base._BaseFormat == GL_DEPTH_STENCIL_EXT)
505 /* depth/stencil textures are seldom mipmapped */
506 return FALSE;
507
508 if (stObj->base.BaseLevel == 0 && stObj->base.MaxLevel == 0)
509 return FALSE;
510
511 if (stObj->base.Sampler.MinFilter == GL_NEAREST ||
512 stObj->base.Sampler.MinFilter == GL_LINEAR)
513 /* not a mipmap minification filter */
514 return FALSE;
515
516 if (stObj->base.Target == GL_TEXTURE_3D)
517 /* 3D textures are seldom mipmapped */
518 return FALSE;
519
520 return TRUE;
521 }
522
523
524 /**
525 * Try to allocate a pipe_resource object for the given st_texture_object.
526 *
527 * We use the given st_texture_image as a clue to determine the size of the
528 * mipmap image at level=0.
529 *
530 * \return GL_TRUE for success, GL_FALSE if out of memory.
531 */
532 static GLboolean
533 guess_and_alloc_texture(struct st_context *st,
534 struct st_texture_object *stObj,
535 const struct st_texture_image *stImage)
536 {
537 const struct gl_texture_image *firstImage;
538 GLuint lastLevel, width, height, depth;
539 GLuint bindings;
540 unsigned ptWidth;
541 uint16_t ptHeight, ptDepth, ptLayers;
542 enum pipe_format fmt;
543 bool guessed_box = false;
544
545 DBG("%s\n", __func__);
546
547 assert(!stObj->pt);
548
549 /* If a base level image with compatible size exists, use that as our guess.
550 */
551 firstImage = _mesa_base_tex_image(&stObj->base);
552 if (firstImage &&
553 firstImage->Width2 > 0 &&
554 firstImage->Height2 > 0 &&
555 firstImage->Depth2 > 0 &&
556 guess_base_level_size(stObj->base.Target,
557 firstImage->Width2,
558 firstImage->Height2,
559 firstImage->Depth2,
560 firstImage->Level,
561 &width, &height, &depth)) {
562 if (stImage->base.Width2 == u_minify(width, stImage->base.Level) &&
563 stImage->base.Height2 == u_minify(height, stImage->base.Level) &&
564 stImage->base.Depth2 == u_minify(depth, stImage->base.Level))
565 guessed_box = true;
566 }
567
568 if (!guessed_box)
569 guessed_box = guess_base_level_size(stObj->base.Target,
570 stImage->base.Width2,
571 stImage->base.Height2,
572 stImage->base.Depth2,
573 stImage->base.Level,
574 &width, &height, &depth);
575
576 if (!guessed_box) {
577 /* we can't determine the image size at level=0 */
578 /* this is not an out of memory error */
579 return GL_TRUE;
580 }
581
582 /* At this point, (width x height x depth) is the expected size of
583 * the level=0 mipmap image.
584 */
585
586 /* Guess a reasonable value for lastLevel. With OpenGL we have no
587 * idea how many mipmap levels will be in a texture until we start
588 * to render with it. Make an educated guess here but be prepared
589 * to re-allocating a texture buffer with space for more (or fewer)
590 * mipmap levels later.
591 */
592 if (allocate_full_mipmap(stObj, stImage)) {
593 /* alloc space for a full mipmap */
594 lastLevel = _mesa_get_tex_max_num_levels(stObj->base.Target,
595 width, height, depth) - 1;
596 }
597 else {
598 /* only alloc space for a single mipmap level */
599 lastLevel = 0;
600 }
601
602 fmt = st_mesa_format_to_pipe_format(st, stImage->base.TexFormat);
603
604 bindings = default_bindings(st, fmt);
605
606 st_gl_texture_dims_to_pipe_dims(stObj->base.Target,
607 width, height, depth,
608 &ptWidth, &ptHeight, &ptDepth, &ptLayers);
609
610 stObj->pt = st_texture_create(st,
611 gl_target_to_pipe(stObj->base.Target),
612 fmt,
613 lastLevel,
614 ptWidth,
615 ptHeight,
616 ptDepth,
617 ptLayers, 0,
618 bindings);
619
620 stObj->lastLevel = lastLevel;
621
622 DBG("%s returning %d\n", __func__, (stObj->pt != NULL));
623
624 return stObj->pt != NULL;
625 }
626
627
628 /**
629 * Called via ctx->Driver.AllocTextureImageBuffer().
630 * If the texture object/buffer already has space for the indicated image,
631 * we're done. Otherwise, allocate memory for the new texture image.
632 */
633 static GLboolean
634 st_AllocTextureImageBuffer(struct gl_context *ctx,
635 struct gl_texture_image *texImage)
636 {
637 struct st_context *st = st_context(ctx);
638 struct st_texture_image *stImage = st_texture_image(texImage);
639 struct st_texture_object *stObj = st_texture_object(texImage->TexObject);
640 const GLuint level = texImage->Level;
641 GLuint width = texImage->Width;
642 GLuint height = texImage->Height;
643 GLuint depth = texImage->Depth;
644
645 DBG("%s\n", __func__);
646
647 assert(!stImage->pt); /* xxx this might be wrong */
648
649 stObj->needs_validation = true;
650
651 compressed_tex_fallback_allocate(st, stImage);
652
653 /* Look if the parent texture object has space for this image */
654 if (stObj->pt &&
655 level <= stObj->pt->last_level &&
656 st_texture_match_image(st, stObj->pt, texImage)) {
657 /* this image will fit in the existing texture object's memory */
658 pipe_resource_reference(&stImage->pt, stObj->pt);
659 return GL_TRUE;
660 }
661
662 /* The parent texture object does not have space for this image */
663
664 pipe_resource_reference(&stObj->pt, NULL);
665 st_texture_release_all_sampler_views(st, stObj);
666
667 if (!guess_and_alloc_texture(st, stObj, stImage)) {
668 /* Probably out of memory.
669 * Try flushing any pending rendering, then retry.
670 */
671 st_finish(st);
672 if (!guess_and_alloc_texture(st, stObj, stImage)) {
673 _mesa_error(ctx, GL_OUT_OF_MEMORY, "glTexImage");
674 return GL_FALSE;
675 }
676 }
677
678 if (stObj->pt &&
679 st_texture_match_image(st, stObj->pt, texImage)) {
680 /* The image will live in the object's mipmap memory */
681 pipe_resource_reference(&stImage->pt, stObj->pt);
682 assert(stImage->pt);
683 return GL_TRUE;
684 }
685 else {
686 /* Create a new, temporary texture/resource/buffer to hold this
687 * one texture image. Note that when we later access this image
688 * (either for mapping or copying) we'll want to always specify
689 * mipmap level=0, even if the image represents some other mipmap
690 * level.
691 */
692 enum pipe_format format =
693 st_mesa_format_to_pipe_format(st, texImage->TexFormat);
694 GLuint bindings = default_bindings(st, format);
695 unsigned ptWidth;
696 uint16_t ptHeight, ptDepth, ptLayers;
697
698 st_gl_texture_dims_to_pipe_dims(stObj->base.Target,
699 width, height, depth,
700 &ptWidth, &ptHeight, &ptDepth, &ptLayers);
701
702 stImage->pt = st_texture_create(st,
703 gl_target_to_pipe(stObj->base.Target),
704 format,
705 0, /* lastLevel */
706 ptWidth,
707 ptHeight,
708 ptDepth,
709 ptLayers, 0,
710 bindings);
711 return stImage->pt != NULL;
712 }
713 }
714
715
716 /**
717 * Preparation prior to glTexImage. Basically check the 'surface_based'
718 * field and switch to a "normal" tex image if necessary.
719 */
720 static void
721 prep_teximage(struct gl_context *ctx, struct gl_texture_image *texImage,
722 GLenum format, GLenum type)
723 {
724 struct gl_texture_object *texObj = texImage->TexObject;
725 struct st_texture_object *stObj = st_texture_object(texObj);
726
727 /* switch to "normal" */
728 if (stObj->surface_based) {
729 const GLenum target = texObj->Target;
730 const GLuint level = texImage->Level;
731 mesa_format texFormat;
732
733 assert(!st_texture_image(texImage)->pt);
734 _mesa_clear_texture_object(ctx, texObj, texImage);
735 stObj->layer_override = 0;
736 stObj->level_override = 0;
737 pipe_resource_reference(&stObj->pt, NULL);
738
739 /* oops, need to init this image again */
740 texFormat = _mesa_choose_texture_format(ctx, texObj, target, level,
741 texImage->InternalFormat, format,
742 type);
743
744 _mesa_init_teximage_fields(ctx, texImage,
745 texImage->Width, texImage->Height,
746 texImage->Depth, texImage->Border,
747 texImage->InternalFormat, texFormat);
748
749 stObj->surface_based = GL_FALSE;
750 }
751 }
752
753
754 /**
755 * Return a writemask for the gallium blit. The parameters can be base
756 * formats or "format" from glDrawPixels/glTexImage/glGetTexImage.
757 */
758 unsigned
759 st_get_blit_mask(GLenum srcFormat, GLenum dstFormat)
760 {
761 switch (dstFormat) {
762 case GL_DEPTH_STENCIL:
763 switch (srcFormat) {
764 case GL_DEPTH_STENCIL:
765 return PIPE_MASK_ZS;
766 case GL_DEPTH_COMPONENT:
767 return PIPE_MASK_Z;
768 case GL_STENCIL_INDEX:
769 return PIPE_MASK_S;
770 default:
771 assert(0);
772 return 0;
773 }
774
775 case GL_DEPTH_COMPONENT:
776 switch (srcFormat) {
777 case GL_DEPTH_STENCIL:
778 case GL_DEPTH_COMPONENT:
779 return PIPE_MASK_Z;
780 default:
781 assert(0);
782 return 0;
783 }
784
785 case GL_STENCIL_INDEX:
786 switch (srcFormat) {
787 case GL_STENCIL_INDEX:
788 return PIPE_MASK_S;
789 default:
790 assert(0);
791 return 0;
792 }
793
794 default:
795 return PIPE_MASK_RGBA;
796 }
797 }
798
799 /**
800 * Converts format to a format with the same components, types
801 * and sizes, but with the components in RGBA order.
802 */
803 static enum pipe_format
804 unswizzle_format(enum pipe_format format)
805 {
806 switch (format)
807 {
808 case PIPE_FORMAT_B8G8R8A8_UNORM:
809 case PIPE_FORMAT_A8R8G8B8_UNORM:
810 case PIPE_FORMAT_A8B8G8R8_UNORM:
811 return PIPE_FORMAT_R8G8B8A8_UNORM;
812
813 case PIPE_FORMAT_B10G10R10A2_UNORM:
814 return PIPE_FORMAT_R10G10B10A2_UNORM;
815
816 case PIPE_FORMAT_B10G10R10A2_SNORM:
817 return PIPE_FORMAT_R10G10B10A2_SNORM;
818
819 case PIPE_FORMAT_B10G10R10A2_UINT:
820 return PIPE_FORMAT_R10G10B10A2_UINT;
821
822 default:
823 return format;
824 }
825 }
826
827 /**
828 * Converts PIPE_FORMAT_A* to PIPE_FORMAT_R*.
829 */
830 static enum pipe_format
831 alpha_to_red(enum pipe_format format)
832 {
833 switch (format)
834 {
835 case PIPE_FORMAT_A8_UNORM:
836 return PIPE_FORMAT_R8_UNORM;
837 case PIPE_FORMAT_A8_SNORM:
838 return PIPE_FORMAT_R8_SNORM;
839 case PIPE_FORMAT_A8_UINT:
840 return PIPE_FORMAT_R8_UINT;
841 case PIPE_FORMAT_A8_SINT:
842 return PIPE_FORMAT_R8_SINT;
843
844 case PIPE_FORMAT_A16_UNORM:
845 return PIPE_FORMAT_R16_UNORM;
846 case PIPE_FORMAT_A16_SNORM:
847 return PIPE_FORMAT_R16_SNORM;
848 case PIPE_FORMAT_A16_UINT:
849 return PIPE_FORMAT_R16_UINT;
850 case PIPE_FORMAT_A16_SINT:
851 return PIPE_FORMAT_R16_SINT;
852 case PIPE_FORMAT_A16_FLOAT:
853 return PIPE_FORMAT_R16_FLOAT;
854
855 case PIPE_FORMAT_A32_UINT:
856 return PIPE_FORMAT_R32_UINT;
857 case PIPE_FORMAT_A32_SINT:
858 return PIPE_FORMAT_R32_SINT;
859 case PIPE_FORMAT_A32_FLOAT:
860 return PIPE_FORMAT_R32_FLOAT;
861
862 default:
863 return format;
864 }
865 }
866
867 /**
868 * Converts PIPE_FORMAT_R*A* to PIPE_FORMAT_R*G*.
869 */
870 static enum pipe_format
871 red_alpha_to_red_green(enum pipe_format format)
872 {
873 switch (format)
874 {
875 case PIPE_FORMAT_R8A8_UNORM:
876 return PIPE_FORMAT_R8G8_UNORM;
877 case PIPE_FORMAT_R8A8_SNORM:
878 return PIPE_FORMAT_R8G8_SNORM;
879 case PIPE_FORMAT_R8A8_UINT:
880 return PIPE_FORMAT_R8G8_UINT;
881 case PIPE_FORMAT_R8A8_SINT:
882 return PIPE_FORMAT_R8G8_SINT;
883
884 case PIPE_FORMAT_R16A16_UNORM:
885 return PIPE_FORMAT_R16G16_UNORM;
886 case PIPE_FORMAT_R16A16_SNORM:
887 return PIPE_FORMAT_R16G16_SNORM;
888 case PIPE_FORMAT_R16A16_UINT:
889 return PIPE_FORMAT_R16G16_UINT;
890 case PIPE_FORMAT_R16A16_SINT:
891 return PIPE_FORMAT_R16G16_SINT;
892 case PIPE_FORMAT_R16A16_FLOAT:
893 return PIPE_FORMAT_R16G16_FLOAT;
894
895 case PIPE_FORMAT_R32A32_UINT:
896 return PIPE_FORMAT_R32G32_UINT;
897 case PIPE_FORMAT_R32A32_SINT:
898 return PIPE_FORMAT_R32G32_SINT;
899 case PIPE_FORMAT_R32A32_FLOAT:
900 return PIPE_FORMAT_R32G32_FLOAT;
901
902 default:
903 return format;
904 }
905 }
906
907 /**
908 * Converts PIPE_FORMAT_L*A* to PIPE_FORMAT_R*G*.
909 */
910 static enum pipe_format
911 luminance_alpha_to_red_green(enum pipe_format format)
912 {
913 switch (format)
914 {
915 case PIPE_FORMAT_L8A8_UNORM:
916 return PIPE_FORMAT_R8G8_UNORM;
917 case PIPE_FORMAT_L8A8_SNORM:
918 return PIPE_FORMAT_R8G8_SNORM;
919 case PIPE_FORMAT_L8A8_UINT:
920 return PIPE_FORMAT_R8G8_UINT;
921 case PIPE_FORMAT_L8A8_SINT:
922 return PIPE_FORMAT_R8G8_SINT;
923
924 case PIPE_FORMAT_L16A16_UNORM:
925 return PIPE_FORMAT_R16G16_UNORM;
926 case PIPE_FORMAT_L16A16_SNORM:
927 return PIPE_FORMAT_R16G16_SNORM;
928 case PIPE_FORMAT_L16A16_UINT:
929 return PIPE_FORMAT_R16G16_UINT;
930 case PIPE_FORMAT_L16A16_SINT:
931 return PIPE_FORMAT_R16G16_SINT;
932 case PIPE_FORMAT_L16A16_FLOAT:
933 return PIPE_FORMAT_R16G16_FLOAT;
934
935 case PIPE_FORMAT_L32A32_UINT:
936 return PIPE_FORMAT_R32G32_UINT;
937 case PIPE_FORMAT_L32A32_SINT:
938 return PIPE_FORMAT_R32G32_SINT;
939 case PIPE_FORMAT_L32A32_FLOAT:
940 return PIPE_FORMAT_R32G32_FLOAT;
941
942 default:
943 return format;
944 }
945 }
946
947 /**
948 * Returns true if format is a PIPE_FORMAT_A* format, and false otherwise.
949 */
950 static bool
951 format_is_alpha(enum pipe_format format)
952 {
953 const struct util_format_description *desc = util_format_description(format);
954
955 if (desc->nr_channels == 1 &&
956 desc->swizzle[0] == PIPE_SWIZZLE_0 &&
957 desc->swizzle[1] == PIPE_SWIZZLE_0 &&
958 desc->swizzle[2] == PIPE_SWIZZLE_0 &&
959 desc->swizzle[3] == PIPE_SWIZZLE_X)
960 return true;
961
962 return false;
963 }
964
965 /**
966 * Returns true if format is a PIPE_FORMAT_R* format, and false otherwise.
967 */
968 static bool
969 format_is_red(enum pipe_format format)
970 {
971 const struct util_format_description *desc = util_format_description(format);
972
973 if (desc->nr_channels == 1 &&
974 desc->swizzle[0] == PIPE_SWIZZLE_X &&
975 desc->swizzle[1] == PIPE_SWIZZLE_0 &&
976 desc->swizzle[2] == PIPE_SWIZZLE_0 &&
977 desc->swizzle[3] == PIPE_SWIZZLE_1)
978 return true;
979
980 return false;
981 }
982
983
984 /**
985 * Returns true if format is a PIPE_FORMAT_L* format, and false otherwise.
986 */
987 static bool
988 format_is_luminance(enum pipe_format format)
989 {
990 const struct util_format_description *desc = util_format_description(format);
991
992 if (desc->nr_channels == 1 &&
993 desc->swizzle[0] == PIPE_SWIZZLE_X &&
994 desc->swizzle[1] == PIPE_SWIZZLE_X &&
995 desc->swizzle[2] == PIPE_SWIZZLE_X &&
996 desc->swizzle[3] == PIPE_SWIZZLE_1)
997 return true;
998
999 return false;
1000 }
1001
1002 /**
1003 * Returns true if format is a PIPE_FORMAT_R*A* format, and false otherwise.
1004 */
1005 static bool
1006 format_is_red_alpha(enum pipe_format format)
1007 {
1008 const struct util_format_description *desc = util_format_description(format);
1009
1010 if (desc->nr_channels == 2 &&
1011 desc->swizzle[0] == PIPE_SWIZZLE_X &&
1012 desc->swizzle[1] == PIPE_SWIZZLE_0 &&
1013 desc->swizzle[2] == PIPE_SWIZZLE_0 &&
1014 desc->swizzle[3] == PIPE_SWIZZLE_Y)
1015 return true;
1016
1017 return false;
1018 }
1019
1020 static bool
1021 format_is_swizzled_rgba(enum pipe_format format)
1022 {
1023 const struct util_format_description *desc = util_format_description(format);
1024
1025 if ((desc->swizzle[0] == TGSI_SWIZZLE_X || desc->swizzle[0] == PIPE_SWIZZLE_0) &&
1026 (desc->swizzle[1] == TGSI_SWIZZLE_Y || desc->swizzle[1] == PIPE_SWIZZLE_0) &&
1027 (desc->swizzle[2] == TGSI_SWIZZLE_Z || desc->swizzle[2] == PIPE_SWIZZLE_0) &&
1028 (desc->swizzle[3] == TGSI_SWIZZLE_W || desc->swizzle[3] == PIPE_SWIZZLE_1))
1029 return false;
1030
1031 return true;
1032 }
1033
1034 struct format_table
1035 {
1036 unsigned char swizzle[4];
1037 enum pipe_format format;
1038 };
1039
1040 static const struct format_table table_8888_unorm[] = {
1041 { { 0, 1, 2, 3 }, PIPE_FORMAT_R8G8B8A8_UNORM },
1042 { { 2, 1, 0, 3 }, PIPE_FORMAT_B8G8R8A8_UNORM },
1043 { { 3, 0, 1, 2 }, PIPE_FORMAT_A8R8G8B8_UNORM },
1044 { { 3, 2, 1, 0 }, PIPE_FORMAT_A8B8G8R8_UNORM }
1045 };
1046
1047 static const struct format_table table_1010102_unorm[] = {
1048 { { 0, 1, 2, 3 }, PIPE_FORMAT_R10G10B10A2_UNORM },
1049 { { 2, 1, 0, 3 }, PIPE_FORMAT_B10G10R10A2_UNORM }
1050 };
1051
1052 static const struct format_table table_1010102_snorm[] = {
1053 { { 0, 1, 2, 3 }, PIPE_FORMAT_R10G10B10A2_SNORM },
1054 { { 2, 1, 0, 3 }, PIPE_FORMAT_B10G10R10A2_SNORM }
1055 };
1056
1057 static const struct format_table table_1010102_uint[] = {
1058 { { 0, 1, 2, 3 }, PIPE_FORMAT_R10G10B10A2_UINT },
1059 { { 2, 1, 0, 3 }, PIPE_FORMAT_B10G10R10A2_UINT }
1060 };
1061
1062 static enum pipe_format
1063 swizzle_format(enum pipe_format format, const int * const swizzle)
1064 {
1065 unsigned i;
1066
1067 switch (format) {
1068 case PIPE_FORMAT_R8G8B8A8_UNORM:
1069 case PIPE_FORMAT_B8G8R8A8_UNORM:
1070 case PIPE_FORMAT_A8R8G8B8_UNORM:
1071 case PIPE_FORMAT_A8B8G8R8_UNORM:
1072 for (i = 0; i < ARRAY_SIZE(table_8888_unorm); i++) {
1073 if (swizzle[0] == table_8888_unorm[i].swizzle[0] &&
1074 swizzle[1] == table_8888_unorm[i].swizzle[1] &&
1075 swizzle[2] == table_8888_unorm[i].swizzle[2] &&
1076 swizzle[3] == table_8888_unorm[i].swizzle[3])
1077 return table_8888_unorm[i].format;
1078 }
1079 break;
1080
1081 case PIPE_FORMAT_R10G10B10A2_UNORM:
1082 case PIPE_FORMAT_B10G10R10A2_UNORM:
1083 for (i = 0; i < ARRAY_SIZE(table_1010102_unorm); i++) {
1084 if (swizzle[0] == table_1010102_unorm[i].swizzle[0] &&
1085 swizzle[1] == table_1010102_unorm[i].swizzle[1] &&
1086 swizzle[2] == table_1010102_unorm[i].swizzle[2] &&
1087 swizzle[3] == table_1010102_unorm[i].swizzle[3])
1088 return table_1010102_unorm[i].format;
1089 }
1090 break;
1091
1092 case PIPE_FORMAT_R10G10B10A2_SNORM:
1093 case PIPE_FORMAT_B10G10R10A2_SNORM:
1094 for (i = 0; i < ARRAY_SIZE(table_1010102_snorm); i++) {
1095 if (swizzle[0] == table_1010102_snorm[i].swizzle[0] &&
1096 swizzle[1] == table_1010102_snorm[i].swizzle[1] &&
1097 swizzle[2] == table_1010102_snorm[i].swizzle[2] &&
1098 swizzle[3] == table_1010102_snorm[i].swizzle[3])
1099 return table_1010102_snorm[i].format;
1100 }
1101 break;
1102
1103 case PIPE_FORMAT_R10G10B10A2_UINT:
1104 case PIPE_FORMAT_B10G10R10A2_UINT:
1105 for (i = 0; i < ARRAY_SIZE(table_1010102_uint); i++) {
1106 if (swizzle[0] == table_1010102_uint[i].swizzle[0] &&
1107 swizzle[1] == table_1010102_uint[i].swizzle[1] &&
1108 swizzle[2] == table_1010102_uint[i].swizzle[2] &&
1109 swizzle[3] == table_1010102_uint[i].swizzle[3])
1110 return table_1010102_uint[i].format;
1111 }
1112 break;
1113
1114 default:
1115 break;
1116 }
1117
1118 return PIPE_FORMAT_NONE;
1119 }
1120
1121 static bool
1122 reinterpret_formats(enum pipe_format *src_format, enum pipe_format *dst_format)
1123 {
1124 enum pipe_format src = *src_format;
1125 enum pipe_format dst = *dst_format;
1126
1127 /* Note: dst_format has already been transformed from luminance/intensity
1128 * to red when this function is called. The source format will never
1129 * be an intensity format, because GL_INTENSITY is not a legal value
1130 * for the format parameter in glTex(Sub)Image(). */
1131
1132 if (format_is_alpha(src)) {
1133 if (!format_is_alpha(dst))
1134 return false;
1135
1136 src = alpha_to_red(src);
1137 dst = alpha_to_red(dst);
1138 } else if (format_is_luminance(src)) {
1139 if (!format_is_red(dst) && !format_is_red_alpha(dst))
1140 return false;
1141
1142 src = util_format_luminance_to_red(src);
1143 } else if (util_format_is_luminance_alpha(src)) {
1144 src = luminance_alpha_to_red_green(src);
1145
1146 if (format_is_red_alpha(dst)) {
1147 dst = red_alpha_to_red_green(dst);
1148 } else if (!format_is_red(dst))
1149 return false;
1150 } else if (format_is_swizzled_rgba(src)) {
1151 const struct util_format_description *src_desc = util_format_description(src);
1152 const struct util_format_description *dst_desc = util_format_description(dst);
1153 int swizzle[4];
1154 unsigned i;
1155
1156 /* Make sure the format is an RGBA and not an RGBX format */
1157 if (src_desc->nr_channels != 4 || src_desc->swizzle[3] == PIPE_SWIZZLE_1)
1158 return false;
1159
1160 if (dst_desc->nr_channels != 4 || dst_desc->swizzle[3] == PIPE_SWIZZLE_1)
1161 return false;
1162
1163 for (i = 0; i < 4; i++)
1164 swizzle[i] = dst_desc->swizzle[src_desc->swizzle[i]];
1165
1166 dst = swizzle_format(dst, swizzle);
1167 if (dst == PIPE_FORMAT_NONE)
1168 return false;
1169
1170 src = unswizzle_format(src);
1171 }
1172
1173 *src_format = src;
1174 *dst_format = dst;
1175 return true;
1176 }
1177
1178 static bool
1179 try_pbo_upload_common(struct gl_context *ctx,
1180 struct pipe_surface *surface,
1181 const struct st_pbo_addresses *addr,
1182 enum pipe_format src_format)
1183 {
1184 struct st_context *st = st_context(ctx);
1185 struct cso_context *cso = st->cso_context;
1186 struct pipe_context *pipe = st->pipe;
1187 bool success = false;
1188 void *fs;
1189
1190 fs = st_pbo_get_upload_fs(st, src_format, surface->format);
1191 if (!fs)
1192 return false;
1193
1194 cso_save_state(cso, (CSO_BIT_FRAGMENT_SAMPLER_VIEWS |
1195 CSO_BIT_VERTEX_ELEMENTS |
1196 CSO_BIT_AUX_VERTEX_BUFFER_SLOT |
1197 CSO_BIT_FRAMEBUFFER |
1198 CSO_BIT_VIEWPORT |
1199 CSO_BIT_BLEND |
1200 CSO_BIT_DEPTH_STENCIL_ALPHA |
1201 CSO_BIT_RASTERIZER |
1202 CSO_BIT_STREAM_OUTPUTS |
1203 CSO_BIT_PAUSE_QUERIES |
1204 CSO_BIT_SAMPLE_MASK |
1205 CSO_BIT_MIN_SAMPLES |
1206 CSO_BIT_RENDER_CONDITION |
1207 CSO_BITS_ALL_SHADERS));
1208 cso_save_constant_buffer_slot0(cso, PIPE_SHADER_FRAGMENT);
1209
1210 cso_set_sample_mask(cso, ~0);
1211 cso_set_min_samples(cso, 1);
1212 cso_set_render_condition(cso, NULL, FALSE, 0);
1213
1214 /* Set up the sampler_view */
1215 {
1216 struct pipe_sampler_view templ;
1217 struct pipe_sampler_view *sampler_view;
1218
1219 memset(&templ, 0, sizeof(templ));
1220 templ.target = PIPE_BUFFER;
1221 templ.format = src_format;
1222 templ.u.buf.offset = addr->first_element * addr->bytes_per_pixel;
1223 templ.u.buf.size = (addr->last_element - addr->first_element + 1) *
1224 addr->bytes_per_pixel;
1225 templ.swizzle_r = PIPE_SWIZZLE_X;
1226 templ.swizzle_g = PIPE_SWIZZLE_Y;
1227 templ.swizzle_b = PIPE_SWIZZLE_Z;
1228 templ.swizzle_a = PIPE_SWIZZLE_W;
1229
1230 sampler_view = pipe->create_sampler_view(pipe, addr->buffer, &templ);
1231 if (sampler_view == NULL)
1232 goto fail;
1233
1234 cso_set_sampler_views(cso, PIPE_SHADER_FRAGMENT, 1, &sampler_view);
1235
1236 pipe_sampler_view_reference(&sampler_view, NULL);
1237 }
1238
1239 /* Framebuffer_state */
1240 {
1241 struct pipe_framebuffer_state fb;
1242 memset(&fb, 0, sizeof(fb));
1243 fb.width = surface->width;
1244 fb.height = surface->height;
1245 fb.nr_cbufs = 1;
1246 pipe_surface_reference(&fb.cbufs[0], surface);
1247
1248 cso_set_framebuffer(cso, &fb);
1249
1250 pipe_surface_reference(&fb.cbufs[0], NULL);
1251 }
1252
1253 cso_set_viewport_dims(cso, surface->width, surface->height, FALSE);
1254
1255 /* Blend state */
1256 cso_set_blend(cso, &st->pbo.upload_blend);
1257
1258 /* Depth/stencil/alpha state */
1259 {
1260 struct pipe_depth_stencil_alpha_state dsa;
1261 memset(&dsa, 0, sizeof(dsa));
1262 cso_set_depth_stencil_alpha(cso, &dsa);
1263 }
1264
1265 /* Set up the fragment shader */
1266 cso_set_fragment_shader_handle(cso, fs);
1267
1268 success = st_pbo_draw(st, addr, surface->width, surface->height);
1269
1270 fail:
1271 cso_restore_state(cso);
1272 cso_restore_constant_buffer_slot0(cso, PIPE_SHADER_FRAGMENT);
1273
1274 return success;
1275 }
1276
1277 static bool
1278 try_pbo_upload(struct gl_context *ctx, GLuint dims,
1279 struct gl_texture_image *texImage,
1280 GLenum format, GLenum type,
1281 enum pipe_format dst_format,
1282 GLint xoffset, GLint yoffset, GLint zoffset,
1283 GLint width, GLint height, GLint depth,
1284 const void *pixels,
1285 const struct gl_pixelstore_attrib *unpack)
1286 {
1287 struct st_context *st = st_context(ctx);
1288 struct st_texture_image *stImage = st_texture_image(texImage);
1289 struct st_texture_object *stObj = st_texture_object(texImage->TexObject);
1290 struct pipe_resource *texture = stImage->pt;
1291 struct pipe_context *pipe = st->pipe;
1292 struct pipe_screen *screen = pipe->screen;
1293 struct pipe_surface *surface = NULL;
1294 struct st_pbo_addresses addr;
1295 enum pipe_format src_format;
1296 const struct util_format_description *desc;
1297 GLenum gl_target = texImage->TexObject->Target;
1298 bool success;
1299
1300 if (!st->pbo.upload_enabled)
1301 return false;
1302
1303 /* From now on, we need the gallium representation of dimensions. */
1304 if (gl_target == GL_TEXTURE_1D_ARRAY) {
1305 depth = height;
1306 height = 1;
1307 zoffset = yoffset;
1308 yoffset = 0;
1309 }
1310
1311 if (depth != 1 && !st->pbo.layers)
1312 return false;
1313
1314 /* Choose the source format. Initially, we do so without checking driver
1315 * support at all because of the remapping we later perform and because
1316 * at least the Radeon driver actually supports some formats for texture
1317 * buffers which it doesn't support for regular textures. */
1318 src_format = st_choose_matching_format(st, 0, format, type, unpack->SwapBytes);
1319 if (!src_format) {
1320 return false;
1321 }
1322
1323 src_format = util_format_linear(src_format);
1324 desc = util_format_description(src_format);
1325
1326 if (desc->layout != UTIL_FORMAT_LAYOUT_PLAIN)
1327 return false;
1328
1329 if (desc->colorspace != UTIL_FORMAT_COLORSPACE_RGB)
1330 return false;
1331
1332 if (st->pbo.rgba_only) {
1333 enum pipe_format orig_dst_format = dst_format;
1334
1335 if (!reinterpret_formats(&src_format, &dst_format)) {
1336 return false;
1337 }
1338
1339 if (dst_format != orig_dst_format &&
1340 !screen->is_format_supported(screen, dst_format, PIPE_TEXTURE_2D, 0,
1341 0, PIPE_BIND_RENDER_TARGET)) {
1342 return false;
1343 }
1344 }
1345
1346 if (!src_format ||
1347 !screen->is_format_supported(screen, src_format, PIPE_BUFFER, 0, 0,
1348 PIPE_BIND_SAMPLER_VIEW)) {
1349 return false;
1350 }
1351
1352 /* Compute buffer addresses */
1353 addr.xoffset = xoffset;
1354 addr.yoffset = yoffset;
1355 addr.width = width;
1356 addr.height = height;
1357 addr.depth = depth;
1358 addr.bytes_per_pixel = desc->block.bits / 8;
1359
1360 if (!st_pbo_addresses_pixelstore(st, gl_target, dims == 3, unpack, pixels,
1361 &addr))
1362 return false;
1363
1364 /* Set up the surface */
1365 {
1366 unsigned level = stObj->pt != stImage->pt ? 0 : texImage->TexObject->MinLevel + texImage->Level;
1367 unsigned max_layer = util_max_layer(texture, level);
1368
1369 zoffset += texImage->Face + texImage->TexObject->MinLayer;
1370
1371 struct pipe_surface templ;
1372 memset(&templ, 0, sizeof(templ));
1373 templ.format = dst_format;
1374 templ.u.tex.level = level;
1375 templ.u.tex.first_layer = MIN2(zoffset, max_layer);
1376 templ.u.tex.last_layer = MIN2(zoffset + depth - 1, max_layer);
1377
1378 surface = pipe->create_surface(pipe, texture, &templ);
1379 if (!surface)
1380 return false;
1381 }
1382
1383 success = try_pbo_upload_common(ctx, surface, &addr, src_format);
1384
1385 pipe_surface_reference(&surface, NULL);
1386
1387 return success;
1388 }
1389
1390
1391 static void
1392 st_TexSubImage(struct gl_context *ctx, GLuint dims,
1393 struct gl_texture_image *texImage,
1394 GLint xoffset, GLint yoffset, GLint zoffset,
1395 GLint width, GLint height, GLint depth,
1396 GLenum format, GLenum type, const void *pixels,
1397 const struct gl_pixelstore_attrib *unpack)
1398 {
1399 struct st_context *st = st_context(ctx);
1400 struct st_texture_image *stImage = st_texture_image(texImage);
1401 struct st_texture_object *stObj = st_texture_object(texImage->TexObject);
1402 struct pipe_context *pipe = st->pipe;
1403 struct pipe_screen *screen = pipe->screen;
1404 struct pipe_resource *dst = stImage->pt;
1405 struct pipe_resource *src = NULL;
1406 struct pipe_resource src_templ;
1407 struct pipe_transfer *transfer;
1408 struct pipe_blit_info blit;
1409 enum pipe_format src_format, dst_format;
1410 mesa_format mesa_src_format;
1411 GLenum gl_target = texImage->TexObject->Target;
1412 unsigned bind;
1413 GLubyte *map;
1414 unsigned dstz = texImage->Face + texImage->TexObject->MinLayer;
1415 unsigned dst_level = 0;
1416 bool throttled = false;
1417
1418 st_flush_bitmap_cache(st);
1419 st_invalidate_readpix_cache(st);
1420
1421 if (stObj->pt == stImage->pt)
1422 dst_level = texImage->TexObject->MinLevel + texImage->Level;
1423
1424 assert(!_mesa_is_format_etc2(texImage->TexFormat) &&
1425 !_mesa_is_format_astc_2d(texImage->TexFormat) &&
1426 texImage->TexFormat != MESA_FORMAT_ETC1_RGB8);
1427
1428 if (!dst)
1429 goto fallback;
1430
1431 /* Try texture_subdata, which should be the fastest memcpy path. */
1432 if (pixels &&
1433 !_mesa_is_bufferobj(unpack->BufferObj) &&
1434 _mesa_texstore_can_use_memcpy(ctx, texImage->_BaseFormat,
1435 texImage->TexFormat, format, type,
1436 unpack)) {
1437 struct pipe_box box;
1438 unsigned stride, layer_stride;
1439 void *data;
1440
1441 stride = _mesa_image_row_stride(unpack, width, format, type);
1442 layer_stride = _mesa_image_image_stride(unpack, width, height, format,
1443 type);
1444 data = _mesa_image_address(dims, unpack, pixels, width, height, format,
1445 type, 0, 0, 0);
1446
1447 /* Convert to Gallium coordinates. */
1448 if (gl_target == GL_TEXTURE_1D_ARRAY) {
1449 zoffset = yoffset;
1450 yoffset = 0;
1451 depth = height;
1452 height = 1;
1453 layer_stride = stride;
1454 }
1455
1456 util_throttle_memory_usage(pipe, &st->throttle,
1457 width * height * depth *
1458 util_format_get_blocksize(dst->format));
1459
1460 u_box_3d(xoffset, yoffset, zoffset + dstz, width, height, depth, &box);
1461 pipe->texture_subdata(pipe, dst, dst_level, 0,
1462 &box, data, stride, layer_stride);
1463 return;
1464 }
1465
1466 if (!st->prefer_blit_based_texture_transfer) {
1467 goto fallback;
1468 }
1469
1470 /* XXX Fallback for depth-stencil formats due to an incomplete stencil
1471 * blit implementation in some drivers. */
1472 if (format == GL_DEPTH_STENCIL) {
1473 goto fallback;
1474 }
1475
1476 /* If the base internal format and the texture format don't match,
1477 * we can't use blit-based TexSubImage. */
1478 if (texImage->_BaseFormat !=
1479 _mesa_get_format_base_format(texImage->TexFormat)) {
1480 goto fallback;
1481 }
1482
1483
1484 /* See if the destination format is supported. */
1485 if (format == GL_DEPTH_COMPONENT || format == GL_DEPTH_STENCIL)
1486 bind = PIPE_BIND_DEPTH_STENCIL;
1487 else
1488 bind = PIPE_BIND_RENDER_TARGET;
1489
1490 /* For luminance and intensity, only the red channel is stored
1491 * in the destination. */
1492 dst_format = util_format_linear(dst->format);
1493 dst_format = util_format_luminance_to_red(dst_format);
1494 dst_format = util_format_intensity_to_red(dst_format);
1495
1496 if (!dst_format ||
1497 !screen->is_format_supported(screen, dst_format, dst->target,
1498 dst->nr_samples, dst->nr_storage_samples,
1499 bind)) {
1500 goto fallback;
1501 }
1502
1503 if (_mesa_is_bufferobj(unpack->BufferObj)) {
1504 if (try_pbo_upload(ctx, dims, texImage, format, type, dst_format,
1505 xoffset, yoffset, zoffset,
1506 width, height, depth, pixels, unpack))
1507 return;
1508 }
1509
1510 /* See if the texture format already matches the format and type,
1511 * in which case the memcpy-based fast path will likely be used and
1512 * we don't have to blit. */
1513 if (_mesa_format_matches_format_and_type(texImage->TexFormat, format,
1514 type, unpack->SwapBytes, NULL)) {
1515 goto fallback;
1516 }
1517
1518 /* Choose the source format. */
1519 src_format = st_choose_matching_format(st, PIPE_BIND_SAMPLER_VIEW,
1520 format, type, unpack->SwapBytes);
1521 if (!src_format) {
1522 goto fallback;
1523 }
1524
1525 mesa_src_format = st_pipe_format_to_mesa_format(src_format);
1526
1527 /* There is no reason to do this if we cannot use memcpy for the temporary
1528 * source texture at least. This also takes transfer ops into account,
1529 * etc. */
1530 if (!_mesa_texstore_can_use_memcpy(ctx,
1531 _mesa_get_format_base_format(mesa_src_format),
1532 mesa_src_format, format, type, unpack)) {
1533 goto fallback;
1534 }
1535
1536 /* TexSubImage only sets a single cubemap face. */
1537 if (gl_target == GL_TEXTURE_CUBE_MAP) {
1538 gl_target = GL_TEXTURE_2D;
1539 }
1540 /* TexSubImage can specify subsets of cube map array faces
1541 * so we need to upload via 2D array instead */
1542 if (gl_target == GL_TEXTURE_CUBE_MAP_ARRAY) {
1543 gl_target = GL_TEXTURE_2D_ARRAY;
1544 }
1545
1546 /* Initialize the source texture description. */
1547 memset(&src_templ, 0, sizeof(src_templ));
1548 src_templ.target = gl_target_to_pipe(gl_target);
1549 src_templ.format = src_format;
1550 src_templ.bind = PIPE_BIND_SAMPLER_VIEW;
1551 src_templ.usage = PIPE_USAGE_STAGING;
1552
1553 st_gl_texture_dims_to_pipe_dims(gl_target, width, height, depth,
1554 &src_templ.width0, &src_templ.height0,
1555 &src_templ.depth0, &src_templ.array_size);
1556
1557 /* Check for NPOT texture support. */
1558 if (!screen->get_param(screen, PIPE_CAP_NPOT_TEXTURES) &&
1559 (!util_is_power_of_two_or_zero(src_templ.width0) ||
1560 !util_is_power_of_two_or_zero(src_templ.height0) ||
1561 !util_is_power_of_two_or_zero(src_templ.depth0))) {
1562 goto fallback;
1563 }
1564
1565 util_throttle_memory_usage(pipe, &st->throttle,
1566 width * height * depth *
1567 util_format_get_blocksize(src_templ.format));
1568 throttled = true;
1569
1570 /* Create the source texture. */
1571 src = screen->resource_create(screen, &src_templ);
1572 if (!src) {
1573 goto fallback;
1574 }
1575
1576 /* Map source pixels. */
1577 pixels = _mesa_validate_pbo_teximage(ctx, dims, width, height, depth,
1578 format, type, pixels, unpack,
1579 "glTexSubImage");
1580 if (!pixels) {
1581 /* This is a GL error. */
1582 pipe_resource_reference(&src, NULL);
1583 return;
1584 }
1585
1586 /* From now on, we need the gallium representation of dimensions. */
1587 if (gl_target == GL_TEXTURE_1D_ARRAY) {
1588 zoffset = yoffset;
1589 yoffset = 0;
1590 depth = height;
1591 height = 1;
1592 }
1593
1594 map = pipe_transfer_map_3d(pipe, src, 0, PIPE_TRANSFER_WRITE, 0, 0, 0,
1595 width, height, depth, &transfer);
1596 if (!map) {
1597 _mesa_unmap_teximage_pbo(ctx, unpack);
1598 pipe_resource_reference(&src, NULL);
1599 goto fallback;
1600 }
1601
1602 /* Upload pixels (just memcpy). */
1603 {
1604 const uint bytesPerRow = width * util_format_get_blocksize(src_format);
1605 GLuint row, slice;
1606
1607 for (slice = 0; slice < (unsigned) depth; slice++) {
1608 if (gl_target == GL_TEXTURE_1D_ARRAY) {
1609 /* 1D array textures.
1610 * We need to convert gallium coords to GL coords.
1611 */
1612 void *src = _mesa_image_address2d(unpack, pixels,
1613 width, depth, format,
1614 type, slice, 0);
1615 memcpy(map, src, bytesPerRow);
1616 }
1617 else {
1618 ubyte *slice_map = map;
1619
1620 for (row = 0; row < (unsigned) height; row++) {
1621 void *src = _mesa_image_address(dims, unpack, pixels,
1622 width, height, format,
1623 type, slice, row, 0);
1624 memcpy(slice_map, src, bytesPerRow);
1625 slice_map += transfer->stride;
1626 }
1627 }
1628 map += transfer->layer_stride;
1629 }
1630 }
1631
1632 pipe_transfer_unmap(pipe, transfer);
1633 _mesa_unmap_teximage_pbo(ctx, unpack);
1634
1635 /* Blit. */
1636 memset(&blit, 0, sizeof(blit));
1637 blit.src.resource = src;
1638 blit.src.level = 0;
1639 blit.src.format = src_format;
1640 blit.dst.resource = dst;
1641 blit.dst.level = dst_level;
1642 blit.dst.format = dst_format;
1643 blit.src.box.x = blit.src.box.y = blit.src.box.z = 0;
1644 blit.dst.box.x = xoffset;
1645 blit.dst.box.y = yoffset;
1646 blit.dst.box.z = zoffset + dstz;
1647 blit.src.box.width = blit.dst.box.width = width;
1648 blit.src.box.height = blit.dst.box.height = height;
1649 blit.src.box.depth = blit.dst.box.depth = depth;
1650 blit.mask = st_get_blit_mask(format, texImage->_BaseFormat);
1651 blit.filter = PIPE_TEX_FILTER_NEAREST;
1652 blit.scissor_enable = FALSE;
1653
1654 st->pipe->blit(st->pipe, &blit);
1655
1656 pipe_resource_reference(&src, NULL);
1657 return;
1658
1659 fallback:
1660 if (!throttled) {
1661 util_throttle_memory_usage(pipe, &st->throttle,
1662 width * height * depth *
1663 _mesa_get_format_bytes(texImage->TexFormat));
1664 }
1665 _mesa_store_texsubimage(ctx, dims, texImage, xoffset, yoffset, zoffset,
1666 width, height, depth, format, type, pixels,
1667 unpack);
1668 }
1669
1670 static void
1671 st_TexImage(struct gl_context * ctx, GLuint dims,
1672 struct gl_texture_image *texImage,
1673 GLenum format, GLenum type, const void *pixels,
1674 const struct gl_pixelstore_attrib *unpack)
1675 {
1676 assert(dims == 1 || dims == 2 || dims == 3);
1677
1678 prep_teximage(ctx, texImage, format, type);
1679
1680 if (texImage->Width == 0 || texImage->Height == 0 || texImage->Depth == 0)
1681 return;
1682
1683 /* allocate storage for texture data */
1684 if (!ctx->Driver.AllocTextureImageBuffer(ctx, texImage)) {
1685 _mesa_error(ctx, GL_OUT_OF_MEMORY, "glTexImage%uD", dims);
1686 return;
1687 }
1688
1689 st_TexSubImage(ctx, dims, texImage, 0, 0, 0,
1690 texImage->Width, texImage->Height, texImage->Depth,
1691 format, type, pixels, unpack);
1692 }
1693
1694
1695 static void
1696 st_CompressedTexSubImage(struct gl_context *ctx, GLuint dims,
1697 struct gl_texture_image *texImage,
1698 GLint x, GLint y, GLint z,
1699 GLsizei w, GLsizei h, GLsizei d,
1700 GLenum format, GLsizei imageSize, const void *data)
1701 {
1702 struct st_context *st = st_context(ctx);
1703 struct st_texture_image *stImage = st_texture_image(texImage);
1704 struct st_texture_object *stObj = st_texture_object(texImage->TexObject);
1705 struct pipe_resource *texture = stImage->pt;
1706 struct pipe_context *pipe = st->pipe;
1707 struct pipe_screen *screen = pipe->screen;
1708 struct pipe_resource *dst = stImage->pt;
1709 struct pipe_surface *surface = NULL;
1710 struct compressed_pixelstore store;
1711 struct st_pbo_addresses addr;
1712 enum pipe_format copy_format;
1713 unsigned bw, bh;
1714 intptr_t buf_offset;
1715 bool success = false;
1716
1717 /* Check basic pre-conditions for PBO upload */
1718 if (!st->prefer_blit_based_texture_transfer) {
1719 goto fallback;
1720 }
1721
1722 if (!_mesa_is_bufferobj(ctx->Unpack.BufferObj))
1723 goto fallback;
1724
1725 if (st_compressed_format_fallback(st, texImage->TexFormat))
1726 goto fallback;
1727
1728 if (!dst) {
1729 goto fallback;
1730 }
1731
1732 if (!st->pbo.upload_enabled ||
1733 !screen->get_param(screen, PIPE_CAP_SURFACE_REINTERPRET_BLOCKS)) {
1734 goto fallback;
1735 }
1736
1737 /* Choose the pipe format for the upload. */
1738 addr.bytes_per_pixel = util_format_get_blocksize(dst->format);
1739 bw = util_format_get_blockwidth(dst->format);
1740 bh = util_format_get_blockheight(dst->format);
1741
1742 switch (addr.bytes_per_pixel) {
1743 case 8:
1744 copy_format = PIPE_FORMAT_R16G16B16A16_UINT;
1745 break;
1746 case 16:
1747 copy_format = PIPE_FORMAT_R32G32B32A32_UINT;
1748 break;
1749 default:
1750 goto fallback;
1751 }
1752
1753 if (!screen->is_format_supported(screen, copy_format, PIPE_BUFFER, 0, 0,
1754 PIPE_BIND_SAMPLER_VIEW)) {
1755 goto fallback;
1756 }
1757
1758 if (!screen->is_format_supported(screen, copy_format, dst->target,
1759 dst->nr_samples, dst->nr_storage_samples,
1760 PIPE_BIND_RENDER_TARGET)) {
1761 goto fallback;
1762 }
1763
1764 /* Interpret the pixelstore settings. */
1765 _mesa_compute_compressed_pixelstore(dims, texImage->TexFormat, w, h, d,
1766 &ctx->Unpack, &store);
1767 assert(store.CopyBytesPerRow % addr.bytes_per_pixel == 0);
1768 assert(store.SkipBytes % addr.bytes_per_pixel == 0);
1769
1770 /* Compute the offset into the buffer */
1771 buf_offset = (intptr_t)data + store.SkipBytes;
1772
1773 if (buf_offset % addr.bytes_per_pixel) {
1774 goto fallback;
1775 }
1776
1777 buf_offset = buf_offset / addr.bytes_per_pixel;
1778
1779 addr.xoffset = x / bw;
1780 addr.yoffset = y / bh;
1781 addr.width = store.CopyBytesPerRow / addr.bytes_per_pixel;
1782 addr.height = store.CopyRowsPerSlice;
1783 addr.depth = d;
1784 addr.pixels_per_row = store.TotalBytesPerRow / addr.bytes_per_pixel;
1785 addr.image_height = store.TotalRowsPerSlice;
1786
1787 if (!st_pbo_addresses_setup(st, st_buffer_object(ctx->Unpack.BufferObj)->buffer,
1788 buf_offset, &addr))
1789 goto fallback;
1790
1791 /* Set up the surface. */
1792 {
1793 unsigned level = stObj->pt != stImage->pt ? 0 : texImage->TexObject->MinLevel + texImage->Level;
1794 unsigned max_layer = util_max_layer(texture, level);
1795
1796 z += texImage->Face + texImage->TexObject->MinLayer;
1797
1798 struct pipe_surface templ;
1799 memset(&templ, 0, sizeof(templ));
1800 templ.format = copy_format;
1801 templ.u.tex.level = level;
1802 templ.u.tex.first_layer = MIN2(z, max_layer);
1803 templ.u.tex.last_layer = MIN2(z + d - 1, max_layer);
1804
1805 surface = pipe->create_surface(pipe, texture, &templ);
1806 if (!surface)
1807 goto fallback;
1808 }
1809
1810 success = try_pbo_upload_common(ctx, surface, &addr, copy_format);
1811
1812 pipe_surface_reference(&surface, NULL);
1813
1814 if (success)
1815 return;
1816
1817 fallback:
1818 _mesa_store_compressed_texsubimage(ctx, dims, texImage,
1819 x, y, z, w, h, d,
1820 format, imageSize, data);
1821 }
1822
1823 static void
1824 st_CompressedTexImage(struct gl_context *ctx, GLuint dims,
1825 struct gl_texture_image *texImage,
1826 GLsizei imageSize, const void *data)
1827 {
1828 prep_teximage(ctx, texImage, GL_NONE, GL_NONE);
1829
1830 /* only 2D and 3D compressed images are supported at this time */
1831 if (dims == 1) {
1832 _mesa_problem(ctx, "Unexpected glCompressedTexImage1D call");
1833 return;
1834 }
1835
1836 /* This is pretty simple, because unlike the general texstore path we don't
1837 * have to worry about the usual image unpacking or image transfer
1838 * operations.
1839 */
1840 assert(texImage);
1841 assert(texImage->Width > 0);
1842 assert(texImage->Height > 0);
1843 assert(texImage->Depth > 0);
1844
1845 /* allocate storage for texture data */
1846 if (!st_AllocTextureImageBuffer(ctx, texImage)) {
1847 _mesa_error(ctx, GL_OUT_OF_MEMORY, "glCompressedTexImage%uD", dims);
1848 return;
1849 }
1850
1851 st_CompressedTexSubImage(ctx, dims, texImage,
1852 0, 0, 0,
1853 texImage->Width, texImage->Height, texImage->Depth,
1854 texImage->TexFormat,
1855 imageSize, data);
1856 }
1857
1858
1859
1860
1861 /**
1862 * Called via ctx->Driver.GetTexSubImage()
1863 *
1864 * This uses a blit to copy the texture to a texture format which matches
1865 * the format and type combo and then a fast read-back is done using memcpy.
1866 * We can do arbitrary X/Y/Z/W/0/1 swizzling here as long as there is
1867 * a format which matches the swizzling.
1868 *
1869 * If such a format isn't available, it falls back to _mesa_GetTexImage_sw.
1870 *
1871 * NOTE: Drivers usually do a blit to convert between tiled and linear
1872 * texture layouts during texture uploads/downloads, so the blit
1873 * we do here should be free in such cases.
1874 */
1875 static void
1876 st_GetTexSubImage(struct gl_context * ctx,
1877 GLint xoffset, GLint yoffset, GLint zoffset,
1878 GLsizei width, GLsizei height, GLint depth,
1879 GLenum format, GLenum type, void * pixels,
1880 struct gl_texture_image *texImage)
1881 {
1882 struct st_context *st = st_context(ctx);
1883 struct pipe_context *pipe = st->pipe;
1884 struct pipe_screen *screen = pipe->screen;
1885 struct st_texture_image *stImage = st_texture_image(texImage);
1886 struct st_texture_object *stObj = st_texture_object(texImage->TexObject);
1887 struct pipe_resource *src = stObj->pt;
1888 struct pipe_resource *dst = NULL;
1889 struct pipe_resource dst_templ;
1890 enum pipe_format dst_format, src_format;
1891 mesa_format mesa_format;
1892 GLenum gl_target = texImage->TexObject->Target;
1893 enum pipe_texture_target pipe_target;
1894 unsigned dims;
1895 struct pipe_blit_info blit;
1896 unsigned bind;
1897 struct pipe_transfer *tex_xfer;
1898 ubyte *map = NULL;
1899 boolean done = FALSE;
1900
1901 assert(!_mesa_is_format_etc2(texImage->TexFormat) &&
1902 !_mesa_is_format_astc_2d(texImage->TexFormat) &&
1903 texImage->TexFormat != MESA_FORMAT_ETC1_RGB8);
1904
1905 st_flush_bitmap_cache(st);
1906
1907 if (!st->prefer_blit_based_texture_transfer &&
1908 !_mesa_is_format_compressed(texImage->TexFormat)) {
1909 /* Try to avoid the fallback if we're doing texture decompression here */
1910 goto fallback;
1911 }
1912
1913 /* Handle non-finalized textures. */
1914 if (!stImage->pt || stImage->pt != stObj->pt || !src) {
1915 goto fallback;
1916 }
1917
1918 /* XXX Fallback to _mesa_GetTexImage_sw for depth-stencil formats
1919 * due to an incomplete stencil blit implementation in some drivers. */
1920 if (format == GL_DEPTH_STENCIL || format == GL_STENCIL_INDEX) {
1921 goto fallback;
1922 }
1923
1924 /* If the base internal format and the texture format don't match, we have
1925 * to fall back to _mesa_GetTexImage_sw. */
1926 if (texImage->_BaseFormat !=
1927 _mesa_get_format_base_format(texImage->TexFormat)) {
1928 goto fallback;
1929 }
1930
1931 /* See if the texture format already matches the format and type,
1932 * in which case the memcpy-based fast path will be used. */
1933 if (_mesa_format_matches_format_and_type(texImage->TexFormat, format,
1934 type, ctx->Pack.SwapBytes, NULL)) {
1935 goto fallback;
1936 }
1937
1938 /* Convert the source format to what is expected by GetTexImage
1939 * and see if it's supported.
1940 *
1941 * This only applies to glGetTexImage:
1942 * - Luminance must be returned as (L,0,0,1).
1943 * - Luminance alpha must be returned as (L,0,0,A).
1944 * - Intensity must be returned as (I,0,0,1)
1945 */
1946 if (stObj->surface_based)
1947 src_format = util_format_linear(stObj->surface_format);
1948 else
1949 src_format = util_format_linear(src->format);
1950 src_format = util_format_luminance_to_red(src_format);
1951 src_format = util_format_intensity_to_red(src_format);
1952
1953 if (!src_format ||
1954 !screen->is_format_supported(screen, src_format, src->target,
1955 src->nr_samples, src->nr_storage_samples,
1956 PIPE_BIND_SAMPLER_VIEW)) {
1957 goto fallback;
1958 }
1959
1960 if (format == GL_DEPTH_COMPONENT || format == GL_DEPTH_STENCIL)
1961 bind = PIPE_BIND_DEPTH_STENCIL;
1962 else
1963 bind = PIPE_BIND_RENDER_TARGET;
1964
1965 /* GetTexImage only returns a single face for cubemaps. */
1966 if (gl_target == GL_TEXTURE_CUBE_MAP) {
1967 gl_target = GL_TEXTURE_2D;
1968 }
1969 pipe_target = gl_target_to_pipe(gl_target);
1970
1971 /* Choose the destination format by finding the best match
1972 * for the format+type combo. */
1973 dst_format = st_choose_matching_format(st, bind, format, type,
1974 ctx->Pack.SwapBytes);
1975
1976 if (dst_format == PIPE_FORMAT_NONE) {
1977 GLenum dst_glformat;
1978
1979 /* Fall back to _mesa_GetTexImage_sw except for compressed formats,
1980 * where decompression with a blit is always preferred. */
1981 if (!util_format_is_compressed(src->format)) {
1982 goto fallback;
1983 }
1984
1985 /* Set the appropriate format for the decompressed texture.
1986 * Luminance and sRGB formats shouldn't appear here.*/
1987 switch (src_format) {
1988 case PIPE_FORMAT_DXT1_RGB:
1989 case PIPE_FORMAT_DXT1_RGBA:
1990 case PIPE_FORMAT_DXT3_RGBA:
1991 case PIPE_FORMAT_DXT5_RGBA:
1992 case PIPE_FORMAT_RGTC1_UNORM:
1993 case PIPE_FORMAT_RGTC2_UNORM:
1994 case PIPE_FORMAT_ETC1_RGB8:
1995 case PIPE_FORMAT_ETC2_RGB8:
1996 case PIPE_FORMAT_ETC2_RGB8A1:
1997 case PIPE_FORMAT_ETC2_RGBA8:
1998 case PIPE_FORMAT_ASTC_4x4:
1999 case PIPE_FORMAT_ASTC_5x4:
2000 case PIPE_FORMAT_ASTC_5x5:
2001 case PIPE_FORMAT_ASTC_6x5:
2002 case PIPE_FORMAT_ASTC_6x6:
2003 case PIPE_FORMAT_ASTC_8x5:
2004 case PIPE_FORMAT_ASTC_8x6:
2005 case PIPE_FORMAT_ASTC_8x8:
2006 case PIPE_FORMAT_ASTC_10x5:
2007 case PIPE_FORMAT_ASTC_10x6:
2008 case PIPE_FORMAT_ASTC_10x8:
2009 case PIPE_FORMAT_ASTC_10x10:
2010 case PIPE_FORMAT_ASTC_12x10:
2011 case PIPE_FORMAT_ASTC_12x12:
2012 case PIPE_FORMAT_BPTC_RGBA_UNORM:
2013 dst_glformat = GL_RGBA8;
2014 break;
2015 case PIPE_FORMAT_RGTC1_SNORM:
2016 case PIPE_FORMAT_RGTC2_SNORM:
2017 if (!ctx->Extensions.EXT_texture_snorm)
2018 goto fallback;
2019 dst_glformat = GL_RGBA8_SNORM;
2020 break;
2021 case PIPE_FORMAT_BPTC_RGB_FLOAT:
2022 case PIPE_FORMAT_BPTC_RGB_UFLOAT:
2023 if (!ctx->Extensions.ARB_texture_float)
2024 goto fallback;
2025 dst_glformat = GL_RGBA32F;
2026 break;
2027 case PIPE_FORMAT_ETC2_R11_UNORM:
2028 if (!screen->is_format_supported(screen, PIPE_FORMAT_R16_UNORM,
2029 pipe_target, 0, 0, bind))
2030 goto fallback;
2031 dst_glformat = GL_R16;
2032 break;
2033 case PIPE_FORMAT_ETC2_R11_SNORM:
2034 if (!screen->is_format_supported(screen, PIPE_FORMAT_R16_SNORM,
2035 pipe_target, 0, 0, bind))
2036 goto fallback;
2037 dst_glformat = GL_R16_SNORM;
2038 break;
2039 case PIPE_FORMAT_ETC2_RG11_UNORM:
2040 if (!screen->is_format_supported(screen, PIPE_FORMAT_R16G16_UNORM,
2041 pipe_target, 0, 0, bind))
2042 goto fallback;
2043 dst_glformat = GL_RG16;
2044 break;
2045 case PIPE_FORMAT_ETC2_RG11_SNORM:
2046 if (!screen->is_format_supported(screen, PIPE_FORMAT_R16G16_SNORM,
2047 pipe_target, 0, 0, bind))
2048 goto fallback;
2049 dst_glformat = GL_RG16_SNORM;
2050 break;
2051 default:
2052 assert(0);
2053 goto fallback;
2054 }
2055
2056 dst_format = st_choose_format(st, dst_glformat, format, type,
2057 pipe_target, 0, 0, bind, FALSE);
2058
2059 if (dst_format == PIPE_FORMAT_NONE) {
2060 /* unable to get an rgba format!?! */
2061 goto fallback;
2062 }
2063 }
2064
2065 /* create the destination texture of size (width X height X depth) */
2066 memset(&dst_templ, 0, sizeof(dst_templ));
2067 dst_templ.target = pipe_target;
2068 dst_templ.format = dst_format;
2069 dst_templ.bind = bind;
2070 dst_templ.usage = PIPE_USAGE_STAGING;
2071
2072 st_gl_texture_dims_to_pipe_dims(gl_target, width, height, depth,
2073 &dst_templ.width0, &dst_templ.height0,
2074 &dst_templ.depth0, &dst_templ.array_size);
2075
2076 dst = screen->resource_create(screen, &dst_templ);
2077 if (!dst) {
2078 goto fallback;
2079 }
2080
2081 /* From now on, we need the gallium representation of dimensions. */
2082 if (gl_target == GL_TEXTURE_1D_ARRAY) {
2083 zoffset = yoffset;
2084 yoffset = 0;
2085 depth = height;
2086 height = 1;
2087 }
2088
2089 assert(texImage->Face == 0 ||
2090 texImage->TexObject->MinLayer == 0 ||
2091 zoffset == 0);
2092
2093 memset(&blit, 0, sizeof(blit));
2094 blit.src.resource = src;
2095 blit.src.level = texImage->Level + texImage->TexObject->MinLevel;
2096 blit.src.format = src_format;
2097 blit.dst.resource = dst;
2098 blit.dst.level = 0;
2099 blit.dst.format = dst->format;
2100 blit.src.box.x = xoffset;
2101 blit.dst.box.x = 0;
2102 blit.src.box.y = yoffset;
2103 blit.dst.box.y = 0;
2104 blit.src.box.z = texImage->Face + texImage->TexObject->MinLayer + zoffset;
2105 blit.dst.box.z = 0;
2106 blit.src.box.width = blit.dst.box.width = width;
2107 blit.src.box.height = blit.dst.box.height = height;
2108 blit.src.box.depth = blit.dst.box.depth = depth;
2109 blit.mask = st_get_blit_mask(texImage->_BaseFormat, format);
2110 blit.filter = PIPE_TEX_FILTER_NEAREST;
2111 blit.scissor_enable = FALSE;
2112
2113 /* blit/render/decompress */
2114 st->pipe->blit(st->pipe, &blit);
2115
2116 pixels = _mesa_map_pbo_dest(ctx, &ctx->Pack, pixels);
2117
2118 map = pipe_transfer_map_3d(pipe, dst, 0, PIPE_TRANSFER_READ,
2119 0, 0, 0, width, height, depth, &tex_xfer);
2120 if (!map) {
2121 goto end;
2122 }
2123
2124 mesa_format = st_pipe_format_to_mesa_format(dst_format);
2125 dims = _mesa_get_texture_dimensions(gl_target);
2126
2127 /* copy/pack data into user buffer */
2128 if (_mesa_format_matches_format_and_type(mesa_format, format, type,
2129 ctx->Pack.SwapBytes, NULL)) {
2130 /* memcpy */
2131 const uint bytesPerRow = width * util_format_get_blocksize(dst_format);
2132 GLuint row, slice;
2133
2134 for (slice = 0; slice < depth; slice++) {
2135 ubyte *slice_map = map;
2136
2137 for (row = 0; row < height; row++) {
2138 void *dest = _mesa_image_address(dims, &ctx->Pack, pixels,
2139 width, height, format, type,
2140 slice, row, 0);
2141
2142 memcpy(dest, slice_map, bytesPerRow);
2143
2144 slice_map += tex_xfer->stride;
2145 }
2146
2147 map += tex_xfer->layer_stride;
2148 }
2149 }
2150 else {
2151 /* format translation via floats */
2152 GLuint slice;
2153 GLfloat *rgba;
2154 uint32_t dstMesaFormat;
2155 int dstStride, srcStride;
2156
2157 assert(util_format_is_compressed(src->format));
2158
2159 rgba = malloc(width * height * 4 * sizeof(GLfloat));
2160 if (!rgba) {
2161 goto end;
2162 }
2163
2164 if (ST_DEBUG & DEBUG_FALLBACK)
2165 debug_printf("%s: fallback format translation\n", __func__);
2166
2167 dstMesaFormat = _mesa_format_from_format_and_type(format, type);
2168 dstStride = _mesa_image_row_stride(&ctx->Pack, width, format, type);
2169 srcStride = 4 * width * sizeof(GLfloat);
2170 for (slice = 0; slice < depth; slice++) {
2171 void *dest = _mesa_image_address(dims, &ctx->Pack, pixels,
2172 width, height, format, type,
2173 slice, 0, 0);
2174
2175 /* get float[4] rgba row from surface */
2176 pipe_get_tile_rgba_format(tex_xfer, map, 0, 0, width, height,
2177 dst_format, rgba);
2178
2179 _mesa_format_convert(dest, dstMesaFormat, dstStride,
2180 rgba, RGBA32_FLOAT, srcStride,
2181 width, height, NULL);
2182
2183 /* Handle byte swapping if required */
2184 if (ctx->Pack.SwapBytes) {
2185 _mesa_swap_bytes_2d_image(format, type, &ctx->Pack,
2186 width, height, dest, dest);
2187 }
2188
2189 map += tex_xfer->layer_stride;
2190 }
2191
2192 free(rgba);
2193 }
2194 done = TRUE;
2195
2196 end:
2197 if (map)
2198 pipe_transfer_unmap(pipe, tex_xfer);
2199
2200 _mesa_unmap_pbo_dest(ctx, &ctx->Pack);
2201 pipe_resource_reference(&dst, NULL);
2202
2203 fallback:
2204 if (!done) {
2205 _mesa_GetTexSubImage_sw(ctx, xoffset, yoffset, zoffset,
2206 width, height, depth,
2207 format, type, pixels, texImage);
2208 }
2209 }
2210
2211
2212 /**
2213 * Do a CopyTexSubImage operation using a read transfer from the source,
2214 * a write transfer to the destination and get_tile()/put_tile() to access
2215 * the pixels/texels.
2216 *
2217 * Note: srcY=0=TOP of renderbuffer
2218 */
2219 static void
2220 fallback_copy_texsubimage(struct gl_context *ctx,
2221 struct st_renderbuffer *strb,
2222 struct st_texture_image *stImage,
2223 GLenum baseFormat,
2224 GLint destX, GLint destY, GLint slice,
2225 GLint srcX, GLint srcY,
2226 GLsizei width, GLsizei height)
2227 {
2228 struct st_context *st = st_context(ctx);
2229 struct pipe_context *pipe = st->pipe;
2230 struct pipe_transfer *src_trans;
2231 GLubyte *texDest;
2232 enum pipe_transfer_usage transfer_usage;
2233 void *map;
2234 unsigned dst_width = width;
2235 unsigned dst_height = height;
2236 unsigned dst_depth = 1;
2237 struct pipe_transfer *transfer;
2238
2239 if (ST_DEBUG & DEBUG_FALLBACK)
2240 debug_printf("%s: fallback processing\n", __func__);
2241
2242 if (st_fb_orientation(ctx->ReadBuffer) == Y_0_TOP) {
2243 srcY = strb->Base.Height - srcY - height;
2244 }
2245
2246 map = pipe_transfer_map(pipe,
2247 strb->texture,
2248 strb->surface->u.tex.level,
2249 strb->surface->u.tex.first_layer,
2250 PIPE_TRANSFER_READ,
2251 srcX, srcY,
2252 width, height, &src_trans);
2253
2254 if ((baseFormat == GL_DEPTH_COMPONENT ||
2255 baseFormat == GL_DEPTH_STENCIL) &&
2256 util_format_is_depth_and_stencil(stImage->pt->format))
2257 transfer_usage = PIPE_TRANSFER_READ_WRITE;
2258 else
2259 transfer_usage = PIPE_TRANSFER_WRITE;
2260
2261 texDest = st_texture_image_map(st, stImage, transfer_usage,
2262 destX, destY, slice,
2263 dst_width, dst_height, dst_depth,
2264 &transfer);
2265
2266 if (baseFormat == GL_DEPTH_COMPONENT ||
2267 baseFormat == GL_DEPTH_STENCIL) {
2268 const GLboolean scaleOrBias = (ctx->Pixel.DepthScale != 1.0F ||
2269 ctx->Pixel.DepthBias != 0.0F);
2270 GLint row, yStep;
2271 uint *data;
2272
2273 /* determine bottom-to-top vs. top-to-bottom order for src buffer */
2274 if (st_fb_orientation(ctx->ReadBuffer) == Y_0_TOP) {
2275 srcY = height - 1;
2276 yStep = -1;
2277 }
2278 else {
2279 srcY = 0;
2280 yStep = 1;
2281 }
2282
2283 data = malloc(width * sizeof(uint));
2284
2285 if (data) {
2286 /* To avoid a large temp memory allocation, do copy row by row */
2287 for (row = 0; row < height; row++, srcY += yStep) {
2288 pipe_get_tile_z(src_trans, map, 0, srcY, width, 1, data);
2289 if (scaleOrBias) {
2290 _mesa_scale_and_bias_depth_uint(ctx, width, data);
2291 }
2292
2293 if (stImage->pt->target == PIPE_TEXTURE_1D_ARRAY) {
2294 pipe_put_tile_z(transfer, texDest + row*transfer->layer_stride,
2295 0, 0, width, 1, data);
2296 }
2297 else {
2298 pipe_put_tile_z(transfer, texDest, 0, row, width, 1, data);
2299 }
2300 }
2301 }
2302 else {
2303 _mesa_error(ctx, GL_OUT_OF_MEMORY, "glCopyTexSubImage()");
2304 }
2305
2306 free(data);
2307 }
2308 else {
2309 /* RGBA format */
2310 GLfloat *tempSrc =
2311 malloc(width * height * 4 * sizeof(GLfloat));
2312
2313 if (tempSrc && texDest) {
2314 const GLint dims = 2;
2315 GLint dstRowStride;
2316 struct gl_texture_image *texImage = &stImage->base;
2317 struct gl_pixelstore_attrib unpack = ctx->DefaultPacking;
2318
2319 if (st_fb_orientation(ctx->ReadBuffer) == Y_0_TOP) {
2320 unpack.Invert = GL_TRUE;
2321 }
2322
2323 if (stImage->pt->target == PIPE_TEXTURE_1D_ARRAY) {
2324 dstRowStride = transfer->layer_stride;
2325 }
2326 else {
2327 dstRowStride = transfer->stride;
2328 }
2329
2330 /* get float/RGBA image from framebuffer */
2331 /* XXX this usually involves a lot of int/float conversion.
2332 * try to avoid that someday.
2333 */
2334 pipe_get_tile_rgba_format(src_trans, map, 0, 0, width, height,
2335 util_format_linear(strb->texture->format),
2336 tempSrc);
2337
2338 /* Store into texture memory.
2339 * Note that this does some special things such as pixel transfer
2340 * ops and format conversion. In particular, if the dest tex format
2341 * is actually RGBA but the user created the texture as GL_RGB we
2342 * need to fill-in/override the alpha channel with 1.0.
2343 */
2344 _mesa_texstore(ctx, dims,
2345 texImage->_BaseFormat,
2346 texImage->TexFormat,
2347 dstRowStride,
2348 &texDest,
2349 width, height, 1,
2350 GL_RGBA, GL_FLOAT, tempSrc, /* src */
2351 &unpack);
2352 }
2353 else {
2354 _mesa_error(ctx, GL_OUT_OF_MEMORY, "glTexSubImage");
2355 }
2356
2357 free(tempSrc);
2358 }
2359
2360 st_texture_image_unmap(st, stImage, slice);
2361 pipe->transfer_unmap(pipe, src_trans);
2362 }
2363
2364 static bool
2365 st_can_copyteximage_using_blit(const struct gl_texture_image *texImage,
2366 const struct gl_renderbuffer *rb)
2367 {
2368 GLenum tex_baseformat = _mesa_get_format_base_format(texImage->TexFormat);
2369
2370 /* We don't blit to a teximage where the GL base format doesn't match the
2371 * texture's chosen format, except in the case of a GL_RGB texture
2372 * represented with GL_RGBA (where the alpha channel is just being
2373 * dropped).
2374 */
2375 if (texImage->_BaseFormat != tex_baseformat &&
2376 ((texImage->_BaseFormat != GL_RGB || tex_baseformat != GL_RGBA))) {
2377 return false;
2378 }
2379
2380 /* We can't blit from a RB where the GL base format doesn't match the RB's
2381 * chosen format (for example, GL RGB or ALPHA with rb->Format of an RGBA
2382 * type, because the other channels will be undefined).
2383 */
2384 if (rb->_BaseFormat != _mesa_get_format_base_format(rb->Format))
2385 return false;
2386
2387 return true;
2388 }
2389
2390 /**
2391 * Do a CopyTex[Sub]Image1/2/3D() using a hardware (blit) path if possible.
2392 * Note that the region to copy has already been clipped so we know we
2393 * won't read from outside the source renderbuffer's bounds.
2394 *
2395 * Note: srcY=0=Bottom of renderbuffer (GL convention)
2396 */
2397 static void
2398 st_CopyTexSubImage(struct gl_context *ctx, GLuint dims,
2399 struct gl_texture_image *texImage,
2400 GLint destX, GLint destY, GLint slice,
2401 struct gl_renderbuffer *rb,
2402 GLint srcX, GLint srcY, GLsizei width, GLsizei height)
2403 {
2404 struct st_texture_image *stImage = st_texture_image(texImage);
2405 struct st_texture_object *stObj = st_texture_object(texImage->TexObject);
2406 struct st_renderbuffer *strb = st_renderbuffer(rb);
2407 struct st_context *st = st_context(ctx);
2408 struct pipe_context *pipe = st->pipe;
2409 struct pipe_screen *screen = pipe->screen;
2410 struct pipe_blit_info blit;
2411 enum pipe_format dst_format;
2412 GLboolean do_flip = (st_fb_orientation(ctx->ReadBuffer) == Y_0_TOP);
2413 unsigned bind;
2414 GLint srcY0, srcY1;
2415
2416 st_flush_bitmap_cache(st);
2417 st_invalidate_readpix_cache(st);
2418
2419 assert(!_mesa_is_format_etc2(texImage->TexFormat) &&
2420 !_mesa_is_format_astc_2d(texImage->TexFormat) &&
2421 texImage->TexFormat != MESA_FORMAT_ETC1_RGB8);
2422
2423 if (!strb || !strb->surface || !stImage->pt) {
2424 debug_printf("%s: null strb or stImage\n", __func__);
2425 return;
2426 }
2427
2428 if (_mesa_texstore_needs_transfer_ops(ctx, texImage->_BaseFormat,
2429 texImage->TexFormat)) {
2430 goto fallback;
2431 }
2432
2433 if (!st_can_copyteximage_using_blit(texImage, rb)) {
2434 goto fallback;
2435 }
2436
2437 /* Choose the destination format to match the TexImage behavior. */
2438 dst_format = util_format_linear(stImage->pt->format);
2439 dst_format = util_format_luminance_to_red(dst_format);
2440 dst_format = util_format_intensity_to_red(dst_format);
2441
2442 /* See if the destination format is supported. */
2443 if (texImage->_BaseFormat == GL_DEPTH_STENCIL ||
2444 texImage->_BaseFormat == GL_DEPTH_COMPONENT) {
2445 bind = PIPE_BIND_DEPTH_STENCIL;
2446 }
2447 else {
2448 bind = PIPE_BIND_RENDER_TARGET;
2449 }
2450
2451 if (!dst_format ||
2452 !screen->is_format_supported(screen, dst_format, stImage->pt->target,
2453 stImage->pt->nr_samples,
2454 stImage->pt->nr_storage_samples, bind)) {
2455 goto fallback;
2456 }
2457
2458 /* Y flipping for the main framebuffer. */
2459 if (do_flip) {
2460 srcY1 = strb->Base.Height - srcY - height;
2461 srcY0 = srcY1 + height;
2462 }
2463 else {
2464 srcY0 = srcY;
2465 srcY1 = srcY0 + height;
2466 }
2467
2468 /* Blit the texture.
2469 * This supports flipping, format conversions, and downsampling.
2470 */
2471 memset(&blit, 0, sizeof(blit));
2472 blit.src.resource = strb->texture;
2473 blit.src.format = util_format_linear(strb->surface->format);
2474 blit.src.level = strb->surface->u.tex.level;
2475 blit.src.box.x = srcX;
2476 blit.src.box.y = srcY0;
2477 blit.src.box.z = strb->surface->u.tex.first_layer;
2478 blit.src.box.width = width;
2479 blit.src.box.height = srcY1 - srcY0;
2480 blit.src.box.depth = 1;
2481 blit.dst.resource = stImage->pt;
2482 blit.dst.format = dst_format;
2483 blit.dst.level = stObj->pt != stImage->pt ? 0 : texImage->Level + texImage->TexObject->MinLevel;
2484 blit.dst.box.x = destX;
2485 blit.dst.box.y = destY;
2486 blit.dst.box.z = stImage->base.Face + slice + texImage->TexObject->MinLayer;
2487 blit.dst.box.width = width;
2488 blit.dst.box.height = height;
2489 blit.dst.box.depth = 1;
2490 blit.mask = st_get_blit_mask(rb->_BaseFormat, texImage->_BaseFormat);
2491 blit.filter = PIPE_TEX_FILTER_NEAREST;
2492 pipe->blit(pipe, &blit);
2493 return;
2494
2495 fallback:
2496 /* software fallback */
2497 fallback_copy_texsubimage(ctx,
2498 strb, stImage, texImage->_BaseFormat,
2499 destX, destY, slice,
2500 srcX, srcY, width, height);
2501 }
2502
2503
2504 /**
2505 * Copy image data from stImage into the texture object 'stObj' at level
2506 * 'dstLevel'.
2507 */
2508 static void
2509 copy_image_data_to_texture(struct st_context *st,
2510 struct st_texture_object *stObj,
2511 GLuint dstLevel,
2512 struct st_texture_image *stImage)
2513 {
2514 /* debug checks */
2515 {
2516 const struct gl_texture_image MAYBE_UNUSED *dstImage =
2517 stObj->base.Image[stImage->base.Face][dstLevel];
2518 assert(dstImage);
2519 assert(dstImage->Width == stImage->base.Width);
2520 assert(dstImage->Height == stImage->base.Height);
2521 assert(dstImage->Depth == stImage->base.Depth);
2522 }
2523
2524 if (stImage->pt) {
2525 /* Copy potentially with the blitter:
2526 */
2527 GLuint src_level;
2528 if (stImage->pt->last_level == 0)
2529 src_level = 0;
2530 else
2531 src_level = stImage->base.Level;
2532
2533 assert(src_level <= stImage->pt->last_level);
2534 assert(u_minify(stImage->pt->width0, src_level) == stImage->base.Width);
2535 assert(stImage->pt->target == PIPE_TEXTURE_1D_ARRAY ||
2536 u_minify(stImage->pt->height0, src_level) == stImage->base.Height);
2537 assert(stImage->pt->target == PIPE_TEXTURE_2D_ARRAY ||
2538 stImage->pt->target == PIPE_TEXTURE_CUBE_ARRAY ||
2539 u_minify(stImage->pt->depth0, src_level) == stImage->base.Depth);
2540
2541 st_texture_image_copy(st->pipe,
2542 stObj->pt, dstLevel, /* dest texture, level */
2543 stImage->pt, src_level, /* src texture, level */
2544 stImage->base.Face);
2545
2546 pipe_resource_reference(&stImage->pt, NULL);
2547 }
2548 pipe_resource_reference(&stImage->pt, stObj->pt);
2549 }
2550
2551
2552 /**
2553 * Called during state validation. When this function is finished,
2554 * the texture object should be ready for rendering.
2555 * \return GL_TRUE for success, GL_FALSE for failure (out of mem)
2556 */
2557 GLboolean
2558 st_finalize_texture(struct gl_context *ctx,
2559 struct pipe_context *pipe,
2560 struct gl_texture_object *tObj,
2561 GLuint cubeMapFace)
2562 {
2563 struct st_context *st = st_context(ctx);
2564 struct st_texture_object *stObj = st_texture_object(tObj);
2565 const GLuint nr_faces = _mesa_num_tex_faces(stObj->base.Target);
2566 GLuint face;
2567 const struct st_texture_image *firstImage;
2568 enum pipe_format firstImageFormat;
2569 unsigned ptWidth;
2570 uint16_t ptHeight, ptDepth, ptLayers, ptNumSamples;
2571
2572 if (tObj->Immutable)
2573 return GL_TRUE;
2574
2575 if (tObj->_MipmapComplete)
2576 stObj->lastLevel = stObj->base._MaxLevel;
2577 else if (tObj->_BaseComplete)
2578 stObj->lastLevel = stObj->base.BaseLevel;
2579
2580 /* Skip the loop over images in the common case of no images having
2581 * changed. But if the GL_BASE_LEVEL or GL_MAX_LEVEL change to something we
2582 * haven't looked at, then we do need to look at those new images.
2583 */
2584 if (!stObj->needs_validation &&
2585 stObj->base.BaseLevel >= stObj->validated_first_level &&
2586 stObj->lastLevel <= stObj->validated_last_level) {
2587 return GL_TRUE;
2588 }
2589
2590 /* If this texture comes from a window system, there is nothing else to do. */
2591 if (stObj->surface_based) {
2592 return GL_TRUE;
2593 }
2594
2595 firstImage = st_texture_image_const(stObj->base.Image[cubeMapFace][stObj->base.BaseLevel]);
2596 assert(firstImage);
2597
2598 /* If both firstImage and stObj point to a texture which can contain
2599 * all active images, favour firstImage. Note that because of the
2600 * completeness requirement, we know that the image dimensions
2601 * will match.
2602 */
2603 if (firstImage->pt &&
2604 firstImage->pt != stObj->pt &&
2605 (!stObj->pt || firstImage->pt->last_level >= stObj->pt->last_level)) {
2606 pipe_resource_reference(&stObj->pt, firstImage->pt);
2607 st_texture_release_all_sampler_views(st, stObj);
2608 }
2609
2610 /* Find gallium format for the Mesa texture */
2611 firstImageFormat =
2612 st_mesa_format_to_pipe_format(st, firstImage->base.TexFormat);
2613
2614 /* Find size of level=0 Gallium mipmap image, plus number of texture layers */
2615 {
2616 unsigned width;
2617 uint16_t height, depth;
2618
2619 st_gl_texture_dims_to_pipe_dims(stObj->base.Target,
2620 firstImage->base.Width2,
2621 firstImage->base.Height2,
2622 firstImage->base.Depth2,
2623 &width, &height, &depth, &ptLayers);
2624
2625 /* If we previously allocated a pipe texture and its sizes are
2626 * compatible, use them.
2627 */
2628 if (stObj->pt &&
2629 u_minify(stObj->pt->width0, firstImage->base.Level) == width &&
2630 u_minify(stObj->pt->height0, firstImage->base.Level) == height &&
2631 u_minify(stObj->pt->depth0, firstImage->base.Level) == depth) {
2632 ptWidth = stObj->pt->width0;
2633 ptHeight = stObj->pt->height0;
2634 ptDepth = stObj->pt->depth0;
2635 } else {
2636 /* Otherwise, compute a new level=0 size that is compatible with the
2637 * base level image.
2638 */
2639 ptWidth = width > 1 ? width << firstImage->base.Level : 1;
2640 ptHeight = height > 1 ? height << firstImage->base.Level : 1;
2641 ptDepth = depth > 1 ? depth << firstImage->base.Level : 1;
2642
2643 /* If the base level image is 1x1x1, we still need to ensure that the
2644 * resulting pipe texture ends up with the required number of levels
2645 * in total.
2646 */
2647 if (ptWidth == 1 && ptHeight == 1 && ptDepth == 1) {
2648 ptWidth <<= firstImage->base.Level;
2649
2650 if (stObj->base.Target == GL_TEXTURE_CUBE_MAP ||
2651 stObj->base.Target == GL_TEXTURE_CUBE_MAP_ARRAY)
2652 ptHeight = ptWidth;
2653 }
2654
2655 /* At this point, the texture may be incomplete (mismatched cube
2656 * face sizes, for example). If that's the case, give up, but
2657 * don't return GL_FALSE as that would raise an incorrect
2658 * GL_OUT_OF_MEMORY error. See Piglit fbo-incomplete-texture-03 test.
2659 */
2660 if (!stObj->base._BaseComplete) {
2661 _mesa_test_texobj_completeness(ctx, &stObj->base);
2662 if (!stObj->base._BaseComplete) {
2663 return TRUE;
2664 }
2665 }
2666 }
2667
2668 ptNumSamples = firstImage->base.NumSamples;
2669 }
2670
2671 /* If we already have a gallium texture, check that it matches the texture
2672 * object's format, target, size, num_levels, etc.
2673 */
2674 if (stObj->pt) {
2675 if (stObj->pt->target != gl_target_to_pipe(stObj->base.Target) ||
2676 stObj->pt->format != firstImageFormat ||
2677 stObj->pt->last_level < stObj->lastLevel ||
2678 stObj->pt->width0 != ptWidth ||
2679 stObj->pt->height0 != ptHeight ||
2680 stObj->pt->depth0 != ptDepth ||
2681 stObj->pt->nr_samples != ptNumSamples ||
2682 stObj->pt->array_size != ptLayers)
2683 {
2684 /* The gallium texture does not match the Mesa texture so delete the
2685 * gallium texture now. We'll make a new one below.
2686 */
2687 pipe_resource_reference(&stObj->pt, NULL);
2688 st_texture_release_all_sampler_views(st, stObj);
2689 st->dirty |= ST_NEW_FRAMEBUFFER;
2690 }
2691 }
2692
2693 /* May need to create a new gallium texture:
2694 */
2695 if (!stObj->pt) {
2696 GLuint bindings = default_bindings(st, firstImageFormat);
2697
2698 stObj->pt = st_texture_create(st,
2699 gl_target_to_pipe(stObj->base.Target),
2700 firstImageFormat,
2701 stObj->lastLevel,
2702 ptWidth,
2703 ptHeight,
2704 ptDepth,
2705 ptLayers, ptNumSamples,
2706 bindings);
2707
2708 if (!stObj->pt) {
2709 _mesa_error(ctx, GL_OUT_OF_MEMORY, "glTexImage");
2710 return GL_FALSE;
2711 }
2712 }
2713
2714 /* Pull in any images not in the object's texture:
2715 */
2716 for (face = 0; face < nr_faces; face++) {
2717 GLuint level;
2718 for (level = stObj->base.BaseLevel; level <= stObj->lastLevel; level++) {
2719 struct st_texture_image *stImage =
2720 st_texture_image(stObj->base.Image[face][level]);
2721
2722 /* Need to import images in main memory or held in other textures.
2723 */
2724 if (stImage && stObj->pt != stImage->pt) {
2725 GLuint height;
2726 GLuint depth;
2727
2728 if (stObj->base.Target != GL_TEXTURE_1D_ARRAY)
2729 height = u_minify(ptHeight, level);
2730 else
2731 height = ptLayers;
2732
2733 if (stObj->base.Target == GL_TEXTURE_3D)
2734 depth = u_minify(ptDepth, level);
2735 else if (stObj->base.Target == GL_TEXTURE_CUBE_MAP)
2736 depth = 1;
2737 else
2738 depth = ptLayers;
2739
2740 if (level == 0 ||
2741 (stImage->base.Width == u_minify(ptWidth, level) &&
2742 stImage->base.Height == height &&
2743 stImage->base.Depth == depth)) {
2744 /* src image fits expected dest mipmap level size */
2745 copy_image_data_to_texture(st, stObj, level, stImage);
2746 }
2747 }
2748 }
2749 }
2750
2751 stObj->validated_first_level = stObj->base.BaseLevel;
2752 stObj->validated_last_level = stObj->lastLevel;
2753 stObj->needs_validation = false;
2754
2755 return GL_TRUE;
2756 }
2757
2758 /**
2759 * Allocate a new pipe_resource object
2760 * width0, height0, depth0 are the dimensions of the level 0 image
2761 * (the highest resolution). last_level indicates how many mipmap levels
2762 * to allocate storage for. For non-mipmapped textures, this will be zero.
2763 */
2764 static struct pipe_resource *
2765 st_texture_create_from_memory(struct st_context *st,
2766 struct st_memory_object *memObj,
2767 GLuint64 offset,
2768 enum pipe_texture_target target,
2769 enum pipe_format format,
2770 GLuint last_level,
2771 GLuint width0,
2772 GLuint height0,
2773 GLuint depth0,
2774 GLuint layers,
2775 GLuint nr_samples,
2776 GLuint bind )
2777 {
2778 struct pipe_resource pt, *newtex;
2779 struct pipe_screen *screen = st->pipe->screen;
2780
2781 assert(target < PIPE_MAX_TEXTURE_TYPES);
2782 assert(width0 > 0);
2783 assert(height0 > 0);
2784 assert(depth0 > 0);
2785 if (target == PIPE_TEXTURE_CUBE)
2786 assert(layers == 6);
2787
2788 DBG("%s target %d format %s last_level %d\n", __func__,
2789 (int) target, util_format_name(format), last_level);
2790
2791 assert(format);
2792 assert(screen->is_format_supported(screen, format, target, 0, 0,
2793 PIPE_BIND_SAMPLER_VIEW));
2794
2795 memset(&pt, 0, sizeof(pt));
2796 pt.target = target;
2797 pt.format = format;
2798 pt.last_level = last_level;
2799 pt.width0 = width0;
2800 pt.height0 = height0;
2801 pt.depth0 = depth0;
2802 pt.array_size = layers;
2803 pt.usage = PIPE_USAGE_DEFAULT;
2804 pt.bind = bind;
2805 /* only set this for OpenGL textures, not renderbuffers */
2806 pt.flags = PIPE_RESOURCE_FLAG_TEXTURING_MORE_LIKELY;
2807 pt.nr_samples = nr_samples;
2808 pt.nr_storage_samples = nr_samples;
2809
2810 newtex = screen->resource_from_memobj(screen, &pt, memObj->memory, offset);
2811
2812 assert(!newtex || pipe_is_referenced(&newtex->reference));
2813
2814 return newtex;
2815 }
2816
2817 /**
2818 * Allocate texture memory for a whole mipmap stack.
2819 * Note: for multisample textures if the requested sample count is not
2820 * supported, we search for the next higher supported sample count.
2821 */
2822 static GLboolean
2823 st_texture_storage(struct gl_context *ctx,
2824 struct gl_texture_object *texObj,
2825 GLsizei levels, GLsizei width,
2826 GLsizei height, GLsizei depth,
2827 struct gl_memory_object *memObj,
2828 GLuint64 offset)
2829 {
2830 const GLuint numFaces = _mesa_num_tex_faces(texObj->Target);
2831 struct gl_texture_image *texImage = texObj->Image[0][0];
2832 struct st_context *st = st_context(ctx);
2833 struct st_texture_object *stObj = st_texture_object(texObj);
2834 struct st_memory_object *smObj = st_memory_object(memObj);
2835 struct pipe_screen *screen = st->pipe->screen;
2836 unsigned ptWidth, bindings;
2837 uint16_t ptHeight, ptDepth, ptLayers;
2838 enum pipe_format fmt;
2839 GLint level;
2840 GLuint num_samples = texImage->NumSamples;
2841
2842 assert(levels > 0);
2843
2844 stObj->lastLevel = levels - 1;
2845
2846 fmt = st_mesa_format_to_pipe_format(st, texImage->TexFormat);
2847
2848 bindings = default_bindings(st, fmt);
2849
2850 if (num_samples > 0) {
2851 /* Find msaa sample count which is actually supported. For example,
2852 * if the user requests 1x but only 4x or 8x msaa is supported, we'll
2853 * choose 4x here.
2854 */
2855 enum pipe_texture_target ptarget = gl_target_to_pipe(texObj->Target);
2856 boolean found = FALSE;
2857
2858 if (ctx->Const.MaxSamples > 1 && num_samples == 1) {
2859 /* don't try num_samples = 1 with drivers that support real msaa */
2860 num_samples = 2;
2861 }
2862
2863 for (; num_samples <= ctx->Const.MaxSamples; num_samples++) {
2864 if (screen->is_format_supported(screen, fmt, ptarget,
2865 num_samples, num_samples,
2866 PIPE_BIND_SAMPLER_VIEW)) {
2867 /* Update the sample count in gl_texture_image as well. */
2868 texImage->NumSamples = num_samples;
2869 found = TRUE;
2870 break;
2871 }
2872 }
2873
2874 if (!found) {
2875 return GL_FALSE;
2876 }
2877 }
2878
2879 st_gl_texture_dims_to_pipe_dims(texObj->Target,
2880 width, height, depth,
2881 &ptWidth, &ptHeight, &ptDepth, &ptLayers);
2882
2883 if (smObj) {
2884 stObj->pt = st_texture_create_from_memory(st,
2885 smObj,
2886 offset,
2887 gl_target_to_pipe(texObj->Target),
2888 fmt,
2889 levels - 1,
2890 ptWidth,
2891 ptHeight,
2892 ptDepth,
2893 ptLayers, num_samples,
2894 bindings);
2895 }
2896 else {
2897 stObj->pt = st_texture_create(st,
2898 gl_target_to_pipe(texObj->Target),
2899 fmt,
2900 levels - 1,
2901 ptWidth,
2902 ptHeight,
2903 ptDepth,
2904 ptLayers, num_samples,
2905 bindings);
2906 }
2907
2908 if (!stObj->pt)
2909 return GL_FALSE;
2910
2911 /* Set image resource pointers */
2912 for (level = 0; level < levels; level++) {
2913 GLuint face;
2914 for (face = 0; face < numFaces; face++) {
2915 struct st_texture_image *stImage =
2916 st_texture_image(texObj->Image[face][level]);
2917 pipe_resource_reference(&stImage->pt, stObj->pt);
2918
2919 compressed_tex_fallback_allocate(st, stImage);
2920 }
2921 }
2922
2923 /* The texture is in a validated state, so no need to check later. */
2924 stObj->needs_validation = false;
2925 stObj->validated_first_level = 0;
2926 stObj->validated_last_level = levels - 1;
2927
2928 return GL_TRUE;
2929 }
2930
2931 /**
2932 * Called via ctx->Driver.AllocTextureStorage() to allocate texture memory
2933 * for a whole mipmap stack.
2934 */
2935 static GLboolean
2936 st_AllocTextureStorage(struct gl_context *ctx,
2937 struct gl_texture_object *texObj,
2938 GLsizei levels, GLsizei width,
2939 GLsizei height, GLsizei depth)
2940 {
2941 return st_texture_storage(ctx, texObj, levels,
2942 width, height, depth,
2943 NULL, 0);
2944 }
2945
2946
2947 static GLboolean
2948 st_TestProxyTexImage(struct gl_context *ctx, GLenum target,
2949 GLuint numLevels, GLint level,
2950 mesa_format format, GLuint numSamples,
2951 GLint width, GLint height, GLint depth)
2952 {
2953 struct st_context *st = st_context(ctx);
2954 struct pipe_context *pipe = st->pipe;
2955
2956 if (width == 0 || height == 0 || depth == 0) {
2957 /* zero-sized images are legal, and always fit! */
2958 return GL_TRUE;
2959 }
2960
2961 if (pipe->screen->can_create_resource) {
2962 /* Ask the gallium driver if the texture is too large */
2963 struct gl_texture_object *texObj =
2964 _mesa_get_current_tex_object(ctx, target);
2965 struct pipe_resource pt;
2966
2967 /* Setup the pipe_resource object
2968 */
2969 memset(&pt, 0, sizeof(pt));
2970
2971 pt.target = gl_target_to_pipe(target);
2972 pt.format = st_mesa_format_to_pipe_format(st, format);
2973 pt.nr_samples = numSamples;
2974 pt.nr_storage_samples = numSamples;
2975
2976 st_gl_texture_dims_to_pipe_dims(target,
2977 width, height, depth,
2978 &pt.width0, &pt.height0,
2979 &pt.depth0, &pt.array_size);
2980
2981 if (numLevels > 0) {
2982 /* For immutable textures we know the final number of mip levels */
2983 pt.last_level = numLevels - 1;
2984 }
2985 else if (level == 0 && (texObj->Sampler.MinFilter == GL_LINEAR ||
2986 texObj->Sampler.MinFilter == GL_NEAREST)) {
2987 /* assume just one mipmap level */
2988 pt.last_level = 0;
2989 }
2990 else {
2991 /* assume a full set of mipmaps */
2992 pt.last_level = _mesa_logbase2(MAX3(width, height, depth));
2993 }
2994
2995 return pipe->screen->can_create_resource(pipe->screen, &pt);
2996 }
2997 else {
2998 /* Use core Mesa fallback */
2999 return _mesa_test_proxy_teximage(ctx, target, numLevels, level, format,
3000 numSamples, width, height, depth);
3001 }
3002 }
3003
3004 static GLboolean
3005 st_TextureView(struct gl_context *ctx,
3006 struct gl_texture_object *texObj,
3007 struct gl_texture_object *origTexObj)
3008 {
3009 struct st_context *st = st_context(ctx);
3010 struct st_texture_object *orig = st_texture_object(origTexObj);
3011 struct st_texture_object *tex = st_texture_object(texObj);
3012 struct gl_texture_image *image = texObj->Image[0][0];
3013
3014 const int numFaces = _mesa_num_tex_faces(texObj->Target);
3015 const int numLevels = texObj->NumLevels;
3016
3017 int face;
3018 int level;
3019
3020 pipe_resource_reference(&tex->pt, orig->pt);
3021
3022 /* Set image resource pointers */
3023 for (level = 0; level < numLevels; level++) {
3024 for (face = 0; face < numFaces; face++) {
3025 struct st_texture_image *stImage =
3026 st_texture_image(texObj->Image[face][level]);
3027 pipe_resource_reference(&stImage->pt, tex->pt);
3028 }
3029 }
3030
3031 tex->surface_based = GL_TRUE;
3032 tex->surface_format =
3033 st_mesa_format_to_pipe_format(st_context(ctx), image->TexFormat);
3034
3035 tex->lastLevel = numLevels - 1;
3036
3037 /* free texture sampler views. They need to be recreated when we
3038 * change the texture view parameters.
3039 */
3040 st_texture_release_all_sampler_views(st, tex);
3041
3042 /* The texture is in a validated state, so no need to check later. */
3043 tex->needs_validation = false;
3044 tex->validated_first_level = 0;
3045 tex->validated_last_level = numLevels - 1;
3046
3047 return GL_TRUE;
3048 }
3049
3050
3051 /**
3052 * Find the mipmap level in 'pt' which matches the level described by
3053 * 'texImage'.
3054 */
3055 static unsigned
3056 find_mipmap_level(const struct gl_texture_image *texImage,
3057 const struct pipe_resource *pt)
3058 {
3059 const GLenum target = texImage->TexObject->Target;
3060 GLint texWidth = texImage->Width;
3061 GLint texHeight = texImage->Height;
3062 GLint texDepth = texImage->Depth;
3063 unsigned level, w;
3064 uint16_t h, d, layers;
3065
3066 st_gl_texture_dims_to_pipe_dims(target, texWidth, texHeight, texDepth,
3067 &w, &h, &d, &layers);
3068
3069 for (level = 0; level <= pt->last_level; level++) {
3070 if (u_minify(pt->width0, level) == w &&
3071 u_minify(pt->height0, level) == h &&
3072 u_minify(pt->depth0, level) == d) {
3073 return level;
3074 }
3075 }
3076
3077 /* If we get here, there must be some sort of inconsistency between
3078 * the Mesa texture object/images and the gallium resource.
3079 */
3080 debug_printf("Inconsistent textures in find_mipmap_level()\n");
3081
3082 return texImage->Level;
3083 }
3084
3085
3086 static void
3087 st_ClearTexSubImage(struct gl_context *ctx,
3088 struct gl_texture_image *texImage,
3089 GLint xoffset, GLint yoffset, GLint zoffset,
3090 GLsizei width, GLsizei height, GLsizei depth,
3091 const void *clearValue)
3092 {
3093 static const char zeros[16] = {0};
3094 struct gl_texture_object *texObj = texImage->TexObject;
3095 struct st_texture_image *stImage = st_texture_image(texImage);
3096 struct pipe_resource *pt = stImage->pt;
3097 struct st_context *st = st_context(ctx);
3098 struct pipe_context *pipe = st->pipe;
3099 unsigned level;
3100 struct pipe_box box;
3101
3102 if (!pt)
3103 return;
3104
3105 st_flush_bitmap_cache(st);
3106 st_invalidate_readpix_cache(st);
3107
3108 u_box_3d(xoffset, yoffset, zoffset + texImage->Face,
3109 width, height, depth, &box);
3110 if (texObj->Immutable) {
3111 /* The texture object has to be consistent (no "loose", per-image
3112 * gallium resources). If this texture is a view into another
3113 * texture, we have to apply the MinLevel/Layer offsets. If this is
3114 * not a texture view, the offsets will be zero.
3115 */
3116 assert(stImage->pt == st_texture_object(texObj)->pt);
3117 level = texImage->Level + texObj->MinLevel;
3118 box.z += texObj->MinLayer;
3119 }
3120 else {
3121 /* Texture level sizes may be inconsistent. We my have "loose",
3122 * per-image gallium resources. The texImage->Level may not match
3123 * the gallium resource texture level.
3124 */
3125 level = find_mipmap_level(texImage, pt);
3126 }
3127
3128 assert(level <= pt->last_level);
3129
3130 pipe->clear_texture(pipe, pt, level, &box, clearValue ? clearValue : zeros);
3131 }
3132
3133
3134 /**
3135 * Called via the glTexParam*() function, but only when some texture object
3136 * state has actually changed.
3137 */
3138 static void
3139 st_TexParameter(struct gl_context *ctx,
3140 struct gl_texture_object *texObj, GLenum pname)
3141 {
3142 struct st_context *st = st_context(ctx);
3143 struct st_texture_object *stObj = st_texture_object(texObj);
3144
3145 switch (pname) {
3146 case GL_TEXTURE_BASE_LEVEL:
3147 case GL_TEXTURE_MAX_LEVEL:
3148 case GL_DEPTH_TEXTURE_MODE:
3149 case GL_DEPTH_STENCIL_TEXTURE_MODE:
3150 case GL_TEXTURE_SRGB_DECODE_EXT:
3151 case GL_TEXTURE_SWIZZLE_R:
3152 case GL_TEXTURE_SWIZZLE_G:
3153 case GL_TEXTURE_SWIZZLE_B:
3154 case GL_TEXTURE_SWIZZLE_A:
3155 case GL_TEXTURE_SWIZZLE_RGBA:
3156 case GL_TEXTURE_BUFFER_SIZE:
3157 case GL_TEXTURE_BUFFER_OFFSET:
3158 /* changing any of these texture parameters means we must create
3159 * new sampler views.
3160 */
3161 st_texture_release_all_sampler_views(st, stObj);
3162 break;
3163 default:
3164 ; /* nothing */
3165 }
3166 }
3167
3168 static GLboolean
3169 st_SetTextureStorageForMemoryObject(struct gl_context *ctx,
3170 struct gl_texture_object *texObj,
3171 struct gl_memory_object *memObj,
3172 GLsizei levels, GLsizei width,
3173 GLsizei height, GLsizei depth,
3174 GLuint64 offset)
3175 {
3176 return st_texture_storage(ctx, texObj, levels,
3177 width, height, depth,
3178 memObj, offset);
3179 }
3180
3181 static GLuint64
3182 st_NewTextureHandle(struct gl_context *ctx, struct gl_texture_object *texObj,
3183 struct gl_sampler_object *sampObj)
3184 {
3185 struct st_context *st = st_context(ctx);
3186 struct st_texture_object *stObj = st_texture_object(texObj);
3187 struct pipe_context *pipe = st->pipe;
3188 struct pipe_sampler_view *view;
3189 struct pipe_sampler_state sampler = {0};
3190
3191 if (texObj->Target != GL_TEXTURE_BUFFER) {
3192 if (!st_finalize_texture(ctx, pipe, texObj, 0))
3193 return 0;
3194
3195 st_convert_sampler(st, texObj, sampObj, 0, &sampler);
3196
3197 /* TODO: Clarify the interaction of ARB_bindless_texture and EXT_texture_sRGB_decode */
3198 view = st_get_texture_sampler_view_from_stobj(st, stObj, sampObj, 0, true);
3199 } else {
3200 view = st_get_buffer_sampler_view_from_stobj(st, stObj);
3201 }
3202
3203 return pipe->create_texture_handle(pipe, view, &sampler);
3204 }
3205
3206
3207 static void
3208 st_DeleteTextureHandle(struct gl_context *ctx, GLuint64 handle)
3209 {
3210 struct st_context *st = st_context(ctx);
3211 struct pipe_context *pipe = st->pipe;
3212
3213 pipe->delete_texture_handle(pipe, handle);
3214 }
3215
3216
3217 static void
3218 st_MakeTextureHandleResident(struct gl_context *ctx, GLuint64 handle,
3219 bool resident)
3220 {
3221 struct st_context *st = st_context(ctx);
3222 struct pipe_context *pipe = st->pipe;
3223
3224 pipe->make_texture_handle_resident(pipe, handle, resident);
3225 }
3226
3227
3228 static GLuint64
3229 st_NewImageHandle(struct gl_context *ctx, struct gl_image_unit *imgObj)
3230 {
3231 struct st_context *st = st_context(ctx);
3232 struct pipe_context *pipe = st->pipe;
3233 struct pipe_image_view image;
3234
3235 st_convert_image(st, imgObj, &image, GL_READ_WRITE);
3236
3237 return pipe->create_image_handle(pipe, &image);
3238 }
3239
3240
3241 static void
3242 st_DeleteImageHandle(struct gl_context *ctx, GLuint64 handle)
3243 {
3244 struct st_context *st = st_context(ctx);
3245 struct pipe_context *pipe = st->pipe;
3246
3247 pipe->delete_image_handle(pipe, handle);
3248 }
3249
3250
3251 static void
3252 st_MakeImageHandleResident(struct gl_context *ctx, GLuint64 handle,
3253 GLenum access, bool resident)
3254 {
3255 struct st_context *st = st_context(ctx);
3256 struct pipe_context *pipe = st->pipe;
3257
3258 pipe->make_image_handle_resident(pipe, handle, access, resident);
3259 }
3260
3261
3262 void
3263 st_init_texture_functions(struct dd_function_table *functions)
3264 {
3265 functions->ChooseTextureFormat = st_ChooseTextureFormat;
3266 functions->QueryInternalFormat = st_QueryInternalFormat;
3267 functions->TexImage = st_TexImage;
3268 functions->TexSubImage = st_TexSubImage;
3269 functions->CompressedTexSubImage = st_CompressedTexSubImage;
3270 functions->CopyTexSubImage = st_CopyTexSubImage;
3271 functions->GenerateMipmap = st_generate_mipmap;
3272
3273 functions->GetTexSubImage = st_GetTexSubImage;
3274
3275 /* compressed texture functions */
3276 functions->CompressedTexImage = st_CompressedTexImage;
3277
3278 functions->NewTextureObject = st_NewTextureObject;
3279 functions->NewTextureImage = st_NewTextureImage;
3280 functions->DeleteTextureImage = st_DeleteTextureImage;
3281 functions->DeleteTexture = st_DeleteTextureObject;
3282 functions->AllocTextureImageBuffer = st_AllocTextureImageBuffer;
3283 functions->FreeTextureImageBuffer = st_FreeTextureImageBuffer;
3284 functions->MapTextureImage = st_MapTextureImage;
3285 functions->UnmapTextureImage = st_UnmapTextureImage;
3286
3287 /* XXX Temporary until we can query pipe's texture sizes */
3288 functions->TestProxyTexImage = st_TestProxyTexImage;
3289
3290 functions->AllocTextureStorage = st_AllocTextureStorage;
3291 functions->TextureView = st_TextureView;
3292 functions->ClearTexSubImage = st_ClearTexSubImage;
3293
3294 functions->TexParameter = st_TexParameter;
3295
3296 /* bindless functions */
3297 functions->NewTextureHandle = st_NewTextureHandle;
3298 functions->DeleteTextureHandle = st_DeleteTextureHandle;
3299 functions->MakeTextureHandleResident = st_MakeTextureHandleResident;
3300 functions->NewImageHandle = st_NewImageHandle;
3301 functions->DeleteImageHandle = st_DeleteImageHandle;
3302 functions->MakeImageHandleResident = st_MakeImageHandleResident;
3303
3304 /* external object functions */
3305 functions->SetTextureStorageForMemoryObject = st_SetTextureStorageForMemoryObject;
3306 }