Conscat
Conscat
My team had a problem today. We ``#include ``, which in turn includes ````. This causes ``std::min()`` to not compile elsewhere in the codebase, because ``windows.h`` defines a custom ``min()``...
From what I understand, FBX is currently the favored format for storing 3D data in video games. Compared to OBJ, it contains much more information about materials and animations. Liblava...
I'm lazy, and don't like freeing memory on my own when a low-cost abstraction exists to do it for me. vulkan.hpp provides an [RAII abstraction](https://github.com/KhronosGroup/Vulkan-Hpp/blob/master/vk_raii_ProgrammingGuide.md) around its Vulkan objects to...
Like the [Sascha Willems Vulkan samples](https://github.com/SaschaWillems/Vulkan/tree/master/data/shaders), perhaps Liblava could provide shaders written in HLSL in addition to GLSL. I understand that in this repo's examples so far, the shaders are...
**What's the Product's Name?** Schism **Describe the product in a single sentence.** A self-hosting Scheme compiler building to WASM. https://github.com/google/schism **When was the product launched? Provide a specific date, if...
``` sh $ slangc -v v0.19.21⏎ ``` Compiling the following file with ``slangc -profile glsl_450 shaders.slang -entry compute_main -stage compute -o compute.spv`` causes the error: ``` glslang: shaders.slang(33): error :...
### Explain what you would like to see improved I'm trying to compile the Clang 13 version of Cling from the `cling-patches-llvm13` branch, and finding the instructions unclear. [/cling-patches-llvm13/tools/packaging](https://github.com/vgvassilev/cling/tree/cling-patches-llvm13/tools/packaging) I...
Aligning by , and |= does not work. In the last case, the output is code breaking.
I have this shader: ``` import quaternion; struct vertex_t { float3 position : POSITION; float4 color : COLOR; float2 uv : TEXCOORD0; float3 normal : NORMAL; }; struct vertex_output_t {...
I'm not sure if this is a bug, but it's not possible in C++. ```hlsl struct s {} [[shader("compute"), numthreads(1)]] void demo() { s v1 = {}; typedef s int4;...