2012-02-14 08:28:09 +00:00
|
|
|
#ifndef __r_internal_h
|
|
|
|
#define __r_internal_h
|
|
|
|
|
|
|
|
#include "QF/vid.h"
|
|
|
|
#include "QF/plugin/vid_render.h"
|
|
|
|
#include "r_cvar.h"
|
|
|
|
#include "r_dynamic.h"
|
|
|
|
#include "r_local.h"
|
|
|
|
#include "r_shared.h"
|
|
|
|
|
|
|
|
extern viddef_t vid; // global video state
|
|
|
|
|
2012-02-15 00:04:22 +00:00
|
|
|
extern vid_render_data_t vid_render_data;
|
2012-02-22 12:53:17 +00:00
|
|
|
extern vid_render_funcs_t gl_vid_render_funcs;
|
|
|
|
extern vid_render_funcs_t glsl_vid_render_funcs;
|
|
|
|
extern vid_render_funcs_t sw_vid_render_funcs;
|
2021-01-18 03:46:06 +00:00
|
|
|
extern vid_render_funcs_t vulkan_vid_render_funcs;
|
2012-04-11 13:45:23 +00:00
|
|
|
extern vid_render_funcs_t *vid_render_funcs;
|
2012-02-22 12:53:17 +00:00
|
|
|
|
2012-02-15 00:04:22 +00:00
|
|
|
#define vr_data vid_render_data
|
2012-04-11 13:45:23 +00:00
|
|
|
#define vr_funcs vid_render_funcs
|
2012-02-14 08:28:09 +00:00
|
|
|
|
|
|
|
extern refdef_t r_refdef;
|
|
|
|
extern int r_viewsize;
|
|
|
|
|
2021-07-11 01:59:27 +00:00
|
|
|
void R_LineGraph (int x, int y, int *h_vals, int count, int height);
|
2012-02-14 08:28:09 +00:00
|
|
|
|
|
|
|
|
2012-02-23 12:17:32 +00:00
|
|
|
void gl_R_Init (void);
|
|
|
|
void glsl_R_Init (void);
|
2012-02-22 13:12:29 +00:00
|
|
|
void sw_R_Init (void);
|
2021-12-02 09:30:57 +00:00
|
|
|
void R_RenderFrame (SCR_Func *scr_funcs);
|
2012-02-14 08:28:09 +00:00
|
|
|
void R_Init_Cvars (void);
|
|
|
|
void R_InitEfrags (void);
|
|
|
|
void R_ClearState (void);
|
|
|
|
void R_InitSky (struct texture_s *mt); // called at level load
|
|
|
|
void R_Textures_Init (void);
|
|
|
|
void R_RenderView (void); // must set r_refdef first
|
2021-04-01 10:17:19 +00:00
|
|
|
void R_ViewChanged (void); // must set r_refdef first
|
2012-02-14 08:28:09 +00:00
|
|
|
// called whenever r_refdef or vid change
|
|
|
|
|
2021-12-19 05:47:25 +00:00
|
|
|
extern struct psystem_s r_psystem;
|
|
|
|
struct psystem_s *gl_ParticleSystem (void);
|
|
|
|
struct psystem_s *glsl_ParticleSystem (void);
|
|
|
|
struct psystem_s *sw_ParticleSystem (void);
|
|
|
|
void R_RunParticles (float dT);
|
|
|
|
|
2012-02-14 08:28:09 +00:00
|
|
|
void R_NewMap (model_t *worldmodel, model_t **models, int num_models);
|
|
|
|
|
|
|
|
// LordHavoc: relative bmodel lighting
|
|
|
|
void R_PushDlights (const vec3_t entorigin);
|
|
|
|
void R_DrawWaterSurfaces (void);
|
|
|
|
|
2018-10-09 03:35:01 +00:00
|
|
|
void *D_SurfaceCacheAddress (void) __attribute__((pure));
|
2022-03-21 02:12:58 +00:00
|
|
|
int D_SurfaceCacheForRes (int width, int height);
|
2021-07-10 15:09:41 +00:00
|
|
|
void D_FlushCaches (void *data);
|
2012-02-14 08:28:09 +00:00
|
|
|
void D_DeleteSurfaceCache (void);
|
2022-03-21 02:12:58 +00:00
|
|
|
void D_InitCaches (void *buffer, int size);
|
2013-01-30 12:20:25 +00:00
|
|
|
void R_SetVrect (const vrect_t *pvrect, vrect_t *pvrectin, int lineadj);
|
2012-02-14 08:28:09 +00:00
|
|
|
|
|
|
|
void R_LoadSkys (const char *);
|
|
|
|
|
|
|
|
void R_ClearEfrags (void);
|
|
|
|
|
2012-05-11 12:53:16 +00:00
|
|
|
void R_FindNearLights (const vec3_t pos, int count, dlight_t **lights);
|
2012-02-14 08:28:09 +00:00
|
|
|
dlight_t *R_AllocDlight (int key);
|
|
|
|
void R_DecayLights (double frametime);
|
|
|
|
void R_ClearDlights (void);
|
|
|
|
|
|
|
|
int R_InitGraphTextures (int base);
|
|
|
|
|
|
|
|
void R_DrawAliasModel (entity_t *e);
|
|
|
|
|
|
|
|
void R_MarkLeaves (void);
|
|
|
|
|
2021-07-10 15:09:41 +00:00
|
|
|
void GL_SetPalette (void *data, const byte *palette);
|
|
|
|
void GLSL_SetPalette (void *data, const byte *palette);
|
2012-04-12 04:57:05 +00:00
|
|
|
|
2021-12-10 05:34:04 +00:00
|
|
|
int R_BillboardFrame (entity_t *ent, int orientation, const vec3_t cameravec,
|
[renderer] Clean up use of vup/vright/vpn
This moves the common camera setup code out of the individual drivers,
and completely removes vup/vright/vpn from the non-software renderers.
This has highlighted the craziness around AngleVectors with it putting
+X forward, -Y right and +Z up. The main issue with this is it requires
a 90 degree pre-rotation about the Z axis to get the camera pointing in
the right direction, and that's for the native sw renderer (vulkan needs
a 90 degree pre-rotation about X, and gl and glsl need to invert an
axis, too), though at least it's just a matrix swizzle and vector
negation. However, it does mean the camera matrices can't be used
directly.
Also rename vpn to vfwd (still abbreviated, but fwd is much clearer in
meaning (to me, at least) than pn (plane normal, I guess, but which
way?)).
2022-03-14 00:34:24 +00:00
|
|
|
vec3_t bbup, vec3_t bbright, vec3_t bbfwd);
|
2021-12-14 16:18:02 +00:00
|
|
|
mspriteframe_t *R_GetSpriteFrame (const msprite_t *sprite,
|
|
|
|
const animation_t *animation);
|
2021-12-10 05:34:04 +00:00
|
|
|
|
2022-03-24 06:45:01 +00:00
|
|
|
// These correspond to the standard box sides for OpenGL cube maps
|
|
|
|
#define BOX_FRONT 4
|
|
|
|
#define BOX_RIGHT 0
|
|
|
|
#define BOX_BEHIND 5
|
|
|
|
#define BOX_LEFT 1
|
|
|
|
#define BOX_TOP 2
|
|
|
|
#define BOX_BOTTOM 3
|
|
|
|
void R_RenderFisheye (framebuffer_t *cube);
|
|
|
|
|
2012-02-14 08:28:09 +00:00
|
|
|
#endif//__r_internal_h
|