par_rast

view src/par3d.h @ 0:11f024648101

initial
author John Tsiombikas <nuclear@member.fsf.org>
date Tue, 22 Mar 2016 00:55:07 +0200
parents
children
line source
1 #ifndef PAR3D_H_
2 #define PAR3D_H_
4 int p3d_init(void);
5 void p3d_setfb(int width, int height, uint32_t *pixels);
7 int p3d_vertex_buffer(int vcount, int nfloats);
8 void *p3d_map_buffer(int vb);
9 void p3d_unmap_buffer(int vb);
11 #endif /* PAR3D_H_ */