Bug fixes for HECL

This commit is contained in:
Jack Andersen
2015-11-16 10:43:27 -10:00
parent d75c675f7a
commit 181a038901
3 changed files with 19 additions and 19 deletions

View File

@@ -13,6 +13,7 @@ struct IGraphicsBuffer
protected:
bool m_dynamic;
IGraphicsBuffer(bool dynamic) : m_dynamic(dynamic) {}
virtual ~IGraphicsBuffer() {}
};
/** Static resource buffer for verts, indices, uniform constants */
@@ -59,6 +60,7 @@ struct ITexture
protected:
Type m_type;
ITexture(Type type) : m_type(type) {}
virtual ~ITexture() {}
};
/** Static resource buffer for textures */