summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorKeith Whitwell <keith@tungstengraphics.com>2008-04-19 00:29:25 +0100
committerKeith Whitwell <keith@tungstengraphics.com>2008-04-19 00:29:25 +0100
commit251ebcc175d479dda8d0d5b64fc42f44e747197e (patch)
treec34563e123dcd209e59e3de097103c03c58ce342 /src
parent6094e79f4e3350d123c7532b1c73faa60834a62d (diff)
draw: remove more dead data structures
Diffstat (limited to 'src')
-rw-r--r--src/gallium/auxiliary/draw/draw_private.h25
1 files changed, 0 insertions, 25 deletions
diff --git a/src/gallium/auxiliary/draw/draw_private.h b/src/gallium/auxiliary/draw/draw_private.h
index 78265c64a6..476b1184d4 100644
--- a/src/gallium/auxiliary/draw/draw_private.h
+++ b/src/gallium/auxiliary/draw/draw_private.h
@@ -128,31 +128,6 @@ struct draw_stage
};
-#define PRIM_QUEUE_LENGTH 32
-#define VCACHE_SIZE 32
-#define VCACHE_OVERFLOW 4
-#define VS_QUEUE_LENGTH (VCACHE_SIZE + VCACHE_OVERFLOW + 1) /* can never fill up */
-
-
-
-/* Internal function for vertex fetch.
- */
-typedef void (*fetch_func)(const void *ptr, float *attrib);
-
-fetch_func draw_get_fetch_func( enum pipe_format format );
-
-
-
-typedef void (*full_fetch_func)( struct draw_context *draw,
- struct tgsi_exec_machine *machine,
- const unsigned *elts,
- unsigned count );
-
-typedef void (*pt_fetch_func)( struct draw_context *draw,
- float *out,
- unsigned start,
- unsigned count );
-
struct vbuf_render;