blob: aed9ed6175dfe8388b2bd1f0e37c3d49258f907a [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
33#include "pipe/p_context.h"
34#include "pipe/p_defines.h"
José Fonseca28486882010-02-02 14:42:17 +000035#include "util/u_inlines.h"
Michal Krol6df42d82009-12-03 10:52:47 +010036
37#include "util/u_format.h"
José Fonseca946f4322009-07-26 23:44:38 +010038#include "util/u_math.h"
39#include "util/u_memory.h"
40
41#include "lp_context.h"
Brian Paul0706dae2010-01-20 17:44:12 -070042#include "lp_screen.h"
José Fonseca946f4322009-07-26 23:44:38 +010043#include "lp_texture.h"
Brian Paul0706dae2010-01-20 17:44:12 -070044#include "lp_tile_size.h"
José Fonseca946f4322009-07-26 23:44:38 +010045#include "lp_winsys.h"
46
47
Brian Paul4414a1a2010-01-14 14:19:16 -070048/**
49 * Conventional allocation path for non-display textures:
50 * Simple, maximally packed layout.
José Fonseca946f4322009-07-26 23:44:38 +010051 */
52static boolean
José Fonsecae173a9b2009-08-29 20:02:25 +010053llvmpipe_texture_layout(struct llvmpipe_screen *screen,
Brian Paul4414a1a2010-01-14 14:19:16 -070054 struct llvmpipe_texture *lpt)
José Fonseca946f4322009-07-26 23:44:38 +010055{
56 struct pipe_texture *pt = &lpt->base;
57 unsigned level;
Roland Scheideggerd509f842009-11-26 22:49:58 +010058 unsigned width = pt->width0;
59 unsigned height = pt->height0;
60 unsigned depth = pt->depth0;
José Fonseca946f4322009-07-26 23:44:38 +010061 unsigned buffer_size = 0;
62
63 for (level = 0; level <= pt->last_level; level++) {
José Fonseca838da1d2009-10-18 14:31:58 +010064 unsigned nblocksx, nblocksy;
65
José Fonseca838da1d2009-10-18 14:31:58 +010066 /* Allocate storage for whole quads. This is particularly important
Brian Pauld8d80a82010-01-19 11:58:43 -070067 * for depth surfaces, which are currently stored in a swizzled format.
68 */
Brian Paul0706dae2010-01-20 17:44:12 -070069 nblocksx = util_format_get_nblocksx(pt->format, align(width, TILE_SIZE));
70 nblocksy = util_format_get_nblocksy(pt->format, align(height, TILE_SIZE));
José Fonseca838da1d2009-10-18 14:31:58 +010071
Michal Krolb1ed72e2009-12-17 23:41:57 +010072 lpt->stride[level] = align(nblocksx * util_format_get_blocksize(pt->format), 16);
José Fonseca946f4322009-07-26 23:44:38 +010073
74 lpt->level_offset[level] = buffer_size;
75
José Fonseca838da1d2009-10-18 14:31:58 +010076 buffer_size += (nblocksy *
José Fonseca946f4322009-07-26 23:44:38 +010077 ((pt->target == PIPE_TEXTURE_CUBE) ? 6 : depth) *
78 lpt->stride[level]);
79
Brian Paul4414a1a2010-01-14 14:19:16 -070080 width = u_minify(width, 1);
Roland Scheideggerd509f842009-11-26 22:49:58 +010081 height = u_minify(height, 1);
82 depth = u_minify(depth, 1);
José Fonseca946f4322009-07-26 23:44:38 +010083 }
84
José Fonsecae173a9b2009-08-29 20:02:25 +010085 lpt->data = align_malloc(buffer_size, 16);
José Fonseca946f4322009-07-26 23:44:38 +010086
José Fonsecae173a9b2009-08-29 20:02:25 +010087 return lpt->data != NULL;
José Fonseca946f4322009-07-26 23:44:38 +010088}
89
Brian Paul4414a1a2010-01-14 14:19:16 -070090
91
José Fonseca946f4322009-07-26 23:44:38 +010092static boolean
José Fonsecae173a9b2009-08-29 20:02:25 +010093llvmpipe_displaytarget_layout(struct llvmpipe_screen *screen,
Brian Paul4414a1a2010-01-14 14:19:16 -070094 struct llvmpipe_texture *lpt)
José Fonseca946f4322009-07-26 23:44:38 +010095{
Keith Whitwell94ce4eb2010-03-04 16:09:33 +000096 struct sw_winsys *winsys = screen->winsys;
José Fonseca946f4322009-07-26 23:44:38 +010097
Brian Paul0706dae2010-01-20 17:44:12 -070098 /* Round up the surface size to a multiple of the tile size to
99 * avoid tile clipping.
100 */
101 unsigned width = align(lpt->base.width0, TILE_SIZE);
102 unsigned height = align(lpt->base.height0, TILE_SIZE);
103
José Fonsecae173a9b2009-08-29 20:02:25 +0100104 lpt->dt = winsys->displaytarget_create(winsys,
105 lpt->base.format,
Brian Paul0706dae2010-01-20 17:44:12 -0700106 width, height,
José Fonsecae173a9b2009-08-29 20:02:25 +0100107 16,
108 &lpt->stride[0] );
José Fonseca946f4322009-07-26 23:44:38 +0100109
José Fonsecae173a9b2009-08-29 20:02:25 +0100110 return lpt->dt != NULL;
José Fonseca946f4322009-07-26 23:44:38 +0100111}
112
113
José Fonseca946f4322009-07-26 23:44:38 +0100114static struct pipe_texture *
José Fonsecae173a9b2009-08-29 20:02:25 +0100115llvmpipe_texture_create(struct pipe_screen *_screen,
José Fonseca946f4322009-07-26 23:44:38 +0100116 const struct pipe_texture *templat)
117{
José Fonsecae173a9b2009-08-29 20:02:25 +0100118 struct llvmpipe_screen *screen = llvmpipe_screen(_screen);
José Fonseca946f4322009-07-26 23:44:38 +0100119 struct llvmpipe_texture *lpt = CALLOC_STRUCT(llvmpipe_texture);
120 if (!lpt)
121 return NULL;
122
123 lpt->base = *templat;
124 pipe_reference_init(&lpt->base.reference, 1);
José Fonsecae173a9b2009-08-29 20:02:25 +0100125 lpt->base.screen = &screen->base;
José Fonseca946f4322009-07-26 23:44:38 +0100126
José Fonsecaf04ce622009-08-29 09:17:51 +0100127 if (lpt->base.tex_usage & (PIPE_TEXTURE_USAGE_DISPLAY_TARGET |
128 PIPE_TEXTURE_USAGE_PRIMARY)) {
José Fonseca946f4322009-07-26 23:44:38 +0100129 if (!llvmpipe_displaytarget_layout(screen, lpt))
130 goto fail;
131 }
132 else {
133 if (!llvmpipe_texture_layout(screen, lpt))
134 goto fail;
135 }
136
137 return &lpt->base;
138
139 fail:
140 FREE(lpt);
141 return NULL;
142}
143
144
145static struct pipe_texture *
146llvmpipe_texture_blanket(struct pipe_screen * screen,
147 const struct pipe_texture *base,
148 const unsigned *stride,
149 struct pipe_buffer *buffer)
150{
José Fonsecae173a9b2009-08-29 20:02:25 +0100151 /* FIXME */
152#if 0
José Fonseca946f4322009-07-26 23:44:38 +0100153 struct llvmpipe_texture *lpt;
154 assert(screen);
155
156 /* Only supports one type */
157 if (base->target != PIPE_TEXTURE_2D ||
158 base->last_level != 0 ||
Roland Scheideggerb748a9f2009-11-27 17:40:24 +0100159 base->depth0 != 1) {
José Fonseca946f4322009-07-26 23:44:38 +0100160 return NULL;
161 }
162
163 lpt = CALLOC_STRUCT(llvmpipe_texture);
164 if (!lpt)
165 return NULL;
166
167 lpt->base = *base;
168 pipe_reference_init(&lpt->base.reference, 1);
169 lpt->base.screen = screen;
José Fonseca946f4322009-07-26 23:44:38 +0100170 lpt->stride[0] = stride[0];
171
172 pipe_buffer_reference(&lpt->buffer, buffer);
173
174 return &lpt->base;
José Fonsecae173a9b2009-08-29 20:02:25 +0100175#else
Brian Paul0bb5c302010-01-13 09:32:10 -0700176 debug_printf("llvmpipe_texture_blanket() not implemented!");
José Fonsecae173a9b2009-08-29 20:02:25 +0100177 return NULL;
178#endif
José Fonseca946f4322009-07-26 23:44:38 +0100179}
180
181
182static void
183llvmpipe_texture_destroy(struct pipe_texture *pt)
184{
José Fonsecae173a9b2009-08-29 20:02:25 +0100185 struct llvmpipe_screen *screen = llvmpipe_screen(pt->screen);
José Fonseca946f4322009-07-26 23:44:38 +0100186 struct llvmpipe_texture *lpt = llvmpipe_texture(pt);
187
Brian Paul4414a1a2010-01-14 14:19:16 -0700188 if (lpt->dt) {
189 /* display target */
Keith Whitwell94ce4eb2010-03-04 16:09:33 +0000190 struct sw_winsys *winsys = screen->winsys;
José Fonsecae173a9b2009-08-29 20:02:25 +0100191 winsys->displaytarget_destroy(winsys, lpt->dt);
192 }
Brian Paul4414a1a2010-01-14 14:19:16 -0700193 else {
194 /* regular texture */
José Fonsecae173a9b2009-08-29 20:02:25 +0100195 align_free(lpt->data);
Brian Paul4414a1a2010-01-14 14:19:16 -0700196 }
José Fonsecae173a9b2009-08-29 20:02:25 +0100197
José Fonseca946f4322009-07-26 23:44:38 +0100198 FREE(lpt);
199}
200
201
202static struct pipe_surface *
203llvmpipe_get_tex_surface(struct pipe_screen *screen,
204 struct pipe_texture *pt,
205 unsigned face, unsigned level, unsigned zslice,
206 unsigned usage)
207{
208 struct llvmpipe_texture *lpt = llvmpipe_texture(pt);
209 struct pipe_surface *ps;
210
211 assert(level <= pt->last_level);
212
213 ps = CALLOC_STRUCT(pipe_surface);
214 if (ps) {
215 pipe_reference_init(&ps->reference, 1);
216 pipe_texture_reference(&ps->texture, pt);
217 ps->format = pt->format;
Roland Scheideggerd509f842009-11-26 22:49:58 +0100218 ps->width = u_minify(pt->width0, level);
219 ps->height = u_minify(pt->height0, level);
José Fonseca946f4322009-07-26 23:44:38 +0100220 ps->offset = lpt->level_offset[level];
221 ps->usage = usage;
222
223 /* Because we are llvmpipe, anything that the state tracker
224 * thought was going to be done with the GPU will actually get
225 * done with the CPU. Let's adjust the flags to take that into
226 * account.
227 */
228 if (ps->usage & PIPE_BUFFER_USAGE_GPU_WRITE) {
229 /* GPU_WRITE means "render" and that can involve reads (blending) */
230 ps->usage |= PIPE_BUFFER_USAGE_CPU_WRITE | PIPE_BUFFER_USAGE_CPU_READ;
231 }
232
233 if (ps->usage & PIPE_BUFFER_USAGE_GPU_READ)
234 ps->usage |= PIPE_BUFFER_USAGE_CPU_READ;
235
236 if (ps->usage & (PIPE_BUFFER_USAGE_CPU_WRITE |
237 PIPE_BUFFER_USAGE_GPU_WRITE)) {
Keith Whitwell6b656852009-10-08 16:33:12 +0100238 /* Mark the surface as dirty. */
Keith Whitwell0f55a952009-07-17 10:44:22 +0100239 lpt->timestamp++;
240 llvmpipe_screen(screen)->timestamp++;
José Fonseca946f4322009-07-26 23:44:38 +0100241 }
242
243 ps->face = face;
244 ps->level = level;
245 ps->zslice = zslice;
246
Roland Scheideggerc78748a2009-12-02 02:08:26 +0100247 /* XXX shouldn't that rather be
248 tex_height = align(ps->height, 2);
249 to account for alignment done in llvmpipe_texture_layout ?
250 */
José Fonseca946f4322009-07-26 23:44:38 +0100251 if (pt->target == PIPE_TEXTURE_CUBE) {
Roland Scheideggerc78748a2009-12-02 02:08:26 +0100252 unsigned tex_height = ps->height;
Michal Krolb1ed72e2009-12-17 23:41:57 +0100253 ps->offset += face * util_format_get_nblocksy(pt->format, tex_height) * lpt->stride[level];
José Fonseca946f4322009-07-26 23:44:38 +0100254 }
255 else if (pt->target == PIPE_TEXTURE_3D) {
Roland Scheideggerc78748a2009-12-02 02:08:26 +0100256 unsigned tex_height = ps->height;
Michal Krolb1ed72e2009-12-17 23:41:57 +0100257 ps->offset += zslice * util_format_get_nblocksy(pt->format, tex_height) * lpt->stride[level];
José Fonseca946f4322009-07-26 23:44:38 +0100258 }
259 else {
260 assert(face == 0);
261 assert(zslice == 0);
262 }
263 }
264 return ps;
265}
266
267
268static void
269llvmpipe_tex_surface_destroy(struct pipe_surface *surf)
270{
271 /* Effectively do the texture_update work here - if texture images
272 * needed post-processing to put them into hardware layout, this is
273 * where it would happen. For llvmpipe, nothing to do.
274 */
275 assert(surf->texture);
276 pipe_texture_reference(&surf->texture, NULL);
277 FREE(surf);
278}
279
280
281static struct pipe_transfer *
282llvmpipe_get_tex_transfer(struct pipe_screen *screen,
283 struct pipe_texture *texture,
284 unsigned face, unsigned level, unsigned zslice,
285 enum pipe_transfer_usage usage,
286 unsigned x, unsigned y, unsigned w, unsigned h)
287{
288 struct llvmpipe_texture *lptex = llvmpipe_texture(texture);
289 struct llvmpipe_transfer *lpt;
290
291 assert(texture);
292 assert(level <= texture->last_level);
293
294 lpt = CALLOC_STRUCT(llvmpipe_transfer);
295 if (lpt) {
296 struct pipe_transfer *pt = &lpt->base;
297 pipe_texture_reference(&pt->texture, texture);
José Fonseca946f4322009-07-26 23:44:38 +0100298 pt->x = x;
299 pt->y = y;
Brian Paul0706dae2010-01-20 17:44:12 -0700300 pt->width = align(w, TILE_SIZE);
301 pt->height = align(h, TILE_SIZE);
José Fonseca946f4322009-07-26 23:44:38 +0100302 pt->stride = lptex->stride[level];
303 pt->usage = usage;
304 pt->face = face;
305 pt->level = level;
306 pt->zslice = zslice;
307
308 lpt->offset = lptex->level_offset[level];
309
Roland Scheideggerc78748a2009-12-02 02:08:26 +0100310 /* XXX shouldn't that rather be
311 tex_height = align(u_minify(texture->height0, level), 2)
312 to account for alignment done in llvmpipe_texture_layout ?
313 */
José Fonseca946f4322009-07-26 23:44:38 +0100314 if (texture->target == PIPE_TEXTURE_CUBE) {
Roland Scheideggerc78748a2009-12-02 02:08:26 +0100315 unsigned tex_height = u_minify(texture->height0, level);
Michal Krolb1ed72e2009-12-17 23:41:57 +0100316 lpt->offset += face * util_format_get_nblocksy(texture->format, tex_height) * pt->stride;
José Fonseca946f4322009-07-26 23:44:38 +0100317 }
318 else if (texture->target == PIPE_TEXTURE_3D) {
Roland Scheideggerc78748a2009-12-02 02:08:26 +0100319 unsigned tex_height = u_minify(texture->height0, level);
Michal Krolb1ed72e2009-12-17 23:41:57 +0100320 lpt->offset += zslice * util_format_get_nblocksy(texture->format, tex_height) * pt->stride;
José Fonseca946f4322009-07-26 23:44:38 +0100321 }
322 else {
323 assert(face == 0);
324 assert(zslice == 0);
325 }
326 return pt;
327 }
328 return NULL;
329}
330
331
332static void
333llvmpipe_tex_transfer_destroy(struct pipe_transfer *transfer)
334{
335 /* Effectively do the texture_update work here - if texture images
336 * needed post-processing to put them into hardware layout, this is
337 * where it would happen. For llvmpipe, nothing to do.
338 */
339 assert (transfer->texture);
340 pipe_texture_reference(&transfer->texture, NULL);
341 FREE(transfer);
342}
343
344
345static void *
José Fonsecae173a9b2009-08-29 20:02:25 +0100346llvmpipe_transfer_map( struct pipe_screen *_screen,
José Fonseca946f4322009-07-26 23:44:38 +0100347 struct pipe_transfer *transfer )
348{
José Fonsecae173a9b2009-08-29 20:02:25 +0100349 struct llvmpipe_screen *screen = llvmpipe_screen(_screen);
José Fonseca946f4322009-07-26 23:44:38 +0100350 ubyte *map, *xfer_map;
351 struct llvmpipe_texture *lpt;
Roland Scheideggerc78748a2009-12-02 02:08:26 +0100352 enum pipe_format format;
José Fonseca946f4322009-07-26 23:44:38 +0100353
354 assert(transfer->texture);
355 lpt = llvmpipe_texture(transfer->texture);
Roland Scheideggerc78748a2009-12-02 02:08:26 +0100356 format = lpt->base.format;
José Fonseca946f4322009-07-26 23:44:38 +0100357
Brian Paul4414a1a2010-01-14 14:19:16 -0700358 if (lpt->dt) {
359 /* display target */
Keith Whitwell94ce4eb2010-03-04 16:09:33 +0000360 struct sw_winsys *winsys = screen->winsys;
José Fonseca946f4322009-07-26 23:44:38 +0100361
Michel Dänzer47e41b02009-10-02 18:13:26 +0200362 map = winsys->displaytarget_map(winsys, lpt->dt,
363 pipe_transfer_buffer_flags(transfer));
José Fonsecae173a9b2009-08-29 20:02:25 +0100364 if (map == NULL)
365 return NULL;
366 }
Brian Paul4414a1a2010-01-14 14:19:16 -0700367 else {
368 /* regular texture */
José Fonsecae173a9b2009-08-29 20:02:25 +0100369 map = lpt->data;
Brian Paul4414a1a2010-01-14 14:19:16 -0700370 }
José Fonseca946f4322009-07-26 23:44:38 +0100371
372 /* May want to different things here depending on read/write nature
373 * of the map:
374 */
Brian Paul4414a1a2010-01-14 14:19:16 -0700375 if (transfer->texture && (transfer->usage & PIPE_TRANSFER_WRITE)) {
José Fonseca946f4322009-07-26 23:44:38 +0100376 /* Do something to notify sharing contexts of a texture change.
José Fonseca946f4322009-07-26 23:44:38 +0100377 */
José Fonsecae173a9b2009-08-29 20:02:25 +0100378 screen->timestamp++;
José Fonseca946f4322009-07-26 23:44:38 +0100379 }
380
381 xfer_map = map + llvmpipe_transfer(transfer)->offset +
Michal Krolb1ed72e2009-12-17 23:41:57 +0100382 transfer->y / util_format_get_blockheight(format) * transfer->stride +
383 transfer->x / util_format_get_blockwidth(format) * util_format_get_blocksize(format);
José Fonseca946f4322009-07-26 23:44:38 +0100384 /*printf("map = %p xfer map = %p\n", map, xfer_map);*/
385 return xfer_map;
386}
387
388
389static void
Brian Paul4414a1a2010-01-14 14:19:16 -0700390llvmpipe_transfer_unmap(struct pipe_screen *screen,
José Fonseca946f4322009-07-26 23:44:38 +0100391 struct pipe_transfer *transfer)
392{
Brian Paul4414a1a2010-01-14 14:19:16 -0700393 struct llvmpipe_screen *lp_screen = llvmpipe_screen(screen);
José Fonseca946f4322009-07-26 23:44:38 +0100394 struct llvmpipe_texture *lpt;
395
396 assert(transfer->texture);
397 lpt = llvmpipe_texture(transfer->texture);
398
Brian Paul4414a1a2010-01-14 14:19:16 -0700399 if (lpt->dt) {
400 /* display target */
Keith Whitwell94ce4eb2010-03-04 16:09:33 +0000401 struct sw_winsys *winsys = lp_screen->winsys;
José Fonsecae173a9b2009-08-29 20:02:25 +0100402 winsys->displaytarget_unmap(winsys, lpt->dt);
403 }
José Fonseca946f4322009-07-26 23:44:38 +0100404}
405
406
407void
José Fonseca946f4322009-07-26 23:44:38 +0100408llvmpipe_init_screen_texture_funcs(struct pipe_screen *screen)
409{
410 screen->texture_create = llvmpipe_texture_create;
411 screen->texture_blanket = llvmpipe_texture_blanket;
412 screen->texture_destroy = llvmpipe_texture_destroy;
413
414 screen->get_tex_surface = llvmpipe_get_tex_surface;
415 screen->tex_surface_destroy = llvmpipe_tex_surface_destroy;
416
417 screen->get_tex_transfer = llvmpipe_get_tex_transfer;
418 screen->tex_transfer_destroy = llvmpipe_tex_transfer_destroy;
419 screen->transfer_map = llvmpipe_transfer_map;
420 screen->transfer_unmap = llvmpipe_transfer_unmap;
421}