Merge pull request #3431 from stenzek/shadercache

ShaderGen: Remove virtual methods and string from ShaderGeneratorInterface.
This commit is contained in:
Mathew Maidment
2016-01-04 19:11:14 -05:00
6 changed files with 35 additions and 32 deletions

View File

@ -25,10 +25,6 @@ public:
PixelShaderUid puid;
GeometryShaderUid guid;
SHADERUID() {}
SHADERUID(const SHADERUID& r) : vuid(r.vuid), puid(r.puid), guid(r.guid) {}
bool operator <(const SHADERUID& r) const
{
return std::tie(puid, vuid, guid) <