about summary refs log tree commit diff
path: root/src/game/client/gc_render.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/game/client/gc_render.h')
-rw-r--r--src/game/client/gc_render.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/game/client/gc_render.h b/src/game/client/gc_render.h
index feb04641..5294b89e 100644
--- a/src/game/client/gc_render.h
+++ b/src/game/client/gc_render.h
@@ -4,6 +4,7 @@
 
 #include "../g_vmath.h"
 #include "../g_mapitems.h"
+#include "gc_ui.h"
 
 struct tee_render_info
 {
@@ -30,6 +31,7 @@ void draw_sprite(float x, float y, float size);
 // rects
 void draw_round_rect(float x, float y, float w, float h, float r);
 void draw_round_rect_ext(float x, float y, float w, float h, float r, int corners);
+void ui_draw_rect(const RECT *r, vec4 color, int corners, float rounding);
 
 // larger rendering methods
 void menu_render();
@@ -49,7 +51,8 @@ void render_player(
 	const struct obj_player_info *prev_info, const struct obj_player_info *player_info);
 	
 // map render methods (gc_render_map.cpp)
-void render_quads(QUAD *quads, int num_quads);
+void render_eval_envelope(ENVPOINT *points, int num_points, int channels, float time, float *result);
+void render_quads(QUAD *quads, int num_quads, void (*eval)(float time_offset, int env, float *channels));
 void render_tilemap(TILE *tiles, int w, int h, float scale, int flags);
 
 // helpers