Team Fortress 2 Source Code as on 22/4/2020
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.

33 lines
1.1 KiB

  1. //========= Copyright Valve Corporation, All rights reserved. ============//
  2. //
  3. // Purpose:
  4. //
  5. // Define local cl_dll hooks to the renderable textures in material system
  6. //
  7. //=============================================================================//
  8. #ifndef RENDERTARGETS_H
  9. #define RENDERTARGETS_H
  10. ITexture *GetPowerOfTwoFrameBufferTexture( void );
  11. ITexture *GetFullFrameFrameBufferTexture( int textureIndex );
  12. ITexture *GetWaterReflectionTexture( void );
  13. ITexture *GetWaterRefractionTexture( void );
  14. ITexture *GetFullscreenTexture( void );
  15. ITexture *GetCameraTexture( void );
  16. ITexture *GetFullFrameDepthTexture( void );
  17. // SmallBufferHDRx=r16g16b16a16 quarter-sized texture
  18. ITexture *GetSmallBufferHDR0( void );
  19. ITexture *GetSmallBufferHDR1( void );
  20. ITexture *GetSmallBuffer0( void ); // quarter-sized texture, same fmt as screen
  21. ITexture *GetSmallBuffer1( void ); // quarter-sized texture, same fmt as screen
  22. #define MAX_TEENY_TEXTURES 3
  23. ITexture *GetTeenyTexture(int which); // tiny 32x32 texture, always 8888
  24. void ReleaseRenderTargets( void );
  25. #endif // RENDERTARGETS_H