mirror of
https://github.com/fergalmoran/ladybird.git
synced 2025-12-26 11:20:03 +00:00
LibDraw: Rename ImageLoader => ImageDecoder
ImageLoader was not the right name for this, as there is no loading happening, only decoding. :^)
This commit is contained in:
11
Libraries/LibDraw/ImageDecoder.cpp
Normal file
11
Libraries/LibDraw/ImageDecoder.cpp
Normal file
@@ -0,0 +1,11 @@
|
||||
#include <LibDraw/ImageDecoder.h>
|
||||
#include <LibDraw/PNGLoader.h>
|
||||
|
||||
ImageDecoder::ImageDecoder(const u8* data, size_t size)
|
||||
{
|
||||
m_plugin = make<PNGImageDecoderPlugin>(data, size);
|
||||
}
|
||||
|
||||
ImageDecoder::~ImageDecoder()
|
||||
{
|
||||
}
|
||||
Reference in New Issue
Block a user