9 lines
232 B
Bash
Executable File
9 lines
232 B
Bash
Executable File
#!/bin/bash
|
|
|
|
glslc -fshader-stage=comp --target-env=vulkan1.2 convert.comp.glsl -oconvert.comp.spv
|
|
|
|
ldc2 vulkan.d vulkan_funcs.d vulkan_logging.d vulkan_util.d -L-lvulkan --unittest -J./ -verrors=30
|
|
|
|
rm convert.comp.spv
|
|
rm vulkan.o
|