summaryrefslogtreecommitdiffstats
path: root/modules/openxr
diff options
context:
space:
mode:
authorDavid Snopek <dsnopek@gmail.com>2024-08-12 11:26:23 -0500
committerRémi Verschelde <rverschelde@gmail.com>2024-09-16 16:30:06 +0200
commite1af61467a36d5d1e4a319d6fc6c3003c9f96ec2 (patch)
tree9b9bb7e8f873aa0c641a360190e9b72cc32d42bd /modules/openxr
parentd40fc50f086d14583c7cc979ed4e5363ac223717 (diff)
downloadredot-engine-e1af61467a36d5d1e4a319d6fc6c3003c9f96ec2.tar.gz
OpenGL: Unconditionally do `glDisable(GL_FRAMEBUFFER_SRGB)` because we do our own sRGB conversion
(cherry picked from commit dfcff4ef46568216318adb37cb84c42697139ac6)
Diffstat (limited to 'modules/openxr')
-rw-r--r--modules/openxr/extensions/platform/openxr_opengl_extension.cpp22
-rw-r--r--modules/openxr/extensions/platform/openxr_opengl_extension.h6
2 files changed, 0 insertions, 28 deletions
diff --git a/modules/openxr/extensions/platform/openxr_opengl_extension.cpp b/modules/openxr/extensions/platform/openxr_opengl_extension.cpp
index d92084a220..de4a9e4b8e 100644
--- a/modules/openxr/extensions/platform/openxr_opengl_extension.cpp
+++ b/modules/openxr/extensions/platform/openxr_opengl_extension.cpp
@@ -56,11 +56,6 @@
// feature off.
// See: https://registry.khronos.org/OpenGL/extensions/EXT/EXT_sRGB_write_control.txt
-// On OpenGLES this is not defined in our standard headers..
-#ifndef GL_FRAMEBUFFER_SRGB
-#define GL_FRAMEBUFFER_SRGB 0x8DB9
-#endif
-
HashMap<String, bool *> OpenXROpenGLExtension::get_requested_extensions() {
HashMap<String, bool *> request_extensions;
@@ -196,23 +191,6 @@ void OpenXROpenGLExtension::get_usable_depth_formats(Vector<int64_t> &p_usable_d
p_usable_depth_formats.push_back(GL_DEPTH_COMPONENT24);
}
-void OpenXROpenGLExtension::on_pre_draw_viewport(RID p_render_target) {
- if (srgb_ext_is_available) {
- hw_linear_to_srgb_is_enabled = glIsEnabled(GL_FRAMEBUFFER_SRGB);
- if (hw_linear_to_srgb_is_enabled) {
- // Disable this.
- glDisable(GL_FRAMEBUFFER_SRGB);
- }
- }
-}
-
-void OpenXROpenGLExtension::on_post_draw_viewport(RID p_render_target) {
- if (srgb_ext_is_available && hw_linear_to_srgb_is_enabled) {
- // Re-enable this.
- glEnable(GL_FRAMEBUFFER_SRGB);
- }
-}
-
bool OpenXROpenGLExtension::get_swapchain_image_data(XrSwapchain p_swapchain, int64_t p_swapchain_format, uint32_t p_width, uint32_t p_height, uint32_t p_sample_count, uint32_t p_array_size, void **r_swapchain_graphics_data) {
GLES3::TextureStorage *texture_storage = GLES3::TextureStorage::get_singleton();
ERR_FAIL_NULL_V(texture_storage, false);
diff --git a/modules/openxr/extensions/platform/openxr_opengl_extension.h b/modules/openxr/extensions/platform/openxr_opengl_extension.h
index a3052d3f53..8da3ca48f4 100644
--- a/modules/openxr/extensions/platform/openxr_opengl_extension.h
+++ b/modules/openxr/extensions/platform/openxr_opengl_extension.h
@@ -49,9 +49,6 @@ public:
virtual void on_instance_created(const XrInstance p_instance) override;
virtual void *set_session_create_and_get_next_pointer(void *p_next_pointer) override;
- virtual void on_pre_draw_viewport(RID p_render_target) override;
- virtual void on_post_draw_viewport(RID p_render_target) override;
-
virtual void get_usable_swapchain_formats(Vector<int64_t> &p_usable_swap_chains) override;
virtual void get_usable_depth_formats(Vector<int64_t> &p_usable_swap_chains) override;
virtual String get_swapchain_format_name(int64_t p_swapchain_format) const override;
@@ -76,9 +73,6 @@ private:
Vector<RID> texture_rids;
};
- bool srgb_ext_is_available = true;
- bool hw_linear_to_srgb_is_enabled = false;
-
bool check_graphics_api_support(XrVersion p_desired_version);
#ifdef ANDROID_ENABLED