Version: 2020.2

描述

Signifies that ProfilerMarkerData.Ptr points to a raw byte array.

Use Blob8 to arbitrary binary data to the ProfilerUnsafeUtility.BeginSampleWithMetadata.

using System.Diagnostics;
using System.Runtime.CompilerServices;
using Unity.Profiling;
using Unity.Profiling.LowLevel;
using Unity.Profiling.LowLevel.Unsafe;

public static class ProfilerMarkerExtension { [MethodImpl(MethodImplOptions.AggressiveInlining)] [Conditional("ENABLE_PROFILER")] public static unsafe void Begin(this ProfilerMarker marker, byte* metadata, uint metadataSize) { var data = new ProfilerMarkerData(); data.Type = (byte)ProfilerMarkerDataType.Blob8; data.Size = metadataSize; data.Ptr = metadata; ProfilerUnsafeUtility.BeginSampleWithMetadata(marker.Handle, 1, &data); } }
Copyright © 2023 Unity Technologies
优美缔软件(上海)有限公司 版权所有
"Unity"、Unity 徽标及其他 Unity 商标是 Unity Technologies 或其附属机构在美国及其他地区的商标或注册商标。其他名称或品牌是其各自所有者的商标。
公安部备案号:
31010902002961