42 #include "config/use_png.hh" 49 std::unique_ptr<ImgWriter>
63 return std::unique_ptr<PngWriter>(
new PngWriter(fb));
66 return std::unique_ptr<BmpWriter>(
new BmpWriter(fb));
68 warn(
"Invalid Image Type specified, defaulting to Bitmap\n");
69 return std::unique_ptr<BmpWriter>(
new BmpWriter(fb));
Internal gem5 representation of a frame buffer.
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...
Image writer implementing support for PNG.