| 133 | } |
| 134 | |
| 135 | void write_image(const uint8_t *data, const std::string &filename, const uint32_t width, const uint32_t height, const uint32_t components, const uint32_t row_stride) |
| 136 | { |
| 137 | stbi_write_png((path::get(path::Type::Screenshots) + filename + ".png").c_str(), width, height, components, data, row_stride); |
| 138 | } |
| 139 | |
| 140 | } // namespace fs |
| 141 | } // namespace vkb |