Prashant Saxena
Prashant Saxena
Hello, As you have suggested using skia.Picture for layer-based rendering, Here is what I understood so far: ```python import contextlib, glfw, skia from OpenGL import GL WIDTH, HEIGHT = 640,...
Ok, I have created this little function for text alignment and hope other users would find it useful. ```python # Horizontal align ALIGN_LEFT = 1
Hello @almarklein , Yes, I am aware of [wgpu-py](https://github.com/pygfx/wgpu-py). While running the example you have posted, I did print the values (buffer_offset, data_length) in [write_buffer](https://github.com/pygfx/wgpu-py/blob/main/wgpu/backends/rs.py#L2433), and they are same as...
Well, if you can wrap rest of the [example](https://github.com/eliemichel/LearnWebGPU-Code/blob/step031-vanilla/main.cpp#L129) then I can use it as reference to check my implementation. I am specially interested in how wgpu-py handle callback part...
Hello, I am also facing the same issue. Could you please post the solution? Cheers Prashant
Hello, I did a minor change in _get_type method in ctypes.py: ```python ... elif typ[0] == 'bool': cls = c_bool else: raise KeyError("Can't find base type for {}".format(typ)) ... ```...
I am using version **0.2.1**
I don't see this **_types_** attribute. Neither on parser nor on the library object. Here is the output: ```python print(dir(parser)) ['__class__', '__delattr__', '__dict__', '__dir__', '__doc__', '__eq__', '__format__', '__ge__', '__getattribute__', '__gt__',...
Hi, Windows 10 Python 3.10.0 ``` customtkinter==5.2.1 dm-tree==0.1.8 dtaidistance==2.3.11 eyed3==0.9.7 fastdtw==0.3.4 fCWT==0.1.18 fqdn==1.5.1 google-auth-oauthlib==1.2.0 isoduration==20.11.0 jsonpointer==2.4 lesscpy==0.15.1 noisereduce==3.0.2 notebook==7.1.2 pandas==2.2.1 pipdeptree==2.16.1 pyAudioAnalysis==0.3.14 pydub==0.25.1 python-speech-features==0.6 resampy==0.4.3 tensorflow==2.16.1 tensorflow-estimator==2.15.0 tkinterdnd2==0.3.0 toml==0.10.2 uri-template==1.3.0...
Thanks @stephenberry, When changing this structure's member length to [nc::NdArray](https://github.com/dpilger26/NumCpp) ```cpp struct coef_t { int min{}; int max{}; std::array mean{}; std::vector duration{}; nc::NdArray length{}; // TODO: implement "data" }; ```...