mirror of
https://github.com/overte-org/overte.git
synced 2025-04-15 03:27:24 +02:00
fix redundant openvr fence condition
This commit is contained in:
parent
a67c5221e3
commit
dbb916e2d9
1 changed files with 1 additions and 1 deletions
|
@ -116,7 +116,7 @@ public:
|
||||||
|
|
||||||
if (GL_TIMEOUT_EXPIRED == result || GL_WAIT_FAILED == result) {
|
if (GL_TIMEOUT_EXPIRED == result || GL_WAIT_FAILED == result) {
|
||||||
break;
|
break;
|
||||||
} else if (GL_CONDITION_SATISFIED == result || GL_CONDITION_SATISFIED == result) {
|
} else if (GL_CONDITION_SATISFIED == result || GL_ALREADY_SIGNALED == result) {
|
||||||
glDeleteSync(front.fence);
|
glDeleteSync(front.fence);
|
||||||
} else {
|
} else {
|
||||||
assert(false);
|
assert(false);
|
||||||
|
|
Loading…
Reference in a new issue