summaryrefslogtreecommitdiff
path: root/Userland/qs.cpp
AgeCommit message (Collapse)Author
2019-03-24QuickShow: Fill the window with white if the opened image has alpha.Andreas Kling
2019-03-22LibGUI: Add a setting to make GLabel stretch its icon.Andreas Kling
Use this in QuickShow to allow arbitrarily scaling the opened image.
2019-03-21Userland: Turn off double buffering in QuickShow.Andreas Kling
Since this program is primarily used to display potentially huge but still static images, let's not put extra strain on the system by double buffering.
2019-03-21PNGLoader: Support for color type 2 (RGB triplets) and multiple IDAT chunks.Andreas Kling
2019-03-21SharedGraphics: Implement a simple PNG decoder.Andreas Kling
This is extremely unoptimized, but it does successfully load "folder32.png" so it must be at least somewhat correct. :^)