vshCreate

Undocumented in source.
  1. auto vshCreate(Ts args, const(VkAllocationCallbacks)* allocator)
    template vshCreate(Ts...)
    vshCreate
    (
    Ts args
    ,
    const(VkAllocationCallbacks)* allocator
    )
    if (
    Ts.length > 0 &&
    isCreateInfoType!(Ts[$ - 1])
    )
  2. auto vshCreate(Ts args)

Members

Aliases

Params
alias Params = Parameters!f
Undocumented in source.
f
alias f = enforced!f_unenforced
Undocumented in source.
f_unenforced
alias f_unenforced = functionMixin!("vkCreate" ~ name ~ "s")
Undocumented in source.
f_unenforced
alias f_unenforced = functionMixin!("vkCreate" ~ name)
Undocumented in source.

Functions

vshCreate
auto vshCreate(Ts args, const(VkAllocationCallbacks)* allocator)

/auto vshCreate(Ts args, const(VkAllocationCallbacks)* allocator, Params[$-1]* outPtr) { / f(args, allocator, outPtr); /} /// Second to last argument allocator. /static if (is(Params[$-2] == const(VkAllocationCallbacks)*)) { / // Given no allocator / auto vshCreate(Ts args, Vsh!(createInfoName!(Ts[$-1]))* outPtr) { / f(args,null,outPtr); / } /} /// Last argument allocator. /static if (is(Params[$-1] == const(VkAllocationCallbacks)*)) { / // Given no allocator / auto vsh(Ts args) { / f(args,null); / } /} / static if (isPointer!(Params[$-1]) && __traits(compiles, {PointerTarget!(Params[$-1]) outPtr;})) {

vshCreate
auto vshCreate(Ts args)

/static if (is(Params[$-2] == const(VkAllocationCallbacks)*)) {

Manifest constants

name
enum name;
Undocumented in source.

Meta