gl_rasterizer_cache: don't place null textures in the recycler
This commit is contained in:
parent
85e9ba897d
commit
a131f9eb74
@ -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,
|
||||
|
Loading…
Reference in New Issue
Block a user