b01ce1d42c557cc8898ae3c017cd54072a0237d4
[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 struct nv50_context *nv50 = nv50_context(pipe);
13
14 nv50_state_validate(nv50);
15
16 NOUVEAU_ERR("unimplemented\n");
17 return TRUE;
18 }
19
20 boolean
21 nv50_draw_elements(struct pipe_context *pipe,
22 struct pipe_buffer *indexBuffer, unsigned indexSize,
23 unsigned mode, unsigned start, unsigned count)
24 {
25 struct nv50_context *nv50 = nv50_context(pipe);
26
27 nv50_state_validate(nv50);
28
29 NOUVEAU_ERR("unimplemented\n");
30 return TRUE;
31 }
32