X-Git-Url: http://git.xonotic.org/?a=blobdiff_plain;f=cl_dyntexture.h;h=e69de29bb2d1d6434b8b29ae775ad8c2e48c5391;hb=0766a43538f3b526cba347157d5259bb3e5785a9;hp=130dc16704bb2a4b0ea70c68118c482f010ad409;hpb=fcbf1cc594589ae561a2e4070664480acee218a3;p=xonotic%2Fdarkplaces.git diff --git a/cl_dyntexture.h b/cl_dyntexture.h index 130dc167..e69de29b 100644 --- a/cl_dyntexture.h +++ b/cl_dyntexture.h @@ -1,20 +0,0 @@ -// Andreas 'Black' Kirsch 07 -#ifndef CL_DYNTEXTURE_H -#define CL_DYNTEXTURE_H - -#define CLDYNTEXTUREPREFIX "_dynamic/" - -// always path fully specified names to the dynamic texture functions! (ie. with the _dynamic/ prefix, etc.!) - -// return a valid texture handle for a dynamic texture (might be filler texture if it hasnt been initialized yet) -// or NULL if its not a valid dynamic texture name -rtexture_t * CL_GetDynTexture( const char *name ); - -// link a texture handle as dynamic texture and update texture handles in the renderer and draw_* accordingly -void CL_LinkDynTexture( const char *name, rtexture_t *texture ); - -// unlink a texture handle from its name -void CL_UnlinkDynTexture( const char *name ); - -#endif -