Close this display and free underlying resources

The implementation varies per platform.

Property definitions

gamnit $ GamnitDisplay :: close
	# Close this display and free underlying resources
	#
	# The implementation varies per platform.
	fun close do end
lib/gamnit/display.nit:62,2--65,17

gamnit :: display_linux $ GamnitDisplay :: close
	# Close EGL and SDL in reverse order of `setup` (nothing to do for X11)
	redef fun close
	do
		close_egl
		close_sdl
	end
lib/gamnit/display_linux.nit:57,2--62,4

gamnit :: display_android $ GamnitDisplay :: close
	redef fun close do close_egl
lib/gamnit/display_android.nit:51,2--29