From 70993983b6e0e914880b172a2ac5aa4bbe200cbf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20Vondru=C5=A1?= Date: Tue, 30 Apr 2019 23:22:09 +0200 Subject: [PATCH] doc: this is wrong. --- doc/platform.dox | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/doc/platform.dox b/doc/platform.dox index 8272e71e9..68c62f70a 100644 --- a/doc/platform.dox +++ b/doc/platform.dox @@ -197,9 +197,9 @@ because dynamic function pointer loading is not available on these. For example, when you create the OpenGL context using GLX, you need to find `GlxContext` component, and link to `Magnum::GlxContext` target. Similarly to -application libraries, you can also use generic `Magnum::Context` target, -providing you requested only one `*Context` component in the @cmake find_package() @ce -call. Complete example: +application libraries, you can also use the generic `Magnum::GLContext` target, +providing you requested only one `*Context` component in the +@cmake find_package() @ce call. Complete example: @code{.cmake} find_package(Magnum REQUIRED GlxContext) @@ -207,7 +207,7 @@ find_package(Magnum REQUIRED GlxContext) add_executable(myapplication MyCustomApplication.cpp) target_link_libraries(myapplication Magnum::Magnum - Magnum::Context) + Magnum::GLContext) @endcode @section platform-windowless-contexts Manually managing windowless contexts