sdlOpenHapticFromJoystick function

Pointer<SdlHaptic> sdlOpenHapticFromJoystick(
  1. Pointer<SdlJoystick> joystick
)

Open a haptic device for use from a joystick device.

You must still close the haptic device separately. It will not be closed with the joystick.

When opened from a joystick you should first close the haptic device before closing the joystick device. If not, on some implementations the haptic device will also get unallocated and you'll be unable to use force feedback on that device.

\param joystick the SDL_Joystick to create a haptic device from. \returns a valid haptic device identifier on success or NULL on failure; call SDL_GetError() for more information.

\since This function is available since SDL 3.1.3.

\sa SDL_CloseHaptic \sa SDL_IsJoystickHaptic

extern SDL_DECLSPEC SDL_Haptic * SDLCALL SDL_OpenHapticFromJoystick(SDL_Joystick *joystick)

Implementation

Pointer<SdlHaptic> sdlOpenHapticFromJoystick(Pointer<SdlJoystick> joystick) {
  final sdlOpenHapticFromJoystickLookupFunction = libSdl3.lookupFunction<
      Pointer<SdlHaptic> Function(Pointer<SdlJoystick> joystick),
      Pointer<SdlHaptic> Function(
          Pointer<SdlJoystick> joystick)>('SDL_OpenHapticFromJoystick');
  return sdlOpenHapticFromJoystickLookupFunction(joystick);
}