This commit is contained in:
Ben
2019-03-01 16:56:44 +00:00
parent abf4225d5d
commit 504228cfe6
3 changed files with 9051 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
#include <iostream>
#define STB_IMAGE_WRITE_IMPLEMENTATION
#include "stb_image_write.h"
#define STB_IMAGE_IMPLEMENTATION
#include "stb_image.h"
struct Pixel {
unsigned char r, g, b, a;
};
int main(int argc, char** argv) {
if (argc < 2) {
std::err << "Invalid usage" << std::endl;
return 0;
}
Pixel* image =
}

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff