GLAPI void APIENTRY glVDPAUInitNV (const void *vdpDevice, const void *getProcAddress)
Implementation
void glVdpauInitNv(
Pointer<NativeType> vdpDevice,
Pointer<NativeType> getProcAddress,
) {
final glVdpauInitNvAsFunction = _glVdpauInitNv
.cast<
NativeFunction<
Void Function(
Pointer<NativeType> vdpDevice,
Pointer<NativeType> getProcAddress,
)
>
>()
.asFunction<
void Function(
Pointer<NativeType> vdpDevice,
Pointer<NativeType> getProcAddress,
)
>();
return glVdpauInitNvAsFunction(vdpDevice, getProcAddress);
}