]> de.git.xonotic.org Git - xonotic/darkplaces.git/blob - render.h
Rework R_CanSeeBox a bit to support an eyejitter feature, and make it available throu...
[xonotic/darkplaces.git] / render.h
1 /*
2 Copyright (C) 1996-1997 Id Software, Inc.
3
4 This program is free software; you can redistribute it and/or
5 modify it under the terms of the GNU General Public License
6 as published by the Free Software Foundation; either version 2
7 of the License, or (at your option) any later version.
8
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
12
13 See the GNU General Public License for more details.
14
15 You should have received a copy of the GNU General Public License
16 along with this program; if not, write to the Free Software
17 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
18
19 */
20
21 #ifndef RENDER_H
22 #define RENDER_H
23
24 #include "svbsp.h"
25
26 // 1.0f / N table
27 extern float ixtable[4096];
28
29 // fog stuff
30 void FOG_clear(void);
31
32 // sky stuff
33 extern cvar_t r_sky;
34 extern cvar_t r_skyscroll1;
35 extern cvar_t r_skyscroll2;
36 extern int skyrenderlater, skyrendermasked;
37 int R_SetSkyBox(const char *sky);
38 void R_SkyStartFrame(void);
39 void R_Sky(void);
40 void R_ResetSkyBox(void);
41
42 // SHOWLMP stuff (Nehahra)
43 void SHOWLMP_decodehide(void);
44 void SHOWLMP_decodeshow(void);
45 void SHOWLMP_drawall(void);
46
47 // render profiling stuff
48 extern int r_timereport_active;
49
50 // lighting stuff
51 extern cvar_t r_ambient;
52 extern cvar_t gl_flashblend;
53
54 // vis stuff
55 extern cvar_t r_novis;
56
57 extern cvar_t r_trippy;
58 extern cvar_t r_fxaa;
59
60 extern cvar_t r_lerpsprites;
61 extern cvar_t r_lerpmodels;
62 extern cvar_t r_lerplightstyles;
63 extern cvar_t r_waterscroll;
64
65 extern cvar_t developer_texturelogging;
66
67 // shadow volume bsp struct with automatically growing nodes buffer
68 extern svbsp_t r_svbsp;
69
70 typedef struct rmesh_s
71 {
72         // vertices of this mesh
73         int maxvertices;
74         int numvertices;
75         float *vertex3f;
76         float *svector3f;
77         float *tvector3f;
78         float *normal3f;
79         float *texcoord2f;
80         float *texcoordlightmap2f;
81         float *color4f;
82         // triangles of this mesh
83         int maxtriangles;
84         int numtriangles;
85         int *element3i;
86         int *neighbor3i;
87         // snapping epsilon
88         float epsilon2;
89 }
90 rmesh_t;
91
92 // useful functions for rendering
93 void R_ModulateColors(float *in, float *out, int verts, float r, float g, float b);
94 void R_FillColors(float *out, int verts, float r, float g, float b, float a);
95 int R_Mesh_AddVertex3f(rmesh_t *mesh, const float *v);
96 void R_Mesh_AddPolygon3f(rmesh_t *mesh, int numvertices, float *vertex3f);
97 void R_Mesh_AddBrushMeshFromPlanes(rmesh_t *mesh, int numplanes, mplane_t *planes);
98
99 #define TOP_RANGE               16                      // soldier uniform colors
100 #define BOTTOM_RANGE    96
101
102 //=============================================================================
103
104 extern cvar_t r_nearclip;
105
106 // forces all rendering to draw triangle outlines
107 extern cvar_t r_showoverdraw;
108 extern cvar_t r_showtris;
109 extern cvar_t r_shownormals;
110 extern cvar_t r_showlighting;
111 extern cvar_t r_showshadowvolumes;
112 extern cvar_t r_showcollisionbrushes;
113 extern cvar_t r_showcollisionbrushes_polygonfactor;
114 extern cvar_t r_showcollisionbrushes_polygonoffset;
115 extern cvar_t r_showdisabledepthtest;
116
117 extern cvar_t r_drawentities;
118 extern cvar_t r_draw2d;
119 extern qboolean r_draw2d_force;
120 extern cvar_t r_drawviewmodel;
121 extern cvar_t r_drawworld;
122 extern cvar_t r_speeds;
123 extern cvar_t r_fullbright;
124 extern cvar_t r_wateralpha;
125 extern cvar_t r_dynamic;
126
127 void R_Init(void);
128 void R_UpdateVariables(void); // must call after setting up most of r_refdef, but before calling R_RenderView
129 void R_RenderView(void); // must set r_refdef and call R_UpdateVariables first
130 void R_RenderView_UpdateViewVectors(void); // just updates r_refdef.view.{forward,left,up,origin,right,inverse_matrix}
131
132 typedef enum r_refdef_scene_type_s {
133         RST_CLIENT,
134         RST_MENU,
135         RST_COUNT
136 } r_refdef_scene_type_t;
137
138 void R_SelectScene( r_refdef_scene_type_t scenetype );
139 r_refdef_scene_t * R_GetScenePointer( r_refdef_scene_type_t scenetype );
140
141 void R_SkinFrame_PrepareForPurge(void);
142 void R_SkinFrame_MarkUsed(skinframe_t *skinframe);
143 void R_SkinFrame_Purge(void);
144 // set last to NULL to start from the beginning
145 skinframe_t *R_SkinFrame_FindNextByName( skinframe_t *last, const char *name );
146 skinframe_t *R_SkinFrame_Find(const char *name, int textureflags, int comparewidth, int compareheight, int comparecrc, qboolean add);
147 skinframe_t *R_SkinFrame_LoadExternal(const char *name, int textureflags, qboolean complain);
148 skinframe_t *R_SkinFrame_LoadInternalBGRA(const char *name, int textureflags, const unsigned char *skindata, int width, int height, qboolean sRGB);
149 skinframe_t *R_SkinFrame_LoadInternalQuake(const char *name, int textureflags, int loadpantsandshirt, int loadglowtexture, const unsigned char *skindata, int width, int height);
150 skinframe_t *R_SkinFrame_LoadInternal8bit(const char *name, int textureflags, const unsigned char *skindata, int width, int height, const unsigned int *palette, const unsigned int *alphapalette);
151 skinframe_t *R_SkinFrame_LoadMissing(void);
152
153 rtexture_t *R_GetCubemap(const char *basename);
154
155 void R_View_WorldVisibility(qboolean forcenovis);
156 void R_DrawDecals(void);
157 void R_DrawParticles(void);
158 void R_DrawExplosions(void);
159
160 #define gl_solid_format 3
161 #define gl_alpha_format 4
162
163 int R_CullBox(const vec3_t mins, const vec3_t maxs);
164 int R_CullBoxCustomPlanes(const vec3_t mins, const vec3_t maxs, int numplanes, const mplane_t *planes);
165 qboolean R_CanSeeBox(int numsamples, vec_t eyejitter, vec_t entboxenlarge, vec3_t eye, vec3_t entboxmins, vec3_t entboxmaxs);
166
167 #include "r_modules.h"
168
169 #include "meshqueue.h"
170
171 /// free all R_FrameData memory
172 void R_FrameData_Reset(void);
173 /// prepare for a new frame, recycles old buffers if a resize occurred previously
174 void R_FrameData_NewFrame(void);
175 /// allocate some temporary memory for your purposes
176 void *R_FrameData_Alloc(size_t size);
177 /// allocate some temporary memory and copy this data into it
178 void *R_FrameData_Store(size_t size, void *data);
179 /// set a marker that allows you to discard the following temporary memory allocations
180 void R_FrameData_SetMark(void);
181 /// discard recent memory allocations (rewind to marker)
182 void R_FrameData_ReturnToMark(void);
183
184 /// enum of the various types of hardware buffer object used in rendering
185 /// note that the r_buffermegs[] array must be maintained to match this
186 typedef enum r_bufferdata_type_e
187 {
188         R_BUFFERDATA_VERTEX, /// vertex buffer
189         R_BUFFERDATA_INDEX16, /// index buffer - 16bit (because D3D cares)
190         R_BUFFERDATA_INDEX32, /// index buffer - 32bit (because D3D cares)
191         R_BUFFERDATA_UNIFORM, /// uniform buffer
192         R_BUFFERDATA_COUNT /// how many kinds of buffer we have
193 }
194 r_bufferdata_type_t;
195
196 /// free all dynamic vertex/index/uniform buffers
197 void R_BufferData_Reset(void);
198 /// begin a new frame (recycle old buffers)
199 void R_BufferData_NewFrame(void);
200 /// request space in a vertex/index/uniform buffer for the chosen data, returns the buffer pointer and offset, always successful
201 r_meshbuffer_t *R_BufferData_Store(size_t size, const void *data, r_bufferdata_type_t type, int *returnbufferoffset);
202
203 /// free all R_AnimCache memory
204 void R_AnimCache_Free(void);
205 /// clear the animcache pointers on all known render entities
206 void R_AnimCache_ClearCache(void);
207 /// get the skeletal data or cached animated mesh data for an entity (optionally with normals and tangents)
208 qboolean R_AnimCache_GetEntity(entity_render_t *ent, qboolean wantnormals, qboolean wanttangents);
209 /// generate animcache data for all entities marked visible
210 void R_AnimCache_CacheVisibleEntities(void);
211
212 #include "r_lerpanim.h"
213
214 extern cvar_t r_render;
215 extern cvar_t r_renderview;
216 extern cvar_t r_waterwarp;
217
218 extern cvar_t r_textureunits;
219
220 extern cvar_t r_glsl_offsetmapping;
221 extern cvar_t r_glsl_offsetmapping_reliefmapping;
222 extern cvar_t r_glsl_offsetmapping_scale;
223 extern cvar_t r_glsl_offsetmapping_lod;
224 extern cvar_t r_glsl_offsetmapping_lod_distance;
225 extern cvar_t r_glsl_deluxemapping;
226
227 extern cvar_t gl_polyblend;
228 extern cvar_t gl_dither;
229
230 extern cvar_t cl_deathfade;
231
232 extern cvar_t r_smoothnormals_areaweighting;
233
234 extern cvar_t r_test;
235
236 #include "gl_backend.h"
237
238 extern rtexture_t *r_texture_blanknormalmap;
239 extern rtexture_t *r_texture_white;
240 extern rtexture_t *r_texture_grey128;
241 extern rtexture_t *r_texture_black;
242 extern rtexture_t *r_texture_notexture;
243 extern rtexture_t *r_texture_whitecube;
244 extern rtexture_t *r_texture_normalizationcube;
245 extern rtexture_t *r_texture_fogattenuation;
246 extern rtexture_t *r_texture_fogheighttexture;
247
248 extern unsigned int r_queries[MAX_OCCLUSION_QUERIES];
249 extern unsigned int r_numqueries;
250 extern unsigned int r_maxqueries;
251
252 void R_TimeReport(const char *name);
253
254 // r_stain
255 void R_Stain(const vec3_t origin, float radius, int cr1, int cg1, int cb1, int ca1, int cr2, int cg2, int cb2, int ca2);
256
257 void R_CalcBeam_Vertex3f(float *vert, const float *org1, const float *org2, float width);
258 void R_CalcSprite_Vertex3f(float *vertex3f, const float *origin, const float *left, const float *up, float scalex1, float scalex2, float scaley1, float scaley2);
259
260 extern mempool_t *r_main_mempool;
261
262 typedef struct rsurfacestate_s
263 {
264         // current model array pointers
265         // these may point to processing buffers if model is animated,
266         // otherwise they point to static data.
267         // these are not directly used for rendering, they are just another level
268         // of processing
269         //
270         // these either point at array_model* buffers (if the model is animated)
271         // or the model->surfmesh.data_* buffers (if the model is not animated)
272         //
273         // these are only set when an entity render begins, they do not change on
274         // a per surface basis.
275         //
276         // this indicates the model* arrays are pointed at array_model* buffers
277         // (in other words, the model has been animated in software)
278         qboolean                    forcecurrenttextureupdate; // set for RSurf_ActiveCustomEntity to force R_GetCurrentTexture to recalculate the texture parameters (such as entity alpha)
279         qboolean                    modelgeneratedvertex;
280         // skeletal animation can be done by entity (animcache) or per batch,
281         // batch may be non-skeletal even if entity is skeletal, indicating that
282         // the dynamicvertex code path had to apply skeletal manually for a case
283         // where gpu-skinning is not possible, for this reason batch has its own
284         // variables
285         int                         entityskeletalnumtransforms; // how many transforms are used for this mesh
286         float                      *entityskeletaltransform3x4; // use gpu-skinning shader on this mesh
287         const r_meshbuffer_t       *entityskeletaltransform3x4buffer; // uniform buffer
288         int                         entityskeletaltransform3x4offset;
289         int                         entityskeletaltransform3x4size;
290         float                      *modelvertex3f;
291         const r_meshbuffer_t       *modelvertex3f_vertexbuffer;
292         int                         modelvertex3f_bufferoffset;
293         float                      *modelsvector3f;
294         const r_meshbuffer_t       *modelsvector3f_vertexbuffer;
295         int                         modelsvector3f_bufferoffset;
296         float                      *modeltvector3f;
297         const r_meshbuffer_t       *modeltvector3f_vertexbuffer;
298         int                         modeltvector3f_bufferoffset;
299         float                      *modelnormal3f;
300         const r_meshbuffer_t       *modelnormal3f_vertexbuffer;
301         int                         modelnormal3f_bufferoffset;
302         float                      *modellightmapcolor4f;
303         const r_meshbuffer_t       *modellightmapcolor4f_vertexbuffer;
304         int                         modellightmapcolor4f_bufferoffset;
305         float                      *modeltexcoordtexture2f;
306         const r_meshbuffer_t       *modeltexcoordtexture2f_vertexbuffer;
307         int                         modeltexcoordtexture2f_bufferoffset;
308         float                      *modeltexcoordlightmap2f;
309         const r_meshbuffer_t       *modeltexcoordlightmap2f_vertexbuffer;
310         int                         modeltexcoordlightmap2f_bufferoffset;
311         unsigned char              *modelskeletalindex4ub;
312         const r_meshbuffer_t       *modelskeletalindex4ub_vertexbuffer;
313         int                         modelskeletalindex4ub_bufferoffset;
314         unsigned char              *modelskeletalweight4ub;
315         const r_meshbuffer_t       *modelskeletalweight4ub_vertexbuffer;
316         int                         modelskeletalweight4ub_bufferoffset;
317         r_vertexmesh_t             *modelvertexmesh;
318         const r_meshbuffer_t       *modelvertexmesh_vertexbuffer;
319         int                         modelvertexmesh_bufferoffset;
320         int                        *modelelement3i;
321         const r_meshbuffer_t       *modelelement3i_indexbuffer;
322         int                         modelelement3i_bufferoffset;
323         unsigned short             *modelelement3s;
324         const r_meshbuffer_t       *modelelement3s_indexbuffer;
325         int                         modelelement3s_bufferoffset;
326         int                        *modellightmapoffsets;
327         int                         modelnumvertices;
328         int                         modelnumtriangles;
329         const msurface_t           *modelsurfaces;
330         // current rendering array pointers
331         // these may point to any of several different buffers depending on how
332         // much processing was needed to prepare this model for rendering
333         // these usually equal the model* pointers, they only differ if
334         // deformvertexes is used in a q3 shader, and consequently these can
335         // change on a per-surface basis (according to rsurface.texture)
336         qboolean                    batchgeneratedvertex;
337         qboolean                    batchmultidraw;
338         int                         batchmultidrawnumsurfaces;
339         const msurface_t          **batchmultidrawsurfacelist;
340         int                         batchfirstvertex;
341         int                         batchnumvertices;
342         int                         batchfirsttriangle;
343         int                         batchnumtriangles;
344         r_vertexmesh_t             *batchvertexmesh;
345         const r_meshbuffer_t       *batchvertexmesh_vertexbuffer;
346         int                         batchvertexmesh_bufferoffset;
347         float                      *batchvertex3f;
348         const r_meshbuffer_t       *batchvertex3f_vertexbuffer;
349         int                         batchvertex3f_bufferoffset;
350         float                      *batchsvector3f;
351         const r_meshbuffer_t       *batchsvector3f_vertexbuffer;
352         int                         batchsvector3f_bufferoffset;
353         float                      *batchtvector3f;
354         const r_meshbuffer_t       *batchtvector3f_vertexbuffer;
355         int                         batchtvector3f_bufferoffset;
356         float                      *batchnormal3f;
357         const r_meshbuffer_t       *batchnormal3f_vertexbuffer;
358         int                         batchnormal3f_bufferoffset;
359         float                      *batchlightmapcolor4f;
360         const r_meshbuffer_t       *batchlightmapcolor4f_vertexbuffer;
361         int                         batchlightmapcolor4f_bufferoffset;
362         float                      *batchtexcoordtexture2f;
363         const r_meshbuffer_t       *batchtexcoordtexture2f_vertexbuffer;
364         int                         batchtexcoordtexture2f_bufferoffset;
365         float                      *batchtexcoordlightmap2f;
366         const r_meshbuffer_t       *batchtexcoordlightmap2f_vertexbuffer;
367         int                         batchtexcoordlightmap2f_bufferoffset;
368         unsigned char              *batchskeletalindex4ub;
369         const r_meshbuffer_t       *batchskeletalindex4ub_vertexbuffer;
370         int                         batchskeletalindex4ub_bufferoffset;
371         unsigned char              *batchskeletalweight4ub;
372         const r_meshbuffer_t       *batchskeletalweight4ub_vertexbuffer;
373         int                         batchskeletalweight4ub_bufferoffset;
374         int                        *batchelement3i;
375         const r_meshbuffer_t       *batchelement3i_indexbuffer;
376         int                         batchelement3i_bufferoffset;
377         unsigned short             *batchelement3s;
378         const r_meshbuffer_t       *batchelement3s_indexbuffer;
379         int                         batchelement3s_bufferoffset;
380         int                         batchskeletalnumtransforms;
381         float                      *batchskeletaltransform3x4;
382         const r_meshbuffer_t       *batchskeletaltransform3x4buffer; // uniform buffer
383         int                         batchskeletaltransform3x4offset;
384         int                         batchskeletaltransform3x4size;
385         // rendering pass processing arrays in GL11 and GL13 paths
386         float                      *passcolor4f;
387         const r_meshbuffer_t       *passcolor4f_vertexbuffer;
388         int                         passcolor4f_bufferoffset;
389
390         // some important fields from the entity
391         int ent_skinnum;
392         int ent_qwskin;
393         int ent_flags;
394         int ent_alttextures; // used by q1bsp animated textures (pressed buttons)
395         double shadertime; // r_refdef.scene.time - ent->shadertime
396         // transform matrices to render this entity and effects on this entity
397         matrix4x4_t matrix;
398         matrix4x4_t inversematrix;
399         // scale factors for transforming lengths into/out of entity space
400         float matrixscale;
401         float inversematrixscale;
402         // animation blending state from entity
403         frameblend_t frameblend[MAX_FRAMEBLENDS];
404         skeleton_t *skeleton;
405         // directional model shading state from entity
406         vec3_t modellight_ambient;
407         vec3_t modellight_diffuse;
408         vec3_t modellight_lightdir;
409         // colormapping state from entity (these are black if colormapping is off)
410         vec3_t colormap_pantscolor;
411         vec3_t colormap_shirtcolor;
412         // special coloring of ambient/diffuse textures (gloss not affected)
413         // colormod[3] is the alpha of the entity
414         float colormod[4];
415         // special coloring of glow textures
416         float glowmod[3];
417         // view location in model space
418         vec3_t localvieworigin;
419         // polygon offset data for submodels
420         float basepolygonfactor;
421         float basepolygonoffset;
422         // current textures in batching code
423         texture_t *texture;
424         rtexture_t *lightmaptexture;
425         rtexture_t *deluxemaptexture;
426         // whether lightmapping is active on this batch
427         // (otherwise vertex colored)
428         qboolean uselightmaptexture;
429         // fog plane in model space for direct application to vertices
430         float fograngerecip;
431         float fogmasktabledistmultiplier;
432         float fogplane[4];
433         float fogheightfade;
434         float fogplaneviewdist;
435
436         // rtlight rendering
437         // light currently being rendered
438         const rtlight_t *rtlight;
439
440         // this is the location of the light in entity space
441         vec3_t entitylightorigin;
442         // this transforms entity coordinates to light filter cubemap coordinates
443         // (also often used for other purposes)
444         matrix4x4_t entitytolight;
445         // based on entitytolight this transforms -1 to +1 to 0 to 1 for purposes
446         // of attenuation texturing in full 3D (Z result often ignored)
447         matrix4x4_t entitytoattenuationxyz;
448         // this transforms only the Z to S, and T is always 0.5
449         matrix4x4_t entitytoattenuationz;
450
451         // user wavefunc parameters (from csqc)
452         float userwavefunc_param[Q3WAVEFUNC_USER_COUNT];
453
454         // pointer to an entity_render_t used only by R_GetCurrentTexture and
455         // RSurf_ActiveWorldEntity/RSurf_ActiveModelEntity as a unique id within
456         // each frame (see r_frame also)
457         entity_render_t *entity;
458 }
459 rsurfacestate_t;
460
461 extern rsurfacestate_t rsurface;
462
463 void R_HDR_UpdateIrisAdaptation(const vec3_t point);
464
465 void RSurf_ActiveWorldEntity(void);
466 void RSurf_ActiveModelEntity(const entity_render_t *ent, qboolean wantnormals, qboolean wanttangents, qboolean prepass);
467 void RSurf_ActiveCustomEntity(const matrix4x4_t *matrix, const matrix4x4_t *inversematrix, int entflags, double shadertime, float r, float g, float b, float a, int numvertices, const float *vertex3f, const float *texcoord2f, const float *normal3f, const float *svector3f, const float *tvector3f, const float *color4f, int numtriangles, const int *element3i, const unsigned short *element3s, qboolean wantnormals, qboolean wanttangents);
468 void RSurf_SetupDepthAndCulling(void);
469
470 void R_Mesh_ResizeArrays(int newvertices);
471
472 texture_t *R_GetCurrentTexture(texture_t *t);
473 void R_DrawWorldSurfaces(qboolean skysurfaces, qboolean writedepth, qboolean depthonly, qboolean debug, qboolean prepass);
474 void R_DrawModelSurfaces(entity_render_t *ent, qboolean skysurfaces, qboolean writedepth, qboolean depthonly, qboolean debug, qboolean prepass);
475 void R_AddWaterPlanes(entity_render_t *ent);
476 void R_DrawCustomSurface(skinframe_t *skinframe, const matrix4x4_t *texmatrix, int materialflags, int firstvertex, int numvertices, int firsttriangle, int numtriangles, qboolean writedepth, qboolean prepass);
477 void R_DrawCustomSurface_Texture(texture_t *texture, const matrix4x4_t *texmatrix, int materialflags, int firstvertex, int numvertices, int firsttriangle, int numtriangles, qboolean writedepth, qboolean prepass);
478
479 #define BATCHNEED_VERTEXMESH_VERTEX      (1<< 1) // set up rsurface.batchvertexmesh
480 #define BATCHNEED_VERTEXMESH_NORMAL      (1<< 2) // set up normals in rsurface.batchvertexmesh if BATCHNEED_MESH, set up rsurface.batchnormal3f if BATCHNEED_ARRAYS
481 #define BATCHNEED_VERTEXMESH_VECTOR      (1<< 3) // set up vectors in rsurface.batchvertexmesh if BATCHNEED_MESH, set up rsurface.batchsvector3f and rsurface.batchtvector3f if BATCHNEED_ARRAYS
482 #define BATCHNEED_VERTEXMESH_VERTEXCOLOR (1<< 4) // set up vertex colors in rsurface.batchvertexmesh if BATCHNEED_MESH, set up rsurface.batchlightmapcolor4f if BATCHNEED_ARRAYS
483 #define BATCHNEED_VERTEXMESH_TEXCOORD    (1<< 5) // set up vertex colors in rsurface.batchvertexmesh if BATCHNEED_MESH, set up rsurface.batchlightmapcolor4f if BATCHNEED_ARRAYS
484 #define BATCHNEED_VERTEXMESH_LIGHTMAP    (1<< 6) // set up vertex colors in rsurface.batchvertexmesh if BATCHNEED_MESH, set up rsurface.batchlightmapcolor4f if BATCHNEED_ARRAYS
485 #define BATCHNEED_VERTEXMESH_SKELETAL    (1<< 7) // set up skeletal index and weight data for vertex shader
486 #define BATCHNEED_ARRAY_VERTEX           (1<< 8) // set up rsurface.batchvertex3f and optionally others
487 #define BATCHNEED_ARRAY_NORMAL           (1<< 9) // set up normals in rsurface.batchvertexmesh if BATCHNEED_MESH, set up rsurface.batchnormal3f if BATCHNEED_ARRAYS
488 #define BATCHNEED_ARRAY_VECTOR           (1<<10) // set up vectors in rsurface.batchvertexmesh if BATCHNEED_MESH, set up rsurface.batchsvector3f and rsurface.batchtvector3f if BATCHNEED_ARRAYS
489 #define BATCHNEED_ARRAY_VERTEXCOLOR      (1<<11) // set up vertex colors in rsurface.batchvertexmesh if BATCHNEED_MESH, set up rsurface.batchlightmapcolor4f if BATCHNEED_ARRAYS
490 #define BATCHNEED_ARRAY_TEXCOORD         (1<<12) // set up vertex colors in rsurface.batchvertexmesh if BATCHNEED_MESH, set up rsurface.batchlightmapcolor4f if BATCHNEED_ARRAYS
491 #define BATCHNEED_ARRAY_LIGHTMAP         (1<<13) // set up vertex colors in rsurface.batchvertexmesh if BATCHNEED_MESH, set up rsurface.batchlightmapcolor4f if BATCHNEED_ARRAYS
492 #define BATCHNEED_ARRAY_SKELETAL         (1<<14) // set up skeletal index and weight data for vertex shader
493 #define BATCHNEED_NOGAPS                 (1<<15) // force vertex copying if firstvertex is not zero or there are gaps
494 #define BATCHNEED_ALLOWMULTIDRAW         (1<<16) // allow multiple draws
495 void RSurf_PrepareVerticesForBatch(int batchneed, int texturenumsurfaces, const msurface_t **texturesurfacelist);
496 void RSurf_DrawBatch(void);
497
498 void R_DecalSystem_SplatEntities(const vec3_t org, const vec3_t normal, float r, float g, float b, float a, float s1, float t1, float s2, float t2, float size);
499
500 typedef enum rsurfacepass_e
501 {
502         RSURFPASS_BASE,
503         RSURFPASS_BACKGROUND,
504         RSURFPASS_RTLIGHT,
505         RSURFPASS_DEFERREDGEOMETRY
506 }
507 rsurfacepass_t;
508
509 void R_SetupShader_Generic(rtexture_t *first, rtexture_t *second, int texturemode, int rgbscale, qboolean usegamma, qboolean notrippy, qboolean suppresstexalpha);
510 void R_SetupShader_Generic_NoTexture(qboolean usegamma, qboolean notrippy);
511 void R_SetupShader_DepthOrShadow(qboolean notrippy, qboolean depthrgb, qboolean skeletal);
512 void R_SetupShader_Surface(const vec3_t lightcolorbase, qboolean modellighting, float ambientscale, float diffusescale, float specularscale, rsurfacepass_t rsurfacepass, int texturenumsurfaces, const msurface_t **texturesurfacelist, void *waterplane, qboolean notrippy);
513 void R_SetupShader_DeferredLight(const rtlight_t *rtlight);
514
515 typedef struct r_waterstate_waterplane_s
516 {
517         rtexture_t *texture_refraction; // MATERIALFLAG_WATERSHADER or MATERIALFLAG_REFRACTION
518         rtexture_t *texture_reflection; // MATERIALFLAG_WATERSHADER or MATERIALFLAG_REFLECTION
519         rtexture_t *texture_camera; // MATERIALFLAG_CAMERA
520         int fbo_refraction;
521         int fbo_reflection;
522         int fbo_camera;
523         mplane_t plane;
524         int materialflags; // combined flags of all water surfaces on this plane
525         unsigned char pvsbits[(MAX_MAP_LEAFS+7)>>3]; // FIXME: buffer overflow on huge maps
526         qboolean pvsvalid;
527         int camera_entity;
528         vec3_t mins, maxs;
529 }
530 r_waterstate_waterplane_t;
531
532 typedef struct r_waterstate_s
533 {
534         int waterwidth, waterheight;
535         int texturewidth, textureheight;
536         int camerawidth, cameraheight;
537         rtexture_t *depthtexture;
538
539         int maxwaterplanes; // same as MAX_WATERPLANES
540         int numwaterplanes;
541         r_waterstate_waterplane_t waterplanes[MAX_WATERPLANES];
542
543         float screenscale[2];
544         float screencenter[2];
545
546         qboolean enabled;
547
548         qboolean renderingscene; // true while rendering a refraction or reflection texture, disables water surfaces
549         qboolean hideplayer;
550 }
551 r_waterstate_t;
552
553 typedef struct r_framebufferstate_s
554 {
555         textype_t textype; // type of color buffer we're using (dependent on r_viewfbo cvar)
556         int fbo; // non-zero if r_viewfbo is enabled and working
557         int screentexturewidth, screentextureheight; // dimensions of texture
558
559         rtexture_t *colortexture; // non-NULL if fbo is non-zero
560         rtexture_t *depthtexture; // non-NULL if fbo is non-zero
561         rtexture_t *ghosttexture; // for r_motionblur (not recommended on multi-GPU hardware!)
562         rtexture_t *bloomtexture[2]; // for r_bloom, multi-stage processing
563         int bloomfbo[2]; // fbos for rendering into bloomtexture[]
564         int bloomindex; // which bloomtexture[] contains the final image
565
566         int bloomwidth, bloomheight;
567         int bloomtexturewidth, bloomtextureheight;
568
569         // arrays for rendering the screen passes
570         float screentexcoord2f[8]; // texcoords for colortexture or ghosttexture
571         float bloomtexcoord2f[8]; // texcoords for bloomtexture[]
572         float offsettexcoord2f[8]; // temporary use while updating bloomtexture[]
573
574         r_viewport_t bloomviewport;
575
576         r_waterstate_t water;
577
578         qboolean ghosttexture_valid; // don't draw garbage on first frame with motionblur
579         qboolean usedepthtextures; // use depth texture instead of depth renderbuffer (faster if you need to read it later anyway)
580 }
581 r_framebufferstate_t;
582
583 extern r_framebufferstate_t r_fb;
584
585 extern cvar_t r_viewfbo;
586
587 void R_ResetViewRendering2D_Common(int fbo, rtexture_t *depthtexture, rtexture_t *colortexture, float x2, float y2); // this is called by R_ResetViewRendering2D and _DrawQ_Setup and internal
588 void R_ResetViewRendering2D(int fbo, rtexture_t *depthtexture, rtexture_t *colortexture);
589 void R_ResetViewRendering3D(int fbo, rtexture_t *depthtexture, rtexture_t *colortexture);
590 void R_SetupView(qboolean allowwaterclippingplane, int fbo, rtexture_t *depthtexture, rtexture_t *colortexture);
591 extern const float r_screenvertex3f[12];
592 extern cvar_t r_shadows;
593 extern cvar_t r_shadows_darken;
594 extern cvar_t r_shadows_drawafterrtlighting;
595 extern cvar_t r_shadows_castfrombmodels;
596 extern cvar_t r_shadows_throwdistance;
597 extern cvar_t r_shadows_throwdirection;
598 extern cvar_t r_shadows_focus;
599 extern cvar_t r_shadows_shadowmapscale;
600 extern cvar_t r_shadows_shadowmapbias;
601 extern cvar_t r_transparent_alphatocoverage;
602 extern cvar_t r_transparent_sortsurfacesbynearest;
603 extern cvar_t r_transparent_useplanardistance;
604 extern cvar_t r_transparent_sortarraysize;
605 extern cvar_t r_transparent_sortmindist;
606 extern cvar_t r_transparent_sortmaxdist;
607
608 void R_Model_Sprite_Draw(entity_render_t *ent);
609
610 struct prvm_prog_s;
611 void R_UpdateFog(void);
612 qboolean CL_VM_UpdateView(double frametime);
613 void SCR_DrawConsole(void);
614 void R_Shadow_EditLights_DrawSelectedLightProperties(void);
615 void R_DecalSystem_Reset(decalsystem_t *decalsystem);
616 void R_Shadow_UpdateBounceGridTexture(void);
617 void R_DrawLightningBeams(void);
618 void VM_CL_AddPolygonsToMeshQueue(struct prvm_prog_s *prog);
619 void R_DrawPortals(void);
620 void R_BuildLightMap(const entity_render_t *ent, msurface_t *surface);
621 void R_Water_AddWaterPlane(msurface_t *surface, int entno);
622 int R_Shadow_GetRTLightInfo(unsigned int lightindex, float *origin, float *radius, float *color);
623 dp_font_t *FindFont(const char *title, qboolean allocate_new);
624 void LoadFont(qboolean override, const char *name, dp_font_t *fnt, float scale, float voffset);
625
626 void Render_Init(void);
627
628 // these are called by Render_Init
629 void R_Textures_Init(void);
630 void GL_Draw_Init(void);
631 void GL_Main_Init(void);
632 void R_Shadow_Init(void);
633 void R_Sky_Init(void);
634 void GL_Surf_Init(void);
635 void R_Particles_Init(void);
636 void R_Explosion_Init(void);
637 void gl_backend_init(void);
638 void Sbar_Init(void);
639 void R_LightningBeams_Init(void);
640 void Mod_RenderInit(void);
641 void Font_Init(void);
642
643 qboolean R_CompileShader_CheckStaticParms(void);
644 void R_GLSL_Restart_f(void);
645
646 #endif