blob: faae08f60141e0c62ed54270c9dad7942a9590cd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
#include "pipe/p_context.h"
#include "pipe/p_state.h"
#include "pipe/p_util.h"
#include "nv50_context.h"
#include "nv50_dma.h"
#include "nv50_state.h"
boolean
nv50_draw_arrays(struct pipe_context *pipe, unsigned mode, unsigned start,
unsigned count)
{
NOUVEAU_ERR("unimplemented\n");
return TRUE;
}
boolean
nv50_draw_elements(struct pipe_context *pipe,
struct pipe_buffer_handle *indexBuffer, unsigned indexSize,
unsigned mode, unsigned start, unsigned count)
{
NOUVEAU_ERR("unimplemented\n");
return TRUE;
}
|