Possibly faster GL timestamp query result check#1404
Conversation
Co-authored-by: Sergio Acereda <sergio.acereda@gmail.com>
|
Two things to consider:
|
The actual (non-conforming) Intel implementation I looked at did something like mod 36 bits, so you can get 0, but not ~0. |
|
I suppose if we wanted to be paranoid about it, we would: |
On a second thought, this could sort of defeat the purpose of the |
|
The existing code does |
|
I guess in that case you could guard that branch using the original ifdef: At some point I also considered a compile-time opt-in mechanism as an alternative (TRACY_FAST_COLLECT or similar), but I'm not sure whether you already have something along those lines in the codebase. |
|
According to the registry, there's no preceding I suppose we could do something like this: I am not well-versed in GLES, but the |
|
So I suppose we would also need an |
Addresses #1380
(Co-authored by @sacereda)