#ifndef WINDOW_HPP #define WINDOW_HPP #define WIDTH 720 #define HEIGHT 420 int graph(uint32_t *img, int width, int height); int graph2(uint32_t *img, int width, int height); int mountain(uint32_t *img, int width, int height); int cloud(uint32_t *img, int width, int height); int marble(uint32_t *img, int width, int height); int random(uint32_t *img, int width, int height); int wood(uint32_t *img, int width, int height); int test(uint32_t *img, int width, int height); #endif