axle OS
x86_32 UNIX-like hobby OS
gfx_test.h
1 #ifndef GFX_TEST_H
2 #define GFX_TEST_H
3 
4 #include <gfx/lib/shapes.h>
5 
6 void draw_mandelbrot(Screen* screen, bool rgb);
7 void draw_burning_ship(Screen* screen, bool rgb);
8 void draw_julia(Screen* screen, bool rgb);
9 void test_gfx();
10 void test_xserv();
11 
12 #endif
Definition: gfx.h:22