Rua

Results 242 comments of Rua

@medicalwei Also got the flickering though, and they have Intel graphics.

I tried it on my laptop, and no flickering there. Using the same OS as on my desktop. ``` System: Host: rua-ThinkPad-X250 Kernel: 5.3.0-40-generic x86_64 bits: 64 Desktop: Cinnamon 4.4.8...

I can confirm that too, the same happens with me.

I don't think #1449 is the blocking issue. Rather, it has to do with how the conflict detection functions on the `ImageAccess` trait are implemented. Currently they treat anything as...

I think the problem lies in `VertexMemberTy::matches`. It doesn't seem to take into account that normalised integers in the vertex buffer can be converted into floats in the shader. The...

The part of the `shader!` macro that generates the format from the shader code is here: https://github.com/vulkano-rs/vulkano/blob/master/vulkano-shaders/src/spirv_search.rs#L18. However, I'm not sure if that's really the right approach; a "format" is...

Pinging @AustinJ235 who commented on the issue previously.

Can you share the output of `vulkaninfo`, and can you debug print the result of `InstanceExtensions::supported_by_core()`?

`vulkaninfo` doesn't list `VK_EXT_validation_features` among the instance extensions, so it seems that Vulkano is correct, and Haskell must be doing something unexpected.

Hmm, it looks like layer extensions were overlooked when implementing instance extensions in Vulkano. There is no way to query or enable them currently, I'm afraid. I'll keep this issue...