2008-08-15 10:31:23 +01:00
|
|
|
/**************************************************************************
|
|
|
|
|
*
|
|
|
|
|
* Copyright 2008 Tungsten Graphics, Inc., Cedar Park, Texas.
|
|
|
|
|
* All Rights Reserved.
|
|
|
|
|
*
|
|
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining a
|
|
|
|
|
* copy of this software and associated documentation files (the
|
|
|
|
|
* "Software"), to deal in the Software without restriction, including
|
|
|
|
|
* without limitation the rights to use, copy, modify, merge, publish,
|
|
|
|
|
* distribute, sub license, and/or sell copies of the Software, and to
|
|
|
|
|
* permit persons to whom the Software is furnished to do so, subject to
|
|
|
|
|
* the following conditions:
|
|
|
|
|
*
|
|
|
|
|
* The above copyright notice and this permission notice (including the
|
|
|
|
|
* next paragraph) shall be included in all copies or substantial portions
|
|
|
|
|
* of the Software.
|
|
|
|
|
*
|
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
|
|
|
|
|
* OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
|
|
|
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.
|
|
|
|
|
* IN NO EVENT SHALL TUNGSTEN GRAPHICS AND/OR ITS SUPPLIERS BE LIABLE FOR
|
|
|
|
|
* ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
|
|
|
* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
|
|
|
* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
|
|
|
*
|
|
|
|
|
**************************************************************************/
|
|
|
|
|
|
|
|
|
|
#include "util/u_hash_table.h"
|
2008-08-24 17:48:55 -06:00
|
|
|
#include "util/u_memory.h"
|
2008-08-15 10:31:23 +01:00
|
|
|
|
|
|
|
|
#include "tr_screen.h"
|
|
|
|
|
#include "tr_texture.h"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
struct pipe_texture *
|
2009-03-11 17:42:34 +01:00
|
|
|
trace_texture_create(struct trace_screen *tr_scr,
|
2008-08-15 10:31:23 +01:00
|
|
|
struct pipe_texture *texture)
|
|
|
|
|
{
|
|
|
|
|
struct trace_texture *tr_tex;
|
2009-03-11 17:42:34 +01:00
|
|
|
|
2008-08-15 10:31:23 +01:00
|
|
|
if(!texture)
|
|
|
|
|
goto error;
|
2009-03-11 17:42:34 +01:00
|
|
|
|
2008-08-15 10:31:23 +01:00
|
|
|
assert(texture->screen == tr_scr->screen);
|
2009-03-11 17:42:34 +01:00
|
|
|
|
2008-08-15 10:31:23 +01:00
|
|
|
tr_tex = CALLOC_STRUCT(trace_texture);
|
|
|
|
|
if(!tr_tex)
|
|
|
|
|
goto error;
|
2009-03-11 17:42:34 +01:00
|
|
|
|
2008-08-15 10:31:23 +01:00
|
|
|
memcpy(&tr_tex->base, texture, sizeof(struct pipe_texture));
|
|
|
|
|
tr_tex->base.screen = &tr_scr->base;
|
|
|
|
|
tr_tex->texture = texture;
|
2009-03-11 17:42:34 +01:00
|
|
|
|
2008-08-15 10:31:23 +01:00
|
|
|
return &tr_tex->base;
|
2009-03-11 17:42:34 +01:00
|
|
|
|
2008-08-15 10:31:23 +01:00
|
|
|
error:
|
|
|
|
|
pipe_texture_reference(&texture, NULL);
|
|
|
|
|
return NULL;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void
|
2009-03-11 17:42:34 +01:00
|
|
|
trace_texture_destroy(struct trace_screen *tr_scr,
|
2008-08-15 10:31:23 +01:00
|
|
|
struct pipe_texture *texture)
|
|
|
|
|
{
|
2009-03-11 17:42:34 +01:00
|
|
|
struct trace_texture *tr_tex = trace_texture(tr_scr, texture);
|
2008-08-15 10:31:23 +01:00
|
|
|
pipe_texture_reference(&tr_tex->texture, NULL);
|
|
|
|
|
FREE(tr_tex);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
struct pipe_surface *
|
2009-03-11 17:42:34 +01:00
|
|
|
trace_surface_create(struct trace_texture *tr_tex,
|
2008-08-15 10:31:23 +01:00
|
|
|
struct pipe_surface *surface)
|
|
|
|
|
{
|
|
|
|
|
struct trace_surface *tr_surf;
|
2009-03-11 17:42:34 +01:00
|
|
|
|
2008-08-15 10:31:23 +01:00
|
|
|
if(!surface)
|
|
|
|
|
goto error;
|
2009-03-11 17:42:34 +01:00
|
|
|
|
2008-08-15 10:31:23 +01:00
|
|
|
assert(surface->texture == tr_tex->texture);
|
2009-03-11 17:42:34 +01:00
|
|
|
|
2008-08-15 10:31:23 +01:00
|
|
|
tr_surf = CALLOC_STRUCT(trace_surface);
|
|
|
|
|
if(!tr_surf)
|
|
|
|
|
goto error;
|
2009-03-11 17:42:34 +01:00
|
|
|
|
2008-08-15 10:31:23 +01:00
|
|
|
memcpy(&tr_surf->base, surface, sizeof(struct pipe_surface));
|
2009-03-11 17:42:34 +01:00
|
|
|
|
2008-08-15 10:31:23 +01:00
|
|
|
tr_surf->base.texture = NULL;
|
|
|
|
|
pipe_texture_reference(&tr_surf->base.texture, &tr_tex->base);
|
|
|
|
|
tr_surf->surface = surface;
|
|
|
|
|
|
|
|
|
|
return &tr_surf->base;
|
2009-03-11 17:42:34 +01:00
|
|
|
|
2008-08-15 10:31:23 +01:00
|
|
|
error:
|
|
|
|
|
pipe_surface_reference(&surface, NULL);
|
|
|
|
|
return NULL;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void
|
2009-03-11 17:42:34 +01:00
|
|
|
trace_surface_destroy(struct trace_texture *tr_tex,
|
2008-08-15 10:31:23 +01:00
|
|
|
struct pipe_surface *surface)
|
|
|
|
|
{
|
|
|
|
|
struct trace_surface *tr_surf = trace_surface(tr_tex, surface);
|
|
|
|
|
pipe_texture_reference(&tr_surf->base.texture, NULL);
|
|
|
|
|
pipe_surface_reference(&tr_surf->surface, NULL);
|
|
|
|
|
FREE(tr_surf);
|
|
|
|
|
}
|
|
|
|
|
|
2009-02-18 18:13:44 +01:00
|
|
|
|
|
|
|
|
struct pipe_transfer *
|
2009-03-11 17:42:34 +01:00
|
|
|
trace_transfer_create(struct trace_texture *tr_tex,
|
2009-02-18 18:13:44 +01:00
|
|
|
struct pipe_transfer *transfer)
|
|
|
|
|
{
|
|
|
|
|
struct trace_transfer *tr_trans;
|
2009-03-11 17:42:34 +01:00
|
|
|
|
2009-02-18 18:13:44 +01:00
|
|
|
if(!transfer)
|
|
|
|
|
goto error;
|
2009-03-11 17:42:34 +01:00
|
|
|
|
2009-02-18 18:13:44 +01:00
|
|
|
assert(transfer->texture == tr_tex->texture);
|
2009-03-11 17:42:34 +01:00
|
|
|
|
2009-02-18 18:13:44 +01:00
|
|
|
tr_trans = CALLOC_STRUCT(trace_transfer);
|
|
|
|
|
if(!tr_trans)
|
|
|
|
|
goto error;
|
2009-03-11 17:42:34 +01:00
|
|
|
|
2009-02-18 18:13:44 +01:00
|
|
|
memcpy(&tr_trans->base, transfer, sizeof(struct pipe_transfer));
|
2009-03-11 17:37:38 +01:00
|
|
|
|
2009-02-18 18:13:44 +01:00
|
|
|
tr_trans->base.texture = NULL;
|
|
|
|
|
pipe_texture_reference(&tr_trans->base.texture, &tr_tex->base);
|
|
|
|
|
tr_trans->transfer = transfer;
|
2009-03-11 17:37:38 +01:00
|
|
|
assert(tr_trans->base.texture == &tr_tex->base);
|
2009-02-18 18:13:44 +01:00
|
|
|
|
|
|
|
|
return &tr_trans->base;
|
2009-03-11 17:42:34 +01:00
|
|
|
|
2009-02-18 18:13:44 +01:00
|
|
|
error:
|
2009-03-04 11:58:48 +01:00
|
|
|
transfer->texture->screen->tex_transfer_destroy(transfer);
|
2009-02-18 18:13:44 +01:00
|
|
|
return NULL;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void
|
2009-03-11 17:42:34 +01:00
|
|
|
trace_transfer_destroy(struct trace_texture *tr_tex,
|
2009-02-18 18:13:44 +01:00
|
|
|
struct pipe_transfer *transfer)
|
|
|
|
|
{
|
|
|
|
|
struct trace_transfer *tr_trans = trace_transfer(tr_tex, transfer);
|
2009-03-11 17:37:38 +01:00
|
|
|
struct pipe_screen *screen = tr_trans->transfer->texture->screen;
|
2009-02-18 18:13:44 +01:00
|
|
|
pipe_texture_reference(&tr_trans->base.texture, NULL);
|
2009-03-11 17:37:38 +01:00
|
|
|
screen->tex_transfer_destroy(tr_trans->transfer);
|
2009-02-18 18:13:44 +01:00
|
|
|
FREE(tr_trans);
|
|
|
|
|
}
|
|
|
|
|
|