Triang3l
Triang3l
`cmake/find/FindVulkanSDK.cmake` contains the following code for obtaining the path to the Vulkan SDK headers: ```cmake if(EXISTS "${VULKANSDK_ROOT_DIR}/Include/vulkan/vulkan.h") SET(VULKANSDK_INCLUDE_DIR "${VULKANSDK_ROOT_DIR}/Include" CACHE PATH "path") else() SET(VULKANSDK_INCLUDE_DIR "${VULKANSDK_ROOT_DIR}" CACHE PATH "path") endif() ```...
In [BlockCTX1::evaluatePalette](https://github.com/castano/nvidia-texture-tools/blob/master/src/nvimage/BlockDXT.cpp#L584), there appears to be pretty weird logic in two places. First, `color_array[0]` is written in BGRA order rather than RGBA, so three indices have something in B (and...
On Intel drivers from the year 2022 and older, there is a [bug](https://github.com/IGCIT/Intel-GPU-Community-Issue-Tracker-IGCIT/issues/176#issuecomment-1336471069) that causes the right and the bottom sides of the viewport to be implicitly clamped to the...