2007-10-19 10:08:24 -06:00
|
|
|
/**************************************************************************
|
|
|
|
|
*
|
|
|
|
|
* Copyright 2007 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.
|
|
|
|
|
*
|
|
|
|
|
**************************************************************************/
|
|
|
|
|
|
|
|
|
|
#ifndef SP_TILE_CACHE_H
|
|
|
|
|
#define SP_TILE_CACHE_H
|
|
|
|
|
|
2007-12-07 15:47:39 -07:00
|
|
|
#define TILE_CLEAR_OPTIMIZATION 1
|
2007-12-07 15:32:13 -07:00
|
|
|
|
2007-10-19 10:08:24 -06:00
|
|
|
|
2007-10-23 18:49:19 -06:00
|
|
|
#include "pipe/p_compiler.h"
|
2007-10-19 10:08:24 -06:00
|
|
|
|
|
|
|
|
|
|
|
|
|
struct softpipe_context;
|
|
|
|
|
struct softpipe_tile_cache;
|
|
|
|
|
|
|
|
|
|
|
2007-10-20 15:18:02 -06:00
|
|
|
/**
|
|
|
|
|
* Cache tile size (width and height). This needs to be a power of two.
|
|
|
|
|
*/
|
2007-10-19 10:08:24 -06:00
|
|
|
#define TILE_SIZE 64
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
struct softpipe_cached_tile
|
|
|
|
|
{
|
2007-10-21 18:06:35 -06:00
|
|
|
int x, y; /**< pos of tile in window coords */
|
|
|
|
|
int z, face, level; /**< Extra texture indexes */
|
2007-10-19 10:08:24 -06:00
|
|
|
union {
|
|
|
|
|
float color[TILE_SIZE][TILE_SIZE][4];
|
2007-12-07 20:13:10 -07:00
|
|
|
uint color32[TILE_SIZE][TILE_SIZE];
|
2007-10-20 15:18:02 -06:00
|
|
|
uint depth32[TILE_SIZE][TILE_SIZE];
|
|
|
|
|
ushort depth16[TILE_SIZE][TILE_SIZE];
|
|
|
|
|
ubyte stencil8[TILE_SIZE][TILE_SIZE];
|
2007-12-07 20:13:10 -07:00
|
|
|
ubyte any[1];
|
2007-10-19 10:08:24 -06:00
|
|
|
} data;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
extern struct softpipe_tile_cache *
|
2008-05-01 11:07:21 +01:00
|
|
|
sp_create_tile_cache( struct pipe_screen *screen );
|
2007-10-19 10:08:24 -06:00
|
|
|
|
|
|
|
|
extern void
|
|
|
|
|
sp_destroy_tile_cache(struct softpipe_tile_cache *tc);
|
|
|
|
|
|
|
|
|
|
extern void
|
2007-12-07 15:32:13 -07:00
|
|
|
sp_tile_cache_set_surface(struct softpipe_tile_cache *tc,
|
2007-10-27 09:26:59 -06:00
|
|
|
struct pipe_surface *sps);
|
2007-10-19 10:08:24 -06:00
|
|
|
|
2007-10-27 09:26:59 -06:00
|
|
|
extern struct pipe_surface *
|
2007-12-07 15:32:13 -07:00
|
|
|
sp_tile_cache_get_surface(struct softpipe_tile_cache *tc);
|
2007-10-23 18:49:19 -06:00
|
|
|
|
2008-01-10 17:44:04 +01:00
|
|
|
extern void
|
2009-02-05 19:41:18 +01:00
|
|
|
sp_tile_cache_map_transfers(struct softpipe_tile_cache *tc);
|
2008-01-10 17:44:04 +01:00
|
|
|
|
|
|
|
|
extern void
|
2009-02-05 19:41:18 +01:00
|
|
|
sp_tile_cache_unmap_transfers(struct softpipe_tile_cache *tc);
|
2008-01-10 17:44:04 +01:00
|
|
|
|
2007-10-21 18:06:35 -06:00
|
|
|
extern void
|
2008-02-20 11:15:59 -07:00
|
|
|
sp_tile_cache_set_texture(struct pipe_context *pipe,
|
|
|
|
|
struct softpipe_tile_cache *tc,
|
2007-11-30 20:48:03 +01:00
|
|
|
struct pipe_texture *texture);
|
2007-10-21 18:06:35 -06:00
|
|
|
|
2007-10-19 10:08:24 -06:00
|
|
|
extern void
|
2007-10-25 18:50:15 -06:00
|
|
|
sp_flush_tile_cache(struct softpipe_context *softpipe,
|
|
|
|
|
struct softpipe_tile_cache *tc);
|
2007-10-20 15:18:02 -06:00
|
|
|
|
|
|
|
|
extern void
|
2009-04-06 15:31:58 -06:00
|
|
|
sp_tile_cache_clear(struct softpipe_tile_cache *tc, const float *rgba,
|
|
|
|
|
uint clearValue);
|
2007-10-19 10:08:24 -06:00
|
|
|
|
|
|
|
|
extern struct softpipe_cached_tile *
|
2007-10-25 18:50:15 -06:00
|
|
|
sp_get_cached_tile(struct softpipe_context *softpipe,
|
|
|
|
|
struct softpipe_tile_cache *tc, int x, int y);
|
2007-10-19 10:08:24 -06:00
|
|
|
|
2007-10-22 09:37:26 -06:00
|
|
|
extern const struct softpipe_cached_tile *
|
2008-11-23 19:15:15 -07:00
|
|
|
sp_get_cached_tile_tex(struct softpipe_context *softpipe,
|
2007-10-22 09:37:26 -06:00
|
|
|
struct softpipe_tile_cache *tc, int x, int y, int z,
|
2007-10-21 18:06:35 -06:00
|
|
|
int face, int level);
|
|
|
|
|
|
2007-10-19 10:08:24 -06:00
|
|
|
|
|
|
|
|
#endif /* SP_TILE_CACHE_H */
|
|
|
|
|
|