summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorClay John <claynjohn@gmail.com>2022-11-08 22:57:23 -0800
committerGitHub <noreply@github.com>2022-11-08 22:57:23 -0800
commit6bb2ea281eb657ec425670ed09e8192f2338fa0e (patch)
treed47525574fbccaaa60e50e84f29603945eef607d /doc
parent6d9546f16c505186196da677154de5f216b7eb9b (diff)
parent23603e409c04fd0238a45552ad7b07a175b528c6 (diff)
Merge pull request #67775 from dsnopek/opengl-multiview-openxr
Add support for OpenGL to OpenXR
Diffstat (limited to 'doc')
-rw-r--r--doc/classes/DisplayServer.xml8
1 files changed, 8 insertions, 0 deletions
diff --git a/doc/classes/DisplayServer.xml b/doc/classes/DisplayServer.xml
index 113987bb52..76c67fd704 100644
--- a/doc/classes/DisplayServer.xml
+++ b/doc/classes/DisplayServer.xml
@@ -1725,9 +1725,17 @@
</constant>
<constant name="WINDOW_VIEW" value="2" enum="HandleType">
Window view:
+ - Windows: [code]HDC[/code] for the window (only with the GL Compatibility renderer).
- macOS: [code]NSView*[/code] for the window main view.
- iOS: [code]UIView*[/code] for the window main view.
</constant>
+ <constant name="OPENGL_CONTEXT" value="3" enum="HandleType">
+ OpenGL context (only with the GL Compatibility renderer):
+ - Windows: [code]HGLRC[/code] for the window.
+ - Linux: [code]GLXContext*[/code] for the window.
+ - MacOS: [code]NSOpenGLContext*[/code] for the window.
+ - Android: [code]EGLContext[/code] for the window.
+ </constant>
<constant name="TTS_UTTERANCE_STARTED" value="0" enum="TTSUtteranceEvent">
Utterance has begun to be spoken.
</constant>