blob: 4c55b029786c715b5b684cccbb94046f326a7619 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#ifndef DRAW_PRIM_H
#define DRAW_PRIM_H
void draw_invalidate_vcache( struct draw_context *draw );
void draw_set_prim( struct draw_context *draw, unsigned prim );
void draw_prim( struct draw_context *draw, unsigned start, unsigned count );
void draw_flush( struct draw_context *draw );
#endif /* DRAW_PRIM_H */
|