You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
- FUniqueBuffer has been added as a single-ownership mutable buffer. - FSharedBuffer remains a shared-ownership buffer and is now always immutable. In addition to the factory functions that were available previously, it can be also be created by moving FUniqueBuffer. - FSharedBuffer is now used directly rather than requiring several pointer and reference types. - FWeakSharedBuffer has been added as a weak reference to a shared buffer, in place of the previous weak pointer types. - FBufferOwner has been promoted out of FSharedBuffer and can be used for advanced buffer management, including lazy buffer materialization where allocating and/or populating the buffer may be deferred until the buffer is accessed. #jira none #rb Zousar.Shaker #fyi Paul.Chipchase #rnx [CL 14939736 by Devin Doucette in ue5-main branch]