VulkanSceneGraph icon indicating copy to clipboard operation
VulkanSceneGraph copied to clipboard

Vulkan & C++17 based Scene Graph Project

Results 71 VulkanSceneGraph issues
Sort by recently updated
recently updated
newest added

## Description Use target_compile_features to set C++17 standard, with PUBLIC scope. This is the modern CMake preferred way to set a required C++ standard. This now means that users do...

# Pull Request Template ## Description Building and compiling on Windows with Ninja + Clang doesn't work, so I fixed it. ## Type of change Please delete options that are...

In the function `void apply(vsg::ScrollWheelEvent& scrollWheel)` `scrollWheel.delta.y` returns `1` when scrolling forward and `-1` when scrolling backward. However, when the **Alt** key is pressed, it returns a value in both...

An alternative to https://github.com/vsg-dev/VulkanSceneGraph/pull/1609 The original PR's description, which is almost entirely relevant to this one, too: > This allows default implementations of members to be provided, prevents copying and...

This allows default implementations of members to be provided, prevents copying and pasting of lots of trivial functions, and makes it possible to generate a compiler error if a subclass...

In the tile reader there is a map that keeps tiles alive to reuse their geometry, saving VRAM, but because of the `ref_ptr` those tiles are never deleted which overtime...

Launching **vsgdraw** in vsgExamples with debugLayer=true prints this validation error multiple times, then it goes away: ``` Validation Error: [ VUID-vkAcquireNextImageKHR-semaphore-01779 ] | MessageID = 0x5717e75b vkAcquireNextImageKHR(): Semaphore must not...

A crash occurred when the window was minimized after being correctly created. Preliminary analysis: Normally, minimizing the window will set _windowMapped to false, and the window->visible() check will not cause...

I noticed a few problems with the JSON loader yesterday, so thought I better write them down so they're not forgotten. * JSON supports arbitrary characters in keys, including quote...

# Pull Request Template ## Description Avoids disturbing necessary descriptor sets while still avoiding the need for full layout compatibility checks. This is achieved with a basic `vector` saying which...