diff options
author | Keith Whitwell <[email protected]> | 2008-11-14 17:59:29 +0000 |
---|---|---|
committer | Keith Whitwell <[email protected]> | 2008-11-14 18:00:43 +0000 |
commit | 0557fa72c0e39a3cb4c241690b495ca142c06616 (patch) | |
tree | c3ab683ddeb60256c33855b5a33abf6fa9402242 /src/gallium/auxiliary/translate/translate.h | |
parent | d04caf2ce47bcf1d9da6e42b749320fce9273390 (diff) |
translate: pull in prefetch and other optimizations from draw_vs_aos.c
Diffstat (limited to 'src/gallium/auxiliary/translate/translate.h')
-rw-r--r-- | src/gallium/auxiliary/translate/translate.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gallium/auxiliary/translate/translate.h b/src/gallium/auxiliary/translate/translate.h index 650cd81fa60..34526eb0617 100644 --- a/src/gallium/auxiliary/translate/translate.h +++ b/src/gallium/auxiliary/translate/translate.h @@ -48,8 +48,8 @@ struct translate_element { enum pipe_format input_format; enum pipe_format output_format; - unsigned input_buffer; - unsigned input_offset; /* can't really reduce the size of these */ + unsigned input_buffer:8; + unsigned input_offset:24; unsigned output_offset; }; |