Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
godotengine
GitHub Repository: godotengine/godot
Path: blob/master/modules/openxr/extensions/openxr_fb_display_refresh_rate_extension.h
10278 views
1
/**************************************************************************/
2
/* openxr_fb_display_refresh_rate_extension.h */
3
/**************************************************************************/
4
/* This file is part of: */
5
/* GODOT ENGINE */
6
/* https://godotengine.org */
7
/**************************************************************************/
8
/* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */
9
/* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
10
/* */
11
/* Permission is hereby granted, free of charge, to any person obtaining */
12
/* a copy of this software and associated documentation files (the */
13
/* "Software"), to deal in the Software without restriction, including */
14
/* without limitation the rights to use, copy, modify, merge, publish, */
15
/* distribute, sublicense, and/or sell copies of the Software, and to */
16
/* permit persons to whom the Software is furnished to do so, subject to */
17
/* the following conditions: */
18
/* */
19
/* The above copyright notice and this permission notice shall be */
20
/* included in all copies or substantial portions of the Software. */
21
/* */
22
/* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, */
23
/* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF */
24
/* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. */
25
/* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY */
26
/* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, */
27
/* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE */
28
/* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
29
/**************************************************************************/
30
31
#pragma once
32
33
// This extension gives us access to the possible display refresh rates
34
// supported by the HMD.
35
// While this is an FB extension it has been adopted by most runtimes and
36
// will likely become core in the near future.
37
38
#include "../openxr_api.h"
39
#include "../util.h"
40
#include "openxr_extension_wrapper.h"
41
42
class OpenXRDisplayRefreshRateExtension : public OpenXRExtensionWrapper {
43
GDCLASS(OpenXRDisplayRefreshRateExtension, OpenXRExtensionWrapper);
44
45
protected:
46
static void _bind_methods() {}
47
48
public:
49
static OpenXRDisplayRefreshRateExtension *get_singleton();
50
51
OpenXRDisplayRefreshRateExtension();
52
virtual ~OpenXRDisplayRefreshRateExtension() override;
53
54
virtual HashMap<String, bool *> get_requested_extensions() override;
55
56
virtual void on_instance_created(const XrInstance p_instance) override;
57
virtual void on_instance_destroyed() override;
58
virtual bool on_event_polled(const XrEventDataBuffer &event) override;
59
60
float get_refresh_rate() const;
61
void set_refresh_rate(float p_refresh_rate);
62
63
Array get_available_refresh_rates() const;
64
65
private:
66
static OpenXRDisplayRefreshRateExtension *singleton;
67
68
bool display_refresh_rate_ext = false;
69
70
// OpenXR API call wrappers
71
EXT_PROTO_XRRESULT_FUNC4(xrEnumerateDisplayRefreshRatesFB, (XrSession), session, (uint32_t), displayRefreshRateCapacityInput, (uint32_t *), displayRefreshRateCountOutput, (float *), displayRefreshRates);
72
EXT_PROTO_XRRESULT_FUNC2(xrGetDisplayRefreshRateFB, (XrSession), session, (float *), display_refresh_rate);
73
EXT_PROTO_XRRESULT_FUNC2(xrRequestDisplayRefreshRateFB, (XrSession), session, (float), display_refresh_rate);
74
};
75
76