mirror of
https://github.com/citra-emu/citra.git
synced 2024-12-19 14:01:05 +00:00
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() {
|
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,
|
bool CachedSurface::CanFill(const SurfaceParams& dest_surface,
|
||||||
|
Loading…
Reference in New Issue
Block a user