mirror of
https://github.com/overte-org/overte.git
synced 2025-04-06 23:32:57 +02:00
OpenGlDisplayPlugin: Add possibility to present frames only once.
Don't present frame more than once in OpenXrDisplayPlugin.
This commit is contained in:
parent
be3e12b18c
commit
d9cd2fd3d5
3 changed files with 10 additions and 0 deletions
|
@ -745,6 +745,13 @@ void OpenGLDisplayPlugin::present(const std::shared_ptr<RefreshRateController>&
|
||||||
}
|
}
|
||||||
|
|
||||||
gpu::Backend::freeGPUMemSize.set(gpu::gl::getFreeDedicatedMemory());
|
gpu::Backend::freeGPUMemSize.set(gpu::gl::getFreeDedicatedMemory());
|
||||||
|
|
||||||
|
// Drop current frame after presenting it once.
|
||||||
|
// This is required for the OpenXR frame cycle, since we call xrEndFrame after presenting.
|
||||||
|
// xrEndFrame must not be called multiple times.
|
||||||
|
if (_presentOnlyOnce) {
|
||||||
|
_currentFrame.reset();
|
||||||
|
}
|
||||||
} else if (alwaysPresent()) {
|
} else if (alwaysPresent()) {
|
||||||
refreshRateController->clockEndTime();
|
refreshRateController->clockEndTime();
|
||||||
internalPresent();
|
internalPresent();
|
||||||
|
|
|
@ -205,6 +205,8 @@ protected:
|
||||||
QImage getScreenshot(float aspectRatio);
|
QImage getScreenshot(float aspectRatio);
|
||||||
QImage getSecondaryCameraScreenshot();
|
QImage getSecondaryCameraScreenshot();
|
||||||
|
|
||||||
|
bool _presentOnlyOnce = false;
|
||||||
|
|
||||||
private:
|
private:
|
||||||
static Setting::Handle<bool> _extraLinearToSRGBConversionSetting;
|
static Setting::Handle<bool> _extraLinearToSRGBConversionSetting;
|
||||||
};
|
};
|
||||||
|
|
|
@ -23,6 +23,7 @@ constexpr GLint XR_PREFERRED_COLOR_FORMAT = GL_SRGB8_ALPHA8;
|
||||||
|
|
||||||
OpenXrDisplayPlugin::OpenXrDisplayPlugin(std::shared_ptr<OpenXrContext> c) {
|
OpenXrDisplayPlugin::OpenXrDisplayPlugin(std::shared_ptr<OpenXrContext> c) {
|
||||||
_context = c;
|
_context = c;
|
||||||
|
_presentOnlyOnce = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
bool OpenXrDisplayPlugin::isSupported() const {
|
bool OpenXrDisplayPlugin::isSupported() const {
|
||||||
|
|
Loading…
Reference in a new issue