diff options
author | Keith Whitwell <keithw@vmware.com> | 2010-03-21 22:39:34 +0000 |
---|---|---|
committer | Keith Whitwell <keithw@vmware.com> | 2010-03-21 22:39:34 +0000 |
commit | 0a2af3eeae7de1d1cb433f0a2c35136b115f9920 (patch) | |
tree | f319992fa991906ea32b847ae11b1df884056215 /src/gallium | |
parent | 437ce98daae46be5d532fbb04c7cbf4a503c1623 (diff) |
st/vega: clean up reference to pipe_texture
Diffstat (limited to 'src/gallium')
-rw-r--r-- | src/gallium/state_trackers/vega/mask.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/state_trackers/vega/mask.c b/src/gallium/state_trackers/vega/mask.c index 7c28f3ce3a..5f88c63097 100644 --- a/src/gallium/state_trackers/vega/mask.c +++ b/src/gallium/state_trackers/vega/mask.c @@ -487,7 +487,7 @@ struct vg_mask_layer * mask_layer_create(VGint width, VGint height) struct pipe_screen *screen = ctx->pipe->screen; struct pipe_sampler_view view_templ; struct pipe_sampler_view *view = NULL; - struct pipe_texture *texture; + struct pipe_resource *texture; memset(&pt, 0, sizeof(pt)); pt.target = PIPE_TEXTURE_2D; |