diff options
author | Ben Skeggs <[email protected]> | 2009-01-05 14:56:41 +1100 |
---|---|---|
committer | Ben Skeggs <[email protected]> | 2009-01-06 08:05:57 +1100 |
commit | 17cbe451d28f60d8bf4e15a83528e891219cc0ee (patch) | |
tree | 0f96ebe18c0b250ed967bc4f07f38ac673aff77c /src/gallium/drivers/nv50/nv50_context.h | |
parent | 108942f22a51bc1435c34b04b2c9747825ccefb7 (diff) |
nv50: working towards 3D textures
Diffstat (limited to 'src/gallium/drivers/nv50/nv50_context.h')
-rw-r--r-- | src/gallium/drivers/nv50/nv50_context.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/gallium/drivers/nv50/nv50_context.h b/src/gallium/drivers/nv50/nv50_context.h index 5d377f2d067..0958bba334a 100644 --- a/src/gallium/drivers/nv50/nv50_context.h +++ b/src/gallium/drivers/nv50/nv50_context.h @@ -70,6 +70,10 @@ struct nv50_rasterizer_stateobj { struct nv50_miptree { struct pipe_texture base; struct pipe_buffer *buffer; + + int *image_offset; + int image_nr; + int total_size; }; static INLINE struct nv50_miptree * |