2004-08-23 00:15:46 +00:00
/*
Copyright ( C ) 1996 - 1997 Id Software , Inc .
This program is free software ; you can redistribute it and / or
modify it under the terms of the GNU General Public License
as published by the Free Software Foundation ; either version 2
of the License , or ( at your option ) any later version .
This program is distributed in the hope that it will be useful ,
but WITHOUT ANY WARRANTY ; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE .
See the GNU General Public License for more details .
You should have received a copy of the GNU General Public License
along with this program ; if not , write to the Free Software
Foundation , Inc . , 59 Temple Place - Suite 330 , Boston , MA 02111 - 1307 , USA .
*/
// refresh.h -- public interface to refresh functions
2005-12-22 20:35:04 +00:00
// default soldier colors
# define TOP_DEFAULT 1
# define BOTTOM_DEFAULT 6
# define TOP_RANGE (TOP_DEFAULT<<4)
# define BOTTOM_RANGE (BOTTOM_DEFAULT<<4)
2004-08-23 00:15:46 +00:00
2007-05-25 22:16:29 +00:00
extern int r_framecount ;
2004-08-23 00:15:46 +00:00
struct msurface_s ;
2010-07-11 10:53:13 +00:00
struct batch_s ;
2010-11-11 18:22:49 +00:00
struct model_s ;
struct texnums_s ;
struct texture_s ;
2004-08-23 00:15:46 +00:00
2014-10-05 20:04:11 +00:00
static const texid_t r_nulltex = NULL ;
2009-11-04 21:16:50 +00:00
2012-04-09 19:12:12 +00:00
# if 1 || defined(MINIMAL) || defined(D3DQUAKE) || defined(ANDROID)
2009-11-04 21:16:50 +00:00
# define sizeof_index_t 2
# endif
# if sizeof_index_t == 2
# define GL_INDEX_TYPE GL_UNSIGNED_SHORT
# define D3DFMT_QINDEX D3DFMT_INDEX16
typedef unsigned short index_t ;
2010-05-01 22:47:47 +00:00
# define MAX_INDICIES 0xffff
2009-11-04 21:16:50 +00:00
# else
# define GL_INDEX_TYPE GL_UNSIGNED_INT
# define D3DFMT_QINDEX D3DFMT_INDEX32
typedef unsigned int index_t ;
2010-05-01 22:47:47 +00:00
# define MAX_INDICIES 0xffffffff
2009-11-04 21:16:50 +00:00
# endif
2004-08-23 00:15:46 +00:00
//=============================================================================
2011-04-20 23:05:45 +00:00
//the eye doesn't see different colours in the same proportion.
//must add to slightly less than 1
# define NTSC_RED 0.299
# define NTSC_GREEN 0.587
# define NTSC_BLUE 0.114
# define NTSC_SUM (NTSC_RED + NTSC_GREEN + NTSC_BLUE)
2005-08-26 22:56:51 +00:00
typedef enum {
RT_MODEL ,
RT_POLY ,
RT_SPRITE ,
RT_BEAM ,
RT_RAIL_CORE ,
RT_RAIL_RINGS ,
RT_LIGHTNING ,
RT_PORTALSURFACE , // doesn't draw anything, just info for portals
RT_MAX_REF_ENTITY_TYPE
} refEntityType_t ;
2004-08-23 00:15:46 +00:00
2014-03-30 08:55:06 +00:00
typedef unsigned int skinid_t ; //skin 0 is 'unused'
2011-10-27 15:46:36 +00:00
struct dlight_s ;
2004-08-23 00:15:46 +00:00
typedef struct entity_s
{
int keynum ; // for matching entities in different frames
vec3_t origin ;
2005-06-04 04:20:20 +00:00
vec3_t angles ;
2004-12-24 08:45:56 +00:00
vec3_t axis [ 3 ] ;
2011-09-03 03:49:43 +00:00
vec4_t shaderRGBAf ; /*colormod+alpha, available for shaders to mix*/
float shaderTime ; /*timestamp, for syncing shader times to spawns*/
vec3_t glowmod ; /*meant to be a multiplier for the fullbrights*/
2004-08-23 00:15:46 +00:00
2011-09-03 03:49:43 +00:00
int light_known ; /*bsp lighting has been caled*/
vec3_t light_avg ; /*midpoint level*/
2011-04-30 17:21:10 +00:00
vec3_t light_range ; /*avg + this = max, avg - this = min*/
vec3_t light_dir ;
2004-08-23 00:15:46 +00:00
vec3_t oldorigin ;
vec3_t oldangles ;
struct model_s * model ; // NULL = no model
int skinnum ; // for Alias models
2014-03-30 08:55:06 +00:00
skinid_t customskin ; // quake3 style skins
2004-08-23 00:15:46 +00:00
------------------------------------------------------------------------
r4169 | acceptthis | 2013-01-17 08:55:12 +0000 (Thu, 17 Jan 2013) | 31 lines
removed MAX_VISEDICTS limit.
PEXT2_REPLACEMENTDELTAS tweaked, now has 4 million entity limit. still not enabled by default.
TE_BEAM now maps to a separate TEQW_BEAM to avoid conflicts with QW.
added android multitouch emulation for windows/rawinput (in_simulatemultitouch).
split topcolor/bottomcolor from scoreboard, for dp's colormap|1024 feature.
now using utf-8 for windows consoles.
qcc warnings/errors now give clickable console links for quick+easy editing.
disabled menutint when the currently active item changes contrast or gamma (for OneManClan).
Added support for drawfont/drawfontscale.
tweaked the qcvm a little to reduce the number of pointers.
.doll file loading. still experimental and will likely crash. requires csqc active, even if its a dummy progs. this will be fixed in time. Still other things that need cleaning up.
windows: gl_font "?" shows the standard windows font-selection dialog, and can be used to select windows fonts. not all work. and you probably don't want to use windings.
fixed splitscreen support when playing mvds. added mini-scoreboards to splitscreen.
editor/debugger now shows asm if there's no linenumber info. also, pressing f1 for help shows the shortcuts.
Added support for .framegroups files for psk(psa) and iqm formats.
True support for ezquake's colour codes. Mutually exclusive with background colours.
path command output slightly more readable.
added support for digest_hex (MD4, SHA1, CRC16).
skingroups now colourmap correctly.
Fix terrain colour hints, and litdata from the wrong bsp.
fix ftp dual-homed issue. support epsv command, and enable ipv6 (eprt still not supported).
remove d3d11 compilation from the makefile. the required headers are not provided by mingw, and are not available to the build bot, so don't bother.
fix v *= v.x and similar opcodes.
fteqcc: fixed support for áéÃóú type chars in names. utf-8 files now properly supported (even with the utf-8 bom/identifier). utf-16 also supported.
fteqcc: fixed '#if 1 == 3 && 4' parsing.
fteqcc: -Werror acts on the warning, rather than as a separate error. Line numbers are thus more readable.
fteqcc: copyright message now includes compile date instead.
fteqccgui: the treeview control is now coloured depending on whether there were warnings/errors in the last compile.
fteqccgui: the output window is now focused and scrolls down as compilation progresses.
pr_dumpplatform command dumps out some pragmas to convert more serious warnings to errors. This is to avoid the infamous 'fteqcc sucks cos my code sucks' issue.
rewrote prespawn/modelist/soundlist code. server tracks progress now.
------------------------------------------------------------------------
git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@4167 fc73d0e0-1445-4013-8a0c-d673dee63da5
2013-03-12 22:29:40 +00:00
int playerindex ; //for qw skins
int topcolour ; //colourmapping
int bottomcolour ; //colourmapping
2014-09-17 03:04:08 +00:00
# ifdef HEXEN2
------------------------------------------------------------------------
r4169 | acceptthis | 2013-01-17 08:55:12 +0000 (Thu, 17 Jan 2013) | 31 lines
removed MAX_VISEDICTS limit.
PEXT2_REPLACEMENTDELTAS tweaked, now has 4 million entity limit. still not enabled by default.
TE_BEAM now maps to a separate TEQW_BEAM to avoid conflicts with QW.
added android multitouch emulation for windows/rawinput (in_simulatemultitouch).
split topcolor/bottomcolor from scoreboard, for dp's colormap|1024 feature.
now using utf-8 for windows consoles.
qcc warnings/errors now give clickable console links for quick+easy editing.
disabled menutint when the currently active item changes contrast or gamma (for OneManClan).
Added support for drawfont/drawfontscale.
tweaked the qcvm a little to reduce the number of pointers.
.doll file loading. still experimental and will likely crash. requires csqc active, even if its a dummy progs. this will be fixed in time. Still other things that need cleaning up.
windows: gl_font "?" shows the standard windows font-selection dialog, and can be used to select windows fonts. not all work. and you probably don't want to use windings.
fixed splitscreen support when playing mvds. added mini-scoreboards to splitscreen.
editor/debugger now shows asm if there's no linenumber info. also, pressing f1 for help shows the shortcuts.
Added support for .framegroups files for psk(psa) and iqm formats.
True support for ezquake's colour codes. Mutually exclusive with background colours.
path command output slightly more readable.
added support for digest_hex (MD4, SHA1, CRC16).
skingroups now colourmap correctly.
Fix terrain colour hints, and litdata from the wrong bsp.
fix ftp dual-homed issue. support epsv command, and enable ipv6 (eprt still not supported).
remove d3d11 compilation from the makefile. the required headers are not provided by mingw, and are not available to the build bot, so don't bother.
fix v *= v.x and similar opcodes.
fteqcc: fixed support for áéÃóú type chars in names. utf-8 files now properly supported (even with the utf-8 bom/identifier). utf-16 also supported.
fteqcc: fixed '#if 1 == 3 && 4' parsing.
fteqcc: -Werror acts on the warning, rather than as a separate error. Line numbers are thus more readable.
fteqcc: copyright message now includes compile date instead.
fteqccgui: the treeview control is now coloured depending on whether there were warnings/errors in the last compile.
fteqccgui: the output window is now focused and scrolls down as compilation progresses.
pr_dumpplatform command dumps out some pragmas to convert more serious warnings to errors. This is to avoid the infamous 'fteqcc sucks cos my code sucks' issue.
rewrote prespawn/modelist/soundlist code. server tracks progress now.
------------------------------------------------------------------------
git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@4167 fc73d0e0-1445-4013-8a0c-d673dee63da5
2013-03-12 22:29:40 +00:00
int h2playerclass ; //hexen2's quirky colourmapping
2014-09-17 03:04:08 +00:00
# endif
2004-08-23 00:15:46 +00:00
2012-07-20 01:46:05 +00:00
// struct efrag_s *efrag; // linked list of efrags (FIXME)
// int visframe; // last frame this entity was
2004-08-23 00:15:46 +00:00
// found in an active leaf
// only used for static objects
2012-07-20 01:46:05 +00:00
// int dlightframe; // dynamic lighting
// int dlightbits;
2004-08-23 00:15:46 +00:00
// FIXME: could turn these into a union
2012-07-20 01:46:05 +00:00
// int trivial_accept;
// struct mnode_s *topnode; // for bmodels, first world node
2004-08-23 00:15:46 +00:00
// that splits bmodel, or NULL if
// not split
2008-12-23 02:55:20 +00:00
framestate_t framestate ;
2005-04-16 16:21:27 +00:00
2004-08-23 00:15:46 +00:00
int flags ;
2005-08-26 22:56:51 +00:00
refEntityType_t rtype ;
float rotation ;
2005-02-09 19:32:09 +00:00
struct shader_s * forcedshader ;
2004-08-23 00:15:46 +00:00
# ifdef PEXT_SCALE
float scale ;
# endif
# ifdef PEXT_FATNESS
float fatness ;
# endif
# ifdef PEXT_HEXEN2
int drawflags ;
int abslight ;
2005-12-22 21:46:28 +00:00
# endif
2004-08-23 00:15:46 +00:00
} entity_t ;
2014-03-30 08:55:06 +00:00
# define MAX_GEOMSETS 32
2015-01-12 12:28:13 +00:00
# define Q1UNSPECIFIED 0x00ffffff //0xffRRGGBB or 0x0000000V are both valid values. so this is an otherwise-illegal value to say its not been set.
2014-03-30 08:55:06 +00:00
typedef struct
{
char skinname [ MAX_QPATH ] ;
int nummappings ;
int maxmappings ;
qbyte geomset [ MAX_GEOMSETS ] ; //allows selecting a single set of geometry from alternatives. this might be a can of worms.
2014-09-08 23:47:19 +00:00
char qwskinname [ MAX_QPATH ] ;
struct qwskin_s * qwskin ;
2015-01-12 12:28:13 +00:00
unsigned int q1upper ; //Q1UNSPECIFIED
unsigned int q1lower ; //Q1UNSPECIFIED
2014-03-30 08:55:06 +00:00
struct
{
char surface [ MAX_QPATH ] ;
shader_t * shader ;
texnums_t texnums ;
int needsfree ; //which textures need to be freed.
} mappings [ 1 ] ;
} skinfile_t ;
2013-10-29 17:38:22 +00:00
// plane_t structure
typedef struct mplane_s
{
vec3_t normal ;
float dist ;
qbyte type ; // for texture axis selection and fast side tests
qbyte signbits ; // signx + signy<<1 + signz<<1
qbyte pad [ 2 ] ;
} mplane_t ;
# define MAXFRUSTUMPLANES 7 //4 side, 1 near, 1 far (fog), 1 water plane.
2014-03-30 08:55:06 +00:00
typedef struct
{
//note: uniforms expect specific padding/ordering. be really careful with reordering this
vec3_t colour ; //w_fog[0].xyz
float alpha ; //w_fog[0].w scales clamped fog value
float density ; //w_fog[1].x egads, everyone has a different opinion.
float depthbias ; //w_fog[1].y distance until the fog actually starts
float glslpad1 ; //w_fog[1].z
float glslpad2 ; //w_fog[1].w
// float alpha;
// float start;
// float end;
// float height;
// float fadedepth;
float time ; //timestamp for when its current.
} fogstate_t ;
void CL_BlendFog ( fogstate_t * result , fogstate_t * oldf , float time , fogstate_t * newf ) ;
void CL_ResetFog ( void ) ;
2014-08-03 14:47:47 +00:00
typedef struct {
char texname [ MAX_QPATH ] ;
} rtname_t ;
# define R_MAX_RENDERTARGETS 8
2014-08-25 07:35:41 +00:00
# ifndef R_MAX_RECURSE
2013-12-29 22:48:28 +00:00
# define R_MAX_RECURSE 6
2014-08-25 07:35:41 +00:00
# endif
2013-06-23 02:17:02 +00:00
# define RDFD_FOV 1
2004-08-23 00:15:46 +00:00
typedef struct
{
2013-11-21 23:02:28 +00:00
vrect_t grect ; // game rectangle. fullscreen except for csqc/splitscreen/hud.
vrect_t vrect ; // subwindow in grect for 3d view. equal to grect if no hud.
2010-07-11 02:22:39 +00:00
vec3_t pvsorigin ; /*render the view using this point for pvs (useful for mirror views)*/
vec3_t vieworg ; /*logical view center*/
2004-08-23 00:15:46 +00:00
vec3_t viewangles ;
2010-07-11 02:22:39 +00:00
vec3_t viewaxis [ 3 ] ; /*forward, left, up (NOT RIGHT)*/
2004-08-23 00:15:46 +00:00
2013-06-23 02:17:02 +00:00
float fov_x , fov_y , afov ;
2004-08-23 00:15:46 +00:00
2013-06-23 02:17:02 +00:00
qboolean drawsbar ;
2014-05-30 03:57:30 +00:00
qboolean drawcrosshair ;
2013-06-23 02:17:02 +00:00
int flags ; //(Q2)RDF_ flags
int dirty ;
2004-08-23 00:15:46 +00:00
2013-06-23 02:17:02 +00:00
playerview_t * playerview ;
// int currentplayernum;
2005-02-09 19:32:09 +00:00
float time ;
2012-05-14 01:41:08 +00:00
// float waterheight; //updated by the renderer. stuff sitting at this height generate ripple effects
2005-07-14 01:57:34 +00:00
2010-07-11 02:22:39 +00:00
float m_projection [ 16 ] ;
float m_view [ 16 ] ;
2013-10-29 17:38:22 +00:00
mplane_t frustum [ MAXFRUSTUMPLANES ] ;
int frustum_numplanes ;
2014-03-30 08:55:06 +00:00
fogstate_t globalfog ;
2015-04-27 12:51:42 +00:00
float hdr_value ;
2011-03-31 02:32:32 +00:00
2013-11-21 23:02:28 +00:00
pxrect_t pxrect ; /*vrect, but in pixels rather than virtual coords*/
2010-07-11 02:22:39 +00:00
qboolean externalview ; /*draw external models and not viewmodels*/
2013-12-29 22:48:28 +00:00
int recurse ; /*in a mirror/portal/half way through drawing something else*/
2012-07-05 19:42:36 +00:00
qboolean forcevis ; /*if true, vis comes from the forcedvis field instead of recalculated*/
2013-10-08 14:28:11 +00:00
unsigned int flipcull ; /*reflected/flipped view, requires inverted culling (should be set to SHADER_CULL_FLIPPED or 0)*/
2010-07-11 02:22:39 +00:00
qboolean useperspective ; /*not orthographic*/
2011-10-27 15:46:36 +00:00
2014-08-03 14:47:47 +00:00
rtname_t rt_destcolour [ R_MAX_RENDERTARGETS ] ; /*used for 2d. written by 3d*/
rtname_t rt_sourcecolour ; /*read by 2d. not used for 3d. */
rtname_t rt_depth ; /*read by 2d. used by 3d (renderbuffer used if not set)*/
rtname_t rt_ripplemap ; /*read by 2d. used by 3d (internal ripplemap buffer used if not set)*/
2012-07-05 19:42:36 +00:00
qbyte * forcedvis ;
2014-06-02 16:50:40 +00:00
qboolean areabitsknown ;
qbyte areabits [ MAX_MAP_AREA_BYTES ] ;
2013-10-29 17:38:22 +00:00
struct
{
qboolean defaulted ;
vec3_t origin ;
vec3_t forward ;
vec3_t right ;
vec3_t up ;
int inwater ;
} audio ;
2004-08-23 00:15:46 +00:00
} refdef_t ;
extern refdef_t r_refdef ;
extern vec3_t r_origin , vpn , vright , vup ;
extern struct texture_s * r_notexture_mip ;
extern entity_t r_worldentity ;
2013-10-08 14:28:11 +00:00
void BE_GenModelBatches ( struct batch_s * * batches , const struct dlight_s * dl , unsigned int bemode ) ; //if dl, filters based upon the dlight.
2011-04-23 20:37:20 +00:00
2009-11-07 13:29:15 +00:00
//gl_alias.c
2014-09-08 23:47:19 +00:00
void R_GAliasFlushSkinCache ( qboolean final ) ;
2010-08-28 17:14:38 +00:00
void R_GAlias_DrawBatch ( struct batch_s * batch ) ;
void R_GAlias_GenerateBatches ( entity_t * e , struct batch_s * * batches ) ;
2011-07-30 14:14:56 +00:00
void R_LightArraysByte_BGR ( const entity_t * entity , vecV_t * coords , byte_vec4_t * colours , int vertcount , vec3_t * normals ) ;
2011-10-27 15:46:36 +00:00
void R_LightArrays ( const entity_t * entity , vecV_t * coords , vec4_t * colours , int vertcount , vec3_t * normals , float scale ) ;
2009-11-07 13:29:15 +00:00
2010-11-11 18:22:49 +00:00
void R_DrawSkyChain ( struct batch_s * batch ) ; /*called from the backend, and calls back into it*/
2015-05-03 19:57:46 +00:00
void R_InitSky ( shader_t * shader , const char * skyname , qbyte * src , unsigned int width , unsigned int height ) ; /*generate q1 sky texnums*/
2010-11-11 18:22:49 +00:00
2015-03-03 00:14:43 +00:00
void R_Clutter_Emit ( struct batch_s * * batches ) ;
void R_Clutter_Purge ( void ) ;
2009-11-07 13:29:15 +00:00
//r_surf.c
2014-10-05 20:04:11 +00:00
void Surf_NewMap ( void ) ;
void Surf_PreNewMap ( void ) ;
2014-03-30 08:55:06 +00:00
void Surf_SetupFrame ( void ) ; //determine pvs+viewcontents
2009-11-07 13:29:15 +00:00
void Surf_DrawWorld ( void ) ;
2010-11-02 23:17:25 +00:00
void Surf_GenBrushBatches ( struct batch_s * * batches , entity_t * ent ) ;
2009-11-07 13:29:15 +00:00
void Surf_StainSurf ( struct msurface_s * surf , float * parms ) ;
void Surf_AddStain ( vec3_t org , float red , float green , float blue , float radius ) ;
void Surf_LessenStains ( void ) ;
void Surf_WipeStains ( void ) ;
void Surf_DeInit ( void ) ;
2010-07-13 09:49:38 +00:00
void Surf_Clear ( struct model_s * mod ) ;
2012-11-27 03:23:19 +00:00
void Surf_BuildLightmaps ( void ) ; //enables Surf_BuildModelLightmaps, calls it for each bsp.
void Surf_ClearLightmaps ( void ) ; //stops Surf_BuildModelLightmaps from working.
void Surf_BuildModelLightmaps ( struct model_s * m ) ; //rebuild lightmaps for a single bsp. beware of submodels.
2011-04-30 17:21:10 +00:00
void Surf_RenderDynamicLightmaps ( struct msurface_s * fa ) ;
void Surf_RenderAmbientLightmaps ( struct msurface_s * fa , int ambient ) ;
2009-11-07 13:29:15 +00:00
int Surf_LightmapShift ( struct model_s * model ) ;
2015-04-14 23:12:17 +00:00
# define LMBLOCK_SIZE_MAX 2048 //single axis
2009-11-07 13:29:15 +00:00
typedef struct glRect_s {
2013-10-29 17:38:22 +00:00
unsigned short l , t , w , h ;
2009-11-07 13:29:15 +00:00
} glRect_t ;
typedef unsigned char stmap ;
struct mesh_s ;
typedef struct {
2012-07-05 19:42:36 +00:00
texid_t lightmap_texture ;
2009-11-07 13:29:15 +00:00
qboolean modified ;
2011-05-20 04:10:46 +00:00
qboolean external ;
2012-09-30 05:52:03 +00:00
qboolean hasdeluxe ;
2012-07-05 19:42:36 +00:00
int width ;
int height ;
2009-11-07 13:29:15 +00:00
glRect_t rectchange ;
2012-07-05 19:42:36 +00:00
qbyte * lightmaps ; //[4*LMBLOCK_WIDTH*LMBLOCK_HEIGHT];
stmap * stainmaps ; //[3*LMBLOCK_WIDTH*LMBLOCK_HEIGHT]; //rgb no a. added to lightmap for added (hopefully) speed.
2009-11-07 13:29:15 +00:00
} lightmapinfo_t ;
extern lightmapinfo_t * * lightmap ;
extern int numlightmaps ;
2012-07-05 19:42:36 +00:00
//extern texid_t *lightmap_textures;
//extern texid_t *deluxmap_textures;
Fixes, workarounds, and breakages. Hexen2 should work much better (-hexen2 says no mission pack, -portals says h2mp). Started working on splitting bigcoords per client, far too much work still to go on that. Removed gl_ztrick entirely. Enabled csprogs download by default. Added client support for fitzquake's 666 protocol, needs testing, some cleanup for dp protocols too, no server support, couldn't selectively enable it anyway. Now attempting to cache shadow meshes for explosions and stuff. Played with lightmaps a little, should potentially run a little faster on certain (intel?) cards. Tweeked npfte a little to try to avoid deadlocks and crashes. Fixed sky worldspawn parsing. Added h2mp's model format. Fixed baseline issue in q2 client, made servers generate q2 baselines. MOVETYPE_PUSH will not rotate extra if rotation is forced. Made status command show allowed client types. Changed lighting on weapons - should now be shaded.
git-svn-id: https://svn.code.sf.net/p/fteqw/code/branches/wip@3572 fc73d0e0-1445-4013-8a0c-d673dee63da5
2010-08-11 03:36:31 +00:00
extern int lightmap_bytes ; // 1, 3, or 4
extern qboolean lightmap_bgra ; /*true=bgra, false=rgba*/
2015-03-03 00:14:43 +00:00
2015-04-21 04:12:00 +00:00
void QDECL Surf_RebuildLightmap_Callback ( struct cvar_s * var , char * oldvalue ) ;
2009-11-07 13:29:15 +00:00
2010-07-11 02:22:39 +00:00
void R_SetSky ( char * skyname ) ; /*override all sky shaders*/
2009-11-07 13:29:15 +00:00
2009-11-04 21:16:50 +00:00
# if defined(GLQUAKE)
2004-08-23 00:15:46 +00:00
void GLR_Init ( void ) ;
void GLR_InitTextures ( void ) ;
void GLR_InitEfrags ( void ) ;
void GLR_RenderView ( void ) ; // must set r_refdef first
// called whenever r_refdef or vid change
2013-12-29 22:48:28 +00:00
void GLR_DrawPortal ( struct batch_s * batch , struct batch_s * * blist , struct batch_s * depthmasklist [ 2 ] , int portaltype ) ;
2004-08-23 00:15:46 +00:00
void GLR_PushDlights ( void ) ;
void GLR_DrawWaterSurfaces ( void ) ;
2005-06-22 17:10:13 +00:00
void GLVID_DeInit ( void ) ;
void GLR_DeInit ( void ) ;
void GLSCR_DeInit ( void ) ;
2009-11-04 21:16:50 +00:00
void GLVID_Console_Resize ( void ) ;
2004-08-23 00:15:46 +00:00
# endif
2012-05-09 15:30:53 +00:00
int R_LightPoint ( vec3_t p ) ;
void R_RenderDlights ( void ) ;
2004-08-23 00:15:46 +00:00
2009-11-04 21:16:50 +00:00
enum imageflags
{
/*warning: many of these flags only apply the first time it is requested*/
2014-10-05 20:04:11 +00:00
IF_CLAMP = 1 < < 0 , //disable texture coord wrapping.
IF_NOMIPMAP = 1 < < 1 , //disable mipmaps.
IF_NEAREST = 1 < < 2 , //force nearest
IF_LINEAR = 1 < < 3 , //force linear
IF_UIPIC = 1 < < 4 , //subject to texturemode2d
/*WARNING: If the above are changed, be sure to change shader pass flags*/
IF_NOPICMIP = 1 < < 5 ,
2014-10-11 19:39:45 +00:00
IF_NOALPHA = 1 < < 6 , /*hint rather than requirement*/
2014-10-05 20:04:11 +00:00
IF_NOGAMMA = 1 < < 7 ,
IF_3DMAP = 1 < < 8 , /*waning - don't test directly*/
IF_CUBEMAP = 1 < < 9 , /*waning - don't test directly*/
IF_TEXTYPE = ( 1 < < 8 ) | ( 1 < < 9 ) , /*0=2d, 1=3d, 2=cubeface, 3=?*/
IF_TEXTYPESHIFT = 8 , /*0=2d, 1=3d, 2-7=cubeface*/
IF_MIPCAP = 1 < < 10 ,
2014-04-24 01:53:01 +00:00
IF_PREMULTIPLYALPHA = 1 < < 12 , //rgb *= alpha
2015-04-14 23:12:17 +00:00
IF_HIGHPRIORITY = 1 < < 23 ,
IF_LOWPRIORITY = 1 < < 24 ,
IF_LOADNOW = 1 < < 25 , /*hit the disk now, and delay the gl load until its actually needed. this is used only so that the width+height are known in advance*/
2014-10-05 20:04:11 +00:00
IF_NOPCX = 1 < < 26 , /*block pcx format. meaning qw skins can use team colours and cropping*/
IF_TRYBUMP = 1 < < 27 , /*attempt to load _bump if the specified _norm texture wasn't found*/
2014-08-03 14:47:47 +00:00
IF_RENDERTARGET = 1 < < 28 , /*never loaded from disk, loading can't fail*/
2014-10-05 20:04:11 +00:00
IF_EXACTEXTENSION = 1 < < 29 , /*don't mangle extensions, use what is specified and ONLY that*/
IF_NOREPLACE = 1 < < 30 , /*don't load a replacement, for some reason*/
2015-04-14 23:12:17 +00:00
IF_NOWORKER = 1u < < 31 /*don't pass the work to a loader thread. this gives fully synchronous loading. only valid from the main thread.*/
2009-11-04 21:16:50 +00:00
} ;
2004-08-23 00:15:46 +00:00
2014-10-05 20:04:11 +00:00
# define R_LoadTexture8(id,w,h,d,f,t) Image_GetTexture(id, NULL, f, d, NULL, w, h, t?TF_TRANS8:TF_SOLID8)
# define R_LoadTexture32(id,w,h,d,f) Image_GetTexture(id, NULL, f, d, NULL, w, h, TF_RGBA32)
# define R_LoadTextureFB(id,w,h,d,f) Image_GetTexture(id, NULL, f, d, NULL, w, h, TF_TRANS8_FULLBRIGHT)
# define R_LoadTexture(id,w,h,fmt,d,fl) Image_GetTexture(id, NULL, fl, d, NULL, w, h, fmt)
image_t * Image_FindTexture ( const char * identifier , const char * subpath , unsigned int flags ) ;
image_t * Image_CreateTexture ( const char * identifier , const char * subpath , unsigned int flags ) ;
image_t * Image_GetTexture ( const char * identifier , const char * subpath , unsigned int flags , void * fallbackdata , void * fallbackpalette , int fallbackwidth , int fallbackheight , uploadfmt_t fallbackfmt ) ;
2015-03-03 00:14:43 +00:00
qboolean Image_UnloadTexture ( image_t * tex ) ; //true if it did something.
void Image_DestroyTexture ( image_t * tex ) ;
2014-10-05 20:04:11 +00:00
void Image_Upload ( texid_t tex , uploadfmt_t fmt , void * data , void * palette , int width , int height , unsigned int flags ) ;
void Image_Init ( void ) ;
void Image_Shutdown ( void ) ;
image_t * Image_LoadTexture ( const char * identifier , int width , int height , uploadfmt_t fmt , void * data , unsigned int flags ) ;
# ifdef D3D9QUAKE
void D3D9_UpdateFiltering ( image_t * imagelist , int filtermip [ 3 ] , int filterpic [ 3 ] , int mipcap [ 2 ] , float anis ) ;
qboolean D3D9_LoadTextureMips ( texid_t tex , struct pendingtextureinfo * mips ) ;
void D3D9_DestroyTexture ( texid_t tex ) ;
2009-11-04 21:16:50 +00:00
# endif
2014-10-05 20:04:11 +00:00
# ifdef D3D11QUAKE
void D3D11_UpdateFiltering ( image_t * imagelist , int filtermip [ 3 ] , int filterpic [ 3 ] , int mipcap [ 2 ] , float anis ) ;
qboolean D3D11_LoadTextureMips ( texid_t tex , struct pendingtextureinfo * mips ) ;
void D3D11_DestroyTexture ( texid_t tex ) ;
2009-11-04 21:16:50 +00:00
# endif
2014-10-05 20:04:11 +00:00
//extern int image_width, image_height;
texid_t R_LoadReplacementTexture ( const char * name , const char * subpath , unsigned int flags , void * lowres , int lowreswidth , int lowresheight , uploadfmt_t fmt ) ;
2014-03-30 08:55:06 +00:00
texid_tf R_LoadHiResTexture ( const char * name , const char * subpath , unsigned int flags ) ;
texid_tf R_LoadBumpmapTexture ( const char * name , const char * subpath ) ;
2014-10-05 20:04:11 +00:00
void R_LoadNumberedLightTexture ( struct dlight_s * dl , int cubetexnum ) ;
2009-11-04 21:16:50 +00:00
2013-12-29 22:48:28 +00:00
qbyte * Read32BitImageFile ( qbyte * buf , int len , int * width , int * height , qboolean * hasalpha , char * fname ) ;
2009-11-04 21:16:50 +00:00
extern texid_t particletexture ;
extern texid_t particlecqtexture ;
extern texid_t explosiontexture ;
extern texid_t balltexture ;
extern texid_t beamtexture ;
extern texid_t ptritexture ;
2007-05-25 22:16:29 +00:00
2014-03-30 08:55:06 +00:00
skinid_t Mod_RegisterSkinFile ( const char * skinname ) ;
skinid_t Mod_ReadSkinFile ( const char * skinname , const char * skintext ) ;
void Mod_WipeSkin ( skinid_t id ) ;
skinfile_t * Mod_LookupSkin ( skinid_t id ) ;
2013-10-29 17:38:22 +00:00
void Mod_Init ( qboolean initial ) ;
void Mod_Shutdown ( qboolean final ) ;
2014-03-30 08:55:06 +00:00
int Mod_TagNumForName ( struct model_s * model , const char * name ) ;
int Mod_SkinNumForName ( struct model_s * model , const char * name ) ;
int Mod_FrameNumForName ( struct model_s * model , const char * name ) ;
2013-07-14 12:22:51 +00:00
float Mod_GetFrameDuration ( struct model_s * model , int frameno ) ;
void Mod_ResortShaders ( void ) ;
void Mod_ClearAll ( void ) ;
2014-03-30 08:55:06 +00:00
struct model_s * Mod_FindName ( const char * name ) ;
2013-07-14 12:22:51 +00:00
void * Mod_Extradata ( struct model_s * mod ) ; // handles caching
2014-03-30 08:55:06 +00:00
void Mod_TouchModel ( const char * name ) ;
2011-05-27 17:59:31 +00:00
void Mod_RebuildLightmaps ( void ) ;
2004-08-23 00:15:46 +00:00
2015-05-03 19:57:46 +00:00
typedef struct
{
unsigned int * offsets ;
unsigned short * extents ;
unsigned char * styles ;
unsigned char * shifts ;
} lightmapoverrides_t ;
void Mod_LoadLighting ( struct model_s * loadmodel , qbyte * mod_base , lump_t * l , qboolean interleaveddeluxe , lightmapoverrides_t * overrides ) ;
2013-07-14 12:22:51 +00:00
struct mleaf_s * Mod_PointInLeaf ( struct model_s * model , float * p ) ;
2004-08-23 00:15:46 +00:00
2013-07-14 12:22:51 +00:00
void Mod_Think ( void ) ;
2014-10-05 20:04:11 +00:00
void Mod_NowLoadExternal ( struct model_s * loadmodel ) ;
2006-04-15 05:28:44 +00:00
void GLR_LoadSkys ( void ) ;
2009-11-04 21:16:50 +00:00
void R_BloomRegister ( void ) ;
2004-08-23 00:15:46 +00:00
2014-05-16 01:34:58 +00:00
int Mod_RegisterModelFormatText ( void * module , const char * formatname , char * magictext , qboolean ( QDECL * load ) ( struct model_s * mod , void * buffer , size_t fsize ) ) ;
int Mod_RegisterModelFormatMagic ( void * module , const char * formatname , unsigned int magic , qboolean ( QDECL * load ) ( struct model_s * mod , void * buffer , size_t fsize ) ) ;
void Mod_UnRegisterModelFormat ( void * module , int idx ) ;
void Mod_UnRegisterAllModelFormats ( void * module ) ;
2014-10-05 20:04:11 +00:00
void Mod_ModelLoaded ( void * ctx , void * data , size_t a , size_t b ) ;
2013-10-29 17:38:22 +00:00
2009-11-04 21:16:50 +00:00
# ifdef RUNTIMELIGHTING
2015-04-14 23:12:17 +00:00
struct relight_ctx_s ;
struct llightinfo_s ;
void LightFace ( struct relight_ctx_s * ctx , struct llightinfo_s * threadctx , int surfnum ) ; //version that is aware of bsp trees
void LightPlane ( struct relight_ctx_s * ctx , struct llightinfo_s * threadctx , qbyte surf_styles [ 4 ] , qbyte * surf_rgbsamples , qbyte * surf_deluxesamples , vec4_t surf_plane , vec4_t surf_texplanes [ 2 ] , vec2_t exactmins , vec2_t exactmaxs , int texmins [ 2 ] , int texsize [ 2 ] , float lmscale ) ; //special version that doesn't know what a face is or anything.
struct relight_ctx_s * LightStartup ( struct relight_ctx_s * ctx , struct model_s * model , qboolean shadows ) ;
void LightReloadEntities ( struct relight_ctx_s * ctx , char * entstring ) ;
void LightShutdown ( struct relight_ctx_s * ctx , struct model_s * mod ) ;
extern const size_t lightthreadctxsize ;
2009-11-04 21:16:50 +00:00
# endif
2005-10-16 03:56:32 +00:00
extern struct model_s * currentmodel ;
2004-08-23 00:15:46 +00:00
qboolean Media_ShowFilm ( void ) ;
void Media_CaptureDemoEnd ( void ) ;
void Media_RecordFrame ( void ) ;
2006-02-11 14:51:36 +00:00
qboolean Media_PausedDemo ( void ) ;
2012-11-27 03:23:19 +00:00
int Media_Capturing ( void ) ;
double Media_TweekCaptureFrameTime ( double oldtime , double time ) ;
2004-08-23 00:15:46 +00:00
2007-08-07 00:11:21 +00:00
void MYgluPerspective ( double fovx , double fovy , double zNear , double zFar ) ;
2010-11-10 03:32:47 +00:00
void R_PushDlights ( void ) ;
2009-11-04 21:16:50 +00:00
qbyte * R_MarkLeaves_Q1 ( void ) ;
qbyte * R_CalcVis_Q1 ( void ) ;
qbyte * R_MarkLeaves_Q2 ( void ) ;
qbyte * R_MarkLeaves_Q3 ( void ) ;
void R_SetFrustum ( float projmat [ 16 ] , float viewmat [ 16 ] ) ;
2010-02-06 01:25:04 +00:00
void R_SetRenderer ( rendererinfo_t * ri ) ;
2009-11-04 21:16:50 +00:00
void R_AnimateLight ( void ) ;
2015-04-27 12:51:42 +00:00
void R_UpdateHDR ( vec3_t org ) ;
2014-06-25 03:53:11 +00:00
void R_UpdateLightStyle ( unsigned int style , const char * stylestring , float r , float g , float b ) ;
2013-12-08 20:06:55 +00:00
struct texture_s * R_TextureAnimation ( int frame , struct texture_s * base ) ; //mostly deprecated, only lingers for rtlights so world only.
struct texture_s * R_TextureAnimation_Q2 ( struct texture_s * base ) ; //mostly deprecated, only lingers for rtlights so world only.
2004-08-23 00:15:46 +00:00
void RQ_Init ( void ) ;
2012-09-30 05:52:03 +00:00
void RQ_Shutdown ( void ) ;
2005-03-10 03:55:18 +00:00
2004-08-23 00:15:46 +00:00
void CLQ2_EntityEvent ( entity_state_t * es ) ;
void CLQ2_TeleporterParticles ( entity_state_t * es ) ;
void CLQ2_IonripperTrail ( vec3_t oldorg , vec3_t neworg ) ;
void CLQ2_TrackerTrail ( vec3_t oldorg , vec3_t neworg , int flags ) ;
void CLQ2_Tracker_Shell ( vec3_t org ) ;
void CLQ2_TagTrail ( vec3_t oldorg , vec3_t neworg , int flags ) ;
void CLQ2_FlagTrail ( vec3_t oldorg , vec3_t neworg , int flags ) ;
void CLQ2_TrapParticles ( entity_t * ent ) ;
void CLQ2_BfgParticles ( entity_t * ent ) ;
struct q2centity_s ;
void CLQ2_FlyEffect ( struct q2centity_s * ent , vec3_t org ) ;
void CLQ2_DiminishingTrail ( vec3_t oldorg , vec3_t neworg , struct q2centity_s * ent , unsigned int effects ) ;
void CLQ2_BlasterTrail2 ( vec3_t oldorg , vec3_t neworg ) ;
2009-04-01 22:03:56 +00:00
void WritePCXfile ( const char * filename , qbyte * data , int width , int height , int rowbytes , qbyte * palette , qboolean upload ) ; //data is 8bit.
2004-08-23 00:15:46 +00:00
qbyte * ReadPCXFile ( qbyte * buf , int length , int * width , int * height ) ;
2012-02-12 05:18:31 +00:00
qbyte * ReadTargaFile ( qbyte * buf , int length , int * width , int * height , qboolean * hasalpha , int asgrey ) ;
2004-08-23 00:15:46 +00:00
qbyte * ReadJPEGFile ( qbyte * infile , int length , int * width , int * height ) ;
2009-04-01 22:03:56 +00:00
qbyte * ReadPNGFile ( qbyte * buf , int length , int * width , int * height , const char * name ) ;
2004-08-23 00:15:46 +00:00
qbyte * ReadPCXPalette ( qbyte * buf , int len , qbyte * out ) ;
2015-04-14 23:12:17 +00:00
void Image_ResampleTexture ( unsigned * in , int inwidth , int inheight , unsigned * out , int outwidth , int outheight ) ;
2004-08-23 00:15:46 +00:00
void BoostGamma ( qbyte * rgba , int width , int height ) ;
2005-05-18 01:40:01 +00:00
void SaturateR8G8B8 ( qbyte * data , int size , float sat ) ;
2005-06-26 12:31:56 +00:00
void AddOcranaLEDsIndexed ( qbyte * image , int h , int w ) ;
2004-08-23 00:15:46 +00:00
void Renderer_Init ( void ) ;
2010-02-06 01:25:04 +00:00
void Renderer_Start ( void ) ;
qboolean Renderer_Started ( void ) ;
2014-03-30 08:55:06 +00:00
void R_ShutdownRenderer ( qboolean videotoo ) ;
2004-09-20 23:25:38 +00:00
void R_RestartRenderer_f ( void ) ; //this goes here so we can save some stack when first initing the sw renderer.
2004-08-23 00:15:46 +00:00
//used to live in glquake.h
2007-09-22 19:28:27 +00:00
qbyte GetPaletteIndex ( int red , int green , int blue ) ;
2004-08-23 00:15:46 +00:00
extern cvar_t r_norefresh ;
extern cvar_t r_drawentities ;
extern cvar_t r_drawworld ;
extern cvar_t r_drawviewmodel ;
2006-01-09 01:49:06 +00:00
extern cvar_t r_drawviewmodelinvis ;
2004-08-23 00:15:46 +00:00
extern cvar_t r_speeds ;
extern cvar_t r_waterwarp ;
extern cvar_t r_fullbright ;
extern cvar_t r_lightmap ;
2012-01-21 07:53:49 +00:00
extern cvar_t r_glsl_offsetmapping ;
2009-11-04 21:16:50 +00:00
extern cvar_t r_shadow_realtime_dlight , r_shadow_realtime_dlight_shadows ;
2012-12-04 19:37:57 +00:00
extern cvar_t r_shadow_realtime_dlight_ambient ;
extern cvar_t r_shadow_realtime_dlight_diffuse ;
extern cvar_t r_shadow_realtime_dlight_specular ;
2014-10-05 20:04:11 +00:00
extern cvar_t r_shadow_realtime_world , r_shadow_realtime_world_shadows , r_shadow_realtime_world_lightmaps ;
------------------------------------------------------------------------
r4169 | acceptthis | 2013-01-17 08:55:12 +0000 (Thu, 17 Jan 2013) | 31 lines
removed MAX_VISEDICTS limit.
PEXT2_REPLACEMENTDELTAS tweaked, now has 4 million entity limit. still not enabled by default.
TE_BEAM now maps to a separate TEQW_BEAM to avoid conflicts with QW.
added android multitouch emulation for windows/rawinput (in_simulatemultitouch).
split topcolor/bottomcolor from scoreboard, for dp's colormap|1024 feature.
now using utf-8 for windows consoles.
qcc warnings/errors now give clickable console links for quick+easy editing.
disabled menutint when the currently active item changes contrast or gamma (for OneManClan).
Added support for drawfont/drawfontscale.
tweaked the qcvm a little to reduce the number of pointers.
.doll file loading. still experimental and will likely crash. requires csqc active, even if its a dummy progs. this will be fixed in time. Still other things that need cleaning up.
windows: gl_font "?" shows the standard windows font-selection dialog, and can be used to select windows fonts. not all work. and you probably don't want to use windings.
fixed splitscreen support when playing mvds. added mini-scoreboards to splitscreen.
editor/debugger now shows asm if there's no linenumber info. also, pressing f1 for help shows the shortcuts.
Added support for .framegroups files for psk(psa) and iqm formats.
True support for ezquake's colour codes. Mutually exclusive with background colours.
path command output slightly more readable.
added support for digest_hex (MD4, SHA1, CRC16).
skingroups now colourmap correctly.
Fix terrain colour hints, and litdata from the wrong bsp.
fix ftp dual-homed issue. support epsv command, and enable ipv6 (eprt still not supported).
remove d3d11 compilation from the makefile. the required headers are not provided by mingw, and are not available to the build bot, so don't bother.
fix v *= v.x and similar opcodes.
fteqcc: fixed support for áéÃóú type chars in names. utf-8 files now properly supported (even with the utf-8 bom/identifier). utf-16 also supported.
fteqcc: fixed '#if 1 == 3 && 4' parsing.
fteqcc: -Werror acts on the warning, rather than as a separate error. Line numbers are thus more readable.
fteqcc: copyright message now includes compile date instead.
fteqccgui: the treeview control is now coloured depending on whether there were warnings/errors in the last compile.
fteqccgui: the output window is now focused and scrolls down as compilation progresses.
pr_dumpplatform command dumps out some pragmas to convert more serious warnings to errors. This is to avoid the infamous 'fteqcc sucks cos my code sucks' issue.
rewrote prespawn/modelist/soundlist code. server tracks progress now.
------------------------------------------------------------------------
git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@4167 fc73d0e0-1445-4013-8a0c-d673dee63da5
2013-03-12 22:29:40 +00:00
extern cvar_t r_shadow_shadowmapping ;
2012-12-04 19:37:57 +00:00
extern cvar_t r_editlights_import_radius ;
extern cvar_t r_editlights_import_ambient ;
extern cvar_t r_editlights_import_diffuse ;
extern cvar_t r_editlights_import_specular ;
2004-08-23 00:15:46 +00:00
extern cvar_t r_mirroralpha ;
extern cvar_t r_wateralpha ;
2014-08-15 02:20:41 +00:00
extern cvar_t r_lavaalpha ;
2014-08-25 07:35:41 +00:00
extern cvar_t r_slimealpha ;
extern cvar_t r_telealpha ;
2012-05-14 01:41:08 +00:00
extern cvar_t r_waterstyle ;
2012-11-27 03:23:19 +00:00
extern cvar_t r_lavastyle ;
2014-08-25 07:35:41 +00:00
extern cvar_t r_slimestyle ;
extern cvar_t r_telestyle ;
2004-08-23 00:15:46 +00:00
extern cvar_t r_dynamic ;
extern cvar_t r_novis ;
extern cvar_t r_netgraph ;
2011-10-27 15:46:36 +00:00
extern cvar_t r_deluxemapping ;
2004-08-23 00:15:46 +00:00
# ifdef R_XFLIP
extern cvar_t r_xflip ;
# endif
2011-09-03 03:49:43 +00:00
extern cvar_t r_lightprepass ;
2010-11-02 23:17:25 +00:00
extern cvar_t gl_maxdist ;
2010-11-11 18:22:49 +00:00
extern cvar_t r_clear ;
2004-08-23 00:15:46 +00:00
extern cvar_t gl_poly ;
extern cvar_t gl_affinemodels ;
2008-07-16 00:19:33 +00:00
extern cvar_t gl_nohwblend ;
2012-01-01 02:26:42 +00:00
extern cvar_t r_coronas , r_flashblend , r_flashblendscale ;
2005-06-22 17:10:13 +00:00
extern cvar_t r_lightstylesmooth ;
2011-04-20 23:05:45 +00:00
extern cvar_t r_lightstylesmooth_limit ;
2005-06-22 17:10:13 +00:00
extern cvar_t r_lightstylespeed ;
2015-04-14 23:12:17 +00:00
extern cvar_t r_lightstylescale ;
2004-08-23 00:15:46 +00:00
extern cvar_t gl_nocolors ;
extern cvar_t gl_load24bit ;
extern cvar_t gl_finish ;
extern cvar_t gl_max_size ;
extern cvar_t gl_playermip ;
2004-09-07 23:15:55 +00:00
2005-05-18 01:40:01 +00:00
extern cvar_t r_lightmap_saturation ;
2004-12-15 17:44:42 +00:00
enum {
RSPEED_TOTALREFRESH ,
2005-04-16 16:21:27 +00:00
RSPEED_LINKENTITIES ,
RSPEED_PROTOCOL ,
2004-12-15 17:44:42 +00:00
RSPEED_WORLDNODE ,
RSPEED_WORLD ,
2005-04-16 16:21:27 +00:00
RSPEED_DRAWENTITIES ,
2004-12-15 17:44:42 +00:00
RSPEED_STENCILSHADOWS ,
RSPEED_FULLBRIGHTS ,
RSPEED_DYNAMIC ,
RSPEED_PARTICLES ,
RSPEED_PARTICLESDRAW ,
RSPEED_PALETTEFLASHES ,
RSPEED_2D ,
RSPEED_SERVER ,
RSPEED_FINISH ,
RSPEED_MAX
} ;
2013-03-12 23:09:25 +00:00
extern int rspeeds [ RSPEED_MAX ] ;
2004-12-15 17:44:42 +00:00
enum {
RQUANT_MSECS , //old r_speeds
2015-03-03 00:14:43 +00:00
RQUANT_PRIMITIVEINDICIES ,
2011-02-25 04:22:14 +00:00
RQUANT_DRAWS ,
RQUANT_ENTBATCHES ,
RQUANT_WORLDBATCHES ,
RQUANT_2DBATCHES ,
2013-10-08 14:28:11 +00:00
2015-03-03 00:14:43 +00:00
RQUANT_SHADOWINDICIES ,
2004-12-15 17:44:42 +00:00
RQUANT_SHADOWEDGES ,
2013-10-08 14:28:11 +00:00
RQUANT_SHADOWSIDES ,
2004-12-15 17:44:42 +00:00
RQUANT_LITFACES ,
2013-10-08 14:28:11 +00:00
RQUANT_RTLIGHT_DRAWN ,
RQUANT_RTLIGHT_CULL_FRUSTUM ,
RQUANT_RTLIGHT_CULL_PVS ,
RQUANT_RTLIGHT_CULL_SCISSOR ,
2004-12-15 17:44:42 +00:00
RQUANT_MAX
} ;
2013-03-12 23:09:25 +00:00
extern int rquant [ RQUANT_MAX ] ;
2004-12-15 17:44:42 +00:00
2011-02-25 04:22:14 +00:00
# define RQuantAdd(type,quant) rquant[type] += quant
2004-12-15 17:44:42 +00:00
2010-07-11 02:22:39 +00:00
# if defined(NDEBUG) || !defined(_WIN32)
# define RSpeedLocals()
# define RSpeedMark()
# define RSpeedRemark()
# define RSpeedEnd(spt)
# else
2015-04-14 23:12:17 +00:00
# define RSpeedLocals() double rsp
# define RSpeedMark() double rsp = (r_speeds.ival>1)?Sys_DoubleTime()*1000000:0
2011-02-25 04:22:14 +00:00
# define RSpeedRemark() rsp = (r_speeds.ival>1)?Sys_DoubleTime()*1000000:0
2005-05-13 10:42:48 +00:00
2009-11-04 21:16:50 +00:00
# if defined(_WIN32) && defined(GLQUAKE)
extern void ( _stdcall * qglFinish ) ( void ) ;
2015-04-14 23:12:17 +00:00
# define RSpeedEnd(spt) do {if(r_speeds.ival > 1){if(r_speeds.ival > 2 && qglFinish)qglFinish(); rspeeds[spt] += (double)(Sys_DoubleTime()*1000000) - rsp;}}while (0)
2009-11-04 21:16:50 +00:00
# else
2011-02-25 04:22:14 +00:00
# define RSpeedEnd(spt) rspeeds[spt] += (r_speeds.ival>1)?Sys_DoubleTime()*1000000 - rsp:0
2009-11-04 21:16:50 +00:00
# endif
2010-07-11 10:53:13 +00:00
# endif