diff options
Diffstat (limited to 'src/gallium/include/pipe/p_state.h')
-rw-r--r-- | src/gallium/include/pipe/p_state.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/gallium/include/pipe/p_state.h b/src/gallium/include/pipe/p_state.h index dbe726dbf9a..c828c806aef 100644 --- a/src/gallium/include/pipe/p_state.h +++ b/src/gallium/include/pipe/p_state.h @@ -572,7 +572,9 @@ struct pipe_draw_info struct pipe_resolve_info { struct { - struct pipe_surface *surface; + 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 */ @@ -585,7 +587,7 @@ struct pipe_resolve_info int x0; int y0; int x1; /**< may be < x0 only if PIPE_CAP_SCALED_RESOLVE is supported */ - int y1; /**< may be < y0 even if PIPE_CAP_SCALED_RESOLVE not supported */ + int y1; /**< may be < y1 even if PIPE_CAP_SCALED_RESOLVE not supported */ } src; unsigned mask; /**< PIPE_MASK_RGBA, Z, S or ZS */ |