summaryrefslogtreecommitdiffstats
path: root/src/gallium/auxiliary/vl/vl_idct.h
diff options
context:
space:
mode:
authorChristian König <[email protected]>2010-11-26 21:50:14 +0100
committerChristian König <[email protected]>2010-11-26 21:50:14 +0100
commit13e28cff7655adec0f89aed9c5ee74f8481133ab (patch)
tree16d646a57ca5b6dfd058f5aaeed6db8e0f31a482 /src/gallium/auxiliary/vl/vl_idct.h
parenta981d62c9781cd204aaec643b0f6115496f01789 (diff)
[g3dvl] use four component fetch also for idct source
Diffstat (limited to 'src/gallium/auxiliary/vl/vl_idct.h')
-rw-r--r--src/gallium/auxiliary/vl/vl_idct.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/gallium/auxiliary/vl/vl_idct.h b/src/gallium/auxiliary/vl/vl_idct.h
index da9bfef6fe5..084ac36d3e1 100644
--- a/src/gallium/auxiliary/vl/vl_idct.h
+++ b/src/gallium/auxiliary/vl/vl_idct.h
@@ -48,8 +48,8 @@ struct vl_idct
void *all[4];
void *stage[2][2];
struct {
- void *transpose, *source;
- void *matrix, *intermediate;
+ void *matrix, *source;
+ void *transpose, *intermediate;
} individual;
} samplers;
@@ -58,8 +58,8 @@ struct vl_idct
struct pipe_sampler_view *all[4];
struct pipe_sampler_view *stage[2][2];
struct {
- struct pipe_sampler_view *transpose, *source;
- struct pipe_sampler_view *matrix, *intermediate;
+ struct pipe_sampler_view *matrix, *source;
+ struct pipe_sampler_view *transpose, *intermediate;
} individual;
} sampler_views;
@@ -71,8 +71,8 @@ struct vl_idct
struct pipe_resource *all[4];
struct pipe_resource *stage[2][2];
struct {
- struct pipe_resource *transpose, *source;
- struct pipe_resource *matrix, *intermediate;
+ struct pipe_resource *matrix, *source;
+ struct pipe_resource *transpose, *intermediate;
} individual;
} textures;