diff options
author | Christian König <[email protected]> | 2011-03-27 01:53:04 +0100 |
---|---|---|
committer | Christian König <[email protected]> | 2011-03-27 01:53:04 +0100 |
commit | 5a351e51291922aa295926215fdecccc0baeef51 (patch) | |
tree | f13b08e930663d929f49ac6580adc57b284647b2 /src/gallium/auxiliary/vl/vl_idct.h | |
parent | 8330bc29dda71c41c56b3c1989334823ae8779d4 (diff) |
[g3dvl] no need for individual samplers for idct stage 1 & 2
Diffstat (limited to 'src/gallium/auxiliary/vl/vl_idct.h')
-rw-r--r-- | src/gallium/auxiliary/vl/vl_idct.h | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/src/gallium/auxiliary/vl/vl_idct.h b/src/gallium/auxiliary/vl/vl_idct.h index 913034e7ab4..14f66f858eb 100644 --- a/src/gallium/auxiliary/vl/vl_idct.h +++ b/src/gallium/auxiliary/vl/vl_idct.h @@ -44,15 +44,7 @@ struct vl_idct void *rs_state; - union - { - void *all[4]; - void *stage[2][2]; - struct { - void *matrix, *source; - void *transpose, *intermediate; - } individual; - } samplers; + void *samplers[2]; void *matrix_vs, *transpose_vs; void *matrix_fs, *transpose_fs; |