diff options
author | David Robillard <d@drobilla.net> | 2022-05-28 23:11:51 -0400 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2022-05-28 23:14:05 -0400 |
commit | 4dd1eac7c46f7be257ce10cb2ce6b79939650938 (patch) | |
tree | 608f9ff2b4622b0f237d959ed112f390545c49b1 /examples | |
parent | 574bf1e11d73059ec5e6099e6806d919e1ac22b0 (diff) | |
download | pugl-4dd1eac7c46f7be257ce10cb2ce6b79939650938.tar.gz pugl-4dd1eac7c46f7be257ce10cb2ce6b79939650938.tar.bz2 pugl-4dd1eac7c46f7be257ce10cb2ce6b79939650938.zip |
Update documentation
Diffstat (limited to 'examples')
-rw-r--r-- | examples/README.md | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/examples/README.md b/examples/README.md new file mode 100644 index 0000000..20538c3 --- /dev/null +++ b/examples/README.md @@ -0,0 +1,31 @@ +These programs serve as demonstrations, and as utilities for manual testing. + + * `pugl_embed_demo` shows a view embedded in another, and also tests + requesting attention (which happens after 5 seconds), keyboard focus + (switched by pressing tab), view moving (with the arrow keys), and view + resizing (with the arrow keys while shift is held). This program uses only + very old OpenGL and should work on any system. + + * `pugl_window_demo` demonstrates multiple top-level windows. + + * `pugl_shader_demo` demonstrates using more modern OpenGL (version 3 or 4) + where dynamic loading and shaders are required. It can also be used to test + performance by passing the number of rectangles to draw on the command line. + + * `pugl_cairo_demo` demonstrates using Cairo on top of the native windowing + system (without OpenGL), and partial redrawing. + + * `pugl_print_events` is a utility that prints all received events to the + console in a human readable format. + + * `pugl_cpp_demo` is a simple cube demo that uses the C++ API. + + * `pugl_vulkan_demo` is a simple example of using Vulkan in C that simply + clears the window. + + * `pugl_vulkan_cpp_demo` is a more advanced Vulkan demo in C++ that draws many + animated rectangles like `pugl_shader_demo`. + +All example programs support several command line options to control various +behaviours, see the output of `--help` for details. Please file an issue if +any of these programs do not work as expected on your system. |