gl_rasterizer_cache: don't place null textures in the recycler

This commit is contained in:
BreadFish64 2021-02-03 13:29:03 -06:00
parent 85e9ba897d
commit a131f9eb74

View file

@ -495,7 +495,9 @@ static bool FillSurface(const Surface& surface, const u8* fill_data,
}
CachedSurface::~CachedSurface() {
owner.host_texture_recycler.emplace(*this, std::move(texture));
if (texture.handle) {
owner.host_texture_recycler.emplace(*this, std::move(texture));
}
}
bool CachedSurface::CanFill(const SurfaceParams& dest_surface,