mirror of
https://github.com/encounter/aurora.git
synced 2026-07-09 18:19:33 -07:00
13 lines
316 B
C++
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;
|
|
}
|