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