Almar Klein

Results 295 issues of Almar Klein

This demo that Nico showed is awesome. Can we have it in vispy please? :D

type: example

We currently have one tiny Cython module: https://github.com/vispy/vispy/blob/main/vispy/visuals/text/_sdf_cpu.pyx If we would spin this into a separate package, it would substantially simplify the packaging (and releasing) of vispy. Of course, you...

Consider the following WGSL shader: ```wgsl struct VertexInput { [[builtin(vertex_index)]] index : u32; }; struct VertexOutput { [[location(0)]] color : vec4; [[builtin(position)]] pos: vec4; }; [[stage(vertex)]] fn vs_main(in: VertexInput) ->...

kind: bug
lang: Metal
area: back-end

People like benchmarks, and often use FPS for this. This is not a great measure for several reasons. To name a few: it's nonlinear, at high FPS you're mostly measuring...

Whenever there is a validation error (e.g. a syntax error in the shader) Rust will panic, and bring down the whole process. This makes it hard to do more interactive...

enhancement
help wanted

Todo: * [x] Test the binary on a Raspberry Pi. * [x] We should probably change the name of the build and artefact. I'm not very familiar with all the...

Should be easy to add now. So I learned that aarch64 does not run on RPi, you need armv7 for that. I think we'd need `aarch64-unknown-linux-musl` if we want to...

Since some time now, our binaries are sometimes reported by AntiVirus software to contain malicious code. This is a meta-issue to collect information about this. I'll update the information as...

Originally reported by: **Sean Usick (Bitbucket: [MetaMemoryT](http://bitbucket.org/MetaMemoryT), GitHub: [MetaMemoryT](http://github.com/MetaMemoryT))** --- I would like to add the feature to save when the window loses focus. Is their any Qt5 api to...

type: bug