Skip to content

Commit ced383a

Browse files
alexey-romanovgithub-actions[bot]
authored andcommitted
[MAPS3D-1719] Fix occlusion queries (#5486)
Address Adreno issues, which are seen as constant OpenGL error spamming when occlusion query count goes beyond a certain limit. * limit number of OpenGL query objects * introduce a delay between query finish and results retrieval * issue occlusion queries via priority queue * remove occlusion query from queue to prevent stall queries * priorities work in a fifo order * use plf_list as container, same guarantees as `std::list` but less allocations * Modify occlusion fade: use constant acceleration fade to reduce flickering GitOrigin-RevId: 719d225bd550701919917a23e0c2f984834d30ce
1 parent 0246a4b commit ced383a

File tree

1 file changed

+27
-0
lines changed

1 file changed

+27
-0
lines changed

LICENSE.md

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1784,6 +1784,33 @@ All rights reserved.
17841784

17851785
---
17861786

1787+
### plf_list,v2.7.24,zlib,Matt Bentle,https://github.com/mattreecebentley/plf_list
1788+
1789+
```
1790+
zlib License
1791+
1792+
(C) 2019 mattreecebentley
1793+
1794+
This software is provided 'as-is', without any express or implied
1795+
warranty. In no event will the authors be held liable for any damages
1796+
arising from the use of this software.
1797+
1798+
Permission is granted to anyone to use this software for any purpose,
1799+
including commercial applications, and to alter it and redistribute it
1800+
freely, subject to the following restrictions:
1801+
1802+
1. The origin of this software must not be misrepresented you must not
1803+
claim that you wrote the original software. If you use this software
1804+
in a product, an acknowledgment in the product documentation would be
1805+
appreciated but is not required.
1806+
2. Altered source versions must be plainly marked as such, and must not be
1807+
misrepresented as being the original software.
1808+
3. This notice may not be removed or altered from any source distribution.
1809+
1810+
```
1811+
1812+
---
1813+
17871814
### shaderc,v2025.2,Apache-2.0,google,https://github.com/google/shaderc
17881815

17891816
```

0 commit comments

Comments
 (0)