diff options
author | A Thousand Ships <96648715+AThousandShips@users.noreply.github.com> | 2023-08-26 17:39:43 +0200 |
---|---|---|
committer | A Thousand Ships <96648715+AThousandShips@users.noreply.github.com> | 2023-08-28 09:37:04 +0200 |
commit | c23bd8b1431a745991a19f7cb89e4111efedf555 (patch) | |
tree | 001ab4dc81f0b3921a582dd572c3e25fd3c3cc8e /servers/xr | |
parent | 6da4ad16624484398331f393b503f8b5e2888c51 (diff) | |
download | redot-engine-c23bd8b1431a745991a19f7cb89e4111efedf555.tar.gz |
Ensure OpenXR classes are declared properly
Co-authored-by: Bastiaan Olij <mux213@gmail.com>
Diffstat (limited to 'servers/xr')
-rw-r--r-- | servers/xr/xr_interface.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/servers/xr/xr_interface.h b/servers/xr/xr_interface.h index 44275285c8..b42cb37234 100644 --- a/servers/xr/xr_interface.h +++ b/servers/xr/xr_interface.h @@ -52,7 +52,7 @@ class XRInterface : public RefCounted { GDCLASS(XRInterface, RefCounted); public: - enum Capabilities { /* purely meta data, provides some info about what this interface supports */ + enum Capabilities { /* purely metadata, provides some info about what this interface supports */ XR_NONE = 0, /* no capabilities */ XR_MONO = 1, /* can be used with mono output */ XR_STEREO = 2, /* can be used with stereo output */ |