Files
Examples/C++/Gaussian blur/main.cpp
2019-03-01 16:56:44 +00:00

22 lines
348 B
C++

#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 =
}