diff options
author | Marek Olšák <[email protected]> | 2012-06-25 12:45:32 +0200 |
---|---|---|
committer | Marek Olšák <[email protected]> | 2012-06-25 23:53:49 +0200 |
commit | da98bb6fc105e1a2f688a1713ca9e50f0ac8fbed (patch) | |
tree | 178addf092aabce8d0349fa69634317766f03f78 /src/gallium/drivers/r600/r600_resource.h | |
parent | d1056541e239dfcee0ad6af2fd2d9fab37dbf025 (diff) |
r600g: split flushed depth texture creation and flushing
Diffstat (limited to 'src/gallium/drivers/r600/r600_resource.h')
-rw-r--r-- | src/gallium/drivers/r600/r600_resource.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/gallium/drivers/r600/r600_resource.h b/src/gallium/drivers/r600/r600_resource.h index d401e40c5ba..13fce002df5 100644 --- a/src/gallium/drivers/r600/r600_resource.h +++ b/src/gallium/drivers/r600/r600_resource.h @@ -87,7 +87,10 @@ static INLINE struct r600_resource *r600_resource(struct pipe_resource *r) return (struct r600_resource*)r; } -int r600_texture_depth_flush(struct pipe_context *ctx, struct pipe_resource *texture, boolean just_create); +void r600_init_flushed_depth_texture(struct pipe_context *ctx, + struct pipe_resource *texture); +void r600_texture_depth_flush(struct pipe_context *ctx, + struct pipe_resource *texture); /* r600_texture.c texture transfer functions. */ struct pipe_transfer* r600_texture_get_transfer(struct pipe_context *ctx, |