diff options
author | José Fonseca <[email protected]> | 2008-07-17 22:54:14 +0900 |
---|---|---|
committer | José Fonseca <[email protected]> | 2008-07-18 01:20:44 +0900 |
commit | 174c6912d68a954ff5eddf8b953b813e2eac3deb (patch) | |
tree | 29caa3d3a08ad0ab0d91fe2f1646070a4401d0d0 /src/gallium/auxiliary/util/p_tile.h | |
parent | 6a65a0d9efb82b11cafe5b411abddd57a4fb838a (diff) |
gallium: Expose the ability to get a tile outside a surface.
Diffstat (limited to 'src/gallium/auxiliary/util/p_tile.h')
-rw-r--r-- | src/gallium/auxiliary/util/p_tile.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/gallium/auxiliary/util/p_tile.h b/src/gallium/auxiliary/util/p_tile.h index adfec8bcee7..a8ac8053083 100644 --- a/src/gallium/auxiliary/util/p_tile.h +++ b/src/gallium/auxiliary/util/p_tile.h @@ -87,6 +87,13 @@ pipe_put_tile_z(struct pipe_surface *ps, uint x, uint y, uint w, uint h, const uint *z); +void +pipe_tile_raw_to_rgba(enum pipe_format format, + void *src, + uint w, uint h, + float *dst, unsigned dst_stride); + + #ifdef __cplusplus } #endif |