bgfx-python
bgfx-python copied to clipboard
Python 3.7+ wrapper for the BGFX library. 🐍
Windows 10 64-bit Python 3.9.6 Installed via pip. ### Attempting *helloworld.py*, the following lines: ```python import os # noinspection PyUnresolvedReferences from pybgfx.utils.imgui_utils import ImGuiExtra from pybgfx import bgfx ... ```...
Trying `pip install bgfx-python`, got this error. ``` Collecting bgfx-python Downloading bgfx-python-2.0.1.tar.gz (10 kB) Preparing metadata (setup.py) ... error error: subprocess-exited-with-error × python setup.py egg_info did not run successfully. │...
Bumps [pillow](https://github.com/python-pillow/Pillow) from 8.3.1 to 9.0.1. Release notes Sourced from pillow's releases. 9.0.1 https://pillow.readthedocs.io/en/stable/releasenotes/9.0.1.html Changes In show_file, use os.remove to remove temporary images. CVE-2022-24303 #6010 [@radarhere, @hugovk] Restrict builtins within...
When following the instructions in the README to build from source, during the `python setup.py install` step I get a cmake error complaining about several missing dependencies (`cppyy`, `libcling`, `libclang`):...
I'm on Ubuntu 20.04.3 LTS and installed `bgfx-python` via `pip install bgfx-python` within a `venv` virtual environment. When I import via `from pybgfx import bgfx` I get a segmentation violation:...
Although I´m using it avidly Im not sure I understand how imgui is integrated into bgfx-python. I´m quite interested in using the docking features from imgui which seem to be...
edit: Might be related to #8, missing binary wheels for python 3.9 and it tries to build it from source. original post: Ran the following command `pip install bgfx-python==1.0.4 --user`...
After installing the precompiled wheel for 3.8.10 based on the steps in the readme and running the example, I receive this error when trying to run examples: `ModuleNotFoundError: No module...
I am confused about create_frame_buffer by using TextureHandle array. How can I cast bgfx.TextureHandle to const TextureHandle* _handles in C++
Hi, I'm using the interface `set_view_order` as follows: ``` view_order = np.array([ 3, 1, 2, 0 ], dtype=np.uint16) bgfx.set_view_order(0, 4, as_void_ptr(view_order)) ``` and get a trace: ``` TypeError: set_view_order(): incompatible...