-
Hello,
First of all: Thanks so much for glium! I really like it.
I've noticed that the gpgpu-example is wrong.
The worst problem is that it specifies std140 as layout in the glsl, but this m…
-
I don't primarily use wayland, but if I do launch into it, I can't run any glium apps with `WINIT_UNIX_BACKEND=x11` set which use `with_multisampling()`.
If `WINIT_UNIX_BACKEND=wayland`, or unset, …
-
This is true for basically all the examples, as well as my code which uses glium.
AFAICT the only fix for it is to bump glutin to 0.19.0 (The 0.18.0 bump in #1711 doesn't fix this issue).
Locall…
-
https://github.com/glium/glium/blob/60889a20a9e78ef872eb156f17575c428a1e7464/examples/tutorial-10.rs#L57-L76
The wait until is reset before checking the event, so in case there was some event befor…
-
Dragging the bottom right corner pass the left of the window, results in some corrupt graphics.
E.g. from demo_glium (or any other backend):
![image](https://user-images.githubusercontent.com/584903…
-
Resizing a window for a long enough period time will result and a crash and display the following message.
Linux Kernel Version: 4.6.4-1-ARCH
```
radeon: Failed to allocate virtual address for buffe…
-
I'm trying the triangle.rs example, but I also tried some other project that uses glium/glutin and I also get this error
Debian 10 (inside Xen VM (Qubes))
```
./target/debug/glium
libEGL warn…
-
https://github.com/mpv-player/mpv/blob/master/libmpv/opengl_cb.h#L214 needs to get access to a function pointer to get_proc_address (signature: https://github.com/mpv-player/mpv/blob/master/libmpv/ope…
-
e.g.
``` rust
const UNIFORMS: Uniforms;
fn vertex(v: Attributes) -> (vec4, Varyings) { ... }
fn fragment(v: Varyings) -> vec4 { ... }
```
where those struct definitions are lifted up from glium (c.…
-
I am trying to streamline my uniform pipeline by using uniform blocks. I want to create a block called `StaticUniforms` which is created using `glium::uniforms::UniformBuffer::immutable`. Based on the…