From 8a32694c5dd6f93cb2fde7b57c203b8c5674d026 Mon Sep 17 00:00:00 2001 From: Christophe Meyer Date: Thu, 19 May 2022 11:35:52 +0200 Subject: [PATCH] Reword a sentence in vulkan-wrapping.dox I couldn't parse the original sentence :wink: Hopefully, that's what was meant. --- doc/vulkan-wrapping.dox | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/vulkan-wrapping.dox b/doc/vulkan-wrapping.dox index 3ee59e306..270f290c2 100644 --- a/doc/vulkan-wrapping.dox +++ b/doc/vulkan-wrapping.dox @@ -73,8 +73,8 @@ all members. @section vulkan-wrapping-instance-device Instance and device wrappers Compared to OpenGL, which has a concept of "current context", Vulkan doesn't -have any implicit globals. The @ref Vk library follows that, with each object -carrying a reference to a corresponding instance or device along. This was +have any implicit globals. In the @ref Vk library, each object +contains a reference to a corresponding instance or device. This was chosen as a reasonable tradeoff between requiring an explicit instance/device parameter in each API (which would be too error-prone and annoying to use) and having an implicit thread-local instance/device (which would repeat the