Create with the content of array

Property definitions

glesv2 $ GLfloatArray :: from
	# Create with the content of `array`
	new from(array: Array[Float])
	do
		var arr = new GLfloatArray(array.length)
		arr.fill_from array
		return arr
	end
lib/glesv2/glesv2.nit:464,2--470,4