sdlGetWindowPixelFormat function

int sdlGetWindowPixelFormat(
  1. Pointer<SdlWindow> window
)

Get the pixel format associated with the window.

\param window the window to query \returns the pixel format of the window on success or SDL_PIXELFORMAT_UNKNOWN on failure; call SDL_GetError() for more information.

\since This function is available since SDL 2.0.0.

extern DECLSPEC Uint32 SDLCALL SDL_GetWindowPixelFormat(SDL_Window * window)

Implementation

int sdlGetWindowPixelFormat(Pointer<SdlWindow> window) {
  final sdlGetWindowPixelFormatLookupFunction = libSdl2.lookupFunction<
      Uint32 Function(Pointer<SdlWindow> window),
      int Function(Pointer<SdlWindow> window)>('SDL_GetWindowPixelFormat');
  return sdlGetWindowPixelFormatLookupFunction(window);
}