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

15 lines
No EOL
397 B
C++

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