Fix build issue, removed unneeded stub function.

This commit is contained in:
2022-08-18 19:05:24 -07:00
parent 42e8365751
commit 5c75dc754a
2 changed files with 0 additions and 7 deletions

View File

@@ -49,8 +49,3 @@ KRSampler* KRSamplerManager::getSampler(KRSurface& surface, const SamplerInfo& i
// TODO - Implement stub function // TODO - Implement stub function
return nullptr; return nullptr;
} }
size_t KRSamplerManager::getSamplerHandlesUsed()
{
// TODO - Implement stub function
}

View File

@@ -52,8 +52,6 @@ public:
KRSampler* getSampler(KRSurface& surface, const SamplerInfo& info); KRSampler* getSampler(KRSurface& surface, const SamplerInfo& info);
size_t getSamplerHandlesUsed();
private: private:
typedef std::map<std::pair<std::string, std::vector<int> >, KRSampler*> SamplerMap; typedef std::map<std::pair<std::string, std::vector<int> >, KRSampler*> SamplerMap;
SamplerMap m_samplers; SamplerMap m_samplers;