diff options
author | Marek Olšák <[email protected]> | 2010-07-12 02:06:19 +0200 |
---|---|---|
committer | Marek Olšák <[email protected]> | 2010-07-12 02:06:39 +0200 |
commit | 9b03da9bddc9a39adde746fe377bbc66d7eac418 (patch) | |
tree | b29cbfec4de0c13504800581cc9def6e09d18efb /src/gallium/auxiliary/util/u_blitter.h | |
parent | 9cdd481f8ef65f3a66c422c548add3682d108db0 (diff) |
u_blitter: rename blitter->base, add a way to get a pipe context from blitter
Diffstat (limited to 'src/gallium/auxiliary/util/u_blitter.h')
-rw-r--r-- | src/gallium/auxiliary/util/u_blitter.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/gallium/auxiliary/util/u_blitter.h b/src/gallium/auxiliary/util/u_blitter.h index f421ad5b938..ffcf5c79843 100644 --- a/src/gallium/auxiliary/util/u_blitter.h +++ b/src/gallium/auxiliary/util/u_blitter.h @@ -42,6 +42,8 @@ struct pipe_context; struct blitter_context { /* Private members, really. */ + struct pipe_context *pipe; /**< pipe context */ + void *saved_blend_state; /**< blend state */ void *saved_dsa_state; /**< depth stencil alpha state */ void *saved_velem_state; /**< vertex elements state */ @@ -73,6 +75,15 @@ struct blitter_context *util_blitter_create(struct pipe_context *pipe); */ void util_blitter_destroy(struct blitter_context *blitter); +/** + * Return the pipe context associated with a blitter context. + */ +static INLINE +struct pipe_context *util_blitter_get_pipe(struct blitter_context *blitter) +{ + return blitter->pipe; +} + /* * These CSOs must be saved before any of the following functions is called: * - blend state |