ttfGetTextWrapWidth function

bool ttfGetTextWrapWidth(
  1. Pointer<TtfText> text,
  2. Pointer<Int32> wrapWidth
)

Get whether wrapping is enabled on a text object.

\param text the TTF_Text to query. \param wrap_width a pointer filled in with the maximum width in pixels or 0 if the text is being wrapped on newline characters. \returns true on success or false on failure; call SDL_GetError() for more information.

\threadsafety This function should be called on the thread that created the text.

\since This function is available since SDL_ttf 3.0.0.

\sa TTF_SetTextWrapWidth

extern SDL_DECLSPEC bool SDLCALL TTF_GetTextWrapWidth(TTF_Text *text, int *wrap_width)

Implementation

bool ttfGetTextWrapWidth(Pointer<TtfText> text, Pointer<Int32> wrapWidth) {
  final ttfGetTextWrapWidthLookupFunction = libSdl3Ttf.lookupFunction<
      Uint8 Function(Pointer<TtfText> text, Pointer<Int32> wrapWidth),
      int Function(Pointer<TtfText> text,
          Pointer<Int32> wrapWidth)>('TTF_GetTextWrapWidth');
  return ttfGetTextWrapWidthLookupFunction(text, wrapWidth) == 1;
}