glVdpauInitNv function opengl_glext

void glVdpauInitNv(
  1. Pointer<NativeType> vdpDevice,
  2. Pointer<NativeType> getProcAddress
)
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);
}