2#ifndef LIBSBX_BITMAPS_LOADERS_PNG_LOADER_HPP_
3#define LIBSBX_BITMAPS_LOADERS_PNG_LOADER_HPP_
5#include <libsbx/bitmaps/bitmap.hpp>
7namespace sbx::bitmaps {
9class png_loader :
public bitmap::loader<png_loader> {
11 inline static const auto is_registered = register_extensions(
".png");
15 static auto load(
const std::filesystem::path& path) ->
bitmap_data;
Definition: png_loader.hpp:9
Definition: bitmap.hpp:20