Makogan
Makogan
The microsoft compiler supports a special atribute for compatibility with glsl: https://github.com/microsoft/DirectXShaderCompiler/wiki/Vulkan-combined-image-sampler-type However declaring this in an hlsl shader: ``` [[vk::combinedImageSampler]] Texture2D textures[3] : register(t1); ``` And compiling with shaderc...
Consider the following GLSL code: ``` #version 450 layout(location = 0) in vec3 normal; layout(location = 1) in vec3 uv; layout(location = 0) out vec4 outColor; layout(binding = 1) uniform...
It would be helpful to have a few more small examples. One thing in particular would be how to add multiple objects. Like a square and a circle, both with...
I am feeding the algorithm 2 point clouds where all the points are contained in the same plane. FOr example these are a subset of both: Cloud1: ``` 79.9322 -29.1766...
I am using rust gpu to compile shaders. rust-gpu generates a single spirv for all stages. I am having the following issue I have this shader: ```rs #![deny(warnings)] mod shared;...
I was trying to do some experiments with the data set and was noticing some strange results with the pixar mike model. To try to see if the problem was...
I suspect there is a bug in the library. In particular at line: https://github.com/gwihlidal/spirv-reflect-rs/blob/b2c452750adfe9018057aabe2a8a92a87de02098/src/convert.rs#L66 It seems like it is possible for `ffi_type.members` to be null if `ffi_type.member_count` is 0. However,...
Suggestion on how to avoid unsafe assertions in recent rustc versions.
Problem summary: When trying to build IFC++ on Ubuntu a linker error occurs. System: Ubuntu 22.04 cmake version 3.22.1 gcc (Ubuntu 11.4.0-1ubuntu1~22.04) 11.4.0 Ubuntu clang version 14.0.0-1ubuntu1.1 Steps to reproduce:...
I am trying this super useful demo on UE 4.25, which seems like it should work from the git history. However it fails. Merely opening the .uproject file says some...