RaylibTempAllocatorBase<TempType extends RaylibTempBase<RaylibBase> , P, S> constructor
RaylibTempAllocatorBase<TempType extends RaylibTempBase<RaylibBase> , P, S> (
- TempType temp,
- String name, {
- required int byteSize,
- required S allocatorFunc([
- int count
- required void freeFunc(
- S ptr
- required P pointerFactory(
- S ptr
- required S pointerToSource(
- P ptr
- required P nullptrFactory(),
- required String printerFunc(
- P ptr
- required bool isPointerNull(
- P ptr
Implementation
RaylibTempAllocatorBase(this.temp, this.name, {
required this.byteSize,
required this.allocatorFunc,
required this.freeFunc,
required this.pointerFactory,
required this.pointerToSource,
required this.nullptrFactory,
required this.printerFunc,
required this.isPointerNull,
});