mirror of
https://github.com/nzp-team/fteqw.git
synced 2024-11-10 22:51:57 +00:00
1f34680832
git-svn-id: https://svn.code.sf.net/p/fteqw/code/branches/wip@3464 fc73d0e0-1445-4013-8a0c-d673dee63da5
17 lines
415 B
C
17 lines
415 B
C
#ifndef RENDERQUE_H
|
|
#define RENDERQUE_H
|
|
|
|
void RQ_AddDistReorder(void (*render) (int count, void **objects, void *objtype), void *object, void *objtype, float *pos);
|
|
|
|
FTE_DEPRECATED void RQ_RenderDistAndClear(void);
|
|
void RQ_RenderBatchClear(void);
|
|
|
|
typedef struct renderque_s
|
|
{
|
|
struct renderque_s *next;
|
|
void (*render) (int count, void **objects, void *objtype);
|
|
void *data1;
|
|
void *data2;
|
|
} renderque_t;
|
|
|
|
#endif
|