LibGfx: Remove superfluous Gfx::s from PaintingSurface

No functional changes.
This commit is contained in:
Jelle Raaijmakers 2025-01-29 10:11:05 +01:00 committed by Alexander Kalenik
commit a4639b3d8e
Notes: github-actions[bot] 2025-01-31 12:29:18 +00:00
2 changed files with 9 additions and 9 deletions

View file

@ -29,7 +29,7 @@ public:
BottomLeft,
};
static NonnullRefPtr<PaintingSurface> create_with_size(RefPtr<SkiaBackendContext> context, Gfx::IntSize size, Gfx::BitmapFormat color_type, Gfx::AlphaType alpha_type);
static NonnullRefPtr<PaintingSurface> create_with_size(RefPtr<SkiaBackendContext> context, IntSize size, BitmapFormat color_type, AlphaType alpha_type);
static NonnullRefPtr<PaintingSurface> wrap_bitmap(Bitmap&);
#ifdef AK_OS_MACOS