Alexander Blinov
Results
1
issues of
Alexander Blinov
I have a function that loads spv file: ```cpp std::vector loadSpv(std::string path) { std::ifstream file(path, std::ios::ate | std::ios::binary); if (!file.is_open()) { throw std::runtime_error("Failed to load file"); } size_t fileSize =...