Version: 2018.3 (switch to 2019.1)
LanguageEnglish
  • C#

NativeArrayUnsafeUtility.ConvertExistingDataToNativeArray

Suggest a change

Success!

Thank you for helping us improve the quality of Unity Documentation. Although we cannot accept all submissions, we do read each suggested change from our users and will make updates where applicable.

Close

Submission failed

For some reason your suggested change could not be submitted. Please <a>try again</a> in a few minutes. And thank you for taking the time to help us improve the quality of Unity Documentation.

Close

Cancel

public static NativeArray<T> ConvertExistingDataToNativeArray(void* dataPointer, int length, Unity.Collections.Allocator allocator);

Parameters

dataPointerPointer to the preallocated data.
lengthLength (in bytes) of the data.
allocatorAllocation strategy to use.

Returns

NativeArray<T> A new NativeArray, allocated with the given strategy and wrapping the provided data.

Description

Converts an existing buffer to a NativeArray.

This method can be used to turn an existing buffer into a NativeArray, to be fed to the Unity API for processing. Ownership of the data is controlled via the allocation strategy provided via the allocator argument. Allocator.None can be used in case the data is owned externally, while the others can be used to transfer control to the NativeArray.

Did you find this page useful? Please give it a rating: