draw: remove more dead data structures

This commit is contained in:
Keith Whitwell 2008-04-19 00:29:25 +01:00
parent 6094e79f4e
commit 251ebcc175

View file

@ -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; struct vbuf_render;