mirror of
https://thingvellir.net/git/overte
synced 2025-03-27 23:52:03 +01:00
OpenGlDisplayPlugin: Add possibility to present frames only once.
Don't present frame more than once in OpenXrDisplayPlugin.
This commit is contained in:
parent
78d002b02c
commit
baf012f6bc
3 changed files with 10 additions and 0 deletions
|
@ -746,6 +746,13 @@ void OpenGLDisplayPlugin::present(const std::shared_ptr<RefreshRateController>&
|
|||
}
|
||||
|
||||
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()) {
|
||||
refreshRateController->clockEndTime();
|
||||
internalPresent();
|
||||
|
|
|
@ -206,6 +206,8 @@ protected:
|
|||
QImage getScreenshot(float aspectRatio);
|
||||
QImage getSecondaryCameraScreenshot();
|
||||
|
||||
bool _presentOnlyOnce = false;
|
||||
|
||||
private:
|
||||
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) {
|
||||
_context = c;
|
||||
_presentOnlyOnce = true;
|
||||
}
|
||||
|
||||
bool OpenXrDisplayPlugin::isSupported() const {
|
||||
|
|
Loading…
Reference in a new issue