Function Display.this

Constructs a display given a width, height, window flags, renderer flags, a title, and a path for an image icon (or null) Disregarding width and height, constructor asks for flags first because once set, those cannot be changed

this (
  int w,
  int h,
  derelict.sdl2.internal.sdl_types.SDL_WindowFlags flags = cast(SDL_WindowFlags)4,
  uint rendererFlags = 0u,
  string title = "",
  string iconPath = null
);