sys.sdl.img.initializesdl2 $ SDLImgInitFlags :: SELF
Type of this instance, automatically specialized in every classcore :: Pointer :: address_is_null
Is the address behind this Object at NULL?core :: Object :: class_factory
Implementation used byget_class to create the specific class.
			sdl2 :: SDLImgInitFlags :: defaultinit
core :: Object :: defaultinit
core :: Pointer :: defaultinit
core :: Object :: is_same_instance
Return true ifself and other are the same instance (i.e. same identity).
			core :: Object :: is_same_serialized
Isself the same as other in a serialization context?
			core :: Object :: is_same_type
Return true ifself and other have the same dynamic type.
			core :: Object :: output_class_name
Display class name on stdout (debug only).
# Flags from `sys.sdl.img.initialize`
extern class SDLImgInitFlags `{ IMG_InitFlags `}
	# Get the default empty flag set
	new `{ return 0; `}
	# Add the JPG support to this flag set
	fun jpg: SDLImgInitFlags `{ return self | IMG_INIT_JPG; `}
	# Add the PNG support to this flag set
	fun png: SDLImgInitFlags `{ return self | IMG_INIT_PNG; `}
	# Add the TIF support to this flag set
	fun tif: SDLImgInitFlags `{ return self | IMG_INIT_TIF; `}
	# Add the WEBP support to this flag set
	fun webp: SDLImgInitFlags `{ return self | IMG_INIT_WEBP; `}
end
					lib/sdl2/image.nit:62,1--78,3