Width of this texture

Property definitions

sdl2 $ SDLTexture :: width
	# Width of this texture
	fun width: Int `{
		int val;
		SDL_QueryTexture(self, NULL, NULL, &val, NULL);
		return val;
	`}
lib/sdl2/sdl2_base.nit:455,2--460,3