mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-05-06 16:01:10 +00:00
[renderer] Remove R_EnqueueEntity from the plugin funcs
Forgot about this when fixing the ctf flags.
This commit is contained in:
parent
3b586fc0a6
commit
c134e9d348
6 changed files with 0 additions and 6 deletions
|
@ -154,7 +154,6 @@ typedef struct vid_render_funcs_s {
|
||||||
void (*R_NewMap) (model_t *worldmodel, model_t **models, int num_models);
|
void (*R_NewMap) (model_t *worldmodel, model_t **models, int num_models);
|
||||||
void (*R_AddEfrags) (mod_brush_t *brush, entity_t *ent);
|
void (*R_AddEfrags) (mod_brush_t *brush, entity_t *ent);
|
||||||
void (*R_RemoveEfrags) (entity_t *ent);
|
void (*R_RemoveEfrags) (entity_t *ent);
|
||||||
void (*R_EnqueueEntity) (struct entity_s *ent); //FIXME should not be here
|
|
||||||
void (*R_LineGraph) (int x, int y, int *h_vals, int count, int height);
|
void (*R_LineGraph) (int x, int y, int *h_vals, int count, int height);
|
||||||
dlight_t *(*R_AllocDlight) (int key);
|
dlight_t *(*R_AllocDlight) (int key);
|
||||||
entity_t *(*R_AllocEntity) (void);
|
entity_t *(*R_AllocEntity) (void);
|
||||||
|
|
|
@ -149,7 +149,6 @@ vid_render_funcs_t gl_vid_render_funcs = {
|
||||||
gl_R_NewMap,
|
gl_R_NewMap,
|
||||||
R_AddEfrags,
|
R_AddEfrags,
|
||||||
R_RemoveEfrags,
|
R_RemoveEfrags,
|
||||||
R_EnqueueEntity,
|
|
||||||
gl_R_LineGraph,
|
gl_R_LineGraph,
|
||||||
R_AllocDlight,
|
R_AllocDlight,
|
||||||
R_AllocEntity,
|
R_AllocEntity,
|
||||||
|
|
|
@ -148,7 +148,6 @@ vid_render_funcs_t glsl_vid_render_funcs = {
|
||||||
glsl_R_NewMap,
|
glsl_R_NewMap,
|
||||||
R_AddEfrags,
|
R_AddEfrags,
|
||||||
R_RemoveEfrags,
|
R_RemoveEfrags,
|
||||||
R_EnqueueEntity,
|
|
||||||
glsl_R_LineGraph,
|
glsl_R_LineGraph,
|
||||||
R_AllocDlight,
|
R_AllocDlight,
|
||||||
R_AllocEntity,
|
R_AllocEntity,
|
||||||
|
|
|
@ -145,7 +145,6 @@ vid_render_funcs_t sw_vid_render_funcs = {
|
||||||
R_NewMap,
|
R_NewMap,
|
||||||
R_AddEfrags,
|
R_AddEfrags,
|
||||||
R_RemoveEfrags,
|
R_RemoveEfrags,
|
||||||
R_EnqueueEntity,
|
|
||||||
R_LineGraph,
|
R_LineGraph,
|
||||||
R_AllocDlight,
|
R_AllocDlight,
|
||||||
R_AllocEntity,
|
R_AllocEntity,
|
||||||
|
|
|
@ -150,7 +150,6 @@ vid_render_funcs_t sw32_vid_render_funcs = {
|
||||||
sw32_R_NewMap,
|
sw32_R_NewMap,
|
||||||
R_AddEfrags,
|
R_AddEfrags,
|
||||||
R_RemoveEfrags,
|
R_RemoveEfrags,
|
||||||
R_EnqueueEntity,
|
|
||||||
sw32_R_LineGraph,
|
sw32_R_LineGraph,
|
||||||
R_AllocDlight,
|
R_AllocDlight,
|
||||||
R_AllocEntity,
|
R_AllocEntity,
|
||||||
|
|
|
@ -662,7 +662,6 @@ vid_render_funcs_t vulkan_vid_render_funcs = {
|
||||||
vulkan_R_NewMap,
|
vulkan_R_NewMap,
|
||||||
R_AddEfrags,
|
R_AddEfrags,
|
||||||
R_RemoveEfrags,
|
R_RemoveEfrags,
|
||||||
R_EnqueueEntity,
|
|
||||||
vulkan_R_LineGraph,
|
vulkan_R_LineGraph,
|
||||||
R_AllocDlight,
|
R_AllocDlight,
|
||||||
R_AllocEntity,
|
R_AllocEntity,
|
||||||
|
|
Loading…
Reference in a new issue