sandbox
Loading...
Searching...
No Matches
read_file.hpp
1// SPDX-License-Identifier: MIT
2#ifndef LIBSBX_IO_READ_FILE_HPP_
3#define LIBSBX_IO_READ_FILE_HPP_
4
5#include <filesystem>
6#include <vector>
7
8namespace sbx::io {
9
10auto read_file(const std::filesystem::path& path) -> std::vector<std::uint8_t>;
11
12auto load_spirv_words(const std::filesystem::path& p) -> std::vector<std::uint32_t>;
13
14} // namespace sbx::io
15
16#endif // LIBSBX_IO_READ_FILE_HPP_