rdb

Results 467 comments of rdb

I should mention that the way to work around this right now is to either use [uintBitsToFloat](https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/intBitsToFloat.xhtml) or [imageStore](https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/imageStore.xhtml).

We'd not just need to provide headers, but also provide unstripped libraries, library symlinks (on Linux) and .lib files (on Windows). I suspect it would significantly increase the size of...

I think this is totally doable, after having just set up a build pipeline for [panda3d-interrogate](https://github.com/panda3d/interrogate) using scikit-build-core. Advantage is that we can use cibuildwheel to manage the build environment....

This discussion gets restarted every so often. It's true that Interrogate is a significant burden to maintain and update with newer versions of the C++ standard (especially given that it...

There is also nanobind, which could be considered over pybind11: https://github.com/wjakob/nanobind However, none of these libraries replace interrogate, because we still need something to parse the source and generate the...

Actually, none of these types are currently exposed to Python. The Python binding generator will automatically exclude methods that reference types that are not exposed. I think this change would...

Thanks for finding these cases. I think that we shouldn't expose additional methods to the scripting language if there is no good use case / request to do so (otherwise...