Merge branch 'upstream-gallium-0.1' into darktama-gallium-0.1
[mesa.git] / src / mesa / pipe / nv50 / nv50_vbo.c
1 #include "pipe/p_context.h"
2 #include "pipe/p_state.h"
3 #include "pipe/p_util.h"
4
5 #include "nv50_context.h"
6 #include "nv50_dma.h"
7 #include "nv50_state.h"
8
9 boolean
10 nv50_draw_arrays(struct pipe_context *pipe, unsigned mode, unsigned start,
11 unsigned count)
12 {
13 NOUVEAU_ERR("unimplemented\n");
14 return TRUE;
15 }
16
17 boolean
18 nv50_draw_elements(struct pipe_context *pipe,
19 struct pipe_buffer_handle *indexBuffer, unsigned indexSize,
20 unsigned mode, unsigned start, unsigned count)
21 {
22 NOUVEAU_ERR("unimplemented\n");
23 return TRUE;
24 }
25