-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomp.bat
More file actions
23 lines (17 loc) · 2.04 KB
/
comp.bat
File metadata and controls
23 lines (17 loc) · 2.04 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
glslc prefix_sum.comp -o src\algorithms\prefix_sum\shaders\prefix_sum.comp.spv
glslc src\algorithms\onesweep\shaders\histogram_radix256.comp -o src\algorithms\onesweep\build\histogram_radix256.comp.spv
glslc src\algorithms\onesweep\shaders\scan_radix256_sg.comp --target-env=vulkan1.1 -o src\algorithms\onesweep\build\scan_radix256_sg.comp.spv
glslc src\algorithms\onesweep\shaders\digit_binning_pass_sg.comp --target-env=vulkan1.1 -o src\algorithms\onesweep\build\digit_binning_pass_sg.comp.spv
glslc src\algorithms\onesweep\shaders\onesweep_reset.comp -o src\algorithms\onesweep\build\onesweep_reset.comp.spv
glslc src\algorithms\device_sort\shaders\reset.comp -o src\algorithms\device_sort\build\reset.comp.spv
glslc src\algorithms\device_sort\shaders\upsweep.comp --target-env=vulkan1.1 -o src\algorithms\device_sort\build\upsweep.comp.spv
glslc src\algorithms\device_sort\shaders\scan.comp --target-env=vulkan1.1 -o src\algorithms\device_sort\build\scan.comp.spv
glslc src\algorithms\device_sort\shaders\downsweep.comp --target-env=vulkan1.1 -o src\algorithms\device_sort\build\downsweep.comp.spv
glslc src\algorithms\device_sort_pairs\shaders\reset.comp -o src\algorithms\device_sort_pairs\build\reset.comp.spv
glslc src\algorithms\device_sort_pairs\shaders\upsweep.comp --target-env=vulkan1.1 -o src\algorithms\device_sort_pairs\build\upsweep.comp.spv
glslc src\algorithms\device_sort_pairs\shaders\scan.comp --target-env=vulkan1.1 -o src\algorithms\device_sort_pairs\build\scan.comp.spv
glslc src\algorithms\device_sort_pairs\shaders\downsweep.comp --target-env=vulkan1.1 -o src\algorithms\device_sort_pairs\build\downsweep.comp.spv
glslc src\algorithms\range\shaders\range.comp -o src\algorithms\range\build\range.comp.spv
glslc src\algorithms\csdlfe\shaders\csdlfe.comp --target-env=vulkan1.1 -o src\algorithms\csdlfe\build\csdlfe.comp.spv
glslc src\algorithms\memory\shaders\scatter_ds.comp -o src\algorithms\memory\build\scatter_ds.comp.spv
glslc src\algorithms\memory\shaders\set_ds.comp -o src\algorithms\memory\build\set_ds.comp.spv