Noise-generator/includes/window.hpp
2024-12-14 22:03:38 +01:00

16 lines
No EOL
480 B
C++

#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