| 58 | } |
| 59 | |
| 60 | std::vector<uint8_t> FileSystem::read_file_binary(const Path &path) |
| 61 | { |
| 62 | auto stat = stat_file(path); |
| 63 | return read_chunk(path, 0, stat.size); |
| 64 | } |
| 65 | |
| 66 | } // namespace filesystem |
| 67 | } // namespace vkb |
no outgoing calls
no test coverage detected