blob: 7fe378da7aeea8bbae04c6605a41c735d1ef4d7a [file] [log] [blame]
// RUN: clspv %s -o %t.spv
// RUN: clspv-reflection %t.spv -o %t.dmap
// RUN: FileCheck %s < %t.dmap
// RUN: spirv-val --target-env vulkan1.0 %t.spv
// CHECK: kernel_decl,with_args
// CHECK: kernel,with_args,arg,out,argOrdinal,0,descriptorSet,0,binding,0,offset,0,argKind,buffer
// CHECK: kernel_decl,without_args
void kernel with_args(global int *out) {}
void kernel without_args() {}