You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
601 lines
11 KiB
601 lines
11 KiB
6 years ago
|
/*
|
||
|
vid_sdl.c - SDL vid component
|
||
|
Copyright (C) 2018 a1batross
|
||
|
|
||
|
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 3 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.
|
||
|
*/
|
||
|
|
||
|
#include "r_local.h"
|
||
|
|
||
|
ref_api_t gEngfuncs;
|
||
|
ref_globals_t *gpGlobals;
|
||
|
ref_instance_t RI;
|
||
|
gl_globals_t tr;
|
||
|
ref_speeds_t r_stats;
|
||
|
byte *r_temppool;
|
||
|
cvar_t *gl_emboss_scale;
|
||
6 years ago
|
cvar_t *r_drawentities;
|
||
|
cvar_t *r_norefresh;
|
||
|
cvar_t *vid_gamma;
|
||
|
cvar_t *vid_brightness;
|
||
6 years ago
|
viddef_t vid;
|
||
6 years ago
|
static void GAME_EXPORT R_ClearScreen( void )
|
||
6 years ago
|
{
|
||
|
|
||
|
}
|
||
|
|
||
6 years ago
|
static qboolean GAME_EXPORT IsNormalPass( void )
|
||
6 years ago
|
{
|
||
|
return RP_NORMALPASS();
|
||
|
}
|
||
|
|
||
6 years ago
|
static void GAME_EXPORT R_IncrementSpeedsCounter( int type )
|
||
6 years ago
|
{
|
||
|
switch( type )
|
||
|
{
|
||
|
case RS_ACTIVE_TENTS:
|
||
|
r_stats.c_active_tents_count++;
|
||
|
break;
|
||
|
default:
|
||
|
gEngfuncs.Host_Error( "R_IncrementSpeedsCounter: unsupported type %d\n", type );
|
||
|
}
|
||
|
}
|
||
|
|
||
6 years ago
|
static const byte * GAME_EXPORT R_GetTextureOriginalBuffer( unsigned int idx )
|
||
6 years ago
|
{
|
||
|
/*gl_texture_t *glt = R_GetTexture( idx );
|
||
|
|
||
|
if( !glt || !glt->original || !glt->original->buffer )
|
||
|
return NULL;*/
|
||
|
|
||
|
return NULL;
|
||
|
}
|
||
|
|
||
|
/*
|
||
|
=============
|
||
|
CL_FillRGBA
|
||
|
|
||
|
=============
|
||
|
*/
|
||
6 years ago
|
static void GAME_EXPORT CL_FillRGBA( float _x, float _y, float _w, float _h, int r, int g, int b, int a )
|
||
6 years ago
|
{
|
||
6 years ago
|
vid.rendermode = kRenderTransAdd;
|
||
|
_TriColor4ub(r,g,b,a);
|
||
|
Draw_Fill(_x,_y,_w,_h);
|
||
6 years ago
|
}
|
||
|
|
||
|
/*
|
||
|
=============
|
||
|
pfnFillRGBABlend
|
||
|
|
||
|
=============
|
||
|
*/
|
||
|
static void GAME_EXPORT CL_FillRGBABlend( float _x, float _y, float _w, float _h, int r, int g, int b, int a )
|
||
|
{
|
||
6 years ago
|
vid.rendermode = kRenderTransAlpha;
|
||
|
_TriColor4ub(r,g,b,a);
|
||
|
Draw_Fill(_x,_y,_w,_h);
|
||
6 years ago
|
}
|
||
6 years ago
|
void Mod_UnloadTextures( model_t *mod );
|
||
6 years ago
|
|
||
6 years ago
|
qboolean GAME_EXPORT Mod_ProcessRenderData( model_t *mod, qboolean create, const byte *buf )
|
||
6 years ago
|
{
|
||
|
qboolean loaded = true;
|
||
|
|
||
|
if( create )
|
||
|
{
|
||
|
|
||
|
|
||
|
switch( mod->type )
|
||
|
{
|
||
|
case mod_studio:
|
||
6 years ago
|
//Mod_LoadStudioModel( mod, buf, loaded );
|
||
6 years ago
|
break;
|
||
|
case mod_sprite:
|
||
6 years ago
|
Mod_LoadSpriteModel( mod, buf, &loaded, mod->numtexinfo );
|
||
6 years ago
|
break;
|
||
|
case mod_alias:
|
||
|
//Mod_LoadAliasModel( mod, buf, &loaded );
|
||
|
break;
|
||
|
case mod_brush:
|
||
|
// Mod_LoadBrushModel( mod, buf, loaded );
|
||
|
break;
|
||
|
|
||
|
default: gEngfuncs.Host_Error( "Mod_LoadModel: unsupported type %d\n", mod->type );
|
||
|
}
|
||
|
}
|
||
|
|
||
|
if( loaded && gEngfuncs.drawFuncs->Mod_ProcessUserData )
|
||
|
gEngfuncs.drawFuncs->Mod_ProcessUserData( mod, create, buf );
|
||
|
|
||
6 years ago
|
if( !create )
|
||
|
Mod_UnloadTextures( mod );
|
||
6 years ago
|
|
||
|
return loaded;
|
||
|
}
|
||
|
|
||
6 years ago
|
|
||
|
static int GL_RefGetParm( int parm, int arg )
|
||
6 years ago
|
{
|
||
|
image_t *glt;
|
||
|
|
||
|
switch( parm )
|
||
|
{
|
||
|
case PARM_TEX_WIDTH:
|
||
|
glt = R_GetTexture( arg );
|
||
|
return glt->width;
|
||
|
case PARM_TEX_HEIGHT:
|
||
|
glt = R_GetTexture( arg );
|
||
|
return glt->height;
|
||
|
case PARM_TEX_SRC_WIDTH:
|
||
|
glt = R_GetTexture( arg );
|
||
|
return glt->srcWidth;
|
||
|
case PARM_TEX_SRC_HEIGHT:
|
||
|
glt = R_GetTexture( arg );
|
||
|
return glt->srcHeight;
|
||
6 years ago
|
case PARM_TEX_GLFORMAT:
|
||
|
glt = R_GetTexture( arg );
|
||
|
return 0; //glt->format;
|
||
|
case PARM_TEX_ENCODE:
|
||
|
glt = R_GetTexture( arg );
|
||
|
return 0; //glt->encode;
|
||
6 years ago
|
case PARM_TEX_MIPCOUNT:
|
||
|
glt = R_GetTexture( arg );
|
||
|
return glt->numMips;
|
||
|
case PARM_TEX_DEPTH:
|
||
|
glt = R_GetTexture( arg );
|
||
|
return glt->depth;
|
||
|
case PARM_TEX_SKYBOX:
|
||
|
Assert( arg >= 0 && arg < 6 );
|
||
|
return tr.skyboxTextures[arg];
|
||
|
case PARM_TEX_SKYTEXNUM:
|
||
6 years ago
|
return 0; //tr.skytexturenum;
|
||
6 years ago
|
case PARM_TEX_LIGHTMAP:
|
||
|
arg = bound( 0, arg, MAX_LIGHTMAPS - 1 );
|
||
|
return tr.lightmapTextures[arg];
|
||
|
case PARM_WIDESCREEN:
|
||
|
return gpGlobals->wideScreen;
|
||
|
case PARM_FULLSCREEN:
|
||
|
return gpGlobals->fullScreen;
|
||
|
case PARM_SCREEN_WIDTH:
|
||
|
return gpGlobals->width;
|
||
|
case PARM_SCREEN_HEIGHT:
|
||
|
return gpGlobals->height;
|
||
6 years ago
|
case PARM_TEX_TARGET:
|
||
|
glt = R_GetTexture( arg );
|
||
|
return 0; //glt->target;
|
||
|
case PARM_TEX_TEXNUM:
|
||
|
glt = R_GetTexture( arg );
|
||
|
return 0; //glt->texnum;
|
||
6 years ago
|
case PARM_TEX_FLAGS:
|
||
|
glt = R_GetTexture( arg );
|
||
|
return glt->flags;
|
||
6 years ago
|
case PARM_ACTIVE_TMU:
|
||
|
return 0; //glState.activeTMU;
|
||
6 years ago
|
case PARM_LIGHTSTYLEVALUE:
|
||
|
arg = bound( 0, arg, MAX_LIGHTSTYLES - 1 );
|
||
|
return tr.lightstylevalue[arg];
|
||
|
case PARM_MAX_IMAGE_UNITS:
|
||
6 years ago
|
return 0; //GL_MaxTextureUnits();
|
||
6 years ago
|
case PARM_REBUILD_GAMMA:
|
||
6 years ago
|
return 0;
|
||
6 years ago
|
case PARM_SURF_SAMPLESIZE:
|
||
|
if( arg >= 0 && arg < WORLDMODEL->numsurfaces )
|
||
|
return gEngfuncs.Mod_SampleSizeForFace( &WORLDMODEL->surfaces[arg] );
|
||
|
return LM_SAMPLE_SIZE;
|
||
6 years ago
|
case PARM_GL_CONTEXT_TYPE:
|
||
|
return 0; //glConfig.context;
|
||
|
case PARM_GLES_WRAPPER:
|
||
|
return 0; //glConfig.wrapper;
|
||
|
case PARM_STENCIL_ACTIVE:
|
||
|
return 0; //glState.stencilEnabled;
|
||
6 years ago
|
case PARM_SKY_SPHERE:
|
||
6 years ago
|
return ENGINE_GET_PARM_( parm, arg ) && !tr.fCustomSkybox;
|
||
6 years ago
|
default:
|
||
6 years ago
|
return ENGINE_GET_PARM_( parm, arg );
|
||
6 years ago
|
}
|
||
|
return 0;
|
||
|
}
|
||
|
|
||
6 years ago
|
static void GAME_EXPORT R_GetDetailScaleForTexture( int texture, float *xScale, float *yScale )
|
||
6 years ago
|
{
|
||
|
image_t *glt = R_GetTexture( texture );
|
||
|
|
||
|
if( xScale ) *xScale = glt->xscale;
|
||
|
if( yScale ) *yScale = glt->yscale;
|
||
|
}
|
||
|
|
||
6 years ago
|
static void GAME_EXPORT R_GetExtraParmsForTexture( int texture, byte *red, byte *green, byte *blue, byte *density )
|
||
6 years ago
|
{
|
||
|
image_t *glt = R_GetTexture( texture );
|
||
|
|
||
|
if( red ) *red = glt->fogParams[0];
|
||
|
if( green ) *green = glt->fogParams[1];
|
||
|
if( blue ) *blue = glt->fogParams[2];
|
||
|
if( density ) *density = glt->fogParams[3];
|
||
|
}
|
||
|
|
||
|
|
||
6 years ago
|
static void GAME_EXPORT R_SetCurrentEntity( cl_entity_t *ent )
|
||
6 years ago
|
{
|
||
|
RI.currententity = ent;
|
||
|
|
||
|
// set model also
|
||
|
if( RI.currententity != NULL )
|
||
|
{
|
||
|
RI.currentmodel = RI.currententity->model;
|
||
|
}
|
||
|
}
|
||
|
|
||
6 years ago
|
static void GAME_EXPORT R_SetCurrentModel( model_t *mod )
|
||
6 years ago
|
{
|
||
|
RI.currentmodel = mod;
|
||
|
}
|
||
|
|
||
6 years ago
|
static float GAME_EXPORT R_GetFrameTime( void )
|
||
6 years ago
|
{
|
||
|
return tr.frametime;
|
||
|
}
|
||
|
|
||
6 years ago
|
static const char * GAME_EXPORT GL_TextureName( unsigned int texnum )
|
||
6 years ago
|
{
|
||
|
return "";//return R_GetTexture( texnum )->name;
|
||
|
}
|
||
|
|
||
6 years ago
|
const byte * GAME_EXPORT GL_TextureData( unsigned int texnum )
|
||
6 years ago
|
{
|
||
|
// rgbdata_t *pic = R_GetTexture( texnum )->original;
|
||
|
|
||
|
//if( pic != NULL )
|
||
|
//return pic->buffer;
|
||
|
return NULL;
|
||
|
}
|
||
|
|
||
|
void Mod_BrushUnloadTextures( model_t *mod )
|
||
|
{
|
||
|
int i;
|
||
|
|
||
6 years ago
|
|
||
|
gEngfuncs.Con_Printf("Unloading world\n");
|
||
|
tr.map_unload = true;
|
||
|
|
||
6 years ago
|
for( i = 0; i < mod->numtextures; i++ )
|
||
|
{
|
||
|
texture_t *tx = mod->textures[i];
|
||
|
if( !tx || tx->gl_texturenum == tr.defaultTexture )
|
||
|
continue; // free slot
|
||
|
|
||
6 years ago
|
GL_FreeTexture( tx->gl_texturenum ); // main texture
|
||
|
GL_FreeTexture( tx->fb_texturenum ); // luma texture
|
||
6 years ago
|
}
|
||
|
}
|
||
|
|
||
|
void Mod_UnloadTextures( model_t *mod )
|
||
|
{
|
||
|
int i, j;
|
||
|
|
||
|
Assert( mod != NULL );
|
||
|
|
||
|
switch( mod->type )
|
||
|
{
|
||
|
case mod_studio:
|
||
|
//Mod_StudioUnloadTextures( mod->cache.data );
|
||
|
break;
|
||
|
case mod_alias:
|
||
|
//Mod_AliasUnloadTextures( mod->cache.data );
|
||
|
break;
|
||
|
case mod_brush:
|
||
|
Mod_BrushUnloadTextures( mod );
|
||
|
break;
|
||
|
case mod_sprite:
|
||
6 years ago
|
Mod_SpriteUnloadTextures( mod->cache.data );
|
||
6 years ago
|
break;
|
||
|
default: gEngfuncs.Host_Error( "Mod_UnloadModel: unsupported type %d\n", mod->type );
|
||
|
}
|
||
|
}
|
||
|
|
||
6 years ago
|
void GAME_EXPORT R_ProcessEntData( qboolean allocate )
|
||
6 years ago
|
{
|
||
|
|
||
|
}
|
||
|
|
||
|
// stubs
|
||
|
|
||
5 years ago
|
void GAME_EXPORT GL_SetTexCoordArrayMode( uint mode )
|
||
6 years ago
|
{
|
||
|
|
||
|
}
|
||
6 years ago
|
|
||
5 years ago
|
void GAME_EXPORT GL_BackendStartFrame( void )
|
||
6 years ago
|
{
|
||
|
|
||
|
}
|
||
|
|
||
5 years ago
|
void GAME_EXPORT GL_BackendEndFrame( void )
|
||
6 years ago
|
{
|
||
|
|
||
|
}
|
||
|
|
||
|
|
||
6 years ago
|
void GAME_EXPORT GL_SetRenderMode(int mode)
|
||
6 years ago
|
{
|
||
6 years ago
|
vid.rendermode = mode;
|
||
6 years ago
|
/// TODO: table shading/blending???
|
||
|
/// maybe, setup block drawing function pointers here
|
||
|
}
|
||
|
|
||
5 years ago
|
void GAME_EXPORT R_ShowTextures( void )
|
||
6 years ago
|
{
|
||
|
// textures undone too
|
||
|
}
|
||
|
|
||
5 years ago
|
void GAME_EXPORT R_ShowTree( void )
|
||
6 years ago
|
{
|
||
|
// do we really need this here???
|
||
|
}
|
||
|
|
||
6 years ago
|
void GAME_EXPORT R_SetupSky(const char *skyboxname)
|
||
6 years ago
|
{
|
||
|
|
||
|
}
|
||
|
|
||
6 years ago
|
qboolean GAME_EXPORT VID_ScreenShot(const char *filename, int shot_type)
|
||
6 years ago
|
{
|
||
6 years ago
|
return false;
|
||
6 years ago
|
}
|
||
|
|
||
6 years ago
|
qboolean GAME_EXPORT VID_CubemapShot(const char *base, uint size, const float *vieworg, qboolean skyshot)
|
||
6 years ago
|
{
|
||
|
// cubemaps? in my softrender???
|
||
6 years ago
|
return false;
|
||
6 years ago
|
}
|
||
|
|
||
|
void R_InitSkyClouds(mip_t *mt, texture_t *tx, qboolean custom_palette)
|
||
|
{
|
||
|
|
||
|
}
|
||
|
|
||
6 years ago
|
void GAME_EXPORT GL_SubdivideSurface(msurface_t *fa)
|
||
6 years ago
|
{
|
||
|
|
||
|
}
|
||
|
|
||
6 years ago
|
void GAME_EXPORT DrawSingleDecal(decal_t *pDecal, msurface_t *fa)
|
||
6 years ago
|
{
|
||
|
|
||
|
}
|
||
|
|
||
6 years ago
|
void GAME_EXPORT GL_SelectTexture(int texture)
|
||
6 years ago
|
{
|
||
|
|
||
|
}
|
||
|
|
||
6 years ago
|
void GAME_EXPORT GL_LoadTexMatrixExt(const float *glmatrix)
|
||
6 years ago
|
{
|
||
|
|
||
|
}
|
||
|
|
||
5 years ago
|
void GAME_EXPORT GL_LoadIdentityTexMatrix( void )
|
||
6 years ago
|
{
|
||
|
|
||
|
}
|
||
|
|
||
6 years ago
|
void GAME_EXPORT GL_CleanUpTextureUnits(int last)
|
||
6 years ago
|
{
|
||
|
|
||
|
}
|
||
|
|
||
6 years ago
|
void GAME_EXPORT GL_TexGen(unsigned int coord, unsigned int mode)
|
||
6 years ago
|
{
|
||
|
|
||
|
}
|
||
|
|
||
6 years ago
|
void GAME_EXPORT GL_TextureTarget(uint target)
|
||
6 years ago
|
{
|
||
|
|
||
|
}
|
||
|
|
||
5 years ago
|
void GAME_EXPORT GL_BuildLightmaps( void )
|
||
6 years ago
|
{
|
||
6 years ago
|
CL_RunLightStyles();
|
||
6 years ago
|
}
|
||
|
|
||
6 years ago
|
void GAME_EXPORT Mod_SetOrthoBounds(const float *mins, const float *maxs)
|
||
6 years ago
|
{
|
||
|
|
||
|
}
|
||
|
|
||
6 years ago
|
qboolean GAME_EXPORT R_SpeedsMessage(char *out, size_t size)
|
||
6 years ago
|
{
|
||
|
return false;
|
||
|
}
|
||
|
|
||
5 years ago
|
byte *GAME_EXPORT Mod_GetCurrentVis( void )
|
||
6 years ago
|
{
|
||
|
return NULL;
|
||
|
}
|
||
|
|
||
5 years ago
|
const char *R_GetConfigName( void )
|
||
|
{
|
||
|
return "ref_soft"; // software specific cvars will go to ref_soft.cfg
|
||
|
}
|
||
|
|
||
5 years ago
|
static void* GAME_EXPORT R_GetProcAddress( const char *name )
|
||
|
{
|
||
|
return gEngfuncs.GL_GetProcAddress( name );
|
||
|
}
|
||
|
|
||
6 years ago
|
ref_interface_t gReffuncs =
|
||
|
{
|
||
|
R_Init,
|
||
|
R_Shutdown,
|
||
5 years ago
|
R_GetConfigName,
|
||
5 years ago
|
R_SetDisplayTransform,
|
||
6 years ago
|
|
||
|
GL_SetupAttributes,
|
||
|
GL_InitExtensions,
|
||
|
GL_ClearExtensions,
|
||
|
|
||
|
R_BeginFrame,
|
||
|
R_RenderScene,
|
||
|
R_EndFrame,
|
||
|
R_PushScene,
|
||
|
R_PopScene,
|
||
|
GL_BackendStartFrame,
|
||
|
GL_BackendEndFrame,
|
||
|
|
||
|
R_ClearScreen,
|
||
|
R_AllowFog,
|
||
|
GL_SetRenderMode,
|
||
|
|
||
|
R_AddEntity,
|
||
|
CL_AddCustomBeam,
|
||
|
R_ProcessEntData,
|
||
|
|
||
|
R_ShowTextures,
|
||
|
|
||
|
R_GetTextureOriginalBuffer,
|
||
|
GL_LoadTextureFromBuffer,
|
||
|
GL_ProcessTexture,
|
||
|
R_SetupSky,
|
||
|
|
||
|
R_Set2DMode,
|
||
|
R_DrawStretchRaw,
|
||
|
R_DrawStretchPic,
|
||
|
R_DrawTileClear,
|
||
|
CL_FillRGBA,
|
||
|
CL_FillRGBABlend,
|
||
|
|
||
|
VID_ScreenShot,
|
||
|
VID_CubemapShot,
|
||
|
|
||
|
R_LightPoint,
|
||
|
|
||
|
R_DecalShoot,
|
||
|
R_DecalRemoveAll,
|
||
|
R_CreateDecalList,
|
||
|
R_ClearAllDecals,
|
||
|
|
||
|
R_StudioEstimateFrame,
|
||
|
R_StudioLerpMovement,
|
||
|
CL_InitStudioAPI,
|
||
|
|
||
|
R_InitSkyClouds,
|
||
|
GL_SubdivideSurface,
|
||
|
CL_RunLightStyles,
|
||
|
|
||
|
R_GetSpriteParms,
|
||
|
R_GetSpriteTexture,
|
||
|
|
||
|
Mod_LoadMapSprite,
|
||
|
Mod_ProcessRenderData,
|
||
|
Mod_StudioLoadTextures,
|
||
|
|
||
|
CL_DrawParticles,
|
||
|
CL_DrawTracers,
|
||
|
CL_DrawBeams,
|
||
|
R_BeamCull,
|
||
|
|
||
6 years ago
|
GL_RefGetParm,
|
||
6 years ago
|
R_GetDetailScaleForTexture,
|
||
|
R_GetExtraParmsForTexture,
|
||
|
R_GetFrameTime,
|
||
|
|
||
|
R_SetCurrentEntity,
|
||
|
R_SetCurrentModel,
|
||
|
|
||
|
GL_FindTexture,
|
||
|
GL_TextureName,
|
||
|
GL_TextureData,
|
||
|
GL_LoadTexture,
|
||
|
GL_CreateTexture,
|
||
|
GL_LoadTextureArray,
|
||
|
GL_CreateTextureArray,
|
||
|
GL_FreeTexture,
|
||
|
|
||
|
DrawSingleDecal,
|
||
|
R_DecalSetupVerts,
|
||
|
R_EntityRemoveDecals,
|
||
|
|
||
|
R_UploadStretchRaw,
|
||
|
|
||
|
GL_Bind,
|
||
|
GL_SelectTexture,
|
||
|
GL_LoadTexMatrixExt,
|
||
|
GL_LoadIdentityTexMatrix,
|
||
|
GL_CleanUpTextureUnits,
|
||
|
GL_TexGen,
|
||
|
GL_TextureTarget,
|
||
|
GL_SetTexCoordArrayMode,
|
||
|
GL_UpdateTexSize,
|
||
|
NULL,
|
||
|
NULL,
|
||
|
|
||
|
CL_DrawParticlesExternal,
|
||
|
R_LightVec,
|
||
|
R_StudioGetTexture,
|
||
|
|
||
|
R_RenderFrame,
|
||
|
Mod_SetOrthoBounds,
|
||
|
R_SpeedsMessage,
|
||
|
Mod_GetCurrentVis,
|
||
|
R_NewMap,
|
||
|
R_ClearScene,
|
||
5 years ago
|
R_GetProcAddress,
|
||
6 years ago
|
|
||
|
TriRenderMode,
|
||
|
TriBegin,
|
||
|
TriEnd,
|
||
|
_TriColor4f,
|
||
6 years ago
|
_TriColor4ub,
|
||
6 years ago
|
TriTexCoord2f,
|
||
|
TriVertex3fv,
|
||
|
TriVertex3f,
|
||
|
TriWorldToScreen,
|
||
|
TriFog,
|
||
|
R_ScreenToWorld,
|
||
|
TriGetMatrix,
|
||
|
TriFogParams,
|
||
|
TriCullFace,
|
||
|
|
||
|
VGUI_DrawInit,
|
||
|
VGUI_DrawShutdown,
|
||
|
VGUI_SetupDrawingText,
|
||
|
VGUI_SetupDrawingRect,
|
||
|
VGUI_SetupDrawingImage,
|
||
|
VGUI_BindTexture,
|
||
|
VGUI_EnableTexture,
|
||
|
VGUI_CreateTexture,
|
||
|
VGUI_UploadTexture,
|
||
|
VGUI_UploadTextureBlock,
|
||
|
VGUI_DrawQuad,
|
||
|
VGUI_GetTextureSizes,
|
||
|
VGUI_GenerateTexture,
|
||
|
};
|
||
|
|
||
6 years ago
|
int EXPORT GAME_EXPORT GetRefAPI( int version, ref_interface_t *funcs, ref_api_t *engfuncs, ref_globals_t *globals )
|
||
6 years ago
|
{
|
||
|
if( version != REF_API_VERSION )
|
||
|
return 0;
|
||
|
|
||
|
// fill in our callbacks
|
||
|
memcpy( funcs, &gReffuncs, sizeof( ref_interface_t ));
|
||
|
memcpy( &gEngfuncs, engfuncs, sizeof( ref_api_t ));
|
||
|
gpGlobals = globals;
|
||
|
|
||
|
return REF_API_VERSION;
|
||
|
}
|
||
5 years ago
|
|
||
|
void EXPORT GetRefHumanReadableName( char *out, size_t size )
|
||
|
{
|
||
|
Q_strncpy( out, "Software", size );
|
||
|
}
|