mirror of
https://github.com/yuzu-mirror/yuzu.git
synced 2024-11-03 04:50:00 +00:00
Merge pull request #2495 from Kloen/killing-warnings-chain-of-memories
video_core: Removed unused type alias
This commit is contained in:
commit
98c71c6a0d
2 changed files with 0 additions and 3 deletions
|
@ -716,8 +716,6 @@ void RasterizerOpenGL::FlushAndInvalidateRegion(PAddr addr, u32 size) {
|
|||
|
||||
bool RasterizerOpenGL::AccelerateDisplayTransfer(const GPU::Regs::DisplayTransferConfig& config) {
|
||||
MICROPROFILE_SCOPE(OpenGL_Blits);
|
||||
using PixelFormat = CachedSurface::PixelFormat;
|
||||
using SurfaceType = CachedSurface::SurfaceType;
|
||||
|
||||
CachedSurface src_params;
|
||||
src_params.addr = config.GetPhysicalInputAddress();
|
||||
|
|
|
@ -172,7 +172,6 @@ bool RasterizerCacheOpenGL::TryBlitSurfaces(CachedSurface* src_surface,
|
|||
const MathUtil::Rectangle<int>& src_rect,
|
||||
CachedSurface* dst_surface,
|
||||
const MathUtil::Rectangle<int>& dst_rect) {
|
||||
using SurfaceType = CachedSurface::SurfaceType;
|
||||
|
||||
if (!CachedSurface::CheckFormatsBlittable(src_surface->pixel_format,
|
||||
dst_surface->pixel_format)) {
|
||||
|
|
Loading…
Reference in a new issue