DISTRHO Plugin Framework
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
falkTX 0850a2790c
Fix tests
9 months ago
..
demo_res Add files to be used for demo test 4 years ago
images_res Add files to be used for demo test 4 years ago
widgets wasm and egl/gles related things 2 years ago
Application.cpp Fix tests 9 months ago
Circle.cpp Fix tests 9 months ago
Color.cpp Fix tests 9 months ago
Demo.cpp Fix tests 9 months ago
FileBrowserDialog.cpp Fix tests 9 months ago
Line.cpp Fix tests 9 months ago
Makefile wasm and egl/gles related things 2 years ago
NanoImage.cpp Fix tests 9 months ago
NanoSubWidgets.cpp Fix tests 9 months ago
Point.cpp Fix tests 9 months ago
README.txt Clarify tests, allow make -C test run 4 years ago
Rectangle.cpp Fix tests 9 months ago
Triangle.cpp Fix tests 9 months ago
Window.cpp Fix tests 9 months ago
tests.hpp Preparations for web thingies 1 year ago

README.txt

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.