allocatePointer method
- @override
- @nonVirtual
- RaylibTemp temp,
- String key, [
- int count = 1
override
Allocates a native slot of count elements in temp under key and
returns the resulting pointer.
Implementations should simply delegate to the appropriate
temp.<Type>(key, count) call. The returned memory is zeroed (or reused) but not
yet populated, call allocateInto or writeInto to fill it.
Implementation
@override
@nonVirtual
Pointer<C> allocatePointer(RaylibTemp temp, String key, [int count = 1])
=> throw UnsupportedError('$runtimeType: is just a view; cannot allocate it externally.');