opuntiaOS - an operating system targeting x86 and ARMv7
at master 261 B view raw
1#include "common.h" 2#include <libg/ImageLoaders/PNGLoader.h> 3 4LG::PixelBitmap bitmap; 5 6void bench_pngloader() 7{ 8 RUN_BENCH("PNG LOADER", 5) 9 { 10 LG::PNG::PNGLoader loader; 11 bitmap = loader.load_from_file("/res/wallpapers/island.png"); 12 } 13}