blob: 1d42bdde4e2c42c2749862371769c740245d4b01 [file] [log] [blame]
José Fonseca946f4322009-07-26 23:44:38 +01001/**************************************************************************
2 *
3 * Copyright 2006 Tungsten Graphics, Inc., Cedar Park, Texas.
4 * All Rights Reserved.
5 *
6 * Permission is hereby granted, free of charge, to any person obtaining a
7 * copy of this software and associated documentation files (the
8 * "Software"), to deal in the Software without restriction, including
9 * without limitation the rights to use, copy, modify, merge, publish,
10 * distribute, sub license, and/or sell copies of the Software, and to
11 * permit persons to whom the Software is furnished to do so, subject to
12 * the following conditions:
13 *
14 * The above copyright notice and this permission notice (including the
15 * next paragraph) shall be included in all copies or substantial portions
16 * of the Software.
17 *
18 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
19 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
20 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.
21 * IN NO EVENT SHALL TUNGSTEN GRAPHICS AND/OR ITS SUPPLIERS BE LIABLE FOR
22 * ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
23 * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
24 * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
25 *
26 **************************************************************************/
27 /*
28 * Authors:
29 * Keith Whitwell <keith@tungstengraphics.com>
30 * Michel Dänzer <michel@tungstengraphics.com>
31 */
32
Brian Paul06397652010-04-16 09:10:54 -060033#include <stdio.h>
34
José Fonseca946f4322009-07-26 23:44:38 +010035#include "pipe/p_context.h"
36#include "pipe/p_defines.h"
Michal Krol6df42d82009-12-03 10:52:47 +010037
Brian Paul06397652010-04-16 09:10:54 -060038#include "util/u_inlines.h"
Michal Krol6df42d82009-12-03 10:52:47 +010039#include "util/u_format.h"
José Fonseca946f4322009-07-26 23:44:38 +010040#include "util/u_math.h"
41#include "util/u_memory.h"
Brian Paulfea189d2010-05-11 11:50:43 -060042#include "util/u_simple_list.h"
Keith Whitwell287c94e2010-04-10 16:05:54 +010043#include "util/u_transfer.h"
José Fonseca946f4322009-07-26 23:44:38 +010044
45#include "lp_context.h"
José Fonseca3abc7b92010-03-13 16:04:06 +000046#include "lp_flush.h"
Brian Paul06397652010-04-16 09:10:54 -060047#include "lp_screen.h"
48#include "lp_tile_image.h"
José Fonseca946f4322009-07-26 23:44:38 +010049#include "lp_texture.h"
Keith Whitwell287c94e2010-04-10 16:05:54 +010050#include "lp_setup.h"
Brian Paul06397652010-04-16 09:10:54 -060051
Keith Whitwell23e951d2010-03-04 16:23:05 +000052#include "state_tracker/sw_winsys.h"
José Fonseca946f4322009-07-26 23:44:38 +010053
54
Brian Paulfea189d2010-05-11 11:50:43 -060055#ifdef DEBUG
56static struct llvmpipe_resource resource_list;
57#endif
58
59
Brian Paul06397652010-04-16 09:10:54 -060060static INLINE boolean
61resource_is_texture(const struct pipe_resource *resource)
62{
José Fonseca2eea1712010-04-22 18:06:05 +010063 switch (resource->target) {
64 case PIPE_BUFFER:
65 return FALSE;
66 case PIPE_TEXTURE_1D:
67 case PIPE_TEXTURE_2D:
68 case PIPE_TEXTURE_3D:
69 case PIPE_TEXTURE_CUBE:
70 return TRUE;
71 default:
72 assert(0);
73 return FALSE;
74 }
Brian Paul06397652010-04-16 09:10:54 -060075}
76
77
78
79/**
80 * Allocate storage for llvmpipe_texture::layout array.
81 * The number of elements is width_in_tiles * height_in_tiles.
82 */
83static enum lp_texture_layout *
Brian Paul202ff7d2010-04-19 16:42:47 -060084alloc_layout_array(unsigned num_slices, unsigned width, unsigned height)
Brian Paul06397652010-04-16 09:10:54 -060085{
86 const unsigned tx = align(width, TILE_SIZE) / TILE_SIZE;
87 const unsigned ty = align(height, TILE_SIZE) / TILE_SIZE;
88
Brian Paul202ff7d2010-04-19 16:42:47 -060089 assert(num_slices * tx * ty > 0);
Brian Paul06397652010-04-16 09:10:54 -060090 assert(LP_TEX_LAYOUT_NONE == 0); /* calloc'ing LP_TEX_LAYOUT_NONE here */
91
92 return (enum lp_texture_layout *)
José Fonsecacdaceaa2010-04-22 19:24:30 +010093 CALLOC(num_slices * tx * ty, sizeof(enum lp_texture_layout));
Brian Paul06397652010-04-16 09:10:54 -060094}
95
96
97
Brian Paul4414a1a2010-01-14 14:19:16 -070098/**
99 * Conventional allocation path for non-display textures:
Brian Paul06397652010-04-16 09:10:54 -0600100 * Just compute row strides here. Storage is allocated on demand later.
José Fonseca946f4322009-07-26 23:44:38 +0100101 */
102static boolean
Brian Paul06397652010-04-16 09:10:54 -0600103llvmpipe_texture_layout(struct llvmpipe_screen *screen,
Brian Pauld293c432010-04-16 10:01:32 -0600104 struct llvmpipe_resource *lpr)
José Fonseca946f4322009-07-26 23:44:38 +0100105{
Brian Pauld293c432010-04-16 10:01:32 -0600106 struct pipe_resource *pt = &lpr->base;
José Fonseca946f4322009-07-26 23:44:38 +0100107 unsigned level;
Roland Scheideggerd509f842009-11-26 22:49:58 +0100108 unsigned width = pt->width0;
109 unsigned height = pt->height0;
Brian Paul202ff7d2010-04-19 16:42:47 -0600110 unsigned depth = pt->depth0;
Brian Paul06397652010-04-16 09:10:54 -0600111
112 assert(LP_MAX_TEXTURE_2D_LEVELS <= LP_MAX_TEXTURE_LEVELS);
113 assert(LP_MAX_TEXTURE_3D_LEVELS <= LP_MAX_TEXTURE_LEVELS);
José Fonseca946f4322009-07-26 23:44:38 +0100114
115 for (level = 0; level <= pt->last_level; level++) {
Brian Paul202ff7d2010-04-19 16:42:47 -0600116
Brian Paul87022ef2010-05-04 17:15:26 -0600117 /* Row stride and image stride (for linear layout) */
118 {
119 unsigned alignment, nblocksx, nblocksy, block_size;
José Fonseca838da1d2009-10-18 14:31:58 +0100120
Brian Paul87022ef2010-05-04 17:15:26 -0600121 /* For non-compressed formats we need to align the texture size
122 * to the tile size to facilitate render-to-texture.
123 */
124 if (util_format_is_compressed(pt->format))
125 alignment = 1;
126 else
127 alignment = TILE_SIZE;
José Fonseca838da1d2009-10-18 14:31:58 +0100128
Brian Paul87022ef2010-05-04 17:15:26 -0600129 nblocksx = util_format_get_nblocksx(pt->format,
130 align(width, alignment));
131 nblocksy = util_format_get_nblocksy(pt->format,
132 align(height, alignment));
133 block_size = util_format_get_blocksize(pt->format);
José Fonseca946f4322009-07-26 23:44:38 +0100134
Brian Paul87022ef2010-05-04 17:15:26 -0600135 lpr->row_stride[level] = align(nblocksx * block_size, 16);
Brian Paulf4071e52010-04-19 17:05:05 -0600136
Brian Paul08e443a2010-05-11 11:48:35 -0600137 lpr->img_stride[level] = lpr->row_stride[level] * nblocksy;
Brian Paul87022ef2010-05-04 17:15:26 -0600138 }
José Fonseca946f4322009-07-26 23:44:38 +0100139
Brian Paul87022ef2010-05-04 17:15:26 -0600140 /* Size of the image in tiles (for tiled layout) */
141 {
142 const unsigned width_t = align(width, TILE_SIZE) / TILE_SIZE;
143 const unsigned height_t = align(height, TILE_SIZE) / TILE_SIZE;
144 lpr->tiles_per_row[level] = width_t;
145 lpr->tiles_per_image[level] = width_t * height_t;
146 }
147
148 /* Number of 3D image slices or cube faces */
149 {
150 unsigned num_slices;
151
152 if (lpr->base.target == PIPE_TEXTURE_CUBE)
153 num_slices = 6;
154 else if (lpr->base.target == PIPE_TEXTURE_3D)
155 num_slices = depth;
156 else
157 num_slices = 1;
158
159 lpr->num_slices_faces[level] = num_slices;
160
161 lpr->layout[level] = alloc_layout_array(num_slices, width, height);
162 }
163
164 /* Compute size of next mipmap level */
Brian Paul4414a1a2010-01-14 14:19:16 -0700165 width = u_minify(width, 1);
Roland Scheideggerd509f842009-11-26 22:49:58 +0100166 height = u_minify(height, 1);
Brian Paul202ff7d2010-04-19 16:42:47 -0600167 depth = u_minify(depth, 1);
José Fonseca946f4322009-07-26 23:44:38 +0100168 }
169
Brian Paul06397652010-04-16 09:10:54 -0600170 return TRUE;
José Fonseca946f4322009-07-26 23:44:38 +0100171}
172
Brian Paul4414a1a2010-01-14 14:19:16 -0700173
174
José Fonseca946f4322009-07-26 23:44:38 +0100175static boolean
José Fonsecae173a9b2009-08-29 20:02:25 +0100176llvmpipe_displaytarget_layout(struct llvmpipe_screen *screen,
Brian Pauld293c432010-04-16 10:01:32 -0600177 struct llvmpipe_resource *lpr)
José Fonseca946f4322009-07-26 23:44:38 +0100178{
Keith Whitwell94ce4eb2010-03-04 16:09:33 +0000179 struct sw_winsys *winsys = screen->winsys;
José Fonseca946f4322009-07-26 23:44:38 +0100180
Brian Paul0706dae2010-01-20 17:44:12 -0700181 /* Round up the surface size to a multiple of the tile size to
182 * avoid tile clipping.
183 */
Brian Paul202ff7d2010-04-19 16:42:47 -0600184 const unsigned width = align(lpr->base.width0, TILE_SIZE);
185 const unsigned height = align(lpr->base.height0, TILE_SIZE);
186 const unsigned width_t = align(width, TILE_SIZE) / TILE_SIZE;
187 const unsigned height_t = align(height, TILE_SIZE) / TILE_SIZE;
Brian Paul0706dae2010-01-20 17:44:12 -0700188
Brian Paul202ff7d2010-04-19 16:42:47 -0600189 lpr->tiles_per_row[0] = width_t;
190 lpr->tiles_per_image[0] = width_t * height_t;
191 lpr->num_slices_faces[0] = 1;
Brian Paulf4071e52010-04-19 17:05:05 -0600192 lpr->img_stride[0] = 0;
Brian Paul06397652010-04-16 09:10:54 -0600193
Brian Paul202ff7d2010-04-19 16:42:47 -0600194 lpr->layout[0] = alloc_layout_array(1, width, height);
Brian Paul15d60292010-04-21 10:30:53 -0600195 //lpr->layout[0][0] = LP_TEX_LAYOUT_LINEAR;
Brian Paul06397652010-04-16 09:10:54 -0600196
Brian Pauld293c432010-04-16 10:01:32 -0600197 lpr->dt = winsys->displaytarget_create(winsys,
198 lpr->base.bind,
199 lpr->base.format,
Brian Paul0706dae2010-01-20 17:44:12 -0700200 width, height,
José Fonsecae173a9b2009-08-29 20:02:25 +0100201 16,
Brian Paulf4071e52010-04-19 17:05:05 -0600202 &lpr->row_stride[0] );
José Fonseca946f4322009-07-26 23:44:38 +0100203
Brian Pauld293c432010-04-16 10:01:32 -0600204 return lpr->dt != NULL;
José Fonseca946f4322009-07-26 23:44:38 +0100205}
206
207
Keith Whitwell287c94e2010-04-10 16:05:54 +0100208static struct pipe_resource *
209llvmpipe_resource_create(struct pipe_screen *_screen,
Brian Paul06397652010-04-16 09:10:54 -0600210 const struct pipe_resource *templat)
José Fonseca946f4322009-07-26 23:44:38 +0100211{
Brian Paul06397652010-04-16 09:10:54 -0600212 static unsigned id_counter = 0;
José Fonsecae173a9b2009-08-29 20:02:25 +0100213 struct llvmpipe_screen *screen = llvmpipe_screen(_screen);
Brian Pauld293c432010-04-16 10:01:32 -0600214 struct llvmpipe_resource *lpr = CALLOC_STRUCT(llvmpipe_resource);
215 if (!lpr)
José Fonseca946f4322009-07-26 23:44:38 +0100216 return NULL;
217
Brian Pauld293c432010-04-16 10:01:32 -0600218 lpr->base = *templat;
219 pipe_reference_init(&lpr->base.reference, 1);
220 lpr->base.screen = &screen->base;
José Fonseca946f4322009-07-26 23:44:38 +0100221
Keith Whitwella6d9d182010-05-28 16:54:35 +0100222 /* assert(lpr->base.bind); */
Brian Paul06397652010-04-16 09:10:54 -0600223
José Fonseca8bee4c72010-04-22 18:22:22 +0100224 if (resource_is_texture(&lpr->base)) {
225 if (lpr->base.bind & PIPE_BIND_DISPLAY_TARGET) {
226 /* displayable surface */
227 if (!llvmpipe_displaytarget_layout(screen, lpr))
228 goto fail;
229 assert(lpr->layout[0][0] == LP_TEX_LAYOUT_NONE);
230 }
231 else {
232 /* texture map */
233 if (!llvmpipe_texture_layout(screen, lpr))
234 goto fail;
235 assert(lpr->layout[0][0] == LP_TEX_LAYOUT_NONE);
236 }
237 assert(lpr->layout[0]);
José Fonseca946f4322009-07-26 23:44:38 +0100238 }
239 else {
Brian Paul06397652010-04-16 09:10:54 -0600240 /* other data (vertex buffer, const buffer, etc) */
241 const enum pipe_format format = templat->format;
242 const uint w = templat->width0 / util_format_get_blockheight(format);
243 const uint h = templat->height0 / util_format_get_blockwidth(format);
244 const uint d = templat->depth0;
245 const uint bpp = util_format_get_blocksize(format);
246 const uint bytes = w * h * d * bpp;
Brian Pauld293c432010-04-16 10:01:32 -0600247 lpr->data = align_malloc(bytes, 16);
248 if (!lpr->data)
José Fonseca946f4322009-07-26 23:44:38 +0100249 goto fail;
250 }
Keith Whitwell287c94e2010-04-10 16:05:54 +0100251
Brian Pauld293c432010-04-16 10:01:32 -0600252 lpr->id = id_counter++;
Brian Paul06397652010-04-16 09:10:54 -0600253
Brian Paulfea189d2010-05-11 11:50:43 -0600254#ifdef DEBUG
255 insert_at_tail(&resource_list, lpr);
256#endif
257
Brian Pauld293c432010-04-16 10:01:32 -0600258 return &lpr->base;
José Fonseca946f4322009-07-26 23:44:38 +0100259
260 fail:
Brian Pauld293c432010-04-16 10:01:32 -0600261 FREE(lpr);
José Fonseca946f4322009-07-26 23:44:38 +0100262 return NULL;
263}
264
265
José Fonseca946f4322009-07-26 23:44:38 +0100266static void
Keith Whitwell287c94e2010-04-10 16:05:54 +0100267llvmpipe_resource_destroy(struct pipe_screen *pscreen,
268 struct pipe_resource *pt)
José Fonseca946f4322009-07-26 23:44:38 +0100269{
Keith Whitwell287c94e2010-04-10 16:05:54 +0100270 struct llvmpipe_screen *screen = llvmpipe_screen(pscreen);
Brian Pauld293c432010-04-16 10:01:32 -0600271 struct llvmpipe_resource *lpr = llvmpipe_resource(pt);
José Fonseca946f4322009-07-26 23:44:38 +0100272
Brian Pauld293c432010-04-16 10:01:32 -0600273 if (lpr->dt) {
Brian Paul4414a1a2010-01-14 14:19:16 -0700274 /* display target */
Keith Whitwell94ce4eb2010-03-04 16:09:33 +0000275 struct sw_winsys *winsys = screen->winsys;
Brian Pauld293c432010-04-16 10:01:32 -0600276 winsys->displaytarget_destroy(winsys, lpr->dt);
Brian Paul7dd44ca2010-04-28 15:21:56 -0600277
Brian Paulba6d8442010-04-29 09:10:05 -0600278 if (lpr->tiled[0].data) {
279 align_free(lpr->tiled[0].data);
280 lpr->tiled[0].data = NULL;
281 }
282
Brian Paul7dd44ca2010-04-28 15:21:56 -0600283 FREE(lpr->layout[0]);
José Fonsecae173a9b2009-08-29 20:02:25 +0100284 }
Brian Paul06397652010-04-16 09:10:54 -0600285 else if (resource_is_texture(pt)) {
Brian Paul4414a1a2010-01-14 14:19:16 -0700286 /* regular texture */
Brian Paul202ff7d2010-04-19 16:42:47 -0600287 uint level;
Brian Paul06397652010-04-16 09:10:54 -0600288
289 /* free linear image data */
Brian Pauld293c432010-04-16 10:01:32 -0600290 for (level = 0; level < Elements(lpr->linear); level++) {
291 if (lpr->linear[level].data) {
292 align_free(lpr->linear[level].data);
293 lpr->linear[level].data = NULL;
Brian Paul06397652010-04-16 09:10:54 -0600294 }
295 }
296
297 /* free tiled image data */
Brian Pauld293c432010-04-16 10:01:32 -0600298 for (level = 0; level < Elements(lpr->tiled); level++) {
299 if (lpr->tiled[level].data) {
300 align_free(lpr->tiled[level].data);
301 lpr->tiled[level].data = NULL;
Brian Paul06397652010-04-16 09:10:54 -0600302 }
303 }
304
305 /* free layout flag arrays */
Brian Pauld293c432010-04-16 10:01:32 -0600306 for (level = 0; level < Elements(lpr->tiled); level++) {
José Fonsecacdaceaa2010-04-22 19:24:30 +0100307 FREE(lpr->layout[level]);
Brian Paul202ff7d2010-04-19 16:42:47 -0600308 lpr->layout[level] = NULL;
Brian Paul06397652010-04-16 09:10:54 -0600309 }
310 }
Brian Pauld293c432010-04-16 10:01:32 -0600311 else if (!lpr->userBuffer) {
312 assert(lpr->data);
313 align_free(lpr->data);
Brian Paul4414a1a2010-01-14 14:19:16 -0700314 }
José Fonsecae173a9b2009-08-29 20:02:25 +0100315
Brian Paulfea189d2010-05-11 11:50:43 -0600316#ifdef DEBUG
317 if (lpr->next)
318 remove_from_list(lpr);
319#endif
320
Brian Pauld293c432010-04-16 10:01:32 -0600321 FREE(lpr);
José Fonseca946f4322009-07-26 23:44:38 +0100322}
323
324
José Fonseca3abc7b92010-03-13 16:04:06 +0000325/**
Brian Pauld293c432010-04-16 10:01:32 -0600326 * Map a resource for read/write.
José Fonseca3abc7b92010-03-13 16:04:06 +0000327 */
328void *
Brian Pauld293c432010-04-16 10:01:32 -0600329llvmpipe_resource_map(struct pipe_resource *resource,
Keith Whitwell287c94e2010-04-10 16:05:54 +0100330 unsigned face,
331 unsigned level,
Brian Paul06397652010-04-16 09:10:54 -0600332 unsigned zslice,
333 enum lp_texture_usage tex_usage,
334 enum lp_texture_layout layout)
José Fonseca3abc7b92010-03-13 16:04:06 +0000335{
Brian Pauld293c432010-04-16 10:01:32 -0600336 struct llvmpipe_resource *lpr = llvmpipe_resource(resource);
José Fonseca3abc7b92010-03-13 16:04:06 +0000337 uint8_t *map;
338
Brian Paul06397652010-04-16 09:10:54 -0600339 assert(face < 6);
340 assert(level < LP_MAX_TEXTURE_LEVELS);
341
342 assert(tex_usage == LP_TEX_USAGE_READ ||
343 tex_usage == LP_TEX_USAGE_READ_WRITE ||
344 tex_usage == LP_TEX_USAGE_WRITE_ALL);
345
346 assert(layout == LP_TEX_LAYOUT_NONE ||
347 layout == LP_TEX_LAYOUT_TILED ||
348 layout == LP_TEX_LAYOUT_LINEAR);
349
Brian Pauld293c432010-04-16 10:01:32 -0600350 if (lpr->dt) {
José Fonseca3abc7b92010-03-13 16:04:06 +0000351 /* display target */
Brian Pauld293c432010-04-16 10:01:32 -0600352 struct llvmpipe_screen *screen = llvmpipe_screen(resource->screen);
José Fonseca3abc7b92010-03-13 16:04:06 +0000353 struct sw_winsys *winsys = screen->winsys;
Brian Paul06397652010-04-16 09:10:54 -0600354 unsigned dt_usage;
Brian Paul15d60292010-04-21 10:30:53 -0600355 uint8_t *map2;
Brian Paul06397652010-04-16 09:10:54 -0600356
357 if (tex_usage == LP_TEX_USAGE_READ) {
358 dt_usage = PIPE_TRANSFER_READ;
359 }
360 else {
361 dt_usage = PIPE_TRANSFER_READ_WRITE;
362 }
José Fonseca3abc7b92010-03-13 16:04:06 +0000363
364 assert(face == 0);
365 assert(level == 0);
366 assert(zslice == 0);
367
368 /* FIXME: keep map count? */
Brian Pauld293c432010-04-16 10:01:32 -0600369 map = winsys->displaytarget_map(winsys, lpr->dt, dt_usage);
Brian Paul06397652010-04-16 09:10:54 -0600370
371 /* install this linear image in texture data structure */
Brian Pauld293c432010-04-16 10:01:32 -0600372 lpr->linear[level].data = map;
Brian Paul06397652010-04-16 09:10:54 -0600373
Brian Paul15d60292010-04-21 10:30:53 -0600374 /* make sure tiled data gets converted to linear data */
375 map2 = llvmpipe_get_texture_image(lpr, 0, 0, tex_usage, layout);
376 if (layout == LP_TEX_LAYOUT_LINEAR)
377 assert(map == map2);
Brian Paul06397652010-04-16 09:10:54 -0600378
Brian Paul15d60292010-04-21 10:30:53 -0600379 return map2;
José Fonseca3abc7b92010-03-13 16:04:06 +0000380 }
Brian Pauld293c432010-04-16 10:01:32 -0600381 else if (resource_is_texture(resource)) {
José Fonseca3abc7b92010-03-13 16:04:06 +0000382 /* regular texture */
Brian Paul202ff7d2010-04-19 16:42:47 -0600383 if (resource->target != PIPE_TEXTURE_CUBE) {
José Fonseca3abc7b92010-03-13 16:04:06 +0000384 assert(face == 0);
Brian Paul202ff7d2010-04-19 16:42:47 -0600385 }
386 if (resource->target != PIPE_TEXTURE_3D) {
José Fonseca3abc7b92010-03-13 16:04:06 +0000387 assert(zslice == 0);
388 }
389
Brian Paul202ff7d2010-04-19 16:42:47 -0600390 map = llvmpipe_get_texture_image(lpr, face + zslice, level,
391 tex_usage, layout);
Brian Paul06397652010-04-16 09:10:54 -0600392 return map;
José Fonseca3abc7b92010-03-13 16:04:06 +0000393 }
Brian Paul06397652010-04-16 09:10:54 -0600394 else {
Brian Pauld293c432010-04-16 10:01:32 -0600395 return lpr->data;
Brian Paul06397652010-04-16 09:10:54 -0600396 }
José Fonseca3abc7b92010-03-13 16:04:06 +0000397}
398
399
400/**
Brian Pauld293c432010-04-16 10:01:32 -0600401 * Unmap a resource.
José Fonseca3abc7b92010-03-13 16:04:06 +0000402 */
403void
Brian Pauld293c432010-04-16 10:01:32 -0600404llvmpipe_resource_unmap(struct pipe_resource *resource,
José Fonseca3abc7b92010-03-13 16:04:06 +0000405 unsigned face,
406 unsigned level,
407 unsigned zslice)
408{
Brian Pauld293c432010-04-16 10:01:32 -0600409 struct llvmpipe_resource *lpr = llvmpipe_resource(resource);
José Fonseca3abc7b92010-03-13 16:04:06 +0000410
Brian Pauld293c432010-04-16 10:01:32 -0600411 if (lpr->dt) {
José Fonseca3abc7b92010-03-13 16:04:06 +0000412 /* display target */
Brian Pauld293c432010-04-16 10:01:32 -0600413 struct llvmpipe_screen *lp_screen = llvmpipe_screen(resource->screen);
José Fonseca3abc7b92010-03-13 16:04:06 +0000414 struct sw_winsys *winsys = lp_screen->winsys;
415
416 assert(face == 0);
417 assert(level == 0);
418 assert(zslice == 0);
419
Brian Paul06397652010-04-16 09:10:54 -0600420 /* make sure linear image is up to date */
Brian Paul202ff7d2010-04-19 16:42:47 -0600421 (void) llvmpipe_get_texture_image(lpr, face + zslice, level,
Brian Paul06397652010-04-16 09:10:54 -0600422 LP_TEX_USAGE_READ,
423 LP_TEX_LAYOUT_LINEAR);
424
Brian Pauld293c432010-04-16 10:01:32 -0600425 winsys->displaytarget_unmap(winsys, lpr->dt);
José Fonseca3abc7b92010-03-13 16:04:06 +0000426 }
427}
428
429
Brian Paul06397652010-04-16 09:10:54 -0600430void *
431llvmpipe_resource_data(struct pipe_resource *resource)
432{
Brian Pauld293c432010-04-16 10:01:32 -0600433 struct llvmpipe_resource *lpr = llvmpipe_resource(resource);
Brian Paul06397652010-04-16 09:10:54 -0600434
José Fonseca8bee4c72010-04-22 18:22:22 +0100435 assert(!resource_is_texture(resource));
Brian Paul06397652010-04-16 09:10:54 -0600436
Brian Pauld293c432010-04-16 10:01:32 -0600437 return lpr->data;
Brian Paul06397652010-04-16 09:10:54 -0600438}
439
440
Keith Whitwell287c94e2010-04-10 16:05:54 +0100441static struct pipe_resource *
442llvmpipe_resource_from_handle(struct pipe_screen *screen,
443 const struct pipe_resource *template,
444 struct winsys_handle *whandle)
Jakob Bornecrantz8b63f9b2010-03-11 03:33:03 +0000445{
446 struct sw_winsys *winsys = llvmpipe_screen(screen)->winsys;
Brian Pauld293c432010-04-16 10:01:32 -0600447 struct llvmpipe_resource *lpr = CALLOC_STRUCT(llvmpipe_resource);
448 if (!lpr)
Jakob Bornecrantz8b63f9b2010-03-11 03:33:03 +0000449 return NULL;
450
Brian Pauld293c432010-04-16 10:01:32 -0600451 lpr->base = *template;
452 pipe_reference_init(&lpr->base.reference, 1);
453 lpr->base.screen = screen;
Jakob Bornecrantz8b63f9b2010-03-11 03:33:03 +0000454
Brian Pauld293c432010-04-16 10:01:32 -0600455 lpr->dt = winsys->displaytarget_from_handle(winsys,
Jakob Bornecrantz8b63f9b2010-03-11 03:33:03 +0000456 template,
457 whandle,
Brian Paulf4071e52010-04-19 17:05:05 -0600458 &lpr->row_stride[0]);
Brian Pauld293c432010-04-16 10:01:32 -0600459 if (!lpr->dt)
Jakob Bornecrantz8b63f9b2010-03-11 03:33:03 +0000460 goto fail;
461
Brian Pauld293c432010-04-16 10:01:32 -0600462 return &lpr->base;
Jakob Bornecrantz8b63f9b2010-03-11 03:33:03 +0000463
464 fail:
Brian Pauld293c432010-04-16 10:01:32 -0600465 FREE(lpr);
Jakob Bornecrantz8b63f9b2010-03-11 03:33:03 +0000466 return NULL;
467}
468
469
470static boolean
Keith Whitwell287c94e2010-04-10 16:05:54 +0100471llvmpipe_resource_get_handle(struct pipe_screen *screen,
472 struct pipe_resource *pt,
Jakob Bornecrantz8b63f9b2010-03-11 03:33:03 +0000473 struct winsys_handle *whandle)
474{
475 struct sw_winsys *winsys = llvmpipe_screen(screen)->winsys;
Brian Pauld293c432010-04-16 10:01:32 -0600476 struct llvmpipe_resource *lpr = llvmpipe_resource(pt);
Jakob Bornecrantz8b63f9b2010-03-11 03:33:03 +0000477
Brian Pauld293c432010-04-16 10:01:32 -0600478 assert(lpr->dt);
479 if (!lpr->dt)
Jakob Bornecrantz8b63f9b2010-03-11 03:33:03 +0000480 return FALSE;
481
Brian Pauld293c432010-04-16 10:01:32 -0600482 return winsys->displaytarget_get_handle(winsys, lpr->dt, whandle);
Jakob Bornecrantz8b63f9b2010-03-11 03:33:03 +0000483}
484
485
José Fonseca946f4322009-07-26 23:44:38 +0100486static struct pipe_surface *
487llvmpipe_get_tex_surface(struct pipe_screen *screen,
Keith Whitwell287c94e2010-04-10 16:05:54 +0100488 struct pipe_resource *pt,
José Fonseca946f4322009-07-26 23:44:38 +0100489 unsigned face, unsigned level, unsigned zslice,
José Fonseca6e47d4f2010-05-07 19:35:10 +0100490 unsigned usage)
José Fonseca946f4322009-07-26 23:44:38 +0100491{
José Fonseca946f4322009-07-26 23:44:38 +0100492 struct pipe_surface *ps;
493
494 assert(level <= pt->last_level);
495
496 ps = CALLOC_STRUCT(pipe_surface);
497 if (ps) {
498 pipe_reference_init(&ps->reference, 1);
Keith Whitwell287c94e2010-04-10 16:05:54 +0100499 pipe_resource_reference(&ps->texture, pt);
José Fonseca946f4322009-07-26 23:44:38 +0100500 ps->format = pt->format;
Roland Scheideggerd509f842009-11-26 22:49:58 +0100501 ps->width = u_minify(pt->width0, level);
502 ps->height = u_minify(pt->height0, level);
José Fonseca946f4322009-07-26 23:44:38 +0100503 ps->usage = usage;
504
José Fonseca946f4322009-07-26 23:44:38 +0100505 ps->face = face;
506 ps->level = level;
507 ps->zslice = zslice;
José Fonseca946f4322009-07-26 23:44:38 +0100508 }
509 return ps;
510}
511
512
513static void
514llvmpipe_tex_surface_destroy(struct pipe_surface *surf)
515{
516 /* Effectively do the texture_update work here - if texture images
517 * needed post-processing to put them into hardware layout, this is
518 * where it would happen. For llvmpipe, nothing to do.
519 */
520 assert(surf->texture);
Keith Whitwell287c94e2010-04-10 16:05:54 +0100521 pipe_resource_reference(&surf->texture, NULL);
José Fonseca946f4322009-07-26 23:44:38 +0100522 FREE(surf);
523}
524
525
526static struct pipe_transfer *
Keith Whitwell287c94e2010-04-10 16:05:54 +0100527llvmpipe_get_transfer(struct pipe_context *pipe,
528 struct pipe_resource *resource,
529 struct pipe_subresource sr,
530 unsigned usage,
531 const struct pipe_box *box)
José Fonseca946f4322009-07-26 23:44:38 +0100532{
Brian Pauld293c432010-04-16 10:01:32 -0600533 struct llvmpipe_resource *lprex = llvmpipe_resource(resource);
534 struct llvmpipe_transfer *lpr;
José Fonseca946f4322009-07-26 23:44:38 +0100535
Keith Whitwell287c94e2010-04-10 16:05:54 +0100536 assert(resource);
537 assert(sr.level <= resource->last_level);
José Fonseca946f4322009-07-26 23:44:38 +0100538
José Fonseca43b85af2010-04-25 16:59:09 +0100539 /*
540 * Transfers, like other pipe operations, must happen in order, so flush the
541 * context if necessary.
542 */
543 if (!(usage & PIPE_TRANSFER_UNSYNCHRONIZED)) {
544 boolean read_only = !(usage & PIPE_TRANSFER_WRITE);
545 boolean do_not_block = !!(usage & PIPE_TRANSFER_DONTBLOCK);
546 if (!llvmpipe_flush_resource(pipe, resource,
547 sr.face, sr.level,
548 0, /* flush_flags */
549 read_only,
550 TRUE, /* cpu_access */
551 do_not_block)) {
552 /*
553 * It would have blocked, but state tracker requested no to.
554 */
555 assert(do_not_block);
556 return NULL;
557 }
558 }
559
Brian Pauld293c432010-04-16 10:01:32 -0600560 lpr = CALLOC_STRUCT(llvmpipe_transfer);
561 if (lpr) {
562 struct pipe_transfer *pt = &lpr->base;
Keith Whitwell287c94e2010-04-10 16:05:54 +0100563 pipe_resource_reference(&pt->resource, resource);
564 pt->box = *box;
Jakob Bornecrantzc81f0492010-04-12 01:47:28 +0200565 pt->sr = sr;
Brian Paulf4071e52010-04-19 17:05:05 -0600566 pt->stride = lprex->row_stride[sr.level];
José Fonsecaa3ef2fb2010-05-22 16:14:20 +0100567 pt->slice_stride = lprex->img_stride[sr.level];
José Fonseca946f4322009-07-26 23:44:38 +0100568 pt->usage = usage;
José Fonseca946f4322009-07-26 23:44:38 +0100569
José Fonseca946f4322009-07-26 23:44:38 +0100570 return pt;
571 }
572 return NULL;
573}
574
575
576static void
Keith Whitwell287c94e2010-04-10 16:05:54 +0100577llvmpipe_transfer_destroy(struct pipe_context *pipe,
Keith Whitwelld35ecca2010-03-11 16:10:25 +0000578 struct pipe_transfer *transfer)
José Fonseca946f4322009-07-26 23:44:38 +0100579{
580 /* Effectively do the texture_update work here - if texture images
581 * needed post-processing to put them into hardware layout, this is
582 * where it would happen. For llvmpipe, nothing to do.
583 */
Keith Whitwell287c94e2010-04-10 16:05:54 +0100584 assert (transfer->resource);
585 pipe_resource_reference(&transfer->resource, NULL);
José Fonseca946f4322009-07-26 23:44:38 +0100586 FREE(transfer);
587}
588
589
590static void *
Keith Whitwellb43c1822010-03-11 15:23:16 +0000591llvmpipe_transfer_map( struct pipe_context *pipe,
José Fonseca946f4322009-07-26 23:44:38 +0100592 struct pipe_transfer *transfer )
593{
Keith Whitwellb43c1822010-03-11 15:23:16 +0000594 struct llvmpipe_screen *screen = llvmpipe_screen(pipe->screen);
José Fonseca3abc7b92010-03-13 16:04:06 +0000595 ubyte *map;
Brian Pauld293c432010-04-16 10:01:32 -0600596 struct llvmpipe_resource *lpr;
Roland Scheideggerc78748a2009-12-02 02:08:26 +0100597 enum pipe_format format;
Brian Paul06397652010-04-16 09:10:54 -0600598 enum lp_texture_usage tex_usage;
599 const char *mode;
600
601 assert(transfer->sr.face < 6);
602 assert(transfer->sr.level < LP_MAX_TEXTURE_LEVELS);
603
604 /*
605 printf("tex_transfer_map(%d, %d %d x %d of %d x %d, usage %d )\n",
606 transfer->x, transfer->y, transfer->width, transfer->height,
607 transfer->texture->width0,
608 transfer->texture->height0,
609 transfer->usage);
610 */
611
612 if (transfer->usage == PIPE_TRANSFER_READ) {
613 tex_usage = LP_TEX_USAGE_READ;
614 mode = "read";
615 }
616 else {
617 tex_usage = LP_TEX_USAGE_READ_WRITE;
618 mode = "read/write";
619 }
620
621 if (0) {
Brian Pauld293c432010-04-16 10:01:32 -0600622 struct llvmpipe_resource *lpr = llvmpipe_resource(transfer->resource);
623 printf("transfer map tex %u mode %s\n", lpr->id, mode);
Brian Paul06397652010-04-16 09:10:54 -0600624 }
625
José Fonseca946f4322009-07-26 23:44:38 +0100626
Keith Whitwell287c94e2010-04-10 16:05:54 +0100627 assert(transfer->resource);
Brian Pauld293c432010-04-16 10:01:32 -0600628 lpr = llvmpipe_resource(transfer->resource);
629 format = lpr->base.format;
José Fonseca946f4322009-07-26 23:44:38 +0100630
Keith Whitwell287c94e2010-04-10 16:05:54 +0100631 map = llvmpipe_resource_map(transfer->resource,
Keith Whitwell287c94e2010-04-10 16:05:54 +0100632 transfer->sr.face,
633 transfer->sr.level,
Brian Paul06397652010-04-16 09:10:54 -0600634 transfer->box.z,
635 tex_usage, LP_TEX_LAYOUT_LINEAR);
José Fonseca946f4322009-07-26 23:44:38 +0100636
Brian Paul06397652010-04-16 09:10:54 -0600637
638 /* May want to do different things here depending on read/write nature
José Fonseca946f4322009-07-26 23:44:38 +0100639 * of the map:
640 */
José Fonseca3abc7b92010-03-13 16:04:06 +0000641 if (transfer->usage & PIPE_TRANSFER_WRITE) {
José Fonseca946f4322009-07-26 23:44:38 +0100642 /* Do something to notify sharing contexts of a texture change.
José Fonseca946f4322009-07-26 23:44:38 +0100643 */
José Fonsecae173a9b2009-08-29 20:02:25 +0100644 screen->timestamp++;
José Fonseca946f4322009-07-26 23:44:38 +0100645 }
646
José Fonseca3abc7b92010-03-13 16:04:06 +0000647 map +=
Keith Whitwell287c94e2010-04-10 16:05:54 +0100648 transfer->box.y / util_format_get_blockheight(format) * transfer->stride +
649 transfer->box.x / util_format_get_blockwidth(format) * util_format_get_blocksize(format);
José Fonseca3abc7b92010-03-13 16:04:06 +0000650
651 return map;
José Fonseca946f4322009-07-26 23:44:38 +0100652}
653
654
655static void
Keith Whitwellb43c1822010-03-11 15:23:16 +0000656llvmpipe_transfer_unmap(struct pipe_context *pipe,
657 struct pipe_transfer *transfer)
José Fonseca946f4322009-07-26 23:44:38 +0100658{
Keith Whitwell287c94e2010-04-10 16:05:54 +0100659 assert(transfer->resource);
José Fonseca946f4322009-07-26 23:44:38 +0100660
Keith Whitwell287c94e2010-04-10 16:05:54 +0100661 llvmpipe_resource_unmap(transfer->resource,
662 transfer->sr.face,
663 transfer->sr.level,
664 transfer->box.z);
665}
666
667static unsigned int
668llvmpipe_is_resource_referenced( struct pipe_context *pipe,
669 struct pipe_resource *presource,
670 unsigned face, unsigned level)
671{
672 struct llvmpipe_context *llvmpipe = llvmpipe_context( pipe );
673
674 if (presource->target == PIPE_BUFFER)
675 return PIPE_UNREFERENCED;
676
677 return lp_setup_is_resource_referenced(llvmpipe->setup, presource);
678}
679
680
681
682/**
683 * Create buffer which wraps user-space data.
684 */
685static struct pipe_resource *
686llvmpipe_user_buffer_create(struct pipe_screen *screen,
687 void *ptr,
688 unsigned bytes,
689 unsigned bind_flags)
690{
691 struct llvmpipe_resource *buffer;
692
693 buffer = CALLOC_STRUCT(llvmpipe_resource);
694 if(!buffer)
695 return NULL;
696
697 pipe_reference_init(&buffer->base.reference, 1);
698 buffer->base.screen = screen;
699 buffer->base.format = PIPE_FORMAT_R8_UNORM; /* ?? */
700 buffer->base.bind = bind_flags;
Brian Paula2a01852010-04-20 10:00:03 -0600701 buffer->base.usage = PIPE_USAGE_IMMUTABLE;
Keith Whitwell287c94e2010-04-10 16:05:54 +0100702 buffer->base.flags = 0;
703 buffer->base.width0 = bytes;
704 buffer->base.height0 = 1;
705 buffer->base.depth0 = 1;
706 buffer->userBuffer = TRUE;
707 buffer->data = ptr;
708
709 return &buffer->base;
José Fonseca946f4322009-07-26 23:44:38 +0100710}
711
712
Brian Paul06397652010-04-16 09:10:54 -0600713/**
714 * Compute size (in bytes) need to store a texture image / mipmap level,
Brian Paul202ff7d2010-04-19 16:42:47 -0600715 * for just one cube face or one 3D texture slice
Brian Paul06397652010-04-16 09:10:54 -0600716 */
717static unsigned
Brian Pauld293c432010-04-16 10:01:32 -0600718tex_image_face_size(const struct llvmpipe_resource *lpr, unsigned level,
Brian Paul06397652010-04-16 09:10:54 -0600719 enum lp_texture_layout layout)
720{
Brian Paul05bf77a2010-04-19 11:17:11 -0600721 const unsigned width = u_minify(lpr->base.width0, level);
Brian Pauld293c432010-04-16 10:01:32 -0600722 const unsigned height = u_minify(lpr->base.height0, level);
Brian Paul05bf77a2010-04-19 11:17:11 -0600723
724 assert(layout == LP_TEX_LAYOUT_TILED ||
725 layout == LP_TEX_LAYOUT_LINEAR);
726
727 if (layout == LP_TEX_LAYOUT_TILED) {
728 /* for tiled layout, force a 32bpp format */
729 const enum pipe_format format = PIPE_FORMAT_B8G8R8A8_UNORM;
730 const unsigned block_size = util_format_get_blocksize(format);
731 const unsigned nblocksy =
732 util_format_get_nblocksy(format, align(height, TILE_SIZE));
733 const unsigned nblocksx =
734 util_format_get_nblocksx(format, align(width, TILE_SIZE));
Brian Paul202ff7d2010-04-19 16:42:47 -0600735 const unsigned buffer_size = block_size * nblocksy * nblocksx;
Brian Paul05bf77a2010-04-19 11:17:11 -0600736 return buffer_size;
737 }
738 else {
Brian Paul87022ef2010-05-04 17:15:26 -0600739 /* we already computed this */
740 return lpr->img_stride[level];
Brian Paul05bf77a2010-04-19 11:17:11 -0600741 }
Brian Paul06397652010-04-16 09:10:54 -0600742}
743
744
745/**
746 * Compute size (in bytes) need to store a texture image / mipmap level,
Brian Paul202ff7d2010-04-19 16:42:47 -0600747 * including all cube faces or 3D image slices
Brian Paul06397652010-04-16 09:10:54 -0600748 */
749static unsigned
Brian Pauld293c432010-04-16 10:01:32 -0600750tex_image_size(const struct llvmpipe_resource *lpr, unsigned level,
Brian Paul06397652010-04-16 09:10:54 -0600751 enum lp_texture_layout layout)
752{
Brian Pauld293c432010-04-16 10:01:32 -0600753 const unsigned buf_size = tex_image_face_size(lpr, level, layout);
Brian Paul202ff7d2010-04-19 16:42:47 -0600754 return buf_size * lpr->num_slices_faces[level];
Brian Paul06397652010-04-16 09:10:54 -0600755}
756
757
758/**
759 * This function encapsulates some complicated logic for determining
760 * how to convert a tile of image data from linear layout to tiled
761 * layout, or vice versa.
762 * \param cur_layout the current tile layout
763 * \param target_layout the desired tile layout
764 * \param usage how the tile will be accessed (R/W vs. read-only, etc)
765 * \param new_layout_return returns the new layout mode
766 * \param convert_return returns TRUE if image conversion is needed
767 */
768static void
769layout_logic(enum lp_texture_layout cur_layout,
770 enum lp_texture_layout target_layout,
771 enum lp_texture_usage usage,
772 enum lp_texture_layout *new_layout_return,
773 boolean *convert)
774{
775 enum lp_texture_layout other_layout, new_layout;
776
777 *convert = FALSE;
778
779 new_layout = 99; /* debug check */
780
781 if (target_layout == LP_TEX_LAYOUT_LINEAR) {
782 other_layout = LP_TEX_LAYOUT_TILED;
783 }
784 else {
785 assert(target_layout == LP_TEX_LAYOUT_TILED);
786 other_layout = LP_TEX_LAYOUT_LINEAR;
787 }
788
789 new_layout = target_layout; /* may get changed below */
790
791 if (cur_layout == LP_TEX_LAYOUT_BOTH) {
792 if (usage == LP_TEX_USAGE_READ) {
793 new_layout = LP_TEX_LAYOUT_BOTH;
794 }
795 }
796 else if (cur_layout == other_layout) {
797 if (usage != LP_TEX_USAGE_WRITE_ALL) {
798 /* need to convert tiled data to linear or vice versa */
799 *convert = TRUE;
800
801 if (usage == LP_TEX_USAGE_READ)
802 new_layout = LP_TEX_LAYOUT_BOTH;
803 }
804 }
805 else {
806 assert(cur_layout == LP_TEX_LAYOUT_NONE ||
807 cur_layout == target_layout);
808 }
809
810 assert(new_layout == LP_TEX_LAYOUT_BOTH ||
811 new_layout == target_layout);
812
813 *new_layout_return = new_layout;
814}
815
816
817/**
Brian Paul21421082010-04-20 17:28:33 -0600818 * Return pointer to a 2D texture image/face/slice.
819 * No tiled/linear conversion is done.
Brian Paul06397652010-04-16 09:10:54 -0600820 */
Brian Paul21421082010-04-20 17:28:33 -0600821ubyte *
Brian Pauld293c432010-04-16 10:01:32 -0600822llvmpipe_get_texture_image_address(struct llvmpipe_resource *lpr,
Brian Paul21421082010-04-20 17:28:33 -0600823 unsigned face_slice, unsigned level,
Brian Paul06397652010-04-16 09:10:54 -0600824 enum lp_texture_layout layout)
825{
826 struct llvmpipe_texture_image *img;
Brian Paul21421082010-04-20 17:28:33 -0600827 unsigned offset;
Brian Paul06397652010-04-16 09:10:54 -0600828
829 if (layout == LP_TEX_LAYOUT_LINEAR) {
Brian Pauld293c432010-04-16 10:01:32 -0600830 img = &lpr->linear[level];
Brian Paul06397652010-04-16 09:10:54 -0600831 }
832 else {
833 assert (layout == LP_TEX_LAYOUT_TILED);
Brian Pauld293c432010-04-16 10:01:32 -0600834 img = &lpr->tiled[level];
Brian Paul06397652010-04-16 09:10:54 -0600835 }
836
Brian Paul21421082010-04-20 17:28:33 -0600837 if (face_slice > 0)
838 offset = face_slice * tex_image_face_size(lpr, level, layout);
Brian Paul06397652010-04-16 09:10:54 -0600839 else
Brian Paul21421082010-04-20 17:28:33 -0600840 offset = 0;
Brian Paul06397652010-04-16 09:10:54 -0600841
Brian Paul21421082010-04-20 17:28:33 -0600842 return (ubyte *) img->data + offset;
Brian Paul06397652010-04-16 09:10:54 -0600843}
844
845
Brian Paulee7cf9d2010-04-19 14:43:22 -0600846static INLINE enum lp_texture_layout
847llvmpipe_get_texture_tile_layout(const struct llvmpipe_resource *lpr,
848 unsigned face_slice, unsigned level,
849 unsigned x, unsigned y)
850{
851 uint i;
852 assert(resource_is_texture(&lpr->base));
853 assert(x < lpr->tiles_per_row[level]);
Brian Paul202ff7d2010-04-19 16:42:47 -0600854 i = face_slice * lpr->tiles_per_image[level]
855 + y * lpr->tiles_per_row[level] + x;
856 return lpr->layout[level][i];
Brian Paulee7cf9d2010-04-19 14:43:22 -0600857}
858
859
860static INLINE void
861llvmpipe_set_texture_tile_layout(struct llvmpipe_resource *lpr,
862 unsigned face_slice, unsigned level,
863 unsigned x, unsigned y,
864 enum lp_texture_layout layout)
865{
866 uint i;
867 assert(resource_is_texture(&lpr->base));
868 assert(x < lpr->tiles_per_row[level]);
Brian Paul202ff7d2010-04-19 16:42:47 -0600869 i = face_slice * lpr->tiles_per_image[level]
870 + y * lpr->tiles_per_row[level] + x;
871 lpr->layout[level][i] = layout;
Brian Paulee7cf9d2010-04-19 14:43:22 -0600872}
873
Brian Paul06397652010-04-16 09:10:54 -0600874
875/**
Brian Paul2cad6242010-04-19 16:49:37 -0600876 * Set the layout mode for all tiles in a particular image.
877 */
878static INLINE void
879llvmpipe_set_texture_image_layout(struct llvmpipe_resource *lpr,
880 unsigned face_slice, unsigned level,
881 unsigned width_t, unsigned height_t,
882 enum lp_texture_layout layout)
883{
884 const unsigned start = face_slice * lpr->tiles_per_image[level];
885 unsigned i;
886
887 for (i = 0; i < width_t * height_t; i++) {
888 lpr->layout[level][start + i] = layout;
889 }
890}
891
892
893/**
Brian Paul15d60292010-04-21 10:30:53 -0600894 * Allocate storage for a linear or tile texture image (all cube
895 * faces and all 3D slices.
896 */
897static void
898alloc_image_data(struct llvmpipe_resource *lpr, unsigned level,
899 enum lp_texture_layout layout)
900{
901 if (lpr->dt)
902 assert(level == 0);
903
904 if (layout == LP_TEX_LAYOUT_TILED) {
905 /* tiled data is stored in regular memory */
906 uint buffer_size = tex_image_size(lpr, level, layout);
907 lpr->tiled[level].data = align_malloc(buffer_size, 16);
908 }
909 else {
910 assert(layout == LP_TEX_LAYOUT_LINEAR);
911 if (lpr->dt) {
912 /* we get the linear memory from the winsys */
913 struct llvmpipe_screen *screen = llvmpipe_screen(lpr->base.screen);
914 struct sw_winsys *winsys = screen->winsys;
915
916 lpr->linear[0].data =
917 winsys->displaytarget_map(winsys, lpr->dt,
918 PIPE_TRANSFER_READ_WRITE);
919 }
920 else {
921 /* not a display target - allocate regular memory */
922 uint buffer_size = tex_image_size(lpr, level, LP_TEX_LAYOUT_LINEAR);
923 lpr->linear[level].data = align_malloc(buffer_size, 16);
924 }
925 }
926}
927
928
929
930/**
Brian Paul202ff7d2010-04-19 16:42:47 -0600931 * Return pointer to texture image data (either linear or tiled layout)
932 * for a particular cube face or 3D texture slice.
933 *
934 * \param face_slice the cube face or 3D slice of interest
Brian Paul06397652010-04-16 09:10:54 -0600935 * \param usage one of LP_TEX_USAGE_READ/WRITE_ALL/READ_WRITE
Brian Paul05bf77a2010-04-19 11:17:11 -0600936 * \param layout either LP_TEX_LAYOUT_LINEAR or _TILED or _NONE
Brian Paul06397652010-04-16 09:10:54 -0600937 */
938void *
Brian Pauld293c432010-04-16 10:01:32 -0600939llvmpipe_get_texture_image(struct llvmpipe_resource *lpr,
Brian Paulee7cf9d2010-04-19 14:43:22 -0600940 unsigned face_slice, unsigned level,
Brian Paul06397652010-04-16 09:10:54 -0600941 enum lp_texture_usage usage,
942 enum lp_texture_layout layout)
943{
944 /*
945 * 'target' refers to the image which we're retrieving (either in
946 * tiled or linear layout).
947 * 'other' refers to the same image but in the other layout. (it may
948 * or may not exist.
949 */
950 struct llvmpipe_texture_image *target_img;
951 struct llvmpipe_texture_image *other_img;
952 void *target_data;
953 void *other_data;
Brian Pauld293c432010-04-16 10:01:32 -0600954 const unsigned width = u_minify(lpr->base.width0, level);
955 const unsigned height = u_minify(lpr->base.height0, level);
Brian Paul06397652010-04-16 09:10:54 -0600956 const unsigned width_t = align(width, TILE_SIZE) / TILE_SIZE;
957 const unsigned height_t = align(height, TILE_SIZE) / TILE_SIZE;
958 enum lp_texture_layout other_layout;
Brian Paul254dd0c2010-04-19 14:07:23 -0600959 boolean only_allocate;
Brian Paul06397652010-04-16 09:10:54 -0600960
961 assert(layout == LP_TEX_LAYOUT_NONE ||
962 layout == LP_TEX_LAYOUT_TILED ||
963 layout == LP_TEX_LAYOUT_LINEAR);
964
965 assert(usage == LP_TEX_USAGE_READ ||
966 usage == LP_TEX_USAGE_READ_WRITE ||
967 usage == LP_TEX_USAGE_WRITE_ALL);
968
Brian Paul254dd0c2010-04-19 14:07:23 -0600969 /* check for the special case of layout == LP_TEX_LAYOUT_NONE */
970 if (layout == LP_TEX_LAYOUT_NONE) {
971 only_allocate = TRUE;
972 layout = LP_TEX_LAYOUT_TILED;
973 }
974 else {
975 only_allocate = FALSE;
976 }
977
Brian Pauld293c432010-04-16 10:01:32 -0600978 if (lpr->dt) {
979 assert(lpr->linear[level].data);
Brian Paul06397652010-04-16 09:10:54 -0600980 }
981
982 /* which is target? which is other? */
983 if (layout == LP_TEX_LAYOUT_LINEAR) {
Brian Pauld293c432010-04-16 10:01:32 -0600984 target_img = &lpr->linear[level];
985 other_img = &lpr->tiled[level];
Brian Paul06397652010-04-16 09:10:54 -0600986 other_layout = LP_TEX_LAYOUT_TILED;
987 }
988 else {
Brian Pauld293c432010-04-16 10:01:32 -0600989 target_img = &lpr->tiled[level];
990 other_img = &lpr->linear[level];
Brian Paul06397652010-04-16 09:10:54 -0600991 other_layout = LP_TEX_LAYOUT_LINEAR;
992 }
993
994 target_data = target_img->data;
995 other_data = other_img->data;
996
997 if (!target_data) {
998 /* allocate memory for the target image now */
Brian Paul15d60292010-04-21 10:30:53 -0600999 alloc_image_data(lpr, level, layout);
Brian Paul06397652010-04-16 09:10:54 -06001000 target_data = target_img->data;
1001 }
1002
Brian Paulee7cf9d2010-04-19 14:43:22 -06001003 if (face_slice > 0) {
Brian Paul202ff7d2010-04-19 16:42:47 -06001004 unsigned target_offset, other_offset;
Brian Paulee7cf9d2010-04-19 14:43:22 -06001005
Brian Paul202ff7d2010-04-19 16:42:47 -06001006 target_offset = face_slice * tex_image_face_size(lpr, level, layout);
1007 other_offset = face_slice * tex_image_face_size(lpr, level, other_layout);
Brian Paul06397652010-04-16 09:10:54 -06001008 if (target_data) {
Brian Paul202ff7d2010-04-19 16:42:47 -06001009 target_data = (uint8_t *) target_data + target_offset;
Brian Paul06397652010-04-16 09:10:54 -06001010 }
1011 if (other_data) {
Brian Paul202ff7d2010-04-19 16:42:47 -06001012 other_data = (uint8_t *) other_data + other_offset;
Brian Paul06397652010-04-16 09:10:54 -06001013 }
1014 }
1015
Brian Paul254dd0c2010-04-19 14:07:23 -06001016 if (only_allocate) {
Brian Paul202ff7d2010-04-19 16:42:47 -06001017 /* Just allocating tiled memory. Don't initialize it from the
Brian Paul05bf77a2010-04-19 11:17:11 -06001018 * linear data if it exists.
1019 */
Brian Paul06397652010-04-16 09:10:54 -06001020 return target_data;
1021 }
1022
1023 if (other_data) {
1024 /* may need to convert other data to the requested layout */
1025 enum lp_texture_layout new_layout;
Brian Paulee7cf9d2010-04-19 14:43:22 -06001026 unsigned x, y;
Brian Paul06397652010-04-16 09:10:54 -06001027
1028 /* loop over all image tiles, doing layout conversion where needed */
1029 for (y = 0; y < height_t; y++) {
1030 for (x = 0; x < width_t; x++) {
Brian Paulee7cf9d2010-04-19 14:43:22 -06001031 enum lp_texture_layout cur_layout =
1032 llvmpipe_get_texture_tile_layout(lpr, face_slice, level, x, y);
Brian Paul06397652010-04-16 09:10:54 -06001033 boolean convert;
1034
1035 layout_logic(cur_layout, layout, usage, &new_layout, &convert);
1036
Brian Paul3d610122010-06-29 15:40:15 -06001037 if (convert && other_data && target_data) {
Brian Paul06397652010-04-16 09:10:54 -06001038 if (layout == LP_TEX_LAYOUT_TILED) {
1039 lp_linear_to_tiled(other_data, target_data,
1040 x * TILE_SIZE, y * TILE_SIZE,
1041 TILE_SIZE, TILE_SIZE,
Brian Pauld293c432010-04-16 10:01:32 -06001042 lpr->base.format,
José Fonsecaccdc6b52010-04-22 19:23:40 +01001043 lpr->row_stride[level],
1044 lpr->tiles_per_row[level]);
Brian Paul06397652010-04-16 09:10:54 -06001045 }
1046 else {
José Fonseca82715bb2010-05-27 16:17:06 +01001047 assert(layout == LP_TEX_LAYOUT_LINEAR);
Brian Paul06397652010-04-16 09:10:54 -06001048 lp_tiled_to_linear(other_data, target_data,
1049 x * TILE_SIZE, y * TILE_SIZE,
1050 TILE_SIZE, TILE_SIZE,
Brian Pauld293c432010-04-16 10:01:32 -06001051 lpr->base.format,
José Fonsecaccdc6b52010-04-22 19:23:40 +01001052 lpr->row_stride[level],
1053 lpr->tiles_per_row[level]);
Brian Paul06397652010-04-16 09:10:54 -06001054 }
1055 }
1056
José Fonseca82715bb2010-05-27 16:17:06 +01001057 if (new_layout != cur_layout)
1058 llvmpipe_set_texture_tile_layout(lpr, face_slice, level, x, y,
1059 new_layout);
Brian Paul06397652010-04-16 09:10:54 -06001060 }
1061 }
1062 }
1063 else {
1064 /* no other data */
Brian Paul2cad6242010-04-19 16:49:37 -06001065 llvmpipe_set_texture_image_layout(lpr, face_slice, level,
1066 width_t, height_t, layout);
Brian Paul06397652010-04-16 09:10:54 -06001067 }
1068
Brian Paul06397652010-04-16 09:10:54 -06001069 return target_data;
1070}
1071
1072
Brian Paul06397652010-04-16 09:10:54 -06001073/**
Brian Paul202ff7d2010-04-19 16:42:47 -06001074 * Return pointer to start of a texture image (1D, 2D, 3D, CUBE).
1075 * All cube faces and 3D slices will be converted to the requested
1076 * layout if needed.
1077 * This is typically used when we're about to sample from a texture.
1078 */
1079void *
1080llvmpipe_get_texture_image_all(struct llvmpipe_resource *lpr,
1081 unsigned level,
1082 enum lp_texture_usage usage,
1083 enum lp_texture_layout layout)
1084{
1085 const int slices = lpr->num_slices_faces[level];
1086 int slice;
Alan Hourihane17c560d2010-04-20 10:33:56 +01001087 void *map = NULL;
Brian Paul202ff7d2010-04-19 16:42:47 -06001088
1089 assert(slices > 0);
1090
1091 for (slice = slices - 1; slice >= 0; slice--) {
1092 map = llvmpipe_get_texture_image(lpr, slice, level, usage, layout);
1093 }
1094
1095 return map;
1096}
1097
1098
Brian Paul7688a472010-04-20 17:14:47 -06001099/**
Brian Paul7688a472010-04-20 17:14:47 -06001100 * Get pointer to a linear image (not the tile!) where the tile at (x,y)
1101 * is known to be in linear layout.
Brian Paul06397652010-04-16 09:10:54 -06001102 * Conversion from tiled to linear will be done if necessary.
1103 * \return pointer to start of image/face (not the tile)
1104 */
1105ubyte *
Brian Pauld293c432010-04-16 10:01:32 -06001106llvmpipe_get_texture_tile_linear(struct llvmpipe_resource *lpr,
Brian Paulee7cf9d2010-04-19 14:43:22 -06001107 unsigned face_slice, unsigned level,
Brian Paul06397652010-04-16 09:10:54 -06001108 enum lp_texture_usage usage,
1109 unsigned x, unsigned y)
1110{
Brian Pauld293c432010-04-16 10:01:32 -06001111 struct llvmpipe_texture_image *linear_img = &lpr->linear[level];
Brian Paul06397652010-04-16 09:10:54 -06001112 enum lp_texture_layout cur_layout, new_layout;
1113 const unsigned tx = x / TILE_SIZE, ty = y / TILE_SIZE;
1114 boolean convert;
Brian Paul7688a472010-04-20 17:14:47 -06001115 uint8_t *tiled_image, *linear_image;
Brian Paul06397652010-04-16 09:10:54 -06001116
Brian Pauld293c432010-04-16 10:01:32 -06001117 assert(resource_is_texture(&lpr->base));
Brian Paul06397652010-04-16 09:10:54 -06001118 assert(x % TILE_SIZE == 0);
1119 assert(y % TILE_SIZE == 0);
1120
1121 if (!linear_img->data) {
Brian Paul15d60292010-04-21 10:30:53 -06001122 /* allocate memory for the linear image now */
1123 alloc_image_data(lpr, level, LP_TEX_LAYOUT_LINEAR);
Brian Paul06397652010-04-16 09:10:54 -06001124 }
1125
Brian Paul7688a472010-04-20 17:14:47 -06001126 /* compute address of the slice/face of the image that contains the tile */
Brian Paul21421082010-04-20 17:28:33 -06001127 tiled_image = llvmpipe_get_texture_image_address(lpr, face_slice, level,
1128 LP_TEX_LAYOUT_TILED);
1129 linear_image = llvmpipe_get_texture_image_address(lpr, face_slice, level,
1130 LP_TEX_LAYOUT_LINEAR);
Brian Paul7688a472010-04-20 17:14:47 -06001131
Brian Paul21421082010-04-20 17:28:33 -06001132 /* get current tile layout and determine if data conversion is needed */
Brian Paulee7cf9d2010-04-19 14:43:22 -06001133 cur_layout = llvmpipe_get_texture_tile_layout(lpr, face_slice, level, tx, ty);
Brian Paul06397652010-04-16 09:10:54 -06001134
1135 layout_logic(cur_layout, LP_TEX_LAYOUT_LINEAR, usage,
1136 &new_layout, &convert);
1137
Brian Paulfb06b542010-06-30 11:56:56 -06001138 if (convert && tiled_image && linear_image) {
Brian Paul7688a472010-04-20 17:14:47 -06001139 lp_tiled_to_linear(tiled_image, linear_image,
Brian Pauld293c432010-04-16 10:01:32 -06001140 x, y, TILE_SIZE, TILE_SIZE, lpr->base.format,
José Fonsecaccdc6b52010-04-22 19:23:40 +01001141 lpr->row_stride[level],
1142 lpr->tiles_per_row[level]);
Brian Paul06397652010-04-16 09:10:54 -06001143 }
1144
1145 if (new_layout != cur_layout)
Brian Paulee7cf9d2010-04-19 14:43:22 -06001146 llvmpipe_set_texture_tile_layout(lpr, face_slice, level, tx, ty, new_layout);
Brian Paul06397652010-04-16 09:10:54 -06001147
Brian Paul7688a472010-04-20 17:14:47 -06001148 return linear_image;
Brian Paul06397652010-04-16 09:10:54 -06001149}
1150
1151
1152/**
1153 * Get pointer to tiled data for rendering.
1154 * \return pointer to the tiled data at the given tile position
1155 */
1156ubyte *
Brian Pauld293c432010-04-16 10:01:32 -06001157llvmpipe_get_texture_tile(struct llvmpipe_resource *lpr,
Brian Paulee7cf9d2010-04-19 14:43:22 -06001158 unsigned face_slice, unsigned level,
Brian Paul06397652010-04-16 09:10:54 -06001159 enum lp_texture_usage usage,
1160 unsigned x, unsigned y)
1161{
Brian Pauld293c432010-04-16 10:01:32 -06001162 struct llvmpipe_texture_image *tiled_img = &lpr->tiled[level];
Brian Paul06397652010-04-16 09:10:54 -06001163 enum lp_texture_layout cur_layout, new_layout;
1164 const unsigned tx = x / TILE_SIZE, ty = y / TILE_SIZE;
1165 boolean convert;
Brian Paul7688a472010-04-20 17:14:47 -06001166 uint8_t *tiled_image, *linear_image;
Brian Paul1cb80d32010-04-20 17:19:30 -06001167 unsigned tile_offset;
Brian Paul06397652010-04-16 09:10:54 -06001168
1169 assert(x % TILE_SIZE == 0);
1170 assert(y % TILE_SIZE == 0);
1171
1172 if (!tiled_img->data) {
1173 /* allocate memory for the tiled image now */
Brian Paul15d60292010-04-21 10:30:53 -06001174 alloc_image_data(lpr, level, LP_TEX_LAYOUT_TILED);
Brian Paul06397652010-04-16 09:10:54 -06001175 }
1176
Brian Paul7688a472010-04-20 17:14:47 -06001177 /* compute address of the slice/face of the image that contains the tile */
Brian Paul21421082010-04-20 17:28:33 -06001178 tiled_image = llvmpipe_get_texture_image_address(lpr, face_slice, level,
1179 LP_TEX_LAYOUT_TILED);
1180 linear_image = llvmpipe_get_texture_image_address(lpr, face_slice, level,
1181 LP_TEX_LAYOUT_LINEAR);
Brian Paul7688a472010-04-20 17:14:47 -06001182
1183 /* get current tile layout and see if we need to convert the data */
Brian Paulee7cf9d2010-04-19 14:43:22 -06001184 cur_layout = llvmpipe_get_texture_tile_layout(lpr, face_slice, level, tx, ty);
Brian Paul06397652010-04-16 09:10:54 -06001185
1186 layout_logic(cur_layout, LP_TEX_LAYOUT_TILED, usage, &new_layout, &convert);
Brian Paul3d610122010-06-29 15:40:15 -06001187 if (convert && linear_image && tiled_image) {
Brian Paul7688a472010-04-20 17:14:47 -06001188 lp_linear_to_tiled(linear_image, tiled_image,
Brian Pauld293c432010-04-16 10:01:32 -06001189 x, y, TILE_SIZE, TILE_SIZE, lpr->base.format,
José Fonsecaccdc6b52010-04-22 19:23:40 +01001190 lpr->row_stride[level],
1191 lpr->tiles_per_row[level]);
Brian Paul06397652010-04-16 09:10:54 -06001192 }
1193
Brian Paul3d610122010-06-29 15:40:15 -06001194 if (!tiled_image)
1195 return NULL;
1196
Brian Paul06397652010-04-16 09:10:54 -06001197 if (new_layout != cur_layout)
Brian Paulee7cf9d2010-04-19 14:43:22 -06001198 llvmpipe_set_texture_tile_layout(lpr, face_slice, level, tx, ty, new_layout);
Brian Paul06397652010-04-16 09:10:54 -06001199
1200 /* compute, return address of the 64x64 tile */
Brian Paul1cb80d32010-04-20 17:19:30 -06001201 tile_offset = (ty * lpr->tiles_per_row[level] + tx)
1202 * TILE_SIZE * TILE_SIZE * 4;
Brian Paul06397652010-04-16 09:10:54 -06001203
Brian Paul1cb80d32010-04-20 17:19:30 -06001204 return (ubyte *) tiled_image + tile_offset;
Brian Paul06397652010-04-16 09:10:54 -06001205}
1206
1207
Brian Paul1db3a552010-04-27 11:32:25 -06001208/**
1209 * Return size of resource in bytes
1210 */
1211unsigned
1212llvmpipe_resource_size(const struct pipe_resource *resource)
1213{
1214 const struct llvmpipe_resource *lpr = llvmpipe_resource_const(resource);
1215 unsigned lvl, size = 0;
1216
1217 for (lvl = 0; lvl <= lpr->base.last_level; lvl++) {
1218 if (lpr->linear[lvl].data)
1219 size += tex_image_size(lpr, lvl, LP_TEX_LAYOUT_LINEAR);
1220
1221 if (lpr->tiled[lvl].data)
1222 size += tex_image_size(lpr, lvl, LP_TEX_LAYOUT_TILED);
1223 }
1224
1225 return size;
1226}
1227
1228
Brian Paulfea189d2010-05-11 11:50:43 -06001229#ifdef DEBUG
1230void
1231llvmpipe_print_resources(void)
1232{
1233 struct llvmpipe_resource *lpr;
1234 unsigned n = 0, total = 0;
1235
1236 debug_printf("LLVMPIPE: current resources:\n");
1237 foreach(lpr, &resource_list) {
1238 unsigned size = llvmpipe_resource_size(&lpr->base);
1239 debug_printf("resource %u at %p, size %ux%ux%u: %u bytes, refcount %u\n",
1240 lpr->id, (void *) lpr,
1241 lpr->base.width0, lpr->base.height0, lpr->base.depth0,
1242 size, lpr->base.reference.count);
1243 total += size;
1244 n++;
1245 }
1246 debug_printf("LLVMPIPE: total size of %u resources: %u\n", n, total);
1247}
1248#endif
1249
1250
José Fonseca946f4322009-07-26 23:44:38 +01001251void
Keith Whitwell287c94e2010-04-10 16:05:54 +01001252llvmpipe_init_screen_resource_funcs(struct pipe_screen *screen)
José Fonseca946f4322009-07-26 23:44:38 +01001253{
Brian Paulfea189d2010-05-11 11:50:43 -06001254#ifdef DEBUG
1255 /* init linked list for tracking resources */
1256 {
1257 static boolean first_call = TRUE;
1258 if (first_call) {
1259 memset(&resource_list, 0, sizeof(resource_list));
1260 make_empty_list(&resource_list);
1261 first_call = FALSE;
1262 }
1263 }
1264#endif
1265
Keith Whitwell287c94e2010-04-10 16:05:54 +01001266 screen->resource_create = llvmpipe_resource_create;
1267 screen->resource_destroy = llvmpipe_resource_destroy;
1268 screen->resource_from_handle = llvmpipe_resource_from_handle;
1269 screen->resource_get_handle = llvmpipe_resource_get_handle;
1270 screen->user_buffer_create = llvmpipe_user_buffer_create;
José Fonseca946f4322009-07-26 23:44:38 +01001271
1272 screen->get_tex_surface = llvmpipe_get_tex_surface;
1273 screen->tex_surface_destroy = llvmpipe_tex_surface_destroy;
Keith Whitwellb43c1822010-03-11 15:23:16 +00001274}
José Fonseca946f4322009-07-26 23:44:38 +01001275
Keith Whitwellb43c1822010-03-11 15:23:16 +00001276
1277void
Keith Whitwell287c94e2010-04-10 16:05:54 +01001278llvmpipe_init_context_resource_funcs(struct pipe_context *pipe)
Keith Whitwellb43c1822010-03-11 15:23:16 +00001279{
Keith Whitwell287c94e2010-04-10 16:05:54 +01001280 pipe->get_transfer = llvmpipe_get_transfer;
1281 pipe->transfer_destroy = llvmpipe_transfer_destroy;
Keith Whitwellb43c1822010-03-11 15:23:16 +00001282 pipe->transfer_map = llvmpipe_transfer_map;
1283 pipe->transfer_unmap = llvmpipe_transfer_unmap;
Keith Whitwell287c94e2010-04-10 16:05:54 +01001284 pipe->is_resource_referenced = llvmpipe_is_resource_referenced;
1285
1286 pipe->transfer_flush_region = u_default_transfer_flush_region;
1287 pipe->transfer_inline_write = u_default_transfer_inline_write;
José Fonseca946f4322009-07-26 23:44:38 +01001288}