summaryrefslogtreecommitdiffstats
path: root/src/gallium/include/pipe/p_state.h
diff options
context:
space:
mode:
authorMarek Olšák <maraeo@gmail.com>2012-09-13 19:38:25 +0200
committerMarek Olšák <maraeo@gmail.com>2012-09-30 18:57:57 +0200
commitde80660c2bd43db112b6c82d970660ed9806cd33 (patch)
tree115c132994d540743e6deed23dec941f8eb619b4 /src/gallium/include/pipe/p_state.h
parentd37e6b15ad545106d48af5c8abb75d0e28895d43 (diff)
downloadexternal_mesa3d-de80660c2bd43db112b6c82d970660ed9806cd33.zip
external_mesa3d-de80660c2bd43db112b6c82d970660ed9806cd33.tar.gz
external_mesa3d-de80660c2bd43db112b6c82d970660ed9806cd33.tar.bz2
gallium: remove resource_resolve
The functionality is provided by the new blit function. Tested-by: Michel Dänzer <michel.daenzer@amd.com> Reviewed-by: Brian Paul <brianp@vmware.com>
Diffstat (limited to 'src/gallium/include/pipe/p_state.h')
-rw-r--r--src/gallium/include/pipe/p_state.h26
1 files changed, 0 insertions, 26 deletions
diff --git a/src/gallium/include/pipe/p_state.h b/src/gallium/include/pipe/p_state.h
index 1f748cd..e88242d 100644
--- a/src/gallium/include/pipe/p_state.h
+++ b/src/gallium/include/pipe/p_state.h
@@ -585,32 +585,6 @@ struct pipe_blit_info
struct pipe_scissor_state scissor;
};
-/**
- * Information to describe a resource_resolve call.
- */
-struct pipe_resolve_info
-{
- struct {
- struct pipe_resource *res;
- unsigned level;
- unsigned layer;
- int x0; /**< always left */
- int y0; /**< always top */
- int x1; /**< determines scale if PIPE_CAP_SCALED_RESOLVE is supported */
- int y1; /**< determines scale if PIPE_CAP_SCALED_RESOLVE is supported */
- } dst;
-
- struct {
- struct pipe_resource *res;
- unsigned layer;
- int x0;
- int y0;
- int x1; /**< may be < x0 only if PIPE_CAP_SCALED_RESOLVE is supported */
- int y1; /**< may be < y1 even if PIPE_CAP_SCALED_RESOLVE not supported */
- } src;
-
- unsigned mask; /**< PIPE_MASK_RGBA, Z, S or ZS */
-};
/**
* Structure used as a header for serialized LLVM programs.