Merge pull request #2495 from Kloen/killing-warnings-chain-of-memories
video_core: Removed unused type alias
This commit is contained in:
commit
98c71c6a0d
|
@ -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)) {
|
||||
|
|
Reference in New Issue