nouveau: match gallium code reorginisation.
[mesa.git] / src / gallium / drivers / 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_state.h"
7
8 boolean
9 nv50_draw_arrays(struct pipe_context *pipe, unsigned mode, unsigned start,
10 unsigned count)
11 {
12 NOUVEAU_ERR("unimplemented\n");
13 return TRUE;
14 }
15
16 boolean
17 nv50_draw_elements(struct pipe_context *pipe,
18 struct pipe_buffer *indexBuffer, unsigned indexSize,
19 unsigned mode, unsigned start, unsigned count)
20 {
21 NOUVEAU_ERR("unimplemented\n");
22 return TRUE;
23 }
24