mirror of
https://github.com/RGBCube/serenity
synced 2025-07-26 02:27:43 +00:00
LibGfx: Remove debug output
This commit is contained in:
parent
9a2c8102cd
commit
a1c0eb1e1d
1 changed files with 0 additions and 2 deletions
|
@ -34,13 +34,11 @@ ImageDecoder::ImageDecoder(const u8* data, size_t size)
|
||||||
{
|
{
|
||||||
m_plugin = make<PNGImageDecoderPlugin>(data, size);
|
m_plugin = make<PNGImageDecoderPlugin>(data, size);
|
||||||
if (m_plugin->sniff()) {
|
if (m_plugin->sniff()) {
|
||||||
dbg() << "Decoding image as a PNG";
|
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
m_plugin = make<GIFImageDecoderPlugin>(data, size);
|
m_plugin = make<GIFImageDecoderPlugin>(data, size);
|
||||||
if (m_plugin->sniff()) {
|
if (m_plugin->sniff()) {
|
||||||
dbg() << "Decoding image as a GIF";
|
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue