diff options
Diffstat (limited to 'materialsystem/IHardwareConfigInternal.h')
| -rw-r--r-- | materialsystem/IHardwareConfigInternal.h | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/materialsystem/IHardwareConfigInternal.h b/materialsystem/IHardwareConfigInternal.h new file mode 100644 index 0000000..9704a52 --- /dev/null +++ b/materialsystem/IHardwareConfigInternal.h @@ -0,0 +1,30 @@ +//========= Copyright Valve Corporation, All rights reserved. ============// +// +// Purpose: +// +// $Header: $ +// $NoKeywords: $ +//=============================================================================// + +#ifndef IHARDWARECONFIGINTERNAL_H +#define IHARDWARECONFIGINTERNAL_H + +#ifdef _WIN32 +#pragma once +#endif + + +#include "materialsystem/imaterialsystemhardwareconfig.h" + +//----------------------------------------------------------------------------- +// Material system configuration +//----------------------------------------------------------------------------- +class IHardwareConfigInternal : public IMaterialSystemHardwareConfig +{ +public: + // Gets at the HW specific shader DLL name + virtual const char *GetHWSpecificShaderDLLName() const = 0; +}; + + +#endif // IHARDWARECONFIGINTERNAL_H |