diff options
author | RĂ©mi Verschelde <remi@verschelde.fr> | 2022-10-11 21:08:42 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-10-11 21:08:42 +0200 |
commit | 736a2df4375c1042b028e267dc87a13d5d9340e8 (patch) | |
tree | 224b0208c502760d1a1b856a69e77863306aad1d /doc | |
parent | 042e81f663d31c5d0c619349be14919a39333023 (diff) | |
parent | f82deaa5b38db124ef8b2f395b54602e3ff8e4ce (diff) |
Merge pull request #67244 from RandomShaper/split_render_further_2
Polish rendering driver refactor further (take 2)
Diffstat (limited to 'doc')
-rw-r--r-- | doc/classes/OS.xml | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/classes/OS.xml b/doc/classes/OS.xml index 82bfb63b59..3aa26cbb21 100644 --- a/doc/classes/OS.xml +++ b/doc/classes/OS.xml @@ -625,11 +625,11 @@ </member> </members> <constants> - <constant name="VIDEO_DRIVER_VULKAN" value="0" enum="VideoDriver"> - The Vulkan rendering backend. It requires Vulkan 1.0 support and automatically uses features from Vulkan 1.1 and 1.2 if available. + <constant name="RENDERING_DRIVER_VULKAN" value="0" enum="RenderingDriver"> + The Vulkan rendering driver. It requires Vulkan 1.0 support and automatically uses features from Vulkan 1.1 and 1.2 if available. </constant> - <constant name="VIDEO_DRIVER_OPENGL_3" value="1" enum="VideoDriver"> - The OpenGL 3 rendering backend. It uses OpenGL 3.3 Core Profile on desktop platforms, OpenGL ES 3.0 on mobile devices, and WebGL 2.0 on Web. + <constant name="RENDERING_DRIVER_OPENGL3" value="1" enum="RenderingDriver"> + The OpenGL 3 rendering driver. It uses OpenGL 3.3 Core Profile on desktop platforms, OpenGL ES 3.0 on mobile devices, and WebGL 2.0 on Web. </constant> <constant name="DAY_SUNDAY" value="0" enum="Weekday"> Sunday. |