From 5e954d0121e7bf59b87d26e9f23bcc2f0fb48f3d Mon Sep 17 00:00:00 2001 From: "Matias N. Goldberg" Date: Wed, 24 Jul 2024 12:06:32 -0300 Subject: [PATCH] Fix wrong documentation about GLSL #vergion ogre_glsl_ver_xxx Vulkan & OpenGL columns were swapped --- Docs/src/manual/Rendering/RootLayouts.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Docs/src/manual/Rendering/RootLayouts.md b/Docs/src/manual/Rendering/RootLayouts.md index 46dc4b82e30..e13fb5c5302 100644 --- a/Docs/src/manual/Rendering/RootLayouts.md +++ b/Docs/src/manual/Rendering/RootLayouts.md @@ -349,7 +349,7 @@ As a result we provide a few abstractions to separate these differences: |---|---|---| | `vulkan()` macro | Anything inside is kept | Anything inside is removed | | `vulkan_layout()` macro | It is converted to `layout()` | It is removed | -| `#version ogre_glsl_ver_xxx` | The `ogre_glsl_ver_` part is removed and will be translated to `#version xxx` | Always converted to `#version 450` | +| `#version ogre_glsl_ver_xxx` | Always converted to `#version 450` | The `ogre_glsl_ver_` part is removed and will be translated to `#version xxx` | ### Example: {#RootLayoutsGLSLForGLandVKExample}