-
-
Notifications
You must be signed in to change notification settings - Fork 99
/
Copy pathREADME.txt
42 lines (30 loc) · 1.44 KB
/
README.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
This directory contains several tests for DPF related things, from graphics to plugin stuff to utilities.
Each *.cpp file is meant to be its own test.
In order to test DPF components individually, some of these tests do not link against DGL but import/include its files.
All test files must be self-contained, in order to prevent surprises in regards global state and initialization stuff.
The following tests are present:
- Application
Verifies that creating an application instance and its event loop is working correctly.
This test should automatically close itself without errors after a few seconds
- Circle
TODO
- Color
Runs a few unit-tests on top of the Color class. Mostly complete but still WIP.
- Demo
A full window with widgets to verify that contents are being drawn correctly, window can be resized and events work.
Can be used in both Cairo and OpenGL modes, the Vulkan variant does not work right now.
- Line
TODO
- NanoSubWidgets
Verifies that NanoVG subwidgets are being drawn properly, and that hide/show calls work as intended.
There should be a grey background with 3 squares on top, one of hiding every half second in a sequence.
- Point
Runs a few unit-tests on top of the Point class. Mostly complete but still WIP.
- Rectangle
TODO
- Triangle
TODO
- Window
Runs a few basic tests with Window showing, hiding and event loop.
Will try to create a window on screen.
Should automatically close after a few seconds.