mirror of https://github.com/OpenTTD/OpenTTD
Fix: [OpenGL] Increase timeout when waiting for the GPU to be done with the drawing buffer.
The old timeout could be too short if v-sync was on on lower refresh rates.pull/9292/head
parent
4f7d6cf1ba
commit
97722931a9
|
@ -1150,7 +1150,7 @@ void OpenGLBackend::ClearCursorCache()
|
||||||
void *OpenGLBackend::GetVideoBuffer()
|
void *OpenGLBackend::GetVideoBuffer()
|
||||||
{
|
{
|
||||||
#ifndef NO_GL_BUFFER_SYNC
|
#ifndef NO_GL_BUFFER_SYNC
|
||||||
if (this->sync_vid_mapping != nullptr) _glClientWaitSync(this->sync_vid_mapping, GL_SYNC_FLUSH_COMMANDS_BIT, 10000000);
|
if (this->sync_vid_mapping != nullptr) _glClientWaitSync(this->sync_vid_mapping, GL_SYNC_FLUSH_COMMANDS_BIT, 100000000); // 100ms timeout.
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
if (!this->persistent_mapping_supported) {
|
if (!this->persistent_mapping_supported) {
|
||||||
|
@ -1174,7 +1174,7 @@ uint8 *OpenGLBackend::GetAnimBuffer()
|
||||||
if (this->anim_pbo == 0) return nullptr;
|
if (this->anim_pbo == 0) return nullptr;
|
||||||
|
|
||||||
#ifndef NO_GL_BUFFER_SYNC
|
#ifndef NO_GL_BUFFER_SYNC
|
||||||
if (this->sync_anim_mapping != nullptr) _glClientWaitSync(this->sync_anim_mapping, GL_SYNC_FLUSH_COMMANDS_BIT, 10000000);
|
if (this->sync_anim_mapping != nullptr) _glClientWaitSync(this->sync_anim_mapping, GL_SYNC_FLUSH_COMMANDS_BIT, 100000000); // 100ms timeout.
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
if (!this->persistent_mapping_supported) {
|
if (!this->persistent_mapping_supported) {
|
||||||
|
|
Loading…
Reference in New Issue