summaryrefslogtreecommitdiff
path: root/src/gallium/state_trackers/vega/image.h
diff options
context:
space:
mode:
authorRoland Scheidegger <sroland@vmware.com>2010-03-19 16:29:22 +0100
committerRoland Scheidegger <sroland@vmware.com>2010-03-19 16:29:22 +0100
commite5f0384ad06359aa1b9dc1b4bc6f475f7a119af2 (patch)
treefc59b9a33d8c689c8f5f5e8941fa92b38b740ad8 /src/gallium/state_trackers/vega/image.h
parent8221a0e7f7eeff2c8201afcf4f5b46fc36dc8606 (diff)
st/vega: fix up vega state tracker to use cso changes
use cso fragment sampler views instead of sampler textures. since we don't really change views, try to store sampler views instead of the textures to avoid having to recreate views most of the time.
Diffstat (limited to 'src/gallium/state_trackers/vega/image.h')
-rw-r--r--src/gallium/state_trackers/vega/image.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gallium/state_trackers/vega/image.h b/src/gallium/state_trackers/vega/image.h
index 78e17cffa6..805b35fab9 100644
--- a/src/gallium/state_trackers/vega/image.h
+++ b/src/gallium/state_trackers/vega/image.h
@@ -43,7 +43,7 @@ struct vg_image {
struct vg_image *parent;
- struct pipe_texture *texture;
+ struct pipe_sampler_view *sampler_view;
struct pipe_sampler_state sampler;
struct array *children_array;
@@ -89,7 +89,7 @@ void image_get_pixels(struct vg_image *dst, VGint dx, VGint dy,
VGint width, VGint height);
VGint image_bind_samplers(struct vg_image *dst, struct pipe_sampler_state **samplers,
- struct pipe_texture **textures);
+ struct pipe_sampler_view **sampler_views);
VGboolean vg_image_overlaps(struct vg_image *dst,
struct vg_image *src);