mirror of https://github.com/PCSX2/pcsx2.git
GS:MTL: Don't override GSTexture::Save with a TODO
There's a working default implementation
This commit is contained in:
parent
365c1c3f3e
commit
81cafd21d0
|
@ -74,7 +74,6 @@ public:
|
|||
void* MapWithPitch(const GSVector4i& r, int pitch, int layer);
|
||||
void Unmap() override;
|
||||
void GenerateMipmap() override;
|
||||
bool Save(const std::string& fn) override;
|
||||
void Swap(GSTexture* tex) override;
|
||||
id<MTLTexture> GetTexture() { return m_texture; }
|
||||
};
|
||||
|
|
|
@ -189,12 +189,6 @@ void GSTextureMTL::GenerateMipmap()
|
|||
}
|
||||
}}
|
||||
|
||||
bool GSTextureMTL::Save(const std::string& fn)
|
||||
{
|
||||
// TODO: Implement
|
||||
return false;
|
||||
}
|
||||
|
||||
void GSTextureMTL::Swap(GSTexture* other)
|
||||
{
|
||||
GSTexture::Swap(other);
|
||||
|
|
Loading…
Reference in New Issue