Copy content of this matrix to a NativeGLfloatArray

Property definitions

gamnit :: programs $ Matrix :: fill_native
	# Copy content of this matrix to a `NativeGLfloatArray`
	fun fill_native(native: NativeGLfloatArray)
	do
		for i in [0..width[ do
			for j in [0..height[ do
				native.matrix_set(i, j, self[i, j])
			end
		end
	end
lib/gamnit/programs.nit:586,2--594,4