Go to file
Stephen Seo 11de490e94 Vulkan compute: combine all minmax calls
This commit combines the minmax execution via Vulkan compute. The
previous implementation executed compute in vulkan_minmax with a new
command buffer each time. This implementation combines all required
executions of compute in vulkan_minmax in a single command buffer and
uses a pipeline to ensure the enqueued compute calls stay in order.
2024-04-01 12:50:54 +09:00
src Vulkan compute: combine all minmax calls 2024-04-01 12:50:54 +09:00
.clangd Switch to CMake, try to fix grayscale blue-noise 2021-10-06 19:54:07 +09:00
.gitignore Switch to CMake, try to fix grayscale blue-noise 2021-10-06 19:54:07 +09:00
CMakeLists.txt CMakeLists.txt: Debug flag "-Og" instead of "-O0" 2024-03-20 16:20:13 +09:00
LICENSE Update LICENSE year 2024-03-06 17:38:53 +09:00
README.md Update README.md 2024-04-01 11:30:42 +09:00

Blue_Noise_Generation

Currently, this project only generates blue-noise, which can be used for dithering.
The blue-noise can be generated via OpenCL, Vulkan compute, or with threads on the CPU.