summaryrefslogtreecommitdiff
path: root/src/mesa/pipe/p_context.h
diff options
context:
space:
mode:
authorBrian <brian.paul@tungstengraphics.com>2007-08-20 16:31:12 -0600
committerBrian <brian.paul@tungstengraphics.com>2007-08-20 16:31:12 -0600
commit8175eaa3b49f3b62f7ab251c4e0fbd14dd9f7e2b (patch)
tree9f49d51df082f2e2033bf6c624e3d2c9b35af2f8 /src/mesa/pipe/p_context.h
parent51da8ee85eccf0df3721cbd863cd174382d1ddfd (diff)
Checkpoint: remove more of the old draw_vb() code.
Diffstat (limited to 'src/mesa/pipe/p_context.h')
-rw-r--r--src/mesa/pipe/p_context.h17
1 files changed, 0 insertions, 17 deletions
diff --git a/src/mesa/pipe/p_context.h b/src/mesa/pipe/p_context.h
index a3664a3b80..c4496cda50 100644
--- a/src/mesa/pipe/p_context.h
+++ b/src/mesa/pipe/p_context.h
@@ -28,16 +28,10 @@
#ifndef PIPE_CONTEXT_H
#define PIPE_CONTEXT_H
-//#include "main/mtypes.h"
#include "p_state.h"
#include "p_compiler.h"
-/* Drawing currently kludged up via the existing tnl/ module.
- */
-struct vertex_buffer;
-
-
/**
* Software pipeline rendering context. Basically a collection of
* state setting functions, plus VBO drawing entrypoint.
@@ -68,17 +62,6 @@ struct pipe_context {
/*
* Drawing
*/
- /* XXX this is temporary */
- void (*draw_vb)( struct pipe_context *pipe,
- struct vertex_buffer *VB );
-
- /* XXX this is temporary */
- void (*draw_vertices)( struct pipe_context *pipe,
- unsigned mode,
- unsigned numVertex, const float *verts,
- unsigned numAttribs, const unsigned attribs[]);
-
- /** this is basically what we want */
void (*draw_arrays)( struct pipe_context *pipe,
unsigned mode, unsigned start, unsigned count);