From f00294a14dea94a13cbb6dec604b9347431e9dca Mon Sep 17 00:00:00 2001 From: Scott Ehlert Date: Mon, 29 May 2017 20:14:41 -0500 Subject: [PATCH] Ugh. Make new IMaterialSystem functions pure virtuals. --- public/materialsystem/imaterialsystem.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/public/materialsystem/imaterialsystem.h b/public/materialsystem/imaterialsystem.h index 550ff8f7..456bc371 100644 --- a/public/materialsystem/imaterialsystem.h +++ b/public/materialsystem/imaterialsystem.h @@ -1081,8 +1081,8 @@ public: // The bits will be retained by the material system and can be freed upon return. virtual ITexture* CreateNamedTextureFromBitsEx( const char* pName, const char *pTextureGroupName, int w, int h, int mips, ImageFormat fmt, int srcBufferSize, byte* srcBits, int nFlags ) = 0; - virtual bool AddTextureCompositorTemplate( const char *pName, KeyValues *kv, int a ); - virtual bool VerifyTextureCompositorTemplates ( void ); + virtual bool AddTextureCompositorTemplate( const char *pName, KeyValues *kv, int a ) = 0; + virtual bool VerifyTextureCompositorTemplates ( void ) = 0; };