13 lines
216 B
C++
13 lines
216 B
C++
#pragma once
|
|
|
|
#include <filesystem>
|
|
#include <string>
|
|
#include <vector>
|
|
|
|
void WritePngFileAsync(
|
|
const std::filesystem::path& outputPath,
|
|
unsigned width,
|
|
unsigned height,
|
|
std::vector<unsigned char> rgbaPixels);
|
|
|