LibGfx: Remove Gfx::ImageDecoder::bitmap() in favor of frame(index)

To transparently support multi-frame images, all decoder plugins have
already been updated to return their only bitmap for frame(0).

This patch completes the remaining cleanup work by removing the
ImageDecoder::bitmap() API and having all clients call frame() instead.
This commit is contained in:
Andreas Kling 2021-07-27 01:29:50 +02:00
commit 751cb094ff
Notes: sideshowbarker 2024-07-18 08:03:51 +09:00
13 changed files with 35 additions and 49 deletions

View file

@ -78,9 +78,4 @@ ImageDecoder::~ImageDecoder()
{
}
RefPtr<Gfx::Bitmap> ImageDecoder::bitmap() const
{
return m_plugin->bitmap();
}
}