42#include "config/have_png.hh"
52std::unique_ptr<ImgWriter>
66 return std::unique_ptr<PngWriter>(
new PngWriter(
fb));
69 return std::unique_ptr<BmpWriter>(
new BmpWriter(
fb));
71 warn(
"Invalid Image Type specified, defaulting to Bitmap\n");
72 return std::unique_ptr<BmpWriter>(
new BmpWriter(
fb));
Internal gem5 representation of a frame buffer.
Image writer implementing support for PNG.
Reference material can be found at the JEDEC website: UFS standard http://www.jedec....
std::unique_ptr< ImgWriter > createImgWriter(enums::ImageFormat type, const FrameBuffer *fb)
Factory Function which allocates a ImgWriter object and returns a smart pointer to it.