Files
2026-07-07 12:06:16 -06:00

13 lines
316 B
C++

#pragma once
#include <filesystem>
#include <optional>
#include "common.hpp"
#include "texture_convert.hpp"
namespace aurora::gfx::png {
std::optional<ConvertedTexture> parse_png_bytes(ArrayRef<uint8_t> bytes) noexcept;
std::optional<ConvertedTexture> load_png_file(const std::filesystem::path& path) noexcept;
}