aboutsummaryrefslogtreecommitdiffstats
path: root/doc/c
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2023-01-03 15:16:48 -0500
committerDavid Robillard <d@drobilla.net>2023-01-03 15:16:48 -0500
commit40659178c04539fe4c70b144592cb0ee25376492 (patch)
treea8abb2969d3d6c554ced3f815b1976d0306d4374 /doc/c
parent01471ca20e877710d6c3d26f3893f22b9eb7d487 (diff)
downloadpugl-40659178c04539fe4c70b144592cb0ee25376492.tar.gz
pugl-40659178c04539fe4c70b144592cb0ee25376492.tar.bz2
pugl-40659178c04539fe4c70b144592cb0ee25376492.zip
Use globally unique names for documentation groups
This becomes important when the documentation is included in larger projects.
Diffstat (limited to 'doc/c')
-rw-r--r--doc/c/view.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/c/view.rst b/doc/c/view.rst
index 634b736..faf926f 100644
--- a/doc/c/view.rst
+++ b/doc/c/view.rst
@@ -22,7 +22,7 @@ Configuring the Frame
*********************
Before display,
-the necessary :doc:`frame <api/frame>` and :doc:`window <api/window>` attributes should be set.
+the necessary :doc:`frame <api/pugl_frame>` and :doc:`window <api/pugl_window>` attributes should be set.
These allow the window system (or plugin host) to arrange the view properly.
For example:
@@ -114,7 +114,7 @@ Before being realized, the view must have a backend set with :func:`puglSetBacke
The backend manages the graphics API that will be used for drawing.
Pugl includes backends and supporting API for
-:doc:`Cairo <api/cairo>`, :doc:`OpenGL <api/gl>`, and :doc:`Vulkan <api/vulkan>`.
+:doc:`Cairo <api/pugl_cairo>`, :doc:`OpenGL <api/pugl_gl>`, and :doc:`Vulkan <api/pugl_vulkan>`.
Using Cairo
===========