mirror of
https://git.eden-emu.dev/eden-emu/eden.git
synced 2025-07-23 20:15:46 +00:00
GLCache: Corrected a mismatch between storing compressed sizes and verifying the uncompressed alignment in GetSurface.
This commit is contained in:
parent
8691aa8cd7
commit
a2117df8e6
1 changed files with 2 additions and 1 deletions
|
@ -933,7 +933,8 @@ Surface RasterizerCacheOpenGL::GetSurface(const SurfaceParams& params, ScaleMatc
|
||||||
// Use GetSurfaceSubRect instead
|
// Use GetSurfaceSubRect instead
|
||||||
ASSERT(params.width == params.stride);
|
ASSERT(params.width == params.stride);
|
||||||
|
|
||||||
ASSERT(!params.is_tiled || (params.width % 8 == 0 && params.height % 8 == 0));
|
ASSERT(!params.is_tiled ||
|
||||||
|
(params.GetActualWidth() % 8 == 0 && params.GetActualHeight() % 8 == 0));
|
||||||
|
|
||||||
// Check for an exact match in existing surfaces
|
// Check for an exact match in existing surfaces
|
||||||
Surface surface =
|
Surface surface =
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue