Files
27Aug2021-Cpp2IL-Dump/Unity.RenderPipelines.Core.Runtime/UnityEngine/Rendering/ProfilingSample.cs
T
niko c12fbe3fc6 m
2026-04-12 16:51:38 +02:00

69 lines
2.1 KiB
C#

using System;
using System.Runtime.InteropServices;
using Cpp2IlInjected;
using UnityEngine.Profiling;
namespace UnityEngine.Rendering
{
// Token: 0x0200006D RID: 109
[Token(Token = "0x2000041")]
[Obsolete]
public struct ProfilingSample : IDisposable
{
// Token: 0x06000246 RID: 582 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x600018D")]
[Address(RVA = "0xA3E2E0", Offset = "0xA3D2E0", VA = "0x180A3E2E0")]
public ProfilingSample(CommandBuffer cmd, string name, [Optional] CustomSampler sampler)
{
}
// Token: 0x06000247 RID: 583 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x600018E")]
[Address(RVA = "0xA3E370", Offset = "0xA3D370", VA = "0x180A3E370")]
public ProfilingSample(CommandBuffer cmd, string format, object arg)
{
}
// Token: 0x06000248 RID: 584 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x600018F")]
[Address(RVA = "0xA3E3C0", Offset = "0xA3D3C0", VA = "0x180A3E3C0")]
public ProfilingSample(CommandBuffer cmd, string format, params object[] args)
{
}
// Token: 0x06000249 RID: 585 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000190")]
[Address(RVA = "0xA3E270", Offset = "0xA3D270", VA = "0x180A3E270", Slot = "4")]
public void Dispose()
{
}
// Token: 0x0600024A RID: 586 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000191")]
[Address(RVA = "0xA3E1F0", Offset = "0xA3D1F0", VA = "0x180A3E1F0")]
private void Dispose(bool disposing)
{
}
// Token: 0x0400017B RID: 379
[global::Cpp2IlInjected.FieldOffset(Offset = "0x0")]
[Token(Token = "0x4000105")]
private readonly CommandBuffer m_Cmd;
// Token: 0x0400017C RID: 380
[global::Cpp2IlInjected.FieldOffset(Offset = "0x8")]
[Token(Token = "0x4000106")]
private readonly string m_Name;
// Token: 0x0400017D RID: 381
[global::Cpp2IlInjected.FieldOffset(Offset = "0x10")]
[Token(Token = "0x4000107")]
private bool m_Disposed;
// Token: 0x0400017E RID: 382
[global::Cpp2IlInjected.FieldOffset(Offset = "0x18")]
[Token(Token = "0x4000108")]
private CustomSampler m_Sampler;
}
}