1. UI - 조이스틱 UIManager에 추가 및 Scene에서 호출 방식 변경 2. UI - 경험치 바 앞에 레벨 아이콘 추가 3. 몬스터 죽었을때 경험치로 변경 4. 경험치 바와 레벨 아이콘 연동 Todo 1. 투사체 공격 만들기 2. 몬스터가 플레이어 쫓아오게 만들기 3. 몬스터를 카메라 외각에서 다량으로 생성하는 기능 추가하기 4. 몬스터가 캐릭터 공격시 체력 닳게 하기 5. 메뉴 UI 만들기 6. 레벨업시 획득 스킬 UI 만들기 7. 체력바 UI 만들기 8. 공격시 데미지 띄우는 UI 만들기
37502 lines
2.2 MiB
37502 lines
2.2 MiB
#include "pch-cpp.hpp"
|
|
|
|
|
|
|
|
|
|
|
|
struct VirtualActionInvoker0
|
|
{
|
|
typedef void (*Action)(void*, const RuntimeMethod*);
|
|
|
|
static inline void Invoke (Il2CppMethodSlot slot, RuntimeObject* obj)
|
|
{
|
|
const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
|
|
((Action)invokeData.methodPtr)(obj, invokeData.method);
|
|
}
|
|
};
|
|
template <typename T1>
|
|
struct VirtualActionInvoker1
|
|
{
|
|
typedef void (*Action)(void*, T1, const RuntimeMethod*);
|
|
|
|
static inline void Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1)
|
|
{
|
|
const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
|
|
((Action)invokeData.methodPtr)(obj, p1, invokeData.method);
|
|
}
|
|
};
|
|
template <typename T1, typename T2>
|
|
struct VirtualActionInvoker2
|
|
{
|
|
typedef void (*Action)(void*, T1, T2, const RuntimeMethod*);
|
|
|
|
static inline void Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1, T2 p2)
|
|
{
|
|
const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
|
|
((Action)invokeData.methodPtr)(obj, p1, p2, invokeData.method);
|
|
}
|
|
};
|
|
template <typename R>
|
|
struct VirtualFuncInvoker0
|
|
{
|
|
typedef R (*Func)(void*, const RuntimeMethod*);
|
|
|
|
static inline R Invoke (Il2CppMethodSlot slot, RuntimeObject* obj)
|
|
{
|
|
const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
|
|
return ((Func)invokeData.methodPtr)(obj, invokeData.method);
|
|
}
|
|
};
|
|
template <typename R, typename T1>
|
|
struct VirtualFuncInvoker1
|
|
{
|
|
typedef R (*Func)(void*, T1, const RuntimeMethod*);
|
|
|
|
static inline R Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1)
|
|
{
|
|
const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
|
|
return ((Func)invokeData.methodPtr)(obj, p1, invokeData.method);
|
|
}
|
|
};
|
|
struct GenericVirtualActionInvoker0
|
|
{
|
|
typedef void (*Action)(void*, const RuntimeMethod*);
|
|
|
|
static inline void Invoke (const RuntimeMethod* method, RuntimeObject* obj)
|
|
{
|
|
VirtualInvokeData invokeData;
|
|
il2cpp_codegen_get_generic_virtual_invoke_data(method, obj, &invokeData);
|
|
((Action)invokeData.methodPtr)(obj, invokeData.method);
|
|
}
|
|
};
|
|
struct InterfaceActionInvoker0
|
|
{
|
|
typedef void (*Action)(void*, const RuntimeMethod*);
|
|
|
|
static inline void Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj)
|
|
{
|
|
const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface);
|
|
((Action)invokeData.methodPtr)(obj, invokeData.method);
|
|
}
|
|
};
|
|
template <typename T1>
|
|
struct InterfaceActionInvoker1
|
|
{
|
|
typedef void (*Action)(void*, T1, const RuntimeMethod*);
|
|
|
|
static inline void Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj, T1 p1)
|
|
{
|
|
const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface);
|
|
((Action)invokeData.methodPtr)(obj, p1, invokeData.method);
|
|
}
|
|
};
|
|
template <typename T1, typename T2>
|
|
struct InterfaceActionInvoker2
|
|
{
|
|
typedef void (*Action)(void*, T1, T2, const RuntimeMethod*);
|
|
|
|
static inline void Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj, T1 p1, T2 p2)
|
|
{
|
|
const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface);
|
|
((Action)invokeData.methodPtr)(obj, p1, p2, invokeData.method);
|
|
}
|
|
};
|
|
template <typename T1, typename T2, typename T3>
|
|
struct InterfaceActionInvoker3
|
|
{
|
|
typedef void (*Action)(void*, T1, T2, T3, const RuntimeMethod*);
|
|
|
|
static inline void Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj, T1 p1, T2 p2, T3 p3)
|
|
{
|
|
const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface);
|
|
((Action)invokeData.methodPtr)(obj, p1, p2, p3, invokeData.method);
|
|
}
|
|
};
|
|
struct GenericInterfaceActionInvoker0
|
|
{
|
|
typedef void (*Action)(void*, const RuntimeMethod*);
|
|
|
|
static inline void Invoke (const RuntimeMethod* method, RuntimeObject* obj)
|
|
{
|
|
VirtualInvokeData invokeData;
|
|
il2cpp_codegen_get_generic_interface_invoke_data(method, obj, &invokeData);
|
|
((Action)invokeData.methodPtr)(obj, invokeData.method);
|
|
}
|
|
};
|
|
template <typename T1>
|
|
struct GenericInterfaceActionInvoker1
|
|
{
|
|
typedef void (*Action)(void*, T1, const RuntimeMethod*);
|
|
|
|
static inline void Invoke (const RuntimeMethod* method, RuntimeObject* obj, T1 p1)
|
|
{
|
|
VirtualInvokeData invokeData;
|
|
il2cpp_codegen_get_generic_interface_invoke_data(method, obj, &invokeData);
|
|
((Action)invokeData.methodPtr)(obj, p1, invokeData.method);
|
|
}
|
|
};
|
|
|
|
struct Action_2_tB73C956644B6ABEA48D4056B6E9B2EAABCA040CD;
|
|
struct BaseRenderFunc_2_tCEF4A4193D64B47BA9BDF45CF9B801DEB82FED1C;
|
|
struct BaseRenderFunc_2_tA367BC6873E6166CAEC57DF6061E145117B9C512;
|
|
struct BaseRenderFunc_2_tAAA1D1FA06E9CB98754B751EAF6411CE94F73FB6;
|
|
struct BaseRenderFunc_2_t2AE7A68115EFC92E8E3068C0057F850871744886;
|
|
struct BaseRenderFunc_2_t8B6F86F4EF8472D6B5D84629A6E35307F19167AE;
|
|
struct BaseRenderFunc_2_tEE48E9E21762BFE07AE97EF2E3E0E79793067606;
|
|
struct BaseRenderFunc_2_tC164CC802D091B68B6A0497F4C6AEF80D564AB57;
|
|
struct BaseRenderFunc_2_t762A186FC860B473359C6CA1DE69EDCFB3985B45;
|
|
struct BaseRenderFunc_2_tECA37CC68AF2BD6C31F2DFF58EF746DC7B2C5AFE;
|
|
struct BaseRenderFunc_2_tF8B0FC77C310265D6F0EA096E14C24E57D0FEAD6;
|
|
struct BaseRenderFunc_2_t592BAE028800F18A071D869FCB982B997F5E13A2;
|
|
struct BaseRenderFunc_2_t0F078AB23E7CF63F4670F4E80CFDE4CD4BEB0F72;
|
|
struct BaseRenderFunc_2_t55E594CC6D951D462AFB9867489BE9665166DC90;
|
|
struct Comparison_1_t49BE56523BDD8BC22EF3396960546FE16DE7B11A;
|
|
struct Comparison_1_t1D70AD681199BAE9A46BB890478D827A9BA04A36;
|
|
struct DebugDisplaySettingsStats_1_tBFF67F2E6F4D9231320ABAD8D301958FC19B268E;
|
|
struct Dictionary_2_tCB9019887EB0254D4745B0724BC12327C5B63792;
|
|
struct Dictionary_2_tB41FAC88F07BAB98D6D373F7C94FB0496D1BDA32;
|
|
struct Dictionary_2_t84C395D6616E2C30128BA4396899757AAA7B89D7;
|
|
struct Dictionary_2_t21E090827BAF9D0D011CB55C02CA666756BF1AE7;
|
|
struct Dictionary_2_t54101FB5AEA0292C95D30CFAB7909873BF26E0B9;
|
|
struct Dictionary_2_t6EB10DF170874D02D43E115B0A1B93479CE3FF80;
|
|
struct Dictionary_2_t5C96F4B6841710A9013966F76224BAE01FB4B4D1;
|
|
struct Dictionary_2_t31654189884079503F23B56F8ED949AA30E46A52;
|
|
struct Dictionary_2_t8D403C45B564DB77AE8A32FD6D35E333ABE68793;
|
|
struct Func_2_t3B89FA9251E6091D6FD350356D078F4712E902B3;
|
|
struct HashSet_1_tE8F98237DEE456C22A256E903FF802077A6BFA74;
|
|
struct IEnumerable_1_tCE758D940790D6D0D56B457E522C195F8C413AF2;
|
|
struct IEnumerator_1_t5926539DBBB2302C569D0A07AF3A95A874CEBE33;
|
|
struct IEqualityComparer_1_t38009044A4DADA30C1C7C33E1DB1F56A370D4EE0;
|
|
struct IEqualityComparer_1_t6B41DEB890FDAC740B9404C2145A832F69F8012A;
|
|
struct KeyCollection_t4B69CDE8B6A50266AA8F2E1B9EF32B6539D9AE82;
|
|
struct KeyCollection_t4664ABDEEEC1AFC7C0316608FE10A9828D2175BB;
|
|
struct KeyCollection_t729642E31E09FD3235BFA6007575EC4D4C8CE43E;
|
|
struct Lazy_1_tBFAAE9132FA43826576BE872F20EDCA48C34FA3F;
|
|
struct List_1_t1A9527CB44249AD17D081A2D7A468343FC2D0720;
|
|
struct List_1_t2E25D2E682EF62FB0FC538A4C88B3D49616A03DC;
|
|
struct List_1_tD8DB23A94A44626CAF7E9B5B4A949D0FDC7B27A7;
|
|
struct List_1_t437E45D007C2D93DCB30DA30023CB2745EE095D0;
|
|
struct List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73;
|
|
struct List_1_tF9D88C946600C782EE786A252258C0AA97BD019A;
|
|
struct List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D;
|
|
struct List_1_tB5216E2043E168F4E0A122E4594A52A4BA2394F2;
|
|
struct List_1_t1EFB69EBBF25AD12F3A9E56C62B12F01D63469CD;
|
|
struct List_1_t67B4F73A05A1220FF45824DBE29F391490B25A0C;
|
|
struct List_1_t2E485E650BF1E41358CE56A69323E183C5A89CB6;
|
|
struct List_1_t2121653FB628940E808D105AD2C17E0F20AFB3A6;
|
|
struct List_1_t4673975A297A80D4D4A65EB5A2BE3B6BD1EED9AF;
|
|
struct List_1_t9B68833848E4C4D7F623C05F6B77F0449396354A;
|
|
struct List_1_tF42FEB6C3B18B7E7C8F2DE1FEBA00D2491736317;
|
|
struct List_1_tA7666C6690CE2AEE97571615AD3AFCE2BB020597;
|
|
struct List_1_t7B0B015A57215073C45C813320AF5F3ECF8149F7;
|
|
struct List_1_t218CEA415E5769B47AB34C68D264977822ECAD17;
|
|
struct List_1_t75FC6D059D696BAD77462D09FCDC98B4A7B7D3D4;
|
|
struct Queue_1_tCA24E420CB13C6411AEFC3ECE9E62219F7937A1E;
|
|
struct Stack_1_t3197E0F5EA36E611B259A88751D31FC2396FE4B6;
|
|
struct ValueCollection_t8206F3F01EE6A27CC3833755CFDB7AA958E9559A;
|
|
struct ValueCollection_t66950A766C470CC17408744B977179C7559E538B;
|
|
struct ValueCollection_tC02B95B434A38DDC6DF72D47BDA4922291DC94D7;
|
|
struct EntryU5BU5D_t1505C69DDC1CF1E1454A8761CA3FFA04D40631A3;
|
|
struct EntryU5BU5D_t922E0E3923DED813CD2D7F43D2886F5E19802D11;
|
|
struct EntryU5BU5D_tC7ABC6A67982D2F89D145488BD4884BC9FAA7C4F;
|
|
struct List_1U5BU5D_t37294D7C303231F2FD83B3C398AED0937F4F3206;
|
|
struct GraphicsFormatU5BU5DU5BU5D_t1424BD937A890524D2A66FF39E61DEB0F10FE0A2;
|
|
struct Int32U5BU5DU5BU5D_t179D865D5B30EFCBC50F82C9774329C15943466E;
|
|
struct RTHandleU5BU5DU5BU5D_t6066EC3F94599A5A42DA9A893F102E9618CB612F;
|
|
struct RenderTargetIdentifierU5BU5DU5BU5D_tDB35F8D017FE3AD8BB35E08E323074D47C5A10BB;
|
|
struct AttachmentDescriptorU5BU5D_tC70107EBD955FE94BA31C7FDC146069EF9C547C1;
|
|
struct BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4;
|
|
struct BoundingSphereU5BU5D_tD7485B1D5D5A0EE26537B093423FC3AC149BEA47;
|
|
struct CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB;
|
|
struct DecalCachedChunkU5BU5D_t0F118709F0F6FA3238811381BCDB645D04924314;
|
|
struct DecalCulledChunkU5BU5D_t7B7AD97C0878869F7E1D340E6DB45FCD1BF92D8A;
|
|
struct DecalDrawCallChunkU5BU5D_t273B9AA3ED5B31BEC25656F7F1E9BB11D54C1A4A;
|
|
struct DecalEntityChunkU5BU5D_t5BCC097CCF64A4B055507321747454271404C7B4;
|
|
struct DecalProjectorU5BU5D_t4DB89E5586C0FD4200DA223C0ADAFD3D66BF21F3;
|
|
struct DelegateU5BU5D_tC5AB7E8F745616680F337909D3A8E6C722CDF771;
|
|
struct GraphicsDeviceTypeU5BU5D_t4322565F239068C66BF47053B83BD6A9A9D16408;
|
|
struct GraphicsFormatU5BU5D_tF6A3D90C430FA3F548B77E5D58D25D71F154E6C5;
|
|
struct Hash128U5BU5D_tB104E7247B842648E447B7FCF4748077DC1F8C98;
|
|
struct Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C;
|
|
struct IntPtrU5BU5D_tFD177F8C806A6921AD7150264CCC62FA00CAD832;
|
|
struct Matrix4x4U5BU5D_t9C51C93425FABC022B506D2DB3A5FA70F9752C4D;
|
|
struct ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918;
|
|
struct PlaneU5BU5D_t4EEF66BAA8B0140EFFF34F6183CE7F80546592BE;
|
|
struct RTHandleU5BU5D_tE4B403B060D159B839BF74E8B59F8DCD52CF97DF;
|
|
struct RenderBufferStoreActionU5BU5D_tFEA8F5DD460573EA9F35FBEC5727D1804C5DCBF5;
|
|
struct RenderStateBlockU5BU5D_tB3277DEBE81600D781CFFD366CF0B6E363775468;
|
|
struct RenderTargetIdentifierU5BU5D_t179798C153B7CE381B41C57863F98CB24023C4CE;
|
|
struct ScriptableRenderPassU5BU5D_tC40E3619A24B14CB90535A47C826514BE1343F87;
|
|
struct ScriptableRendererU5BU5D_t9B15C048BCE03A67E830F1C79989B6A3E43788E6;
|
|
struct ScriptableRendererDataU5BU5D_tC674C147618C92B68DB64ECFDC847C8A941C6169;
|
|
struct ScriptableRendererFeatureU5BU5D_t64361F1FA79104227050258B0751D3DF2E9FDA1C;
|
|
struct ShaderTagIdU5BU5D_tE1BA124E13B8096153E25C5AF9C1D15D71466143;
|
|
struct SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C;
|
|
struct StackTraceU5BU5D_t32FBCB20930EAF5BAE3F450FF75228E5450DA0DF;
|
|
struct StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248;
|
|
struct Texture2DU5BU5D_t05332F1E3F7D4493E304C702201F9BE4F9236191;
|
|
struct TextureHandleU5BU5D_t544FFA6F5A0E1E5F24EB3C5E5F8547CCE9498BD7;
|
|
struct TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB;
|
|
struct Vector4U5BU5D_tC0F3A7115F85007510F6D173968200CD31BCF7AD;
|
|
struct ItemU5BU5D_t4AC8CDDFF9ED634B9ECE154F0C638C00B12B5CCB;
|
|
struct DecalEntityItemU5BU5D_t4667E6B7E7BCD5313A0D07A782F44A8954080359;
|
|
struct CombinedChunksU5BU5D_tE1B967C0ED5D0439978E22BAE927DAB629A4E5DD;
|
|
struct ShaderPassesU5BU5D_t4D261BCE8FF9CC39325D8B095F6991A0135415DF;
|
|
struct Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07;
|
|
struct AdditionalLightsShadowCasterPass_t5E00A3C851AB73A44B7577458AD868AF8F4FE004;
|
|
struct ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129;
|
|
struct AsyncCallback_t7FEF460CBDCFB9C5FA2EF776984778B9A4145F4C;
|
|
struct BaseCommandBuffer_tD67BB9B3F740537BD3F3A96FA17D06E6C3BFDC06;
|
|
struct Behaviour_t01970CFBBA658497AE30F311C447DB0440BAB7FA;
|
|
struct Binder_t91BFCE95A7057FADF4D8A1A342AFE52872246235;
|
|
struct Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184;
|
|
struct CancellationTokenSource_tAAE1E0033BCFC233801F8CB4CED5C852B350CB7B;
|
|
struct CapturePass_tBD745B83E7D4AE9A6F35EE0760F1CCAC51B787EE;
|
|
struct ColorGradingLutPass_t9FD9191C4048A3B1BDF67EDFC1DA4E64CEFB6644;
|
|
struct CommandBuffer_tB56007DC84EF56296C325EC32DD12AC1E3DC91F7;
|
|
struct Component_t39FBE53E5EFCF4409111FB22C15FF73717632EC3;
|
|
struct ComputeCommandBuffer_tA6FA5F68FE745317C94802C6A828FC21AC0ADF61;
|
|
struct ContextContainer_t384E08F63FABEFF6A7F1A753F5EF02699DAD414C;
|
|
struct ContextItem_tFC5ECB349F0410923AE6BC2A9CAACA3589B51086;
|
|
struct CopyColorPass_t36EEE0428120ED6DF4A8C2CABB2F30CA9C784693;
|
|
struct CopyDepthPass_t51FCA8600207D9DD0EE15862C514D9F9E3A74D82;
|
|
struct CullingAllocationInfo_tB260F5CD0B290F74E145EB16E54B901CC68D9D5A;
|
|
struct CullingGroup_t0732D3CC044BAE2BE39748CBF5D96DDB6DBF62E7;
|
|
struct CustomSampler_tDA472186F08B4016626F032F944036BADFDB5487;
|
|
struct DBufferSettings_t7FD2B8B4B31CE9BE37AAE121B74FDEFE9BE9F17A;
|
|
struct DebugDisplayGPUResidentDrawer_tF9C1E662C774B366AD07B9EB4E0DB7FF5BFFC278;
|
|
struct DebugDisplaySettingsCommon_tC2EB56792BEE0BB23F9E2316D04D5B7494102C20;
|
|
struct DebugDisplaySettingsLighting_t7DC0135652202CB3DEAB99CC630DDC44A695C4B0;
|
|
struct DebugDisplaySettingsMaterial_t1216E6947CF7C77A4FA32054B14EAC7ED7E59E58;
|
|
struct DebugDisplaySettingsRendering_t0112AECF41E04E8EB029F3B2C769BB05A72D50F3;
|
|
struct DebugDisplaySettingsUI_t35C42FEE551C9AF153EA6DCE9CE3A07C3554F1E2;
|
|
struct DebugDisplaySettingsVolume_t3E447ED99A00BE4F99E6E1A536AF8A45E6B46214;
|
|
struct DebugHandler_t3A09E2CFD1CA6F5C192968A6FF19EE4863F44DA4;
|
|
struct DecalCachedChunk_tDEF493C8A3A1F442BDEC1794BDDA0996B32DCACE;
|
|
struct DecalChunk_tD2C5831DD2A6E97A7A738C88C5922305BA0513CA;
|
|
struct DecalCreateDrawCallSystem_tD9FCA6DDC386309EBF5C2D737D458A33E7EAF6DA;
|
|
struct DecalCulledChunk_tFD4472F0ADDD173C7B13E8B0529983E745F12ED3;
|
|
struct DecalDrawCallChunk_tBD0491A1B0B7D19DF01A5C9EDE0A40CBEDBF7A3A;
|
|
struct DecalDrawDBufferSystem_t0BB9CCF4CC9111D00DDDFA8F485DB8B7C5E7DE8C;
|
|
struct DecalDrawErrorSystem_tBFEB031E49B33054C1378119DBFC83DDCBBD9837;
|
|
struct DecalDrawFowardEmissiveSystem_t3A7F6E2F427E996F5E6FF6073ED0DD97921FD378;
|
|
struct DecalDrawGBufferSystem_t4520A37A2689CDF89893A02977EEC7F0701F796D;
|
|
struct DecalDrawScreenSpaceSystem_t6851B844B1C2A2DEF28F0D4AE9BDB03C86BCB69E;
|
|
struct DecalDrawSystem_t87ECA1A8D2D9C3A73A12F81D8CCA0F79029C0BFE;
|
|
struct DecalEntityChunk_t2CDCBFA35711DA074631D26572EF9755A3AD740C;
|
|
struct DecalEntityIndexer_t884A1F60E13512A2DE8CEC24635D2B3BE3FD3544;
|
|
struct DecalEntityManager_tDA689202786946588782A67EF3F0B0D9121C294A;
|
|
struct DecalForwardEmissivePass_t9C18488945B9FD7A0B3A20FBACC5DEAD39D9C5B9;
|
|
struct DecalGBufferRenderPass_tF9AE5E097AC2B82F540580ECA6E502C1B885ECA4;
|
|
struct DecalPreviewPass_tC8F131FA3853246D09707D85C52494D16B6116B5;
|
|
struct DecalProjector_tE7CEBAABFEF36162FD325321C1F94173CEFEDF64;
|
|
struct DecalScreenSpaceRenderPass_tA23A972765D97DFA9A20665DD1D4E3F4DF339016;
|
|
struct DecalScreenSpaceSettings_tD94FE1202A789534D40E4DD61AD7DE9E55F1ADD3;
|
|
struct DecalSkipCulledSystem_tBE639384B2E60736F4BD7E7A5DC71A9F8AF84B1C;
|
|
struct DecalUpdateCachedSystem_tE54DF723671C1BB35856878DBEC0A7B454E127B6;
|
|
struct DecalUpdateCulledSystem_t772328A4933CE3C08E3712729DBADF0C07CEC67F;
|
|
struct DecalUpdateCullingGroupSystem_t73FB1167667D8FAED3C38AF3E308A1E717E2C7D2;
|
|
struct DeferredLights_t8A3C2AC9C4AF92CF3411F722D8A094EA07DA14AC;
|
|
struct DeferredPass_t6790EE70B629EA472728A1396EA57FE14D0D8BF0;
|
|
struct Delegate_t;
|
|
struct DelegateData_t9B286B493293CD2D23A5B2B5EF0E5B1324C2B77E;
|
|
struct DepthNormalOnlyPass_t50A0679CDE5004EB7043F717FADAB05FA0CA35A6;
|
|
struct DepthOnlyPass_t93DEDD59D11D5651A2089D49062E3F140FD3475E;
|
|
struct DrawObjectsPass_t84B46B3BEA317D89ACA0B04F80A9346789E8DE68;
|
|
struct DrawObjectsWithRenderingLayersPass_t34921C427F925EE5E7DF0F89EDF65CADB0476FE5;
|
|
struct DrawScreenSpaceUIPass_t397E07595465217B2B9A6994E9116158439EE686;
|
|
struct DrawSkyboxPass_tA8A4796DE653DCC58C5FF906E4EC142FD901EADA;
|
|
struct Exception_t;
|
|
struct FinalBlitPass_t5A422DA2B38F1886E0F5AC3D26CE2455177C3EAC;
|
|
struct ForwardLights_t624787957AE9D8E817643720F2199E35331D4DCA;
|
|
struct GBufferPass_t540C12BCC3AFAC32B775694C8A29B69A49C284E7;
|
|
struct GameObject_t76FEDD663AB33C991A9C9A23129337651094216F;
|
|
struct GraphicsBuffer_t91FACD3CD78588C25C361C453D1A2FE055EC4AF1;
|
|
struct HDRDebugViewPass_t1FC1B0F01FF5DBD18E7813E17D58C428B14800D1;
|
|
struct IAsyncResult_t7B9B5A0ECB35DCEC31B8A8122C37D687369253B5;
|
|
struct IBaseCommandBuffer_t16CFD34D15BD9536318EF2D0438EE888A2B7EAA0;
|
|
struct IDictionary_t6D03155AF1FA9083817AA5B6AD7DEEACC26AB220;
|
|
struct IRasterRenderGraphBuilder_t607F94718848D836CFEEF0DE553E4A79CABD9372;
|
|
struct IUnsafeRenderGraphBuilder_t60BB47E91098AE0177EA53951D7A2B7DC56A6A28;
|
|
struct InternalRenderGraphContext_t7197268EBA8C241EB895B070A5E0C71B111D7503;
|
|
struct InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB;
|
|
struct InvokeOnRenderObjectCallbackPass_tC8BAE077CDE3D8D01F80041E285EAEC9E375FFE9;
|
|
struct LightCookieManager_t47C455537F06ECCE295272AF0BE14CDF1FB54C2B;
|
|
struct MainLightShadowCasterPass_tC550260377ED69F98337CF963695B7A090B137E3;
|
|
struct Material_t18053F08F347D0DCA5E1140EC7EC4533DD8A14E3;
|
|
struct MaterialPropertyBlock_t2308669579033A857EFE6E4831909F638B27411D;
|
|
struct MemberFilter_tF644F1AE82F611B677CE1964D5A3277DDA21D553;
|
|
struct Mesh_t6D9C539763A09BC2B12AEAEF36F6DFFC98AE63D4;
|
|
struct MethodInfo_t;
|
|
struct MonoBehaviour_t532A11E69716D348D8AA7F854AFCBFCB8AD17F71;
|
|
struct MotionVectorRenderPass_t6582EF44AC9503C674D19D32AF106DE02ECF54FD;
|
|
struct NativePassCompiler_t4E5CE894AF5B8832B5828B22DAB0EA4FAC819E07;
|
|
struct NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A;
|
|
struct Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C;
|
|
struct PostProcessData_t106B5638205D5CBAF18F2573047F2DC23BDB2F05;
|
|
struct PostProcessPass_t146B366124B6BB9597B9E9299DA4391FDE159F5C;
|
|
struct ProbeVolumeSceneData_t29FD126D36ED1E093C2EBBFB3F248DD5E2A86D90;
|
|
struct ProfilingSampler_t420D4672EDB44E0EF980B31ADFD9E5747200FECE;
|
|
struct RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B;
|
|
struct RTHandleResourcePool_tB08B48917D5F811C85F6DDF0D751436D366CEF7A;
|
|
struct RTHandleSystem_tAE496B31B56A77B4896E34576C961C3CA073998F;
|
|
struct RasterCommandBuffer_t4300C4F080EA3CF43C7ACFDBD4F94EA633FE98E8;
|
|
struct Recorder_t0A14385FB0F5829CAAC1E16F88B095769D648C90;
|
|
struct RenderGraph_t73ECE03B3CA3D0D17F1448D64AE020E81592AA1E;
|
|
struct RenderGraphBuilders_t899F9362CCFA453C5AF608B820107C9C37860D2A;
|
|
struct RenderGraphCompilationCache_t25B996EBE41BF50CAE9A81E97B9BBE376AAB55D2;
|
|
struct RenderGraphDebugParams_t36422B33508548E3E56CBAD04521104C2B3E669D;
|
|
struct RenderGraphDefaultResources_tCE331152C84ED1A36CF186CA0092AE10E599E25D;
|
|
struct RenderGraphLogger_t63D96976880E0CD356860F2470D7DAF60B1AD40C;
|
|
struct RenderGraphObjectPool_t2F5488D55D836B54B6E85D2952105BA61AEE6437;
|
|
struct RenderGraphPass_tEFB5BD685D417024760D82991EEEA4F4D0454A93;
|
|
struct RenderGraphResourceRegistry_t87A07027B2175239DB5239913091B9D9FE7244D1;
|
|
struct RenderGraphSettings_tC3A05CA5C042545DB58E32841FF2FEA9E260A130;
|
|
struct RenderTargetBufferSystem_tB98B680006BB96E6EBC6311583EE31302F16EC13;
|
|
struct RenderTexture_tBA90C4C3AD9EECCFDDCC632D97C29FAB80D60D27;
|
|
struct SafeSerializationManager_tCBB85B95DFD1634237140CD892E82D06ECB3F5E6;
|
|
struct ScaleFunc_t423F661DAD5C7A18F509C8F1F62C9D6AEA9A9791;
|
|
struct ScreenSpaceAmbientOcclusionSettings_t38C0791DB6E3E3C57C4F7E9C10E48B33C2AD16EE;
|
|
struct ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0;
|
|
struct ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892;
|
|
struct ScriptableRendererData_t9005CE645D4881FA4431E52EDC7678203632CAA7;
|
|
struct ScriptableRendererFeature_tF2ED08AD2498105378D4DAB0386A0F8A144EF4C6;
|
|
struct Shader_tADC867D36B7876EE22427FAA2CE485105F4EE692;
|
|
struct StencilCrossFadeRenderPass_tD864DD25B442A139B56C9997FEB2D527D4E2DE07;
|
|
struct StpHistory_t9A3E110F0E97FE93E44838B51A330C2111F96081;
|
|
struct String_t;
|
|
struct TaaHistory_tA203D496A5F23B4717184375DEAA12944359B85D;
|
|
struct Texture_t791CBB51219779964E0E8A2ED7C1AA5F92A4A700;
|
|
struct Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1;
|
|
struct TransparentSettingsPass_t13490AAB630DED3A5EDF11A4F4D340B04E3B85B7;
|
|
struct Type_t;
|
|
struct UniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7;
|
|
struct UniversalCameraHistory_t15D275DAE9AD5B608CE533D0FCE0884F07BB1E80;
|
|
struct UniversalLightData_tCFFFAB4033CD97BE9F339F0C90BB7F98C06FFBA2;
|
|
struct UniversalRenderPipelineAsset_tE8A9AA6F030CC3B558CEA2EB54FFF4FC58CA6232;
|
|
struct UniversalRenderPipelineDebugDisplaySettings_t8E70DD217918DB0E7BD8BCCD9958C3E781DE0653;
|
|
struct UniversalRenderPipelineGlobalSettings_t895E975CCCA62A6DE4F820C0109953EF6D83B9F0;
|
|
struct UniversalRenderPipelineRuntimeTextures_tDA15F1E9BFCD85610D963AC723C03EB214D1EB86;
|
|
struct UniversalRenderingData_t045D13A1E051DF623B170223B7CBF1161DDA94E6;
|
|
struct UniversalResourceData_t1F1DE4101BE122578EAA5E4750D00ACAF1042626;
|
|
struct UnsafeCommandBuffer_tDE6BB2FE234DC7453CA682AB275888E9E35F22F2;
|
|
struct UnsafeGraphContext_t6E24BDE4C6B0924FCC4DE11BFA5B750FF6F03320;
|
|
struct Void_t4861ACF8F4594C3437BB48B6E56783494B843915;
|
|
struct VolumeProfile_t9B5F2005F575A710F38A124EF81A6228CCACACE1;
|
|
struct XRDepthMotionPass_t8877C9053420CA52B0A0FA0C84F3DA61952E2C93;
|
|
struct XRDisplaySubsystem_t4B00B0BF1894A039ACFA8DDC2C2EB9301118C1F1;
|
|
struct XRLayoutStack_t6F7C0BB97693E7D17B8E2289D355FFF1DE6F4051;
|
|
struct XROcclusionMesh_tA0B52AD16F48002574AF9C1F274264C79ECB028D;
|
|
struct XROcclusionMeshPass_tA8EDF609A01F4AA46E173A12633B8329524F4CD8;
|
|
struct XRPass_tFC4577E97B88E0EAAAB2EB387AB3A92E9EB9C6DF;
|
|
struct XRPassUniversal_t8D4B40107F5DBC12D39470D87D108D3D2A8FB8D1;
|
|
struct XRVisibleMesh_tD685DD0F7C47F5270F8ABB3E7366972918E2B677;
|
|
struct CameraCallback_t844E527BFE37BC0495E7F67993E43C07642DA9DD;
|
|
struct StateChanged_t6DC116251B1ED50EC475CFF0195AB6625478485F;
|
|
struct U3CU3Ec_t590CD067BFDD49421D57479BC8BC6311FABEA5F1;
|
|
struct PassData_t077B24D5F09604372E173ECFC9A3A66F30F8AD4C;
|
|
struct DebugFinalValidationPassData_t8E6E203E5F9FFDDBB98153741C76049EEF9F744B;
|
|
struct DebugSetupPassData_t6FF39B74BC8FDCBD41EF92A852D5495C4F6F33EA;
|
|
struct U3CU3Ec_t982F331B7EDFDBCE7D881BB6DF31BAC0023967CC;
|
|
struct U3CU3Ec_t7B444D3F3AAA0A33FD57F6821D1F929FEB0555F5;
|
|
struct PassData_t3894D6AEA48D65EEDB1032B9371FF5B63D4302A6;
|
|
struct U3CU3Ec_tAA26B4D41608EBD4DBF0897F2337AC0EC4D686C3;
|
|
struct PassData_t4396B080377CC62E6B81D42D8103F58BF0CC9451;
|
|
struct U3CU3Ec_tFB39F0BD639048162C0147869970658EACB36812;
|
|
struct PassData_t0F7D1F1E94925DC481C5764B997BEC982471D969;
|
|
struct DecalProjectorAction_tDFCBDEE542B3D640BD121E036275AA51A003CF5C;
|
|
struct U3CU3Ec_t15B0AFDB480CE815F26375C7F569551639E65A2B;
|
|
struct PassData_tE8DFD4099E5A523D2AA3761A4B9CE793D50AA5F6;
|
|
struct RequestLightsDelegate_t585505A75681754DA53BE119D8611B605F0243BB;
|
|
struct CompiledGraph_tC8C6B8E2DD962A7BBC9B48ED868E03BE278D0644;
|
|
struct OnExecutionRegisteredDelegate_tCCD234646691F298602408925867AE91256D2226;
|
|
struct OnGraphRegisteredDelegate_t7DEB75DB071EA0F49C47E2617D72D40EF3A8188C;
|
|
struct SSAOPassData_t7CDAB3BA366773CB0C54324C2A4D9758F7AA79B4;
|
|
struct BeginXRPassData_t34405E999FE849E4AAE7FBA7EE4CF3A4CFD51F01;
|
|
struct DummyData_t0F37F8F2F4E1851082C4B35762C12D62971E203F;
|
|
struct EndXRPassData_t8FA62D64F60C5147588ACD22BC3136BF31D5A25A;
|
|
struct PassData_t84C7078BE208CBCF257438586035AB69DE199182;
|
|
struct RenderingFeatures_t31044CBDCDC2F05194BFA2A2122FBD937D78A371;
|
|
struct VFXProcessCameraPassData_t19BF6E1F978BA36189D226BA7F36E8F3190D07A9;
|
|
struct DebugShaderResources_tDE399BFF5E1E9403CD4793CD8C8A51796C682B8B;
|
|
struct ProbeVolumeResources_t30A6677110700C97538A9A5E99ABEE1F847C4CE7;
|
|
struct TextureResources_t8FB6A098EBF3C08BF1BD5EA926743C0FA595202B;
|
|
|
|
IL2CPP_EXTERN_C RuntimeClass* Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* Application_tDB03BE91CDF0ACA614A5E0B67CFB77C44EB19B21_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* AttachmentDescriptorU5BU5D_tC70107EBD955FE94BA31C7FDC146069EF9C547C1_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* BaseRenderFunc_2_t0F078AB23E7CF63F4670F4E80CFDE4CD4BEB0F72_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* BaseRenderFunc_2_t2AE7A68115EFC92E8E3068C0057F850871744886_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* BaseRenderFunc_2_t55E594CC6D951D462AFB9867489BE9665166DC90_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* BaseRenderFunc_2_t592BAE028800F18A071D869FCB982B997F5E13A2_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* BaseRenderFunc_2_t762A186FC860B473359C6CA1DE69EDCFB3985B45_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* BaseRenderFunc_2_t8B6F86F4EF8472D6B5D84629A6E35307F19167AE_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* BaseRenderFunc_2_tC164CC802D091B68B6A0497F4C6AEF80D564AB57_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* BaseRenderFunc_2_tECA37CC68AF2BD6C31F2DFF58EF746DC7B2C5AFE_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* BaseRenderFunc_2_tEE48E9E21762BFE07AE97EF2E3E0E79793067606_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* BaseRenderFunc_2_tF8B0FC77C310265D6F0EA096E14C24E57D0FEAD6_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* Blitter_t33DF283FBD19A8EE25C460B6D9B3087648A456A7_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* CommandBufferHelpers_tB8C09D01D6F0369DF52DEA955F017D6001BC72E5_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* Comparison_1_t1D70AD681199BAE9A46BB890478D827A9BA04A36_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* ContextContainer_t384E08F63FABEFF6A7F1A753F5EF02699DAD414C_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* CoreUtils_tEE57AB2B0DAE9561F4954B08800A8F957850B038_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* CullingGroup_t0732D3CC044BAE2BE39748CBF5D96DDB6DBF62E7_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* DBufferRenderPass_t49879C87DABC55DF17293F334967AE8ADC9101B7_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* DebugDisplaySettings_1_tF9BB40752190C9012A404A38AD943959A102497A_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* Debug_t8394C7EEAECA3689C2C9B9DE9C7166D73596276F_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* DecalCachedChunk_tDEF493C8A3A1F442BDEC1794BDDA0996B32DCACE_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* DecalCulledChunk_tFD4472F0ADDD173C7B13E8B0529983E745F12ED3_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* DecalDrawCallChunk_tBD0491A1B0B7D19DF01A5C9EDE0A40CBEDBF7A3A_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* DecalDrawSystem_t87ECA1A8D2D9C3A73A12F81D8CCA0F79029C0BFE_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* DecalEntityChunk_t2CDCBFA35711DA074631D26572EF9755A3AD740C_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* DecalEntityIndexer_t884A1F60E13512A2DE8CEC24635D2B3BE3FD3544_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* DecalProjectorAction_tDFCBDEE542B3D640BD121E036275AA51A003CF5C_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* DecalProjector_tE7CEBAABFEF36162FD325321C1F94173CEFEDF64_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* DecalRendererFeature_t60FD3C8045A8E32C2DF6FA12C247020274E76B7F_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* Dictionary_2_t6EB10DF170874D02D43E115B0A1B93479CE3FF80_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* Dictionary_2_tB41FAC88F07BAB98D6D373F7C94FB0496D1BDA32_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* Dictionary_2_tCB9019887EB0254D4745B0724BC12327C5B63792_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* Exception_t_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* GC_t920F9CF6EBB7C787E5010A4352E1B587F356DC58_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* GraphicsDeviceTypeU5BU5D_t4322565F239068C66BF47053B83BD6A9A9D16408_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* GraphicsFormatU5BU5D_tF6A3D90C430FA3F548B77E5D58D25D71F154E6C5_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* GraphicsSettings_t01785CE5CB5C5105CB527619AF4D74BEF417EF1A_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* Graphics_t99CD970FFEA58171C70F54DF0C06D315BD452F2C_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* Hash128U5BU5D_tB104E7247B842648E447B7FCF4748077DC1F8C98_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* IBaseCommandBuffer_t16CFD34D15BD9536318EF2D0438EE888A2B7EAA0_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* IBaseRenderGraphBuilder_tFFF84F72F862F1BE246A789AB6A59F959B490F3D_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* IRasterRenderGraphBuilder_t607F94718848D836CFEEF0DE553E4A79CABD9372_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* Int32U5BU5DU5BU5D_t179D865D5B30EFCBC50F82C9774329C15943466E_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* List_1_t1A9527CB44249AD17D081A2D7A468343FC2D0720_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* List_1_t2121653FB628940E808D105AD2C17E0F20AFB3A6_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* List_1_t218CEA415E5769B47AB34C68D264977822ECAD17_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* List_1_t2E25D2E682EF62FB0FC538A4C88B3D49616A03DC_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* List_1_t2E485E650BF1E41358CE56A69323E183C5A89CB6_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* List_1_t437E45D007C2D93DCB30DA30023CB2745EE095D0_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* List_1_t4673975A297A80D4D4A65EB5A2BE3B6BD1EED9AF_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* List_1_t75FC6D059D696BAD77462D09FCDC98B4A7B7D3D4_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* List_1_tD8DB23A94A44626CAF7E9B5B4A949D0FDC7B27A7_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* MaterialPropertyBlock_t2308669579033A857EFE6E4831909F638B27411D_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* Math_tEB65DE7CA8B083C412C969C92981C030865486CE_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* Mathf_tE284D016E3B297B72311AAD9EB8F0E643F6A4682_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* Matrix4x4U5BU5D_t9C51C93425FABC022B506D2DB3A5FA70F9752C4D_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* NormalReconstruction_t692A25FE1AE9EC169043506308E3F42616538324_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* PassData_t0F7D1F1E94925DC481C5764B997BEC982471D969_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* PassData_t3894D6AEA48D65EEDB1032B9371FF5B63D4302A6_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* PassData_t4396B080377CC62E6B81D42D8103F58BF0CC9451_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* PassData_tE8DFD4099E5A523D2AA3761A4B9CE793D50AA5F6_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* PlaneU5BU5D_t4EEF66BAA8B0140EFFF34F6183CE7F80546592BE_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* PlatformAutoDetect_tEEEF1776EA779987D2840527D96D89ADD3177A36_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* ProfilingSampler_t420D4672EDB44E0EF980B31ADFD9E5747200FECE_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* Profiling_t1148A935DE86EC9E67DA54238721B4178A744AD3_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* Queue_1_tCA24E420CB13C6411AEFC3ECE9E62219F7937A1E_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* RTHandleU5BU5DU5BU5D_t6066EC3F94599A5A42DA9A893F102E9618CB612F_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* RTHandleU5BU5D_tE4B403B060D159B839BF74E8B59F8DCD52CF97DF_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* RTHandles_t84D932A74064E591F31E9813FBED5D64F5CC888C_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* RenderBlock_t7243EA6BF13109280A62FF4C7108E5C2F8676712_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* RenderBufferStoreActionU5BU5D_tFEA8F5DD460573EA9F35FBEC5727D1804C5DCBF5_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* RenderPassBlock_t584C655A57D46F7421E00DB28F125ABB455C796C_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* RenderPassEventsEnumValues_tE8866513A09C4EDD3D96842CA57C7C20E2EA47E8_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* RenderPass_tA744ADA1424B5992F4E272692C1964A7B7469EFD_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* RenderQueueRange_t7518252AA6426B1EA45D3D9B394F304EEF784D71_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* RenderTargetIdentifierU5BU5DU5BU5D_tDB35F8D017FE3AD8BB35E08E323074D47C5A10BB_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* RenderTargetIdentifierU5BU5D_t179798C153B7CE381B41C57863F98CB24023C4CE_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* RenderTargetIdentifier_tA528663AC6EB3911D8E91AA40F7070FA5455442B_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* RendererListParams_t13F72282BCE2DC255747FE7694C6BBC3377944B1_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* RenderingFeatures_t31044CBDCDC2F05194BFA2A2122FBD937D78A371_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* RenderingLayerMask_tD73B9FC1A65A937F18E56833FC83BF89C2B085A1_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* RenderingUtils_t4E40200449A82FA3A172A563C490DF11FADA2BE1_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* ResourceHandle_tD3B1FFBD59EB9C23F0A020351836F834C4BD276C_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* ScreenSpaceAmbientOcclusionPass_t4E4085E6273C80B0561CD6F348107F8E010DC981_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* ScriptableRenderContext_t5AB09B3602BEB456E0DC3D53926D3A3BDAF08E36_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* ShaderGlobalKeywords_tCD2A8F654428E5D252204D24E379C6725E5A2C91_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* ShaderPropertyId_tAA7B64E0C225CFD70D9837D0733FDE84DC3310D2_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* ShaderUtils_t98A7604B796D0A8198AFF1C4BFBB532B8D18C531_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* TextureHandle_t680ABA3F8B50859351BA5DD66220084F87F37388_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* U3CU3Ec_t15B0AFDB480CE815F26375C7F569551639E65A2B_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* U3CU3Ec_t590CD067BFDD49421D57479BC8BC6311FABEA5F1_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* U3CU3Ec_t7B444D3F3AAA0A33FD57F6821D1F929FEB0555F5_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* U3CU3Ec_t982F331B7EDFDBCE7D881BB6DF31BAC0023967CC_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* U3CU3Ec_tAA26B4D41608EBD4DBF0897F2337AC0EC4D686C3_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* U3CU3Ec_tAD2991BC81926CE242650EADA7F8BD93F3ABF02C_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* U3CU3Ec_tFB39F0BD639048162C0147869970658EACB36812_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* UniversalRenderPipeline_t54B4737DC500C08628C5BE283D8C583C14DED98F_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* UniversalRenderer_t31019D4AD52F646128E0D1649E7B87E33BA36D8A_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* UpdateTransformsJob_t7CF957169E8C6560084F48A51BC15A447F3002C7_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* Vector4U5BU5D_tC0F3A7115F85007510F6D173968200CD31BCF7AD_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* XRSystemUniversal_tC6D796087104B8263D12B71391A3147102BE3FF7_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* XRSystem_tF767981574E3DA643F7A67A995F12DB1C4A97096_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* float3_t4AB5D88249ADB24F69FFD0793E8ED25E1CC3745E_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeField* CombinedChunks_tCFB3356163B9F9B0E31E0B194E9B415F83340ED9____entityChunk_FieldInfo_var;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral00394E91773E36676FB3A8C2584B82CCCE3C7E4E;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral01A849374C26F36DBF4641EFCBB31ABDCEFF10D2;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral045FC89E4B566C5C0026D3FDABAC59D7FE1C12D0;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral0A9AFA66638C3965B9580559AE6951ED1CAC938B;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral1207783D31D1A2E5A99C93170F5C262AAE859FA3;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral159D1EE011F5E5F12BC1DD2637581CDE02EB8A0D;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral15EC429DD574B86A8F701D47205C0301DB968353;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral16107139481111914B09E898379B0EE5C9FCAE0C;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral1B8AEB3C3C340B47432828290CE03122C0D2AE19;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral1F77ABDDABECE2715EDD31890827B3CDBA241D0C;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral21F3AA12081C8AF437473ECB6A3ABB44109CC457;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral22BB297A3EA6A210F84D6E9BD40BC3E9B40E1471;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral25B382C4D9A39B80646AC80AEE390ED44DAC68AE;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral26395B8BFE5AA7D0CE7FFFCE0F3805A2B259E37F;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral26B0573FA55389022EB9147C80C4B8E37A15A4B8;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral2FA4F2CAEB6294CFB2889F8C547B8B6865A10962;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral315F9DFB0A7E1C5E25C7A4E45C119F7D62A4A543;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral35B24BB26A8CE829F2885203EE6FEF13E05EE7CB;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral3D2A612A58708E32F4B88A76C6B4A0CF0E202222;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral4271A2AD8D1EE7E2EE69F1E579F480CDAF872BB8;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral49AE794C00022ECA141068DEA9531BF6E0D342B7;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral5229F711FECB77FB370DADF3B1FC2B1542162AFC;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral556B234B7781948D45A2C65D7313B6D6367B5528;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral67B035FAA2672BC4F91A448072DE578A2B9F5586;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral6AE85D4E8752B4BBB61F5991CB94E8B1AB15BA34;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral6FC513177EA75930886CBB411CC3D89E5EE6AE10;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral72A06BD636B90F4308118B8C21193457044DE20E;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral72C15439E7CA24FEE57FB1C4C772BF8F7F8DE0C4;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral73147A0ACD9AA81543CFD75A19414ADBC0877E35;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral750C829FC212789E82E1D66A66AB0DE4DA3CBFEA;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral7A2A211714705DA6159511062AF98BB5F266D1A3;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral7AAE0B0FFEBC761E439137CC7E680A604F8C38AC;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral7CEB5B9773EFBA63CB7BF08B497158A6BED62F24;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral855FED6E03442FBB3AF914FFBFA9DA82813817A1;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral8C159DFF1F2B304532ED7A8E82FEB26C8E469416;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral8D5F65AFBD89DAF01A819E0267BEF21F3294B32D;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral91E548F3EBD1A7D7C5EDCC1906D95D22C2F225B4;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral9B5EF2C290FCC363F7E2597B9EA0E0B52AADAF3C;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralA07B69F2BD345094C82ABDEA229CCBE795326271;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralA1B2AB35233738B5FBDA8786157B8E2EF5D42E15;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralA2C0A63DB753DB0FF0426699143F23CBFDD9C372;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralA2CABF6B75078412D311586DD1DDAF2D06F0DCFE;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralA3DFDD1C75685F4BD136ACAF08E535626B718D2C;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralA6D5272F137202EBA134BF01F413879348836D49;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralA7AA6ED62E9E72EBAEB29250526B089AD3A65794;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralB1D153315B594558BCA690966297728A6BC4353C;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralB56C8C04D473A08E6B18DFF1DBD7D31E63788212;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralB79235FFAA3965D6203E7AEE41246F78E74A2D30;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralBA7C687804C1EF11072FBC5307A8BF964063B68F;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralBC76875C4792C4CAB6A8B4FE2CCA011647E3E853;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralC801C024F9D148EC38CF3E9136502901A5CB991C;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralCA31B9730334EC149858A6CB455BCD4D45EF2B07;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralCDEDD8CC39891270C6E5D2B049B03454E5D931E1;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralCE4B297313A965CC962632A674D87E40358F7B5C;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralD4CD417E1A72493EB1F413494479950631318DD5;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralD565F3F01746A93957C2F52BA872EAFAFDC8A64D;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralD9D81B4FD140947CF3DAA1BCCE19AB84F788D01C;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralDC5888CD5FFB117698CFDBBC1B2CA00232CC8C2F;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralE1F608508E2DE393FE42339EB381AF5125F9F293;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralE452E671132A5760BA291DF9896EAD97B7BE52BA;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralEBF2B59923C9C898155D4B3B58820067AC5B7CCE;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralF2125C79F260FE911C7939C37E6B2A6A6034B1CB;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralF76325BE0DA797C99DDBEF623D6F995D51B0B490;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralF8D773750D897D16066C16D6F77A6E8744BF67DF;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralFA6E8DFCF5EDAAA00F3C1355246ABB80846E88DE;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralFAD8CAE847D85602DD18CCD9CAC7FFA48961D64B;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralFC606F7FCB0B5C03B472CA15470B6EC069B45FAB;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* ArrayExtensions_ResizeArray_TisBoolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_m03C40A6C0546B3EF39F41B4F8A01F8069907134A_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* ArrayExtensions_ResizeArray_TisBoundingSphere_t2DDB3D1711A6920C0ECA9217D3E4E14AFF03C010_m97ECB17020454F538CF86C6311BB0532F9D3AC07_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* ArrayExtensions_ResizeArray_TisBoundingSphere_t2DDB3D1711A6920C0ECA9217D3E4E14AFF03C010_mF1480A26EB90FA28A36BD0EA5CED744A82C9E338_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* ArrayExtensions_ResizeArray_TisDecalEntity_t8CAF09C65939503449C4138ADCDC4907196293FD_m48C0117B395C3815A44062256EA8529C46D36025_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* ArrayExtensions_ResizeArray_TisDecalProjector_tE7CEBAABFEF36162FD325321C1F94173CEFEDF64_mB5978910DC5DE32AA46F24E4EB057779F4801878_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* ArrayExtensions_ResizeArray_TisDecalScaleMode_tBFFBA2F5E3B718BD9965A803920323CB8B6C208C_mC7E67A8F7D18470A4EF4DBEF1580A94A5F438FA7_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* ArrayExtensions_ResizeArray_TisDecalSubDrawCall_t68CDD2E663F805776DE0281AB4FAEDC8B8D9EC49_m53427FE0458D6B20A22026DD0D267FBEEDE41E78_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* ArrayExtensions_ResizeArray_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_mCC1C29FFBD5857EE8A9D2DD4EECE68A25390D347_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* ArrayExtensions_ResizeArray_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_mFFAD26B2501568E203F55AC9971F07ECF103B4BB_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* ArrayExtensions_ResizeArray_TisSingle_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_m3093DA203EC655A89B97A720E0E41B9D1F6BF89D_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* ArrayExtensions_ResizeArray_TisUInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B_mA7A1947DAC61D89594FD427B8866AF243CBCA65E_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* ArrayExtensions_ResizeArray_TisUInt64_t8F12534CC8FC4B5860F2A2CD1EE79D322E7A41AF_mA7325AB0E73DB3008AF16F6B66B107118806D8D4_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* ArrayExtensions_ResizeArray_Tisfloat2_t24AA5C0F612B0672315EDAFEC9D9E7F1C4A5B0BA_m4E50A7CF887E0894D0F694E2A529CD6AA5F064CE_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* ArrayExtensions_ResizeArray_Tisfloat3_t4AB5D88249ADB24F69FFD0793E8ED25E1CC3745E_mB9C7AEADC1241624FC5482255B8B17E912B88EC6_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* ArrayExtensions_ResizeArray_Tisfloat4_t89D9A294E7A79BD81BFBDD18654508532958555E_m0F046BCBBC1480B71939881BAC4C4F00A0B302CA_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* ArrayExtensions_ResizeArray_Tisfloat4x4_t7EDD16F7F57DC7F61A6302535F7C19FB97915DF2_m4455C8B60BA08395D0B896AD808F0433ABCCA888_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* ArrayExtensions_ResizeArray_Tisquaternion_tD6BCBECAF088B9EBAE2345EC8534C7A1A4C910D4_mCCC2A04B4AC663EC4E25A7A3EF7E3F73861ADFA1_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Array_Empty_TisRTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B_mA62B3EA5D88F1E070CBD70F23D82135AC2E111F9_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Array_Empty_TisRenderTargetIdentifier_tA528663AC6EB3911D8E91AA40F7070FA5455442B_mE9CB7004FB24F2FE6566E734B9132170794E41F6_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* ContextContainer_Get_TisUniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7_mE62F7903614384541B770CC0B9A99BD2E608A0F8_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* ContextContainer_Get_TisUniversalLightData_tCFFFAB4033CD97BE9F339F0C90BB7F98C06FFBA2_m7D529C251F384985900DEA334BC399BAD36BFC8F_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* ContextContainer_Get_TisUniversalRenderingData_t045D13A1E051DF623B170223B7CBF1161DDA94E6_m71849CEFB9C023EDE026A0F38CE6044274505C06_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* ContextContainer_Get_TisUniversalResourceData_t1F1DE4101BE122578EAA5E4750D00ACAF1042626_m1CAD9250ED48A65B3DE774336F9221928EB054B4_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* DebugDisplaySettings_1_get_Instance_m6C56D7F9230F1B79878679208F04EE70F413D93B_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* DecalChunk_RemoveAtSwapBack_TisBoolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_m1386EBC4D7599F71F0B303F12813F0582E8F3100_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* DecalChunk_RemoveAtSwapBack_TisBoundingSphere_t2DDB3D1711A6920C0ECA9217D3E4E14AFF03C010_m311450680094235BD4A769DB9E44144FADE76015_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* DecalChunk_RemoveAtSwapBack_TisBoundingSphere_t2DDB3D1711A6920C0ECA9217D3E4E14AFF03C010_m6543A85EE8FF00637356B416DEDCF1177D22D345_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* DecalChunk_RemoveAtSwapBack_TisDecalEntity_t8CAF09C65939503449C4138ADCDC4907196293FD_m36119187CF415D833FDD62E726BC5A1101C68EFB_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* DecalChunk_RemoveAtSwapBack_TisDecalProjector_tE7CEBAABFEF36162FD325321C1F94173CEFEDF64_mE9432E8937742F4166543B7E2D8E7867C9751BAA_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* DecalChunk_RemoveAtSwapBack_TisDecalScaleMode_tBFFBA2F5E3B718BD9965A803920323CB8B6C208C_m26EEFF669A3ACEA48553FA735515456C63A33F25_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* DecalChunk_RemoveAtSwapBack_TisDecalSubDrawCall_t68CDD2E663F805776DE0281AB4FAEDC8B8D9EC49_m4BA3CBFAFEA6D310AACA36EB36A4F76192F8C6CA_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* DecalChunk_RemoveAtSwapBack_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_m79F67135CEB14F4F697474A409493E057B89D759_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* DecalChunk_RemoveAtSwapBack_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_m915FF8D13A89D601291E1005178CA3EA54A7C5D8_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* DecalChunk_RemoveAtSwapBack_TisSingle_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_m938CD70E1FF91D3803E9854F0872C6BE2F4CCD1B_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* DecalChunk_RemoveAtSwapBack_TisUInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B_mF1836CDB48035A918A43ABAF39AF37C896E0C1BD_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* DecalChunk_RemoveAtSwapBack_TisUInt64_t8F12534CC8FC4B5860F2A2CD1EE79D322E7A41AF_mBB7A6220A8A54E9F8DE79470ED3302F907D49F82_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* DecalChunk_RemoveAtSwapBack_Tisfloat2_t24AA5C0F612B0672315EDAFEC9D9E7F1C4A5B0BA_mE510E702120051CBB3A9122BC1BA957B834E2D91_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* DecalChunk_RemoveAtSwapBack_Tisfloat3_t4AB5D88249ADB24F69FFD0793E8ED25E1CC3745E_m3EB3E0A1DA38C90FA88EE269EC7BDA37C5EF1418_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* DecalChunk_RemoveAtSwapBack_Tisfloat4_t89D9A294E7A79BD81BFBDD18654508532958555E_mB4FD1FD13539DAAD140535134857F4E7C2D61113_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* DecalChunk_RemoveAtSwapBack_Tisfloat4x4_t7EDD16F7F57DC7F61A6302535F7C19FB97915DF2_mE225441B0A02C93487869B33817022EBF2023283_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* DecalChunk_RemoveAtSwapBack_Tisquaternion_tD6BCBECAF088B9EBAE2345EC8534C7A1A4C910D4_m0D53FB632D8820AC1B5BB42DD60212A78423CCEA_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* DecalGBufferRenderPass_OnCameraCleanup_m838BB749709750BDAAEE47AFB9CB2FEE0EFE2D62_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* DecalScreenSpaceRenderPass_OnCameraCleanup_mB181D9DDBEF07D6FC9CEF13465925969A85ABAE1_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_Add_m31B58F13ADA6D08C1CC6E191031B840006313562_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_Add_m8FFD29D21BD0C02508E87C664C42869EA125EC92_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_Add_mEF2E83E7D7A51D9598E8771D187138AF3CE614A6_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_Clear_m2AC070D7EA40F018A5B2A6F94C75362212F74014_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_Clear_m4BE2EA63EDA7838BC522E8BFE24EBDBCA0E98482_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_Clear_mB11ECB26BB643F5FFF3BD0291E7328DFC6A2712B_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_ContainsKey_mB39B89C4FB0361792450F10D25B8201B4301F28C_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_ContainsKey_mCFA7AF1835284648D44D1BF57A75C81683207D5E_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_TryGetValue_mFFE573FB3A9A6382F9B1D723AC935F8839F1DA26_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2__ctor_m05ECDADE8596B7510223CB2621AC5534E7AB2A9C_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2__ctor_m2927741406FF3DA98E94B375416763714607683B_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2__ctor_mA563968253DE4672794228EC7E1F9BC19CAE0A93_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_get_Count_m6A86480525D2034B01C263B792951888765560DC_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_get_Item_m5A9D1816E2F401909438646463C34D043E421045_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_get_Item_m88A84F3C4F3B87068DF58800EC51E4BAE278F826_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_set_Item_mFB50A5ABA450F464BCF08AEB35E14D26BB582C78_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Enumerable_First_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_m665FD6DD7E983D1E8938E44617925C04CD612DE7_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_Dispose_m0E06EF2FB18AE1B60D0DE5101EA8F8CC0EF67689_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_Dispose_m334C7EB9FBAEA8BC87ECC95C2C0D322E498B6699_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_Dispose_m76DC8FCCF3E42CD42363AD6C2BAC71ABDA1535C2_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_Dispose_mBDE5AA338399D1BEA76AC9295E2287FE0B75522C_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_Dispose_mE4288E0F12F7086A80CD684C0A0F919FD1DDACEC_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_Dispose_mEDFBA1A78C8BF94339410CCE79ED2B8947023112_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_Dispose_mF97C2EAF7C0D8F5E7C7EA1012A4FE2DD163EE706_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_MoveNext_m29C44877AE440B7C67CDFC9AF883993C67C51115_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_MoveNext_m62905577B99C79AEA734E15AC569B10365214EDA_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_MoveNext_m699A9E1D941711453887F76F5DD8E797A46A5D48_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_MoveNext_m80A18F75B452473B49786B16A4654E2C139E8290_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_MoveNext_m82285194E26D691AF9BF6A7233A0D951DFAB30E3_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_MoveNext_mEABB682BDEAD268B7AB57DA26D04B95248950EA9_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_MoveNext_mF0240F1FA41F980A8C237D12729A3CC0455CEC12_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_get_Current_m164BDCEA62768BF6A06F68A1A089947511244908_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_get_Current_m4EFC47E612DA489655B9850C2E9BA6B0CF084CB4_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_get_Current_m65E52814F3289E84E69A7324ED46026114A0FFAE_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_get_Current_m67F4DA2EB9B115CC3A70504BA7DC25214A662BE6_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_get_Current_m9615CE722B0B33517472FA29CB73AE60D8E8D522_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_get_Current_m9F173585FAD931312EF7F684265C41C5747AD600_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_get_Current_mA19BF2A9BBB4A17BBFB2F68F59D890B9498C2583_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* GraphicsSettings_GetRenderPipelineSettings_TisRenderGraphSettings_tC3A05CA5C042545DB58E32841FF2FEA9E260A130_m056A6DF99F51AC9AF02BB64BE4677C83E02946F7_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* IJobExtensions_Schedule_TisDrawCallJob_t3EA2ABC822AD5DF50675A5B437DAB927DB95215D_m5EC4DC118A53DBDBF558451EE4FB9DE5F18A379A_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* IJobParallelForTransformExtensions_Schedule_TisUpdateTransformsJob_t7CF957169E8C6560084F48A51BC15A447F3002C7_m8730007D9D52320B924DE6CD7E6AE6D5FAE4283C_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* IRasterRenderGraphBuilder_SetRenderFunc_TisBeginXRPassData_t34405E999FE849E4AAE7FBA7EE4CF3A4CFD51F01_m4E4E44B10E61C2799E44668336FB969E9222C747_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* IRasterRenderGraphBuilder_SetRenderFunc_TisEndXRPassData_t8FA62D64F60C5147588ACD22BC3136BF31D5A25A_m1C29EA2631520801D13C625295CA1975F94CC0F7_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* IRasterRenderGraphBuilder_SetRenderFunc_TisPassData_t0F7D1F1E94925DC481C5764B997BEC982471D969_m07537D39B3DBA2C8E11842A0DA12DD7B2A903530_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* IRasterRenderGraphBuilder_SetRenderFunc_TisPassData_t3894D6AEA48D65EEDB1032B9371FF5B63D4302A6_mC84A7D28C0BE2EBD63B10E4FC4087DEE08BF0D75_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* IRasterRenderGraphBuilder_SetRenderFunc_TisPassData_t4396B080377CC62E6B81D42D8103F58BF0CC9451_mFD8B4514D5D533960796BB458E8914BE64EDEE73_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* IRasterRenderGraphBuilder_SetRenderFunc_TisPassData_t84C7078BE208CBCF257438586035AB69DE199182_mE2CD027B12F7CD17F07B0DF307E1EBFB1AA3CAA5_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* IRasterRenderGraphBuilder_SetRenderFunc_TisPassData_tE8DFD4099E5A523D2AA3761A4B9CE793D50AA5F6_mA6E37DAB9026BC403FCF9FB24A7E84911BC642D7_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* IUnsafeRenderGraphBuilder_SetRenderFunc_TisDummyData_t0F37F8F2F4E1851082C4B35762C12D62971E203F_m6B154C5280F6BF3A6CBCBCCE9EA36BA025D37A9E_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* IUnsafeRenderGraphBuilder_SetRenderFunc_TisPassData_t84C7078BE208CBCF257438586035AB69DE199182_m402FB8316DF23F4773EA0F5F77F0B0651201340F_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* IUnsafeRenderGraphBuilder_SetRenderFunc_TisVFXProcessCameraPassData_t19BF6E1F978BA36189D226BA7F36E8F3190D07A9_mCF66277B59C95F8EED639E08D410DC788363219A_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_Add_m0248A96C5334E9A93E6994B7780478BCD994EA3D_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_Add_m1F8C9721FD4046BBA405A578E144F7856809A878_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_Add_m53400F87C60C102F372B41825F43DDAA9544F2B7_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_Add_m60880A8D0548B9F2CA00A3C88432EF80A6D754FA_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_Add_m8495D908D03C140D97C2E99FAE15F6B98C2B3BA1_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_Add_m8FAAE99193D3A7C3DBF38A647493E8C1652C74F0_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_Add_m999CAB0903219BD2CF988827287D44B0B44D69FE_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_Add_m9C754466AA0D67659DEFB20BF59FF7355899A32A_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_Add_mBA5DCA355F0405A43E019DA085DA702A7F08B632_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_Add_mF87065DB2C5D09F1743E971BED0CCDC4827EB029_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_Clear_m0F2A6C272D949AFF5A0BFD4B2C0B326DF491E171_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_Clear_m25927F960325907203BE756C7196321B782E2BA8_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_Clear_m38F519CFF9FD938D85EBA4335C73E4860C7AAEF5_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_Clear_m465CCAF440EF34D44065E6C2BE1D68215EAD505E_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_Clear_m522A510644863A65AB5D00B85D6D20F27E8868FF_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_Clear_m931602651BB5880916DA414408E994815C32612D_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_Clear_mF3D2F0801D0D95591EAFF99E087D27BE7EABA697_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_GetEnumerator_m048B7AA90802D503194E9B6B953CDF1CDC94E003_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_GetEnumerator_m07A4E7847EE8277BA708A9F86E35AB330B3EF1D2_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_GetEnumerator_m0ED7F868DFBF0B8A5F2C3A7252C548079FD8BB4F_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_GetEnumerator_m23C9E22BBF7C218F713D09604F58A0FEEB1FCA9C_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_GetEnumerator_m82EFB25742BBF4B896DD9DCB9BED813145B9F14E_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_GetEnumerator_m8915322E9C7EBA21ED46FBA090753AFA6A0E1DEB_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_RemoveAt_m901167C6F189A4D02B21F1A9CE238CDDCFF769CB_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_RemoveRange_m67B6F69125A5394BC088ACBE2BC99E53792F3D84_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_RemoveRange_m822EDEFF9A41F5ECF6FF477BD098365A13889AF6_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_RemoveRange_m9FB32ECC157784E2F3A9499B6FDB818869D04C12_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_RemoveRange_mB2A135AC73DB3416988192AD3564E5F949C3CF9C_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_RemoveRange_mF49B2BF39FBBF329FD80C63D5117F74628384C4C_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_Sort_m7D91ABCC3436181A92740FA30F58517E70C30EC2_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_m17F501B5A5C289ECE1B4F3D6EBF05DFA421433F8_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_m1DAED5A8EFFF0E76240583B2476A0782F36ABA0E_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_m21A3AD10EC2C165E8A6A3A533380D5D8BE162787_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_m44CF7D068C78C4031FE1623E6502FC9270D1630C_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_m6FE38FE18A0E8C60C49D16C144BBCAC6BF7D7CEB_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_m704CDA15CF76B2197F63CD15DB8F1A9B9F209E07_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_m85ABB9DABC756112634E3DAA683DB6B932717F89_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_mAA472708F75F42B710D5787D9B2FC033BA985640_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_mB5256BBA70CD858B15C25CE0E77EC59F6479EC82_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_mE6E9C860C1BC22D7D9013215F7A81182FCD3BB1C_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Count_m81D0B7C641653EC8742F7B48EC513ECBD2A61C97_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Count_mE6D3D9D20C29AB0625389FEF206BBFF202CD5293_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Count_mED203CDDFC49CE3879C37BC63A8F53B4375C351B_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Item_m1678465F50522CE2FAF1BB8EA6969B91268E5FA3_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Item_m4AA84FB449EDD461A47D02E7C9ED3EF72D48A44E_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Item_m54FB7CAFE4C95FB5BAD4BFD0BDAE72F6C6B0E7F3_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Item_m590DCDF63905DBC9AFD853145981546152F126A4_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Item_mA0690F170B9EA5DBD421B889FC1DEDEF46CAAD1E_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Item_mBC42042D4082F4C6237FEA3435D58D570436268F_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Item_mD99081BEFA1AB3526715F489192B0F7F596C183D_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Item_mF1A0B8107AFE027BCC67DA021B857B6495FA1A90_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Item_mFCF8BC94A0C7B3A51A1FC623D4F3335994152975_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_set_Item_m15D488D7D55AE426685D5C693FB2F2E98DD1CF19_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_set_Item_m3BF7B0B2C94CCE04F5404BC1BBDE6B1FCFAC802D_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_set_Item_m6804E01E4F07D1876D51E76EE142AAD2625798AE_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_set_Item_m806D36B3667116780356A42019B45C63D5F7B367_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_set_Item_m85FB153F408B4FFDE64F242D3B10FF820A7D5137_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_set_Item_m87B2E8BC263F70F16FEADB6B4278F1DD9A6765FF_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_set_Item_m95629806F31CF369D937590912E0B6A53FF7C587_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_set_Item_mA56E7E3B84B486552CEBAF1FFD6986FA5F724808_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Math_ThrowMinMaxException_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_mBC7732632C280D3AEE2B08C470A78B9C5C4CBD77_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* NativeArray_1_CopyFrom_mA833BCBDF37D94BF60950C40CD5C281B113BA999_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* NativeArray_1_CopyTo_mC4570E3EE4DEA62A1F990BDC926014F7773CB6C7_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* NativeArray_1_Copy_mCB984DA829C4D613BDCE16D39741EF4FDC95EF92_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* NativeArray_1_Copy_mF705F6BD4C4D02C73B49A4D937A01BA1048A537D_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* NativeArray_1_Dispose_m0032B76C31C760137D0DB03AFF0ADF68197AD3C3_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* NativeArray_1_Dispose_m03F9BA2E0A4EED6DCA8AD4D9EC282F9B56DFE402_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* NativeArray_1_Dispose_m05C674E687B921C37722A6A1FF938FD56574642E_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* NativeArray_1_Dispose_m4D6B12321C5FF072AD5CD660E179FC761A52C22E_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* NativeArray_1_Dispose_m5CBF60E97954A416106547EF28316741B674D253_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* NativeArray_1_Dispose_m921D007BB17D47849CD74AB7FA825547CB828BBC_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* NativeArray_1_Dispose_m994685B1A26FB0972542BE1216EBD59B332E880A_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* NativeArray_1_Dispose_mACC8FD312FD1CB4F9106BB30A2FED079996CBCD4_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* NativeArray_1_Dispose_mAD3B69E4B23316C46AF8C35D7E1E81206323F16F_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* NativeArray_1_Dispose_mBEC3B949F64875894612C6C8DF654E6C022DF5DF_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* NativeArray_1_Dispose_mC07280A768D065A052D995F3E6175A27CD62E1F6_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* NativeArray_1_Dispose_mDE23364D98F461C925DB28A6A9D5C8580A56FD39_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* NativeArray_1_Dispose_mE40D457AF008BEE531917D94D3A83296CCF8906C_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* NativeArray_1_Dispose_mF001C61A295F2BF3561FD60654243ABFF09AF662_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* NativeArray_1_Dispose_mF16E4FD33476D6947F979B1E1D9F901CE0A04344_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* NativeArray_1_GetEnumerator_m6E656AE4243351850AD99E832638DDF081239389_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* NativeArray_1_Reinterpret_TisMatrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6_m0305CE8B48077F1A6A9C1C7146BEDA3A09B8274B_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* NativeArray_1_Reinterpret_TisSingle_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_mDCC6EC00BF88D23975965B27D2824BF2F070EB14_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* NativeArray_1__ctor_m94DB1A0F1293F5BAA65533ED74C41E31D71CA979_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* NativeArray_1__ctor_mB7BB23924A114599D399A5EC6C00B2B6407CF66D_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Nullable_1__ctor_mC09CE20B08C6A7188EE04F52B6A2E598657A0204_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* ProfilingSampler_Get_TisURPProfileId_tA83520239B6C0F10A73CCC6CEC7D3DA1F1932481_m9F3104BDEBD70A287E8F4BAC86579564A19A5661_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Queue_1_Clear_mF9C62216146F40E17E678C66BDFD0672A6A2BFA1_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Queue_1_Dequeue_mF8CBF6CA268A863994D198E7FB69116D39C9D650_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Queue_1_Enqueue_mD0BFD1A401EF2D3489D09B60C30E3468601BBA0A_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Queue_1__ctor_mCFD83A65B216389290AEF3479047C9FBD933BF5D_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Queue_1_get_Count_mC5E49C471693AD17FDBA87D8532FB0676AC0BB75_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* RenderGraph_AddRasterRenderPass_TisBeginXRPassData_t34405E999FE849E4AAE7FBA7EE4CF3A4CFD51F01_m93BA0C85EB16FA31242B0122BDC3424118D10346_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* RenderGraph_AddRasterRenderPass_TisEndXRPassData_t8FA62D64F60C5147588ACD22BC3136BF31D5A25A_m5917DD5E7449922C9FFECDC188C669EB7F700B65_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* RenderGraph_AddRasterRenderPass_TisPassData_t0F7D1F1E94925DC481C5764B997BEC982471D969_m28F491F231919F5CED432FD84E0618A9E06FCF86_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* RenderGraph_AddRasterRenderPass_TisPassData_t3894D6AEA48D65EEDB1032B9371FF5B63D4302A6_mB86D217730949EEA5463E34263ECAD13B745DDEA_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* RenderGraph_AddRasterRenderPass_TisPassData_t4396B080377CC62E6B81D42D8103F58BF0CC9451_m13AC6F794A0CA94F5CE1484B8A7B8E93C38EA9A6_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* RenderGraph_AddRasterRenderPass_TisPassData_t84C7078BE208CBCF257438586035AB69DE199182_m16E4B052F1CF829CEE630A12FCB0881DC498F9C2_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* RenderGraph_AddRasterRenderPass_TisPassData_tE8DFD4099E5A523D2AA3761A4B9CE793D50AA5F6_m8DC459169A454257F35AA0E777111DE92BB64140_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* RenderGraph_AddUnsafePass_TisDummyData_t0F37F8F2F4E1851082C4B35762C12D62971E203F_m7B296C57DF5E9B5C70BF2BA1BC818CFFAD480146_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* RenderGraph_AddUnsafePass_TisPassData_t84C7078BE208CBCF257438586035AB69DE199182_m12AE6576970C3F76D24E04EB4195A2C7BDC81F05_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* RenderGraph_AddUnsafePass_TisVFXProcessCameraPassData_t19BF6E1F978BA36189D226BA7F36E8F3190D07A9_m1B860B78DA9A535D8D605384DF7FF725B9A60780_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* ScriptableRenderPass_Blit_m51EFEA549568C64221EFC6FFF66EC9078B290BEF_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* ScriptableRenderPass_ConfigureTarget_m06333BFDD3AA853377249E93601B06F03DDFD11B_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* ScriptableRenderPass_ConfigureTarget_m2DC2D1A171DC20D7873D59129C5B3C543C3C28FE_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* ScriptableRenderPass_ConfigureTarget_m6D5152700A43B1468E44A56F074285FE556BFB10_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* ScriptableRenderPass_ConfigureTarget_m887333CF9E280F835B07563DB897ED50D1E863A5_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* ScriptableRenderPass_get_colorAttachment_mBE729A244C6389C581A6DB4C6742CC9D6E29C059_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* ScriptableRenderPass_get_colorAttachments_m750642276649E4B68F7D0951E3B08F99755C9D5C_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* ScriptableRenderPass_get_depthAttachment_m22B1F7DFC6D96D1419EBA02D9EB06D61D9E997A6_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* ScriptableRenderer_ConfigureCameraTarget_m4067416B1E8D785A5BADBEFB1E73FDA7A6A0D440_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* ScriptableRenderer_get_cameraColorTarget_mC2C0353A178726FC82413A458A34496280AFB4D4_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* ScriptableRenderer_get_cameraDepthTarget_mA937C73D921A8583451EC2DBE0D83D3B887DDD00_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* U3CU3Ec_U3CBeginRenderGraphXRRenderingU3Eb__149_0_m4C6F2BF17884FFAC6F6BD5543D47775D43F67D9F_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* U3CU3Ec_U3CEndRenderGraphXRRenderingU3Eb__151_0_m8D18DCF3F53D2877E901D1157D3CE04DFC12E56C_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* U3CU3Ec_U3CInitRenderGraphFrameU3Eb__140_0_mA0DDDB74EE922056C8DD7D3AA2452A55C3E2B083_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* U3CU3Ec_U3CProcessVFXCameraCommandU3Eb__142_0_m931B43DF014190335ECEBF17915B26876D71B9AA_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* U3CU3Ec_U3CRecordRenderGraphU3Eb__10_0_m01C2EAB46099E6DFEDC38A0E88ABAC115ED57799_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* U3CU3Ec_U3CRecordRenderGraphU3Eb__12_0_m8D2BDC9EEECBCE8EB1CDEFF84EF5CBA5DDDCAA0B_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* U3CU3Ec_U3CRecordRenderGraphU3Eb__15_0_m75857FF3B08C8F935437B24499CEEF30DE03E198_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* U3CU3Ec_U3CRecordRenderGraphU3Eb__8_0_m1B070B214EB858B612D68F284FB27326D06B1404_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* U3CU3Ec_U3CSetEditorTargetU3Eb__153_0_mDB332146B6CCC80D9841C0AC62AAD7BD07EA1547_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* U3CU3Ec_U3CSetupRenderGraphCameraPropertiesU3Eb__143_0_mEC9FDDB67A3642A804EF49389B671660A47308D2_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* U3CU3Ec_U3CUpdateU3Eb__26_0_m87A64C173CD8369E00BCE92FE54C3F36E362C322_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeType* CombinedChunks_tCFB3356163B9F9B0E31E0B194E9B415F83340ED9_0_0_0_var;
|
|
struct Delegate_t_marshaled_com;
|
|
struct Delegate_t_marshaled_pinvoke;
|
|
struct Exception_t_marshaled_com;
|
|
struct Exception_t_marshaled_pinvoke;
|
|
|
|
struct Int32U5BU5DU5BU5D_t179D865D5B30EFCBC50F82C9774329C15943466E;
|
|
struct RTHandleU5BU5DU5BU5D_t6066EC3F94599A5A42DA9A893F102E9618CB612F;
|
|
struct RenderTargetIdentifierU5BU5DU5BU5D_tDB35F8D017FE3AD8BB35E08E323074D47C5A10BB;
|
|
struct AttachmentDescriptorU5BU5D_tC70107EBD955FE94BA31C7FDC146069EF9C547C1;
|
|
struct BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4;
|
|
struct BoundingSphereU5BU5D_tD7485B1D5D5A0EE26537B093423FC3AC149BEA47;
|
|
struct DecalProjectorU5BU5D_t4DB89E5586C0FD4200DA223C0ADAFD3D66BF21F3;
|
|
struct DelegateU5BU5D_tC5AB7E8F745616680F337909D3A8E6C722CDF771;
|
|
struct GraphicsDeviceTypeU5BU5D_t4322565F239068C66BF47053B83BD6A9A9D16408;
|
|
struct GraphicsFormatU5BU5D_tF6A3D90C430FA3F548B77E5D58D25D71F154E6C5;
|
|
struct Hash128U5BU5D_tB104E7247B842648E447B7FCF4748077DC1F8C98;
|
|
struct Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C;
|
|
struct Matrix4x4U5BU5D_t9C51C93425FABC022B506D2DB3A5FA70F9752C4D;
|
|
struct ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918;
|
|
struct PlaneU5BU5D_t4EEF66BAA8B0140EFFF34F6183CE7F80546592BE;
|
|
struct RTHandleU5BU5D_tE4B403B060D159B839BF74E8B59F8DCD52CF97DF;
|
|
struct RenderBufferStoreActionU5BU5D_tFEA8F5DD460573EA9F35FBEC5727D1804C5DCBF5;
|
|
struct RenderTargetIdentifierU5BU5D_t179798C153B7CE381B41C57863F98CB24023C4CE;
|
|
struct ShaderTagIdU5BU5D_tE1BA124E13B8096153E25C5AF9C1D15D71466143;
|
|
struct SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C;
|
|
struct TextureHandleU5BU5D_t544FFA6F5A0E1E5F24EB3C5E5F8547CCE9498BD7;
|
|
struct Vector4U5BU5D_tC0F3A7115F85007510F6D173968200CD31BCF7AD;
|
|
struct ItemU5BU5D_t4AC8CDDFF9ED634B9ECE154F0C638C00B12B5CCB;
|
|
struct DecalEntityItemU5BU5D_t4667E6B7E7BCD5313A0D07A782F44A8954080359;
|
|
struct CombinedChunksU5BU5D_tE1B967C0ED5D0439978E22BAE927DAB629A4E5DD;
|
|
|
|
IL2CPP_EXTERN_C_BEGIN
|
|
IL2CPP_EXTERN_C_END
|
|
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
struct DebugDisplaySettings_1_tF9BB40752190C9012A404A38AD943959A102497A : public RuntimeObject
|
|
{
|
|
HashSet_1_tE8F98237DEE456C22A256E903FF802077A6BFA74* ___m_Settings;
|
|
};
|
|
struct Dictionary_2_tCB9019887EB0254D4745B0724BC12327C5B63792 : public RuntimeObject
|
|
{
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ____buckets;
|
|
EntryU5BU5D_t1505C69DDC1CF1E1454A8761CA3FFA04D40631A3* ____entries;
|
|
int32_t ____count;
|
|
int32_t ____freeList;
|
|
int32_t ____freeCount;
|
|
int32_t ____version;
|
|
RuntimeObject* ____comparer;
|
|
KeyCollection_t4B69CDE8B6A50266AA8F2E1B9EF32B6539D9AE82* ____keys;
|
|
ValueCollection_t8206F3F01EE6A27CC3833755CFDB7AA958E9559A* ____values;
|
|
RuntimeObject* ____syncRoot;
|
|
};
|
|
struct Dictionary_2_tB41FAC88F07BAB98D6D373F7C94FB0496D1BDA32 : public RuntimeObject
|
|
{
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ____buckets;
|
|
EntryU5BU5D_t922E0E3923DED813CD2D7F43D2886F5E19802D11* ____entries;
|
|
int32_t ____count;
|
|
int32_t ____freeList;
|
|
int32_t ____freeCount;
|
|
int32_t ____version;
|
|
RuntimeObject* ____comparer;
|
|
KeyCollection_t4664ABDEEEC1AFC7C0316608FE10A9828D2175BB* ____keys;
|
|
ValueCollection_t66950A766C470CC17408744B977179C7559E538B* ____values;
|
|
RuntimeObject* ____syncRoot;
|
|
};
|
|
struct Dictionary_2_t6EB10DF170874D02D43E115B0A1B93479CE3FF80 : public RuntimeObject
|
|
{
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ____buckets;
|
|
EntryU5BU5D_tC7ABC6A67982D2F89D145488BD4884BC9FAA7C4F* ____entries;
|
|
int32_t ____count;
|
|
int32_t ____freeList;
|
|
int32_t ____freeCount;
|
|
int32_t ____version;
|
|
RuntimeObject* ____comparer;
|
|
KeyCollection_t729642E31E09FD3235BFA6007575EC4D4C8CE43E* ____keys;
|
|
ValueCollection_tC02B95B434A38DDC6DF72D47BDA4922291DC94D7* ____values;
|
|
RuntimeObject* ____syncRoot;
|
|
};
|
|
struct EmptyArray_1_tDF0DD7256B115243AA6BD5558417387A734240EE : public RuntimeObject
|
|
{
|
|
};
|
|
struct EmptyArray_1_tB88A622B0CABB73806296B59E273155CA96811AE : public RuntimeObject
|
|
{
|
|
};
|
|
struct List_1_t1A9527CB44249AD17D081A2D7A468343FC2D0720 : public RuntimeObject
|
|
{
|
|
DecalCachedChunkU5BU5D_t0F118709F0F6FA3238811381BCDB645D04924314* ____items;
|
|
int32_t ____size;
|
|
int32_t ____version;
|
|
RuntimeObject* ____syncRoot;
|
|
};
|
|
struct List_1_t2E25D2E682EF62FB0FC538A4C88B3D49616A03DC : public RuntimeObject
|
|
{
|
|
DecalCulledChunkU5BU5D_t7B7AD97C0878869F7E1D340E6DB45FCD1BF92D8A* ____items;
|
|
int32_t ____size;
|
|
int32_t ____version;
|
|
RuntimeObject* ____syncRoot;
|
|
};
|
|
struct List_1_tD8DB23A94A44626CAF7E9B5B4A949D0FDC7B27A7 : public RuntimeObject
|
|
{
|
|
DecalDrawCallChunkU5BU5D_t273B9AA3ED5B31BEC25656F7F1E9BB11D54C1A4A* ____items;
|
|
int32_t ____size;
|
|
int32_t ____version;
|
|
RuntimeObject* ____syncRoot;
|
|
};
|
|
struct List_1_t437E45D007C2D93DCB30DA30023CB2745EE095D0 : public RuntimeObject
|
|
{
|
|
DecalEntityChunkU5BU5D_t5BCC097CCF64A4B055507321747454271404C7B4* ____items;
|
|
int32_t ____size;
|
|
int32_t ____version;
|
|
RuntimeObject* ____syncRoot;
|
|
};
|
|
struct List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73 : public RuntimeObject
|
|
{
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ____items;
|
|
int32_t ____size;
|
|
int32_t ____version;
|
|
RuntimeObject* ____syncRoot;
|
|
};
|
|
struct List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D : public RuntimeObject
|
|
{
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ____items;
|
|
int32_t ____size;
|
|
int32_t ____version;
|
|
RuntimeObject* ____syncRoot;
|
|
};
|
|
struct List_1_t2E485E650BF1E41358CE56A69323E183C5A89CB6 : public RuntimeObject
|
|
{
|
|
ScriptableRenderPassU5BU5D_tC40E3619A24B14CB90535A47C826514BE1343F87* ____items;
|
|
int32_t ____size;
|
|
int32_t ____version;
|
|
RuntimeObject* ____syncRoot;
|
|
};
|
|
struct List_1_t2121653FB628940E808D105AD2C17E0F20AFB3A6 : public RuntimeObject
|
|
{
|
|
ScriptableRendererFeatureU5BU5D_t64361F1FA79104227050258B0751D3DF2E9FDA1C* ____items;
|
|
int32_t ____size;
|
|
int32_t ____version;
|
|
RuntimeObject* ____syncRoot;
|
|
};
|
|
struct List_1_t4673975A297A80D4D4A65EB5A2BE3B6BD1EED9AF : public RuntimeObject
|
|
{
|
|
ShaderTagIdU5BU5D_tE1BA124E13B8096153E25C5AF9C1D15D71466143* ____items;
|
|
int32_t ____size;
|
|
int32_t ____version;
|
|
RuntimeObject* ____syncRoot;
|
|
};
|
|
struct List_1_t218CEA415E5769B47AB34C68D264977822ECAD17 : public RuntimeObject
|
|
{
|
|
DecalEntityItemU5BU5D_t4667E6B7E7BCD5313A0D07A782F44A8954080359* ____items;
|
|
int32_t ____size;
|
|
int32_t ____version;
|
|
RuntimeObject* ____syncRoot;
|
|
};
|
|
struct List_1_t75FC6D059D696BAD77462D09FCDC98B4A7B7D3D4 : public RuntimeObject
|
|
{
|
|
CombinedChunksU5BU5D_tE1B967C0ED5D0439978E22BAE927DAB629A4E5DD* ____items;
|
|
int32_t ____size;
|
|
int32_t ____version;
|
|
RuntimeObject* ____syncRoot;
|
|
};
|
|
struct Queue_1_tCA24E420CB13C6411AEFC3ECE9E62219F7937A1E : public RuntimeObject
|
|
{
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ____array;
|
|
int32_t ____head;
|
|
int32_t ____tail;
|
|
int32_t ____size;
|
|
int32_t ____version;
|
|
RuntimeObject* ____syncRoot;
|
|
};
|
|
struct TypeId_1_tF7C39317892E31289E8C529424E70ED463C8334C : public RuntimeObject
|
|
{
|
|
};
|
|
struct BaseCommandBuffer_tD67BB9B3F740537BD3F3A96FA17D06E6C3BFDC06 : public RuntimeObject
|
|
{
|
|
CommandBuffer_tB56007DC84EF56296C325EC32DD12AC1E3DC91F7* ___m_WrappedCommandBuffer;
|
|
RenderGraphPass_tEFB5BD685D417024760D82991EEEA4F4D0454A93* ___m_ExecutingPass;
|
|
};
|
|
struct ContextContainer_t384E08F63FABEFF6A7F1A753F5EF02699DAD414C : public RuntimeObject
|
|
{
|
|
ItemU5BU5D_t4AC8CDDFF9ED634B9ECE154F0C638C00B12B5CCB* ___m_Items;
|
|
List_1_t9B68833848E4C4D7F623C05F6B77F0449396354A* ___m_ActiveItemIndices;
|
|
};
|
|
struct ContextItem_tFC5ECB349F0410923AE6BC2A9CAACA3589B51086 : public RuntimeObject
|
|
{
|
|
};
|
|
struct DecalCreateDrawCallSystem_tD9FCA6DDC386309EBF5C2D737D458A33E7EAF6DA : public RuntimeObject
|
|
{
|
|
DecalEntityManager_tDA689202786946588782A67EF3F0B0D9121C294A* ___m_EntityManager;
|
|
ProfilingSampler_t420D4672EDB44E0EF980B31ADFD9E5747200FECE* ___m_Sampler;
|
|
float ___m_MaxDrawDistance;
|
|
};
|
|
struct DecalDrawSystem_t87ECA1A8D2D9C3A73A12F81D8CCA0F79029C0BFE : public RuntimeObject
|
|
{
|
|
DecalEntityManager_tDA689202786946588782A67EF3F0B0D9121C294A* ___m_EntityManager;
|
|
Matrix4x4U5BU5D_t9C51C93425FABC022B506D2DB3A5FA70F9752C4D* ___m_WorldToDecals;
|
|
Matrix4x4U5BU5D_t9C51C93425FABC022B506D2DB3A5FA70F9752C4D* ___m_NormalToDecals;
|
|
SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C* ___m_DecalLayerMasks;
|
|
ProfilingSampler_t420D4672EDB44E0EF980B31ADFD9E5747200FECE* ___m_Sampler;
|
|
Material_t18053F08F347D0DCA5E1140EC7EC4533DD8A14E3* ___U3CoverrideMaterialU3Ek__BackingField;
|
|
};
|
|
struct DecalEntityIndexer_t884A1F60E13512A2DE8CEC24635D2B3BE3FD3544 : public RuntimeObject
|
|
{
|
|
List_1_t218CEA415E5769B47AB34C68D264977822ECAD17* ___m_Entities;
|
|
Queue_1_tCA24E420CB13C6411AEFC3ECE9E62219F7937A1E* ___m_FreeIndices;
|
|
};
|
|
struct DecalEntityManager_tDA689202786946588782A67EF3F0B0D9121C294A : public RuntimeObject
|
|
{
|
|
List_1_t437E45D007C2D93DCB30DA30023CB2745EE095D0* ___entityChunks;
|
|
List_1_t1A9527CB44249AD17D081A2D7A468343FC2D0720* ___cachedChunks;
|
|
List_1_t2E25D2E682EF62FB0FC538A4C88B3D49616A03DC* ___culledChunks;
|
|
List_1_tD8DB23A94A44626CAF7E9B5B4A949D0FDC7B27A7* ___drawCallChunks;
|
|
int32_t ___chunkCount;
|
|
ProfilingSampler_t420D4672EDB44E0EF980B31ADFD9E5747200FECE* ___m_AddDecalSampler;
|
|
ProfilingSampler_t420D4672EDB44E0EF980B31ADFD9E5747200FECE* ___m_ResizeChunks;
|
|
ProfilingSampler_t420D4672EDB44E0EF980B31ADFD9E5747200FECE* ___m_SortChunks;
|
|
DecalEntityIndexer_t884A1F60E13512A2DE8CEC24635D2B3BE3FD3544* ___m_DecalEntityIndexer;
|
|
Dictionary_2_t6EB10DF170874D02D43E115B0A1B93479CE3FF80* ___m_MaterialToChunkIndex;
|
|
List_1_t75FC6D059D696BAD77462D09FCDC98B4A7B7D3D4* ___m_CombinedChunks;
|
|
List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* ___m_CombinedChunkRemmap;
|
|
Material_t18053F08F347D0DCA5E1140EC7EC4533DD8A14E3* ___m_ErrorMaterial;
|
|
Mesh_t6D9C539763A09BC2B12AEAEF36F6DFFC98AE63D4* ___m_DecalProjectorMesh;
|
|
};
|
|
struct DecalShaderPassNames_t24A086D6B821062A4C17B362A7798B58C07C9F18 : public RuntimeObject
|
|
{
|
|
};
|
|
struct DecalSkipCulledSystem_tBE639384B2E60736F4BD7E7A5DC71A9F8AF84B1C : public RuntimeObject
|
|
{
|
|
DecalEntityManager_tDA689202786946588782A67EF3F0B0D9121C294A* ___m_EntityManager;
|
|
ProfilingSampler_t420D4672EDB44E0EF980B31ADFD9E5747200FECE* ___m_Sampler;
|
|
Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184* ___m_Camera;
|
|
};
|
|
struct DecalUpdateCachedSystem_tE54DF723671C1BB35856878DBEC0A7B454E127B6 : public RuntimeObject
|
|
{
|
|
DecalEntityManager_tDA689202786946588782A67EF3F0B0D9121C294A* ___m_EntityManager;
|
|
ProfilingSampler_t420D4672EDB44E0EF980B31ADFD9E5747200FECE* ___m_Sampler;
|
|
ProfilingSampler_t420D4672EDB44E0EF980B31ADFD9E5747200FECE* ___m_SamplerJob;
|
|
};
|
|
struct DecalUpdateCulledSystem_t772328A4933CE3C08E3712729DBADF0C07CEC67F : public RuntimeObject
|
|
{
|
|
DecalEntityManager_tDA689202786946588782A67EF3F0B0D9121C294A* ___m_EntityManager;
|
|
ProfilingSampler_t420D4672EDB44E0EF980B31ADFD9E5747200FECE* ___m_Sampler;
|
|
};
|
|
struct DecalUpdateCullingGroupSystem_t73FB1167667D8FAED3C38AF3E308A1E717E2C7D2 : public RuntimeObject
|
|
{
|
|
SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C* ___m_BoundingDistance;
|
|
Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184* ___m_Camera;
|
|
DecalEntityManager_tDA689202786946588782A67EF3F0B0D9121C294A* ___m_EntityManager;
|
|
ProfilingSampler_t420D4672EDB44E0EF980B31ADFD9E5747200FECE* ___m_Sampler;
|
|
};
|
|
struct MemberInfo_t : public RuntimeObject
|
|
{
|
|
};
|
|
struct PlatformAutoDetect_tEEEF1776EA779987D2840527D96D89ADD3177A36 : public RuntimeObject
|
|
{
|
|
};
|
|
struct ProfilingSampler_t420D4672EDB44E0EF980B31ADFD9E5747200FECE : public RuntimeObject
|
|
{
|
|
CustomSampler_tDA472186F08B4016626F032F944036BADFDB5487* ___U3CsamplerU3Ek__BackingField;
|
|
CustomSampler_tDA472186F08B4016626F032F944036BADFDB5487* ___U3CinlineSamplerU3Ek__BackingField;
|
|
String_t* ___U3CnameU3Ek__BackingField;
|
|
Recorder_t0A14385FB0F5829CAAC1E16F88B095769D648C90* ___m_Recorder;
|
|
Recorder_t0A14385FB0F5829CAAC1E16F88B095769D648C90* ___m_InlineRecorder;
|
|
};
|
|
struct RenderPassEventsEnumValues_tE8866513A09C4EDD3D96842CA57C7C20E2EA47E8 : public RuntimeObject
|
|
{
|
|
};
|
|
struct RenderPipeline_t3AF1E2046D27ABCEBA2279770AADA9F531073E69 : public RuntimeObject
|
|
{
|
|
bool ___U3CdisposedU3Ek__BackingField;
|
|
};
|
|
struct RenderingUtils_t4E40200449A82FA3A172A563C490DF11FADA2BE1 : public RuntimeObject
|
|
{
|
|
};
|
|
struct ShaderGlobalKeywords_tCD2A8F654428E5D252204D24E379C6725E5A2C91 : public RuntimeObject
|
|
{
|
|
};
|
|
struct ShaderPropertyId_tAA7B64E0C225CFD70D9837D0733FDE84DC3310D2 : public RuntimeObject
|
|
{
|
|
};
|
|
struct String_t : public RuntimeObject
|
|
{
|
|
int32_t ____stringLength;
|
|
Il2CppChar ____firstChar;
|
|
};
|
|
struct UnsafeGraphContext_t6E24BDE4C6B0924FCC4DE11BFA5B750FF6F03320 : public RuntimeObject
|
|
{
|
|
InternalRenderGraphContext_t7197268EBA8C241EB895B070A5E0C71B111D7503* ___wrappedContext;
|
|
UnsafeCommandBuffer_tDE6BB2FE234DC7453CA682AB275888E9E35F22F2* ___cmd;
|
|
};
|
|
struct ValueType_t6D9B272BD21782F0A9A14F2E41F85A50E97A986F : public RuntimeObject
|
|
{
|
|
};
|
|
struct ValueType_t6D9B272BD21782F0A9A14F2E41F85A50E97A986F_marshaled_pinvoke
|
|
{
|
|
};
|
|
struct ValueType_t6D9B272BD21782F0A9A14F2E41F85A50E97A986F_marshaled_com
|
|
{
|
|
};
|
|
struct XRSystem_tF767981574E3DA643F7A67A995F12DB1C4A97096 : public RuntimeObject
|
|
{
|
|
};
|
|
struct U3CU3Ec_t590CD067BFDD49421D57479BC8BC6311FABEA5F1 : public RuntimeObject
|
|
{
|
|
};
|
|
struct U3CU3Ec_t982F331B7EDFDBCE7D881BB6DF31BAC0023967CC : public RuntimeObject
|
|
{
|
|
};
|
|
struct U3CU3Ec_t7B444D3F3AAA0A33FD57F6821D1F929FEB0555F5 : public RuntimeObject
|
|
{
|
|
};
|
|
struct U3CU3Ec_tAA26B4D41608EBD4DBF0897F2337AC0EC4D686C3 : public RuntimeObject
|
|
{
|
|
};
|
|
struct U3CU3Ec_tFB39F0BD639048162C0147869970658EACB36812 : public RuntimeObject
|
|
{
|
|
};
|
|
struct U3CU3Ec_t15B0AFDB480CE815F26375C7F569551639E65A2B : public RuntimeObject
|
|
{
|
|
};
|
|
struct U3CU3Ec_tAD2991BC81926CE242650EADA7F8BD93F3ABF02C : public RuntimeObject
|
|
{
|
|
};
|
|
struct BeginXRPassData_t34405E999FE849E4AAE7FBA7EE4CF3A4CFD51F01 : public RuntimeObject
|
|
{
|
|
UniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7* ___cameraData;
|
|
};
|
|
struct DummyData_t0F37F8F2F4E1851082C4B35762C12D62971E203F : public RuntimeObject
|
|
{
|
|
};
|
|
struct EndXRPassData_t8FA62D64F60C5147588ACD22BC3136BF31D5A25A : public RuntimeObject
|
|
{
|
|
UniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7* ___cameraData;
|
|
};
|
|
struct Profiling_t1148A935DE86EC9E67DA54238721B4178A744AD3 : public RuntimeObject
|
|
{
|
|
};
|
|
struct RenderPassBlock_t584C655A57D46F7421E00DB28F125ABB455C796C : public RuntimeObject
|
|
{
|
|
};
|
|
struct RenderingFeatures_t31044CBDCDC2F05194BFA2A2122FBD937D78A371 : public RuntimeObject
|
|
{
|
|
bool ___U3CcameraStackingU3Ek__BackingField;
|
|
bool ___U3CmsaaU3Ek__BackingField;
|
|
};
|
|
struct RenderBlock_t7243EA6BF13109280A62FF4C7108E5C2F8676712 : public RuntimeObject
|
|
{
|
|
};
|
|
struct RenderPass_tA744ADA1424B5992F4E272692C1964A7B7469EFD : public RuntimeObject
|
|
{
|
|
};
|
|
struct Enumerator_t1F37311553599DE64203CA50CD1BC7A504A73BBF
|
|
{
|
|
List_1_t1A9527CB44249AD17D081A2D7A468343FC2D0720* ____list;
|
|
int32_t ____index;
|
|
int32_t ____version;
|
|
DecalCachedChunk_tDEF493C8A3A1F442BDEC1794BDDA0996B32DCACE* ____current;
|
|
};
|
|
struct Enumerator_t490DE54C026ACEB8ECD91DB31ED7D8427892ADA9
|
|
{
|
|
List_1_t2E25D2E682EF62FB0FC538A4C88B3D49616A03DC* ____list;
|
|
int32_t ____index;
|
|
int32_t ____version;
|
|
DecalCulledChunk_tFD4472F0ADDD173C7B13E8B0529983E745F12ED3* ____current;
|
|
};
|
|
struct Enumerator_t7923C0941406E673B314ADFF77ADC30A63D17CCA
|
|
{
|
|
List_1_tD8DB23A94A44626CAF7E9B5B4A949D0FDC7B27A7* ____list;
|
|
int32_t ____index;
|
|
int32_t ____version;
|
|
DecalDrawCallChunk_tBD0491A1B0B7D19DF01A5C9EDE0A40CBEDBF7A3A* ____current;
|
|
};
|
|
struct Enumerator_tF5DDF189C56DD8FE4A5FC3E8C99C6F401F606A5A
|
|
{
|
|
List_1_t437E45D007C2D93DCB30DA30023CB2745EE095D0* ____list;
|
|
int32_t ____index;
|
|
int32_t ____version;
|
|
DecalEntityChunk_t2CDCBFA35711DA074631D26572EF9755A3AD740C* ____current;
|
|
};
|
|
struct Enumerator_t9473BAB568A27E2339D48C1F91319E0F6D244D7A
|
|
{
|
|
List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* ____list;
|
|
int32_t ____index;
|
|
int32_t ____version;
|
|
RuntimeObject* ____current;
|
|
};
|
|
struct Enumerator_t217065C53B57E784E09AB2704818CE6F68D07625
|
|
{
|
|
List_1_t2E485E650BF1E41358CE56A69323E183C5A89CB6* ____list;
|
|
int32_t ____index;
|
|
int32_t ____version;
|
|
ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* ____current;
|
|
};
|
|
struct Enumerator_tAE036FA290FC0CC475BEF0D5890C759A8DA9B786
|
|
{
|
|
List_1_t2121653FB628940E808D105AD2C17E0F20AFB3A6* ____list;
|
|
int32_t ____index;
|
|
int32_t ____version;
|
|
ScriptableRendererFeature_tF2ED08AD2498105378D4DAB0386A0F8A144EF4C6* ____current;
|
|
};
|
|
struct Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22
|
|
{
|
|
bool ___m_value;
|
|
};
|
|
struct CameraData_tC27AE109CD20677486A4AC19C0CF014AE0F50C3E
|
|
{
|
|
ContextContainer_t384E08F63FABEFF6A7F1A753F5EF02699DAD414C* ___frameData;
|
|
};
|
|
struct CameraData_tC27AE109CD20677486A4AC19C0CF014AE0F50C3E_marshaled_pinvoke
|
|
{
|
|
ContextContainer_t384E08F63FABEFF6A7F1A753F5EF02699DAD414C* ___frameData;
|
|
};
|
|
struct CameraData_tC27AE109CD20677486A4AC19C0CF014AE0F50C3E_marshaled_com
|
|
{
|
|
ContextContainer_t384E08F63FABEFF6A7F1A753F5EF02699DAD414C* ___frameData;
|
|
};
|
|
struct Color_tD001788D726C3A7F1379BEED0260B9591F440C1F
|
|
{
|
|
float ___r;
|
|
float ___g;
|
|
float ___b;
|
|
float ___a;
|
|
};
|
|
struct CommandBufferHelpers_tB8C09D01D6F0369DF52DEA955F017D6001BC72E5
|
|
{
|
|
union
|
|
{
|
|
struct
|
|
{
|
|
};
|
|
uint8_t CommandBufferHelpers_tB8C09D01D6F0369DF52DEA955F017D6001BC72E5__padding[1];
|
|
};
|
|
};
|
|
struct CoreCameraValues_t5BD0108A962D53208E8523BA29AFFA9F9A295F1F
|
|
{
|
|
int32_t ___filterMode;
|
|
uint32_t ___cullingMask;
|
|
int32_t ___instanceID;
|
|
};
|
|
struct DecalDrawFowardEmissiveSystem_t3A7F6E2F427E996F5E6FF6073ED0DD97921FD378 : public DecalDrawSystem_t87ECA1A8D2D9C3A73A12F81D8CCA0F79029C0BFE
|
|
{
|
|
};
|
|
struct DecalDrawGBufferSystem_t4520A37A2689CDF89893A02977EEC7F0701F796D : public DecalDrawSystem_t87ECA1A8D2D9C3A73A12F81D8CCA0F79029C0BFE
|
|
{
|
|
};
|
|
struct DecalDrawScreenSpaceSystem_t6851B844B1C2A2DEF28F0D4AE9BDB03C86BCB69E : public DecalDrawSystem_t87ECA1A8D2D9C3A73A12F81D8CCA0F79029C0BFE
|
|
{
|
|
};
|
|
struct DecalEntity_t8CAF09C65939503449C4138ADCDC4907196293FD
|
|
{
|
|
int32_t ___index;
|
|
int32_t ___version;
|
|
};
|
|
struct DecalSubDrawCall_t68CDD2E663F805776DE0281AB4FAEDC8B8D9EC49
|
|
{
|
|
int32_t ___start;
|
|
int32_t ___end;
|
|
};
|
|
struct Double_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F
|
|
{
|
|
double ___m_value;
|
|
};
|
|
struct Enum_t2A1A94B24E3B776EEF4E5E485E290BB9D4D072E2 : public ValueType_t6D9B272BD21782F0A9A14F2E41F85A50E97A986F
|
|
{
|
|
};
|
|
struct Enum_t2A1A94B24E3B776EEF4E5E485E290BB9D4D072E2_marshaled_pinvoke
|
|
{
|
|
};
|
|
struct Enum_t2A1A94B24E3B776EEF4E5E485E290BB9D4D072E2_marshaled_com
|
|
{
|
|
};
|
|
struct GlobalKeyword_tFA029618DA6ADCA20CFA44C1B8AFFF9EA097AE7D
|
|
{
|
|
uint32_t ___m_Index;
|
|
};
|
|
struct Hash128_t93367F504B687578F893CDBCD13FB95AC8A87A40
|
|
{
|
|
uint64_t ___u64_0;
|
|
uint64_t ___u64_1;
|
|
};
|
|
struct Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C
|
|
{
|
|
int32_t ___m_value;
|
|
};
|
|
struct IntPtr_t
|
|
{
|
|
void* ___m_value;
|
|
};
|
|
struct JobHandle_t5DF5F99902FED3C801A81C05205CEA6CE039EF08
|
|
{
|
|
uint64_t ___jobGroup;
|
|
int32_t ___version;
|
|
};
|
|
struct LayerMask_t97CB6BDADEDC3D6423C7BCFEA7F86DA2EC6241DB
|
|
{
|
|
int32_t ___m_Mask;
|
|
};
|
|
struct LightData_t6A82F1C9AA97327A5EE9C16A3E949918F3A55470
|
|
{
|
|
ContextContainer_t384E08F63FABEFF6A7F1A753F5EF02699DAD414C* ___frameData;
|
|
};
|
|
struct LightData_t6A82F1C9AA97327A5EE9C16A3E949918F3A55470_marshaled_pinvoke
|
|
{
|
|
ContextContainer_t384E08F63FABEFF6A7F1A753F5EF02699DAD414C* ___frameData;
|
|
};
|
|
struct LightData_t6A82F1C9AA97327A5EE9C16A3E949918F3A55470_marshaled_com
|
|
{
|
|
ContextContainer_t384E08F63FABEFF6A7F1A753F5EF02699DAD414C* ___frameData;
|
|
};
|
|
struct Mathf_tE284D016E3B297B72311AAD9EB8F0E643F6A4682
|
|
{
|
|
union
|
|
{
|
|
struct
|
|
{
|
|
};
|
|
uint8_t Mathf_tE284D016E3B297B72311AAD9EB8F0E643F6A4682__padding[1];
|
|
};
|
|
};
|
|
struct Matrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6
|
|
{
|
|
float ___m00;
|
|
float ___m10;
|
|
float ___m20;
|
|
float ___m30;
|
|
float ___m01;
|
|
float ___m11;
|
|
float ___m21;
|
|
float ___m31;
|
|
float ___m02;
|
|
float ___m12;
|
|
float ___m22;
|
|
float ___m32;
|
|
float ___m03;
|
|
float ___m13;
|
|
float ___m23;
|
|
float ___m33;
|
|
};
|
|
struct PostProcessPasses_tAED11E629F8830B180E0759F4A988839F786D3E9
|
|
{
|
|
ColorGradingLutPass_t9FD9191C4048A3B1BDF67EDFC1DA4E64CEFB6644* ___m_ColorGradingLutPass;
|
|
PostProcessPass_t146B366124B6BB9597B9E9299DA4391FDE159F5C* ___m_PostProcessPass;
|
|
PostProcessPass_t146B366124B6BB9597B9E9299DA4391FDE159F5C* ___m_FinalPostProcessPass;
|
|
RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B* ___m_AfterPostProcessColor;
|
|
RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B* ___m_ColorGradingLut;
|
|
PostProcessData_t106B5638205D5CBAF18F2573047F2DC23BDB2F05* ___m_RendererPostProcessData;
|
|
PostProcessData_t106B5638205D5CBAF18F2573047F2DC23BDB2F05* ___m_CurrentPostProcessData;
|
|
Material_t18053F08F347D0DCA5E1140EC7EC4533DD8A14E3* ___m_BlitMaterial;
|
|
};
|
|
struct PostProcessPasses_tAED11E629F8830B180E0759F4A988839F786D3E9_marshaled_pinvoke
|
|
{
|
|
ColorGradingLutPass_t9FD9191C4048A3B1BDF67EDFC1DA4E64CEFB6644* ___m_ColorGradingLutPass;
|
|
PostProcessPass_t146B366124B6BB9597B9E9299DA4391FDE159F5C* ___m_PostProcessPass;
|
|
PostProcessPass_t146B366124B6BB9597B9E9299DA4391FDE159F5C* ___m_FinalPostProcessPass;
|
|
RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B* ___m_AfterPostProcessColor;
|
|
RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B* ___m_ColorGradingLut;
|
|
PostProcessData_t106B5638205D5CBAF18F2573047F2DC23BDB2F05* ___m_RendererPostProcessData;
|
|
PostProcessData_t106B5638205D5CBAF18F2573047F2DC23BDB2F05* ___m_CurrentPostProcessData;
|
|
Material_t18053F08F347D0DCA5E1140EC7EC4533DD8A14E3* ___m_BlitMaterial;
|
|
};
|
|
struct PostProcessPasses_tAED11E629F8830B180E0759F4A988839F786D3E9_marshaled_com
|
|
{
|
|
ColorGradingLutPass_t9FD9191C4048A3B1BDF67EDFC1DA4E64CEFB6644* ___m_ColorGradingLutPass;
|
|
PostProcessPass_t146B366124B6BB9597B9E9299DA4391FDE159F5C* ___m_PostProcessPass;
|
|
PostProcessPass_t146B366124B6BB9597B9E9299DA4391FDE159F5C* ___m_FinalPostProcessPass;
|
|
RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B* ___m_AfterPostProcessColor;
|
|
RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B* ___m_ColorGradingLut;
|
|
PostProcessData_t106B5638205D5CBAF18F2573047F2DC23BDB2F05* ___m_RendererPostProcessData;
|
|
PostProcessData_t106B5638205D5CBAF18F2573047F2DC23BDB2F05* ___m_CurrentPostProcessData;
|
|
Material_t18053F08F347D0DCA5E1140EC7EC4533DD8A14E3* ___m_BlitMaterial;
|
|
};
|
|
struct PostProcessingData_tFA75BF22951C600258B2707AF7A113E4EDA49BD4
|
|
{
|
|
ContextContainer_t384E08F63FABEFF6A7F1A753F5EF02699DAD414C* ___frameData;
|
|
};
|
|
struct PostProcessingData_tFA75BF22951C600258B2707AF7A113E4EDA49BD4_marshaled_pinvoke
|
|
{
|
|
ContextContainer_t384E08F63FABEFF6A7F1A753F5EF02699DAD414C* ___frameData;
|
|
};
|
|
struct PostProcessingData_tFA75BF22951C600258B2707AF7A113E4EDA49BD4_marshaled_com
|
|
{
|
|
ContextContainer_t384E08F63FABEFF6A7F1A753F5EF02699DAD414C* ___frameData;
|
|
};
|
|
struct ProfilingScope_t57898BA31E8EF8F083EF84E0DA2737AC61CBC5BD
|
|
{
|
|
union
|
|
{
|
|
struct
|
|
{
|
|
};
|
|
uint8_t ProfilingScope_t57898BA31E8EF8F083EF84E0DA2737AC61CBC5BD__padding[1];
|
|
};
|
|
};
|
|
struct Quaternion_tDA59F214EF07D7700B26E40E562F267AF7306974
|
|
{
|
|
float ___x;
|
|
float ___y;
|
|
float ___z;
|
|
float ___w;
|
|
};
|
|
struct RasterCommandBuffer_t4300C4F080EA3CF43C7ACFDBD4F94EA633FE98E8 : public BaseCommandBuffer_tD67BB9B3F740537BD3F3A96FA17D06E6C3BFDC06
|
|
{
|
|
};
|
|
struct RasterGraphContext_tC4D3E53FF7131476487751ACB0237D56C8327147
|
|
{
|
|
InternalRenderGraphContext_t7197268EBA8C241EB895B070A5E0C71B111D7503* ___wrappedContext;
|
|
RasterCommandBuffer_t4300C4F080EA3CF43C7ACFDBD4F94EA633FE98E8* ___cmd;
|
|
};
|
|
struct RasterGraphContext_tC4D3E53FF7131476487751ACB0237D56C8327147_marshaled_pinvoke
|
|
{
|
|
InternalRenderGraphContext_t7197268EBA8C241EB895B070A5E0C71B111D7503* ___wrappedContext;
|
|
RasterCommandBuffer_t4300C4F080EA3CF43C7ACFDBD4F94EA633FE98E8* ___cmd;
|
|
};
|
|
struct RasterGraphContext_tC4D3E53FF7131476487751ACB0237D56C8327147_marshaled_com
|
|
{
|
|
InternalRenderGraphContext_t7197268EBA8C241EB895B070A5E0C71B111D7503* ___wrappedContext;
|
|
RasterCommandBuffer_t4300C4F080EA3CF43C7ACFDBD4F94EA633FE98E8* ___cmd;
|
|
};
|
|
struct Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D
|
|
{
|
|
float ___m_XMin;
|
|
float ___m_YMin;
|
|
float ___m_Width;
|
|
float ___m_Height;
|
|
};
|
|
struct RenderQueueRange_t7518252AA6426B1EA45D3D9B394F304EEF784D71
|
|
{
|
|
int32_t ___m_LowerBound;
|
|
int32_t ___m_UpperBound;
|
|
};
|
|
struct RenderingLayerMask_tD73B9FC1A65A937F18E56833FC83BF89C2B085A1
|
|
{
|
|
uint32_t ___m_Bits;
|
|
};
|
|
struct ShaderTagId_t453E2085B5EE9448FF75E550CAB111EFF690ECB0
|
|
{
|
|
int32_t ___m_Id;
|
|
};
|
|
struct ShadowData_tA165FDF7CA4CE6BEA8B649FFAB91C59ED684D832
|
|
{
|
|
ContextContainer_t384E08F63FABEFF6A7F1A753F5EF02699DAD414C* ___frameData;
|
|
};
|
|
struct ShadowData_tA165FDF7CA4CE6BEA8B649FFAB91C59ED684D832_marshaled_pinvoke
|
|
{
|
|
ContextContainer_t384E08F63FABEFF6A7F1A753F5EF02699DAD414C* ___frameData;
|
|
};
|
|
struct ShadowData_tA165FDF7CA4CE6BEA8B649FFAB91C59ED684D832_marshaled_com
|
|
{
|
|
ContextContainer_t384E08F63FABEFF6A7F1A753F5EF02699DAD414C* ___frameData;
|
|
};
|
|
struct Single_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C
|
|
{
|
|
float ___m_value;
|
|
};
|
|
struct SortingLayerRange_t96D04CFB4E8824978FEB2CFFFCFEAC37E56D52C9
|
|
{
|
|
int16_t ___m_LowerBound;
|
|
int16_t ___m_UpperBound;
|
|
};
|
|
struct StencilState_tBE5F7C1134E50C5E93B45A626D4FB4690F1C91A9
|
|
{
|
|
uint8_t ___m_Enabled;
|
|
uint8_t ___m_ReadMask;
|
|
uint8_t ___m_WriteMask;
|
|
uint8_t ___m_Padding;
|
|
uint8_t ___m_CompareFunctionFront;
|
|
uint8_t ___m_PassOperationFront;
|
|
uint8_t ___m_FailOperationFront;
|
|
uint8_t ___m_ZFailOperationFront;
|
|
uint8_t ___m_CompareFunctionBack;
|
|
uint8_t ___m_PassOperationBack;
|
|
uint8_t ___m_FailOperationBack;
|
|
uint8_t ___m_ZFailOperationBack;
|
|
};
|
|
struct UInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B
|
|
{
|
|
uint32_t ___m_value;
|
|
};
|
|
struct UInt64_t8F12534CC8FC4B5860F2A2CD1EE79D322E7A41AF
|
|
{
|
|
uint64_t ___m_value;
|
|
};
|
|
struct UIntPtr_t
|
|
{
|
|
void* ____pointer;
|
|
};
|
|
struct UniversalRenderPipeline_t54B4737DC500C08628C5BE283D8C583C14DED98F : public RenderPipeline_t3AF1E2046D27ABCEBA2279770AADA9F531073E69
|
|
{
|
|
DebugDisplaySettingsUI_t35C42FEE551C9AF153EA6DCE9CE3A07C3554F1E2* ___m_DebugDisplaySettingsUI;
|
|
UniversalRenderPipelineGlobalSettings_t895E975CCCA62A6DE4F820C0109953EF6D83B9F0* ___m_GlobalSettings;
|
|
UniversalRenderPipelineRuntimeTextures_tDA15F1E9BFCD85610D963AC723C03EB214D1EB86* ___U3CruntimeTexturesU3Ek__BackingField;
|
|
bool ___apvIsEnabled;
|
|
UniversalRenderPipelineAsset_tE8A9AA6F030CC3B558CEA2EB54FFF4FC58CA6232* ___pipelineAsset;
|
|
bool ___enableHDROnce;
|
|
Comparison_1_t49BE56523BDD8BC22EF3396960546FE16DE7B11A* ___cameraComparison;
|
|
};
|
|
struct UniversalRenderPipelineDebugDisplaySettings_t8E70DD217918DB0E7BD8BCCD9958C3E781DE0653 : public DebugDisplaySettings_1_tF9BB40752190C9012A404A38AD943959A102497A
|
|
{
|
|
DebugDisplaySettingsCommon_tC2EB56792BEE0BB23F9E2316D04D5B7494102C20* ___U3CcommonSettingsU3Ek__BackingField;
|
|
DebugDisplaySettingsMaterial_t1216E6947CF7C77A4FA32054B14EAC7ED7E59E58* ___U3CmaterialSettingsU3Ek__BackingField;
|
|
DebugDisplaySettingsRendering_t0112AECF41E04E8EB029F3B2C769BB05A72D50F3* ___U3CrenderingSettingsU3Ek__BackingField;
|
|
DebugDisplaySettingsLighting_t7DC0135652202CB3DEAB99CC630DDC44A695C4B0* ___U3ClightingSettingsU3Ek__BackingField;
|
|
DebugDisplaySettingsVolume_t3E447ED99A00BE4F99E6E1A536AF8A45E6B46214* ___U3CvolumeSettingsU3Ek__BackingField;
|
|
DebugDisplaySettingsStats_1_tBFF67F2E6F4D9231320ABAD8D301958FC19B268E* ___U3CdisplayStatsU3Ek__BackingField;
|
|
DebugDisplayGPUResidentDrawer_tF9C1E662C774B366AD07B9EB4E0DB7FF5BFFC278* ___U3CgpuResidentDrawerSettingsU3Ek__BackingField;
|
|
};
|
|
struct UniversalResourceDataBase_t22F227228119E69F9151E30D6DC4BE0BAA0ADDE4 : public ContextItem_tFC5ECB349F0410923AE6BC2A9CAACA3589B51086
|
|
{
|
|
bool ___U3CisAccessibleU3Ek__BackingField;
|
|
};
|
|
struct VFXCameraXRSettings_t03DB07CF170D5B4B66546F8DE78FED3CF9755D92
|
|
{
|
|
uint32_t ___viewTotal;
|
|
uint32_t ___viewCount;
|
|
uint32_t ___viewOffset;
|
|
};
|
|
struct Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7
|
|
{
|
|
float ___x;
|
|
float ___y;
|
|
};
|
|
struct Vector2Int_t69B2886EBAB732D9B880565E18E7568F3DE0CE6A
|
|
{
|
|
int32_t ___m_X;
|
|
int32_t ___m_Y;
|
|
};
|
|
struct Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2
|
|
{
|
|
float ___x;
|
|
float ___y;
|
|
float ___z;
|
|
};
|
|
struct Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3
|
|
{
|
|
float ___x;
|
|
float ___y;
|
|
float ___z;
|
|
float ___w;
|
|
};
|
|
struct Void_t4861ACF8F4594C3437BB48B6E56783494B843915
|
|
{
|
|
union
|
|
{
|
|
struct
|
|
{
|
|
};
|
|
uint8_t Void_t4861ACF8F4594C3437BB48B6E56783494B843915__padding[1];
|
|
};
|
|
};
|
|
struct float2_t24AA5C0F612B0672315EDAFEC9D9E7F1C4A5B0BA
|
|
{
|
|
float ___x;
|
|
float ___y;
|
|
};
|
|
struct float3_t4AB5D88249ADB24F69FFD0793E8ED25E1CC3745E
|
|
{
|
|
float ___x;
|
|
float ___y;
|
|
float ___z;
|
|
};
|
|
struct float4_t89D9A294E7A79BD81BFBDD18654508532958555E
|
|
{
|
|
float ___x;
|
|
float ___y;
|
|
float ___z;
|
|
float ___w;
|
|
};
|
|
struct U3ClayerCullDistancesU3Ee__FixedBuffer_t899804C5038AB391CB8F8C17638A02661B106C3F
|
|
{
|
|
union
|
|
{
|
|
struct
|
|
{
|
|
float ___FixedElementField;
|
|
};
|
|
uint8_t U3ClayerCullDistancesU3Ee__FixedBuffer_t899804C5038AB391CB8F8C17638A02661B106C3F__padding[128];
|
|
};
|
|
};
|
|
struct U3Cm_CameraCullPlanesU3Ee__FixedBuffer_t41B125C97F22DF8C016DBA29753704559C53DCD9
|
|
{
|
|
union
|
|
{
|
|
struct
|
|
{
|
|
uint8_t ___FixedElementField;
|
|
};
|
|
uint8_t U3Cm_CameraCullPlanesU3Ee__FixedBuffer_t41B125C97F22DF8C016DBA29753704559C53DCD9__padding[96];
|
|
};
|
|
};
|
|
struct U3Cm_ShadowCullPlanesU3Ee__FixedBuffer_tEBBBC21BE4AF7AC2F831E9A67E5E5CFEBDF2DE4F
|
|
{
|
|
union
|
|
{
|
|
struct
|
|
{
|
|
uint8_t ___FixedElementField;
|
|
};
|
|
uint8_t U3Cm_ShadowCullPlanesU3Ee__FixedBuffer_tEBBBC21BE4AF7AC2F831E9A67E5E5CFEBDF2DE4F__padding[96];
|
|
};
|
|
};
|
|
struct Item_tFA847F868B1ECD768A489638A61F7BC398DECDAC
|
|
{
|
|
ContextItem_tFC5ECB349F0410923AE6BC2A9CAACA3589B51086* ___storage;
|
|
bool ___isSet;
|
|
};
|
|
struct Item_tFA847F868B1ECD768A489638A61F7BC398DECDAC_marshaled_pinvoke
|
|
{
|
|
ContextItem_tFC5ECB349F0410923AE6BC2A9CAACA3589B51086* ___storage;
|
|
int32_t ___isSet;
|
|
};
|
|
struct Item_tFA847F868B1ECD768A489638A61F7BC398DECDAC_marshaled_com
|
|
{
|
|
ContextItem_tFC5ECB349F0410923AE6BC2A9CAACA3589B51086* ___storage;
|
|
int32_t ___isSet;
|
|
};
|
|
struct DecalEntityItem_tE2209120E111E679725F7022B0C54DEC6783EA5D
|
|
{
|
|
int32_t ___chunkIndex;
|
|
int32_t ___arrayIndex;
|
|
int32_t ___version;
|
|
};
|
|
struct CombinedChunks_tCFB3356163B9F9B0E31E0B194E9B415F83340ED9
|
|
{
|
|
DecalEntityChunk_t2CDCBFA35711DA074631D26572EF9755A3AD740C* ___entityChunk;
|
|
DecalCachedChunk_tDEF493C8A3A1F442BDEC1794BDDA0996B32DCACE* ___cachedChunk;
|
|
DecalCulledChunk_tFD4472F0ADDD173C7B13E8B0529983E745F12ED3* ___culledChunk;
|
|
DecalDrawCallChunk_tBD0491A1B0B7D19DF01A5C9EDE0A40CBEDBF7A3A* ___drawCallChunk;
|
|
int32_t ___previousChunkIndex;
|
|
bool ___valid;
|
|
};
|
|
struct CombinedChunks_tCFB3356163B9F9B0E31E0B194E9B415F83340ED9_marshaled_pinvoke
|
|
{
|
|
DecalEntityChunk_t2CDCBFA35711DA074631D26572EF9755A3AD740C* ___entityChunk;
|
|
DecalCachedChunk_tDEF493C8A3A1F442BDEC1794BDDA0996B32DCACE* ___cachedChunk;
|
|
DecalCulledChunk_tFD4472F0ADDD173C7B13E8B0529983E745F12ED3* ___culledChunk;
|
|
DecalDrawCallChunk_tBD0491A1B0B7D19DF01A5C9EDE0A40CBEDBF7A3A* ___drawCallChunk;
|
|
int32_t ___previousChunkIndex;
|
|
int32_t ___valid;
|
|
};
|
|
struct CombinedChunks_tCFB3356163B9F9B0E31E0B194E9B415F83340ED9_marshaled_com
|
|
{
|
|
DecalEntityChunk_t2CDCBFA35711DA074631D26572EF9755A3AD740C* ___entityChunk;
|
|
DecalCachedChunk_tDEF493C8A3A1F442BDEC1794BDDA0996B32DCACE* ___cachedChunk;
|
|
DecalCulledChunk_tFD4472F0ADDD173C7B13E8B0529983E745F12ED3* ___culledChunk;
|
|
DecalDrawCallChunk_tBD0491A1B0B7D19DF01A5C9EDE0A40CBEDBF7A3A* ___drawCallChunk;
|
|
int32_t ___previousChunkIndex;
|
|
int32_t ___valid;
|
|
};
|
|
struct U3CshaderPassNamesU3Ee__FixedBuffer_t5EDC823777BDDC9D50E55FF3779FBC1B3820126D
|
|
{
|
|
union
|
|
{
|
|
struct
|
|
{
|
|
int32_t ___FixedElementField;
|
|
};
|
|
uint8_t U3CshaderPassNamesU3Ee__FixedBuffer_t5EDC823777BDDC9D50E55FF3779FBC1B3820126D__padding[64];
|
|
};
|
|
};
|
|
struct U3Cm_CullingPlanesU3Ee__FixedBuffer_t1E4CBEC7086738067A0EF9A1B2B6B36059DAB955
|
|
{
|
|
union
|
|
{
|
|
struct
|
|
{
|
|
uint8_t ___FixedElementField;
|
|
};
|
|
uint8_t U3Cm_CullingPlanesU3Ee__FixedBuffer_t1E4CBEC7086738067A0EF9A1B2B6B36059DAB955__padding[160];
|
|
};
|
|
};
|
|
struct U3Cm_LayerFarCullDistancesU3Ee__FixedBuffer_tD64F550B6761957A5DA6A33A171BBF4FB4EB667D
|
|
{
|
|
union
|
|
{
|
|
struct
|
|
{
|
|
float ___FixedElementField;
|
|
};
|
|
uint8_t U3Cm_LayerFarCullDistancesU3Ee__FixedBuffer_tD64F550B6761957A5DA6A33A171BBF4FB4EB667D__padding[128];
|
|
};
|
|
};
|
|
struct RenderPassDescriptor_t69F0595A52DBEEBFE5A491D3E8E27D530069B0C5
|
|
{
|
|
int32_t ___w;
|
|
int32_t ___h;
|
|
int32_t ___samples;
|
|
int32_t ___depthID;
|
|
};
|
|
struct BlockRange_tA1B8F0F361ACE9052C36ADAD020F52FB749A7F91
|
|
{
|
|
int32_t ___m_Current;
|
|
int32_t ___m_End;
|
|
};
|
|
struct Nullable_1_t7D98773CC20A842A0846271D1181ECBB0D95926C
|
|
{
|
|
bool ___hasValue;
|
|
RenderQueueRange_t7518252AA6426B1EA45D3D9B394F304EEF784D71 ___value;
|
|
};
|
|
struct AccessFlags_tB7D400C853C05A1DB9C6B56DF14E43721F0B1739
|
|
{
|
|
int32_t ___value__;
|
|
};
|
|
struct Allocator_t996642592271AAD9EE688F142741D512C07B5824
|
|
{
|
|
int32_t ___value__;
|
|
};
|
|
struct AntialiasingMode_tDF75AC7BDAF51FA550F528F7B798416ACB8D3487
|
|
{
|
|
int32_t ___value__;
|
|
};
|
|
struct AntialiasingQuality_t45B2A050F79EB8B705FED3F3F30A70942E71D605
|
|
{
|
|
int32_t ___value__;
|
|
};
|
|
struct BoundingSphere_t2DDB3D1711A6920C0ECA9217D3E4E14AFF03C010
|
|
{
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___position;
|
|
float ___radius;
|
|
};
|
|
struct BuiltinRenderTextureType_t3D56813CAC7C6E4AC3B438039BD1CE7E62FE7C4E
|
|
{
|
|
int32_t ___value__;
|
|
};
|
|
struct CameraClearFlags_t91B921013F611457A09B92EF9C6B218CECF67202
|
|
{
|
|
int32_t ___value__;
|
|
};
|
|
struct CameraProperties_t9318B43C06A9BAC4CD8BC5EFCC9FE6882D296D57
|
|
{
|
|
Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D ___screenRect;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___viewDir;
|
|
float ___projectionNear;
|
|
float ___projectionFar;
|
|
float ___cameraNear;
|
|
float ___cameraFar;
|
|
float ___cameraAspect;
|
|
Matrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6 ___cameraToWorld;
|
|
Matrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6 ___actualWorldToClip;
|
|
Matrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6 ___cameraClipToWorld;
|
|
Matrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6 ___cameraWorldToClip;
|
|
Matrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6 ___implicitProjection;
|
|
Matrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6 ___stereoWorldToClipLeft;
|
|
Matrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6 ___stereoWorldToClipRight;
|
|
Matrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6 ___worldToCamera;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___up;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___right;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___transformDirection;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___cameraEuler;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___velocity;
|
|
float ___farPlaneWorldSpaceLength;
|
|
uint32_t ___rendererCount;
|
|
U3Cm_ShadowCullPlanesU3Ee__FixedBuffer_tEBBBC21BE4AF7AC2F831E9A67E5E5CFEBDF2DE4F ___m_ShadowCullPlanes;
|
|
U3Cm_CameraCullPlanesU3Ee__FixedBuffer_t41B125C97F22DF8C016DBA29753704559C53DCD9 ___m_CameraCullPlanes;
|
|
float ___baseFarDistance;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___shadowCullCenter;
|
|
U3ClayerCullDistancesU3Ee__FixedBuffer_t899804C5038AB391CB8F8C17638A02661B106C3F ___layerCullDistances;
|
|
int32_t ___layerCullSpherical;
|
|
CoreCameraValues_t5BD0108A962D53208E8523BA29AFFA9F9A295F1F ___coreCameraValues;
|
|
uint32_t ___cameraType;
|
|
int32_t ___projectionIsOblique;
|
|
int32_t ___isImplicitProjectionMatrix;
|
|
bool ___useInteractiveLightBakingData;
|
|
};
|
|
struct CameraProperties_t9318B43C06A9BAC4CD8BC5EFCC9FE6882D296D57_marshaled_pinvoke
|
|
{
|
|
Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D ___screenRect;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___viewDir;
|
|
float ___projectionNear;
|
|
float ___projectionFar;
|
|
float ___cameraNear;
|
|
float ___cameraFar;
|
|
float ___cameraAspect;
|
|
Matrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6 ___cameraToWorld;
|
|
Matrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6 ___actualWorldToClip;
|
|
Matrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6 ___cameraClipToWorld;
|
|
Matrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6 ___cameraWorldToClip;
|
|
Matrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6 ___implicitProjection;
|
|
Matrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6 ___stereoWorldToClipLeft;
|
|
Matrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6 ___stereoWorldToClipRight;
|
|
Matrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6 ___worldToCamera;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___up;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___right;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___transformDirection;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___cameraEuler;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___velocity;
|
|
float ___farPlaneWorldSpaceLength;
|
|
uint32_t ___rendererCount;
|
|
U3Cm_ShadowCullPlanesU3Ee__FixedBuffer_tEBBBC21BE4AF7AC2F831E9A67E5E5CFEBDF2DE4F ___m_ShadowCullPlanes;
|
|
U3Cm_CameraCullPlanesU3Ee__FixedBuffer_t41B125C97F22DF8C016DBA29753704559C53DCD9 ___m_CameraCullPlanes;
|
|
float ___baseFarDistance;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___shadowCullCenter;
|
|
U3ClayerCullDistancesU3Ee__FixedBuffer_t899804C5038AB391CB8F8C17638A02661B106C3F ___layerCullDistances;
|
|
int32_t ___layerCullSpherical;
|
|
CoreCameraValues_t5BD0108A962D53208E8523BA29AFFA9F9A295F1F ___coreCameraValues;
|
|
uint32_t ___cameraType;
|
|
int32_t ___projectionIsOblique;
|
|
int32_t ___isImplicitProjectionMatrix;
|
|
int32_t ___useInteractiveLightBakingData;
|
|
};
|
|
struct CameraProperties_t9318B43C06A9BAC4CD8BC5EFCC9FE6882D296D57_marshaled_com
|
|
{
|
|
Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D ___screenRect;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___viewDir;
|
|
float ___projectionNear;
|
|
float ___projectionFar;
|
|
float ___cameraNear;
|
|
float ___cameraFar;
|
|
float ___cameraAspect;
|
|
Matrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6 ___cameraToWorld;
|
|
Matrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6 ___actualWorldToClip;
|
|
Matrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6 ___cameraClipToWorld;
|
|
Matrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6 ___cameraWorldToClip;
|
|
Matrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6 ___implicitProjection;
|
|
Matrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6 ___stereoWorldToClipLeft;
|
|
Matrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6 ___stereoWorldToClipRight;
|
|
Matrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6 ___worldToCamera;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___up;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___right;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___transformDirection;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___cameraEuler;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___velocity;
|
|
float ___farPlaneWorldSpaceLength;
|
|
uint32_t ___rendererCount;
|
|
U3Cm_ShadowCullPlanesU3Ee__FixedBuffer_tEBBBC21BE4AF7AC2F831E9A67E5E5CFEBDF2DE4F ___m_ShadowCullPlanes;
|
|
U3Cm_CameraCullPlanesU3Ee__FixedBuffer_t41B125C97F22DF8C016DBA29753704559C53DCD9 ___m_CameraCullPlanes;
|
|
float ___baseFarDistance;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___shadowCullCenter;
|
|
U3ClayerCullDistancesU3Ee__FixedBuffer_t899804C5038AB391CB8F8C17638A02661B106C3F ___layerCullDistances;
|
|
int32_t ___layerCullSpherical;
|
|
CoreCameraValues_t5BD0108A962D53208E8523BA29AFFA9F9A295F1F ___coreCameraValues;
|
|
uint32_t ___cameraType;
|
|
int32_t ___projectionIsOblique;
|
|
int32_t ___isImplicitProjectionMatrix;
|
|
int32_t ___useInteractiveLightBakingData;
|
|
};
|
|
struct CameraRenderType_tC686ABD18F67CA30E6DF217007744F509606A41D
|
|
{
|
|
int32_t ___value__;
|
|
};
|
|
struct CameraType_tCA1017DBE96964E1D967942FB98F152F14121FCD
|
|
{
|
|
int32_t ___value__;
|
|
};
|
|
struct ClearFlag_t0B57BE5A60AA0EE7CC0DAE7E7DF82EB993A59ADD
|
|
{
|
|
int32_t ___value__;
|
|
};
|
|
struct ColorGradingMode_t980B9396D20213763F23C4D474BC079FC68BF83E
|
|
{
|
|
int32_t ___value__;
|
|
};
|
|
struct CommandBuffer_tB56007DC84EF56296C325EC32DD12AC1E3DC91F7 : public RuntimeObject
|
|
{
|
|
intptr_t ___m_Ptr;
|
|
};
|
|
struct CopyDepthMode_t0A1F431DCE72B7B024FF0A3C035807DB818B5EEC
|
|
{
|
|
int32_t ___value__;
|
|
};
|
|
struct CubemapFace_t300D6E2CD7DF60D44AA28338748B607677ED1D1B
|
|
{
|
|
int32_t ___value__;
|
|
};
|
|
struct CullingGroup_t0732D3CC044BAE2BE39748CBF5D96DDB6DBF62E7 : public RuntimeObject
|
|
{
|
|
intptr_t ___m_Ptr;
|
|
StateChanged_t6DC116251B1ED50EC475CFF0195AB6625478485F* ___m_OnStateChanged;
|
|
};
|
|
struct CullingGroup_t0732D3CC044BAE2BE39748CBF5D96DDB6DBF62E7_marshaled_pinvoke
|
|
{
|
|
intptr_t ___m_Ptr;
|
|
Il2CppMethodPointer ___m_OnStateChanged;
|
|
};
|
|
struct CullingGroup_t0732D3CC044BAE2BE39748CBF5D96DDB6DBF62E7_marshaled_com
|
|
{
|
|
intptr_t ___m_Ptr;
|
|
Il2CppMethodPointer ___m_OnStateChanged;
|
|
};
|
|
struct CullingOptions_t94DE290A993D1671AE0E2CAC416FD9F37222B812
|
|
{
|
|
int32_t ___value__;
|
|
};
|
|
struct CullingResults_tD6B7EF20B68D47DFF3A99EB2EA73F47F1D460267
|
|
{
|
|
intptr_t ___ptr;
|
|
CullingAllocationInfo_tB260F5CD0B290F74E145EB16E54B901CC68D9D5A* ___m_AllocationInfo;
|
|
};
|
|
struct DebugFullScreenMode_tEB766BE7C6F8CB12AC364BBFCB01D794D2F79771
|
|
{
|
|
int32_t ___value__;
|
|
};
|
|
struct DebugHandler_t3A09E2CFD1CA6F5C192968A6FF19EE4863F44DA4 : public RuntimeObject
|
|
{
|
|
DebugSetupPassData_t6FF39B74BC8FDCBD41EF92A852D5495C4F6F33EA* ___s_DebugSetupPassData;
|
|
DebugFinalValidationPassData_t8E6E203E5F9FFDDBB98153741C76049EEF9F744B* ___s_DebugFinalValidationPassData;
|
|
Material_t18053F08F347D0DCA5E1140EC7EC4533DD8A14E3* ___m_ReplacementMaterial;
|
|
Material_t18053F08F347D0DCA5E1140EC7EC4533DD8A14E3* ___m_HDRDebugViewMaterial;
|
|
HDRDebugViewPass_t1FC1B0F01FF5DBD18E7813E17D58C428B14800D1* ___m_HDRDebugViewPass;
|
|
RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B* ___m_DebugScreenColorHandle;
|
|
RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B* ___m_DebugScreenDepthHandle;
|
|
UniversalRenderPipelineRuntimeTextures_tDA15F1E9BFCD85610D963AC723C03EB214D1EB86* ___m_RuntimeTextures;
|
|
bool ___m_HasDebugRenderTarget;
|
|
bool ___m_DebugRenderTargetSupportsStereo;
|
|
Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3 ___m_DebugRenderTargetPixelRect;
|
|
Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3 ___m_DebugRenderTargetRangeRemap;
|
|
RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B* ___m_DebugRenderTarget;
|
|
RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B* ___m_DebugFontTexture;
|
|
GraphicsBuffer_t91FACD3CD78588C25C361C453D1A2FE055EC4AF1* ___m_debugDisplayConstant;
|
|
UniversalRenderPipelineDebugDisplaySettings_t8E70DD217918DB0E7BD8BCCD9958C3E781DE0653* ___m_DebugDisplaySettings;
|
|
};
|
|
struct DebugMipInfoMode_tACC9FBFB82079F41CF4483FC6748825CE96FB97C
|
|
{
|
|
int32_t ___value__;
|
|
};
|
|
struct DebugMipMapModeTerrainTexture_t3A80BFE9B1F3F898C29CC9FE8FB85F788B7D7316
|
|
{
|
|
int32_t ___value__;
|
|
};
|
|
struct DebugMipMapStatusMode_tC1F2BB03B3FB0335947B7F49D21C56E1FB237997
|
|
{
|
|
int32_t ___value__;
|
|
};
|
|
struct DebugOverdrawMode_tD0722D3AB7D89146717E9CFD7703F18E6C728ACE
|
|
{
|
|
int32_t ___value__;
|
|
};
|
|
struct DebugPostProcessingMode_t10836A037369A3E02166D938092FDCAAEB1C7934
|
|
{
|
|
int32_t ___value__;
|
|
};
|
|
struct DebugSceneOverrideMode_t9B04DEDB486A515397D02EFFC03637B14F0077E0
|
|
{
|
|
int32_t ___value__;
|
|
};
|
|
struct DebugValidationMode_t387187AD146D9B59B659C4F5C9B47192BFBF7EB8
|
|
{
|
|
int32_t ___value__;
|
|
};
|
|
struct DebugWireframeMode_t99987445F09A01ACF64D97733EC6DEEE1027496A
|
|
{
|
|
int32_t ___value__;
|
|
};
|
|
struct DecalChunk_tD2C5831DD2A6E97A7A738C88C5922305BA0513CA : public RuntimeObject
|
|
{
|
|
int32_t ___U3CcountU3Ek__BackingField;
|
|
int32_t ___U3CcapacityU3Ek__BackingField;
|
|
JobHandle_t5DF5F99902FED3C801A81C05205CEA6CE039EF08 ___U3CcurrentJobHandleU3Ek__BackingField;
|
|
};
|
|
struct DecalNormalBlend_tF102A6EEEDE361DABD5BA1670C8B3DB80A03477A
|
|
{
|
|
int32_t ___value__;
|
|
};
|
|
struct DecalScaleMode_tBFFBA2F5E3B718BD9965A803920323CB8B6C208C
|
|
{
|
|
int32_t ___value__;
|
|
};
|
|
struct DecalTechnique_t0C27ABC599AE20CBBE9BE0945D1E4D048E813649
|
|
{
|
|
int32_t ___value__;
|
|
};
|
|
struct DefaultFormat_t76E7B829061170DA4EE4B2B6574C47DD182B7BF3
|
|
{
|
|
int32_t ___value__;
|
|
};
|
|
struct Delegate_t : public RuntimeObject
|
|
{
|
|
intptr_t ___method_ptr;
|
|
intptr_t ___invoke_impl;
|
|
RuntimeObject* ___m_target;
|
|
intptr_t ___method;
|
|
intptr_t ___delegate_trampoline;
|
|
intptr_t ___extra_arg;
|
|
intptr_t ___method_code;
|
|
intptr_t ___interp_method;
|
|
intptr_t ___interp_invoke_impl;
|
|
MethodInfo_t* ___method_info;
|
|
MethodInfo_t* ___original_method_info;
|
|
DelegateData_t9B286B493293CD2D23A5B2B5EF0E5B1324C2B77E* ___data;
|
|
bool ___method_is_virtual;
|
|
};
|
|
struct Delegate_t_marshaled_pinvoke
|
|
{
|
|
intptr_t ___method_ptr;
|
|
intptr_t ___invoke_impl;
|
|
Il2CppIUnknown* ___m_target;
|
|
intptr_t ___method;
|
|
intptr_t ___delegate_trampoline;
|
|
intptr_t ___extra_arg;
|
|
intptr_t ___method_code;
|
|
intptr_t ___interp_method;
|
|
intptr_t ___interp_invoke_impl;
|
|
MethodInfo_t* ___method_info;
|
|
MethodInfo_t* ___original_method_info;
|
|
DelegateData_t9B286B493293CD2D23A5B2B5EF0E5B1324C2B77E* ___data;
|
|
int32_t ___method_is_virtual;
|
|
};
|
|
struct Delegate_t_marshaled_com
|
|
{
|
|
intptr_t ___method_ptr;
|
|
intptr_t ___invoke_impl;
|
|
Il2CppIUnknown* ___m_target;
|
|
intptr_t ___method;
|
|
intptr_t ___delegate_trampoline;
|
|
intptr_t ___extra_arg;
|
|
intptr_t ___method_code;
|
|
intptr_t ___interp_method;
|
|
intptr_t ___interp_invoke_impl;
|
|
MethodInfo_t* ___method_info;
|
|
MethodInfo_t* ___original_method_info;
|
|
DelegateData_t9B286B493293CD2D23A5B2B5EF0E5B1324C2B77E* ___data;
|
|
int32_t ___method_is_virtual;
|
|
};
|
|
struct DepthFormat_tC5F801ECE667A8F03310593A216E828E3FCD33E4
|
|
{
|
|
int32_t ___value__;
|
|
};
|
|
struct DepthPrimingMode_t788A505A123926BDBA954D796941C989865263C8
|
|
{
|
|
int32_t ___value__;
|
|
};
|
|
struct DistanceMetric_t071B9815BB961E33F7CA2C553CA725F61AE09EDE
|
|
{
|
|
int32_t ___value__;
|
|
};
|
|
struct Downsampling_tFE6A5D41D0A9881972AE6C6470FA5E1700410D49
|
|
{
|
|
int32_t ___value__;
|
|
};
|
|
struct DrawRendererFlags_t3AD0574208BFF93F323D5E1E92012F19EAE972CD
|
|
{
|
|
int32_t ___value__;
|
|
};
|
|
struct Exception_t : public RuntimeObject
|
|
{
|
|
String_t* ____className;
|
|
String_t* ____message;
|
|
RuntimeObject* ____data;
|
|
Exception_t* ____innerException;
|
|
String_t* ____helpURL;
|
|
RuntimeObject* ____stackTrace;
|
|
String_t* ____stackTraceString;
|
|
String_t* ____remoteStackTraceString;
|
|
int32_t ____remoteStackIndex;
|
|
RuntimeObject* ____dynamicMethods;
|
|
int32_t ____HResult;
|
|
String_t* ____source;
|
|
SafeSerializationManager_tCBB85B95DFD1634237140CD892E82D06ECB3F5E6* ____safeSerializationManager;
|
|
StackTraceU5BU5D_t32FBCB20930EAF5BAE3F450FF75228E5450DA0DF* ___captured_traces;
|
|
IntPtrU5BU5D_tFD177F8C806A6921AD7150264CCC62FA00CAD832* ___native_trace_ips;
|
|
int32_t ___caught_in_unmanaged;
|
|
};
|
|
struct Exception_t_marshaled_pinvoke
|
|
{
|
|
char* ____className;
|
|
char* ____message;
|
|
RuntimeObject* ____data;
|
|
Exception_t_marshaled_pinvoke* ____innerException;
|
|
char* ____helpURL;
|
|
Il2CppIUnknown* ____stackTrace;
|
|
char* ____stackTraceString;
|
|
char* ____remoteStackTraceString;
|
|
int32_t ____remoteStackIndex;
|
|
Il2CppIUnknown* ____dynamicMethods;
|
|
int32_t ____HResult;
|
|
char* ____source;
|
|
SafeSerializationManager_tCBB85B95DFD1634237140CD892E82D06ECB3F5E6* ____safeSerializationManager;
|
|
StackTraceU5BU5D_t32FBCB20930EAF5BAE3F450FF75228E5450DA0DF* ___captured_traces;
|
|
Il2CppSafeArray* ___native_trace_ips;
|
|
int32_t ___caught_in_unmanaged;
|
|
};
|
|
struct Exception_t_marshaled_com
|
|
{
|
|
Il2CppChar* ____className;
|
|
Il2CppChar* ____message;
|
|
RuntimeObject* ____data;
|
|
Exception_t_marshaled_com* ____innerException;
|
|
Il2CppChar* ____helpURL;
|
|
Il2CppIUnknown* ____stackTrace;
|
|
Il2CppChar* ____stackTraceString;
|
|
Il2CppChar* ____remoteStackTraceString;
|
|
int32_t ____remoteStackIndex;
|
|
Il2CppIUnknown* ____dynamicMethods;
|
|
int32_t ____HResult;
|
|
Il2CppChar* ____source;
|
|
SafeSerializationManager_tCBB85B95DFD1634237140CD892E82D06ECB3F5E6* ____safeSerializationManager;
|
|
StackTraceU5BU5D_t32FBCB20930EAF5BAE3F450FF75228E5450DA0DF* ___captured_traces;
|
|
Il2CppSafeArray* ___native_trace_ips;
|
|
int32_t ___caught_in_unmanaged;
|
|
};
|
|
struct FilterMode_t4AD57F1A3FE272D650E0E688BA044AE872BD2A34
|
|
{
|
|
int32_t ___value__;
|
|
};
|
|
struct FilteringSettings_t75860B12A7BCF9A0E2F13CB2C2E5DCD9E1EEAD9F
|
|
{
|
|
RenderQueueRange_t7518252AA6426B1EA45D3D9B394F304EEF784D71 ___m_RenderQueueRange;
|
|
int32_t ___m_LayerMask;
|
|
uint32_t ___m_RenderingLayerMask;
|
|
uint32_t ___m_BatchLayerMask;
|
|
int32_t ___m_ExcludeMotionVectorObjects;
|
|
int32_t ___m_ForceAllMotionVectorObjects;
|
|
SortingLayerRange_t96D04CFB4E8824978FEB2CFFFCFEAC37E56D52C9 ___m_SortingLayerRange;
|
|
};
|
|
struct FoveatedRenderingCaps_tBC8C9BB9100AE3EE12492E5C56B21839B84373E5
|
|
{
|
|
int32_t ___value__;
|
|
};
|
|
struct FoveatedRenderingMode_tE5B4BD8B909179B3E0AD94A6936DB33408C5C8CF
|
|
{
|
|
int32_t ___value__;
|
|
};
|
|
struct GPUResidentDrawerMode_t25B237C91A9832B9A2C0DA9F7D85CF2BAE44BD2C
|
|
{
|
|
uint8_t ___value__;
|
|
};
|
|
struct GizmoSubset_t832D722616DF5A47294E692996ACD2FE975BE6D8
|
|
{
|
|
int32_t ___value__;
|
|
};
|
|
struct GraphicsDeviceType_t65150C9055D1BC1E377E894972629BF22BA2CBF5
|
|
{
|
|
int32_t ___value__;
|
|
};
|
|
struct GraphicsFormat_tC3D1898F3F3F1F57256C7F3FFD6BA9A37AE7E713
|
|
{
|
|
int32_t ___value__;
|
|
};
|
|
struct HDRColorBufferPrecision_tEF57E1CB7C2B230E3AFF5D6628010DD456EA58C7
|
|
{
|
|
int32_t ___value__;
|
|
};
|
|
struct ImageScalingMode_tB7E238BD8F6E6D9CBC6C2C92E3E4C9DF72A4AF54
|
|
{
|
|
int32_t ___value__;
|
|
};
|
|
struct ImageUpscalingFilter_t6BAB8A7CB0216E88F69458503780865981937631
|
|
{
|
|
int32_t ___value__;
|
|
};
|
|
struct Int32Enum_tCBAC8BA2BFF3A845FA599F303093BBBA374B6F0C
|
|
{
|
|
int32_t ___value__;
|
|
};
|
|
struct IntermediateTextureMode_t393BD5890504A30C3A5EEDC10C95266B5CAC28BD
|
|
{
|
|
int32_t ___value__;
|
|
};
|
|
struct LODCrossFadeDitheringType_tB8C1B60F3BCA8E2BEFB7F09B3D93F96CE2CB1667
|
|
{
|
|
int32_t ___value__;
|
|
};
|
|
struct LODParameters_t54D2AA0FD8E53BCF51D7A42BC1A72FCA8C78A08A
|
|
{
|
|
int32_t ___m_IsOrthographic;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___m_CameraPosition;
|
|
float ___m_FieldOfView;
|
|
float ___m_OrthoSize;
|
|
int32_t ___m_CameraPixelHeight;
|
|
};
|
|
struct LightCookieFormat_tDED41022799DAEAA99C550708D80B99A2A8F9EC1
|
|
{
|
|
int32_t ___value__;
|
|
};
|
|
struct LightCookieResolution_t10D8305CBC46C8C4261C5EFAA031A2B35AF2BF39
|
|
{
|
|
int32_t ___value__;
|
|
};
|
|
struct LightProbeSystem_tEFBD1F503CF60DFBD07B38E3422CA44B5825921C
|
|
{
|
|
int32_t ___value__;
|
|
};
|
|
struct LightRenderingMode_t38A0DEB49D920E66D4854F5C54437D11BBA6D024
|
|
{
|
|
int32_t ___value__;
|
|
};
|
|
struct MSAASamples_tB69F548BE8CA330465CC9D1F7B51199162D5D72C
|
|
{
|
|
int32_t ___value__;
|
|
};
|
|
struct MaterialPropertyBlock_t2308669579033A857EFE6E4831909F638B27411D : public RuntimeObject
|
|
{
|
|
intptr_t ___m_Ptr;
|
|
};
|
|
struct MixedLightingSetup_tD9025BE7BF89DAAA8886B982A2F5CAD6A8783721
|
|
{
|
|
int32_t ___value__;
|
|
};
|
|
struct MsaaQuality_tE945475230F4F9265C9C862D32DE0484CB458FF9
|
|
{
|
|
int32_t ___value__;
|
|
};
|
|
struct NativeArrayOptions_t3E979EEF4B4840228A7692A97DA07553C6465F1D
|
|
{
|
|
int32_t ___value__;
|
|
};
|
|
struct Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C : public RuntimeObject
|
|
{
|
|
intptr_t ___m_CachedPtr;
|
|
};
|
|
struct Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_marshaled_pinvoke
|
|
{
|
|
intptr_t ___m_CachedPtr;
|
|
};
|
|
struct Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_marshaled_com
|
|
{
|
|
intptr_t ___m_CachedPtr;
|
|
};
|
|
struct PerObjectData_t04DDCBE9ABF1113E8F9BAFCF4A7F94DD841B9CC9
|
|
{
|
|
int32_t ___value__;
|
|
};
|
|
struct PipelineDebugLevel_tA1231A8106C64D773860E40E46555EB8682D746B
|
|
{
|
|
int32_t ___value__;
|
|
};
|
|
struct PixelValidationChannels_t13AF5414D31D7587054690DE7DA1EE9128AAF112
|
|
{
|
|
int32_t ___value__;
|
|
};
|
|
struct Plane_tB7D8CC6F7AACF5F3AA483AF005C1102A8577BC0C
|
|
{
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___m_Normal;
|
|
float ___m_Distance;
|
|
};
|
|
struct ProbeVolumeBlendingTextureMemoryBudget_t7EE399384930322B57F0CF83315FE1FA651CB002
|
|
{
|
|
int32_t ___value__;
|
|
};
|
|
struct ProbeVolumeSHBands_t1515D16254FE4344C5FC4C9506F4F9A7ABA4D194
|
|
{
|
|
int32_t ___value__;
|
|
};
|
|
struct ProbeVolumeTextureMemoryBudget_t9F9B7221A5D6E98DAED0233C050A91A2D745CB66
|
|
{
|
|
int32_t ___value__;
|
|
};
|
|
struct RTHandleProperties_tBCB3E1EFE8B366995704C1322B9C443877580CD6
|
|
{
|
|
Vector2Int_t69B2886EBAB732D9B880565E18E7568F3DE0CE6A ___previousViewportSize;
|
|
Vector2Int_t69B2886EBAB732D9B880565E18E7568F3DE0CE6A ___previousRenderTargetSize;
|
|
Vector2Int_t69B2886EBAB732D9B880565E18E7568F3DE0CE6A ___currentViewportSize;
|
|
Vector2Int_t69B2886EBAB732D9B880565E18E7568F3DE0CE6A ___currentRenderTargetSize;
|
|
Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3 ___rtHandleScale;
|
|
};
|
|
struct ReflectionProbeSortingCriteria_tC7B547F11F4EF1259DB024027DD9562A19EA957E
|
|
{
|
|
int32_t ___value__;
|
|
};
|
|
struct RenderBuffer_tBE7B342979EF2FA36E24C8A7F9242212F5B89551
|
|
{
|
|
int32_t ___m_RenderTextureInstanceID;
|
|
intptr_t ___m_BufferPtr;
|
|
};
|
|
struct RenderBufferLoadAction_t3333B2CABABAC39DA0CDC25602E5E4FD93C2CB0E
|
|
{
|
|
int32_t ___value__;
|
|
};
|
|
struct RenderBufferStoreAction_t87683F22C09634E24A574F21F42037C953A2C8B7
|
|
{
|
|
int32_t ___value__;
|
|
};
|
|
struct RenderGraphResourceType_t5F552AF06E38DEC5775B77F13C8783A895FCD086
|
|
{
|
|
int32_t ___value__;
|
|
};
|
|
struct RenderGraphState_tFB60E034516492478A523A4D4EB7E380C799C1E3
|
|
{
|
|
int32_t ___value__;
|
|
};
|
|
struct RenderPassEvent_t65FBDDF314AC831A598C794FD81BB61AD3930353
|
|
{
|
|
int32_t ___value__;
|
|
};
|
|
struct RenderTextureCreationFlags_t1C01993691E5BA956575134696509089FE852F50
|
|
{
|
|
int32_t ___value__;
|
|
};
|
|
struct RenderTextureMemoryless_tE3B7F3AE353C3E9ACF86076376EB862131D19A69
|
|
{
|
|
int32_t ___value__;
|
|
};
|
|
struct RendererList_t608CE60421616EF4211F5B8AC62E3C36D4BDDF85
|
|
{
|
|
uintptr_t ___context;
|
|
uint32_t ___index;
|
|
uint32_t ___frame;
|
|
uint32_t ___type;
|
|
uint32_t ___contextID;
|
|
};
|
|
struct RendererListHandleType_tF4A920C02D6273E876EA0E5E7BF6B7096E278E57
|
|
{
|
|
int32_t ___value__;
|
|
};
|
|
struct RendererType_t952E4F0C867408594D6DB4894BEFF90C854B6C90
|
|
{
|
|
int32_t ___value__;
|
|
};
|
|
struct RenderingData_tAAA01190551D6D5954314E3E1E85B58DD45EED71
|
|
{
|
|
ContextContainer_t384E08F63FABEFF6A7F1A753F5EF02699DAD414C* ___frameData;
|
|
CameraData_tC27AE109CD20677486A4AC19C0CF014AE0F50C3E ___cameraData;
|
|
LightData_t6A82F1C9AA97327A5EE9C16A3E949918F3A55470 ___lightData;
|
|
ShadowData_tA165FDF7CA4CE6BEA8B649FFAB91C59ED684D832 ___shadowData;
|
|
PostProcessingData_tFA75BF22951C600258B2707AF7A113E4EDA49BD4 ___postProcessingData;
|
|
};
|
|
struct RenderingData_tAAA01190551D6D5954314E3E1E85B58DD45EED71_marshaled_pinvoke
|
|
{
|
|
ContextContainer_t384E08F63FABEFF6A7F1A753F5EF02699DAD414C* ___frameData;
|
|
CameraData_tC27AE109CD20677486A4AC19C0CF014AE0F50C3E_marshaled_pinvoke ___cameraData;
|
|
LightData_t6A82F1C9AA97327A5EE9C16A3E949918F3A55470_marshaled_pinvoke ___lightData;
|
|
ShadowData_tA165FDF7CA4CE6BEA8B649FFAB91C59ED684D832_marshaled_pinvoke ___shadowData;
|
|
PostProcessingData_tFA75BF22951C600258B2707AF7A113E4EDA49BD4_marshaled_pinvoke ___postProcessingData;
|
|
};
|
|
struct RenderingData_tAAA01190551D6D5954314E3E1E85B58DD45EED71_marshaled_com
|
|
{
|
|
ContextContainer_t384E08F63FABEFF6A7F1A753F5EF02699DAD414C* ___frameData;
|
|
CameraData_tC27AE109CD20677486A4AC19C0CF014AE0F50C3E_marshaled_com ___cameraData;
|
|
LightData_t6A82F1C9AA97327A5EE9C16A3E949918F3A55470_marshaled_com ___lightData;
|
|
ShadowData_tA165FDF7CA4CE6BEA8B649FFAB91C59ED684D832_marshaled_com ___shadowData;
|
|
PostProcessingData_tFA75BF22951C600258B2707AF7A113E4EDA49BD4_marshaled_com ___postProcessingData;
|
|
};
|
|
struct RenderingMode_t55C56C57973CFEF6AC1C91E2F4D7C8D76FF393A1
|
|
{
|
|
int32_t ___value__;
|
|
};
|
|
struct RuntimePlatform_t9A8AAF204603076FCAAECCCC05DA386AEE7BF66E
|
|
{
|
|
int32_t ___value__;
|
|
};
|
|
struct RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B
|
|
{
|
|
intptr_t ___value;
|
|
};
|
|
struct ScriptableRenderContext_t5AB09B3602BEB456E0DC3D53926D3A3BDAF08E36
|
|
{
|
|
intptr_t ___m_Ptr;
|
|
};
|
|
struct ScriptableRenderPassInput_t2E28A5DE1B3B8001EE14298E0133EFF3204DE645
|
|
{
|
|
int32_t ___value__;
|
|
};
|
|
struct ShEvalMode_t3815527819404E432D030BC50500EF1C5A0C0117
|
|
{
|
|
int32_t ___value__;
|
|
};
|
|
struct ShaderVariantLogLevel_t90ADECB390C8DBBB55360986A12A3430A42C65DE
|
|
{
|
|
int32_t ___value__;
|
|
};
|
|
struct ShadowCascadesOption_t0A87F71CB8129325144A22F446F8BDF0297F0823
|
|
{
|
|
int32_t ___value__;
|
|
};
|
|
struct ShadowCastingMode_tF30806698B37CF120A1A506BD7549EAF308E7C6D
|
|
{
|
|
int32_t ___value__;
|
|
};
|
|
struct ShadowQuality_tA2A95092FE517E629C7015F01CFFD83704BFAD24
|
|
{
|
|
int32_t ___value__;
|
|
};
|
|
struct ShadowResolution_t6C40A535E6EC0EFEF19D5BD8B3470E3EAEE58C2F
|
|
{
|
|
int32_t ___value__;
|
|
};
|
|
struct ShadowSamplingMode_t8BE740C4258CFEDDBAC01FDC0438D8EE3F776BA8
|
|
{
|
|
int32_t ___value__;
|
|
};
|
|
struct SoftShadowQuality_t912D2519B85B76887C033210FFE985794D829D14
|
|
{
|
|
int32_t ___value__;
|
|
};
|
|
struct SortingCriteria_t4907D221CB6E6AA4A32C1ED7B5D17103FD3E7C39
|
|
{
|
|
int32_t ___value__;
|
|
};
|
|
struct StoreActionsOptimization_tB5EB82E81175365B1DF3C5DE71F35E77E3B38B4A
|
|
{
|
|
int32_t ___value__;
|
|
};
|
|
struct TemporalAAQuality_t03A8B3F777D54108A9CE21E79AB4C022968AD5F5
|
|
{
|
|
int32_t ___value__;
|
|
};
|
|
struct TextureDimension_t8D7148B9168256EE1E9AF91378ABA148888CE642
|
|
{
|
|
int32_t ___value__;
|
|
};
|
|
struct TransformAccess_tF0D55E1C5B6B29B618E8A129AB633E2F1100D580
|
|
{
|
|
intptr_t ___hierarchy;
|
|
int32_t ___index;
|
|
};
|
|
struct TransformAccessArray_t104EDE5BB3DC7E294332BB1D2AA508CAEDEE83D4
|
|
{
|
|
intptr_t ___m_TransformArray;
|
|
};
|
|
struct URPProfileId_tA83520239B6C0F10A73CCC6CEC7D3DA1F1932481
|
|
{
|
|
int32_t ___value__;
|
|
};
|
|
struct UpscalingFilterSelection_t2C57376448148F3F22A29AAD71BBB7DB99D8F9A4
|
|
{
|
|
int32_t ___value__;
|
|
};
|
|
struct VRTextureUsage_t57FAA0077810142A461D74EDC5E33FC3D78BD2E8
|
|
{
|
|
int32_t ___value__;
|
|
};
|
|
struct VolumeFrameworkUpdateMode_tCD9A8BEF3700F3AA490F1BB39EF8A88E94398627
|
|
{
|
|
int32_t ___value__;
|
|
};
|
|
struct float3x3_tB318DB8C7E54B6CA9E14EB9AC7F5964C1189FC79
|
|
{
|
|
float3_t4AB5D88249ADB24F69FFD0793E8ED25E1CC3745E ___c0;
|
|
float3_t4AB5D88249ADB24F69FFD0793E8ED25E1CC3745E ___c1;
|
|
float3_t4AB5D88249ADB24F69FFD0793E8ED25E1CC3745E ___c2;
|
|
};
|
|
struct float4x4_t7EDD16F7F57DC7F61A6302535F7C19FB97915DF2
|
|
{
|
|
float4_t89D9A294E7A79BD81BFBDD18654508532958555E ___c0;
|
|
float4_t89D9A294E7A79BD81BFBDD18654508532958555E ___c1;
|
|
float4_t89D9A294E7A79BD81BFBDD18654508532958555E ___c2;
|
|
float4_t89D9A294E7A79BD81BFBDD18654508532958555E ___c3;
|
|
};
|
|
struct quaternion_tD6BCBECAF088B9EBAE2345EC8534C7A1A4C910D4
|
|
{
|
|
float4_t89D9A294E7A79BD81BFBDD18654508532958555E ___value;
|
|
};
|
|
struct TaaDebugMode_tE695EAA8D1E293BD8E492C66C2009F97580FCD98
|
|
{
|
|
int32_t ___value__;
|
|
};
|
|
struct Version_t10CE5BD858145CB965A46550B564490F1691EF1D
|
|
{
|
|
int32_t ___value__;
|
|
};
|
|
struct Version_tEE67C95CD9AC32F11CEAA6A21AFE17EBE43FF844
|
|
{
|
|
int32_t ___value__;
|
|
};
|
|
struct Event_tEB6B0291F738CDC6D90B67E4C476ADD4AFE13601
|
|
{
|
|
int32_t ___value__;
|
|
};
|
|
struct MaskSize_t84F10A9530391814360A3F70DD021343A5144EE5
|
|
{
|
|
int32_t ___value__;
|
|
};
|
|
struct BlurTypes_tF7605D12C4A29D52AB2CCBB8DC55B6D8B064CEF9
|
|
{
|
|
int32_t ___value__;
|
|
};
|
|
struct SSAOMaterialParams_t2D8F1118717893672C007220809CDED76FBEB49E
|
|
{
|
|
bool ___orthographicCamera;
|
|
bool ___aoBlueNoise;
|
|
bool ___aoInterleavedGradient;
|
|
bool ___sampleCountHigh;
|
|
bool ___sampleCountMedium;
|
|
bool ___sampleCountLow;
|
|
bool ___sourceDepthNormals;
|
|
bool ___sourceDepthHigh;
|
|
bool ___sourceDepthMedium;
|
|
bool ___sourceDepthLow;
|
|
Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3 ___ssaoParams;
|
|
};
|
|
struct SSAOMaterialParams_t2D8F1118717893672C007220809CDED76FBEB49E_marshaled_pinvoke
|
|
{
|
|
int32_t ___orthographicCamera;
|
|
int32_t ___aoBlueNoise;
|
|
int32_t ___aoInterleavedGradient;
|
|
int32_t ___sampleCountHigh;
|
|
int32_t ___sampleCountMedium;
|
|
int32_t ___sampleCountLow;
|
|
int32_t ___sourceDepthNormals;
|
|
int32_t ___sourceDepthHigh;
|
|
int32_t ___sourceDepthMedium;
|
|
int32_t ___sourceDepthLow;
|
|
Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3 ___ssaoParams;
|
|
};
|
|
struct SSAOMaterialParams_t2D8F1118717893672C007220809CDED76FBEB49E_marshaled_com
|
|
{
|
|
int32_t ___orthographicCamera;
|
|
int32_t ___aoBlueNoise;
|
|
int32_t ___aoInterleavedGradient;
|
|
int32_t ___sampleCountHigh;
|
|
int32_t ___sampleCountMedium;
|
|
int32_t ___sampleCountLow;
|
|
int32_t ___sourceDepthNormals;
|
|
int32_t ___sourceDepthHigh;
|
|
int32_t ___sourceDepthMedium;
|
|
int32_t ___sourceDepthLow;
|
|
Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3 ___ssaoParams;
|
|
};
|
|
struct PassData_t84C7078BE208CBCF257438586035AB69DE199182 : public RuntimeObject
|
|
{
|
|
ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892* ___renderer;
|
|
UniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7* ___cameraData;
|
|
bool ___isTargetBackbuffer;
|
|
Vector2Int_t69B2886EBAB732D9B880565E18E7568F3DE0CE6A ___cameraTargetSizeCopy;
|
|
};
|
|
struct VFXProcessCameraPassData_t19BF6E1F978BA36189D226BA7F36E8F3190D07A9 : public RuntimeObject
|
|
{
|
|
UniversalRenderingData_t045D13A1E051DF623B170223B7CBF1161DDA94E6* ___renderingData;
|
|
Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184* ___camera;
|
|
VFXCameraXRSettings_t03DB07CF170D5B4B66546F8DE78FED3CF9755D92 ___cameraXRSettings;
|
|
XRPass_tFC4577E97B88E0EAAAB2EB387AB3A92E9EB9C6DF* ___xrPass;
|
|
};
|
|
struct ActiveID_t29AFD1C17603245BE41E1B8BAB21769900F7BB42
|
|
{
|
|
int32_t ___value__;
|
|
};
|
|
struct NativeArray_1_t39BA841475121E3F8A81F9BCA6646FD6FD6A32A8
|
|
{
|
|
void* ___m_Buffer;
|
|
int32_t ___m_Length;
|
|
int32_t ___m_AllocatorLabel;
|
|
};
|
|
struct NativeArray_1_t107C57D0357BCF9956A60495CD8FAADDF1D26AFB
|
|
{
|
|
void* ___m_Buffer;
|
|
int32_t ___m_Length;
|
|
int32_t ___m_AllocatorLabel;
|
|
};
|
|
struct NativeArray_1_t3D8121943984EEED49DC98DED560DCC6638111B6
|
|
{
|
|
void* ___m_Buffer;
|
|
int32_t ___m_Length;
|
|
int32_t ___m_AllocatorLabel;
|
|
};
|
|
struct NativeArray_1_t83F02282C33BAD818D67110F7760483208880311
|
|
{
|
|
void* ___m_Buffer;
|
|
int32_t ___m_Length;
|
|
int32_t ___m_AllocatorLabel;
|
|
};
|
|
struct NativeArray_1_tB64676789FBC7DC3DA7BB2D7765883A285CA6065
|
|
{
|
|
void* ___m_Buffer;
|
|
int32_t ___m_Length;
|
|
int32_t ___m_AllocatorLabel;
|
|
};
|
|
struct NativeArray_1_t197AED29D4CF7A6BC8C6C69B7BABD82BDC8475E2
|
|
{
|
|
void* ___m_Buffer;
|
|
int32_t ___m_Length;
|
|
int32_t ___m_AllocatorLabel;
|
|
};
|
|
struct NativeArray_1_tA833EB7E3E1C9AF82C37976AD964B8D4BAC38B2C
|
|
{
|
|
void* ___m_Buffer;
|
|
int32_t ___m_Length;
|
|
int32_t ___m_AllocatorLabel;
|
|
};
|
|
struct NativeArray_1_tE0DCAF7ED58915BC160F767E310F0F0A55B6BC75
|
|
{
|
|
void* ___m_Buffer;
|
|
int32_t ___m_Length;
|
|
int32_t ___m_AllocatorLabel;
|
|
};
|
|
struct NativeArray_1_t6D4C2D5161FC101BAF06059CD9414A2153CCC2A0
|
|
{
|
|
void* ___m_Buffer;
|
|
int32_t ___m_Length;
|
|
int32_t ___m_AllocatorLabel;
|
|
};
|
|
struct NativeArray_1_tD47F54AAF0D318CDC9CC3C4AF7BE99B72697486A
|
|
{
|
|
void* ___m_Buffer;
|
|
int32_t ___m_Length;
|
|
int32_t ___m_AllocatorLabel;
|
|
};
|
|
struct NativeArray_1_t0AB49EE6A37F6BC668C15EDFBE9BE92A22B2F0DB
|
|
{
|
|
void* ___m_Buffer;
|
|
int32_t ___m_Length;
|
|
int32_t ___m_AllocatorLabel;
|
|
};
|
|
struct NativeArray_1_t5576C5C8F17BB3E1BA11BBA3EC50A55FC1246445
|
|
{
|
|
void* ___m_Buffer;
|
|
int32_t ___m_Length;
|
|
int32_t ___m_AllocatorLabel;
|
|
};
|
|
struct NativeArray_1_t3848EE4B6647317212A754634DE6DBC90B99FBEF
|
|
{
|
|
void* ___m_Buffer;
|
|
int32_t ___m_Length;
|
|
int32_t ___m_AllocatorLabel;
|
|
};
|
|
struct NativeArray_1_t275C00CC374DEA66C69B3BB3992116F315A8E934
|
|
{
|
|
void* ___m_Buffer;
|
|
int32_t ___m_Length;
|
|
int32_t ___m_AllocatorLabel;
|
|
};
|
|
struct NativeArray_1_t453E3DEA4CC9F1056F24E417C3308C35174BC184
|
|
{
|
|
void* ___m_Buffer;
|
|
int32_t ___m_Length;
|
|
int32_t ___m_AllocatorLabel;
|
|
};
|
|
struct NativeArray_1_t07975297AD7F7512193094A7C0703BA872EF7A7B
|
|
{
|
|
void* ___m_Buffer;
|
|
int32_t ___m_Length;
|
|
int32_t ___m_AllocatorLabel;
|
|
};
|
|
struct NativeArray_1_t71485A1E60B31CCAD3E525C907CF172E8B804468
|
|
{
|
|
void* ___m_Buffer;
|
|
int32_t ___m_Length;
|
|
int32_t ___m_AllocatorLabel;
|
|
};
|
|
struct NativeArray_1_t46D43179C2B71BAB34958401E08B5C5DA4488E9E
|
|
{
|
|
void* ___m_Buffer;
|
|
int32_t ___m_Length;
|
|
int32_t ___m_AllocatorLabel;
|
|
};
|
|
struct NativeArray_1_tEDE9DAD2CAE5954286BC0EF394A57ED0AC69FEE6
|
|
{
|
|
void* ___m_Buffer;
|
|
int32_t ___m_Length;
|
|
int32_t ___m_AllocatorLabel;
|
|
};
|
|
struct NativeArray_1_tB5EA234C6ABA1F626A4BEF4053D06783E15A3881
|
|
{
|
|
void* ___m_Buffer;
|
|
int32_t ___m_Length;
|
|
int32_t ___m_AllocatorLabel;
|
|
};
|
|
struct NativeArray_1_t63326FF687E26631308829A9CDB0C51D523D4E9A
|
|
{
|
|
void* ___m_Buffer;
|
|
int32_t ___m_Length;
|
|
int32_t ___m_AllocatorLabel;
|
|
};
|
|
struct NativeArray_1_tE645174F30913B665DE45D85525F90B1F64E054A
|
|
{
|
|
void* ___m_Buffer;
|
|
int32_t ___m_Length;
|
|
int32_t ___m_AllocatorLabel;
|
|
};
|
|
struct Component_t39FBE53E5EFCF4409111FB22C15FF73717632EC3 : public Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C
|
|
{
|
|
};
|
|
struct DebugDisplaySettingsRendering_t0112AECF41E04E8EB029F3B2C769BB05A72D50F3 : public RuntimeObject
|
|
{
|
|
int32_t ___m_WireframeMode;
|
|
bool ___m_Overdraw;
|
|
int32_t ___m_OverdrawMode;
|
|
int32_t ___U3CmaxOverdrawCountU3Ek__BackingField;
|
|
int32_t ___U3CfullScreenDebugModeU3Ek__BackingField;
|
|
int32_t ___U3CstpDebugViewIndexU3Ek__BackingField;
|
|
int32_t ___U3CfullScreenDebugModeOutputSizeScreenPercentU3Ek__BackingField;
|
|
int32_t ___U3CsceneOverrideModeU3Ek__BackingField;
|
|
int32_t ___U3CmipInfoModeU3Ek__BackingField;
|
|
bool ___U3CmipDebugStatusShowCodeU3Ek__BackingField;
|
|
int32_t ___U3CmipDebugStatusModeU3Ek__BackingField;
|
|
float ___U3CmipDebugOpacityU3Ek__BackingField;
|
|
float ___U3CmipDebugRecentUpdateCooldownU3Ek__BackingField;
|
|
int32_t ___U3CmipDebugMaterialTextureSlotU3Ek__BackingField;
|
|
bool ___U3CshowInfoForAllSlotsU3Ek__BackingField;
|
|
int32_t ___U3CmipDebugTerrainTextureU3Ek__BackingField;
|
|
int32_t ___U3CpostProcessingDebugModeU3Ek__BackingField;
|
|
bool ___U3CenableMsaaU3Ek__BackingField;
|
|
bool ___U3CenableHDRU3Ek__BackingField;
|
|
int32_t ___U3CtaaDebugModeU3Ek__BackingField;
|
|
int32_t ___U3CvalidationModeU3Ek__BackingField;
|
|
int32_t ___U3CvalidationChannelsU3Ek__BackingField;
|
|
float ___U3CvalidationRangeMinU3Ek__BackingField;
|
|
float ___U3CvalidationRangeMaxU3Ek__BackingField;
|
|
};
|
|
struct DecalDrawErrorSystem_tBFEB031E49B33054C1378119DBFC83DDCBBD9837 : public DecalDrawSystem_t87ECA1A8D2D9C3A73A12F81D8CCA0F79029C0BFE
|
|
{
|
|
int32_t ___m_Technique;
|
|
};
|
|
struct DecalScreenSpaceSettings_tD94FE1202A789534D40E4DD61AD7DE9E55F1ADD3 : public RuntimeObject
|
|
{
|
|
int32_t ___normalBlend;
|
|
};
|
|
struct GameObject_t76FEDD663AB33C991A9C9A23129337651094216F : public Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C
|
|
{
|
|
};
|
|
struct Material_t18053F08F347D0DCA5E1140EC7EC4533DD8A14E3 : public Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C
|
|
{
|
|
};
|
|
struct Mesh_t6D9C539763A09BC2B12AEAEF36F6DFFC98AE63D4 : public Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C
|
|
{
|
|
};
|
|
struct MulticastDelegate_t : public Delegate_t
|
|
{
|
|
DelegateU5BU5D_tC5AB7E8F745616680F337909D3A8E6C722CDF771* ___delegates;
|
|
};
|
|
struct MulticastDelegate_t_marshaled_pinvoke : public Delegate_t_marshaled_pinvoke
|
|
{
|
|
Delegate_t_marshaled_pinvoke** ___delegates;
|
|
};
|
|
struct MulticastDelegate_t_marshaled_com : public Delegate_t_marshaled_com
|
|
{
|
|
Delegate_t_marshaled_com** ___delegates;
|
|
};
|
|
struct RenderGraph_t73ECE03B3CA3D0D17F1448D64AE020E81592AA1E : public RuntimeObject
|
|
{
|
|
NativePassCompiler_t4E5CE894AF5B8832B5828B22DAB0EA4FAC819E07* ___nativeCompiler;
|
|
bool ___U3CnativeRenderPassesEnabledU3Ek__BackingField;
|
|
RenderGraphResourceRegistry_t87A07027B2175239DB5239913091B9D9FE7244D1* ___m_Resources;
|
|
RenderGraphObjectPool_t2F5488D55D836B54B6E85D2952105BA61AEE6437* ___m_RenderGraphPool;
|
|
RenderGraphBuilders_t899F9362CCFA453C5AF608B820107C9C37860D2A* ___m_builderInstance;
|
|
List_1_t1EFB69EBBF25AD12F3A9E56C62B12F01D63469CD* ___m_RenderPasses;
|
|
List_1_t67B4F73A05A1220FF45824DBE29F391490B25A0C* ___m_RendererLists;
|
|
RenderGraphDebugParams_t36422B33508548E3E56CBAD04521104C2B3E669D* ___m_DebugParameters;
|
|
RenderGraphLogger_t63D96976880E0CD356860F2470D7DAF60B1AD40C* ___m_FrameInformationLogger;
|
|
RenderGraphDefaultResources_tCE331152C84ED1A36CF186CA0092AE10E599E25D* ___m_DefaultResources;
|
|
Dictionary_2_t21E090827BAF9D0D011CB55C02CA666756BF1AE7* ___m_DefaultProfilingSamplers;
|
|
InternalRenderGraphContext_t7197268EBA8C241EB895B070A5E0C71B111D7503* ___m_RenderGraphContext;
|
|
CommandBuffer_tB56007DC84EF56296C325EC32DD12AC1E3DC91F7* ___m_PreviousCommandBuffer;
|
|
List_1U5BU5D_t37294D7C303231F2FD83B3C398AED0937F4F3206* ___m_ImmediateModeResourceList;
|
|
RenderGraphCompilationCache_t25B996EBE41BF50CAE9A81E97B9BBE376AAB55D2* ___m_CompilationCache;
|
|
RenderTargetIdentifierU5BU5DU5BU5D_tDB35F8D017FE3AD8BB35E08E323074D47C5A10BB* ___m_TempMRTArrays;
|
|
Stack_1_t3197E0F5EA36E611B259A88751D31FC2396FE4B6* ___m_CullingStack;
|
|
String_t* ___m_CurrentExecutionName;
|
|
int32_t ___m_ExecutionCount;
|
|
int32_t ___m_CurrentFrameIndex;
|
|
int32_t ___m_CurrentImmediatePassIndex;
|
|
bool ___m_ExecutionExceptionWasRaised;
|
|
bool ___m_RendererListCulling;
|
|
bool ___m_EnableCompilationCaching;
|
|
CompiledGraph_tC8C6B8E2DD962A7BBC9B48ED868E03BE278D0644* ___m_DefaultCompiledGraph;
|
|
CompiledGraph_tC8C6B8E2DD962A7BBC9B48ED868E03BE278D0644* ___m_CurrentCompiledGraph;
|
|
String_t* ___m_CaptureDebugDataForExecution;
|
|
int32_t ___m_RenderGraphState;
|
|
Dictionary_2_t8D403C45B564DB77AE8A32FD6D35E333ABE68793* ___m_DebugData;
|
|
String_t* ___U3CnameU3Ek__BackingField;
|
|
Dictionary_2_t54101FB5AEA0292C95D30CFAB7909873BF26E0B9* ___registeredGlobals;
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ___k_PassNameDebugIgnoreList;
|
|
};
|
|
struct RenderGraphSettings_tC3A05CA5C042545DB58E32841FF2FEA9E260A130 : public RuntimeObject
|
|
{
|
|
int32_t ___m_Version;
|
|
bool ___m_EnableRenderCompatibilityMode;
|
|
};
|
|
struct RenderTargetIdentifier_tA528663AC6EB3911D8E91AA40F7070FA5455442B
|
|
{
|
|
int32_t ___m_Type;
|
|
int32_t ___m_NameID;
|
|
int32_t ___m_InstanceID;
|
|
intptr_t ___m_BufferPointer;
|
|
int32_t ___m_MipLevel;
|
|
int32_t ___m_CubeFace;
|
|
int32_t ___m_DepthSlice;
|
|
};
|
|
struct RenderTextureDescriptor_t69845881CE6437E4E61F92074F2F84079F23FA46
|
|
{
|
|
int32_t ___U3CwidthU3Ek__BackingField;
|
|
int32_t ___U3CheightU3Ek__BackingField;
|
|
int32_t ___U3CmsaaSamplesU3Ek__BackingField;
|
|
int32_t ___U3CvolumeDepthU3Ek__BackingField;
|
|
int32_t ___U3CmipCountU3Ek__BackingField;
|
|
int32_t ____graphicsFormat;
|
|
int32_t ___U3CstencilFormatU3Ek__BackingField;
|
|
int32_t ___U3CdepthStencilFormatU3Ek__BackingField;
|
|
int32_t ___U3CdimensionU3Ek__BackingField;
|
|
int32_t ___U3CshadowSamplingModeU3Ek__BackingField;
|
|
int32_t ___U3CvrUsageU3Ek__BackingField;
|
|
int32_t ____flags;
|
|
int32_t ___U3CmemorylessU3Ek__BackingField;
|
|
};
|
|
struct RendererListHandle_t2DFC72A560B979AE0BAFBABBD8B9AF5DC1FEFEBA
|
|
{
|
|
int32_t ___type;
|
|
bool ___m_IsValid;
|
|
int32_t ___U3ChandleU3Ek__BackingField;
|
|
};
|
|
struct RendererListHandle_t2DFC72A560B979AE0BAFBABBD8B9AF5DC1FEFEBA_marshaled_pinvoke
|
|
{
|
|
int32_t ___type;
|
|
int32_t ___m_IsValid;
|
|
int32_t ___U3ChandleU3Ek__BackingField;
|
|
};
|
|
struct RendererListHandle_t2DFC72A560B979AE0BAFBABBD8B9AF5DC1FEFEBA_marshaled_com
|
|
{
|
|
int32_t ___type;
|
|
int32_t ___m_IsValid;
|
|
int32_t ___U3ChandleU3Ek__BackingField;
|
|
};
|
|
struct ResourceHandle_tD3B1FFBD59EB9C23F0A020351836F834C4BD276C
|
|
{
|
|
uint32_t ___m_Value;
|
|
int32_t ___m_Version;
|
|
int32_t ___m_Type;
|
|
};
|
|
struct ScriptableCullingParameters_tD9539440A4A7DA4C7578CCE16F24466A5DC89899
|
|
{
|
|
LODParameters_t54D2AA0FD8E53BCF51D7A42BC1A72FCA8C78A08A ___m_LODParameters;
|
|
U3Cm_CullingPlanesU3Ee__FixedBuffer_t1E4CBEC7086738067A0EF9A1B2B6B36059DAB955 ___m_CullingPlanes;
|
|
int32_t ___m_CullingPlaneCount;
|
|
uint32_t ___m_CullingMask;
|
|
uint64_t ___m_SceneMask;
|
|
uint64_t ___m_ViewID;
|
|
U3Cm_LayerFarCullDistancesU3Ee__FixedBuffer_tD64F550B6761957A5DA6A33A171BBF4FB4EB667D ___m_LayerFarCullDistances;
|
|
int32_t ___m_LayerCull;
|
|
Matrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6 ___m_CullingMatrix;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___m_Origin;
|
|
float ___m_ShadowDistance;
|
|
float ___m_ShadowNearPlaneOffset;
|
|
int32_t ___m_CullingOptions;
|
|
int32_t ___m_ReflectionProbeSortingCriteria;
|
|
CameraProperties_t9318B43C06A9BAC4CD8BC5EFCC9FE6882D296D57 ___m_CameraProperties;
|
|
float ___m_AccurateOcclusionThreshold;
|
|
int32_t ___m_MaximumPortalCullingJobs;
|
|
Matrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6 ___m_StereoViewMatrix;
|
|
Matrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6 ___m_StereoProjectionMatrix;
|
|
float ___m_StereoSeparationDistance;
|
|
int32_t ___m_maximumVisibleLights;
|
|
bool ___m_ConservativeEnclosingSphere;
|
|
int32_t ___m_NumIterationsEnclosingSphere;
|
|
};
|
|
struct ScriptableCullingParameters_tD9539440A4A7DA4C7578CCE16F24466A5DC89899_marshaled_pinvoke
|
|
{
|
|
LODParameters_t54D2AA0FD8E53BCF51D7A42BC1A72FCA8C78A08A ___m_LODParameters;
|
|
U3Cm_CullingPlanesU3Ee__FixedBuffer_t1E4CBEC7086738067A0EF9A1B2B6B36059DAB955 ___m_CullingPlanes;
|
|
int32_t ___m_CullingPlaneCount;
|
|
uint32_t ___m_CullingMask;
|
|
uint64_t ___m_SceneMask;
|
|
uint64_t ___m_ViewID;
|
|
U3Cm_LayerFarCullDistancesU3Ee__FixedBuffer_tD64F550B6761957A5DA6A33A171BBF4FB4EB667D ___m_LayerFarCullDistances;
|
|
int32_t ___m_LayerCull;
|
|
Matrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6 ___m_CullingMatrix;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___m_Origin;
|
|
float ___m_ShadowDistance;
|
|
float ___m_ShadowNearPlaneOffset;
|
|
int32_t ___m_CullingOptions;
|
|
int32_t ___m_ReflectionProbeSortingCriteria;
|
|
CameraProperties_t9318B43C06A9BAC4CD8BC5EFCC9FE6882D296D57_marshaled_pinvoke ___m_CameraProperties;
|
|
float ___m_AccurateOcclusionThreshold;
|
|
int32_t ___m_MaximumPortalCullingJobs;
|
|
Matrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6 ___m_StereoViewMatrix;
|
|
Matrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6 ___m_StereoProjectionMatrix;
|
|
float ___m_StereoSeparationDistance;
|
|
int32_t ___m_maximumVisibleLights;
|
|
int32_t ___m_ConservativeEnclosingSphere;
|
|
int32_t ___m_NumIterationsEnclosingSphere;
|
|
};
|
|
struct ScriptableCullingParameters_tD9539440A4A7DA4C7578CCE16F24466A5DC89899_marshaled_com
|
|
{
|
|
LODParameters_t54D2AA0FD8E53BCF51D7A42BC1A72FCA8C78A08A ___m_LODParameters;
|
|
U3Cm_CullingPlanesU3Ee__FixedBuffer_t1E4CBEC7086738067A0EF9A1B2B6B36059DAB955 ___m_CullingPlanes;
|
|
int32_t ___m_CullingPlaneCount;
|
|
uint32_t ___m_CullingMask;
|
|
uint64_t ___m_SceneMask;
|
|
uint64_t ___m_ViewID;
|
|
U3Cm_LayerFarCullDistancesU3Ee__FixedBuffer_tD64F550B6761957A5DA6A33A171BBF4FB4EB667D ___m_LayerFarCullDistances;
|
|
int32_t ___m_LayerCull;
|
|
Matrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6 ___m_CullingMatrix;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___m_Origin;
|
|
float ___m_ShadowDistance;
|
|
float ___m_ShadowNearPlaneOffset;
|
|
int32_t ___m_CullingOptions;
|
|
int32_t ___m_ReflectionProbeSortingCriteria;
|
|
CameraProperties_t9318B43C06A9BAC4CD8BC5EFCC9FE6882D296D57_marshaled_com ___m_CameraProperties;
|
|
float ___m_AccurateOcclusionThreshold;
|
|
int32_t ___m_MaximumPortalCullingJobs;
|
|
Matrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6 ___m_StereoViewMatrix;
|
|
Matrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6 ___m_StereoProjectionMatrix;
|
|
float ___m_StereoSeparationDistance;
|
|
int32_t ___m_maximumVisibleLights;
|
|
int32_t ___m_ConservativeEnclosingSphere;
|
|
int32_t ___m_NumIterationsEnclosingSphere;
|
|
};
|
|
struct ScriptableObject_tB3BFDB921A1B1795B38A5417D3B97A89A140436A : public Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C
|
|
{
|
|
};
|
|
struct ScriptableObject_tB3BFDB921A1B1795B38A5417D3B97A89A140436A_marshaled_pinvoke : public Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_marshaled_pinvoke
|
|
{
|
|
};
|
|
struct ScriptableObject_tB3BFDB921A1B1795B38A5417D3B97A89A140436A_marshaled_com : public Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_marshaled_com
|
|
{
|
|
};
|
|
struct Shader_tADC867D36B7876EE22427FAA2CE485105F4EE692 : public Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C
|
|
{
|
|
};
|
|
struct SortingSettings_t506C3B318FDFD3C2B1620E9B951829C631137E72
|
|
{
|
|
Matrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6 ___m_WorldToCameraMatrix;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___m_CameraPosition;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___m_CustomAxis;
|
|
int32_t ___m_Criteria;
|
|
int32_t ___m_DistanceMetric;
|
|
};
|
|
struct SystemException_tCC48D868298F4C0705279823E34B00F4FBDB7295 : public Exception_t
|
|
{
|
|
};
|
|
struct Texture_t791CBB51219779964E0E8A2ED7C1AA5F92A4A700 : public Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C
|
|
{
|
|
};
|
|
struct Type_t : public MemberInfo_t
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B ____impl;
|
|
};
|
|
struct UniversalRenderingData_t045D13A1E051DF623B170223B7CBF1161DDA94E6 : public ContextItem_tFC5ECB349F0410923AE6BC2A9CAACA3589B51086
|
|
{
|
|
CommandBuffer_tB56007DC84EF56296C325EC32DD12AC1E3DC91F7* ___m_CommandBuffer;
|
|
CullingResults_tD6B7EF20B68D47DFF3A99EB2EA73F47F1D460267 ___cullResults;
|
|
bool ___supportsDynamicBatching;
|
|
int32_t ___perObjectData;
|
|
int32_t ___U3CrenderingModeU3Ek__BackingField;
|
|
LayerMask_t97CB6BDADEDC3D6423C7BCFEA7F86DA2EC6241DB ___U3CprepassLayerMaskU3Ek__BackingField;
|
|
LayerMask_t97CB6BDADEDC3D6423C7BCFEA7F86DA2EC6241DB ___U3CopaqueLayerMaskU3Ek__BackingField;
|
|
LayerMask_t97CB6BDADEDC3D6423C7BCFEA7F86DA2EC6241DB ___U3CtransparentLayerMaskU3Ek__BackingField;
|
|
bool ___U3CstencilLodCrossFadeEnabledU3Ek__BackingField;
|
|
};
|
|
struct Settings_t3BEFDFF2C1A3D3A215DAF7B76E735B1BFB946C92
|
|
{
|
|
int32_t ___m_Quality;
|
|
float ___m_FrameInfluence;
|
|
float ___m_JitterScale;
|
|
float ___m_MipBias;
|
|
float ___m_VarianceClampScale;
|
|
float ___m_ContrastAdaptiveSharpening;
|
|
int32_t ___resetHistoryFrames;
|
|
int32_t ___jitterFrameCountOffset;
|
|
};
|
|
struct BaseRenderFunc_2_t2AE7A68115EFC92E8E3068C0057F850871744886 : public MulticastDelegate_t
|
|
{
|
|
};
|
|
struct BaseRenderFunc_2_t8B6F86F4EF8472D6B5D84629A6E35307F19167AE : public MulticastDelegate_t
|
|
{
|
|
};
|
|
struct BaseRenderFunc_2_tEE48E9E21762BFE07AE97EF2E3E0E79793067606 : public MulticastDelegate_t
|
|
{
|
|
};
|
|
struct BaseRenderFunc_2_tC164CC802D091B68B6A0497F4C6AEF80D564AB57 : public MulticastDelegate_t
|
|
{
|
|
};
|
|
struct BaseRenderFunc_2_t762A186FC860B473359C6CA1DE69EDCFB3985B45 : public MulticastDelegate_t
|
|
{
|
|
};
|
|
struct BaseRenderFunc_2_tECA37CC68AF2BD6C31F2DFF58EF746DC7B2C5AFE : public MulticastDelegate_t
|
|
{
|
|
};
|
|
struct BaseRenderFunc_2_tF8B0FC77C310265D6F0EA096E14C24E57D0FEAD6 : public MulticastDelegate_t
|
|
{
|
|
};
|
|
struct BaseRenderFunc_2_t592BAE028800F18A071D869FCB982B997F5E13A2 : public MulticastDelegate_t
|
|
{
|
|
};
|
|
struct BaseRenderFunc_2_t0F078AB23E7CF63F4670F4E80CFDE4CD4BEB0F72 : public MulticastDelegate_t
|
|
{
|
|
};
|
|
struct BaseRenderFunc_2_t55E594CC6D951D462AFB9867489BE9665166DC90 : public MulticastDelegate_t
|
|
{
|
|
};
|
|
struct Comparison_1_t1D70AD681199BAE9A46BB890478D827A9BA04A36 : public MulticastDelegate_t
|
|
{
|
|
};
|
|
struct Enumerator_t7767C5CF41D19BF6C7326C9870C530F1AD3CAC30
|
|
{
|
|
NativeArray_1_tA833EB7E3E1C9AF82C37976AD964B8D4BAC38B2C ___m_Array;
|
|
int32_t ___m_Index;
|
|
int32_t ___value;
|
|
};
|
|
struct Nullable_1_tEB29AC5A73D1D1AF8DE0D726A51B415DC226387C
|
|
{
|
|
bool ___hasValue;
|
|
NativeArray_1_t0AB49EE6A37F6BC668C15EDFBE9BE92A22B2F0DB ___value;
|
|
};
|
|
struct Nullable_1_t791F8A662AA857374FA6AFEEEA22B1F1E103327B
|
|
{
|
|
bool ___hasValue;
|
|
NativeArray_1_t5576C5C8F17BB3E1BA11BBA3EC50A55FC1246445 ___value;
|
|
};
|
|
struct Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07 : public MulticastDelegate_t
|
|
{
|
|
};
|
|
struct ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263 : public SystemException_tCC48D868298F4C0705279823E34B00F4FBDB7295
|
|
{
|
|
String_t* ____paramName;
|
|
};
|
|
struct AsyncCallback_t7FEF460CBDCFB9C5FA2EF776984778B9A4145F4C : public MulticastDelegate_t
|
|
{
|
|
};
|
|
struct AttachmentDescriptor_tBAC9B26B50BB0838C5C0CC22BB296F9DFF41276E
|
|
{
|
|
int32_t ___m_LoadAction;
|
|
int32_t ___m_StoreAction;
|
|
int32_t ___m_Format;
|
|
RenderTargetIdentifier_tA528663AC6EB3911D8E91AA40F7070FA5455442B ___m_LoadStoreTarget;
|
|
RenderTargetIdentifier_tA528663AC6EB3911D8E91AA40F7070FA5455442B ___m_ResolveTarget;
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F ___m_ClearColor;
|
|
float ___m_ClearDepth;
|
|
uint32_t ___m_ClearStencil;
|
|
};
|
|
struct Behaviour_t01970CFBBA658497AE30F311C447DB0440BAB7FA : public Component_t39FBE53E5EFCF4409111FB22C15FF73717632EC3
|
|
{
|
|
};
|
|
struct DecalCachedChunk_tDEF493C8A3A1F442BDEC1794BDDA0996B32DCACE : public DecalChunk_tD2C5831DD2A6E97A7A738C88C5922305BA0513CA
|
|
{
|
|
MaterialPropertyBlock_t2308669579033A857EFE6E4831909F638B27411D* ___propertyBlock;
|
|
int32_t ___passIndexDBuffer;
|
|
int32_t ___passIndexEmissive;
|
|
int32_t ___passIndexScreenSpace;
|
|
int32_t ___passIndexGBuffer;
|
|
int32_t ___drawOrder;
|
|
bool ___isCreated;
|
|
NativeArray_1_t63326FF687E26631308829A9CDB0C51D523D4E9A ___decalToWorlds;
|
|
NativeArray_1_t63326FF687E26631308829A9CDB0C51D523D4E9A ___normalToWorlds;
|
|
NativeArray_1_t63326FF687E26631308829A9CDB0C51D523D4E9A ___sizeOffsets;
|
|
NativeArray_1_t46D43179C2B71BAB34958401E08B5C5DA4488E9E ___drawDistances;
|
|
NativeArray_1_t46D43179C2B71BAB34958401E08B5C5DA4488E9E ___angleFades;
|
|
NativeArray_1_tB5EA234C6ABA1F626A4BEF4053D06783E15A3881 ___uvScaleBias;
|
|
NativeArray_1_tA833EB7E3E1C9AF82C37976AD964B8D4BAC38B2C ___layerMasks;
|
|
NativeArray_1_t07975297AD7F7512193094A7C0703BA872EF7A7B ___sceneLayerMasks;
|
|
NativeArray_1_t3848EE4B6647317212A754634DE6DBC90B99FBEF ___fadeFactors;
|
|
NativeArray_1_t3D8121943984EEED49DC98DED560DCC6638111B6 ___boundingSpheres;
|
|
NativeArray_1_tB64676789FBC7DC3DA7BB2D7765883A285CA6065 ___scaleModes;
|
|
NativeArray_1_t453E3DEA4CC9F1056F24E417C3308C35174BC184 ___renderingLayerMasks;
|
|
NativeArray_1_tEDE9DAD2CAE5954286BC0EF394A57ED0AC69FEE6 ___positions;
|
|
NativeArray_1_tE645174F30913B665DE45D85525F90B1F64E054A ___rotation;
|
|
NativeArray_1_tEDE9DAD2CAE5954286BC0EF394A57ED0AC69FEE6 ___scales;
|
|
NativeArray_1_t107C57D0357BCF9956A60495CD8FAADDF1D26AFB ___dirty;
|
|
BoundingSphereU5BU5D_tD7485B1D5D5A0EE26537B093423FC3AC149BEA47* ___boundingSphereArray;
|
|
};
|
|
struct DecalCulledChunk_tFD4472F0ADDD173C7B13E8B0529983E745F12ED3 : public DecalChunk_tD2C5831DD2A6E97A7A738C88C5922305BA0513CA
|
|
{
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___cameraPosition;
|
|
uint64_t ___sceneCullingMask;
|
|
int32_t ___cullingMask;
|
|
CullingGroup_t0732D3CC044BAE2BE39748CBF5D96DDB6DBF62E7* ___cullingGroups;
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ___visibleDecalIndexArray;
|
|
NativeArray_1_tA833EB7E3E1C9AF82C37976AD964B8D4BAC38B2C ___visibleDecalIndices;
|
|
int32_t ___visibleDecalCount;
|
|
};
|
|
struct DecalDrawCallChunk_tBD0491A1B0B7D19DF01A5C9EDE0A40CBEDBF7A3A : public DecalChunk_tD2C5831DD2A6E97A7A738C88C5922305BA0513CA
|
|
{
|
|
NativeArray_1_t63326FF687E26631308829A9CDB0C51D523D4E9A ___decalToWorlds;
|
|
NativeArray_1_t63326FF687E26631308829A9CDB0C51D523D4E9A ___normalToDecals;
|
|
NativeArray_1_t3848EE4B6647317212A754634DE6DBC90B99FBEF ___renderingLayerMasks;
|
|
NativeArray_1_t197AED29D4CF7A6BC8C6C69B7BABD82BDC8475E2 ___subCalls;
|
|
NativeArray_1_tA833EB7E3E1C9AF82C37976AD964B8D4BAC38B2C ___subCallCounts;
|
|
};
|
|
struct DecalEntityChunk_t2CDCBFA35711DA074631D26572EF9755A3AD740C : public DecalChunk_tD2C5831DD2A6E97A7A738C88C5922305BA0513CA
|
|
{
|
|
Material_t18053F08F347D0DCA5E1140EC7EC4533DD8A14E3* ___material;
|
|
NativeArray_1_t83F02282C33BAD818D67110F7760483208880311 ___decalEntities;
|
|
DecalProjectorU5BU5D_t4DB89E5586C0FD4200DA223C0ADAFD3D66BF21F3* ___decalProjectors;
|
|
TransformAccessArray_t104EDE5BB3DC7E294332BB1D2AA508CAEDEE83D4 ___transformAccessArray;
|
|
};
|
|
struct DeferredLights_t8A3C2AC9C4AF92CF3411F722D8A094EA07DA14AC : public RuntimeObject
|
|
{
|
|
int32_t ___U3CRenderingLayerMaskSizeU3Ek__BackingField;
|
|
bool ___U3CUseDecalLayersU3Ek__BackingField;
|
|
bool ___U3CUseFramebufferFetchU3Ek__BackingField;
|
|
bool ___U3CHasDepthPrepassU3Ek__BackingField;
|
|
bool ___U3CHasNormalPrepassU3Ek__BackingField;
|
|
bool ___U3CHasRenderingLayerPrepassU3Ek__BackingField;
|
|
bool ___U3CAccurateGbufferNormalsU3Ek__BackingField;
|
|
int32_t ___U3CMixedLightingSetupU3Ek__BackingField;
|
|
bool ___U3CUseJobSystemU3Ek__BackingField;
|
|
int32_t ___U3CRenderWidthU3Ek__BackingField;
|
|
int32_t ___U3CRenderHeightU3Ek__BackingField;
|
|
RTHandleU5BU5D_tE4B403B060D159B839BF74E8B59F8DCD52CF97DF* ___U3CGbufferAttachmentsU3Ek__BackingField;
|
|
RTHandleU5BU5D_tE4B403B060D159B839BF74E8B59F8DCD52CF97DF* ___GbufferRTHandles;
|
|
TextureHandleU5BU5D_t544FFA6F5A0E1E5F24EB3C5E5F8547CCE9498BD7* ___U3CGbufferTextureHandlesU3Ek__BackingField;
|
|
RTHandleU5BU5D_tE4B403B060D159B839BF74E8B59F8DCD52CF97DF* ___U3CDeferredInputAttachmentsU3Ek__BackingField;
|
|
BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* ___U3CDeferredInputIsTransientU3Ek__BackingField;
|
|
RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B* ___U3CDepthAttachmentU3Ek__BackingField;
|
|
RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B* ___U3CDepthCopyTextureU3Ek__BackingField;
|
|
GraphicsFormatU5BU5D_tF6A3D90C430FA3F548B77E5D58D25D71F154E6C5* ___U3CGbufferFormatsU3Ek__BackingField;
|
|
RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B* ___U3CDepthAttachmentHandleU3Ek__BackingField;
|
|
NativeArray_1_t275C00CC374DEA66C69B3BB3992116F315A8E934 ___m_stencilVisLights;
|
|
NativeArray_1_t275C00CC374DEA66C69B3BB3992116F315A8E934 ___m_stencilVisLightOffsets;
|
|
AdditionalLightsShadowCasterPass_t5E00A3C851AB73A44B7577458AD868AF8F4FE004* ___m_AdditionalLightsShadowCasterPass;
|
|
Mesh_t6D9C539763A09BC2B12AEAEF36F6DFFC98AE63D4* ___m_SphereMesh;
|
|
Mesh_t6D9C539763A09BC2B12AEAEF36F6DFFC98AE63D4* ___m_HemisphereMesh;
|
|
Mesh_t6D9C539763A09BC2B12AEAEF36F6DFFC98AE63D4* ___m_FullscreenMesh;
|
|
Material_t18053F08F347D0DCA5E1140EC7EC4533DD8A14E3* ___m_StencilDeferredMaterial;
|
|
Material_t18053F08F347D0DCA5E1140EC7EC4533DD8A14E3* ___m_ClusterDeferredMaterial;
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ___m_StencilDeferredPasses;
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ___m_ClusterDeferredPasses;
|
|
Matrix4x4U5BU5D_t9C51C93425FABC022B506D2DB3A5FA70F9752C4D* ___m_ScreenToWorld;
|
|
ProfilingSampler_t420D4672EDB44E0EF980B31ADFD9E5747200FECE* ___m_ProfilingSamplerDeferredShadingPass;
|
|
ProfilingSampler_t420D4672EDB44E0EF980B31ADFD9E5747200FECE* ___m_ProfilingSamplerDeferredStencilPass;
|
|
ProfilingSampler_t420D4672EDB44E0EF980B31ADFD9E5747200FECE* ___m_ProfilingSamplerDeferredFogPass;
|
|
LightCookieManager_t47C455537F06ECCE295272AF0BE14CDF1FB54C2B* ___m_LightCookieManager;
|
|
bool ___m_UseDeferredPlus;
|
|
};
|
|
struct DrawingSettings_t3B64EB029DB6F94A1F2A9B2D19D2969AE361BB49
|
|
{
|
|
SortingSettings_t506C3B318FDFD3C2B1620E9B951829C631137E72 ___m_SortingSettings;
|
|
U3CshaderPassNamesU3Ee__FixedBuffer_t5EDC823777BDDC9D50E55FF3779FBC1B3820126D ___shaderPassNames;
|
|
int32_t ___m_PerObjectData;
|
|
int32_t ___m_Flags;
|
|
int32_t ___m_OverrideShaderID;
|
|
int32_t ___m_OverrideShaderPassIndex;
|
|
int32_t ___m_OverrideMaterialInstanceId;
|
|
int32_t ___m_OverrideMaterialPassIndex;
|
|
int32_t ___m_fallbackMaterialInstanceId;
|
|
int32_t ___m_MainLightIndex;
|
|
int32_t ___m_UseSrpBatcher;
|
|
int32_t ___m_LodCrossFadeStencilMask;
|
|
};
|
|
struct InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB : public SystemException_tCC48D868298F4C0705279823E34B00F4FBDB7295
|
|
{
|
|
};
|
|
struct NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A : public SystemException_tCC48D868298F4C0705279823E34B00F4FBDB7295
|
|
{
|
|
};
|
|
struct RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B : public RuntimeObject
|
|
{
|
|
RTHandleSystem_tAE496B31B56A77B4896E34576C961C3CA073998F* ___m_Owner;
|
|
RenderTexture_tBA90C4C3AD9EECCFDDCC632D97C29FAB80D60D27* ___m_RT;
|
|
Texture_t791CBB51219779964E0E8A2ED7C1AA5F92A4A700* ___m_ExternalTexture;
|
|
RenderTargetIdentifier_tA528663AC6EB3911D8E91AA40F7070FA5455442B ___m_NameID;
|
|
bool ___m_EnableMSAA;
|
|
bool ___m_EnableRandomWrite;
|
|
bool ___m_EnableHWDynamicScale;
|
|
bool ___m_RTHasOwnership;
|
|
String_t* ___m_Name;
|
|
bool ___m_UseCustomHandleScales;
|
|
RTHandleProperties_tBCB3E1EFE8B366995704C1322B9C443877580CD6 ___m_CustomHandleProperties;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___U3CscaleFactorU3Ek__BackingField;
|
|
ScaleFunc_t423F661DAD5C7A18F509C8F1F62C9D6AEA9A9791* ___scaleFunc;
|
|
bool ___U3CuseScalingU3Ek__BackingField;
|
|
Vector2Int_t69B2886EBAB732D9B880565E18E7568F3DE0CE6A ___U3CreferenceSizeU3Ek__BackingField;
|
|
};
|
|
struct RenderPipelineAsset_t5F9BF815BF931E1314B184E7F9070FB649C7054E : public ScriptableObject_tB3BFDB921A1B1795B38A5417D3B97A89A140436A
|
|
{
|
|
};
|
|
struct RenderTexture_tBA90C4C3AD9EECCFDDCC632D97C29FAB80D60D27 : public Texture_t791CBB51219779964E0E8A2ED7C1AA5F92A4A700
|
|
{
|
|
};
|
|
struct ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0 : public RuntimeObject
|
|
{
|
|
int32_t ___U3CrenderPassEventU3Ek__BackingField;
|
|
RenderBufferStoreActionU5BU5D_tFEA8F5DD460573EA9F35FBEC5727D1804C5DCBF5* ___m_ColorStoreActions;
|
|
int32_t ___m_DepthStoreAction;
|
|
bool ___U3CrequiresIntermediateTextureU3Ek__BackingField;
|
|
BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* ___m_OverriddenColorStoreActions;
|
|
bool ___m_OverriddenDepthStoreAction;
|
|
ProfilingSampler_t420D4672EDB44E0EF980B31ADFD9E5747200FECE* ___m_ProfingSampler;
|
|
String_t* ___m_PassName;
|
|
RenderGraphSettings_tC3A05CA5C042545DB58E32841FF2FEA9E260A130* ___m_RenderGraphSettings;
|
|
bool ___U3CoverrideCameraTargetU3Ek__BackingField;
|
|
bool ___U3CisBlitRenderPassU3Ek__BackingField;
|
|
bool ___U3CuseNativeRenderPassU3Ek__BackingField;
|
|
int32_t ___U3CrenderPassQueueIndexU3Ek__BackingField;
|
|
NativeArray_1_tA833EB7E3E1C9AF82C37976AD964B8D4BAC38B2C ___m_ColorAttachmentIndices;
|
|
NativeArray_1_tA833EB7E3E1C9AF82C37976AD964B8D4BAC38B2C ___m_InputAttachmentIndices;
|
|
GraphicsFormatU5BU5D_tF6A3D90C430FA3F548B77E5D58D25D71F154E6C5* ___U3CrenderTargetFormatU3Ek__BackingField;
|
|
RTHandleU5BU5D_tE4B403B060D159B839BF74E8B59F8DCD52CF97DF* ___m_ColorAttachments;
|
|
RTHandleU5BU5D_tE4B403B060D159B839BF74E8B59F8DCD52CF97DF* ___m_InputAttachments;
|
|
BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* ___m_InputAttachmentIsTransient;
|
|
RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B* ___m_DepthAttachment;
|
|
int32_t ___m_Input;
|
|
int32_t ___m_ClearFlag;
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F ___m_ClearColor;
|
|
};
|
|
struct ScriptableRendererData_t9005CE645D4881FA4431E52EDC7678203632CAA7 : public ScriptableObject_tB3BFDB921A1B1795B38A5417D3B97A89A140436A
|
|
{
|
|
DebugShaderResources_tDE399BFF5E1E9403CD4793CD8C8A51796C682B8B* ___debugShaders;
|
|
ProbeVolumeResources_t30A6677110700C97538A9A5E99ABEE1F847C4CE7* ___probeVolumeResources;
|
|
bool ___U3CisInvalidatedU3Ek__BackingField;
|
|
List_1_t2121653FB628940E808D105AD2C17E0F20AFB3A6* ___m_RendererFeatures;
|
|
List_1_tF9D88C946600C782EE786A252258C0AA97BD019A* ___m_RendererFeatureMap;
|
|
bool ___m_UseNativeRenderPass;
|
|
bool ___m_StripShadowsOffVariants;
|
|
bool ___m_StripAdditionalLightOffVariants;
|
|
};
|
|
struct ScriptableRendererFeature_tF2ED08AD2498105378D4DAB0386A0F8A144EF4C6 : public ScriptableObject_tB3BFDB921A1B1795B38A5417D3B97A89A140436A
|
|
{
|
|
bool ___m_Active;
|
|
};
|
|
struct TextureHandle_t680ABA3F8B50859351BA5DD66220084F87F37388
|
|
{
|
|
ResourceHandle_tD3B1FFBD59EB9C23F0A020351836F834C4BD276C ___handle;
|
|
bool ___builtin;
|
|
};
|
|
struct TextureHandle_t680ABA3F8B50859351BA5DD66220084F87F37388_marshaled_pinvoke
|
|
{
|
|
ResourceHandle_tD3B1FFBD59EB9C23F0A020351836F834C4BD276C ___handle;
|
|
int32_t ___builtin;
|
|
};
|
|
struct TextureHandle_t680ABA3F8B50859351BA5DD66220084F87F37388_marshaled_com
|
|
{
|
|
ResourceHandle_tD3B1FFBD59EB9C23F0A020351836F834C4BD276C ___handle;
|
|
int32_t ___builtin;
|
|
};
|
|
struct Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1 : public Component_t39FBE53E5EFCF4409111FB22C15FF73717632EC3
|
|
{
|
|
};
|
|
struct UniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7 : public ContextItem_tFC5ECB349F0410923AE6BC2A9CAACA3589B51086
|
|
{
|
|
Matrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6 ___m_ViewMatrix;
|
|
Matrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6 ___m_ProjectionMatrix;
|
|
Matrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6 ___m_JitterMatrix;
|
|
bool ___m_CachedRenderIntoTextureXR;
|
|
bool ___m_InitBuiltinXRConstants;
|
|
Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184* ___camera;
|
|
UniversalCameraHistory_t15D275DAE9AD5B608CE533D0FCE0884F07BB1E80* ___m_HistoryManager;
|
|
int32_t ___renderType;
|
|
RenderTexture_tBA90C4C3AD9EECCFDDCC632D97C29FAB80D60D27* ___targetTexture;
|
|
RenderTextureDescriptor_t69845881CE6437E4E61F92074F2F84079F23FA46 ___cameraTargetDescriptor;
|
|
Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D ___pixelRect;
|
|
bool ___useScreenCoordOverride;
|
|
Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3 ___screenSizeOverride;
|
|
Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3 ___screenCoordScaleBias;
|
|
int32_t ___pixelWidth;
|
|
int32_t ___pixelHeight;
|
|
float ___aspectRatio;
|
|
float ___renderScale;
|
|
int32_t ___imageScalingMode;
|
|
int32_t ___upscalingFilter;
|
|
bool ___fsrOverrideSharpness;
|
|
float ___fsrSharpness;
|
|
int32_t ___hdrColorBufferPrecision;
|
|
bool ___clearDepth;
|
|
int32_t ___cameraType;
|
|
bool ___isDefaultViewport;
|
|
bool ___isHdrEnabled;
|
|
bool ___allowHDROutput;
|
|
bool ___isAlphaOutputEnabled;
|
|
bool ___requiresDepthTexture;
|
|
bool ___requiresOpaqueTexture;
|
|
bool ___postProcessingRequiresDepthTexture;
|
|
bool ___xrRendering;
|
|
bool ___useGPUOcclusionCulling;
|
|
bool ___stackLastCameraOutputToHDR;
|
|
int32_t ___defaultOpaqueSortFlags;
|
|
XRPass_tFC4577E97B88E0EAAAB2EB387AB3A92E9EB9C6DF* ___U3CxrU3Ek__BackingField;
|
|
float ___maxShadowDistance;
|
|
bool ___postProcessEnabled;
|
|
bool ___stackAnyPostProcessingEnabled;
|
|
RuntimeObject* ___captureActions;
|
|
LayerMask_t97CB6BDADEDC3D6423C7BCFEA7F86DA2EC6241DB ___volumeLayerMask;
|
|
Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1* ___volumeTrigger;
|
|
bool ___isStopNaNEnabled;
|
|
bool ___isDitheringEnabled;
|
|
int32_t ___antialiasing;
|
|
int32_t ___antialiasingQuality;
|
|
ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892* ___renderer;
|
|
bool ___resolveFinalTarget;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___worldSpaceCameraPos;
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F ___backgroundColor;
|
|
TaaHistory_tA203D496A5F23B4717184375DEAA12944359B85D* ___taaHistory;
|
|
StpHistory_t9A3E110F0E97FE93E44838B51A330C2111F96081* ___stpHistory;
|
|
Settings_t3BEFDFF2C1A3D3A215DAF7B76E735B1BFB946C92 ___taaSettings;
|
|
Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184* ___baseCamera;
|
|
bool ___isLastBaseCamera;
|
|
};
|
|
struct UniversalLightData_tCFFFAB4033CD97BE9F339F0C90BB7F98C06FFBA2 : public ContextItem_tFC5ECB349F0410923AE6BC2A9CAACA3589B51086
|
|
{
|
|
int32_t ___mainLightIndex;
|
|
int32_t ___additionalLightsCount;
|
|
int32_t ___maxPerObjectAdditionalLightsCount;
|
|
NativeArray_1_t71485A1E60B31CCAD3E525C907CF172E8B804468 ___visibleLights;
|
|
bool ___shadeAdditionalLightsPerVertex;
|
|
bool ___supportsMixedLighting;
|
|
bool ___reflectionProbeBoxProjection;
|
|
bool ___reflectionProbeBlending;
|
|
bool ___reflectionProbeAtlas;
|
|
bool ___supportsLightLayers;
|
|
bool ___supportsAdditionalLights;
|
|
};
|
|
struct XRPass_tFC4577E97B88E0EAAAB2EB387AB3A92E9EB9C6DF : public RuntimeObject
|
|
{
|
|
List_1_t7B0B015A57215073C45C813320AF5F3ECF8149F7* ___m_Views;
|
|
XROcclusionMesh_tA0B52AD16F48002574AF9C1F274264C79ECB028D* ___m_OcclusionMesh;
|
|
XRVisibleMesh_tD685DD0F7C47F5270F8ABB3E7366972918E2B677* ___m_VisibleMesh;
|
|
bool ___U3CcopyDepthU3Ek__BackingField;
|
|
bool ___U3ChasMotionVectorPassU3Ek__BackingField;
|
|
bool ___U3CspaceWarpRightHandedNDCU3Ek__BackingField;
|
|
int32_t ___U3CmultipassIdU3Ek__BackingField;
|
|
int32_t ___U3CcullingPassIdU3Ek__BackingField;
|
|
int32_t ___U3CrenderTargetScaledWidthU3Ek__BackingField;
|
|
int32_t ___U3CrenderTargetScaledHeightU3Ek__BackingField;
|
|
RenderTargetIdentifier_tA528663AC6EB3911D8E91AA40F7070FA5455442B ___U3CrenderTargetU3Ek__BackingField;
|
|
RenderTextureDescriptor_t69845881CE6437E4E61F92074F2F84079F23FA46 ___U3CrenderTargetDescU3Ek__BackingField;
|
|
RenderTargetIdentifier_tA528663AC6EB3911D8E91AA40F7070FA5455442B ___U3CmotionVectorRenderTargetU3Ek__BackingField;
|
|
RenderTextureDescriptor_t69845881CE6437E4E61F92074F2F84079F23FA46 ___U3CmotionVectorRenderTargetDescU3Ek__BackingField;
|
|
ScriptableCullingParameters_tD9539440A4A7DA4C7578CCE16F24466A5DC89899 ___U3CcullingParamsU3Ek__BackingField;
|
|
intptr_t ___U3CfoveatedRenderingInfoU3Ek__BackingField;
|
|
float ___U3CocclusionMeshScaleU3Ek__BackingField;
|
|
};
|
|
struct PassData_t077B24D5F09604372E173ECFC9A3A66F30F8AD4C : public RuntimeObject
|
|
{
|
|
DecalDrawDBufferSystem_t0BB9CCF4CC9111D00DDDFA8F485DB8B7C5E7DE8C* ___drawSystem;
|
|
DBufferSettings_t7FD2B8B4B31CE9BE37AAE121B74FDEFE9BE9F17A* ___settings;
|
|
bool ___decalLayers;
|
|
RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B* ___dBufferDepth;
|
|
RTHandleU5BU5D_tE4B403B060D159B839BF74E8B59F8DCD52CF97DF* ___dBufferColorHandles;
|
|
RendererListHandle_t2DFC72A560B979AE0BAFBABBD8B9AF5DC1FEFEBA ___rendererList;
|
|
};
|
|
struct DrawCallJob_t3EA2ABC822AD5DF50675A5B437DAB927DB95215D
|
|
{
|
|
NativeArray_1_t63326FF687E26631308829A9CDB0C51D523D4E9A ___decalToWorlds;
|
|
NativeArray_1_t63326FF687E26631308829A9CDB0C51D523D4E9A ___normalToWorlds;
|
|
NativeArray_1_t63326FF687E26631308829A9CDB0C51D523D4E9A ___sizeOffsets;
|
|
NativeArray_1_t46D43179C2B71BAB34958401E08B5C5DA4488E9E ___drawDistances;
|
|
NativeArray_1_t46D43179C2B71BAB34958401E08B5C5DA4488E9E ___angleFades;
|
|
NativeArray_1_tB5EA234C6ABA1F626A4BEF4053D06783E15A3881 ___uvScaleBiases;
|
|
NativeArray_1_tA833EB7E3E1C9AF82C37976AD964B8D4BAC38B2C ___layerMasks;
|
|
NativeArray_1_t07975297AD7F7512193094A7C0703BA872EF7A7B ___sceneLayerMasks;
|
|
NativeArray_1_t3848EE4B6647317212A754634DE6DBC90B99FBEF ___fadeFactors;
|
|
NativeArray_1_t3D8121943984EEED49DC98DED560DCC6638111B6 ___boundingSpheres;
|
|
NativeArray_1_t453E3DEA4CC9F1056F24E417C3308C35174BC184 ___renderingLayerMasks;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___cameraPosition;
|
|
uint64_t ___sceneCullingMask;
|
|
int32_t ___cullingMask;
|
|
NativeArray_1_tA833EB7E3E1C9AF82C37976AD964B8D4BAC38B2C ___visibleDecalIndices;
|
|
int32_t ___visibleDecalCount;
|
|
float ___maxDrawDistance;
|
|
NativeArray_1_t63326FF687E26631308829A9CDB0C51D523D4E9A ___decalToWorldsDraw;
|
|
NativeArray_1_t63326FF687E26631308829A9CDB0C51D523D4E9A ___normalToDecalsDraw;
|
|
NativeArray_1_t3848EE4B6647317212A754634DE6DBC90B99FBEF ___renderingLayerMasksDraw;
|
|
NativeArray_1_t197AED29D4CF7A6BC8C6C69B7BABD82BDC8475E2 ___subCalls;
|
|
NativeArray_1_tA833EB7E3E1C9AF82C37976AD964B8D4BAC38B2C ___subCallCount;
|
|
};
|
|
struct PassData_t3894D6AEA48D65EEDB1032B9371FF5B63D4302A6 : public RuntimeObject
|
|
{
|
|
DecalDrawFowardEmissiveSystem_t3A7F6E2F427E996F5E6FF6073ED0DD97921FD378* ___drawSystem;
|
|
RendererListHandle_t2DFC72A560B979AE0BAFBABBD8B9AF5DC1FEFEBA ___rendererList;
|
|
};
|
|
struct PassData_t4396B080377CC62E6B81D42D8103F58BF0CC9451 : public RuntimeObject
|
|
{
|
|
DecalDrawGBufferSystem_t4520A37A2689CDF89893A02977EEC7F0701F796D* ___drawSystem;
|
|
DecalScreenSpaceSettings_tD94FE1202A789534D40E4DD61AD7DE9E55F1ADD3* ___settings;
|
|
bool ___decalLayers;
|
|
UniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7* ___cameraData;
|
|
RendererListHandle_t2DFC72A560B979AE0BAFBABBD8B9AF5DC1FEFEBA ___rendererList;
|
|
};
|
|
struct PassData_t0F7D1F1E94925DC481C5764B997BEC982471D969 : public RuntimeObject
|
|
{
|
|
RendererListHandle_t2DFC72A560B979AE0BAFBABBD8B9AF5DC1FEFEBA ___rendererList;
|
|
};
|
|
struct DecalProjectorAction_tDFCBDEE542B3D640BD121E036275AA51A003CF5C : public MulticastDelegate_t
|
|
{
|
|
};
|
|
struct UpdateTransformsJob_t7CF957169E8C6560084F48A51BC15A447F3002C7
|
|
{
|
|
NativeArray_1_tEDE9DAD2CAE5954286BC0EF394A57ED0AC69FEE6 ___positions;
|
|
NativeArray_1_tE645174F30913B665DE45D85525F90B1F64E054A ___rotations;
|
|
NativeArray_1_tEDE9DAD2CAE5954286BC0EF394A57ED0AC69FEE6 ___scales;
|
|
NativeArray_1_t107C57D0357BCF9956A60495CD8FAADDF1D26AFB ___dirty;
|
|
NativeArray_1_tB64676789FBC7DC3DA7BB2D7765883A285CA6065 ___scaleModes;
|
|
NativeArray_1_t63326FF687E26631308829A9CDB0C51D523D4E9A ___sizeOffsets;
|
|
NativeArray_1_t63326FF687E26631308829A9CDB0C51D523D4E9A ___decalToWorlds;
|
|
NativeArray_1_t63326FF687E26631308829A9CDB0C51D523D4E9A ___normalToWorlds;
|
|
NativeArray_1_t3D8121943984EEED49DC98DED560DCC6638111B6 ___boundingSpheres;
|
|
float ___minDistance;
|
|
};
|
|
struct RenderBlocks_t59A6A04E57D947104DA8D449CCB1D406F19DB072
|
|
{
|
|
NativeArray_1_tD47F54AAF0D318CDC9CC3C4AF7BE99B72697486A ___m_BlockEventLimits;
|
|
NativeArray_1_tA833EB7E3E1C9AF82C37976AD964B8D4BAC38B2C ___m_BlockRanges;
|
|
NativeArray_1_tA833EB7E3E1C9AF82C37976AD964B8D4BAC38B2C ___m_BlockRangeLengths;
|
|
};
|
|
struct RenderPipelineAsset_1_t2873A88178504E8793D044D4422CB05E32AEB121 : public RenderPipelineAsset_t5F9BF815BF931E1314B184E7F9070FB649C7054E
|
|
{
|
|
};
|
|
struct ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129 : public ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263
|
|
{
|
|
};
|
|
struct Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184 : public Behaviour_t01970CFBBA658497AE30F311C447DB0440BAB7FA
|
|
{
|
|
uint32_t ___m_NonSerializedVersion;
|
|
};
|
|
struct DecalForwardEmissivePass_t9C18488945B9FD7A0B3A20FBACC5DEAD39D9C5B9 : public ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0
|
|
{
|
|
FilteringSettings_t75860B12A7BCF9A0E2F13CB2C2E5DCD9E1EEAD9F ___m_FilteringSettings;
|
|
List_1_t4673975A297A80D4D4A65EB5A2BE3B6BD1EED9AF* ___m_ShaderTagIdList;
|
|
DecalDrawFowardEmissiveSystem_t3A7F6E2F427E996F5E6FF6073ED0DD97921FD378* ___m_DrawSystem;
|
|
PassData_t3894D6AEA48D65EEDB1032B9371FF5B63D4302A6* ___m_PassData;
|
|
};
|
|
struct DecalGBufferRenderPass_tF9AE5E097AC2B82F540580ECA6E502C1B885ECA4 : public ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0
|
|
{
|
|
FilteringSettings_t75860B12A7BCF9A0E2F13CB2C2E5DCD9E1EEAD9F ___m_FilteringSettings;
|
|
List_1_t4673975A297A80D4D4A65EB5A2BE3B6BD1EED9AF* ___m_ShaderTagIdList;
|
|
DecalDrawGBufferSystem_t4520A37A2689CDF89893A02977EEC7F0701F796D* ___m_DrawSystem;
|
|
DecalScreenSpaceSettings_tD94FE1202A789534D40E4DD61AD7DE9E55F1ADD3* ___m_Settings;
|
|
DeferredLights_t8A3C2AC9C4AF92CF3411F722D8A094EA07DA14AC* ___m_DeferredLights;
|
|
RTHandleU5BU5D_tE4B403B060D159B839BF74E8B59F8DCD52CF97DF* ___m_GbufferAttachments;
|
|
bool ___m_DecalLayers;
|
|
PassData_t4396B080377CC62E6B81D42D8103F58BF0CC9451* ___m_PassData;
|
|
};
|
|
struct DecalPreviewPass_tC8F131FA3853246D09707D85C52494D16B6116B5 : public ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0
|
|
{
|
|
FilteringSettings_t75860B12A7BCF9A0E2F13CB2C2E5DCD9E1EEAD9F ___m_FilteringSettings;
|
|
List_1_t4673975A297A80D4D4A65EB5A2BE3B6BD1EED9AF* ___m_ShaderTagIdList;
|
|
ProfilingSampler_t420D4672EDB44E0EF980B31ADFD9E5747200FECE* ___m_ProfilingSampler;
|
|
PassData_t0F7D1F1E94925DC481C5764B997BEC982471D969* ___m_PassData;
|
|
};
|
|
struct DecalScreenSpaceRenderPass_tA23A972765D97DFA9A20665DD1D4E3F4DF339016 : public ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0
|
|
{
|
|
FilteringSettings_t75860B12A7BCF9A0E2F13CB2C2E5DCD9E1EEAD9F ___m_FilteringSettings;
|
|
List_1_t4673975A297A80D4D4A65EB5A2BE3B6BD1EED9AF* ___m_ShaderTagIdList;
|
|
DecalDrawScreenSpaceSystem_t6851B844B1C2A2DEF28F0D4AE9BDB03C86BCB69E* ___m_DrawSystem;
|
|
DecalScreenSpaceSettings_tD94FE1202A789534D40E4DD61AD7DE9E55F1ADD3* ___m_Settings;
|
|
bool ___m_DecalLayers;
|
|
PassData_tE8DFD4099E5A523D2AA3761A4B9CE793D50AA5F6* ___m_PassData;
|
|
};
|
|
struct MonoBehaviour_t532A11E69716D348D8AA7F854AFCBFCB8AD17F71 : public Behaviour_t01970CFBBA658497AE30F311C447DB0440BAB7FA
|
|
{
|
|
CancellationTokenSource_tAAE1E0033BCFC233801F8CB4CED5C852B350CB7B* ___m_CancellationTokenSource;
|
|
};
|
|
struct RendererListParams_t13F72282BCE2DC255747FE7694C6BBC3377944B1
|
|
{
|
|
CullingResults_tD6B7EF20B68D47DFF3A99EB2EA73F47F1D460267 ___cullingResults;
|
|
DrawingSettings_t3B64EB029DB6F94A1F2A9B2D19D2969AE361BB49 ___drawSettings;
|
|
FilteringSettings_t75860B12A7BCF9A0E2F13CB2C2E5DCD9E1EEAD9F ___filteringSettings;
|
|
ShaderTagId_t453E2085B5EE9448FF75E550CAB111EFF690ECB0 ___tagName;
|
|
bool ___isPassTagName;
|
|
Nullable_1_t791F8A662AA857374FA6AFEEEA22B1F1E103327B ___tagValues;
|
|
Nullable_1_tEB29AC5A73D1D1AF8DE0D726A51B415DC226387C ___stateBlocks;
|
|
};
|
|
struct RendererListParams_t13F72282BCE2DC255747FE7694C6BBC3377944B1_marshaled_pinvoke
|
|
{
|
|
CullingResults_tD6B7EF20B68D47DFF3A99EB2EA73F47F1D460267 ___cullingResults;
|
|
DrawingSettings_t3B64EB029DB6F94A1F2A9B2D19D2969AE361BB49 ___drawSettings;
|
|
FilteringSettings_t75860B12A7BCF9A0E2F13CB2C2E5DCD9E1EEAD9F ___filteringSettings;
|
|
ShaderTagId_t453E2085B5EE9448FF75E550CAB111EFF690ECB0 ___tagName;
|
|
int32_t ___isPassTagName;
|
|
Nullable_1_t791F8A662AA857374FA6AFEEEA22B1F1E103327B ___tagValues;
|
|
Nullable_1_tEB29AC5A73D1D1AF8DE0D726A51B415DC226387C ___stateBlocks;
|
|
};
|
|
struct RendererListParams_t13F72282BCE2DC255747FE7694C6BBC3377944B1_marshaled_com
|
|
{
|
|
CullingResults_tD6B7EF20B68D47DFF3A99EB2EA73F47F1D460267 ___cullingResults;
|
|
DrawingSettings_t3B64EB029DB6F94A1F2A9B2D19D2969AE361BB49 ___drawSettings;
|
|
FilteringSettings_t75860B12A7BCF9A0E2F13CB2C2E5DCD9E1EEAD9F ___filteringSettings;
|
|
ShaderTagId_t453E2085B5EE9448FF75E550CAB111EFF690ECB0 ___tagName;
|
|
int32_t ___isPassTagName;
|
|
Nullable_1_t791F8A662AA857374FA6AFEEEA22B1F1E103327B ___tagValues;
|
|
Nullable_1_tEB29AC5A73D1D1AF8DE0D726A51B415DC226387C ___stateBlocks;
|
|
};
|
|
struct ScreenSpaceAmbientOcclusionPass_t4E4085E6273C80B0561CD6F348107F8E010DC981 : public ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0
|
|
{
|
|
bool ___m_SupportsR8RenderTextureFormat;
|
|
int32_t ___m_BlueNoiseTextureIndex;
|
|
Material_t18053F08F347D0DCA5E1140EC7EC4533DD8A14E3* ___m_Material;
|
|
SSAOPassData_t7CDAB3BA366773CB0C54324C2A4D9758F7AA79B4* ___m_PassData;
|
|
Texture2DU5BU5D_t05332F1E3F7D4493E304C702201F9BE4F9236191* ___m_BlueNoiseTextures;
|
|
Vector4U5BU5D_tC0F3A7115F85007510F6D173968200CD31BCF7AD* ___m_CameraTopLeftCorner;
|
|
Vector4U5BU5D_tC0F3A7115F85007510F6D173968200CD31BCF7AD* ___m_CameraXExtent;
|
|
Vector4U5BU5D_tC0F3A7115F85007510F6D173968200CD31BCF7AD* ___m_CameraYExtent;
|
|
Vector4U5BU5D_tC0F3A7115F85007510F6D173968200CD31BCF7AD* ___m_CameraZExtent;
|
|
RTHandleU5BU5D_tE4B403B060D159B839BF74E8B59F8DCD52CF97DF* ___m_SSAOTextures;
|
|
int32_t ___m_BlurType;
|
|
Matrix4x4U5BU5D_t9C51C93425FABC022B506D2DB3A5FA70F9752C4D* ___m_CameraViewProjections;
|
|
ProfilingSampler_t420D4672EDB44E0EF980B31ADFD9E5747200FECE* ___m_ProfilingSampler;
|
|
ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892* ___m_Renderer;
|
|
RenderTextureDescriptor_t69845881CE6437E4E61F92074F2F84079F23FA46 ___m_AOPassDescriptor;
|
|
ScreenSpaceAmbientOcclusionSettings_t38C0791DB6E3E3C57C4F7E9C10E48B33C2AD16EE* ___m_CurrentSettings;
|
|
SSAOMaterialParams_t2D8F1118717893672C007220809CDED76FBEB49E ___m_SSAOParamsPrev;
|
|
};
|
|
struct ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892 : public RuntimeObject
|
|
{
|
|
int32_t ___m_LastBeginSubpassPassIndex;
|
|
Dictionary_2_tCB9019887EB0254D4745B0724BC12327C5B63792* ___m_MergeableRenderPassesMap;
|
|
Int32U5BU5DU5BU5D_t179D865D5B30EFCBC50F82C9774329C15943466E* ___m_MergeableRenderPassesMapArrays;
|
|
Hash128U5BU5D_tB104E7247B842648E447B7FCF4748077DC1F8C98* ___m_PassIndexToPassHash;
|
|
Dictionary_2_tB41FAC88F07BAB98D6D373F7C94FB0496D1BDA32* ___m_RenderPassesAttachmentCount;
|
|
int32_t ___m_firstPassIndexOfLastMergeableGroup;
|
|
AttachmentDescriptorU5BU5D_tC70107EBD955FE94BA31C7FDC146069EF9C547C1* ___m_ActiveColorAttachmentDescriptors;
|
|
AttachmentDescriptor_tBAC9B26B50BB0838C5C0CC22BB296F9DFF41276E ___m_ActiveDepthAttachmentDescriptor;
|
|
BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* ___m_IsActiveColorAttachmentTransient;
|
|
RenderBufferStoreActionU5BU5D_tFEA8F5DD460573EA9F35FBEC5727D1804C5DCBF5* ___m_FinalColorStoreAction;
|
|
int32_t ___m_FinalDepthStoreAction;
|
|
ProfilingSampler_t420D4672EDB44E0EF980B31ADFD9E5747200FECE* ___U3CprofilingExecuteU3Ek__BackingField;
|
|
bool ___hasReleasedRTs;
|
|
DebugHandler_t3A09E2CFD1CA6F5C192968A6FF19EE4863F44DA4* ___U3CDebugHandlerU3Ek__BackingField;
|
|
RenderingFeatures_t31044CBDCDC2F05194BFA2A2122FBD937D78A371* ___U3CsupportedRenderingFeaturesU3Ek__BackingField;
|
|
GraphicsDeviceTypeU5BU5D_t4322565F239068C66BF47053B83BD6A9A9D16408* ___U3CunsupportedGraphicsDeviceTypesU3Ek__BackingField;
|
|
int32_t ___m_StoreActionsOptimizationSetting;
|
|
List_1_t2E485E650BF1E41358CE56A69323E183C5A89CB6* ___m_ActiveRenderPassQueue;
|
|
List_1_t2121653FB628940E808D105AD2C17E0F20AFB3A6* ___m_RendererFeatures;
|
|
RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B* ___m_CameraColorTarget;
|
|
RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B* ___m_CameraDepthTarget;
|
|
RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B* ___m_CameraResolveTarget;
|
|
bool ___m_FirstTimeCameraColorTargetIsBound;
|
|
bool ___m_FirstTimeCameraDepthTargetIsBound;
|
|
bool ___m_IsPipelineExecuting;
|
|
bool ___disableNativeRenderPassInFeatures;
|
|
bool ___useRenderPassEnabled;
|
|
ContextContainer_t384E08F63FABEFF6A7F1A753F5EF02699DAD414C* ___m_frameData;
|
|
bool ___U3CuseDepthPrimingU3Ek__BackingField;
|
|
bool ___U3CstripShadowsOffVariantsU3Ek__BackingField;
|
|
bool ___U3CstripAdditionalLightOffVariantsU3Ek__BackingField;
|
|
};
|
|
struct UniversalResourceData_t1F1DE4101BE122578EAA5E4750D00ACAF1042626 : public UniversalResourceDataBase_t22F227228119E69F9151E30D6DC4BE0BAA0ADDE4
|
|
{
|
|
int32_t ___U3CactiveColorIDU3Ek__BackingField;
|
|
int32_t ___U3CactiveDepthIDU3Ek__BackingField;
|
|
TextureHandle_t680ABA3F8B50859351BA5DD66220084F87F37388 ____backBufferColor;
|
|
TextureHandle_t680ABA3F8B50859351BA5DD66220084F87F37388 ____backBufferDepth;
|
|
TextureHandle_t680ABA3F8B50859351BA5DD66220084F87F37388 ____cameraColor;
|
|
TextureHandle_t680ABA3F8B50859351BA5DD66220084F87F37388 ____cameraDepth;
|
|
TextureHandle_t680ABA3F8B50859351BA5DD66220084F87F37388 ____mainShadowsTexture;
|
|
TextureHandle_t680ABA3F8B50859351BA5DD66220084F87F37388 ____additionalShadowsTexture;
|
|
TextureHandleU5BU5D_t544FFA6F5A0E1E5F24EB3C5E5F8547CCE9498BD7* ____gBuffer;
|
|
TextureHandle_t680ABA3F8B50859351BA5DD66220084F87F37388 ____cameraOpaqueTexture;
|
|
TextureHandle_t680ABA3F8B50859351BA5DD66220084F87F37388 ____cameraDepthTexture;
|
|
TextureHandle_t680ABA3F8B50859351BA5DD66220084F87F37388 ____cameraNormalsTexture;
|
|
TextureHandle_t680ABA3F8B50859351BA5DD66220084F87F37388 ____motionVectorColor;
|
|
TextureHandle_t680ABA3F8B50859351BA5DD66220084F87F37388 ____motionVectorDepth;
|
|
TextureHandle_t680ABA3F8B50859351BA5DD66220084F87F37388 ____internalColorLut;
|
|
TextureHandle_t680ABA3F8B50859351BA5DD66220084F87F37388 ____debugScreenColor;
|
|
TextureHandle_t680ABA3F8B50859351BA5DD66220084F87F37388 ____debugScreenDepth;
|
|
TextureHandle_t680ABA3F8B50859351BA5DD66220084F87F37388 ____afterPostProcessColor;
|
|
TextureHandle_t680ABA3F8B50859351BA5DD66220084F87F37388 ____overlayUITexture;
|
|
TextureHandle_t680ABA3F8B50859351BA5DD66220084F87F37388 ____renderingLayersTexture;
|
|
TextureHandleU5BU5D_t544FFA6F5A0E1E5F24EB3C5E5F8547CCE9498BD7* ____dBuffer;
|
|
TextureHandle_t680ABA3F8B50859351BA5DD66220084F87F37388 ____dBufferDepth;
|
|
TextureHandle_t680ABA3F8B50859351BA5DD66220084F87F37388 ____ssaoTexture;
|
|
TextureHandle_t680ABA3F8B50859351BA5DD66220084F87F37388 ____stpDebugView;
|
|
};
|
|
struct XRPassUniversal_t8D4B40107F5DBC12D39470D87D108D3D2A8FB8D1 : public XRPass_tFC4577E97B88E0EAAAB2EB387AB3A92E9EB9C6DF
|
|
{
|
|
bool ___U3CisLateLatchEnabledU3Ek__BackingField;
|
|
bool ___U3CcanMarkLateLatchU3Ek__BackingField;
|
|
bool ___U3ChasMarkedLateLatchU3Ek__BackingField;
|
|
bool ___U3CcanFoveateIntermediatePassesU3Ek__BackingField;
|
|
};
|
|
struct PassData_tE8DFD4099E5A523D2AA3761A4B9CE793D50AA5F6 : public RuntimeObject
|
|
{
|
|
DecalDrawScreenSpaceSystem_t6851B844B1C2A2DEF28F0D4AE9BDB03C86BCB69E* ___drawSystem;
|
|
DecalScreenSpaceSettings_tD94FE1202A789534D40E4DD61AD7DE9E55F1ADD3* ___settings;
|
|
bool ___decalLayers;
|
|
bool ___isGLDevice;
|
|
TextureHandle_t680ABA3F8B50859351BA5DD66220084F87F37388 ___colorTarget;
|
|
UniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7* ___cameraData;
|
|
RendererListHandle_t2DFC72A560B979AE0BAFBABBD8B9AF5DC1FEFEBA ___rendererList;
|
|
};
|
|
struct DecalProjector_tE7CEBAABFEF36162FD325321C1F94173CEFEDF64 : public MonoBehaviour_t532A11E69716D348D8AA7F854AFCBFCB8AD17F71
|
|
{
|
|
DecalEntity_t8CAF09C65939503449C4138ADCDC4907196293FD ___U3CdecalEntityU3Ek__BackingField;
|
|
Material_t18053F08F347D0DCA5E1140EC7EC4533DD8A14E3* ___m_Material;
|
|
float ___m_DrawDistance;
|
|
float ___m_FadeScale;
|
|
float ___m_StartAngleFade;
|
|
float ___m_EndAngleFade;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___m_UVScale;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___m_UVBias;
|
|
RenderingLayerMask_tD73B9FC1A65A937F18E56833FC83BF89C2B085A1 ___m_RenderingLayerMask;
|
|
int32_t ___m_ScaleMode;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___m_Offset;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___m_Size;
|
|
float ___m_FadeFactor;
|
|
Material_t18053F08F347D0DCA5E1140EC7EC4533DD8A14E3* ___m_OldMaterial;
|
|
float ___m_OldDrawDistance;
|
|
float ___m_OldFadeScale;
|
|
float ___m_OldStartAngleFade;
|
|
float ___m_OldEndAngleFade;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___m_OldUVScale;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___m_OldUVBias;
|
|
int32_t ___m_OldScaleMode;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___m_OldOffset;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___m_OldSize;
|
|
float ___m_OldFadeFactor;
|
|
int32_t ___version;
|
|
uint32_t ___m_DecalLayerMask;
|
|
};
|
|
struct UniversalRenderPipelineAsset_tE8A9AA6F030CC3B558CEA2EB54FFF4FC58CA6232 : public RenderPipelineAsset_1_t2873A88178504E8793D044D4422CB05E32AEB121
|
|
{
|
|
ScriptableRendererU5BU5D_t9B15C048BCE03A67E830F1C79989B6A3E43788E6* ___m_Renderers;
|
|
int32_t ___k_AssetVersion;
|
|
int32_t ___k_AssetPreviousVersion;
|
|
int32_t ___m_RendererType;
|
|
ScriptableRendererData_t9005CE645D4881FA4431E52EDC7678203632CAA7* ___m_RendererData;
|
|
ScriptableRendererDataU5BU5D_tC674C147618C92B68DB64ECFDC847C8A941C6169* ___m_RendererDataList;
|
|
int32_t ___m_DefaultRendererIndex;
|
|
bool ___m_RequireDepthTexture;
|
|
bool ___m_RequireOpaqueTexture;
|
|
int32_t ___m_OpaqueDownsampling;
|
|
bool ___m_SupportsTerrainHoles;
|
|
bool ___m_SupportsHDR;
|
|
int32_t ___m_HDRColorBufferPrecision;
|
|
int32_t ___m_MSAA;
|
|
float ___m_RenderScale;
|
|
int32_t ___m_UpscalingFilter;
|
|
bool ___m_FsrOverrideSharpness;
|
|
float ___m_FsrSharpness;
|
|
bool ___m_EnableLODCrossFade;
|
|
int32_t ___m_LODCrossFadeDitheringType;
|
|
int32_t ___m_ShEvalMode;
|
|
int32_t ___m_LightProbeSystem;
|
|
int32_t ___m_ProbeVolumeMemoryBudget;
|
|
int32_t ___m_ProbeVolumeBlendingMemoryBudget;
|
|
bool ___m_SupportProbeVolumeGPUStreaming;
|
|
bool ___m_SupportProbeVolumeDiskStreaming;
|
|
bool ___m_SupportProbeVolumeScenarios;
|
|
bool ___m_SupportProbeVolumeScenarioBlending;
|
|
int32_t ___m_ProbeVolumeSHBands;
|
|
int32_t ___m_MainLightRenderingMode;
|
|
bool ___m_MainLightShadowsSupported;
|
|
int32_t ___m_MainLightShadowmapResolution;
|
|
int32_t ___m_AdditionalLightsRenderingMode;
|
|
int32_t ___m_AdditionalLightsPerObjectLimit;
|
|
bool ___m_AdditionalLightShadowsSupported;
|
|
int32_t ___m_AdditionalLightsShadowmapResolution;
|
|
int32_t ___m_AdditionalLightsShadowResolutionTierLow;
|
|
int32_t ___m_AdditionalLightsShadowResolutionTierMedium;
|
|
int32_t ___m_AdditionalLightsShadowResolutionTierHigh;
|
|
bool ___m_ReflectionProbeBlending;
|
|
bool ___m_ReflectionProbeBoxProjection;
|
|
bool ___m_ReflectionProbeAtlas;
|
|
float ___m_ShadowDistance;
|
|
int32_t ___m_ShadowCascadeCount;
|
|
float ___m_Cascade2Split;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___m_Cascade3Split;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___m_Cascade4Split;
|
|
float ___m_CascadeBorder;
|
|
float ___m_ShadowDepthBias;
|
|
float ___m_ShadowNormalBias;
|
|
bool ___m_SoftShadowsSupported;
|
|
bool ___m_ConservativeEnclosingSphere;
|
|
int32_t ___m_NumIterationsEnclosingSphere;
|
|
int32_t ___m_SoftShadowQuality;
|
|
int32_t ___m_AdditionalLightsCookieResolution;
|
|
int32_t ___m_AdditionalLightsCookieFormat;
|
|
bool ___m_UseSRPBatcher;
|
|
bool ___m_SupportsDynamicBatching;
|
|
bool ___m_MixedLightingSupported;
|
|
bool ___m_SupportsLightCookies;
|
|
bool ___m_SupportsLightLayers;
|
|
int32_t ___m_DebugLevel;
|
|
int32_t ___m_StoreActionsOptimization;
|
|
bool ___m_UseAdaptivePerformance;
|
|
int32_t ___m_ColorGradingMode;
|
|
int32_t ___m_ColorGradingLutSize;
|
|
bool ___m_AllowPostProcessAlphaOutput;
|
|
bool ___m_UseFastSRGBLinearConversion;
|
|
bool ___m_SupportDataDrivenLensFlare;
|
|
bool ___m_SupportScreenSpaceLensFlare;
|
|
uint8_t ___m_GPUResidentDrawerMode;
|
|
float ___m_SmallMeshScreenPercentage;
|
|
bool ___m_GPUResidentDrawerEnableOcclusionCullingInCameras;
|
|
int32_t ___m_ShadowType;
|
|
bool ___m_LocalShadowsSupported;
|
|
int32_t ___m_LocalShadowsAtlasResolution;
|
|
int32_t ___m_MaxPixelLights;
|
|
int32_t ___m_ShadowAtlasResolution;
|
|
int32_t ___m_VolumeFrameworkUpdateMode;
|
|
VolumeProfile_t9B5F2005F575A710F38A124EF81A6228CCACACE1* ___m_VolumeProfile;
|
|
ProbeVolumeSceneData_t29FD126D36ED1E093C2EBBFB3F248DD5E2A86D90* ___apvScenesData;
|
|
Shader_tADC867D36B7876EE22427FAA2CE485105F4EE692* ___m_DefaultShader;
|
|
int32_t ___m_ShaderVariantLogLevel;
|
|
int32_t ___m_ShadowCascades;
|
|
TextureResources_t8FB6A098EBF3C08BF1BD5EA926743C0FA595202B* ___m_Textures;
|
|
};
|
|
struct UniversalRenderer_t31019D4AD52F646128E0D1649E7B87E33BA36D8A : public ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892
|
|
{
|
|
DepthOnlyPass_t93DEDD59D11D5651A2089D49062E3F140FD3475E* ___m_DepthPrepass;
|
|
DepthNormalOnlyPass_t50A0679CDE5004EB7043F717FADAB05FA0CA35A6* ___m_DepthNormalPrepass;
|
|
CopyDepthPass_t51FCA8600207D9DD0EE15862C514D9F9E3A74D82* ___m_PrimedDepthCopyPass;
|
|
MotionVectorRenderPass_t6582EF44AC9503C674D19D32AF106DE02ECF54FD* ___m_MotionVectorPass;
|
|
MainLightShadowCasterPass_tC550260377ED69F98337CF963695B7A090B137E3* ___m_MainLightShadowCasterPass;
|
|
AdditionalLightsShadowCasterPass_t5E00A3C851AB73A44B7577458AD868AF8F4FE004* ___m_AdditionalLightsShadowCasterPass;
|
|
GBufferPass_t540C12BCC3AFAC32B775694C8A29B69A49C284E7* ___m_GBufferPass;
|
|
CopyDepthPass_t51FCA8600207D9DD0EE15862C514D9F9E3A74D82* ___m_GBufferCopyDepthPass;
|
|
DeferredPass_t6790EE70B629EA472728A1396EA57FE14D0D8BF0* ___m_DeferredPass;
|
|
DrawObjectsPass_t84B46B3BEA317D89ACA0B04F80A9346789E8DE68* ___m_RenderOpaqueForwardOnlyPass;
|
|
DrawObjectsPass_t84B46B3BEA317D89ACA0B04F80A9346789E8DE68* ___m_RenderOpaqueForwardPass;
|
|
DrawObjectsWithRenderingLayersPass_t34921C427F925EE5E7DF0F89EDF65CADB0476FE5* ___m_RenderOpaqueForwardWithRenderingLayersPass;
|
|
DrawSkyboxPass_tA8A4796DE653DCC58C5FF906E4EC142FD901EADA* ___m_DrawSkyboxPass;
|
|
CopyDepthPass_t51FCA8600207D9DD0EE15862C514D9F9E3A74D82* ___m_CopyDepthPass;
|
|
CopyColorPass_t36EEE0428120ED6DF4A8C2CABB2F30CA9C784693* ___m_CopyColorPass;
|
|
TransparentSettingsPass_t13490AAB630DED3A5EDF11A4F4D340B04E3B85B7* ___m_TransparentSettingsPass;
|
|
DrawObjectsPass_t84B46B3BEA317D89ACA0B04F80A9346789E8DE68* ___m_RenderTransparentForwardPass;
|
|
InvokeOnRenderObjectCallbackPass_tC8BAE077CDE3D8D01F80041E285EAEC9E375FFE9* ___m_OnRenderObjectCallbackPass;
|
|
FinalBlitPass_t5A422DA2B38F1886E0F5AC3D26CE2455177C3EAC* ___m_FinalBlitPass;
|
|
CapturePass_tBD745B83E7D4AE9A6F35EE0760F1CCAC51B787EE* ___m_CapturePass;
|
|
XROcclusionMeshPass_tA8EDF609A01F4AA46E173A12633B8329524F4CD8* ___m_XROcclusionMeshPass;
|
|
CopyDepthPass_t51FCA8600207D9DD0EE15862C514D9F9E3A74D82* ___m_XRCopyDepthPass;
|
|
XRDepthMotionPass_t8877C9053420CA52B0A0FA0C84F3DA61952E2C93* ___m_XRDepthMotionPass;
|
|
DrawScreenSpaceUIPass_t397E07595465217B2B9A6994E9116158439EE686* ___m_DrawOffscreenUIPass;
|
|
DrawScreenSpaceUIPass_t397E07595465217B2B9A6994E9116158439EE686* ___m_DrawOverlayUIPass;
|
|
CopyColorPass_t36EEE0428120ED6DF4A8C2CABB2F30CA9C784693* ___m_HistoryRawColorCopyPass;
|
|
CopyDepthPass_t51FCA8600207D9DD0EE15862C514D9F9E3A74D82* ___m_HistoryRawDepthCopyPass;
|
|
StencilCrossFadeRenderPass_tD864DD25B442A139B56C9997FEB2D527D4E2DE07* ___m_StencilCrossFadeRenderPass;
|
|
RenderTargetBufferSystem_tB98B680006BB96E6EBC6311583EE31302F16EC13* ___m_ColorBufferSystem;
|
|
RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B* ___m_ActiveCameraColorAttachment;
|
|
RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B* ___m_ColorFrontBuffer;
|
|
RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B* ___m_ActiveCameraDepthAttachment;
|
|
RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B* ___m_CameraDepthAttachment;
|
|
RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B* ___m_CameraDepthAttachment_D3d_11;
|
|
RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B* ___m_TargetColorHandle;
|
|
RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B* ___m_TargetDepthHandle;
|
|
RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B* ___m_DepthTexture;
|
|
RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B* ___m_NormalsTexture;
|
|
RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B* ___m_DecalLayersTexture;
|
|
RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B* ___m_OpaqueColor;
|
|
RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B* ___m_MotionVectorColor;
|
|
RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B* ___m_MotionVectorDepth;
|
|
ForwardLights_t624787957AE9D8E817643720F2199E35331D4DCA* ___m_ForwardLights;
|
|
DeferredLights_t8A3C2AC9C4AF92CF3411F722D8A094EA07DA14AC* ___m_DeferredLights;
|
|
int32_t ___m_RenderingMode;
|
|
int32_t ___m_DepthPrimingMode;
|
|
int32_t ___m_CopyDepthMode;
|
|
int32_t ___m_CameraDepthAttachmentFormat;
|
|
int32_t ___m_CameraDepthTextureFormat;
|
|
bool ___m_DepthPrimingRecommended;
|
|
StencilState_tBE5F7C1134E50C5E93B45A626D4FB4690F1C91A9 ___m_DefaultStencilState;
|
|
LightCookieManager_t47C455537F06ECCE295272AF0BE14CDF1FB54C2B* ___m_LightCookieManager;
|
|
int32_t ___m_IntermediateTextureMode;
|
|
bool ___m_VulkanEnablePreTransform;
|
|
Material_t18053F08F347D0DCA5E1140EC7EC4533DD8A14E3* ___m_BlitMaterial;
|
|
Material_t18053F08F347D0DCA5E1140EC7EC4533DD8A14E3* ___m_BlitHDRMaterial;
|
|
Material_t18053F08F347D0DCA5E1140EC7EC4533DD8A14E3* ___m_SamplingMaterial;
|
|
Material_t18053F08F347D0DCA5E1140EC7EC4533DD8A14E3* ___m_StencilDeferredMaterial;
|
|
Material_t18053F08F347D0DCA5E1140EC7EC4533DD8A14E3* ___m_ClusterDeferredMaterial;
|
|
Material_t18053F08F347D0DCA5E1140EC7EC4533DD8A14E3* ___m_CameraMotionVecMaterial;
|
|
PostProcessPasses_tAED11E629F8830B180E0759F4A988839F786D3E9 ___m_PostProcessPasses;
|
|
LayerMask_t97CB6BDADEDC3D6423C7BCFEA7F86DA2EC6241DB ___U3CprepassLayerMaskU3Ek__BackingField;
|
|
LayerMask_t97CB6BDADEDC3D6423C7BCFEA7F86DA2EC6241DB ___U3CopaqueLayerMaskU3Ek__BackingField;
|
|
LayerMask_t97CB6BDADEDC3D6423C7BCFEA7F86DA2EC6241DB ___U3CtransparentLayerMaskU3Ek__BackingField;
|
|
bool ___U3CshadowTransparentReceiveU3Ek__BackingField;
|
|
Material_t18053F08F347D0DCA5E1140EC7EC4533DD8A14E3* ___m_DebugBlitMaterial;
|
|
bool ___m_RequiresRenderingLayer;
|
|
int32_t ___m_RenderingLayersEvent;
|
|
int32_t ___m_RenderingLayersMaskSize;
|
|
bool ___m_RenderingLayerProvidesRenderObjectPass;
|
|
bool ___m_RenderingLayerProvidesByDepthNormalPass;
|
|
String_t* ___m_RenderingLayersTextureName;
|
|
bool ___m_IssuedGPUOcclusionUnsupportedMsg;
|
|
};
|
|
struct EmptyArray_1_tDF0DD7256B115243AA6BD5558417387A734240EE_StaticFields
|
|
{
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___Value;
|
|
};
|
|
struct EmptyArray_1_tB88A622B0CABB73806296B59E273155CA96811AE_StaticFields
|
|
{
|
|
RenderTargetIdentifierU5BU5D_t179798C153B7CE381B41C57863F98CB24023C4CE* ___Value;
|
|
};
|
|
struct List_1_t1A9527CB44249AD17D081A2D7A468343FC2D0720_StaticFields
|
|
{
|
|
DecalCachedChunkU5BU5D_t0F118709F0F6FA3238811381BCDB645D04924314* ___s_emptyArray;
|
|
};
|
|
struct List_1_t2E25D2E682EF62FB0FC538A4C88B3D49616A03DC_StaticFields
|
|
{
|
|
DecalCulledChunkU5BU5D_t7B7AD97C0878869F7E1D340E6DB45FCD1BF92D8A* ___s_emptyArray;
|
|
};
|
|
struct List_1_tD8DB23A94A44626CAF7E9B5B4A949D0FDC7B27A7_StaticFields
|
|
{
|
|
DecalDrawCallChunkU5BU5D_t273B9AA3ED5B31BEC25656F7F1E9BB11D54C1A4A* ___s_emptyArray;
|
|
};
|
|
struct List_1_t437E45D007C2D93DCB30DA30023CB2745EE095D0_StaticFields
|
|
{
|
|
DecalEntityChunkU5BU5D_t5BCC097CCF64A4B055507321747454271404C7B4* ___s_emptyArray;
|
|
};
|
|
struct List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73_StaticFields
|
|
{
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ___s_emptyArray;
|
|
};
|
|
struct List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D_StaticFields
|
|
{
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___s_emptyArray;
|
|
};
|
|
struct List_1_t2E485E650BF1E41358CE56A69323E183C5A89CB6_StaticFields
|
|
{
|
|
ScriptableRenderPassU5BU5D_tC40E3619A24B14CB90535A47C826514BE1343F87* ___s_emptyArray;
|
|
};
|
|
struct List_1_t2121653FB628940E808D105AD2C17E0F20AFB3A6_StaticFields
|
|
{
|
|
ScriptableRendererFeatureU5BU5D_t64361F1FA79104227050258B0751D3DF2E9FDA1C* ___s_emptyArray;
|
|
};
|
|
struct List_1_t4673975A297A80D4D4A65EB5A2BE3B6BD1EED9AF_StaticFields
|
|
{
|
|
ShaderTagIdU5BU5D_tE1BA124E13B8096153E25C5AF9C1D15D71466143* ___s_emptyArray;
|
|
};
|
|
struct List_1_t218CEA415E5769B47AB34C68D264977822ECAD17_StaticFields
|
|
{
|
|
DecalEntityItemU5BU5D_t4667E6B7E7BCD5313A0D07A782F44A8954080359* ___s_emptyArray;
|
|
};
|
|
struct List_1_t75FC6D059D696BAD77462D09FCDC98B4A7B7D3D4_StaticFields
|
|
{
|
|
CombinedChunksU5BU5D_tE1B967C0ED5D0439978E22BAE927DAB629A4E5DD* ___s_emptyArray;
|
|
};
|
|
struct TypeId_1_tF7C39317892E31289E8C529424E70ED463C8334C_StaticFields
|
|
{
|
|
uint32_t ___value;
|
|
};
|
|
struct ContextContainer_t384E08F63FABEFF6A7F1A753F5EF02699DAD414C_StaticFields
|
|
{
|
|
uint32_t ___s_TypeCount;
|
|
};
|
|
struct DecalDrawSystem_t87ECA1A8D2D9C3A73A12F81D8CCA0F79029C0BFE_StaticFields
|
|
{
|
|
uint32_t ___MaxBatchSize;
|
|
};
|
|
struct PlatformAutoDetect_tEEEF1776EA779987D2840527D96D89ADD3177A36_StaticFields
|
|
{
|
|
bool ___U3CisXRMobileU3Ek__BackingField;
|
|
bool ___U3CisShaderAPIMobileDefinedU3Ek__BackingField;
|
|
bool ___U3CisSwitchU3Ek__BackingField;
|
|
bool ___isRunningOnPowerVRGPU;
|
|
};
|
|
struct RenderPassEventsEnumValues_tE8866513A09C4EDD3D96842CA57C7C20E2EA47E8_StaticFields
|
|
{
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ___values;
|
|
};
|
|
struct RenderingUtils_t4E40200449A82FA3A172A563C490DF11FADA2BE1_StaticFields
|
|
{
|
|
List_1_t4673975A297A80D4D4A65EB5A2BE3B6BD1EED9AF* ___m_LegacyShaderPassNames;
|
|
AttachmentDescriptor_tBAC9B26B50BB0838C5C0CC22BB296F9DFF41276E ___s_EmptyAttachment;
|
|
Mesh_t6D9C539763A09BC2B12AEAEF36F6DFFC98AE63D4* ___s_FullscreenMesh;
|
|
Material_t18053F08F347D0DCA5E1140EC7EC4533DD8A14E3* ___s_ErrorMaterial;
|
|
ShaderTagIdU5BU5D_tE1BA124E13B8096153E25C5AF9C1D15D71466143* ___s_ShaderTagValues;
|
|
RenderStateBlockU5BU5D_tB3277DEBE81600D781CFFD366CF0B6E363775468* ___s_RenderStateBlocks;
|
|
Dictionary_2_t31654189884079503F23B56F8ED949AA30E46A52* ___m_RenderTextureFormatSupport;
|
|
};
|
|
struct ShaderGlobalKeywords_tCD2A8F654428E5D252204D24E379C6725E5A2C91_StaticFields
|
|
{
|
|
GlobalKeyword_tFA029618DA6ADCA20CFA44C1B8AFFF9EA097AE7D ___MainLightShadows;
|
|
GlobalKeyword_tFA029618DA6ADCA20CFA44C1B8AFFF9EA097AE7D ___MainLightShadowCascades;
|
|
GlobalKeyword_tFA029618DA6ADCA20CFA44C1B8AFFF9EA097AE7D ___MainLightShadowScreen;
|
|
GlobalKeyword_tFA029618DA6ADCA20CFA44C1B8AFFF9EA097AE7D ___CastingPunctualLightShadow;
|
|
GlobalKeyword_tFA029618DA6ADCA20CFA44C1B8AFFF9EA097AE7D ___AdditionalLightsVertex;
|
|
GlobalKeyword_tFA029618DA6ADCA20CFA44C1B8AFFF9EA097AE7D ___AdditionalLightsPixel;
|
|
GlobalKeyword_tFA029618DA6ADCA20CFA44C1B8AFFF9EA097AE7D ___ClusterLightLoop;
|
|
GlobalKeyword_tFA029618DA6ADCA20CFA44C1B8AFFF9EA097AE7D ___AdditionalLightShadows;
|
|
GlobalKeyword_tFA029618DA6ADCA20CFA44C1B8AFFF9EA097AE7D ___ReflectionProbeBoxProjection;
|
|
GlobalKeyword_tFA029618DA6ADCA20CFA44C1B8AFFF9EA097AE7D ___ReflectionProbeBlending;
|
|
GlobalKeyword_tFA029618DA6ADCA20CFA44C1B8AFFF9EA097AE7D ___ReflectionProbeAtlas;
|
|
GlobalKeyword_tFA029618DA6ADCA20CFA44C1B8AFFF9EA097AE7D ___SoftShadows;
|
|
GlobalKeyword_tFA029618DA6ADCA20CFA44C1B8AFFF9EA097AE7D ___SoftShadowsLow;
|
|
GlobalKeyword_tFA029618DA6ADCA20CFA44C1B8AFFF9EA097AE7D ___SoftShadowsMedium;
|
|
GlobalKeyword_tFA029618DA6ADCA20CFA44C1B8AFFF9EA097AE7D ___SoftShadowsHigh;
|
|
GlobalKeyword_tFA029618DA6ADCA20CFA44C1B8AFFF9EA097AE7D ___MixedLightingSubtractive;
|
|
GlobalKeyword_tFA029618DA6ADCA20CFA44C1B8AFFF9EA097AE7D ___LightmapShadowMixing;
|
|
GlobalKeyword_tFA029618DA6ADCA20CFA44C1B8AFFF9EA097AE7D ___ShadowsShadowMask;
|
|
GlobalKeyword_tFA029618DA6ADCA20CFA44C1B8AFFF9EA097AE7D ___LightLayers;
|
|
GlobalKeyword_tFA029618DA6ADCA20CFA44C1B8AFFF9EA097AE7D ___RenderPassEnabled;
|
|
GlobalKeyword_tFA029618DA6ADCA20CFA44C1B8AFFF9EA097AE7D ___BillboardFaceCameraPos;
|
|
GlobalKeyword_tFA029618DA6ADCA20CFA44C1B8AFFF9EA097AE7D ___LightCookies;
|
|
GlobalKeyword_tFA029618DA6ADCA20CFA44C1B8AFFF9EA097AE7D ___DepthNoMsaa;
|
|
GlobalKeyword_tFA029618DA6ADCA20CFA44C1B8AFFF9EA097AE7D ___DepthMsaa2;
|
|
GlobalKeyword_tFA029618DA6ADCA20CFA44C1B8AFFF9EA097AE7D ___DepthMsaa4;
|
|
GlobalKeyword_tFA029618DA6ADCA20CFA44C1B8AFFF9EA097AE7D ___DepthMsaa8;
|
|
GlobalKeyword_tFA029618DA6ADCA20CFA44C1B8AFFF9EA097AE7D ___DBufferMRT1;
|
|
GlobalKeyword_tFA029618DA6ADCA20CFA44C1B8AFFF9EA097AE7D ___DBufferMRT2;
|
|
GlobalKeyword_tFA029618DA6ADCA20CFA44C1B8AFFF9EA097AE7D ___DBufferMRT3;
|
|
GlobalKeyword_tFA029618DA6ADCA20CFA44C1B8AFFF9EA097AE7D ___DecalNormalBlendLow;
|
|
GlobalKeyword_tFA029618DA6ADCA20CFA44C1B8AFFF9EA097AE7D ___DecalNormalBlendMedium;
|
|
GlobalKeyword_tFA029618DA6ADCA20CFA44C1B8AFFF9EA097AE7D ___DecalNormalBlendHigh;
|
|
GlobalKeyword_tFA029618DA6ADCA20CFA44C1B8AFFF9EA097AE7D ___DecalLayers;
|
|
GlobalKeyword_tFA029618DA6ADCA20CFA44C1B8AFFF9EA097AE7D ___WriteRenderingLayers;
|
|
GlobalKeyword_tFA029618DA6ADCA20CFA44C1B8AFFF9EA097AE7D ___ScreenSpaceOcclusion;
|
|
GlobalKeyword_tFA029618DA6ADCA20CFA44C1B8AFFF9EA097AE7D ____SPOT;
|
|
GlobalKeyword_tFA029618DA6ADCA20CFA44C1B8AFFF9EA097AE7D ____DIRECTIONAL;
|
|
GlobalKeyword_tFA029618DA6ADCA20CFA44C1B8AFFF9EA097AE7D ____POINT;
|
|
GlobalKeyword_tFA029618DA6ADCA20CFA44C1B8AFFF9EA097AE7D ____DEFERRED_STENCIL;
|
|
GlobalKeyword_tFA029618DA6ADCA20CFA44C1B8AFFF9EA097AE7D ____DEFERRED_FIRST_LIGHT;
|
|
GlobalKeyword_tFA029618DA6ADCA20CFA44C1B8AFFF9EA097AE7D ____DEFERRED_MAIN_LIGHT;
|
|
GlobalKeyword_tFA029618DA6ADCA20CFA44C1B8AFFF9EA097AE7D ____GBUFFER_NORMALS_OCT;
|
|
GlobalKeyword_tFA029618DA6ADCA20CFA44C1B8AFFF9EA097AE7D ____DEFERRED_MIXED_LIGHTING;
|
|
GlobalKeyword_tFA029618DA6ADCA20CFA44C1B8AFFF9EA097AE7D ___LIGHTMAP_ON;
|
|
GlobalKeyword_tFA029618DA6ADCA20CFA44C1B8AFFF9EA097AE7D ___DYNAMICLIGHTMAP_ON;
|
|
GlobalKeyword_tFA029618DA6ADCA20CFA44C1B8AFFF9EA097AE7D ____ALPHATEST_ON;
|
|
GlobalKeyword_tFA029618DA6ADCA20CFA44C1B8AFFF9EA097AE7D ___DIRLIGHTMAP_COMBINED;
|
|
GlobalKeyword_tFA029618DA6ADCA20CFA44C1B8AFFF9EA097AE7D ____DETAIL_MULX2;
|
|
GlobalKeyword_tFA029618DA6ADCA20CFA44C1B8AFFF9EA097AE7D ____DETAIL_SCALED;
|
|
GlobalKeyword_tFA029618DA6ADCA20CFA44C1B8AFFF9EA097AE7D ____CLEARCOAT;
|
|
GlobalKeyword_tFA029618DA6ADCA20CFA44C1B8AFFF9EA097AE7D ____CLEARCOATMAP;
|
|
GlobalKeyword_tFA029618DA6ADCA20CFA44C1B8AFFF9EA097AE7D ___DEBUG_DISPLAY;
|
|
GlobalKeyword_tFA029618DA6ADCA20CFA44C1B8AFFF9EA097AE7D ___LOD_FADE_CROSSFADE;
|
|
GlobalKeyword_tFA029618DA6ADCA20CFA44C1B8AFFF9EA097AE7D ___USE_UNITY_CROSSFADE;
|
|
GlobalKeyword_tFA029618DA6ADCA20CFA44C1B8AFFF9EA097AE7D ____EMISSION;
|
|
GlobalKeyword_tFA029618DA6ADCA20CFA44C1B8AFFF9EA097AE7D ____RECEIVE_SHADOWS_OFF;
|
|
GlobalKeyword_tFA029618DA6ADCA20CFA44C1B8AFFF9EA097AE7D ____SURFACE_TYPE_TRANSPARENT;
|
|
GlobalKeyword_tFA029618DA6ADCA20CFA44C1B8AFFF9EA097AE7D ____ALPHAPREMULTIPLY_ON;
|
|
GlobalKeyword_tFA029618DA6ADCA20CFA44C1B8AFFF9EA097AE7D ____ALPHAMODULATE_ON;
|
|
GlobalKeyword_tFA029618DA6ADCA20CFA44C1B8AFFF9EA097AE7D ____NORMALMAP;
|
|
GlobalKeyword_tFA029618DA6ADCA20CFA44C1B8AFFF9EA097AE7D ____ADD_PRECOMPUTED_VELOCITY;
|
|
GlobalKeyword_tFA029618DA6ADCA20CFA44C1B8AFFF9EA097AE7D ___EDITOR_VISUALIZATION;
|
|
GlobalKeyword_tFA029618DA6ADCA20CFA44C1B8AFFF9EA097AE7D ___FoveatedRenderingNonUniformRaster;
|
|
GlobalKeyword_tFA029618DA6ADCA20CFA44C1B8AFFF9EA097AE7D ___DisableTexture2DXArray;
|
|
GlobalKeyword_tFA029618DA6ADCA20CFA44C1B8AFFF9EA097AE7D ___BlitSingleSlice;
|
|
GlobalKeyword_tFA029618DA6ADCA20CFA44C1B8AFFF9EA097AE7D ___XROcclusionMeshCombined;
|
|
GlobalKeyword_tFA029618DA6ADCA20CFA44C1B8AFFF9EA097AE7D ___SCREEN_COORD_OVERRIDE;
|
|
GlobalKeyword_tFA029618DA6ADCA20CFA44C1B8AFFF9EA097AE7D ___DOWNSAMPLING_SIZE_2;
|
|
GlobalKeyword_tFA029618DA6ADCA20CFA44C1B8AFFF9EA097AE7D ___DOWNSAMPLING_SIZE_4;
|
|
GlobalKeyword_tFA029618DA6ADCA20CFA44C1B8AFFF9EA097AE7D ___DOWNSAMPLING_SIZE_8;
|
|
GlobalKeyword_tFA029618DA6ADCA20CFA44C1B8AFFF9EA097AE7D ___DOWNSAMPLING_SIZE_16;
|
|
GlobalKeyword_tFA029618DA6ADCA20CFA44C1B8AFFF9EA097AE7D ___EVALUATE_SH_MIXED;
|
|
GlobalKeyword_tFA029618DA6ADCA20CFA44C1B8AFFF9EA097AE7D ___EVALUATE_SH_VERTEX;
|
|
GlobalKeyword_tFA029618DA6ADCA20CFA44C1B8AFFF9EA097AE7D ___ProbeVolumeL1;
|
|
GlobalKeyword_tFA029618DA6ADCA20CFA44C1B8AFFF9EA097AE7D ___ProbeVolumeL2;
|
|
GlobalKeyword_tFA029618DA6ADCA20CFA44C1B8AFFF9EA097AE7D ___LIGHTMAP_BICUBIC_SAMPLING;
|
|
GlobalKeyword_tFA029618DA6ADCA20CFA44C1B8AFFF9EA097AE7D ____OUTPUT_DEPTH;
|
|
GlobalKeyword_tFA029618DA6ADCA20CFA44C1B8AFFF9EA097AE7D ___LinearToSRGBConversion;
|
|
GlobalKeyword_tFA029618DA6ADCA20CFA44C1B8AFFF9EA097AE7D ____ENABLE_ALPHA_OUTPUT;
|
|
GlobalKeyword_tFA029618DA6ADCA20CFA44C1B8AFFF9EA097AE7D ___ForwardPlus;
|
|
};
|
|
struct ShaderPropertyId_tAA7B64E0C225CFD70D9837D0733FDE84DC3310D2_StaticFields
|
|
{
|
|
int32_t ___glossyEnvironmentColor;
|
|
int32_t ___subtractiveShadowColor;
|
|
int32_t ___glossyEnvironmentCubeMap;
|
|
int32_t ___glossyEnvironmentCubeMapHDR;
|
|
int32_t ___ambientSkyColor;
|
|
int32_t ___ambientEquatorColor;
|
|
int32_t ___ambientGroundColor;
|
|
int32_t ___time;
|
|
int32_t ___sinTime;
|
|
int32_t ___cosTime;
|
|
int32_t ___deltaTime;
|
|
int32_t ___timeParameters;
|
|
int32_t ___lastTimeParameters;
|
|
int32_t ___scaledScreenParams;
|
|
int32_t ___worldSpaceCameraPos;
|
|
int32_t ___screenParams;
|
|
int32_t ___alphaToMaskAvailable;
|
|
int32_t ___projectionParams;
|
|
int32_t ___zBufferParams;
|
|
int32_t ___orthoParams;
|
|
int32_t ___globalMipBias;
|
|
int32_t ___screenSize;
|
|
int32_t ___screenCoordScaleBias;
|
|
int32_t ___screenSizeOverride;
|
|
int32_t ___viewMatrix;
|
|
int32_t ___projectionMatrix;
|
|
int32_t ___viewAndProjectionMatrix;
|
|
int32_t ___inverseViewMatrix;
|
|
int32_t ___inverseProjectionMatrix;
|
|
int32_t ___inverseViewAndProjectionMatrix;
|
|
int32_t ___cameraProjectionMatrix;
|
|
int32_t ___inverseCameraProjectionMatrix;
|
|
int32_t ___worldToCameraMatrix;
|
|
int32_t ___cameraToWorldMatrix;
|
|
int32_t ___shadowBias;
|
|
int32_t ___lightDirection;
|
|
int32_t ___lightPosition;
|
|
int32_t ___cameraWorldClipPlanes;
|
|
int32_t ___billboardNormal;
|
|
int32_t ___billboardTangent;
|
|
int32_t ___billboardCameraParams;
|
|
int32_t ___previousViewProjectionNoJitter;
|
|
int32_t ___viewProjectionNoJitter;
|
|
int32_t ___previousViewProjectionNoJitterStereo;
|
|
int32_t ___viewProjectionNoJitterStereo;
|
|
int32_t ___blitTexture;
|
|
int32_t ___blitScaleBias;
|
|
int32_t ___sourceTex;
|
|
int32_t ___scaleBias;
|
|
int32_t ___scaleBiasRt;
|
|
int32_t ___rtHandleScale;
|
|
int32_t ___rendererColor;
|
|
int32_t ___ditheringTexture;
|
|
int32_t ___ditheringTextureInvSize;
|
|
int32_t ___renderingLayerMaxInt;
|
|
int32_t ___overlayUITexture;
|
|
int32_t ___hdrOutputLuminanceParams;
|
|
int32_t ___hdrOutputGradingParams;
|
|
};
|
|
struct String_t_StaticFields
|
|
{
|
|
String_t* ___Empty;
|
|
};
|
|
struct UnsafeGraphContext_t6E24BDE4C6B0924FCC4DE11BFA5B750FF6F03320_StaticFields
|
|
{
|
|
UnsafeCommandBuffer_tDE6BB2FE234DC7453CA682AB275888E9E35F22F2* ___unsCmd;
|
|
};
|
|
struct XRSystem_tF767981574E3DA643F7A67A995F12DB1C4A97096_StaticFields
|
|
{
|
|
XRLayoutStack_t6F7C0BB97693E7D17B8E2289D355FFF1DE6F4051* ___s_Layout;
|
|
Func_2_t3B89FA9251E6091D6FD350356D078F4712E902B3* ___s_PassAllocator;
|
|
List_1_tA7666C6690CE2AEE97571615AD3AFCE2BB020597* ___s_DisplayList;
|
|
XRDisplaySubsystem_t4B00B0BF1894A039ACFA8DDC2C2EB9301118C1F1* ___s_Display;
|
|
int32_t ___s_MSAASamples;
|
|
float ___s_OcclusionMeshScaling;
|
|
bool ___s_UseVisibilityMesh;
|
|
Material_t18053F08F347D0DCA5E1140EC7EC4533DD8A14E3* ___s_OcclusionMeshMaterial;
|
|
Material_t18053F08F347D0DCA5E1140EC7EC4533DD8A14E3* ___s_MirrorViewMaterial;
|
|
Action_2_tB73C956644B6ABEA48D4056B6E9B2EAABCA040CD* ___s_LayoutOverride;
|
|
XRPass_tFC4577E97B88E0EAAAB2EB387AB3A92E9EB9C6DF* ___emptyPass;
|
|
bool ___U3CsinglePassAllowedU3Ek__BackingField;
|
|
int32_t ___U3CfoveatedRenderingCapsU3Ek__BackingField;
|
|
bool ___U3CdumpDebugInfoU3Ek__BackingField;
|
|
};
|
|
struct U3CU3Ec_t590CD067BFDD49421D57479BC8BC6311FABEA5F1_StaticFields
|
|
{
|
|
U3CU3Ec_t590CD067BFDD49421D57479BC8BC6311FABEA5F1* ___U3CU3E9;
|
|
BaseRenderFunc_2_tAAA1D1FA06E9CB98754B751EAF6411CE94F73FB6* ___U3CU3E9__35_0;
|
|
};
|
|
struct U3CU3Ec_t982F331B7EDFDBCE7D881BB6DF31BAC0023967CC_StaticFields
|
|
{
|
|
U3CU3Ec_t982F331B7EDFDBCE7D881BB6DF31BAC0023967CC* ___U3CU3E9;
|
|
Comparison_1_t1D70AD681199BAE9A46BB890478D827A9BA04A36* ___U3CU3E9__26_0;
|
|
};
|
|
struct U3CU3Ec_t7B444D3F3AAA0A33FD57F6821D1F929FEB0555F5_StaticFields
|
|
{
|
|
U3CU3Ec_t7B444D3F3AAA0A33FD57F6821D1F929FEB0555F5* ___U3CU3E9;
|
|
BaseRenderFunc_2_t2AE7A68115EFC92E8E3068C0057F850871744886* ___U3CU3E9__10_0;
|
|
};
|
|
struct U3CU3Ec_tAA26B4D41608EBD4DBF0897F2337AC0EC4D686C3_StaticFields
|
|
{
|
|
U3CU3Ec_tAA26B4D41608EBD4DBF0897F2337AC0EC4D686C3* ___U3CU3E9;
|
|
BaseRenderFunc_2_t8B6F86F4EF8472D6B5D84629A6E35307F19167AE* ___U3CU3E9__15_0;
|
|
};
|
|
struct U3CU3Ec_tFB39F0BD639048162C0147869970658EACB36812_StaticFields
|
|
{
|
|
U3CU3Ec_tFB39F0BD639048162C0147869970658EACB36812* ___U3CU3E9;
|
|
BaseRenderFunc_2_tEE48E9E21762BFE07AE97EF2E3E0E79793067606* ___U3CU3E9__8_0;
|
|
};
|
|
struct U3CU3Ec_t15B0AFDB480CE815F26375C7F569551639E65A2B_StaticFields
|
|
{
|
|
U3CU3Ec_t15B0AFDB480CE815F26375C7F569551639E65A2B* ___U3CU3E9;
|
|
BaseRenderFunc_2_tC164CC802D091B68B6A0497F4C6AEF80D564AB57* ___U3CU3E9__12_0;
|
|
};
|
|
struct U3CU3Ec_tAD2991BC81926CE242650EADA7F8BD93F3ABF02C_StaticFields
|
|
{
|
|
U3CU3Ec_tAD2991BC81926CE242650EADA7F8BD93F3ABF02C* ___U3CU3E9;
|
|
BaseRenderFunc_2_t0F078AB23E7CF63F4670F4E80CFDE4CD4BEB0F72* ___U3CU3E9__140_0;
|
|
BaseRenderFunc_2_t55E594CC6D951D462AFB9867489BE9665166DC90* ___U3CU3E9__142_0;
|
|
BaseRenderFunc_2_t592BAE028800F18A071D869FCB982B997F5E13A2* ___U3CU3E9__143_0;
|
|
BaseRenderFunc_2_t762A186FC860B473359C6CA1DE69EDCFB3985B45* ___U3CU3E9__149_0;
|
|
BaseRenderFunc_2_tF8B0FC77C310265D6F0EA096E14C24E57D0FEAD6* ___U3CU3E9__151_0;
|
|
BaseRenderFunc_2_tECA37CC68AF2BD6C31F2DFF58EF746DC7B2C5AFE* ___U3CU3E9__153_0;
|
|
};
|
|
struct Profiling_t1148A935DE86EC9E67DA54238721B4178A744AD3_StaticFields
|
|
{
|
|
ProfilingSampler_t420D4672EDB44E0EF980B31ADFD9E5747200FECE* ___setMRTAttachmentsList;
|
|
ProfilingSampler_t420D4672EDB44E0EF980B31ADFD9E5747200FECE* ___setAttachmentList;
|
|
ProfilingSampler_t420D4672EDB44E0EF980B31ADFD9E5747200FECE* ___execute;
|
|
ProfilingSampler_t420D4672EDB44E0EF980B31ADFD9E5747200FECE* ___setupFrameData;
|
|
ProfilingSampler_t420D4672EDB44E0EF980B31ADFD9E5747200FECE* ___setPerCameraShaderVariables;
|
|
ProfilingSampler_t420D4672EDB44E0EF980B31ADFD9E5747200FECE* ___sortRenderPasses;
|
|
ProfilingSampler_t420D4672EDB44E0EF980B31ADFD9E5747200FECE* ___recordRenderGraph;
|
|
ProfilingSampler_t420D4672EDB44E0EF980B31ADFD9E5747200FECE* ___setupLights;
|
|
ProfilingSampler_t420D4672EDB44E0EF980B31ADFD9E5747200FECE* ___setupCamera;
|
|
ProfilingSampler_t420D4672EDB44E0EF980B31ADFD9E5747200FECE* ___vfxProcessCamera;
|
|
ProfilingSampler_t420D4672EDB44E0EF980B31ADFD9E5747200FECE* ___addRenderPasses;
|
|
ProfilingSampler_t420D4672EDB44E0EF980B31ADFD9E5747200FECE* ___setupRenderPasses;
|
|
ProfilingSampler_t420D4672EDB44E0EF980B31ADFD9E5747200FECE* ___clearRenderingState;
|
|
ProfilingSampler_t420D4672EDB44E0EF980B31ADFD9E5747200FECE* ___internalStartRendering;
|
|
ProfilingSampler_t420D4672EDB44E0EF980B31ADFD9E5747200FECE* ___internalFinishRenderingCommon;
|
|
ProfilingSampler_t420D4672EDB44E0EF980B31ADFD9E5747200FECE* ___drawGizmos;
|
|
ProfilingSampler_t420D4672EDB44E0EF980B31ADFD9E5747200FECE* ___drawWireOverlay;
|
|
ProfilingSampler_t420D4672EDB44E0EF980B31ADFD9E5747200FECE* ___beginXRRendering;
|
|
ProfilingSampler_t420D4672EDB44E0EF980B31ADFD9E5747200FECE* ___endXRRendering;
|
|
ProfilingSampler_t420D4672EDB44E0EF980B31ADFD9E5747200FECE* ___initRenderGraphFrame;
|
|
ProfilingSampler_t420D4672EDB44E0EF980B31ADFD9E5747200FECE* ___setEditorTarget;
|
|
};
|
|
struct RenderPassBlock_t584C655A57D46F7421E00DB28F125ABB455C796C_StaticFields
|
|
{
|
|
int32_t ___BeforeRendering;
|
|
int32_t ___MainRenderingOpaque;
|
|
int32_t ___MainRenderingTransparent;
|
|
int32_t ___AfterRendering;
|
|
};
|
|
struct RenderBlock_t7243EA6BF13109280A62FF4C7108E5C2F8676712_StaticFields
|
|
{
|
|
ProfilingSampler_t420D4672EDB44E0EF980B31ADFD9E5747200FECE* ___beforeRendering;
|
|
ProfilingSampler_t420D4672EDB44E0EF980B31ADFD9E5747200FECE* ___mainRenderingOpaque;
|
|
ProfilingSampler_t420D4672EDB44E0EF980B31ADFD9E5747200FECE* ___mainRenderingTransparent;
|
|
ProfilingSampler_t420D4672EDB44E0EF980B31ADFD9E5747200FECE* ___afterRendering;
|
|
};
|
|
struct RenderPass_tA744ADA1424B5992F4E272692C1964A7B7469EFD_StaticFields
|
|
{
|
|
ProfilingSampler_t420D4672EDB44E0EF980B31ADFD9E5747200FECE* ___configure;
|
|
ProfilingSampler_t420D4672EDB44E0EF980B31ADFD9E5747200FECE* ___setRenderPassAttachments;
|
|
};
|
|
struct Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_StaticFields
|
|
{
|
|
String_t* ___TrueString;
|
|
String_t* ___FalseString;
|
|
};
|
|
struct CommandBufferHelpers_tB8C09D01D6F0369DF52DEA955F017D6001BC72E5_StaticFields
|
|
{
|
|
RasterCommandBuffer_t4300C4F080EA3CF43C7ACFDBD4F94EA633FE98E8* ___rasterCmd;
|
|
ComputeCommandBuffer_tA6FA5F68FE745317C94802C6A828FC21AC0ADF61* ___computeCmd;
|
|
UnsafeCommandBuffer_tDE6BB2FE234DC7453CA682AB275888E9E35F22F2* ___unsafeCmd;
|
|
};
|
|
struct Enum_t2A1A94B24E3B776EEF4E5E485E290BB9D4D072E2_StaticFields
|
|
{
|
|
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___enumSeperatorCharArray;
|
|
};
|
|
struct IntPtr_t_StaticFields
|
|
{
|
|
intptr_t ___Zero;
|
|
};
|
|
struct Mathf_tE284D016E3B297B72311AAD9EB8F0E643F6A4682_StaticFields
|
|
{
|
|
float ___Epsilon;
|
|
};
|
|
struct Matrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6_StaticFields
|
|
{
|
|
Matrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6 ___zeroMatrix;
|
|
Matrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6 ___identityMatrix;
|
|
};
|
|
struct Quaternion_tDA59F214EF07D7700B26E40E562F267AF7306974_StaticFields
|
|
{
|
|
Quaternion_tDA59F214EF07D7700B26E40E562F267AF7306974 ___identityQuaternion;
|
|
};
|
|
struct RasterGraphContext_tC4D3E53FF7131476487751ACB0237D56C8327147_StaticFields
|
|
{
|
|
RasterCommandBuffer_t4300C4F080EA3CF43C7ACFDBD4F94EA633FE98E8* ___rastercmd;
|
|
};
|
|
struct RenderQueueRange_t7518252AA6426B1EA45D3D9B394F304EEF784D71_StaticFields
|
|
{
|
|
int32_t ___minimumBound;
|
|
int32_t ___maximumBound;
|
|
};
|
|
struct RenderingLayerMask_tD73B9FC1A65A937F18E56833FC83BF89C2B085A1_StaticFields
|
|
{
|
|
RenderingLayerMask_tD73B9FC1A65A937F18E56833FC83BF89C2B085A1 ___U3CdefaultRenderingLayerMaskU3Ek__BackingField;
|
|
};
|
|
struct ShaderTagId_t453E2085B5EE9448FF75E550CAB111EFF690ECB0_StaticFields
|
|
{
|
|
ShaderTagId_t453E2085B5EE9448FF75E550CAB111EFF690ECB0 ___none;
|
|
};
|
|
struct UniversalRenderPipeline_t54B4737DC500C08628C5BE283D8C583C14DED98F_StaticFields
|
|
{
|
|
bool ___stackedOverlayCamerasRequireDepthForPostProcessing;
|
|
RenderGraph_t73ECE03B3CA3D0D17F1448D64AE020E81592AA1E* ___s_RenderGraph;
|
|
RTHandleResourcePool_tB08B48917D5F811C85F6DDF0D751436D366CEF7A* ___s_RTHandlePool;
|
|
bool ___useRenderGraph;
|
|
bool ___U3CcanOptimizeScreenMSAASamplesU3Ek__BackingField;
|
|
int32_t ___U3CstartFrameScreenMSAASamplesU3Ek__BackingField;
|
|
Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3 ___k_DefaultLightPosition;
|
|
Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3 ___k_DefaultLightColor;
|
|
Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3 ___k_DefaultLightAttenuation;
|
|
Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3 ___k_DefaultLightSpotDirection;
|
|
Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3 ___k_DefaultLightsProbeChannel;
|
|
List_1_tF42FEB6C3B18B7E7C8F2DE1FEBA00D2491736317* ___m_ShadowBiasData;
|
|
List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* ___m_ShadowResolutionData;
|
|
RequestLightsDelegate_t585505A75681754DA53BE119D8611B605F0243BB* ___lightsDelegate;
|
|
};
|
|
struct Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7_StaticFields
|
|
{
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___zeroVector;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___oneVector;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___upVector;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___downVector;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___leftVector;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___rightVector;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___positiveInfinityVector;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___negativeInfinityVector;
|
|
};
|
|
struct Vector2Int_t69B2886EBAB732D9B880565E18E7568F3DE0CE6A_StaticFields
|
|
{
|
|
Vector2Int_t69B2886EBAB732D9B880565E18E7568F3DE0CE6A ___s_Zero;
|
|
Vector2Int_t69B2886EBAB732D9B880565E18E7568F3DE0CE6A ___s_One;
|
|
Vector2Int_t69B2886EBAB732D9B880565E18E7568F3DE0CE6A ___s_Up;
|
|
Vector2Int_t69B2886EBAB732D9B880565E18E7568F3DE0CE6A ___s_Down;
|
|
Vector2Int_t69B2886EBAB732D9B880565E18E7568F3DE0CE6A ___s_Left;
|
|
Vector2Int_t69B2886EBAB732D9B880565E18E7568F3DE0CE6A ___s_Right;
|
|
};
|
|
struct Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2_StaticFields
|
|
{
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___zeroVector;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___oneVector;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___upVector;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___downVector;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___leftVector;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___rightVector;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___forwardVector;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___backVector;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___positiveInfinityVector;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___negativeInfinityVector;
|
|
};
|
|
struct Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3_StaticFields
|
|
{
|
|
Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3 ___zeroVector;
|
|
Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3 ___oneVector;
|
|
Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3 ___positiveInfinityVector;
|
|
Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3 ___negativeInfinityVector;
|
|
};
|
|
struct float2_t24AA5C0F612B0672315EDAFEC9D9E7F1C4A5B0BA_StaticFields
|
|
{
|
|
float2_t24AA5C0F612B0672315EDAFEC9D9E7F1C4A5B0BA ___zero;
|
|
};
|
|
struct float3_t4AB5D88249ADB24F69FFD0793E8ED25E1CC3745E_StaticFields
|
|
{
|
|
float3_t4AB5D88249ADB24F69FFD0793E8ED25E1CC3745E ___zero;
|
|
};
|
|
struct float4_t89D9A294E7A79BD81BFBDD18654508532958555E_StaticFields
|
|
{
|
|
float4_t89D9A294E7A79BD81BFBDD18654508532958555E ___zero;
|
|
};
|
|
struct CommandBuffer_tB56007DC84EF56296C325EC32DD12AC1E3DC91F7_StaticFields
|
|
{
|
|
bool ___ThrowOnSetRenderTarget;
|
|
};
|
|
struct DebugHandler_t3A09E2CFD1CA6F5C192968A6FF19EE4863F44DA4_StaticFields
|
|
{
|
|
int32_t ___k_DebugColorInvalidModePropertyId;
|
|
int32_t ___k_DebugCurrentRealTimeId;
|
|
int32_t ___k_DebugColorPropertyId;
|
|
int32_t ___k_DebugTexturePropertyId;
|
|
int32_t ___k_DebugFontId;
|
|
int32_t ___k_DebugTextureNoStereoPropertyId;
|
|
int32_t ___k_DebugTextureDisplayRect;
|
|
int32_t ___k_DebugRenderTargetSupportsStereo;
|
|
int32_t ___k_DebugRenderTargetRangeRemap;
|
|
int32_t ___k_DebugMaterialModeId;
|
|
int32_t ___k_DebugVertexAttributeModeId;
|
|
int32_t ___k_DebugMaterialValidationModeId;
|
|
int32_t ___k_DebugMipInfoModeId;
|
|
int32_t ___k_DebugMipMapStatusModeId;
|
|
int32_t ___k_DebugMipMapShowStatusCodeId;
|
|
int32_t ___k_DebugMipMapOpacityId;
|
|
int32_t ___k_DebugMipMapRecentlyUpdatedCooldownId;
|
|
int32_t ___k_DebugMipMapTerrainTextureModeId;
|
|
int32_t ___k_DebugSceneOverrideModeId;
|
|
int32_t ___k_DebugFullScreenModeId;
|
|
int32_t ___k_DebugValidationModeId;
|
|
int32_t ___k_DebugValidateBelowMinThresholdColorPropertyId;
|
|
int32_t ___k_DebugValidateAboveMaxThresholdColorPropertyId;
|
|
int32_t ___k_DebugMaxPixelCost;
|
|
int32_t ___k_DebugLightingModeId;
|
|
int32_t ___k_DebugLightingFeatureFlagsId;
|
|
int32_t ___k_DebugValidateAlbedoMinLuminanceId;
|
|
int32_t ___k_DebugValidateAlbedoMaxLuminanceId;
|
|
int32_t ___k_DebugValidateAlbedoSaturationToleranceId;
|
|
int32_t ___k_DebugValidateAlbedoHueToleranceId;
|
|
int32_t ___k_DebugValidateAlbedoCompareColorId;
|
|
int32_t ___k_DebugValidateMetallicMinValueId;
|
|
int32_t ___k_DebugValidateMetallicMaxValueId;
|
|
int32_t ___k_ValidationChannelsId;
|
|
int32_t ___k_RangeMinimumId;
|
|
int32_t ___k_RangeMaximumId;
|
|
ProfilingSampler_t420D4672EDB44E0EF980B31ADFD9E5747200FECE* ___s_DebugSetupSampler;
|
|
ProfilingSampler_t420D4672EDB44E0EF980B31ADFD9E5747200FECE* ___s_DebugFinalValidationSampler;
|
|
};
|
|
struct Exception_t_StaticFields
|
|
{
|
|
RuntimeObject* ___s_EDILock;
|
|
};
|
|
struct Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_StaticFields
|
|
{
|
|
int32_t ___OffsetOfInstanceIDInCPlusPlusObject;
|
|
};
|
|
struct RendererList_t608CE60421616EF4211F5B8AC62E3C36D4BDDF85_StaticFields
|
|
{
|
|
RendererList_t608CE60421616EF4211F5B8AC62E3C36D4BDDF85 ___nullRendererList;
|
|
};
|
|
struct ScriptableRenderContext_t5AB09B3602BEB456E0DC3D53926D3A3BDAF08E36_StaticFields
|
|
{
|
|
ShaderTagId_t453E2085B5EE9448FF75E550CAB111EFF690ECB0 ___kRenderTypeTag;
|
|
};
|
|
struct float3x3_tB318DB8C7E54B6CA9E14EB9AC7F5964C1189FC79_StaticFields
|
|
{
|
|
float3x3_tB318DB8C7E54B6CA9E14EB9AC7F5964C1189FC79 ___identity;
|
|
float3x3_tB318DB8C7E54B6CA9E14EB9AC7F5964C1189FC79 ___zero;
|
|
};
|
|
struct float4x4_t7EDD16F7F57DC7F61A6302535F7C19FB97915DF2_StaticFields
|
|
{
|
|
float4x4_t7EDD16F7F57DC7F61A6302535F7C19FB97915DF2 ___identity;
|
|
float4x4_t7EDD16F7F57DC7F61A6302535F7C19FB97915DF2 ___zero;
|
|
};
|
|
struct quaternion_tD6BCBECAF088B9EBAE2345EC8534C7A1A4C910D4_StaticFields
|
|
{
|
|
quaternion_tD6BCBECAF088B9EBAE2345EC8534C7A1A4C910D4 ___identity;
|
|
};
|
|
struct Material_t18053F08F347D0DCA5E1140EC7EC4533DD8A14E3_StaticFields
|
|
{
|
|
int32_t ___k_ColorId;
|
|
int32_t ___k_MainTexId;
|
|
};
|
|
struct RenderGraph_t73ECE03B3CA3D0D17F1448D64AE020E81592AA1E_StaticFields
|
|
{
|
|
int32_t ___kMaxMRTCount;
|
|
List_1_tB5216E2043E168F4E0A122E4594A52A4BA2394F2* ___s_RegisteredGraphs;
|
|
bool ___U3CisRenderGraphViewerActiveU3Ek__BackingField;
|
|
bool ___U3CenableValidityChecksU3Ek__BackingField;
|
|
OnGraphRegisteredDelegate_t7DEB75DB071EA0F49C47E2617D72D40EF3A8188C* ___onGraphRegistered;
|
|
OnGraphRegisteredDelegate_t7DEB75DB071EA0F49C47E2617D72D40EF3A8188C* ___onGraphUnregistered;
|
|
OnExecutionRegisteredDelegate_tCCD234646691F298602408925867AE91256D2226* ___onExecutionRegistered;
|
|
OnExecutionRegisteredDelegate_tCCD234646691F298602408925867AE91256D2226* ___onExecutionUnregistered;
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* ___onDebugDataCaptured;
|
|
};
|
|
struct RenderTargetIdentifier_tA528663AC6EB3911D8E91AA40F7070FA5455442B_StaticFields
|
|
{
|
|
RenderTargetIdentifier_tA528663AC6EB3911D8E91AA40F7070FA5455442B ___Invalid;
|
|
};
|
|
struct ResourceHandle_tD3B1FFBD59EB9C23F0A020351836F834C4BD276C_StaticFields
|
|
{
|
|
uint32_t ___s_CurrentValidBit;
|
|
uint32_t ___s_SharedResourceValidBit;
|
|
};
|
|
struct ScriptableCullingParameters_tD9539440A4A7DA4C7578CCE16F24466A5DC89899_StaticFields
|
|
{
|
|
int32_t ___maximumCullingPlaneCount;
|
|
int32_t ___layerCount;
|
|
};
|
|
struct Texture_t791CBB51219779964E0E8A2ED7C1AA5F92A4A700_StaticFields
|
|
{
|
|
int32_t ___GenerateAllMips;
|
|
};
|
|
struct Type_t_StaticFields
|
|
{
|
|
Binder_t91BFCE95A7057FADF4D8A1A342AFE52872246235* ___s_defaultBinder;
|
|
Il2CppChar ___Delimiter;
|
|
TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* ___EmptyTypes;
|
|
RuntimeObject* ___Missing;
|
|
MemberFilter_tF644F1AE82F611B677CE1964D5A3277DDA21D553* ___FilterAttribute;
|
|
MemberFilter_tF644F1AE82F611B677CE1964D5A3277DDA21D553* ___FilterName;
|
|
MemberFilter_tF644F1AE82F611B677CE1964D5A3277DDA21D553* ___FilterNameIgnoreCase;
|
|
};
|
|
struct DeferredLights_t8A3C2AC9C4AF92CF3411F722D8A094EA07DA14AC_StaticFields
|
|
{
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ___k_GBufferNames;
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ___k_GBufferShaderPropertyIDs;
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ___k_StencilDeferredPassNames;
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ___k_ClusterDeferredPassNames;
|
|
uint16_t ___k_InvalidLightOffset;
|
|
String_t* ___k_SetupLights;
|
|
String_t* ___k_DeferredPass;
|
|
String_t* ___k_DeferredShadingPass;
|
|
String_t* ___k_DeferredStencilPass;
|
|
String_t* ___k_DeferredFogPass;
|
|
String_t* ___k_SetupLightConstants;
|
|
float ___kStencilShapeGuard;
|
|
ProfilingSampler_t420D4672EDB44E0EF980B31ADFD9E5747200FECE* ___m_ProfilingSetupLights;
|
|
ProfilingSampler_t420D4672EDB44E0EF980B31ADFD9E5747200FECE* ___m_ProfilingDeferredPass;
|
|
ProfilingSampler_t420D4672EDB44E0EF980B31ADFD9E5747200FECE* ___m_ProfilingSetupLightConstants;
|
|
ProfilingSampler_t420D4672EDB44E0EF980B31ADFD9E5747200FECE* ___s_SetupDeferredLights;
|
|
};
|
|
struct DrawingSettings_t3B64EB029DB6F94A1F2A9B2D19D2969AE361BB49_StaticFields
|
|
{
|
|
int32_t ___maxShaderPasses;
|
|
};
|
|
struct ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0_StaticFields
|
|
{
|
|
RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B* ___k_CameraTarget;
|
|
};
|
|
struct TextureHandle_t680ABA3F8B50859351BA5DD66220084F87F37388_StaticFields
|
|
{
|
|
TextureHandle_t680ABA3F8B50859351BA5DD66220084F87F37388 ___s_NullHandle;
|
|
};
|
|
struct UpdateTransformsJob_t7CF957169E8C6560084F48A51BC15A447F3002C7_StaticFields
|
|
{
|
|
quaternion_tD6BCBECAF088B9EBAE2345EC8534C7A1A4C910D4 ___k_MinusYtoZRotation;
|
|
};
|
|
struct Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184_StaticFields
|
|
{
|
|
CameraCallback_t844E527BFE37BC0495E7F67993E43C07642DA9DD* ___onPreCull;
|
|
CameraCallback_t844E527BFE37BC0495E7F67993E43C07642DA9DD* ___onPreRender;
|
|
CameraCallback_t844E527BFE37BC0495E7F67993E43C07642DA9DD* ___onPostRender;
|
|
};
|
|
struct RendererListParams_t13F72282BCE2DC255747FE7694C6BBC3377944B1_StaticFields
|
|
{
|
|
RendererListParams_t13F72282BCE2DC255747FE7694C6BBC3377944B1 ___Invalid;
|
|
};
|
|
struct ScreenSpaceAmbientOcclusionPass_t4E4085E6273C80B0561CD6F348107F8E010DC981_StaticFields
|
|
{
|
|
int32_t ___s_AmbientOcclusionParamID;
|
|
int32_t ___s_SSAOParamsID;
|
|
int32_t ___s_SSAOBlueNoiseParamsID;
|
|
int32_t ___s_BlueNoiseTextureID;
|
|
int32_t ___s_SSAOFinalTextureID;
|
|
int32_t ___s_CameraViewXExtentID;
|
|
int32_t ___s_CameraViewYExtentID;
|
|
int32_t ___s_CameraViewZExtentID;
|
|
int32_t ___s_ProjectionParams2ID;
|
|
int32_t ___s_CameraViewProjectionsID;
|
|
int32_t ___s_CameraViewTopLeftCornerID;
|
|
int32_t ___s_CameraDepthTextureID;
|
|
int32_t ___s_CameraNormalsTextureID;
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ___m_BilateralTexturesIndices;
|
|
ShaderPassesU5BU5D_t4D261BCE8FF9CC39325D8B095F6991A0135415DF* ___m_BilateralPasses;
|
|
ShaderPassesU5BU5D_t4D261BCE8FF9CC39325D8B095F6991A0135415DF* ___m_BilateralAfterOpaquePasses;
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ___m_GaussianTexturesIndices;
|
|
ShaderPassesU5BU5D_t4D261BCE8FF9CC39325D8B095F6991A0135415DF* ___m_GaussianPasses;
|
|
ShaderPassesU5BU5D_t4D261BCE8FF9CC39325D8B095F6991A0135415DF* ___m_GaussianAfterOpaquePasses;
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ___m_KawaseTexturesIndices;
|
|
ShaderPassesU5BU5D_t4D261BCE8FF9CC39325D8B095F6991A0135415DF* ___m_KawasePasses;
|
|
ShaderPassesU5BU5D_t4D261BCE8FF9CC39325D8B095F6991A0135415DF* ___m_KawaseAfterOpaquePasses;
|
|
};
|
|
struct ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892_StaticFields
|
|
{
|
|
ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892* ___current;
|
|
bool ___m_UseOptimizedStoreActions;
|
|
RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B* ___k_CameraTarget;
|
|
RenderTargetIdentifierU5BU5D_t179798C153B7CE381B41C57863F98CB24023C4CE* ___m_ActiveColorAttachmentIDs;
|
|
RTHandleU5BU5D_tE4B403B060D159B839BF74E8B59F8DCD52CF97DF* ___m_ActiveColorAttachments;
|
|
RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B* ___m_ActiveDepthAttachment;
|
|
RenderBufferStoreActionU5BU5D_tFEA8F5DD460573EA9F35FBEC5727D1804C5DCBF5* ___m_ActiveColorStoreActions;
|
|
int32_t ___m_ActiveDepthStoreAction;
|
|
RenderTargetIdentifierU5BU5DU5BU5D_tDB35F8D017FE3AD8BB35E08E323074D47C5A10BB* ___m_TrimmedColorAttachmentCopyIDs;
|
|
RTHandleU5BU5DU5BU5D_t6066EC3F94599A5A42DA9A893F102E9618CB612F* ___m_TrimmedColorAttachmentCopies;
|
|
PlaneU5BU5D_t4EEF66BAA8B0140EFFF34F6183CE7F80546592BE* ___s_Planes;
|
|
Vector4U5BU5D_tC0F3A7115F85007510F6D173968200CD31BCF7AD* ___s_VectorPlanes;
|
|
};
|
|
struct DecalProjector_tE7CEBAABFEF36162FD325321C1F94173CEFEDF64_StaticFields
|
|
{
|
|
DecalProjectorAction_tDFCBDEE542B3D640BD121E036275AA51A003CF5C* ___onDecalAdd;
|
|
DecalProjectorAction_tDFCBDEE542B3D640BD121E036275AA51A003CF5C* ___onDecalRemove;
|
|
DecalProjectorAction_tDFCBDEE542B3D640BD121E036275AA51A003CF5C* ___onDecalPropertyChange;
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* ___onAllDecalPropertyChange;
|
|
DecalProjectorAction_tDFCBDEE542B3D640BD121E036275AA51A003CF5C* ___onDecalMaterialChange;
|
|
Material_t18053F08F347D0DCA5E1140EC7EC4533DD8A14E3* ___U3CdefaultMaterialU3Ek__BackingField;
|
|
};
|
|
struct UniversalRenderPipelineAsset_tE8A9AA6F030CC3B558CEA2EB54FFF4FC58CA6232_StaticFields
|
|
{
|
|
int32_t ___AdditionalLightsDefaultShadowResolutionTierLow;
|
|
int32_t ___AdditionalLightsDefaultShadowResolutionTierMedium;
|
|
int32_t ___AdditionalLightsDefaultShadowResolutionTierHigh;
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ___s_Names;
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ___s_Values;
|
|
GraphicsFormatU5BU5DU5BU5D_t1424BD937A890524D2A66FF39E61DEB0F10FE0A2* ___s_LightCookieFormatList;
|
|
};
|
|
struct UniversalRenderer_t31019D4AD52F646128E0D1649E7B87E33BA36D8A_StaticFields
|
|
{
|
|
List_1_t4673975A297A80D4D4A65EB5A2BE3B6BD1EED9AF* ___k_DepthNormalsOnly;
|
|
RTHandleU5BU5D_tE4B403B060D159B839BF74E8B59F8DCD52CF97DF* ___m_RenderGraphCameraColorHandles;
|
|
RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B* ___m_RenderGraphCameraDepthHandle;
|
|
int32_t ___m_CurrentColorHandle;
|
|
RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B* ___m_RenderGraphDebugTextureHandle;
|
|
bool ___m_RequiresIntermediateAttachments;
|
|
};
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
struct DelegateU5BU5D_tC5AB7E8F745616680F337909D3A8E6C722CDF771 : public RuntimeArray
|
|
{
|
|
ALIGN_FIELD (8) Delegate_t* m_Items[1];
|
|
|
|
inline Delegate_t* GetAt(il2cpp_array_size_t index) const
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items[index];
|
|
}
|
|
inline Delegate_t** GetAddressAt(il2cpp_array_size_t index)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAt(il2cpp_array_size_t index, Delegate_t* value)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
m_Items[index] = value;
|
|
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
|
|
}
|
|
inline Delegate_t* GetAtUnchecked(il2cpp_array_size_t index) const
|
|
{
|
|
return m_Items[index];
|
|
}
|
|
inline Delegate_t** GetAddressAtUnchecked(il2cpp_array_size_t index)
|
|
{
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAtUnchecked(il2cpp_array_size_t index, Delegate_t* value)
|
|
{
|
|
m_Items[index] = value;
|
|
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
|
|
}
|
|
};
|
|
struct DecalProjectorU5BU5D_t4DB89E5586C0FD4200DA223C0ADAFD3D66BF21F3 : public RuntimeArray
|
|
{
|
|
ALIGN_FIELD (8) DecalProjector_tE7CEBAABFEF36162FD325321C1F94173CEFEDF64* m_Items[1];
|
|
|
|
inline DecalProjector_tE7CEBAABFEF36162FD325321C1F94173CEFEDF64* GetAt(il2cpp_array_size_t index) const
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items[index];
|
|
}
|
|
inline DecalProjector_tE7CEBAABFEF36162FD325321C1F94173CEFEDF64** GetAddressAt(il2cpp_array_size_t index)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAt(il2cpp_array_size_t index, DecalProjector_tE7CEBAABFEF36162FD325321C1F94173CEFEDF64* value)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
m_Items[index] = value;
|
|
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
|
|
}
|
|
inline DecalProjector_tE7CEBAABFEF36162FD325321C1F94173CEFEDF64* GetAtUnchecked(il2cpp_array_size_t index) const
|
|
{
|
|
return m_Items[index];
|
|
}
|
|
inline DecalProjector_tE7CEBAABFEF36162FD325321C1F94173CEFEDF64** GetAddressAtUnchecked(il2cpp_array_size_t index)
|
|
{
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAtUnchecked(il2cpp_array_size_t index, DecalProjector_tE7CEBAABFEF36162FD325321C1F94173CEFEDF64* value)
|
|
{
|
|
m_Items[index] = value;
|
|
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
|
|
}
|
|
};
|
|
struct Matrix4x4U5BU5D_t9C51C93425FABC022B506D2DB3A5FA70F9752C4D : public RuntimeArray
|
|
{
|
|
ALIGN_FIELD (8) Matrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6 m_Items[1];
|
|
|
|
inline Matrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6 GetAt(il2cpp_array_size_t index) const
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items[index];
|
|
}
|
|
inline Matrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6* GetAddressAt(il2cpp_array_size_t index)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAt(il2cpp_array_size_t index, Matrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6 value)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
m_Items[index] = value;
|
|
}
|
|
inline Matrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6 GetAtUnchecked(il2cpp_array_size_t index) const
|
|
{
|
|
return m_Items[index];
|
|
}
|
|
inline Matrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6* GetAddressAtUnchecked(il2cpp_array_size_t index)
|
|
{
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAtUnchecked(il2cpp_array_size_t index, Matrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6 value)
|
|
{
|
|
m_Items[index] = value;
|
|
}
|
|
};
|
|
struct SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C : public RuntimeArray
|
|
{
|
|
ALIGN_FIELD (8) float m_Items[1];
|
|
|
|
inline float GetAt(il2cpp_array_size_t index) const
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items[index];
|
|
}
|
|
inline float* GetAddressAt(il2cpp_array_size_t index)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAt(il2cpp_array_size_t index, float value)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
m_Items[index] = value;
|
|
}
|
|
inline float GetAtUnchecked(il2cpp_array_size_t index) const
|
|
{
|
|
return m_Items[index];
|
|
}
|
|
inline float* GetAddressAtUnchecked(il2cpp_array_size_t index)
|
|
{
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAtUnchecked(il2cpp_array_size_t index, float value)
|
|
{
|
|
m_Items[index] = value;
|
|
}
|
|
};
|
|
struct BoundingSphereU5BU5D_tD7485B1D5D5A0EE26537B093423FC3AC149BEA47 : public RuntimeArray
|
|
{
|
|
ALIGN_FIELD (8) BoundingSphere_t2DDB3D1711A6920C0ECA9217D3E4E14AFF03C010 m_Items[1];
|
|
|
|
inline BoundingSphere_t2DDB3D1711A6920C0ECA9217D3E4E14AFF03C010 GetAt(il2cpp_array_size_t index) const
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items[index];
|
|
}
|
|
inline BoundingSphere_t2DDB3D1711A6920C0ECA9217D3E4E14AFF03C010* GetAddressAt(il2cpp_array_size_t index)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAt(il2cpp_array_size_t index, BoundingSphere_t2DDB3D1711A6920C0ECA9217D3E4E14AFF03C010 value)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
m_Items[index] = value;
|
|
}
|
|
inline BoundingSphere_t2DDB3D1711A6920C0ECA9217D3E4E14AFF03C010 GetAtUnchecked(il2cpp_array_size_t index) const
|
|
{
|
|
return m_Items[index];
|
|
}
|
|
inline BoundingSphere_t2DDB3D1711A6920C0ECA9217D3E4E14AFF03C010* GetAddressAtUnchecked(il2cpp_array_size_t index)
|
|
{
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAtUnchecked(il2cpp_array_size_t index, BoundingSphere_t2DDB3D1711A6920C0ECA9217D3E4E14AFF03C010 value)
|
|
{
|
|
m_Items[index] = value;
|
|
}
|
|
};
|
|
struct Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C : public RuntimeArray
|
|
{
|
|
ALIGN_FIELD (8) int32_t m_Items[1];
|
|
|
|
inline int32_t GetAt(il2cpp_array_size_t index) const
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items[index];
|
|
}
|
|
inline int32_t* GetAddressAt(il2cpp_array_size_t index)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAt(il2cpp_array_size_t index, int32_t value)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
m_Items[index] = value;
|
|
}
|
|
inline int32_t GetAtUnchecked(il2cpp_array_size_t index) const
|
|
{
|
|
return m_Items[index];
|
|
}
|
|
inline int32_t* GetAddressAtUnchecked(il2cpp_array_size_t index)
|
|
{
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAtUnchecked(il2cpp_array_size_t index, int32_t value)
|
|
{
|
|
m_Items[index] = value;
|
|
}
|
|
};
|
|
struct RTHandleU5BU5D_tE4B403B060D159B839BF74E8B59F8DCD52CF97DF : public RuntimeArray
|
|
{
|
|
ALIGN_FIELD (8) RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B* m_Items[1];
|
|
|
|
inline RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B* GetAt(il2cpp_array_size_t index) const
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items[index];
|
|
}
|
|
inline RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B** GetAddressAt(il2cpp_array_size_t index)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAt(il2cpp_array_size_t index, RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B* value)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
m_Items[index] = value;
|
|
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
|
|
}
|
|
inline RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B* GetAtUnchecked(il2cpp_array_size_t index) const
|
|
{
|
|
return m_Items[index];
|
|
}
|
|
inline RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B** GetAddressAtUnchecked(il2cpp_array_size_t index)
|
|
{
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAtUnchecked(il2cpp_array_size_t index, RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B* value)
|
|
{
|
|
m_Items[index] = value;
|
|
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
|
|
}
|
|
};
|
|
struct BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4 : public RuntimeArray
|
|
{
|
|
ALIGN_FIELD (8) bool m_Items[1];
|
|
|
|
inline bool GetAt(il2cpp_array_size_t index) const
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items[index];
|
|
}
|
|
inline bool* GetAddressAt(il2cpp_array_size_t index)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAt(il2cpp_array_size_t index, bool value)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
m_Items[index] = value;
|
|
}
|
|
inline bool GetAtUnchecked(il2cpp_array_size_t index) const
|
|
{
|
|
return m_Items[index];
|
|
}
|
|
inline bool* GetAddressAtUnchecked(il2cpp_array_size_t index)
|
|
{
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAtUnchecked(il2cpp_array_size_t index, bool value)
|
|
{
|
|
m_Items[index] = value;
|
|
}
|
|
};
|
|
struct TextureHandleU5BU5D_t544FFA6F5A0E1E5F24EB3C5E5F8547CCE9498BD7 : public RuntimeArray
|
|
{
|
|
ALIGN_FIELD (8) TextureHandle_t680ABA3F8B50859351BA5DD66220084F87F37388 m_Items[1];
|
|
|
|
inline TextureHandle_t680ABA3F8B50859351BA5DD66220084F87F37388 GetAt(il2cpp_array_size_t index) const
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items[index];
|
|
}
|
|
inline TextureHandle_t680ABA3F8B50859351BA5DD66220084F87F37388* GetAddressAt(il2cpp_array_size_t index)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAt(il2cpp_array_size_t index, TextureHandle_t680ABA3F8B50859351BA5DD66220084F87F37388 value)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
m_Items[index] = value;
|
|
}
|
|
inline TextureHandle_t680ABA3F8B50859351BA5DD66220084F87F37388 GetAtUnchecked(il2cpp_array_size_t index) const
|
|
{
|
|
return m_Items[index];
|
|
}
|
|
inline TextureHandle_t680ABA3F8B50859351BA5DD66220084F87F37388* GetAddressAtUnchecked(il2cpp_array_size_t index)
|
|
{
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAtUnchecked(il2cpp_array_size_t index, TextureHandle_t680ABA3F8B50859351BA5DD66220084F87F37388 value)
|
|
{
|
|
m_Items[index] = value;
|
|
}
|
|
};
|
|
struct RenderTargetIdentifierU5BU5D_t179798C153B7CE381B41C57863F98CB24023C4CE : public RuntimeArray
|
|
{
|
|
ALIGN_FIELD (8) RenderTargetIdentifier_tA528663AC6EB3911D8E91AA40F7070FA5455442B m_Items[1];
|
|
|
|
inline RenderTargetIdentifier_tA528663AC6EB3911D8E91AA40F7070FA5455442B GetAt(il2cpp_array_size_t index) const
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items[index];
|
|
}
|
|
inline RenderTargetIdentifier_tA528663AC6EB3911D8E91AA40F7070FA5455442B* GetAddressAt(il2cpp_array_size_t index)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAt(il2cpp_array_size_t index, RenderTargetIdentifier_tA528663AC6EB3911D8E91AA40F7070FA5455442B value)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
m_Items[index] = value;
|
|
}
|
|
inline RenderTargetIdentifier_tA528663AC6EB3911D8E91AA40F7070FA5455442B GetAtUnchecked(il2cpp_array_size_t index) const
|
|
{
|
|
return m_Items[index];
|
|
}
|
|
inline RenderTargetIdentifier_tA528663AC6EB3911D8E91AA40F7070FA5455442B* GetAddressAtUnchecked(il2cpp_array_size_t index)
|
|
{
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAtUnchecked(il2cpp_array_size_t index, RenderTargetIdentifier_tA528663AC6EB3911D8E91AA40F7070FA5455442B value)
|
|
{
|
|
m_Items[index] = value;
|
|
}
|
|
};
|
|
struct RenderBufferStoreActionU5BU5D_tFEA8F5DD460573EA9F35FBEC5727D1804C5DCBF5 : public RuntimeArray
|
|
{
|
|
ALIGN_FIELD (8) int32_t m_Items[1];
|
|
|
|
inline int32_t GetAt(il2cpp_array_size_t index) const
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items[index];
|
|
}
|
|
inline int32_t* GetAddressAt(il2cpp_array_size_t index)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAt(il2cpp_array_size_t index, int32_t value)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
m_Items[index] = value;
|
|
}
|
|
inline int32_t GetAtUnchecked(il2cpp_array_size_t index) const
|
|
{
|
|
return m_Items[index];
|
|
}
|
|
inline int32_t* GetAddressAtUnchecked(il2cpp_array_size_t index)
|
|
{
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAtUnchecked(il2cpp_array_size_t index, int32_t value)
|
|
{
|
|
m_Items[index] = value;
|
|
}
|
|
};
|
|
struct GraphicsFormatU5BU5D_tF6A3D90C430FA3F548B77E5D58D25D71F154E6C5 : public RuntimeArray
|
|
{
|
|
ALIGN_FIELD (8) int32_t m_Items[1];
|
|
|
|
inline int32_t GetAt(il2cpp_array_size_t index) const
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items[index];
|
|
}
|
|
inline int32_t* GetAddressAt(il2cpp_array_size_t index)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAt(il2cpp_array_size_t index, int32_t value)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
m_Items[index] = value;
|
|
}
|
|
inline int32_t GetAtUnchecked(il2cpp_array_size_t index) const
|
|
{
|
|
return m_Items[index];
|
|
}
|
|
inline int32_t* GetAddressAtUnchecked(il2cpp_array_size_t index)
|
|
{
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAtUnchecked(il2cpp_array_size_t index, int32_t value)
|
|
{
|
|
m_Items[index] = value;
|
|
}
|
|
};
|
|
struct Int32U5BU5DU5BU5D_t179D865D5B30EFCBC50F82C9774329C15943466E : public RuntimeArray
|
|
{
|
|
ALIGN_FIELD (8) Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* m_Items[1];
|
|
|
|
inline Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* GetAt(il2cpp_array_size_t index) const
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items[index];
|
|
}
|
|
inline Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C** GetAddressAt(il2cpp_array_size_t index)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAt(il2cpp_array_size_t index, Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* value)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
m_Items[index] = value;
|
|
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
|
|
}
|
|
inline Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* GetAtUnchecked(il2cpp_array_size_t index) const
|
|
{
|
|
return m_Items[index];
|
|
}
|
|
inline Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C** GetAddressAtUnchecked(il2cpp_array_size_t index)
|
|
{
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAtUnchecked(il2cpp_array_size_t index, Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* value)
|
|
{
|
|
m_Items[index] = value;
|
|
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
|
|
}
|
|
};
|
|
struct Hash128U5BU5D_tB104E7247B842648E447B7FCF4748077DC1F8C98 : public RuntimeArray
|
|
{
|
|
ALIGN_FIELD (8) Hash128_t93367F504B687578F893CDBCD13FB95AC8A87A40 m_Items[1];
|
|
|
|
inline Hash128_t93367F504B687578F893CDBCD13FB95AC8A87A40 GetAt(il2cpp_array_size_t index) const
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items[index];
|
|
}
|
|
inline Hash128_t93367F504B687578F893CDBCD13FB95AC8A87A40* GetAddressAt(il2cpp_array_size_t index)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAt(il2cpp_array_size_t index, Hash128_t93367F504B687578F893CDBCD13FB95AC8A87A40 value)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
m_Items[index] = value;
|
|
}
|
|
inline Hash128_t93367F504B687578F893CDBCD13FB95AC8A87A40 GetAtUnchecked(il2cpp_array_size_t index) const
|
|
{
|
|
return m_Items[index];
|
|
}
|
|
inline Hash128_t93367F504B687578F893CDBCD13FB95AC8A87A40* GetAddressAtUnchecked(il2cpp_array_size_t index)
|
|
{
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAtUnchecked(il2cpp_array_size_t index, Hash128_t93367F504B687578F893CDBCD13FB95AC8A87A40 value)
|
|
{
|
|
m_Items[index] = value;
|
|
}
|
|
};
|
|
struct AttachmentDescriptorU5BU5D_tC70107EBD955FE94BA31C7FDC146069EF9C547C1 : public RuntimeArray
|
|
{
|
|
ALIGN_FIELD (8) AttachmentDescriptor_tBAC9B26B50BB0838C5C0CC22BB296F9DFF41276E m_Items[1];
|
|
|
|
inline AttachmentDescriptor_tBAC9B26B50BB0838C5C0CC22BB296F9DFF41276E GetAt(il2cpp_array_size_t index) const
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items[index];
|
|
}
|
|
inline AttachmentDescriptor_tBAC9B26B50BB0838C5C0CC22BB296F9DFF41276E* GetAddressAt(il2cpp_array_size_t index)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAt(il2cpp_array_size_t index, AttachmentDescriptor_tBAC9B26B50BB0838C5C0CC22BB296F9DFF41276E value)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
m_Items[index] = value;
|
|
}
|
|
inline AttachmentDescriptor_tBAC9B26B50BB0838C5C0CC22BB296F9DFF41276E GetAtUnchecked(il2cpp_array_size_t index) const
|
|
{
|
|
return m_Items[index];
|
|
}
|
|
inline AttachmentDescriptor_tBAC9B26B50BB0838C5C0CC22BB296F9DFF41276E* GetAddressAtUnchecked(il2cpp_array_size_t index)
|
|
{
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAtUnchecked(il2cpp_array_size_t index, AttachmentDescriptor_tBAC9B26B50BB0838C5C0CC22BB296F9DFF41276E value)
|
|
{
|
|
m_Items[index] = value;
|
|
}
|
|
};
|
|
struct PlaneU5BU5D_t4EEF66BAA8B0140EFFF34F6183CE7F80546592BE : public RuntimeArray
|
|
{
|
|
ALIGN_FIELD (8) Plane_tB7D8CC6F7AACF5F3AA483AF005C1102A8577BC0C m_Items[1];
|
|
|
|
inline Plane_tB7D8CC6F7AACF5F3AA483AF005C1102A8577BC0C GetAt(il2cpp_array_size_t index) const
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items[index];
|
|
}
|
|
inline Plane_tB7D8CC6F7AACF5F3AA483AF005C1102A8577BC0C* GetAddressAt(il2cpp_array_size_t index)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAt(il2cpp_array_size_t index, Plane_tB7D8CC6F7AACF5F3AA483AF005C1102A8577BC0C value)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
m_Items[index] = value;
|
|
}
|
|
inline Plane_tB7D8CC6F7AACF5F3AA483AF005C1102A8577BC0C GetAtUnchecked(il2cpp_array_size_t index) const
|
|
{
|
|
return m_Items[index];
|
|
}
|
|
inline Plane_tB7D8CC6F7AACF5F3AA483AF005C1102A8577BC0C* GetAddressAtUnchecked(il2cpp_array_size_t index)
|
|
{
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAtUnchecked(il2cpp_array_size_t index, Plane_tB7D8CC6F7AACF5F3AA483AF005C1102A8577BC0C value)
|
|
{
|
|
m_Items[index] = value;
|
|
}
|
|
};
|
|
struct Vector4U5BU5D_tC0F3A7115F85007510F6D173968200CD31BCF7AD : public RuntimeArray
|
|
{
|
|
ALIGN_FIELD (8) Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3 m_Items[1];
|
|
|
|
inline Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3 GetAt(il2cpp_array_size_t index) const
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items[index];
|
|
}
|
|
inline Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3* GetAddressAt(il2cpp_array_size_t index)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAt(il2cpp_array_size_t index, Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3 value)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
m_Items[index] = value;
|
|
}
|
|
inline Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3 GetAtUnchecked(il2cpp_array_size_t index) const
|
|
{
|
|
return m_Items[index];
|
|
}
|
|
inline Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3* GetAddressAtUnchecked(il2cpp_array_size_t index)
|
|
{
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAtUnchecked(il2cpp_array_size_t index, Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3 value)
|
|
{
|
|
m_Items[index] = value;
|
|
}
|
|
};
|
|
struct GraphicsDeviceTypeU5BU5D_t4322565F239068C66BF47053B83BD6A9A9D16408 : public RuntimeArray
|
|
{
|
|
ALIGN_FIELD (8) int32_t m_Items[1];
|
|
|
|
inline int32_t GetAt(il2cpp_array_size_t index) const
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items[index];
|
|
}
|
|
inline int32_t* GetAddressAt(il2cpp_array_size_t index)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAt(il2cpp_array_size_t index, int32_t value)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
m_Items[index] = value;
|
|
}
|
|
inline int32_t GetAtUnchecked(il2cpp_array_size_t index) const
|
|
{
|
|
return m_Items[index];
|
|
}
|
|
inline int32_t* GetAddressAtUnchecked(il2cpp_array_size_t index)
|
|
{
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAtUnchecked(il2cpp_array_size_t index, int32_t value)
|
|
{
|
|
m_Items[index] = value;
|
|
}
|
|
};
|
|
struct RTHandleU5BU5DU5BU5D_t6066EC3F94599A5A42DA9A893F102E9618CB612F : public RuntimeArray
|
|
{
|
|
ALIGN_FIELD (8) RTHandleU5BU5D_tE4B403B060D159B839BF74E8B59F8DCD52CF97DF* m_Items[1];
|
|
|
|
inline RTHandleU5BU5D_tE4B403B060D159B839BF74E8B59F8DCD52CF97DF* GetAt(il2cpp_array_size_t index) const
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items[index];
|
|
}
|
|
inline RTHandleU5BU5D_tE4B403B060D159B839BF74E8B59F8DCD52CF97DF** GetAddressAt(il2cpp_array_size_t index)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAt(il2cpp_array_size_t index, RTHandleU5BU5D_tE4B403B060D159B839BF74E8B59F8DCD52CF97DF* value)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
m_Items[index] = value;
|
|
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
|
|
}
|
|
inline RTHandleU5BU5D_tE4B403B060D159B839BF74E8B59F8DCD52CF97DF* GetAtUnchecked(il2cpp_array_size_t index) const
|
|
{
|
|
return m_Items[index];
|
|
}
|
|
inline RTHandleU5BU5D_tE4B403B060D159B839BF74E8B59F8DCD52CF97DF** GetAddressAtUnchecked(il2cpp_array_size_t index)
|
|
{
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAtUnchecked(il2cpp_array_size_t index, RTHandleU5BU5D_tE4B403B060D159B839BF74E8B59F8DCD52CF97DF* value)
|
|
{
|
|
m_Items[index] = value;
|
|
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
|
|
}
|
|
};
|
|
struct RenderTargetIdentifierU5BU5DU5BU5D_tDB35F8D017FE3AD8BB35E08E323074D47C5A10BB : public RuntimeArray
|
|
{
|
|
ALIGN_FIELD (8) RenderTargetIdentifierU5BU5D_t179798C153B7CE381B41C57863F98CB24023C4CE* m_Items[1];
|
|
|
|
inline RenderTargetIdentifierU5BU5D_t179798C153B7CE381B41C57863F98CB24023C4CE* GetAt(il2cpp_array_size_t index) const
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items[index];
|
|
}
|
|
inline RenderTargetIdentifierU5BU5D_t179798C153B7CE381B41C57863F98CB24023C4CE** GetAddressAt(il2cpp_array_size_t index)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAt(il2cpp_array_size_t index, RenderTargetIdentifierU5BU5D_t179798C153B7CE381B41C57863F98CB24023C4CE* value)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
m_Items[index] = value;
|
|
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
|
|
}
|
|
inline RenderTargetIdentifierU5BU5D_t179798C153B7CE381B41C57863F98CB24023C4CE* GetAtUnchecked(il2cpp_array_size_t index) const
|
|
{
|
|
return m_Items[index];
|
|
}
|
|
inline RenderTargetIdentifierU5BU5D_t179798C153B7CE381B41C57863F98CB24023C4CE** GetAddressAtUnchecked(il2cpp_array_size_t index)
|
|
{
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAtUnchecked(il2cpp_array_size_t index, RenderTargetIdentifierU5BU5D_t179798C153B7CE381B41C57863F98CB24023C4CE* value)
|
|
{
|
|
m_Items[index] = value;
|
|
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
|
|
}
|
|
};
|
|
struct ShaderTagIdU5BU5D_tE1BA124E13B8096153E25C5AF9C1D15D71466143 : public RuntimeArray
|
|
{
|
|
ALIGN_FIELD (8) ShaderTagId_t453E2085B5EE9448FF75E550CAB111EFF690ECB0 m_Items[1];
|
|
|
|
inline ShaderTagId_t453E2085B5EE9448FF75E550CAB111EFF690ECB0 GetAt(il2cpp_array_size_t index) const
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items[index];
|
|
}
|
|
inline ShaderTagId_t453E2085B5EE9448FF75E550CAB111EFF690ECB0* GetAddressAt(il2cpp_array_size_t index)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAt(il2cpp_array_size_t index, ShaderTagId_t453E2085B5EE9448FF75E550CAB111EFF690ECB0 value)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
m_Items[index] = value;
|
|
}
|
|
inline ShaderTagId_t453E2085B5EE9448FF75E550CAB111EFF690ECB0 GetAtUnchecked(il2cpp_array_size_t index) const
|
|
{
|
|
return m_Items[index];
|
|
}
|
|
inline ShaderTagId_t453E2085B5EE9448FF75E550CAB111EFF690ECB0* GetAddressAtUnchecked(il2cpp_array_size_t index)
|
|
{
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAtUnchecked(il2cpp_array_size_t index, ShaderTagId_t453E2085B5EE9448FF75E550CAB111EFF690ECB0 value)
|
|
{
|
|
m_Items[index] = value;
|
|
}
|
|
};
|
|
struct ItemU5BU5D_t4AC8CDDFF9ED634B9ECE154F0C638C00B12B5CCB : public RuntimeArray
|
|
{
|
|
ALIGN_FIELD (8) Item_tFA847F868B1ECD768A489638A61F7BC398DECDAC m_Items[1];
|
|
|
|
inline Item_tFA847F868B1ECD768A489638A61F7BC398DECDAC GetAt(il2cpp_array_size_t index) const
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items[index];
|
|
}
|
|
inline Item_tFA847F868B1ECD768A489638A61F7BC398DECDAC* GetAddressAt(il2cpp_array_size_t index)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAt(il2cpp_array_size_t index, Item_tFA847F868B1ECD768A489638A61F7BC398DECDAC value)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
m_Items[index] = value;
|
|
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___storage), (void*)NULL);
|
|
}
|
|
inline Item_tFA847F868B1ECD768A489638A61F7BC398DECDAC GetAtUnchecked(il2cpp_array_size_t index) const
|
|
{
|
|
return m_Items[index];
|
|
}
|
|
inline Item_tFA847F868B1ECD768A489638A61F7BC398DECDAC* GetAddressAtUnchecked(il2cpp_array_size_t index)
|
|
{
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAtUnchecked(il2cpp_array_size_t index, Item_tFA847F868B1ECD768A489638A61F7BC398DECDAC value)
|
|
{
|
|
m_Items[index] = value;
|
|
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___storage), (void*)NULL);
|
|
}
|
|
};
|
|
struct DecalEntityItemU5BU5D_t4667E6B7E7BCD5313A0D07A782F44A8954080359 : public RuntimeArray
|
|
{
|
|
ALIGN_FIELD (8) DecalEntityItem_tE2209120E111E679725F7022B0C54DEC6783EA5D m_Items[1];
|
|
|
|
inline DecalEntityItem_tE2209120E111E679725F7022B0C54DEC6783EA5D GetAt(il2cpp_array_size_t index) const
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items[index];
|
|
}
|
|
inline DecalEntityItem_tE2209120E111E679725F7022B0C54DEC6783EA5D* GetAddressAt(il2cpp_array_size_t index)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAt(il2cpp_array_size_t index, DecalEntityItem_tE2209120E111E679725F7022B0C54DEC6783EA5D value)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
m_Items[index] = value;
|
|
}
|
|
inline DecalEntityItem_tE2209120E111E679725F7022B0C54DEC6783EA5D GetAtUnchecked(il2cpp_array_size_t index) const
|
|
{
|
|
return m_Items[index];
|
|
}
|
|
inline DecalEntityItem_tE2209120E111E679725F7022B0C54DEC6783EA5D* GetAddressAtUnchecked(il2cpp_array_size_t index)
|
|
{
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAtUnchecked(il2cpp_array_size_t index, DecalEntityItem_tE2209120E111E679725F7022B0C54DEC6783EA5D value)
|
|
{
|
|
m_Items[index] = value;
|
|
}
|
|
};
|
|
struct ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918 : public RuntimeArray
|
|
{
|
|
ALIGN_FIELD (8) RuntimeObject* m_Items[1];
|
|
|
|
inline RuntimeObject* GetAt(il2cpp_array_size_t index) const
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items[index];
|
|
}
|
|
inline RuntimeObject** GetAddressAt(il2cpp_array_size_t index)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAt(il2cpp_array_size_t index, RuntimeObject* value)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
m_Items[index] = value;
|
|
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
|
|
}
|
|
inline RuntimeObject* GetAtUnchecked(il2cpp_array_size_t index) const
|
|
{
|
|
return m_Items[index];
|
|
}
|
|
inline RuntimeObject** GetAddressAtUnchecked(il2cpp_array_size_t index)
|
|
{
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAtUnchecked(il2cpp_array_size_t index, RuntimeObject* value)
|
|
{
|
|
m_Items[index] = value;
|
|
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
|
|
}
|
|
};
|
|
struct CombinedChunksU5BU5D_tE1B967C0ED5D0439978E22BAE927DAB629A4E5DD : public RuntimeArray
|
|
{
|
|
ALIGN_FIELD (8) CombinedChunks_tCFB3356163B9F9B0E31E0B194E9B415F83340ED9 m_Items[1];
|
|
|
|
inline CombinedChunks_tCFB3356163B9F9B0E31E0B194E9B415F83340ED9 GetAt(il2cpp_array_size_t index) const
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items[index];
|
|
}
|
|
inline CombinedChunks_tCFB3356163B9F9B0E31E0B194E9B415F83340ED9* GetAddressAt(il2cpp_array_size_t index)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAt(il2cpp_array_size_t index, CombinedChunks_tCFB3356163B9F9B0E31E0B194E9B415F83340ED9 value)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
m_Items[index] = value;
|
|
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___entityChunk), (void*)NULL);
|
|
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
|
|
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___cachedChunk), (void*)NULL);
|
|
#endif
|
|
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
|
|
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___culledChunk), (void*)NULL);
|
|
#endif
|
|
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
|
|
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___drawCallChunk), (void*)NULL);
|
|
#endif
|
|
}
|
|
inline CombinedChunks_tCFB3356163B9F9B0E31E0B194E9B415F83340ED9 GetAtUnchecked(il2cpp_array_size_t index) const
|
|
{
|
|
return m_Items[index];
|
|
}
|
|
inline CombinedChunks_tCFB3356163B9F9B0E31E0B194E9B415F83340ED9* GetAddressAtUnchecked(il2cpp_array_size_t index)
|
|
{
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAtUnchecked(il2cpp_array_size_t index, CombinedChunks_tCFB3356163B9F9B0E31E0B194E9B415F83340ED9 value)
|
|
{
|
|
m_Items[index] = value;
|
|
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___entityChunk), (void*)NULL);
|
|
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
|
|
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___cachedChunk), (void*)NULL);
|
|
#endif
|
|
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
|
|
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___culledChunk), (void*)NULL);
|
|
#endif
|
|
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
|
|
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___drawCallChunk), (void*)NULL);
|
|
#endif
|
|
}
|
|
};
|
|
|
|
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Nullable_1__ctor_mC09CE20B08C6A7188EE04F52B6A2E598657A0204_gshared (Nullable_1_t7D98773CC20A842A0846271D1181ECBB0D95926C* __this, RenderQueueRange_t7518252AA6426B1EA45D3D9B394F304EEF784D71 ___0_value, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1__ctor_m21A3AD10EC2C165E8A6A3A533380D5D8BE162787_gshared (List_1_t4673975A297A80D4D4A65EB5A2BE3B6BD1EED9AF* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void List_1_Add_m999CAB0903219BD2CF988827287D44B0B44D69FE_gshared_inline (List_1_t4673975A297A80D4D4A65EB5A2BE3B6BD1EED9AF* __this, ShaderTagId_t453E2085B5EE9448FF75E550CAB111EFF690ECB0 ___0_item, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* ContextContainer_Get_TisRuntimeObject_mD332AE37F62256B78E48145FFDEADB66FEEF3A5E_gshared_inline (ContextContainer_t384E08F63FABEFF6A7F1A753F5EF02699DAD414C* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* RenderGraph_AddRasterRenderPass_TisRuntimeObject_mC67DBCDAE9E5C0D6FA1406B1CD4EA8A1F9244044_gshared (RenderGraph_t73ECE03B3CA3D0D17F1448D64AE020E81592AA1E* __this, String_t* ___0_passName, RuntimeObject** ___1_passData, ProfilingSampler_t420D4672EDB44E0EF980B31ADFD9E5747200FECE* ___2_sampler, String_t* ___3_file, int32_t ___4_line, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BaseRenderFunc_2__ctor_m72268C37DF7D310181ABEF09D65817B1108D843E_gshared (BaseRenderFunc_2_tA367BC6873E6166CAEC57DF6061E145117B9C512* __this, RuntimeObject* ___0_object, intptr_t ___1_method, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DecalChunk_RemoveAtSwapBack_Tisfloat4x4_t7EDD16F7F57DC7F61A6302535F7C19FB97915DF2_mE225441B0A02C93487869B33817022EBF2023283_gshared (DecalChunk_tD2C5831DD2A6E97A7A738C88C5922305BA0513CA* __this, NativeArray_1_t63326FF687E26631308829A9CDB0C51D523D4E9A* ___0_array, int32_t ___1_index, int32_t ___2_count, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DecalChunk_RemoveAtSwapBack_TisSingle_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_m938CD70E1FF91D3803E9854F0872C6BE2F4CCD1B_gshared (DecalChunk_tD2C5831DD2A6E97A7A738C88C5922305BA0513CA* __this, NativeArray_1_t3848EE4B6647317212A754634DE6DBC90B99FBEF* ___0_array, int32_t ___1_index, int32_t ___2_count, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DecalChunk_RemoveAtSwapBack_TisDecalSubDrawCall_t68CDD2E663F805776DE0281AB4FAEDC8B8D9EC49_m4BA3CBFAFEA6D310AACA36EB36A4F76192F8C6CA_gshared (DecalChunk_tD2C5831DD2A6E97A7A738C88C5922305BA0513CA* __this, NativeArray_1_t197AED29D4CF7A6BC8C6C69B7BABD82BDC8475E2* ___0_array, int32_t ___1_index, int32_t ___2_count, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArrayExtensions_ResizeArray_Tisfloat4x4_t7EDD16F7F57DC7F61A6302535F7C19FB97915DF2_m4455C8B60BA08395D0B896AD808F0433ABCCA888_gshared (NativeArray_1_t63326FF687E26631308829A9CDB0C51D523D4E9A* ___0_array, int32_t ___1_capacity, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArrayExtensions_ResizeArray_TisSingle_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_m3093DA203EC655A89B97A720E0E41B9D1F6BF89D_gshared (NativeArray_1_t3848EE4B6647317212A754634DE6DBC90B99FBEF* ___0_array, int32_t ___1_capacity, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArrayExtensions_ResizeArray_TisDecalSubDrawCall_t68CDD2E663F805776DE0281AB4FAEDC8B8D9EC49_m53427FE0458D6B20A22026DD0D267FBEEDE41E78_gshared (NativeArray_1_t197AED29D4CF7A6BC8C6C69B7BABD82BDC8475E2* ___0_array, int32_t ___1_capacity, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NativeArray_1_Dispose_m05C674E687B921C37722A6A1FF938FD56574642E_gshared (NativeArray_1_tA833EB7E3E1C9AF82C37976AD964B8D4BAC38B2C* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NativeArray_1_Dispose_m994685B1A26FB0972542BE1216EBD59B332E880A_gshared (NativeArray_1_t63326FF687E26631308829A9CDB0C51D523D4E9A* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NativeArray_1_Dispose_mC07280A768D065A052D995F3E6175A27CD62E1F6_gshared (NativeArray_1_t3848EE4B6647317212A754634DE6DBC90B99FBEF* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NativeArray_1_Dispose_mACC8FD312FD1CB4F9106BB30A2FED079996CBCD4_gshared (NativeArray_1_t197AED29D4CF7A6BC8C6C69B7BABD82BDC8475E2* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* List_1_get_Item_m33561245D64798C2AB07584C0EC4F240E4839A38_gshared (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* __this, int32_t ___0_index, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR JobHandle_t5DF5F99902FED3C801A81C05205CEA6CE039EF08 IJobExtensions_Schedule_TisDrawCallJob_t3EA2ABC822AD5DF50675A5B437DAB927DB95215D_m5EC4DC118A53DBDBF558451EE4FB9DE5F18A379A_gshared (DrawCallJob_t3EA2ABC822AD5DF50675A5B437DAB927DB95215D ___0_jobData, JobHandle_t5DF5F99902FED3C801A81C05205CEA6CE039EF08 ___1_dependsOn, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NativeArray_1_t6D4C2D5161FC101BAF06059CD9414A2153CCC2A0 NativeArray_1_Reinterpret_TisMatrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6_m0305CE8B48077F1A6A9C1C7146BEDA3A09B8274B_gshared (NativeArray_1_t63326FF687E26631308829A9CDB0C51D523D4E9A* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NativeArray_1_Copy_mCB984DA829C4D613BDCE16D39741EF4FDC95EF92_gshared (NativeArray_1_t6D4C2D5161FC101BAF06059CD9414A2153CCC2A0 ___0_src, int32_t ___1_srcIndex, Matrix4x4U5BU5D_t9C51C93425FABC022B506D2DB3A5FA70F9752C4D* ___2_dst, int32_t ___3_dstIndex, int32_t ___4_length, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NativeArray_1_t3848EE4B6647317212A754634DE6DBC90B99FBEF NativeArray_1_Reinterpret_TisSingle_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_mDCC6EC00BF88D23975965B27D2824BF2F070EB14_gshared (NativeArray_1_t3848EE4B6647317212A754634DE6DBC90B99FBEF* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NativeArray_1_Copy_mF705F6BD4C4D02C73B49A4D937A01BA1048A537D_gshared (NativeArray_1_t3848EE4B6647317212A754634DE6DBC90B99FBEF ___0_src, int32_t ___1_srcIndex, SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C* ___2_dst, int32_t ___3_dstIndex, int32_t ___4_length, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t List_1_get_Count_mED203CDDFC49CE3879C37BC63A8F53B4375C351B_gshared_inline (List_1_t218CEA415E5769B47AB34C68D264977822ECAD17* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DecalEntityItem_tE2209120E111E679725F7022B0C54DEC6783EA5D List_1_get_Item_m54FB7CAFE4C95FB5BAD4BFD0BDAE72F6C6B0E7F3_gshared (List_1_t218CEA415E5769B47AB34C68D264977822ECAD17* __this, int32_t ___0_index, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t Queue_1_get_Count_mC5E49C471693AD17FDBA87D8532FB0676AC0BB75_gshared_inline (Queue_1_tCA24E420CB13C6411AEFC3ECE9E62219F7937A1E* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Queue_1_Dequeue_mF8CBF6CA268A863994D198E7FB69116D39C9D650_gshared (Queue_1_tCA24E420CB13C6411AEFC3ECE9E62219F7937A1E* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_set_Item_m3BF7B0B2C94CCE04F5404BC1BBDE6B1FCFAC802D_gshared (List_1_t218CEA415E5769B47AB34C68D264977822ECAD17* __this, int32_t ___0_index, DecalEntityItem_tE2209120E111E679725F7022B0C54DEC6783EA5D ___1_value, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void List_1_Add_mF87065DB2C5D09F1743E971BED0CCDC4827EB029_gshared_inline (List_1_t218CEA415E5769B47AB34C68D264977822ECAD17* __this, DecalEntityItem_tE2209120E111E679725F7022B0C54DEC6783EA5D ___0_item, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Queue_1_Enqueue_mD0BFD1A401EF2D3489D09B60C30E3468601BBA0A_gshared (Queue_1_tCA24E420CB13C6411AEFC3ECE9E62219F7937A1E* __this, int32_t ___0_item, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t List_1_get_Item_mD99081BEFA1AB3526715F489192B0F7F596C183D_gshared (List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* __this, int32_t ___0_index, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void List_1_Clear_m522A510644863A65AB5D00B85D6D20F27E8868FF_gshared_inline (List_1_t218CEA415E5769B47AB34C68D264977822ECAD17* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Queue_1_Clear_mF9C62216146F40E17E678C66BDFD0672A6A2BFA1_gshared (Queue_1_tCA24E420CB13C6411AEFC3ECE9E62219F7937A1E* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1__ctor_m85ABB9DABC756112634E3DAA683DB6B932717F89_gshared (List_1_t218CEA415E5769B47AB34C68D264977822ECAD17* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Queue_1__ctor_mCFD83A65B216389290AEF3479047C9FBD933BF5D_gshared (Queue_1_tCA24E420CB13C6411AEFC3ECE9E62219F7937A1E* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DecalChunk_RemoveAtSwapBack_TisDecalEntity_t8CAF09C65939503449C4138ADCDC4907196293FD_m36119187CF415D833FDD62E726BC5A1101C68EFB_gshared (DecalChunk_tD2C5831DD2A6E97A7A738C88C5922305BA0513CA* __this, NativeArray_1_t83F02282C33BAD818D67110F7760483208880311* ___0_array, int32_t ___1_index, int32_t ___2_count, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DecalChunk_RemoveAtSwapBack_TisRuntimeObject_m7589FCF9692B333A56368AB65C3CC44A1F5096AD_gshared (DecalChunk_tD2C5831DD2A6E97A7A738C88C5922305BA0513CA* __this, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918** ___0_array, int32_t ___1_index, int32_t ___2_count, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArrayExtensions_ResizeArray_TisDecalEntity_t8CAF09C65939503449C4138ADCDC4907196293FD_m48C0117B395C3815A44062256EA8529C46D36025_gshared (NativeArray_1_t83F02282C33BAD818D67110F7760483208880311* ___0_array, int32_t ___1_capacity, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArrayExtensions_ResizeArray_TisRuntimeObject_m6BFC2474086385E6C47BD8792E0405393BEF2B62_gshared (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918** ___0_array, int32_t ___1_capacity, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NativeArray_1_Dispose_m0032B76C31C760137D0DB03AFF0ADF68197AD3C3_gshared (NativeArray_1_t83F02282C33BAD818D67110F7760483208880311* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1__ctor_m7F078BB342729BDF11327FD89D7872265328F690_gshared (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2__ctor_m517E7F9D104FEAE6646EABDDC9C852510E86077C_gshared (Dictionary_2_t5C96F4B6841710A9013966F76224BAE01FB4B4D1* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1__ctor_m44CF7D068C78C4031FE1623E6502FC9270D1630C_gshared (List_1_t75FC6D059D696BAD77462D09FCDC98B4A7B7D3D4* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1__ctor_m17F501B5A5C289ECE1B4F3D6EBF05DFA421433F8_gshared (List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Dictionary_2_TryGetValue_m4B8EE45640C70BBFD6F3EFF1040983404C098342_gshared (Dictionary_2_t5C96F4B6841710A9013966F76224BAE01FB4B4D1* __this, RuntimeObject* ___0_key, int32_t* ___1_value, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void List_1_Add_mEBCF994CC3814631017F46A387B1A192ED6C85C7_gshared_inline (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* __this, RuntimeObject* ___0_item, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NativeArray_1__ctor_mB7BB23924A114599D399A5EC6C00B2B6407CF66D_gshared (NativeArray_1_tA833EB7E3E1C9AF82C37976AD964B8D4BAC38B2C* __this, int32_t ___0_length, int32_t ___1_allocator, int32_t ___2_options, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void List_1_Add_m53400F87C60C102F372B41825F43DDAA9544F2B7_gshared_inline (List_1_t75FC6D059D696BAD77462D09FCDC98B4A7B7D3D4* __this, CombinedChunks_tCFB3356163B9F9B0E31E0B194E9B415F83340ED9 ___0_item, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void List_1_Add_m0248A96C5334E9A93E6994B7780478BCD994EA3D_gshared_inline (List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* __this, int32_t ___0_item, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2_Add_m63897227AFA7035F1772315ABBBE7FD0A250E10C_gshared (Dictionary_2_t5C96F4B6841710A9013966F76224BAE01FB4B4D1* __this, RuntimeObject* ___0_key, int32_t ___1_value, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Enumerator_t9473BAB568A27E2339D48C1F91319E0F6D244D7A List_1_GetEnumerator_mD8294A7FA2BEB1929487127D476F8EC1CDC23BFC_gshared (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_mD9DC3E3C3697830A4823047AB29A77DBBB5ED419_gshared (Enumerator_t9473BAB568A27E2339D48C1F91319E0F6D244D7A* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* Enumerator_get_Current_m6330F15D18EE4F547C05DF9BF83C5EB710376027_gshared_inline (Enumerator_t9473BAB568A27E2339D48C1F91319E0F6D244D7A* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_mE921CC8F29FBBDE7CC3209A0ED0D921D58D00BCB_gshared (Enumerator_t9473BAB568A27E2339D48C1F91319E0F6D244D7A* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_set_Item_mA56E7E3B84B486552CEBAF1FFD6986FA5F724808_gshared (List_1_t75FC6D059D696BAD77462D09FCDC98B4A7B7D3D4* __this, int32_t ___0_index, CombinedChunks_tCFB3356163B9F9B0E31E0B194E9B415F83340ED9 ___1_value, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Comparison_1__ctor_mBF1B4978AA4B5B19579B8551412B7D03053A6AD3_gshared (Comparison_1_t1D70AD681199BAE9A46BB890478D827A9BA04A36* __this, RuntimeObject* ___0_object, intptr_t ___1_method, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_Sort_m7D91ABCC3436181A92740FA30F58517E70C30EC2_gshared (List_1_t75FC6D059D696BAD77462D09FCDC98B4A7B7D3D4* __this, Comparison_1_t1D70AD681199BAE9A46BB890478D827A9BA04A36* ___0_comparison, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR CombinedChunks_tCFB3356163B9F9B0E31E0B194E9B415F83340ED9 List_1_get_Item_m590DCDF63905DBC9AFD853145981546152F126A4_gshared (List_1_t75FC6D059D696BAD77462D09FCDC98B4A7B7D3D4* __this, int32_t ___0_index, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2_Clear_m931E25EF2557C3A386E4B9DC8D8212B7D9D3F5AE_gshared (Dictionary_2_t5C96F4B6841710A9013966F76224BAE01FB4B4D1* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_set_Item_m3C58DBC69A321AF2826595584FF3E9F43C07EA56_gshared (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* __this, int32_t ___0_index, RuntimeObject* ___1_value, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Dictionary_2_ContainsKey_m1087B74B4FF5004CBB6CC864FF1C87B6DB138505_gshared (Dictionary_2_t5C96F4B6841710A9013966F76224BAE01FB4B4D1* __this, RuntimeObject* ___0_key, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_set_Item_m95629806F31CF369D937590912E0B6A53FF7C587_gshared (List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* __this, int32_t ___0_index, int32_t ___1_value, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_RemoveRange_m0D2A25C95EFDC6E9CD22B663D9633426B51E3699_gshared (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* __this, int32_t ___0_index, int32_t ___1_count, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_RemoveRange_mB2A135AC73DB3416988192AD3564E5F949C3CF9C_gshared (List_1_t75FC6D059D696BAD77462D09FCDC98B4A7B7D3D4* __this, int32_t ___0_index, int32_t ___1_count, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void List_1_Clear_m16C1F2C61FED5955F10EB36BC1CB2DF34B128994_gshared_inline (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void List_1_Clear_mF3D2F0801D0D95591EAFF99E087D27BE7EABA697_gshared_inline (List_1_t75FC6D059D696BAD77462D09FCDC98B4A7B7D3D4* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DecalChunk_RemoveAtSwapBack_Tisfloat2_t24AA5C0F612B0672315EDAFEC9D9E7F1C4A5B0BA_mE510E702120051CBB3A9122BC1BA957B834E2D91_gshared (DecalChunk_tD2C5831DD2A6E97A7A738C88C5922305BA0513CA* __this, NativeArray_1_t46D43179C2B71BAB34958401E08B5C5DA4488E9E* ___0_array, int32_t ___1_index, int32_t ___2_count, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DecalChunk_RemoveAtSwapBack_Tisfloat4_t89D9A294E7A79BD81BFBDD18654508532958555E_mB4FD1FD13539DAAD140535134857F4E7C2D61113_gshared (DecalChunk_tD2C5831DD2A6E97A7A738C88C5922305BA0513CA* __this, NativeArray_1_tB5EA234C6ABA1F626A4BEF4053D06783E15A3881* ___0_array, int32_t ___1_index, int32_t ___2_count, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DecalChunk_RemoveAtSwapBack_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_m79F67135CEB14F4F697474A409493E057B89D759_gshared (DecalChunk_tD2C5831DD2A6E97A7A738C88C5922305BA0513CA* __this, NativeArray_1_tA833EB7E3E1C9AF82C37976AD964B8D4BAC38B2C* ___0_array, int32_t ___1_index, int32_t ___2_count, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DecalChunk_RemoveAtSwapBack_TisUInt64_t8F12534CC8FC4B5860F2A2CD1EE79D322E7A41AF_mBB7A6220A8A54E9F8DE79470ED3302F907D49F82_gshared (DecalChunk_tD2C5831DD2A6E97A7A738C88C5922305BA0513CA* __this, NativeArray_1_t07975297AD7F7512193094A7C0703BA872EF7A7B* ___0_array, int32_t ___1_index, int32_t ___2_count, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DecalChunk_RemoveAtSwapBack_TisBoundingSphere_t2DDB3D1711A6920C0ECA9217D3E4E14AFF03C010_m6543A85EE8FF00637356B416DEDCF1177D22D345_gshared (DecalChunk_tD2C5831DD2A6E97A7A738C88C5922305BA0513CA* __this, BoundingSphereU5BU5D_tD7485B1D5D5A0EE26537B093423FC3AC149BEA47** ___0_array, int32_t ___1_index, int32_t ___2_count, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DecalChunk_RemoveAtSwapBack_TisBoundingSphere_t2DDB3D1711A6920C0ECA9217D3E4E14AFF03C010_m311450680094235BD4A769DB9E44144FADE76015_gshared (DecalChunk_tD2C5831DD2A6E97A7A738C88C5922305BA0513CA* __this, NativeArray_1_t3D8121943984EEED49DC98DED560DCC6638111B6* ___0_array, int32_t ___1_index, int32_t ___2_count, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DecalChunk_RemoveAtSwapBack_TisInt32Enum_tCBAC8BA2BFF3A845FA599F303093BBBA374B6F0C_m0C19B1FB7A99F8DBEBA677CE522A1EF3B08411E1_gshared (DecalChunk_tD2C5831DD2A6E97A7A738C88C5922305BA0513CA* __this, NativeArray_1_tE0DCAF7ED58915BC160F767E310F0F0A55B6BC75* ___0_array, int32_t ___1_index, int32_t ___2_count, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DecalChunk_RemoveAtSwapBack_TisUInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B_mF1836CDB48035A918A43ABAF39AF37C896E0C1BD_gshared (DecalChunk_tD2C5831DD2A6E97A7A738C88C5922305BA0513CA* __this, NativeArray_1_t453E3DEA4CC9F1056F24E417C3308C35174BC184* ___0_array, int32_t ___1_index, int32_t ___2_count, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DecalChunk_RemoveAtSwapBack_Tisfloat3_t4AB5D88249ADB24F69FFD0793E8ED25E1CC3745E_m3EB3E0A1DA38C90FA88EE269EC7BDA37C5EF1418_gshared (DecalChunk_tD2C5831DD2A6E97A7A738C88C5922305BA0513CA* __this, NativeArray_1_tEDE9DAD2CAE5954286BC0EF394A57ED0AC69FEE6* ___0_array, int32_t ___1_index, int32_t ___2_count, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DecalChunk_RemoveAtSwapBack_Tisquaternion_tD6BCBECAF088B9EBAE2345EC8534C7A1A4C910D4_m0D53FB632D8820AC1B5BB42DD60212A78423CCEA_gshared (DecalChunk_tD2C5831DD2A6E97A7A738C88C5922305BA0513CA* __this, NativeArray_1_tE645174F30913B665DE45D85525F90B1F64E054A* ___0_array, int32_t ___1_index, int32_t ___2_count, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DecalChunk_RemoveAtSwapBack_TisBoolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_m1386EBC4D7599F71F0B303F12813F0582E8F3100_gshared (DecalChunk_tD2C5831DD2A6E97A7A738C88C5922305BA0513CA* __this, NativeArray_1_t107C57D0357BCF9956A60495CD8FAADDF1D26AFB* ___0_array, int32_t ___1_index, int32_t ___2_count, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArrayExtensions_ResizeArray_Tisfloat2_t24AA5C0F612B0672315EDAFEC9D9E7F1C4A5B0BA_m4E50A7CF887E0894D0F694E2A529CD6AA5F064CE_gshared (NativeArray_1_t46D43179C2B71BAB34958401E08B5C5DA4488E9E* ___0_array, int32_t ___1_capacity, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArrayExtensions_ResizeArray_Tisfloat4_t89D9A294E7A79BD81BFBDD18654508532958555E_m0F046BCBBC1480B71939881BAC4C4F00A0B302CA_gshared (NativeArray_1_tB5EA234C6ABA1F626A4BEF4053D06783E15A3881* ___0_array, int32_t ___1_capacity, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArrayExtensions_ResizeArray_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_mCC1C29FFBD5857EE8A9D2DD4EECE68A25390D347_gshared (NativeArray_1_tA833EB7E3E1C9AF82C37976AD964B8D4BAC38B2C* ___0_array, int32_t ___1_capacity, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArrayExtensions_ResizeArray_TisUInt64_t8F12534CC8FC4B5860F2A2CD1EE79D322E7A41AF_mA7325AB0E73DB3008AF16F6B66B107118806D8D4_gshared (NativeArray_1_t07975297AD7F7512193094A7C0703BA872EF7A7B* ___0_array, int32_t ___1_capacity, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArrayExtensions_ResizeArray_TisBoundingSphere_t2DDB3D1711A6920C0ECA9217D3E4E14AFF03C010_m97ECB17020454F538CF86C6311BB0532F9D3AC07_gshared (NativeArray_1_t3D8121943984EEED49DC98DED560DCC6638111B6* ___0_array, int32_t ___1_capacity, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArrayExtensions_ResizeArray_TisInt32Enum_tCBAC8BA2BFF3A845FA599F303093BBBA374B6F0C_m78934B426730B8016F2DF8A1BD018A06F8574528_gshared (NativeArray_1_tE0DCAF7ED58915BC160F767E310F0F0A55B6BC75* ___0_array, int32_t ___1_capacity, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArrayExtensions_ResizeArray_TisUInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B_mA7A1947DAC61D89594FD427B8866AF243CBCA65E_gshared (NativeArray_1_t453E3DEA4CC9F1056F24E417C3308C35174BC184* ___0_array, int32_t ___1_capacity, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArrayExtensions_ResizeArray_Tisfloat3_t4AB5D88249ADB24F69FFD0793E8ED25E1CC3745E_mB9C7AEADC1241624FC5482255B8B17E912B88EC6_gshared (NativeArray_1_tEDE9DAD2CAE5954286BC0EF394A57ED0AC69FEE6* ___0_array, int32_t ___1_capacity, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArrayExtensions_ResizeArray_Tisquaternion_tD6BCBECAF088B9EBAE2345EC8534C7A1A4C910D4_mCCC2A04B4AC663EC4E25A7A3EF7E3F73861ADFA1_gshared (NativeArray_1_tE645174F30913B665DE45D85525F90B1F64E054A* ___0_array, int32_t ___1_capacity, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArrayExtensions_ResizeArray_TisBoolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_m03C40A6C0546B3EF39F41B4F8A01F8069907134A_gshared (NativeArray_1_t107C57D0357BCF9956A60495CD8FAADDF1D26AFB* ___0_array, int32_t ___1_capacity, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArrayExtensions_ResizeArray_TisBoundingSphere_t2DDB3D1711A6920C0ECA9217D3E4E14AFF03C010_mF1480A26EB90FA28A36BD0EA5CED744A82C9E338_gshared (BoundingSphereU5BU5D_tD7485B1D5D5A0EE26537B093423FC3AC149BEA47** ___0_array, int32_t ___1_capacity, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NativeArray_1_Dispose_mAD3B69E4B23316C46AF8C35D7E1E81206323F16F_gshared (NativeArray_1_t46D43179C2B71BAB34958401E08B5C5DA4488E9E* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NativeArray_1_Dispose_mF001C61A295F2BF3561FD60654243ABFF09AF662_gshared (NativeArray_1_tB5EA234C6ABA1F626A4BEF4053D06783E15A3881* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NativeArray_1_Dispose_m5CBF60E97954A416106547EF28316741B674D253_gshared (NativeArray_1_t07975297AD7F7512193094A7C0703BA872EF7A7B* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NativeArray_1_Dispose_m4D6B12321C5FF072AD5CD660E179FC761A52C22E_gshared (NativeArray_1_t3D8121943984EEED49DC98DED560DCC6638111B6* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NativeArray_1_Dispose_mE208CD8E9CF8772A67BC880E49DDCD173A7E15EE_gshared (NativeArray_1_tE0DCAF7ED58915BC160F767E310F0F0A55B6BC75* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NativeArray_1_Dispose_m921D007BB17D47849CD74AB7FA825547CB828BBC_gshared (NativeArray_1_t453E3DEA4CC9F1056F24E417C3308C35174BC184* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NativeArray_1_Dispose_mE40D457AF008BEE531917D94D3A83296CCF8906C_gshared (NativeArray_1_tEDE9DAD2CAE5954286BC0EF394A57ED0AC69FEE6* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NativeArray_1_Dispose_m03F9BA2E0A4EED6DCA8AD4D9EC282F9B56DFE402_gshared (NativeArray_1_tE645174F30913B665DE45D85525F90B1F64E054A* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NativeArray_1_Dispose_mF16E4FD33476D6947F979B1E1D9F901CE0A04344_gshared (NativeArray_1_t107C57D0357BCF9956A60495CD8FAADDF1D26AFB* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR JobHandle_t5DF5F99902FED3C801A81C05205CEA6CE039EF08 IJobParallelForTransformExtensions_Schedule_TisUpdateTransformsJob_t7CF957169E8C6560084F48A51BC15A447F3002C7_m8730007D9D52320B924DE6CD7E6AE6D5FAE4283C_gshared (UpdateTransformsJob_t7CF957169E8C6560084F48A51BC15A447F3002C7 ___0_jobData, TransformAccessArray_t104EDE5BB3DC7E294332BB1D2AA508CAEDEE83D4 ___1_transforms, JobHandle_t5DF5F99902FED3C801A81C05205CEA6CE039EF08 ___2_dependsOn, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NativeArray_1_CopyFrom_mA833BCBDF37D94BF60950C40CD5C281B113BA999_gshared (NativeArray_1_tA833EB7E3E1C9AF82C37976AD964B8D4BAC38B2C* __this, Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ___0_array, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DecalChunk_RemoveAtSwapBack_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_m915FF8D13A89D601291E1005178CA3EA54A7C5D8_gshared (DecalChunk_tD2C5831DD2A6E97A7A738C88C5922305BA0513CA* __this, Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C** ___0_array, int32_t ___1_index, int32_t ___2_count, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArrayExtensions_ResizeArray_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_mFFAD26B2501568E203F55AC9971F07ECF103B4BB_gshared (Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C** ___0_array, int32_t ___1_capacity, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NativeArray_1_CopyTo_mC4570E3EE4DEA62A1F990BDC926014F7773CB6C7_gshared (NativeArray_1_t3D8121943984EEED49DC98DED560DCC6638111B6* __this, BoundingSphereU5BU5D_tD7485B1D5D5A0EE26537B093423FC3AC149BEA47* ___0_array, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* GraphicsSettings_GetRenderPipelineSettings_TisRuntimeObject_mE2EF737215ED168685806935CE4460AB2D8E2BCE_gshared (const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t List_1_get_Count_m4407E4C389F22B8CEC282C15D56516658746C383_gshared_inline (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2_Clear_mFA357D13986A882E6AF6F665B1BC835A26BB592E_gshared (Dictionary_2_t84C395D6616E2C30128BA4396899757AAA7B89D7* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2_Clear_mB11ECB26BB643F5FFF3BD0291E7328DFC6A2712B_gshared (Dictionary_2_tB41FAC88F07BAB98D6D373F7C94FB0496D1BDA32* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Dictionary_2_ContainsKey_m5F0D93CF1B8C2E297AB37B13608FF66A13B6309C_gshared (Dictionary_2_t84C395D6616E2C30128BA4396899757AAA7B89D7* __this, Hash128_t93367F504B687578F893CDBCD13FB95AC8A87A40 ___0_key, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Dictionary_2_get_Count_m2EE5C9916817E768FC3652EA9441030354A34504_gshared (Dictionary_2_t84C395D6616E2C30128BA4396899757AAA7B89D7* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2_Add_mB359B73249C070054471AEAF4F1CCCB5C4769915_gshared (Dictionary_2_t84C395D6616E2C30128BA4396899757AAA7B89D7* __this, Hash128_t93367F504B687578F893CDBCD13FB95AC8A87A40 ___0_key, RuntimeObject* ___1_value, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2_Add_m31B58F13ADA6D08C1CC6E191031B840006313562_gshared (Dictionary_2_tB41FAC88F07BAB98D6D373F7C94FB0496D1BDA32* __this, Hash128_t93367F504B687578F893CDBCD13FB95AC8A87A40 ___0_key, int32_t ___1_value, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Dictionary_2_get_Item_mBE61B2E0EB355780D39A2B5DF2044D6296E8E88D_gshared (Dictionary_2_t84C395D6616E2C30128BA4396899757AAA7B89D7* __this, Hash128_t93367F504B687578F893CDBCD13FB95AC8A87A40 ___0_key, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Enumerable_First_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_m665FD6DD7E983D1E8938E44617925C04CD612DE7_gshared (RuntimeObject* ___0_source, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2_set_Item_mFB50A5ABA450F464BCF08AEB35E14D26BB582C78_gshared (Dictionary_2_tB41FAC88F07BAB98D6D373F7C94FB0496D1BDA32* __this, Hash128_t93367F504B687578F893CDBCD13FB95AC8A87A40 ___0_key, int32_t ___1_value, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Dictionary_2_get_Item_m5A9D1816E2F401909438646463C34D043E421045_gshared (Dictionary_2_tB41FAC88F07BAB98D6D373F7C94FB0496D1BDA32* __this, Hash128_t93367F504B687578F893CDBCD13FB95AC8A87A40 ___0_key, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NativeArray_1__ctor_m94DB1A0F1293F5BAA65533ED74C41E31D71CA979_gshared (NativeArray_1_t39BA841475121E3F8A81F9BCA6646FD6FD6A32A8* __this, int32_t ___0_length, int32_t ___1_allocator, int32_t ___2_options, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NativeArray_1_Dispose_mDE23364D98F461C925DB28A6A9D5C8580A56FD39_gshared (NativeArray_1_t39BA841475121E3F8A81F9BCA6646FD6FD6A32A8* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Enumerator_t7767C5CF41D19BF6C7326C9870C530F1AD3CAC30 NativeArray_1_GetEnumerator_m6E656AE4243351850AD99E832638DDF081239389_gshared (NativeArray_1_tA833EB7E3E1C9AF82C37976AD964B8D4BAC38B2C* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_m76DC8FCCF3E42CD42363AD6C2BAC71ABDA1535C2_gshared (Enumerator_t7767C5CF41D19BF6C7326C9870C530F1AD3CAC30* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t Enumerator_get_Current_m9615CE722B0B33517472FA29CB73AE60D8E8D522_gshared_inline (Enumerator_t7767C5CF41D19BF6C7326C9870C530F1AD3CAC30* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m62905577B99C79AEA734E15AC569B10365214EDA_gshared_inline (Enumerator_t7767C5CF41D19BF6C7326C9870C530F1AD3CAC30* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2__ctor_mC41E8B60034BB99ACB3A702E60453217D34386A4_gshared (Dictionary_2_t84C395D6616E2C30128BA4396899757AAA7B89D7* __this, int32_t ___0_capacity, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2__ctor_m2927741406FF3DA98E94B375416763714607683B_gshared (Dictionary_2_tB41FAC88F07BAB98D6D373F7C94FB0496D1BDA32* __this, int32_t ___0_capacity, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1__ctor_m76CBBC3E2F0583F5AD30CE592CEA1225C06A0428_gshared (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* __this, int32_t ___0_capacity, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* RenderGraph_AddUnsafePass_TisRuntimeObject_m22ED403D4C84145926A27918AB261A49E25F3206_gshared (RenderGraph_t73ECE03B3CA3D0D17F1448D64AE020E81592AA1E* __this, String_t* ___0_passName, RuntimeObject** ___1_passData, ProfilingSampler_t420D4672EDB44E0EF980B31ADFD9E5747200FECE* ___2_sampler, String_t* ___3_file, int32_t ___4_line, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BaseRenderFunc_2__ctor_mDC58545FDE0ACE8DDA93E3C3AF0D636A40E65081_gshared (BaseRenderFunc_2_tCEF4A4193D64B47BA9BDF45CF9B801DEB82FED1C* __this, RuntimeObject* ___0_object, intptr_t ___1_method, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ProfilingSampler_t420D4672EDB44E0EF980B31ADFD9E5747200FECE* ProfilingSampler_Get_TisInt32Enum_tCBAC8BA2BFF3A845FA599F303093BBBA374B6F0C_m8A88D1A0EBDE48471A988A3C0B292D7E590709B2_gshared (int32_t ___0_marker, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* DebugDisplaySettings_1_get_Instance_mA88D31ED7AE6F7ABDCEC4B0F92FA19DB4938B189_gshared (const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_RemoveAt_m54F62297ADEE4D4FDA697F49ED807BF901201B54_gshared (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* __this, int32_t ___0_index, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RenderTargetIdentifierU5BU5D_t179798C153B7CE381B41C57863F98CB24023C4CE* Array_Empty_TisRenderTargetIdentifier_tA528663AC6EB3911D8E91AA40F7070FA5455442B_mE9CB7004FB24F2FE6566E734B9132170794E41F6_gshared_inline (const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* Array_Empty_TisRuntimeObject_mFB8A63D602BB6974D31E20300D9EB89C6FE7C278_gshared_inline (const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Math_ThrowMinMaxException_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_mBC7732632C280D3AEE2B08C470A78B9C5C4CBD77_gshared (int32_t ___0_min, int32_t ___1_max, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_NO_INLINE IL2CPP_METHOD_ATTR void List_1_AddWithResize_m9DC0CBC6B2899B36D53FDDEC54B3367D03C0FCC7_gshared (List_1_t4673975A297A80D4D4A65EB5A2BE3B6BD1EED9AF* __this, ShaderTagId_t453E2085B5EE9448FF75E550CAB111EFF690ECB0 ___0_item, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_NO_INLINE IL2CPP_METHOD_ATTR void List_1_AddWithResize_m2E6AC37E6A35250D5466273135CC6693D65E6FC6_gshared (List_1_t218CEA415E5769B47AB34C68D264977822ECAD17* __this, DecalEntityItem_tE2209120E111E679725F7022B0C54DEC6783EA5D ___0_item, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_NO_INLINE IL2CPP_METHOD_ATTR void List_1_AddWithResize_m79A9BF770BEF9C06BE40D5401E55E375F2726CC4_gshared (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* __this, RuntimeObject* ___0_item, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_NO_INLINE IL2CPP_METHOD_ATTR void List_1_AddWithResize_mC95A72BD9417C19E5A29495887130736575B720E_gshared (List_1_t75FC6D059D696BAD77462D09FCDC98B4A7B7D3D4* __this, CombinedChunks_tCFB3356163B9F9B0E31E0B194E9B415F83340ED9 ___0_item, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_NO_INLINE IL2CPP_METHOD_ATTR void List_1_AddWithResize_m378B392086AAB6F400944FA9839516326B3F7BB8_gshared (List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* __this, int32_t ___0_item, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t UnsafeUtility_ReadArrayElement_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_mFBA66C06ECEB0A2BC1AAE634B6E6BB436F957084_gshared_inline (void* ___0_source, int32_t ___1_index, const RuntimeMethod* method) ;
|
|
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2 (RuntimeObject* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__ctor_mCF81DB9D13AF1CD4C36B68E902B402A89DFD1F32 (U3CU3Ec_t590CD067BFDD49421D57479BC8BC6311FABEA5F1* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DBufferRenderPass_SetKeywords_mE683D8FB6C16C65FC6BD03FC68465DE8E734958C (RasterCommandBuffer_t4300C4F080EA3CF43C7ACFDBD4F94EA633FE98E8* ___0_cmd, PassData_t077B24D5F09604372E173ECFC9A3A66F30F8AD4C* ___1_passData, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RendererList_t608CE60421616EF4211F5B8AC62E3C36D4BDDF85 RendererListHandle_op_Implicit_m23F3E49F9D97B0BABE1044E02A7A70784F05C585 (RendererListHandle_t2DFC72A560B979AE0BAFBABBD8B9AF5DC1FEFEBA ___0_rendererList, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DBufferRenderPass_ExecutePass_m67E3722B434DC26BCFE20660DAE14EF85EB4478F (RasterCommandBuffer_t4300C4F080EA3CF43C7ACFDBD4F94EA633FE98E8* ___0_cmd, PassData_t077B24D5F09604372E173ECFC9A3A66F30F8AD4C* ___1_passData, RendererList_t608CE60421616EF4211F5B8AC62E3C36D4BDDF85 ___2_rendererList, bool ___3_renderGraph, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DecalDrawSystem__ctor_m2F13DA6696D08715AC3C3BE7B73AA680945620A5 (DecalDrawSystem_t87ECA1A8D2D9C3A73A12F81D8CCA0F79029C0BFE* __this, String_t* ___0_sampler, DecalEntityManager_tDA689202786946588782A67EF3F0B0D9121C294A* ___1_entityManager, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ScriptableRenderPass__ctor_mE49D4FF8E68A854367A4081E664B8DBA74E6B752 (ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void ScriptableRenderPass_set_renderPassEvent_m63FA581FFDE1C69C2E1358BD0B8DB30275334960_inline (ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* __this, int32_t ___0_value, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void ScriptableRenderPass_ConfigureInput_m15D8C10FC37E33CD358F2E9665ECF5515CB9C687_inline (ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* __this, int32_t ___0_passInput, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ProfilingSampler__ctor_m26500989FCDB07FA33C9A3BB7F215CBD892F5BB7 (ProfilingSampler_t420D4672EDB44E0EF980B31ADFD9E5747200FECE* __this, String_t* ___0_name, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ScriptableRenderPass_set_profilingSampler_mFD238B85B68DED586BA8C678141BEEAF229FBF2D (ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* __this, ProfilingSampler_t420D4672EDB44E0EF980B31ADFD9E5747200FECE* ___0_value, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RenderQueueRange_t7518252AA6426B1EA45D3D9B394F304EEF784D71 RenderQueueRange_get_opaque_m197DF3E6CC12F21B15F3F603EFD640806FCB65D9 (const RuntimeMethod* method) ;
|
|
inline void Nullable_1__ctor_mC09CE20B08C6A7188EE04F52B6A2E598657A0204 (Nullable_1_t7D98773CC20A842A0846271D1181ECBB0D95926C* __this, RenderQueueRange_t7518252AA6426B1EA45D3D9B394F304EEF784D71 ___0_value, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Nullable_1_t7D98773CC20A842A0846271D1181ECBB0D95926C*, RenderQueueRange_t7518252AA6426B1EA45D3D9B394F304EEF784D71, const RuntimeMethod*))Nullable_1__ctor_mC09CE20B08C6A7188EE04F52B6A2E598657A0204_gshared)(__this, ___0_value, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FilteringSettings__ctor_m2A2242373FC7D053CFBBC6814D02AAC73C7B3AE7 (FilteringSettings_t75860B12A7BCF9A0E2F13CB2C2E5DCD9E1EEAD9F* __this, Nullable_1_t7D98773CC20A842A0846271D1181ECBB0D95926C ___0_renderQueueRange, int32_t ___1_layerMask, uint32_t ___2_renderingLayerMask, int32_t ___3_excludeMotionVectorObjects, const RuntimeMethod* method) ;
|
|
inline void List_1__ctor_m21A3AD10EC2C165E8A6A3A533380D5D8BE162787 (List_1_t4673975A297A80D4D4A65EB5A2BE3B6BD1EED9AF* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (List_1_t4673975A297A80D4D4A65EB5A2BE3B6BD1EED9AF*, const RuntimeMethod*))List_1__ctor_m21A3AD10EC2C165E8A6A3A533380D5D8BE162787_gshared)(__this, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ShaderTagId__ctor_m4191968F1D2CE19F9092253EC10F83734A9CFF5B (ShaderTagId_t453E2085B5EE9448FF75E550CAB111EFF690ECB0* __this, String_t* ___0_name, const RuntimeMethod* method) ;
|
|
inline void List_1_Add_m999CAB0903219BD2CF988827287D44B0B44D69FE_inline (List_1_t4673975A297A80D4D4A65EB5A2BE3B6BD1EED9AF* __this, ShaderTagId_t453E2085B5EE9448FF75E550CAB111EFF690ECB0 ___0_item, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (List_1_t4673975A297A80D4D4A65EB5A2BE3B6BD1EED9AF*, ShaderTagId_t453E2085B5EE9448FF75E550CAB111EFF690ECB0, const RuntimeMethod*))List_1_Add_m999CAB0903219BD2CF988827287D44B0B44D69FE_gshared_inline)(__this, ___0_item, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PassData__ctor_mC6432EF6C25A2A0FF15B7F37D2D971A2210215E5 (PassData_t3894D6AEA48D65EEDB1032B9371FF5B63D4302A6* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DecalForwardEmissivePass_InitPassData_m0F72354C3738EB1A66B65A3D75B2DF58AA12E09C (DecalForwardEmissivePass_t9C18488945B9FD7A0B3A20FBACC5DEAD39D9C5B9* __this, PassData_t3894D6AEA48D65EEDB1032B9371FF5B63D4302A6** ___0_passData, const RuntimeMethod* method) ;
|
|
inline UniversalRenderingData_t045D13A1E051DF623B170223B7CBF1161DDA94E6* ContextContainer_Get_TisUniversalRenderingData_t045D13A1E051DF623B170223B7CBF1161DDA94E6_m71849CEFB9C023EDE026A0F38CE6044274505C06_inline (ContextContainer_t384E08F63FABEFF6A7F1A753F5EF02699DAD414C* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( UniversalRenderingData_t045D13A1E051DF623B170223B7CBF1161DDA94E6* (*) (ContextContainer_t384E08F63FABEFF6A7F1A753F5EF02699DAD414C*, const RuntimeMethod*))ContextContainer_Get_TisRuntimeObject_mD332AE37F62256B78E48145FFDEADB66FEEF3A5E_gshared_inline)(__this, method);
|
|
}
|
|
inline UniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7* ContextContainer_Get_TisUniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7_mE62F7903614384541B770CC0B9A99BD2E608A0F8_inline (ContextContainer_t384E08F63FABEFF6A7F1A753F5EF02699DAD414C* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( UniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7* (*) (ContextContainer_t384E08F63FABEFF6A7F1A753F5EF02699DAD414C*, const RuntimeMethod*))ContextContainer_Get_TisRuntimeObject_mD332AE37F62256B78E48145FFDEADB66FEEF3A5E_gshared_inline)(__this, method);
|
|
}
|
|
inline UniversalLightData_tCFFFAB4033CD97BE9F339F0C90BB7F98C06FFBA2* ContextContainer_Get_TisUniversalLightData_tCFFFAB4033CD97BE9F339F0C90BB7F98C06FFBA2_m7D529C251F384985900DEA334BC399BAD36BFC8F_inline (ContextContainer_t384E08F63FABEFF6A7F1A753F5EF02699DAD414C* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( UniversalLightData_tCFFFAB4033CD97BE9F339F0C90BB7F98C06FFBA2* (*) (ContextContainer_t384E08F63FABEFF6A7F1A753F5EF02699DAD414C*, const RuntimeMethod*))ContextContainer_Get_TisRuntimeObject_mD332AE37F62256B78E48145FFDEADB66FEEF3A5E_gshared_inline)(__this, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RendererListParams_t13F72282BCE2DC255747FE7694C6BBC3377944B1 DecalForwardEmissivePass_InitRendererListParams_m51529974A7131FC8CBEB8C15E0D73C9B664DC577 (DecalForwardEmissivePass_t9C18488945B9FD7A0B3A20FBACC5DEAD39D9C5B9* __this, UniversalRenderingData_t045D13A1E051DF623B170223B7CBF1161DDA94E6* ___0_renderingData, UniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7* ___1_cameraData, UniversalLightData_tCFFFAB4033CD97BE9F339F0C90BB7F98C06FFBA2* ___2_lightData, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RendererList_t608CE60421616EF4211F5B8AC62E3C36D4BDDF85 ScriptableRenderContext_CreateRendererList_mBF2F8A1EA796B87CBBAAC245133F2961D52A9BFA (ScriptableRenderContext_t5AB09B3602BEB456E0DC3D53926D3A3BDAF08E36* __this, RendererListParams_t13F72282BCE2DC255747FE7694C6BBC3377944B1* ___0_param, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR CommandBuffer_tB56007DC84EF56296C325EC32DD12AC1E3DC91F7* UniversalRenderingData_get_commandBuffer_m8397484CEAB1A0D725DEA8A85C9B955E2B4007F8 (UniversalRenderingData_t045D13A1E051DF623B170223B7CBF1161DDA94E6* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ProfilingSampler_t420D4672EDB44E0EF980B31ADFD9E5747200FECE* ScriptableRenderPass_get_profilingSampler_m627C9BF8A4A08101DCB6F40E0A97145A5A1CDA38 (ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ProfilingScope__ctor_mE15813DF7651C1A3B6AFD6465AD4B973E8F1DBFC (ProfilingScope_t57898BA31E8EF8F083EF84E0DA2737AC61CBC5BD* __this, CommandBuffer_tB56007DC84EF56296C325EC32DD12AC1E3DC91F7* ___0_cmd, ProfilingSampler_t420D4672EDB44E0EF980B31ADFD9E5747200FECE* ___1_sampler, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ProfilingScope_Dispose_m4231A2ACA1F8E345BB0078310A9F7601704C8BE4 (ProfilingScope_t57898BA31E8EF8F083EF84E0DA2737AC61CBC5BD* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RasterCommandBuffer_t4300C4F080EA3CF43C7ACFDBD4F94EA633FE98E8* CommandBufferHelpers_GetRasterCommandBuffer_m6086D650343F166614B3FB5ED89D63DE8F85C42B_inline (CommandBuffer_tB56007DC84EF56296C325EC32DD12AC1E3DC91F7* ___0_baseBuffer, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DecalForwardEmissivePass_ExecutePass_m742EF878DAB685962A361EB3121B2E090ED59AE5 (RasterCommandBuffer_t4300C4F080EA3CF43C7ACFDBD4F94EA633FE98E8* ___0_cmd, PassData_t3894D6AEA48D65EEDB1032B9371FF5B63D4302A6* ___1_passData, RendererList_t608CE60421616EF4211F5B8AC62E3C36D4BDDF85 ___2_rendererList, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DrawingSettings_t3B64EB029DB6F94A1F2A9B2D19D2969AE361BB49 RenderingUtils_CreateDrawingSettings_m3DB61D695B8C38BC10DF00E538DCB622F04189A0 (List_1_t4673975A297A80D4D4A65EB5A2BE3B6BD1EED9AF* ___0_shaderTagIdList, UniversalRenderingData_t045D13A1E051DF623B170223B7CBF1161DDA94E6* ___1_renderingData, UniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7* ___2_cameraData, UniversalLightData_tCFFFAB4033CD97BE9F339F0C90BB7F98C06FFBA2* ___3_lightData, int32_t ___4_sortingCriteria, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RendererListParams__ctor_m46CCE38EA66C6F213878BBAE3E058D7AA995D5F7 (RendererListParams_t13F72282BCE2DC255747FE7694C6BBC3377944B1* __this, CullingResults_tD6B7EF20B68D47DFF3A99EB2EA73F47F1D460267 ___0_cullingResults, DrawingSettings_t3B64EB029DB6F94A1F2A9B2D19D2969AE361BB49 ___1_drawSettings, FilteringSettings_t75860B12A7BCF9A0E2F13CB2C2E5DCD9E1EEAD9F ___2_filteringSettings, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DecalDrawSystem_Execute_mF71C2FD9B2D2D46D509C8D480ABA3D990211E6B8 (DecalDrawSystem_t87ECA1A8D2D9C3A73A12F81D8CCA0F79029C0BFE* __this, RasterCommandBuffer_t4300C4F080EA3CF43C7ACFDBD4F94EA633FE98E8* ___0_cmd, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RasterCommandBuffer_DrawRendererList_m6C50C4A5E4CABE3542317969BC91F552B41A427F (RasterCommandBuffer_t4300C4F080EA3CF43C7ACFDBD4F94EA633FE98E8* __this, RendererList_t608CE60421616EF4211F5B8AC62E3C36D4BDDF85 ___0_rendererList, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* ScriptableRenderPass_get_passName_m838292A44DB6ED7D67E43C1DE58383959B4F1925_inline (ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* __this, const RuntimeMethod* method) ;
|
|
inline RuntimeObject* RenderGraph_AddRasterRenderPass_TisPassData_t3894D6AEA48D65EEDB1032B9371FF5B63D4302A6_mB86D217730949EEA5463E34263ECAD13B745DDEA (RenderGraph_t73ECE03B3CA3D0D17F1448D64AE020E81592AA1E* __this, String_t* ___0_passName, PassData_t3894D6AEA48D65EEDB1032B9371FF5B63D4302A6** ___1_passData, ProfilingSampler_t420D4672EDB44E0EF980B31ADFD9E5747200FECE* ___2_sampler, String_t* ___3_file, int32_t ___4_line, const RuntimeMethod* method)
|
|
{
|
|
return (( RuntimeObject* (*) (RenderGraph_t73ECE03B3CA3D0D17F1448D64AE020E81592AA1E*, String_t*, PassData_t3894D6AEA48D65EEDB1032B9371FF5B63D4302A6**, ProfilingSampler_t420D4672EDB44E0EF980B31ADFD9E5747200FECE*, String_t*, int32_t, const RuntimeMethod*))RenderGraph_AddRasterRenderPass_TisRuntimeObject_mC67DBCDAE9E5C0D6FA1406B1CD4EA8A1F9244044_gshared)(__this, ___0_passName, ___1_passData, ___2_sampler, ___3_file, ___4_line, method);
|
|
}
|
|
inline UniversalResourceData_t1F1DE4101BE122578EAA5E4750D00ACAF1042626* ContextContainer_Get_TisUniversalResourceData_t1F1DE4101BE122578EAA5E4750D00ACAF1042626_m1CAD9250ED48A65B3DE774336F9221928EB054B4_inline (ContextContainer_t384E08F63FABEFF6A7F1A753F5EF02699DAD414C* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( UniversalResourceData_t1F1DE4101BE122578EAA5E4750D00ACAF1042626* (*) (ContextContainer_t384E08F63FABEFF6A7F1A753F5EF02699DAD414C*, const RuntimeMethod*))ContextContainer_Get_TisRuntimeObject_mD332AE37F62256B78E48145FFDEADB66FEEF3A5E_gshared_inline)(__this, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RendererListHandle_t2DFC72A560B979AE0BAFBABBD8B9AF5DC1FEFEBA RenderGraph_CreateRendererList_m7A5DCFC7F4A8A38BB0FC4E41BAE77FD5590B4F42 (RenderGraph_t73ECE03B3CA3D0D17F1448D64AE020E81592AA1E* __this, RendererListParams_t13F72282BCE2DC255747FE7694C6BBC3377944B1* ___0_desc, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TextureHandle_t680ABA3F8B50859351BA5DD66220084F87F37388 UniversalResourceData_get_activeColorTexture_m1B7A0CE5B0282F05AEAE46AC7B45478199DF9188 (UniversalResourceData_t1F1DE4101BE122578EAA5E4750D00ACAF1042626* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TextureHandle_t680ABA3F8B50859351BA5DD66220084F87F37388 UniversalResourceData_get_activeDepthTexture_mCE3930EAEF20F80A0EA1F4CE423E6E406E25F296 (UniversalResourceData_t1F1DE4101BE122578EAA5E4750D00ACAF1042626* __this, const RuntimeMethod* method) ;
|
|
inline void BaseRenderFunc_2__ctor_m4D42C7EFE3ED2F841709240536DCCD692CC07971 (BaseRenderFunc_2_t2AE7A68115EFC92E8E3068C0057F850871744886* __this, RuntimeObject* ___0_object, intptr_t ___1_method, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (BaseRenderFunc_2_t2AE7A68115EFC92E8E3068C0057F850871744886*, RuntimeObject*, intptr_t, const RuntimeMethod*))BaseRenderFunc_2__ctor_m72268C37DF7D310181ABEF09D65817B1108D843E_gshared)(__this, ___0_object, ___1_method, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__ctor_m9E9F18D44D199B0996983F04A983B77FD5DC1CCF (U3CU3Ec_t7B444D3F3AAA0A33FD57F6821D1F929FEB0555F5* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Material_t18053F08F347D0DCA5E1140EC7EC4533DD8A14E3* DecalEntityManager_get_errorMaterial_mF7CE0C1E49520A1DA01F300E2896C63BBAEDD2A3 (DecalEntityManager_tDA689202786946588782A67EF3F0B0D9121C294A* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PassData__ctor_m362F709BA478FC9448BA29B0E10A6B4873F61A67 (PassData_t0F7D1F1E94925DC481C5764B997BEC982471D969* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DecalPreviewPass_ExecutePass_m9F9DEA92A7BC03137B1207BE54B94BB7821CA80A (RasterCommandBuffer_t4300C4F080EA3CF43C7ACFDBD4F94EA633FE98E8* ___0_cmd, PassData_t0F7D1F1E94925DC481C5764B997BEC982471D969* ___1_passData, RendererList_t608CE60421616EF4211F5B8AC62E3C36D4BDDF85 ___2_rendererList, const RuntimeMethod* method) ;
|
|
inline RuntimeObject* RenderGraph_AddRasterRenderPass_TisPassData_t0F7D1F1E94925DC481C5764B997BEC982471D969_m28F491F231919F5CED432FD84E0618A9E06FCF86 (RenderGraph_t73ECE03B3CA3D0D17F1448D64AE020E81592AA1E* __this, String_t* ___0_passName, PassData_t0F7D1F1E94925DC481C5764B997BEC982471D969** ___1_passData, ProfilingSampler_t420D4672EDB44E0EF980B31ADFD9E5747200FECE* ___2_sampler, String_t* ___3_file, int32_t ___4_line, const RuntimeMethod* method)
|
|
{
|
|
return (( RuntimeObject* (*) (RenderGraph_t73ECE03B3CA3D0D17F1448D64AE020E81592AA1E*, String_t*, PassData_t0F7D1F1E94925DC481C5764B997BEC982471D969**, ProfilingSampler_t420D4672EDB44E0EF980B31ADFD9E5747200FECE*, String_t*, int32_t, const RuntimeMethod*))RenderGraph_AddRasterRenderPass_TisRuntimeObject_mC67DBCDAE9E5C0D6FA1406B1CD4EA8A1F9244044_gshared)(__this, ___0_passName, ___1_passData, ___2_sampler, ___3_file, ___4_line, method);
|
|
}
|
|
inline void BaseRenderFunc_2__ctor_mB3494A5C200BFAE64AFE4676D92DE9C51F770A29 (BaseRenderFunc_2_tEE48E9E21762BFE07AE97EF2E3E0E79793067606* __this, RuntimeObject* ___0_object, intptr_t ___1_method, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (BaseRenderFunc_2_tEE48E9E21762BFE07AE97EF2E3E0E79793067606*, RuntimeObject*, intptr_t, const RuntimeMethod*))BaseRenderFunc_2__ctor_m72268C37DF7D310181ABEF09D65817B1108D843E_gshared)(__this, ___0_object, ___1_method, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__ctor_m364B4E80E11809D5C38DC97BC665089850151491 (U3CU3Ec_tFB39F0BD639048162C0147869970658EACB36812* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Delegate_t* Delegate_Combine_m1F725AEF318BE6F0426863490691A6F4606E7D00 (Delegate_t* ___0_a, Delegate_t* ___1_b, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Delegate_t* Delegate_Remove_m8B7DD5661308FA972E23CA1CC3FC9CEB355504E3 (Delegate_t* ___0_source, Delegate_t* ___1_value, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DecalProjector_OnValidate_mF1F8F3D8D65D22CC7D116AFA0BDB753997C26237 (DecalProjector_tE7CEBAABFEF36162FD325321C1F94173CEFEDF64* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float Mathf_Max_mF5379E63D2BBAC76D090748695D833934F8AD051_inline (float ___0_a, float ___1_b, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float Mathf_Clamp01_mA7E048DBDA832D399A581BE4D6DED9FA44CE0F14_inline (float ___0_value, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float Mathf_Clamp_mEB9AEA827D27D20FCC787F7375156AF46BB12BBF_inline (float ___0_value, float ___1_min, float ___2_max, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 Vector3_get_one_mC9B289F1E15C42C597180C9FE6FB492495B51D02_inline (const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1* Component_get_transform_m2919A1D81931E6932C7F06D4C2F0AB8DDA9A5371 (Component_t39FBE53E5EFCF4409111FB22C15FF73717632EC3* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 Transform_get_lossyScale_mFF740DA4BE1489C6882CD2F3A37B7321176E5D07 (Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Vector3__ctor_m376936E6B999EF1ECBE57D990A386303E2283DE0_inline (Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2* __this, float ___0_x, float ___1_y, float ___2_z, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Vector4__ctor_m96B2CD8B862B271F513AF0BDC2EABD58E4DBC813_inline (Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3* __this, float ___0_x, float ___1_y, float ___2_z, float ___3_w, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Object_op_Equality_mB6120F782D83091EF56A198FCEBCF066DB4A9605 (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C* ___0_x, Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C* ___1_y, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DecalProjector_InitMaterial_m63C571FA5B0E6769DC5AF11A6F1E3B4EF06C9A75 (DecalProjector_tE7CEBAABFEF36162FD325321C1F94173CEFEDF64* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void DecalProjectorAction_Invoke_mB1B4E86AF2D30FFE627DC803CD91C8F0A80530F3_inline (DecalProjectorAction_tDFCBDEE542B3D640BD121E036275AA51A003CF5C* __this, DecalProjector_tE7CEBAABFEF36162FD325321C1F94173CEFEDF64* ___0_decalProjector, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Behaviour_get_isActiveAndEnabled_mEB4ECCE9761A7016BC619557CEFEA1A30D3BF28A (Behaviour_t01970CFBBA658497AE30F311C447DB0440BAB7FA* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Object_op_Inequality_mD0BE578448EAA61948F25C32F8DD55AB1F778602 (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C* ___0_x, Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C* ___1_y, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Vector2_op_Inequality_mBEA93B5A0E954FEFB863DC61CB209119980EC713_inline (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___0_lhs, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___1_rhs, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Vector3_op_Inequality_m9F170CDFBF1E490E559DA5D06D6547501A402BBF_inline (Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___0_lhs, Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___1_rhs, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Material_t18053F08F347D0DCA5E1140EC7EC4533DD8A14E3* DecalProjector_get_material_m7B4C2B869C8E062AFF5519DDB9BD954DB5163C77_inline (DecalProjector_tE7CEBAABFEF36162FD325321C1F94173CEFEDF64* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Material_FindPass_mCCAAC088EE0E39AD5950BA41E965371417DBCFBC (Material_t18053F08F347D0DCA5E1140EC7EC4533DD8A14E3* __this, String_t* ___0_passName, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Action_Invoke_m7126A54DACA72B845424072887B5F3A51FC3808E_inline (Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RenderingLayerMask_tD73B9FC1A65A937F18E56833FC83BF89C2B085A1 RenderingLayerMask_op_Implicit_m38EAE38A00D82EDD2CD8CACB022F2B7E5FC5069B (uint32_t ___0_intVal, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Vector2__ctor_m9525B79969AFFE3254B303A40997A56DEEB6F548_inline (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7* __this, float ___0_x, float ___1_y, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RenderingLayerMask_tD73B9FC1A65A937F18E56833FC83BF89C2B085A1 RenderingLayerMask_get_defaultRenderingLayerMask_m75949CAB9D04088013D84AF5835A3F38BB723A7B_inline (const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MonoBehaviour__ctor_m592DB0105CA0BC97AA1C5F4AD27B12D68A3B7C1E (MonoBehaviour_t532A11E69716D348D8AA7F854AFCBFCB8AD17F71* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t DecalChunk_get_count_mEF67D584A3FF77C4A87A916D5F464D91D47C4B17_inline (DecalChunk_tD2C5831DD2A6E97A7A738C88C5922305BA0513CA* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void DecalChunk_set_count_m55DFD6DAB9893215E6FB8E81AB00257C21488EC8_inline (DecalChunk_tD2C5831DD2A6E97A7A738C88C5922305BA0513CA* __this, int32_t ___0_value, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TransformAccessArray__ctor_m66B44699D46850AA776992B25A5443B6BAC42ED1 (TransformAccessArray_t104EDE5BB3DC7E294332BB1D2AA508CAEDEE83D4* __this, int32_t ___0_capacity, int32_t ___1_desiredJobCount, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TransformAccessArray_get_isCreated_m27A01F9644D14864AAF311A87959DF8705A0B142 (TransformAccessArray_t104EDE5BB3DC7E294332BB1D2AA508CAEDEE83D4* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TransformAccessArray_Add_mC1B41F75FE0CD6AAB77186F6EF7A41E790BDE336 (TransformAccessArray_t104EDE5BB3DC7E294332BB1D2AA508CAEDEE83D4* __this, Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1* ___0_transform, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t TransformAccessArray_get_length_mC5BF0953331F1128106EC2647B558FB9163DE165 (TransformAccessArray_t104EDE5BB3DC7E294332BB1D2AA508CAEDEE83D4* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TransformAccessArray_Dispose_mC0775DCFFE41173544615D7031AC028D653C4186 (TransformAccessArray_t104EDE5BB3DC7E294332BB1D2AA508CAEDEE83D4* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t DecalSubDrawCall_get_count_m8B38E73F7F4564C38F29C7D6259DDD55774621D0 (DecalSubDrawCall_t68CDD2E663F805776DE0281AB4FAEDC8B8D9EC49* __this, const RuntimeMethod* method) ;
|
|
inline void DecalChunk_RemoveAtSwapBack_Tisfloat4x4_t7EDD16F7F57DC7F61A6302535F7C19FB97915DF2_mE225441B0A02C93487869B33817022EBF2023283 (DecalChunk_tD2C5831DD2A6E97A7A738C88C5922305BA0513CA* __this, NativeArray_1_t63326FF687E26631308829A9CDB0C51D523D4E9A* ___0_array, int32_t ___1_index, int32_t ___2_count, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (DecalChunk_tD2C5831DD2A6E97A7A738C88C5922305BA0513CA*, NativeArray_1_t63326FF687E26631308829A9CDB0C51D523D4E9A*, int32_t, int32_t, const RuntimeMethod*))DecalChunk_RemoveAtSwapBack_Tisfloat4x4_t7EDD16F7F57DC7F61A6302535F7C19FB97915DF2_mE225441B0A02C93487869B33817022EBF2023283_gshared)(__this, ___0_array, ___1_index, ___2_count, method);
|
|
}
|
|
inline void DecalChunk_RemoveAtSwapBack_TisSingle_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_m938CD70E1FF91D3803E9854F0872C6BE2F4CCD1B (DecalChunk_tD2C5831DD2A6E97A7A738C88C5922305BA0513CA* __this, NativeArray_1_t3848EE4B6647317212A754634DE6DBC90B99FBEF* ___0_array, int32_t ___1_index, int32_t ___2_count, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (DecalChunk_tD2C5831DD2A6E97A7A738C88C5922305BA0513CA*, NativeArray_1_t3848EE4B6647317212A754634DE6DBC90B99FBEF*, int32_t, int32_t, const RuntimeMethod*))DecalChunk_RemoveAtSwapBack_TisSingle_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_m938CD70E1FF91D3803E9854F0872C6BE2F4CCD1B_gshared)(__this, ___0_array, ___1_index, ___2_count, method);
|
|
}
|
|
inline void DecalChunk_RemoveAtSwapBack_TisDecalSubDrawCall_t68CDD2E663F805776DE0281AB4FAEDC8B8D9EC49_m4BA3CBFAFEA6D310AACA36EB36A4F76192F8C6CA (DecalChunk_tD2C5831DD2A6E97A7A738C88C5922305BA0513CA* __this, NativeArray_1_t197AED29D4CF7A6BC8C6C69B7BABD82BDC8475E2* ___0_array, int32_t ___1_index, int32_t ___2_count, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (DecalChunk_tD2C5831DD2A6E97A7A738C88C5922305BA0513CA*, NativeArray_1_t197AED29D4CF7A6BC8C6C69B7BABD82BDC8475E2*, int32_t, int32_t, const RuntimeMethod*))DecalChunk_RemoveAtSwapBack_TisDecalSubDrawCall_t68CDD2E663F805776DE0281AB4FAEDC8B8D9EC49_m4BA3CBFAFEA6D310AACA36EB36A4F76192F8C6CA_gshared)(__this, ___0_array, ___1_index, ___2_count, method);
|
|
}
|
|
inline void ArrayExtensions_ResizeArray_Tisfloat4x4_t7EDD16F7F57DC7F61A6302535F7C19FB97915DF2_m4455C8B60BA08395D0B896AD808F0433ABCCA888 (NativeArray_1_t63326FF687E26631308829A9CDB0C51D523D4E9A* ___0_array, int32_t ___1_capacity, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (NativeArray_1_t63326FF687E26631308829A9CDB0C51D523D4E9A*, int32_t, const RuntimeMethod*))ArrayExtensions_ResizeArray_Tisfloat4x4_t7EDD16F7F57DC7F61A6302535F7C19FB97915DF2_m4455C8B60BA08395D0B896AD808F0433ABCCA888_gshared)(___0_array, ___1_capacity, method);
|
|
}
|
|
inline void ArrayExtensions_ResizeArray_TisSingle_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_m3093DA203EC655A89B97A720E0E41B9D1F6BF89D (NativeArray_1_t3848EE4B6647317212A754634DE6DBC90B99FBEF* ___0_array, int32_t ___1_capacity, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (NativeArray_1_t3848EE4B6647317212A754634DE6DBC90B99FBEF*, int32_t, const RuntimeMethod*))ArrayExtensions_ResizeArray_TisSingle_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_m3093DA203EC655A89B97A720E0E41B9D1F6BF89D_gshared)(___0_array, ___1_capacity, method);
|
|
}
|
|
inline void ArrayExtensions_ResizeArray_TisDecalSubDrawCall_t68CDD2E663F805776DE0281AB4FAEDC8B8D9EC49_m53427FE0458D6B20A22026DD0D267FBEEDE41E78 (NativeArray_1_t197AED29D4CF7A6BC8C6C69B7BABD82BDC8475E2* ___0_array, int32_t ___1_capacity, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (NativeArray_1_t197AED29D4CF7A6BC8C6C69B7BABD82BDC8475E2*, int32_t, const RuntimeMethod*))ArrayExtensions_ResizeArray_TisDecalSubDrawCall_t68CDD2E663F805776DE0281AB4FAEDC8B8D9EC49_m53427FE0458D6B20A22026DD0D267FBEEDE41E78_gshared)(___0_array, ___1_capacity, method);
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void DecalChunk_set_capacity_mB9107E4EB6FFDDEAD9D6DED6B83E65AC10E4E490_inline (DecalChunk_tD2C5831DD2A6E97A7A738C88C5922305BA0513CA* __this, int32_t ___0_value, const RuntimeMethod* method) ;
|
|
inline void NativeArray_1_Dispose_m05C674E687B921C37722A6A1FF938FD56574642E (NativeArray_1_tA833EB7E3E1C9AF82C37976AD964B8D4BAC38B2C* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (NativeArray_1_tA833EB7E3E1C9AF82C37976AD964B8D4BAC38B2C*, const RuntimeMethod*))NativeArray_1_Dispose_m05C674E687B921C37722A6A1FF938FD56574642E_gshared)(__this, method);
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t DecalChunk_get_capacity_m70E0A37FAAF474D0AC7277BCD11673777BA0C15A_inline (DecalChunk_tD2C5831DD2A6E97A7A738C88C5922305BA0513CA* __this, const RuntimeMethod* method) ;
|
|
inline void NativeArray_1_Dispose_m994685B1A26FB0972542BE1216EBD59B332E880A (NativeArray_1_t63326FF687E26631308829A9CDB0C51D523D4E9A* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (NativeArray_1_t63326FF687E26631308829A9CDB0C51D523D4E9A*, const RuntimeMethod*))NativeArray_1_Dispose_m994685B1A26FB0972542BE1216EBD59B332E880A_gshared)(__this, method);
|
|
}
|
|
inline void NativeArray_1_Dispose_mC07280A768D065A052D995F3E6175A27CD62E1F6 (NativeArray_1_t3848EE4B6647317212A754634DE6DBC90B99FBEF* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (NativeArray_1_t3848EE4B6647317212A754634DE6DBC90B99FBEF*, const RuntimeMethod*))NativeArray_1_Dispose_mC07280A768D065A052D995F3E6175A27CD62E1F6_gshared)(__this, method);
|
|
}
|
|
inline void NativeArray_1_Dispose_mACC8FD312FD1CB4F9106BB30A2FED079996CBCD4 (NativeArray_1_t197AED29D4CF7A6BC8C6C69B7BABD82BDC8475E2* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (NativeArray_1_t197AED29D4CF7A6BC8C6C69B7BABD82BDC8475E2*, const RuntimeMethod*))NativeArray_1_Dispose_mACC8FD312FD1CB4F9106BB30A2FED079996CBCD4_gshared)(__this, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DecalChunk__ctor_m948088C98FD016DE3F70B7312E3398BE8D9F1DF1 (DecalChunk_tD2C5831DD2A6E97A7A738C88C5922305BA0513CA* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ProfilingScope__ctor_m4B73587A2295443A73B64DDD3D484D8EAECC0D65 (ProfilingScope_t57898BA31E8EF8F083EF84E0DA2737AC61CBC5BD* __this, ProfilingSampler_t420D4672EDB44E0EF980B31ADFD9E5747200FECE* ___0_sampler, const RuntimeMethod* method) ;
|
|
inline DecalCachedChunk_tDEF493C8A3A1F442BDEC1794BDDA0996B32DCACE* List_1_get_Item_mF1A0B8107AFE027BCC67DA021B857B6495FA1A90 (List_1_t1A9527CB44249AD17D081A2D7A468343FC2D0720* __this, int32_t ___0_index, const RuntimeMethod* method)
|
|
{
|
|
return (( DecalCachedChunk_tDEF493C8A3A1F442BDEC1794BDDA0996B32DCACE* (*) (List_1_t1A9527CB44249AD17D081A2D7A468343FC2D0720*, int32_t, const RuntimeMethod*))List_1_get_Item_m33561245D64798C2AB07584C0EC4F240E4839A38_gshared)(__this, ___0_index, method);
|
|
}
|
|
inline DecalCulledChunk_tFD4472F0ADDD173C7B13E8B0529983E745F12ED3* List_1_get_Item_m1678465F50522CE2FAF1BB8EA6969B91268E5FA3 (List_1_t2E25D2E682EF62FB0FC538A4C88B3D49616A03DC* __this, int32_t ___0_index, const RuntimeMethod* method)
|
|
{
|
|
return (( DecalCulledChunk_tFD4472F0ADDD173C7B13E8B0529983E745F12ED3* (*) (List_1_t2E25D2E682EF62FB0FC538A4C88B3D49616A03DC*, int32_t, const RuntimeMethod*))List_1_get_Item_m33561245D64798C2AB07584C0EC4F240E4839A38_gshared)(__this, ___0_index, method);
|
|
}
|
|
inline DecalDrawCallChunk_tBD0491A1B0B7D19DF01A5C9EDE0A40CBEDBF7A3A* List_1_get_Item_m4AA84FB449EDD461A47D02E7C9ED3EF72D48A44E (List_1_tD8DB23A94A44626CAF7E9B5B4A949D0FDC7B27A7* __this, int32_t ___0_index, const RuntimeMethod* method)
|
|
{
|
|
return (( DecalDrawCallChunk_tBD0491A1B0B7D19DF01A5C9EDE0A40CBEDBF7A3A* (*) (List_1_tD8DB23A94A44626CAF7E9B5B4A949D0FDC7B27A7*, int32_t, const RuntimeMethod*))List_1_get_Item_m33561245D64798C2AB07584C0EC4F240E4839A38_gshared)(__this, ___0_index, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DecalCreateDrawCallSystem_Execute_mBF8D18F365AC3BA7FC5C0FA8450D707858EAE597 (DecalCreateDrawCallSystem_tD9FCA6DDC386309EBF5C2D737D458A33E7EAF6DA* __this, DecalCachedChunk_tDEF493C8A3A1F442BDEC1794BDDA0996B32DCACE* ___0_cachedChunk, DecalCulledChunk_tFD4472F0ADDD173C7B13E8B0529983E745F12ED3* ___1_culledChunk, DecalDrawCallChunk_tBD0491A1B0B7D19DF01A5C9EDE0A40CBEDBF7A3A* ___2_drawCallChunk, int32_t ___3_count, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR JobHandle_t5DF5F99902FED3C801A81C05205CEA6CE039EF08 DecalChunk_get_currentJobHandle_m0EBD28118EB20E5BBC3BE831171CD2CDC745AAD4_inline (DecalChunk_tD2C5831DD2A6E97A7A738C88C5922305BA0513CA* __this, const RuntimeMethod* method) ;
|
|
inline JobHandle_t5DF5F99902FED3C801A81C05205CEA6CE039EF08 IJobExtensions_Schedule_TisDrawCallJob_t3EA2ABC822AD5DF50675A5B437DAB927DB95215D_m5EC4DC118A53DBDBF558451EE4FB9DE5F18A379A (DrawCallJob_t3EA2ABC822AD5DF50675A5B437DAB927DB95215D ___0_jobData, JobHandle_t5DF5F99902FED3C801A81C05205CEA6CE039EF08 ___1_dependsOn, const RuntimeMethod* method)
|
|
{
|
|
return (( JobHandle_t5DF5F99902FED3C801A81C05205CEA6CE039EF08 (*) (DrawCallJob_t3EA2ABC822AD5DF50675A5B437DAB927DB95215D, JobHandle_t5DF5F99902FED3C801A81C05205CEA6CE039EF08, const RuntimeMethod*))IJobExtensions_Schedule_TisDrawCallJob_t3EA2ABC822AD5DF50675A5B437DAB927DB95215D_m5EC4DC118A53DBDBF558451EE4FB9DE5F18A379A_gshared)(___0_jobData, ___1_dependsOn, method);
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void DecalChunk_set_currentJobHandle_mE426515F8CC325C7F17BED7DB77E3024C43CE1AD_inline (DecalChunk_tD2C5831DD2A6E97A7A738C88C5922305BA0513CA* __this, JobHandle_t5DF5F99902FED3C801A81C05205CEA6CE039EF08 ___0_value, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 Vector3_op_Subtraction_mE42023FF80067CB44A1D4A27EB7CF2B24CABB828_inline (Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___0_a, Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___1_b, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float Vector3_get_magnitude_mF0D6017E90B345F1F52D1CC564C640F1A847AF2D_inline (Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float math_min_m54FD010BEF505D2BA1F79FC793BEB0723C329C3B_inline (float ___0_x, float ___1_y, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float math_clamp_mB7233FC9D6C27522014C4E6D4E056D36CE82C97E_inline (float ___0_valueToClamp, float ___1_lowerBound, float ___2_upperBound, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void float4__ctor_mB2F7F2D8BCE8159BEF5A0D6400499E211858ED2D_inline (float4_t89D9A294E7A79BD81BFBDD18654508532958555E* __this, float ___0_x, float ___1_y, float ___2_z, float ___3_w, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_NO_INLINE IL2CPP_METHOD_ATTR void DrawCallJob_Execute_m772E79CB22259A292B0C7852DE63822BB3C62345 (DrawCallJob_t3EA2ABC822AD5DF50675A5B437DAB927DB95215D* IL2CPP_PARAMETER_RESTRICT __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ProfilingScope__ctor_mEF7BF01DCAD3709F978E564AEDEDD643FC617904 (ProfilingScope_t57898BA31E8EF8F083EF84E0DA2737AC61CBC5BD* __this, BaseCommandBuffer_tD67BB9B3F740537BD3F3A96FA17D06E6C3BFDC06* ___0_cmd, ProfilingSampler_t420D4672EDB44E0EF980B31ADFD9E5747200FECE* ___1_sampler, const RuntimeMethod* method) ;
|
|
inline DecalEntityChunk_t2CDCBFA35711DA074631D26572EF9755A3AD740C* List_1_get_Item_mFCF8BC94A0C7B3A51A1FC623D4F3335994152975 (List_1_t437E45D007C2D93DCB30DA30023CB2745EE095D0* __this, int32_t ___0_index, const RuntimeMethod* method)
|
|
{
|
|
return (( DecalEntityChunk_t2CDCBFA35711DA074631D26572EF9755A3AD740C* (*) (List_1_t437E45D007C2D93DCB30DA30023CB2745EE095D0*, int32_t, const RuntimeMethod*))List_1_get_Item_m33561245D64798C2AB07584C0EC4F240E4839A38_gshared)(__this, ___0_index, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DecalDrawSystem_Execute_mCEA86CDE88D3A624C62D0C696DB90DAF318F9EFD (DecalDrawSystem_t87ECA1A8D2D9C3A73A12F81D8CCA0F79029C0BFE* __this, RasterCommandBuffer_t4300C4F080EA3CF43C7ACFDBD4F94EA633FE98E8* ___0_cmd, DecalEntityChunk_t2CDCBFA35711DA074631D26572EF9755A3AD740C* ___1_decalEntityChunk, DecalCachedChunk_tDEF493C8A3A1F442BDEC1794BDDA0996B32DCACE* ___2_decalCachedChunk, DecalDrawCallChunk_tBD0491A1B0B7D19DF01A5C9EDE0A40CBEDBF7A3A* ___3_decalDrawCallChunk, int32_t ___4_count, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JobHandle_Complete_mDCED35A125AAB37EDDAB2E31C805B4904B614A4A (JobHandle_t5DF5F99902FED3C801A81C05205CEA6CE039EF08* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool SystemInfo_get_supportsInstancing_m8EF067060BFA3D50A266342D26A392747DA4FF3E (const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Material_get_enableInstancing_m4EF71CDFA15E9EB97752861350CEDB3D8CC00580 (Material_t18053F08F347D0DCA5E1140EC7EC4533DD8A14E3* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DecalDrawSystem_DrawInstanced_mF16455B785F6FEC6150F87EC4ED60A5BEBBC1D95 (DecalDrawSystem_t87ECA1A8D2D9C3A73A12F81D8CCA0F79029C0BFE* __this, RasterCommandBuffer_t4300C4F080EA3CF43C7ACFDBD4F94EA633FE98E8* ___0_cmd, DecalEntityChunk_t2CDCBFA35711DA074631D26572EF9755A3AD740C* ___1_decalEntityChunk, DecalCachedChunk_tDEF493C8A3A1F442BDEC1794BDDA0996B32DCACE* ___2_decalCachedChunk, DecalDrawCallChunk_tBD0491A1B0B7D19DF01A5C9EDE0A40CBEDBF7A3A* ___3_decalDrawCallChunk, int32_t ___4_passIndex, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DecalDrawSystem_Draw_mBD8DA11CF8288CA46FB3441431FC3434536682E7 (DecalDrawSystem_t87ECA1A8D2D9C3A73A12F81D8CCA0F79029C0BFE* __this, RasterCommandBuffer_t4300C4F080EA3CF43C7ACFDBD4F94EA633FE98E8* ___0_cmd, DecalEntityChunk_t2CDCBFA35711DA074631D26572EF9755A3AD740C* ___1_decalEntityChunk, DecalCachedChunk_tDEF493C8A3A1F442BDEC1794BDDA0996B32DCACE* ___2_decalCachedChunk, DecalDrawCallChunk_tBD0491A1B0B7D19DF01A5C9EDE0A40CBEDBF7A3A* ___3_decalDrawCallChunk, int32_t ___4_passIndex, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Mesh_t6D9C539763A09BC2B12AEAEF36F6DFFC98AE63D4* DecalEntityManager_get_decalProjectorMesh_m63E8D23353B8A5881EC5D5AE562FC8F3D234BD69 (DecalEntityManager_tDA689202786946588782A67EF3F0B0D9121C294A* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MaterialPropertyBlock_SetVector_mB3D0FFCCDFF9D78447719F25DB8C1AFCB12B8BD5 (MaterialPropertyBlock_t2308669579033A857EFE6E4831909F638B27411D* __this, String_t* ___0_name, Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3 ___1_value, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t DecalDrawCallChunk_get_subCallCount_m122EAA49534D171EF4779395DA05095FC9DD080D (DecalDrawCallChunk_tBD0491A1B0B7D19DF01A5C9EDE0A40CBEDBF7A3A* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Matrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6 float4x4_op_Implicit_mC056D7C9F17B6D06E026163034B5414E56DA04B4 (float4x4_t7EDD16F7F57DC7F61A6302535F7C19FB97915DF2 ___0_m, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MaterialPropertyBlock_SetMatrix_mB07C5C1539AACE5683720A013B1A44C0D1895910 (MaterialPropertyBlock_t2308669579033A857EFE6E4831909F638B27411D* __this, String_t* ___0_name, Matrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6 ___1_value, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MaterialPropertyBlock_SetFloat_m49458EDC57C2B431D765FE7414F18918AD619888 (MaterialPropertyBlock_t2308669579033A857EFE6E4831909F638B27411D* __this, String_t* ___0_name, float ___1_value, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RasterCommandBuffer_DrawMesh_mEC6825FC85CCF0EF1A657C7668D35371ED27B292 (RasterCommandBuffer_t4300C4F080EA3CF43C7ACFDBD4F94EA633FE98E8* __this, Mesh_t6D9C539763A09BC2B12AEAEF36F6DFFC98AE63D4* ___0_mesh, Matrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6 ___1_matrix, Material_t18053F08F347D0DCA5E1140EC7EC4533DD8A14E3* ___2_material, int32_t ___3_submeshIndex, int32_t ___4_shaderPass, MaterialPropertyBlock_t2308669579033A857EFE6E4831909F638B27411D* ___5_properties, const RuntimeMethod* method) ;
|
|
inline NativeArray_1_t6D4C2D5161FC101BAF06059CD9414A2153CCC2A0 NativeArray_1_Reinterpret_TisMatrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6_m0305CE8B48077F1A6A9C1C7146BEDA3A09B8274B (NativeArray_1_t63326FF687E26631308829A9CDB0C51D523D4E9A* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( NativeArray_1_t6D4C2D5161FC101BAF06059CD9414A2153CCC2A0 (*) (NativeArray_1_t63326FF687E26631308829A9CDB0C51D523D4E9A*, const RuntimeMethod*))NativeArray_1_Reinterpret_TisMatrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6_m0305CE8B48077F1A6A9C1C7146BEDA3A09B8274B_gshared)(__this, method);
|
|
}
|
|
inline void NativeArray_1_Copy_mCB984DA829C4D613BDCE16D39741EF4FDC95EF92 (NativeArray_1_t6D4C2D5161FC101BAF06059CD9414A2153CCC2A0 ___0_src, int32_t ___1_srcIndex, Matrix4x4U5BU5D_t9C51C93425FABC022B506D2DB3A5FA70F9752C4D* ___2_dst, int32_t ___3_dstIndex, int32_t ___4_length, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (NativeArray_1_t6D4C2D5161FC101BAF06059CD9414A2153CCC2A0, int32_t, Matrix4x4U5BU5D_t9C51C93425FABC022B506D2DB3A5FA70F9752C4D*, int32_t, int32_t, const RuntimeMethod*))NativeArray_1_Copy_mCB984DA829C4D613BDCE16D39741EF4FDC95EF92_gshared)(___0_src, ___1_srcIndex, ___2_dst, ___3_dstIndex, ___4_length, method);
|
|
}
|
|
inline NativeArray_1_t3848EE4B6647317212A754634DE6DBC90B99FBEF NativeArray_1_Reinterpret_TisSingle_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_mDCC6EC00BF88D23975965B27D2824BF2F070EB14 (NativeArray_1_t3848EE4B6647317212A754634DE6DBC90B99FBEF* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( NativeArray_1_t3848EE4B6647317212A754634DE6DBC90B99FBEF (*) (NativeArray_1_t3848EE4B6647317212A754634DE6DBC90B99FBEF*, const RuntimeMethod*))NativeArray_1_Reinterpret_TisSingle_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_mDCC6EC00BF88D23975965B27D2824BF2F070EB14_gshared)(__this, method);
|
|
}
|
|
inline void NativeArray_1_Copy_mF705F6BD4C4D02C73B49A4D937A01BA1048A537D (NativeArray_1_t3848EE4B6647317212A754634DE6DBC90B99FBEF ___0_src, int32_t ___1_srcIndex, SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C* ___2_dst, int32_t ___3_dstIndex, int32_t ___4_length, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (NativeArray_1_t3848EE4B6647317212A754634DE6DBC90B99FBEF, int32_t, SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C*, int32_t, int32_t, const RuntimeMethod*))NativeArray_1_Copy_mF705F6BD4C4D02C73B49A4D937A01BA1048A537D_gshared)(___0_src, ___1_srcIndex, ___2_dst, ___3_dstIndex, ___4_length, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MaterialPropertyBlock_SetMatrixArray_m804373A3E7B1D31A4ACD522186ADAD4EF91F93DB (MaterialPropertyBlock_t2308669579033A857EFE6E4831909F638B27411D* __this, String_t* ___0_name, Matrix4x4U5BU5D_t9C51C93425FABC022B506D2DB3A5FA70F9752C4D* ___1_values, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MaterialPropertyBlock_SetFloatArray_mB5CC5932A09B2DA4FD9F8F9021C6229AC77FC314 (MaterialPropertyBlock_t2308669579033A857EFE6E4831909F638B27411D* __this, String_t* ___0_name, SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C* ___1_values, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RasterCommandBuffer_DrawMeshInstanced_m4FE35F22A8230739E0D6FE68EF18BF6B456BF30B (RasterCommandBuffer_t4300C4F080EA3CF43C7ACFDBD4F94EA633FE98E8* __this, Mesh_t6D9C539763A09BC2B12AEAEF36F6DFFC98AE63D4* ___0_mesh, int32_t ___1_submeshIndex, Material_t18053F08F347D0DCA5E1140EC7EC4533DD8A14E3* ___2_material, int32_t ___3_shaderPass, Matrix4x4U5BU5D_t9C51C93425FABC022B506D2DB3A5FA70F9752C4D* ___4_matrices, int32_t ___5_count, MaterialPropertyBlock_t2308669579033A857EFE6E4831909F638B27411D* ___6_properties, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DecalDrawSystem_Execute_mC5197C5061BD8C4021610E9B5B800D948413145D (DecalDrawSystem_t87ECA1A8D2D9C3A73A12F81D8CCA0F79029C0BFE* __this, CameraData_tC27AE109CD20677486A4AC19C0CF014AE0F50C3E* ___0_cameraData, DecalEntityChunk_t2CDCBFA35711DA074631D26572EF9755A3AD740C* ___1_decalEntityChunk, DecalCachedChunk_tDEF493C8A3A1F442BDEC1794BDDA0996B32DCACE* ___2_decalCachedChunk, DecalDrawCallChunk_tBD0491A1B0B7D19DF01A5C9EDE0A40CBEDBF7A3A* ___3_decalDrawCallChunk, int32_t ___4_count, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DecalDrawSystem_DrawInstanced_mC10A3330403DC57466A40DD210DF51411A7CB490 (DecalDrawSystem_t87ECA1A8D2D9C3A73A12F81D8CCA0F79029C0BFE* __this, CameraData_tC27AE109CD20677486A4AC19C0CF014AE0F50C3E* ___0_cameraData, DecalEntityChunk_t2CDCBFA35711DA074631D26572EF9755A3AD740C* ___1_decalEntityChunk, DecalCachedChunk_tDEF493C8A3A1F442BDEC1794BDDA0996B32DCACE* ___2_decalCachedChunk, DecalDrawCallChunk_tBD0491A1B0B7D19DF01A5C9EDE0A40CBEDBF7A3A* ___3_decalDrawCallChunk, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DecalDrawSystem_Draw_mEC0F1B82C7841FDE1F135CC74C2B356D8E92C9D4 (DecalDrawSystem_t87ECA1A8D2D9C3A73A12F81D8CCA0F79029C0BFE* __this, CameraData_tC27AE109CD20677486A4AC19C0CF014AE0F50C3E* ___0_cameraData, DecalEntityChunk_t2CDCBFA35711DA074631D26572EF9755A3AD740C* ___1_decalEntityChunk, DecalCachedChunk_tDEF493C8A3A1F442BDEC1794BDDA0996B32DCACE* ___2_decalCachedChunk, DecalDrawCallChunk_tBD0491A1B0B7D19DF01A5C9EDE0A40CBEDBF7A3A* ___3_decalDrawCallChunk, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184** CameraData_get_camera_mA3084B19BBF03DF4E59402E021A74016AC808B01 (CameraData_tC27AE109CD20677486A4AC19C0CF014AE0F50C3E* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Graphics_DrawMesh_mCFBCF7F355A3BEB4B8E26BDC9C12E064E3EA1C71 (Mesh_t6D9C539763A09BC2B12AEAEF36F6DFFC98AE63D4* ___0_mesh, Matrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6 ___1_matrix, Material_t18053F08F347D0DCA5E1140EC7EC4533DD8A14E3* ___2_material, int32_t ___3_layer, Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184* ___4_camera, int32_t ___5_submeshIndex, MaterialPropertyBlock_t2308669579033A857EFE6E4831909F638B27411D* ___6_properties, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Graphics_DrawMeshInstanced_m427C1A183F3C36F8971E842D3783900820CFD1C6 (Mesh_t6D9C539763A09BC2B12AEAEF36F6DFFC98AE63D4* ___0_mesh, int32_t ___1_submeshIndex, Material_t18053F08F347D0DCA5E1140EC7EC4533DD8A14E3* ___2_material, Matrix4x4U5BU5D_t9C51C93425FABC022B506D2DB3A5FA70F9752C4D* ___3_matrices, int32_t ___4_count, MaterialPropertyBlock_t2308669579033A857EFE6E4831909F638B27411D* ___5_properties, int32_t ___6_castShadows, bool ___7_receiveShadows, int32_t ___8_layer, Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184* ___9_camera, const RuntimeMethod* method) ;
|
|
inline int32_t List_1_get_Count_mED203CDDFC49CE3879C37BC63A8F53B4375C351B_inline (List_1_t218CEA415E5769B47AB34C68D264977822ECAD17* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( int32_t (*) (List_1_t218CEA415E5769B47AB34C68D264977822ECAD17*, const RuntimeMethod*))List_1_get_Count_mED203CDDFC49CE3879C37BC63A8F53B4375C351B_gshared_inline)(__this, method);
|
|
}
|
|
inline DecalEntityItem_tE2209120E111E679725F7022B0C54DEC6783EA5D List_1_get_Item_m54FB7CAFE4C95FB5BAD4BFD0BDAE72F6C6B0E7F3 (List_1_t218CEA415E5769B47AB34C68D264977822ECAD17* __this, int32_t ___0_index, const RuntimeMethod* method)
|
|
{
|
|
return (( DecalEntityItem_tE2209120E111E679725F7022B0C54DEC6783EA5D (*) (List_1_t218CEA415E5769B47AB34C68D264977822ECAD17*, int32_t, const RuntimeMethod*))List_1_get_Item_m54FB7CAFE4C95FB5BAD4BFD0BDAE72F6C6B0E7F3_gshared)(__this, ___0_index, method);
|
|
}
|
|
inline int32_t Queue_1_get_Count_mC5E49C471693AD17FDBA87D8532FB0676AC0BB75_inline (Queue_1_tCA24E420CB13C6411AEFC3ECE9E62219F7937A1E* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( int32_t (*) (Queue_1_tCA24E420CB13C6411AEFC3ECE9E62219F7937A1E*, const RuntimeMethod*))Queue_1_get_Count_mC5E49C471693AD17FDBA87D8532FB0676AC0BB75_gshared_inline)(__this, method);
|
|
}
|
|
inline int32_t Queue_1_Dequeue_mF8CBF6CA268A863994D198E7FB69116D39C9D650 (Queue_1_tCA24E420CB13C6411AEFC3ECE9E62219F7937A1E* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( int32_t (*) (Queue_1_tCA24E420CB13C6411AEFC3ECE9E62219F7937A1E*, const RuntimeMethod*))Queue_1_Dequeue_mF8CBF6CA268A863994D198E7FB69116D39C9D650_gshared)(__this, method);
|
|
}
|
|
inline void List_1_set_Item_m3BF7B0B2C94CCE04F5404BC1BBDE6B1FCFAC802D (List_1_t218CEA415E5769B47AB34C68D264977822ECAD17* __this, int32_t ___0_index, DecalEntityItem_tE2209120E111E679725F7022B0C54DEC6783EA5D ___1_value, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (List_1_t218CEA415E5769B47AB34C68D264977822ECAD17*, int32_t, DecalEntityItem_tE2209120E111E679725F7022B0C54DEC6783EA5D, const RuntimeMethod*))List_1_set_Item_m3BF7B0B2C94CCE04F5404BC1BBDE6B1FCFAC802D_gshared)(__this, ___0_index, ___1_value, method);
|
|
}
|
|
inline void List_1_Add_mF87065DB2C5D09F1743E971BED0CCDC4827EB029_inline (List_1_t218CEA415E5769B47AB34C68D264977822ECAD17* __this, DecalEntityItem_tE2209120E111E679725F7022B0C54DEC6783EA5D ___0_item, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (List_1_t218CEA415E5769B47AB34C68D264977822ECAD17*, DecalEntityItem_tE2209120E111E679725F7022B0C54DEC6783EA5D, const RuntimeMethod*))List_1_Add_mF87065DB2C5D09F1743E971BED0CCDC4827EB029_gshared_inline)(__this, ___0_item, method);
|
|
}
|
|
inline void Queue_1_Enqueue_mD0BFD1A401EF2D3489D09B60C30E3468601BBA0A (Queue_1_tCA24E420CB13C6411AEFC3ECE9E62219F7937A1E* __this, int32_t ___0_item, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Queue_1_tCA24E420CB13C6411AEFC3ECE9E62219F7937A1E*, int32_t, const RuntimeMethod*))Queue_1_Enqueue_mD0BFD1A401EF2D3489D09B60C30E3468601BBA0A_gshared)(__this, ___0_item, method);
|
|
}
|
|
inline int32_t List_1_get_Item_mD99081BEFA1AB3526715F489192B0F7F596C183D (List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* __this, int32_t ___0_index, const RuntimeMethod* method)
|
|
{
|
|
return (( int32_t (*) (List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73*, int32_t, const RuntimeMethod*))List_1_get_Item_mD99081BEFA1AB3526715F489192B0F7F596C183D_gshared)(__this, ___0_index, method);
|
|
}
|
|
inline void List_1_Clear_m522A510644863A65AB5D00B85D6D20F27E8868FF_inline (List_1_t218CEA415E5769B47AB34C68D264977822ECAD17* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (List_1_t218CEA415E5769B47AB34C68D264977822ECAD17*, const RuntimeMethod*))List_1_Clear_m522A510644863A65AB5D00B85D6D20F27E8868FF_gshared_inline)(__this, method);
|
|
}
|
|
inline void Queue_1_Clear_mF9C62216146F40E17E678C66BDFD0672A6A2BFA1 (Queue_1_tCA24E420CB13C6411AEFC3ECE9E62219F7937A1E* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Queue_1_tCA24E420CB13C6411AEFC3ECE9E62219F7937A1E*, const RuntimeMethod*))Queue_1_Clear_mF9C62216146F40E17E678C66BDFD0672A6A2BFA1_gshared)(__this, method);
|
|
}
|
|
inline void List_1__ctor_m85ABB9DABC756112634E3DAA683DB6B932717F89 (List_1_t218CEA415E5769B47AB34C68D264977822ECAD17* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (List_1_t218CEA415E5769B47AB34C68D264977822ECAD17*, const RuntimeMethod*))List_1__ctor_m85ABB9DABC756112634E3DAA683DB6B932717F89_gshared)(__this, method);
|
|
}
|
|
inline void Queue_1__ctor_mCFD83A65B216389290AEF3479047C9FBD933BF5D (Queue_1_tCA24E420CB13C6411AEFC3ECE9E62219F7937A1E* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Queue_1_tCA24E420CB13C6411AEFC3ECE9E62219F7937A1E*, const RuntimeMethod*))Queue_1__ctor_mCFD83A65B216389290AEF3479047C9FBD933BF5D_gshared)(__this, method);
|
|
}
|
|
inline void DecalChunk_RemoveAtSwapBack_TisDecalEntity_t8CAF09C65939503449C4138ADCDC4907196293FD_m36119187CF415D833FDD62E726BC5A1101C68EFB (DecalChunk_tD2C5831DD2A6E97A7A738C88C5922305BA0513CA* __this, NativeArray_1_t83F02282C33BAD818D67110F7760483208880311* ___0_array, int32_t ___1_index, int32_t ___2_count, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (DecalChunk_tD2C5831DD2A6E97A7A738C88C5922305BA0513CA*, NativeArray_1_t83F02282C33BAD818D67110F7760483208880311*, int32_t, int32_t, const RuntimeMethod*))DecalChunk_RemoveAtSwapBack_TisDecalEntity_t8CAF09C65939503449C4138ADCDC4907196293FD_m36119187CF415D833FDD62E726BC5A1101C68EFB_gshared)(__this, ___0_array, ___1_index, ___2_count, method);
|
|
}
|
|
inline void DecalChunk_RemoveAtSwapBack_TisDecalProjector_tE7CEBAABFEF36162FD325321C1F94173CEFEDF64_mE9432E8937742F4166543B7E2D8E7867C9751BAA (DecalChunk_tD2C5831DD2A6E97A7A738C88C5922305BA0513CA* __this, DecalProjectorU5BU5D_t4DB89E5586C0FD4200DA223C0ADAFD3D66BF21F3** ___0_array, int32_t ___1_index, int32_t ___2_count, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (DecalChunk_tD2C5831DD2A6E97A7A738C88C5922305BA0513CA*, DecalProjectorU5BU5D_t4DB89E5586C0FD4200DA223C0ADAFD3D66BF21F3**, int32_t, int32_t, const RuntimeMethod*))DecalChunk_RemoveAtSwapBack_TisRuntimeObject_m7589FCF9692B333A56368AB65C3CC44A1F5096AD_gshared)(__this, ___0_array, ___1_index, ___2_count, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TransformAccessArray_RemoveAtSwapBack_m20FDDF2B47CD9A3778D4B59AD6598DCF9D985776 (TransformAccessArray_t104EDE5BB3DC7E294332BB1D2AA508CAEDEE83D4* __this, int32_t ___0_index, const RuntimeMethod* method) ;
|
|
inline void ArrayExtensions_ResizeArray_TisDecalEntity_t8CAF09C65939503449C4138ADCDC4907196293FD_m48C0117B395C3815A44062256EA8529C46D36025 (NativeArray_1_t83F02282C33BAD818D67110F7760483208880311* ___0_array, int32_t ___1_capacity, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (NativeArray_1_t83F02282C33BAD818D67110F7760483208880311*, int32_t, const RuntimeMethod*))ArrayExtensions_ResizeArray_TisDecalEntity_t8CAF09C65939503449C4138ADCDC4907196293FD_m48C0117B395C3815A44062256EA8529C46D36025_gshared)(___0_array, ___1_capacity, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DecalChunk_ResizeNativeArray_m9652651457AB96782FBF7D08ADFF217768611E9C (DecalChunk_tD2C5831DD2A6E97A7A738C88C5922305BA0513CA* __this, TransformAccessArray_t104EDE5BB3DC7E294332BB1D2AA508CAEDEE83D4* ___0_array, DecalProjectorU5BU5D_t4DB89E5586C0FD4200DA223C0ADAFD3D66BF21F3* ___1_decalProjectors, int32_t ___2_capacity, const RuntimeMethod* method) ;
|
|
inline void ArrayExtensions_ResizeArray_TisDecalProjector_tE7CEBAABFEF36162FD325321C1F94173CEFEDF64_mB5978910DC5DE32AA46F24E4EB057779F4801878 (DecalProjectorU5BU5D_t4DB89E5586C0FD4200DA223C0ADAFD3D66BF21F3** ___0_array, int32_t ___1_capacity, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (DecalProjectorU5BU5D_t4DB89E5586C0FD4200DA223C0ADAFD3D66BF21F3**, int32_t, const RuntimeMethod*))ArrayExtensions_ResizeArray_TisRuntimeObject_m6BFC2474086385E6C47BD8792E0405393BEF2B62_gshared)(___0_array, ___1_capacity, method);
|
|
}
|
|
inline void NativeArray_1_Dispose_m0032B76C31C760137D0DB03AFF0ADF68197AD3C3 (NativeArray_1_t83F02282C33BAD818D67110F7760483208880311* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (NativeArray_1_t83F02282C33BAD818D67110F7760483208880311*, const RuntimeMethod*))NativeArray_1_Dispose_m0032B76C31C760137D0DB03AFF0ADF68197AD3C3_gshared)(__this, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Shader_tADC867D36B7876EE22427FAA2CE485105F4EE692* Shader_Find_m183AA54F78320212DDEC811592F98456898A41C5 (String_t* ___0_name, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Material_t18053F08F347D0DCA5E1140EC7EC4533DD8A14E3* CoreUtils_CreateEngineMaterial_m81DECC0AF6901F95B5041A00ED588F5230546AD2 (Shader_tADC867D36B7876EE22427FAA2CE485105F4EE692* ___0_shader, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 Vector4_op_Implicit_m0217ADDC8CADDB93ACBABB17A50207698DAB0071_inline (Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3 ___0_v, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Mesh_t6D9C539763A09BC2B12AEAEF36F6DFFC98AE63D4* CoreUtils_CreateCubeMesh_mB701A16899348266F6DDDEE36CC2E4EDC788A44B (Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___0_min, Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___1_max, const RuntimeMethod* method) ;
|
|
inline void List_1__ctor_m1DAED5A8EFFF0E76240583B2476A0782F36ABA0E (List_1_t437E45D007C2D93DCB30DA30023CB2745EE095D0* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (List_1_t437E45D007C2D93DCB30DA30023CB2745EE095D0*, const RuntimeMethod*))List_1__ctor_m7F078BB342729BDF11327FD89D7872265328F690_gshared)(__this, method);
|
|
}
|
|
inline void List_1__ctor_mE6E9C860C1BC22D7D9013215F7A81182FCD3BB1C (List_1_t1A9527CB44249AD17D081A2D7A468343FC2D0720* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (List_1_t1A9527CB44249AD17D081A2D7A468343FC2D0720*, const RuntimeMethod*))List_1__ctor_m7F078BB342729BDF11327FD89D7872265328F690_gshared)(__this, method);
|
|
}
|
|
inline void List_1__ctor_m704CDA15CF76B2197F63CD15DB8F1A9B9F209E07 (List_1_t2E25D2E682EF62FB0FC538A4C88B3D49616A03DC* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (List_1_t2E25D2E682EF62FB0FC538A4C88B3D49616A03DC*, const RuntimeMethod*))List_1__ctor_m7F078BB342729BDF11327FD89D7872265328F690_gshared)(__this, method);
|
|
}
|
|
inline void List_1__ctor_mAA472708F75F42B710D5787D9B2FC033BA985640 (List_1_tD8DB23A94A44626CAF7E9B5B4A949D0FDC7B27A7* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (List_1_tD8DB23A94A44626CAF7E9B5B4A949D0FDC7B27A7*, const RuntimeMethod*))List_1__ctor_m7F078BB342729BDF11327FD89D7872265328F690_gshared)(__this, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DecalEntityIndexer__ctor_mD6DF01884095A1C87EDD8B19D701808CB5F4C350 (DecalEntityIndexer_t884A1F60E13512A2DE8CEC24635D2B3BE3FD3544* __this, const RuntimeMethod* method) ;
|
|
inline void Dictionary_2__ctor_mA563968253DE4672794228EC7E1F9BC19CAE0A93 (Dictionary_2_t6EB10DF170874D02D43E115B0A1B93479CE3FF80* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Dictionary_2_t6EB10DF170874D02D43E115B0A1B93479CE3FF80*, const RuntimeMethod*))Dictionary_2__ctor_m517E7F9D104FEAE6646EABDDC9C852510E86077C_gshared)(__this, method);
|
|
}
|
|
inline void List_1__ctor_m44CF7D068C78C4031FE1623E6502FC9270D1630C (List_1_t75FC6D059D696BAD77462D09FCDC98B4A7B7D3D4* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (List_1_t75FC6D059D696BAD77462D09FCDC98B4A7B7D3D4*, const RuntimeMethod*))List_1__ctor_m44CF7D068C78C4031FE1623E6502FC9270D1630C_gshared)(__this, method);
|
|
}
|
|
inline void List_1__ctor_m17F501B5A5C289ECE1B4F3D6EBF05DFA421433F8 (List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73*, const RuntimeMethod*))List_1__ctor_m17F501B5A5C289ECE1B4F3D6EBF05DFA421433F8_gshared)(__this, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DecalEntityIndexer_IsValid_m435987501A9563EFB838C9D79D9681C3FD642A5D (DecalEntityIndexer_t884A1F60E13512A2DE8CEC24635D2B3BE3FD3544* __this, DecalEntity_t8CAF09C65939503449C4138ADCDC4907196293FD ___0_decalEntity, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t DecalEntityManager_CreateChunkIndex_m6DE42494DDDD8A7DAEB03212B507A86C3C64E06F (DecalEntityManager_tDA689202786946588782A67EF3F0B0D9121C294A* __this, Material_t18053F08F347D0DCA5E1140EC7EC4533DD8A14E3* ___0_material, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DecalEntity_t8CAF09C65939503449C4138ADCDC4907196293FD DecalEntityIndexer_CreateDecalEntity_m002875F9D20F7172B5CB77641FCC7C87261B58F7 (DecalEntityIndexer_t884A1F60E13512A2DE8CEC24635D2B3BE3FD3544* __this, int32_t ___0_arrayIndex, int32_t ___1_chunkIndex, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t math_max_m9083201D37A8ED0157B127B5878D9B7F3A2A40BE_inline (int32_t ___0_x, int32_t ___1_y, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DecalEntityManager_UpdateDecalEntityData_mADA2777065215D61F2FB0CA51F5A91700547DB28 (DecalEntityManager_tDA689202786946588782A67EF3F0B0D9121C294A* __this, DecalEntity_t8CAF09C65939503449C4138ADCDC4907196293FD ___0_decalEntity, DecalProjector_tE7CEBAABFEF36162FD325321C1F94173CEFEDF64* ___1_decalProjector, const RuntimeMethod* method) ;
|
|
inline bool Dictionary_2_TryGetValue_mFFE573FB3A9A6382F9B1D723AC935F8839F1DA26 (Dictionary_2_t6EB10DF170874D02D43E115B0A1B93479CE3FF80* __this, Material_t18053F08F347D0DCA5E1140EC7EC4533DD8A14E3* ___0_key, int32_t* ___1_value, const RuntimeMethod* method)
|
|
{
|
|
return (( bool (*) (Dictionary_2_t6EB10DF170874D02D43E115B0A1B93479CE3FF80*, Material_t18053F08F347D0DCA5E1140EC7EC4533DD8A14E3*, int32_t*, const RuntimeMethod*))Dictionary_2_TryGetValue_m4B8EE45640C70BBFD6F3EFF1040983404C098342_gshared)(__this, ___0_key, ___1_value, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MaterialPropertyBlock__ctor_m14C3432585F7BB65028BCD64A0FD6607A1B490FB (MaterialPropertyBlock_t2308669579033A857EFE6E4831909F638B27411D* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DecalEntityChunk__ctor_m6FE8DC65A6B4D4D4607D00208D780F529AC4751D (DecalEntityChunk_t2CDCBFA35711DA074631D26572EF9755A3AD740C* __this, const RuntimeMethod* method) ;
|
|
inline void List_1_Add_mBA5DCA355F0405A43E019DA085DA702A7F08B632_inline (List_1_t437E45D007C2D93DCB30DA30023CB2745EE095D0* __this, DecalEntityChunk_t2CDCBFA35711DA074631D26572EF9755A3AD740C* ___0_item, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (List_1_t437E45D007C2D93DCB30DA30023CB2745EE095D0*, DecalEntityChunk_t2CDCBFA35711DA074631D26572EF9755A3AD740C*, const RuntimeMethod*))List_1_Add_mEBCF994CC3814631017F46A387B1A192ED6C85C7_gshared_inline)(__this, ___0_item, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DecalCachedChunk__ctor_m5097692CFA636D32F3B34A371320A115DA4E6371 (DecalCachedChunk_tDEF493C8A3A1F442BDEC1794BDDA0996B32DCACE* __this, const RuntimeMethod* method) ;
|
|
inline void List_1_Add_m8495D908D03C140D97C2E99FAE15F6B98C2B3BA1_inline (List_1_t1A9527CB44249AD17D081A2D7A468343FC2D0720* __this, DecalCachedChunk_tDEF493C8A3A1F442BDEC1794BDDA0996B32DCACE* ___0_item, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (List_1_t1A9527CB44249AD17D081A2D7A468343FC2D0720*, DecalCachedChunk_tDEF493C8A3A1F442BDEC1794BDDA0996B32DCACE*, const RuntimeMethod*))List_1_Add_mEBCF994CC3814631017F46A387B1A192ED6C85C7_gshared_inline)(__this, ___0_item, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DecalCulledChunk__ctor_mCACB1A26B40BDE5EC3D4026081B50CAFCDFB721F (DecalCulledChunk_tFD4472F0ADDD173C7B13E8B0529983E745F12ED3* __this, const RuntimeMethod* method) ;
|
|
inline void List_1_Add_m60880A8D0548B9F2CA00A3C88432EF80A6D754FA_inline (List_1_t2E25D2E682EF62FB0FC538A4C88B3D49616A03DC* __this, DecalCulledChunk_tFD4472F0ADDD173C7B13E8B0529983E745F12ED3* ___0_item, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (List_1_t2E25D2E682EF62FB0FC538A4C88B3D49616A03DC*, DecalCulledChunk_tFD4472F0ADDD173C7B13E8B0529983E745F12ED3*, const RuntimeMethod*))List_1_Add_mEBCF994CC3814631017F46A387B1A192ED6C85C7_gshared_inline)(__this, ___0_item, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DecalDrawCallChunk__ctor_m9CBE14EC12931439E7C3B41B1C40A086139AA7EE (DecalDrawCallChunk_tBD0491A1B0B7D19DF01A5C9EDE0A40CBEDBF7A3A* __this, const RuntimeMethod* method) ;
|
|
inline void NativeArray_1__ctor_mB7BB23924A114599D399A5EC6C00B2B6407CF66D (NativeArray_1_tA833EB7E3E1C9AF82C37976AD964B8D4BAC38B2C* __this, int32_t ___0_length, int32_t ___1_allocator, int32_t ___2_options, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (NativeArray_1_tA833EB7E3E1C9AF82C37976AD964B8D4BAC38B2C*, int32_t, int32_t, int32_t, const RuntimeMethod*))NativeArray_1__ctor_mB7BB23924A114599D399A5EC6C00B2B6407CF66D_gshared)(__this, ___0_length, ___1_allocator, ___2_options, method);
|
|
}
|
|
inline void List_1_Add_m8FAAE99193D3A7C3DBF38A647493E8C1652C74F0_inline (List_1_tD8DB23A94A44626CAF7E9B5B4A949D0FDC7B27A7* __this, DecalDrawCallChunk_tBD0491A1B0B7D19DF01A5C9EDE0A40CBEDBF7A3A* ___0_item, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (List_1_tD8DB23A94A44626CAF7E9B5B4A949D0FDC7B27A7*, DecalDrawCallChunk_tBD0491A1B0B7D19DF01A5C9EDE0A40CBEDBF7A3A*, const RuntimeMethod*))List_1_Add_mEBCF994CC3814631017F46A387B1A192ED6C85C7_gshared_inline)(__this, ___0_item, method);
|
|
}
|
|
inline void List_1_Add_m53400F87C60C102F372B41825F43DDAA9544F2B7_inline (List_1_t75FC6D059D696BAD77462D09FCDC98B4A7B7D3D4* __this, CombinedChunks_tCFB3356163B9F9B0E31E0B194E9B415F83340ED9 ___0_item, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (List_1_t75FC6D059D696BAD77462D09FCDC98B4A7B7D3D4*, CombinedChunks_tCFB3356163B9F9B0E31E0B194E9B415F83340ED9, const RuntimeMethod*))List_1_Add_m53400F87C60C102F372B41825F43DDAA9544F2B7_gshared_inline)(__this, ___0_item, method);
|
|
}
|
|
inline void List_1_Add_m0248A96C5334E9A93E6994B7780478BCD994EA3D_inline (List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* __this, int32_t ___0_item, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73*, int32_t, const RuntimeMethod*))List_1_Add_m0248A96C5334E9A93E6994B7780478BCD994EA3D_gshared_inline)(__this, ___0_item, method);
|
|
}
|
|
inline void Dictionary_2_Add_mEF2E83E7D7A51D9598E8771D187138AF3CE614A6 (Dictionary_2_t6EB10DF170874D02D43E115B0A1B93479CE3FF80* __this, Material_t18053F08F347D0DCA5E1140EC7EC4533DD8A14E3* ___0_key, int32_t ___1_value, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Dictionary_2_t6EB10DF170874D02D43E115B0A1B93479CE3FF80*, Material_t18053F08F347D0DCA5E1140EC7EC4533DD8A14E3*, int32_t, const RuntimeMethod*))Dictionary_2_Add_m63897227AFA7035F1772315ABBBE7FD0A250E10C_gshared)(__this, ___0_key, ___1_value, method);
|
|
}
|
|
inline Enumerator_tF5DDF189C56DD8FE4A5FC3E8C99C6F401F606A5A List_1_GetEnumerator_m23C9E22BBF7C218F713D09604F58A0FEEB1FCA9C (List_1_t437E45D007C2D93DCB30DA30023CB2745EE095D0* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( Enumerator_tF5DDF189C56DD8FE4A5FC3E8C99C6F401F606A5A (*) (List_1_t437E45D007C2D93DCB30DA30023CB2745EE095D0*, const RuntimeMethod*))List_1_GetEnumerator_mD8294A7FA2BEB1929487127D476F8EC1CDC23BFC_gshared)(__this, method);
|
|
}
|
|
inline void Enumerator_Dispose_mE4288E0F12F7086A80CD684C0A0F919FD1DDACEC (Enumerator_tF5DDF189C56DD8FE4A5FC3E8C99C6F401F606A5A* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Enumerator_tF5DDF189C56DD8FE4A5FC3E8C99C6F401F606A5A*, const RuntimeMethod*))Enumerator_Dispose_mD9DC3E3C3697830A4823047AB29A77DBBB5ED419_gshared)(__this, method);
|
|
}
|
|
inline DecalEntityChunk_t2CDCBFA35711DA074631D26572EF9755A3AD740C* Enumerator_get_Current_m4EFC47E612DA489655B9850C2E9BA6B0CF084CB4_inline (Enumerator_tF5DDF189C56DD8FE4A5FC3E8C99C6F401F606A5A* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( DecalEntityChunk_t2CDCBFA35711DA074631D26572EF9755A3AD740C* (*) (Enumerator_tF5DDF189C56DD8FE4A5FC3E8C99C6F401F606A5A*, const RuntimeMethod*))Enumerator_get_Current_m6330F15D18EE4F547C05DF9BF83C5EB710376027_gshared_inline)(__this, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DecalEntityManager_IsValid_m3230B3D6F55B890FBA70B880A83FCE3BCB04AB6F (DecalEntityManager_tDA689202786946588782A67EF3F0B0D9121C294A* __this, DecalEntity_t8CAF09C65939503449C4138ADCDC4907196293FD ___0_decalEntity, const RuntimeMethod* method) ;
|
|
inline bool Enumerator_MoveNext_m80A18F75B452473B49786B16A4654E2C139E8290 (Enumerator_tF5DDF189C56DD8FE4A5FC3E8C99C6F401F606A5A* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( bool (*) (Enumerator_tF5DDF189C56DD8FE4A5FC3E8C99C6F401F606A5A*, const RuntimeMethod*))Enumerator_MoveNext_mE921CC8F29FBBDE7CC3209A0ED0D921D58D00BCB_gshared)(__this, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DecalEntityItem_tE2209120E111E679725F7022B0C54DEC6783EA5D DecalEntityIndexer_GetItem_mBFB4C74136CF7C0D5F6760F8A02908675E231F6D (DecalEntityIndexer_t884A1F60E13512A2DE8CEC24635D2B3BE3FD3544* __this, DecalEntity_t8CAF09C65939503449C4138ADCDC4907196293FD ___0_decalEntity, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 DecalProjector_get_decalOffset_m42B945918221551D1DD30FE80F335A707AE93C93 (DecalProjector_tE7CEBAABFEF36162FD325321C1F94173CEFEDF64* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Matrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6 Matrix4x4_Translate_mF3EDFC59C9E51DC0C0A483F6E44A4930D62E4091 (Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___0_vector, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 DecalProjector_get_decalSize_m897C18B439B795E0E979B808B91C1ACEBCC83867 (DecalProjector_tE7CEBAABFEF36162FD325321C1F94173CEFEDF64* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Matrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6 Matrix4x4_Scale_m95902D2A889FD6E7B04BBEAE6FAE5D6D8A88E642 (Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___0_vector, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Matrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6 Matrix4x4_op_Multiply_m75E91775655DCA8DFC8EDE0AB787285BB3935162 (Matrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6 ___0_lhs, Matrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6 ___1_rhs, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float4x4_t7EDD16F7F57DC7F61A6302535F7C19FB97915DF2 float4x4_op_Implicit_mCDD72C5454A8DAFB2A659484006D18D5979BE6AB (Matrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6 ___0_m, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float DecalProjector_get_drawDistance_mFD825C09FD3C99B01F33DBD057B180627010BE03_inline (DecalProjector_tE7CEBAABFEF36162FD325321C1F94173CEFEDF64* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float DecalProjector_get_fadeScale_m0114135F3885A2FE9F94CB7D98C6A7595578C26C_inline (DecalProjector_tE7CEBAABFEF36162FD325321C1F94173CEFEDF64* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float DecalProjector_get_startAngleFade_mD61F7D4B1D2B19EA3ADD8B2F53AF26963B058BB8_inline (DecalProjector_tE7CEBAABFEF36162FD325321C1F94173CEFEDF64* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float DecalProjector_get_endAngleFade_m367D4FA628133F6020678EC43A4E93F60C9D038E_inline (DecalProjector_tE7CEBAABFEF36162FD325321C1F94173CEFEDF64* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3 DecalProjector_get_uvScaleBias_m623FF505DD6AF3D2FF22922FBFC7FA8B3AF4788E (DecalProjector_tE7CEBAABFEF36162FD325321C1F94173CEFEDF64* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* Component_get_gameObject_m57AEFBB14DB39EC476F740BA000E170355DE691B (Component_t39FBE53E5EFCF4409111FB22C15FF73717632EC3* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t GameObject_get_layer_m108902B9C89E9F837CE06B9942AA42307450FEAF (GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t GameObject_get_sceneCullingMask_m278949639563C33453502982A92E5B127EA6DB87 (GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float DecalProjector_get_fadeFactor_m5C265D9A466D5C9F558846AEDDEDBC4B8D6C83CD_inline (DecalProjector_tE7CEBAABFEF36162FD325321C1F94173CEFEDF64* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float2_t24AA5C0F612B0672315EDAFEC9D9E7F1C4A5B0BA float2_op_Implicit_m274CE0EFDC0FFD5168817614BF1A3699784DE02B (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___0_v, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float4_t89D9A294E7A79BD81BFBDD18654508532958555E float4_op_Implicit_m6D2091EB2CF6E0629A029A7BE9AD230F5F394CB2 (Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3 ___0_v, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t DecalProjector_get_scaleMode_m18359D12B22161553CB46FCE13436565747E33D1_inline (DecalProjector_tE7CEBAABFEF36162FD325321C1F94173CEFEDF64* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RenderingLayerMask_tD73B9FC1A65A937F18E56833FC83BF89C2B085A1 DecalProjector_get_renderingLayerMask_mF62BD63ED4EB13B2DF450E199A29252E7DAA3D9D_inline (DecalProjector_tE7CEBAABFEF36162FD325321C1F94173CEFEDF64* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t RenderingLayerMask_op_Implicit_m8A57803F29D06516B5DB48D099F2E32ACC6DA162 (RenderingLayerMask_tD73B9FC1A65A937F18E56833FC83BF89C2B085A1 ___0_mask, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t RenderingLayerUtils_ToValidRenderingLayers_m0A7058438D6132C39118BD06430A19B691ED1180 (uint32_t ___0_renderingLayers, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 Transform_get_position_m69CD5FA214FDAE7BB701552943674846C220FDE1 (Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float3_t4AB5D88249ADB24F69FFD0793E8ED25E1CC3745E float3_op_Implicit_mE1831A3AC179B7EB3236F8202EC8DD5CE05376AB (Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___0_v, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Quaternion_tDA59F214EF07D7700B26E40E562F267AF7306974 Transform_get_rotation_m32AF40CA0D50C797DA639A696F8EAEC7524C179C (Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR quaternion_tD6BCBECAF088B9EBAE2345EC8534C7A1A4C910D4 quaternion_op_Implicit_m12C97CDC5FE642C53837F73E2F9B8761D530C502 (Quaternion_tDA59F214EF07D7700B26E40E562F267AF7306974 ___0_q, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DecalEntityIndexer_DestroyDecalEntity_mF635D6BD83D30FC9AD186F99ED00842C8CE6B15E (DecalEntityIndexer_t884A1F60E13512A2DE8CEC24635D2B3BE3FD3544* __this, DecalEntity_t8CAF09C65939503449C4138ADCDC4907196293FD ___0_decalEntity, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DecalEntityIndexer_UpdateIndex_m723421908B0F8C4354E125A10D657EC14119CAA7 (DecalEntityIndexer_t884A1F60E13512A2DE8CEC24635D2B3BE3FD3544* __this, DecalEntity_t8CAF09C65939503449C4138ADCDC4907196293FD ___0_decalEntity, int32_t ___1_newArrayIndex, const RuntimeMethod* method) ;
|
|
inline void List_1_set_Item_mA56E7E3B84B486552CEBAF1FFD6986FA5F724808 (List_1_t75FC6D059D696BAD77462D09FCDC98B4A7B7D3D4* __this, int32_t ___0_index, CombinedChunks_tCFB3356163B9F9B0E31E0B194E9B415F83340ED9 ___1_value, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (List_1_t75FC6D059D696BAD77462D09FCDC98B4A7B7D3D4*, int32_t, CombinedChunks_tCFB3356163B9F9B0E31E0B194E9B415F83340ED9, const RuntimeMethod*))List_1_set_Item_mA56E7E3B84B486552CEBAF1FFD6986FA5F724808_gshared)(__this, ___0_index, ___1_value, method);
|
|
}
|
|
inline void Comparison_1__ctor_mBF1B4978AA4B5B19579B8551412B7D03053A6AD3 (Comparison_1_t1D70AD681199BAE9A46BB890478D827A9BA04A36* __this, RuntimeObject* ___0_object, intptr_t ___1_method, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Comparison_1_t1D70AD681199BAE9A46BB890478D827A9BA04A36*, RuntimeObject*, intptr_t, const RuntimeMethod*))Comparison_1__ctor_mBF1B4978AA4B5B19579B8551412B7D03053A6AD3_gshared)(__this, ___0_object, ___1_method, method);
|
|
}
|
|
inline void List_1_Sort_m7D91ABCC3436181A92740FA30F58517E70C30EC2 (List_1_t75FC6D059D696BAD77462D09FCDC98B4A7B7D3D4* __this, Comparison_1_t1D70AD681199BAE9A46BB890478D827A9BA04A36* ___0_comparison, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (List_1_t75FC6D059D696BAD77462D09FCDC98B4A7B7D3D4*, Comparison_1_t1D70AD681199BAE9A46BB890478D827A9BA04A36*, const RuntimeMethod*))List_1_Sort_m7D91ABCC3436181A92740FA30F58517E70C30EC2_gshared)(__this, ___0_comparison, method);
|
|
}
|
|
inline CombinedChunks_tCFB3356163B9F9B0E31E0B194E9B415F83340ED9 List_1_get_Item_m590DCDF63905DBC9AFD853145981546152F126A4 (List_1_t75FC6D059D696BAD77462D09FCDC98B4A7B7D3D4* __this, int32_t ___0_index, const RuntimeMethod* method)
|
|
{
|
|
return (( CombinedChunks_tCFB3356163B9F9B0E31E0B194E9B415F83340ED9 (*) (List_1_t75FC6D059D696BAD77462D09FCDC98B4A7B7D3D4*, int32_t, const RuntimeMethod*))List_1_get_Item_m590DCDF63905DBC9AFD853145981546152F126A4_gshared)(__this, ___0_index, method);
|
|
}
|
|
inline void Dictionary_2_Clear_m2AC070D7EA40F018A5B2A6F94C75362212F74014 (Dictionary_2_t6EB10DF170874D02D43E115B0A1B93479CE3FF80* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Dictionary_2_t6EB10DF170874D02D43E115B0A1B93479CE3FF80*, const RuntimeMethod*))Dictionary_2_Clear_m931E25EF2557C3A386E4B9DC8D8212B7D9D3F5AE_gshared)(__this, method);
|
|
}
|
|
inline void List_1_set_Item_m6804E01E4F07D1876D51E76EE142AAD2625798AE (List_1_t437E45D007C2D93DCB30DA30023CB2745EE095D0* __this, int32_t ___0_index, DecalEntityChunk_t2CDCBFA35711DA074631D26572EF9755A3AD740C* ___1_value, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (List_1_t437E45D007C2D93DCB30DA30023CB2745EE095D0*, int32_t, DecalEntityChunk_t2CDCBFA35711DA074631D26572EF9755A3AD740C*, const RuntimeMethod*))List_1_set_Item_m3C58DBC69A321AF2826595584FF3E9F43C07EA56_gshared)(__this, ___0_index, ___1_value, method);
|
|
}
|
|
inline void List_1_set_Item_m85FB153F408B4FFDE64F242D3B10FF820A7D5137 (List_1_t1A9527CB44249AD17D081A2D7A468343FC2D0720* __this, int32_t ___0_index, DecalCachedChunk_tDEF493C8A3A1F442BDEC1794BDDA0996B32DCACE* ___1_value, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (List_1_t1A9527CB44249AD17D081A2D7A468343FC2D0720*, int32_t, DecalCachedChunk_tDEF493C8A3A1F442BDEC1794BDDA0996B32DCACE*, const RuntimeMethod*))List_1_set_Item_m3C58DBC69A321AF2826595584FF3E9F43C07EA56_gshared)(__this, ___0_index, ___1_value, method);
|
|
}
|
|
inline void List_1_set_Item_m806D36B3667116780356A42019B45C63D5F7B367 (List_1_t2E25D2E682EF62FB0FC538A4C88B3D49616A03DC* __this, int32_t ___0_index, DecalCulledChunk_tFD4472F0ADDD173C7B13E8B0529983E745F12ED3* ___1_value, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (List_1_t2E25D2E682EF62FB0FC538A4C88B3D49616A03DC*, int32_t, DecalCulledChunk_tFD4472F0ADDD173C7B13E8B0529983E745F12ED3*, const RuntimeMethod*))List_1_set_Item_m3C58DBC69A321AF2826595584FF3E9F43C07EA56_gshared)(__this, ___0_index, ___1_value, method);
|
|
}
|
|
inline void List_1_set_Item_m15D488D7D55AE426685D5C693FB2F2E98DD1CF19 (List_1_tD8DB23A94A44626CAF7E9B5B4A949D0FDC7B27A7* __this, int32_t ___0_index, DecalDrawCallChunk_tBD0491A1B0B7D19DF01A5C9EDE0A40CBEDBF7A3A* ___1_value, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (List_1_tD8DB23A94A44626CAF7E9B5B4A949D0FDC7B27A7*, int32_t, DecalDrawCallChunk_tBD0491A1B0B7D19DF01A5C9EDE0A40CBEDBF7A3A*, const RuntimeMethod*))List_1_set_Item_m3C58DBC69A321AF2826595584FF3E9F43C07EA56_gshared)(__this, ___0_index, ___1_value, method);
|
|
}
|
|
inline bool Dictionary_2_ContainsKey_mCFA7AF1835284648D44D1BF57A75C81683207D5E (Dictionary_2_t6EB10DF170874D02D43E115B0A1B93479CE3FF80* __this, Material_t18053F08F347D0DCA5E1140EC7EC4533DD8A14E3* ___0_key, const RuntimeMethod* method)
|
|
{
|
|
return (( bool (*) (Dictionary_2_t6EB10DF170874D02D43E115B0A1B93479CE3FF80*, Material_t18053F08F347D0DCA5E1140EC7EC4533DD8A14E3*, const RuntimeMethod*))Dictionary_2_ContainsKey_m1087B74B4FF5004CBB6CC864FF1C87B6DB138505_gshared)(__this, ___0_key, method);
|
|
}
|
|
inline void List_1_set_Item_m95629806F31CF369D937590912E0B6A53FF7C587 (List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* __this, int32_t ___0_index, int32_t ___1_value, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73*, int32_t, int32_t, const RuntimeMethod*))List_1_set_Item_m95629806F31CF369D937590912E0B6A53FF7C587_gshared)(__this, ___0_index, ___1_value, method);
|
|
}
|
|
inline void List_1_RemoveRange_mF49B2BF39FBBF329FD80C63D5117F74628384C4C (List_1_t437E45D007C2D93DCB30DA30023CB2745EE095D0* __this, int32_t ___0_index, int32_t ___1_count, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (List_1_t437E45D007C2D93DCB30DA30023CB2745EE095D0*, int32_t, int32_t, const RuntimeMethod*))List_1_RemoveRange_m0D2A25C95EFDC6E9CD22B663D9633426B51E3699_gshared)(__this, ___0_index, ___1_count, method);
|
|
}
|
|
inline void List_1_RemoveRange_m67B6F69125A5394BC088ACBE2BC99E53792F3D84 (List_1_t1A9527CB44249AD17D081A2D7A468343FC2D0720* __this, int32_t ___0_index, int32_t ___1_count, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (List_1_t1A9527CB44249AD17D081A2D7A468343FC2D0720*, int32_t, int32_t, const RuntimeMethod*))List_1_RemoveRange_m0D2A25C95EFDC6E9CD22B663D9633426B51E3699_gshared)(__this, ___0_index, ___1_count, method);
|
|
}
|
|
inline void List_1_RemoveRange_m822EDEFF9A41F5ECF6FF477BD098365A13889AF6 (List_1_t2E25D2E682EF62FB0FC538A4C88B3D49616A03DC* __this, int32_t ___0_index, int32_t ___1_count, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (List_1_t2E25D2E682EF62FB0FC538A4C88B3D49616A03DC*, int32_t, int32_t, const RuntimeMethod*))List_1_RemoveRange_m0D2A25C95EFDC6E9CD22B663D9633426B51E3699_gshared)(__this, ___0_index, ___1_count, method);
|
|
}
|
|
inline void List_1_RemoveRange_m9FB32ECC157784E2F3A9499B6FDB818869D04C12 (List_1_tD8DB23A94A44626CAF7E9B5B4A949D0FDC7B27A7* __this, int32_t ___0_index, int32_t ___1_count, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (List_1_tD8DB23A94A44626CAF7E9B5B4A949D0FDC7B27A7*, int32_t, int32_t, const RuntimeMethod*))List_1_RemoveRange_m0D2A25C95EFDC6E9CD22B663D9633426B51E3699_gshared)(__this, ___0_index, ___1_count, method);
|
|
}
|
|
inline void List_1_RemoveRange_mB2A135AC73DB3416988192AD3564E5F949C3CF9C (List_1_t75FC6D059D696BAD77462D09FCDC98B4A7B7D3D4* __this, int32_t ___0_index, int32_t ___1_count, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (List_1_t75FC6D059D696BAD77462D09FCDC98B4A7B7D3D4*, int32_t, int32_t, const RuntimeMethod*))List_1_RemoveRange_mB2A135AC73DB3416988192AD3564E5F949C3CF9C_gshared)(__this, ___0_index, ___1_count, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DecalEntityIndexer_RemapChunkIndices_m0D24A3A5BE659099CC2F6C0A563D11B9D8AD0EA0 (DecalEntityIndexer_t884A1F60E13512A2DE8CEC24635D2B3BE3FD3544* __this, List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* ___0_remaper, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CoreUtils_Destroy_mD2FDD299C528530E4CC5F99EFBAF90ABC7B02C69 (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C* ___0_obj, const RuntimeMethod* method) ;
|
|
inline Enumerator_t1F37311553599DE64203CA50CD1BC7A504A73BBF List_1_GetEnumerator_m8915322E9C7EBA21ED46FBA090753AFA6A0E1DEB (List_1_t1A9527CB44249AD17D081A2D7A468343FC2D0720* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( Enumerator_t1F37311553599DE64203CA50CD1BC7A504A73BBF (*) (List_1_t1A9527CB44249AD17D081A2D7A468343FC2D0720*, const RuntimeMethod*))List_1_GetEnumerator_mD8294A7FA2BEB1929487127D476F8EC1CDC23BFC_gshared)(__this, method);
|
|
}
|
|
inline void Enumerator_Dispose_mF97C2EAF7C0D8F5E7C7EA1012A4FE2DD163EE706 (Enumerator_t1F37311553599DE64203CA50CD1BC7A504A73BBF* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Enumerator_t1F37311553599DE64203CA50CD1BC7A504A73BBF*, const RuntimeMethod*))Enumerator_Dispose_mD9DC3E3C3697830A4823047AB29A77DBBB5ED419_gshared)(__this, method);
|
|
}
|
|
inline DecalCachedChunk_tDEF493C8A3A1F442BDEC1794BDDA0996B32DCACE* Enumerator_get_Current_m67F4DA2EB9B115CC3A70504BA7DC25214A662BE6_inline (Enumerator_t1F37311553599DE64203CA50CD1BC7A504A73BBF* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( DecalCachedChunk_tDEF493C8A3A1F442BDEC1794BDDA0996B32DCACE* (*) (Enumerator_t1F37311553599DE64203CA50CD1BC7A504A73BBF*, const RuntimeMethod*))Enumerator_get_Current_m6330F15D18EE4F547C05DF9BF83C5EB710376027_gshared_inline)(__this, method);
|
|
}
|
|
inline bool Enumerator_MoveNext_mF0240F1FA41F980A8C237D12729A3CC0455CEC12 (Enumerator_t1F37311553599DE64203CA50CD1BC7A504A73BBF* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( bool (*) (Enumerator_t1F37311553599DE64203CA50CD1BC7A504A73BBF*, const RuntimeMethod*))Enumerator_MoveNext_mE921CC8F29FBBDE7CC3209A0ED0D921D58D00BCB_gshared)(__this, method);
|
|
}
|
|
inline Enumerator_t490DE54C026ACEB8ECD91DB31ED7D8427892ADA9 List_1_GetEnumerator_m07A4E7847EE8277BA708A9F86E35AB330B3EF1D2 (List_1_t2E25D2E682EF62FB0FC538A4C88B3D49616A03DC* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( Enumerator_t490DE54C026ACEB8ECD91DB31ED7D8427892ADA9 (*) (List_1_t2E25D2E682EF62FB0FC538A4C88B3D49616A03DC*, const RuntimeMethod*))List_1_GetEnumerator_mD8294A7FA2BEB1929487127D476F8EC1CDC23BFC_gshared)(__this, method);
|
|
}
|
|
inline void Enumerator_Dispose_m0E06EF2FB18AE1B60D0DE5101EA8F8CC0EF67689 (Enumerator_t490DE54C026ACEB8ECD91DB31ED7D8427892ADA9* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Enumerator_t490DE54C026ACEB8ECD91DB31ED7D8427892ADA9*, const RuntimeMethod*))Enumerator_Dispose_mD9DC3E3C3697830A4823047AB29A77DBBB5ED419_gshared)(__this, method);
|
|
}
|
|
inline DecalCulledChunk_tFD4472F0ADDD173C7B13E8B0529983E745F12ED3* Enumerator_get_Current_mA19BF2A9BBB4A17BBFB2F68F59D890B9498C2583_inline (Enumerator_t490DE54C026ACEB8ECD91DB31ED7D8427892ADA9* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( DecalCulledChunk_tFD4472F0ADDD173C7B13E8B0529983E745F12ED3* (*) (Enumerator_t490DE54C026ACEB8ECD91DB31ED7D8427892ADA9*, const RuntimeMethod*))Enumerator_get_Current_m6330F15D18EE4F547C05DF9BF83C5EB710376027_gshared_inline)(__this, method);
|
|
}
|
|
inline bool Enumerator_MoveNext_mEABB682BDEAD268B7AB57DA26D04B95248950EA9 (Enumerator_t490DE54C026ACEB8ECD91DB31ED7D8427892ADA9* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( bool (*) (Enumerator_t490DE54C026ACEB8ECD91DB31ED7D8427892ADA9*, const RuntimeMethod*))Enumerator_MoveNext_mE921CC8F29FBBDE7CC3209A0ED0D921D58D00BCB_gshared)(__this, method);
|
|
}
|
|
inline Enumerator_t7923C0941406E673B314ADFF77ADC30A63D17CCA List_1_GetEnumerator_m048B7AA90802D503194E9B6B953CDF1CDC94E003 (List_1_tD8DB23A94A44626CAF7E9B5B4A949D0FDC7B27A7* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( Enumerator_t7923C0941406E673B314ADFF77ADC30A63D17CCA (*) (List_1_tD8DB23A94A44626CAF7E9B5B4A949D0FDC7B27A7*, const RuntimeMethod*))List_1_GetEnumerator_mD8294A7FA2BEB1929487127D476F8EC1CDC23BFC_gshared)(__this, method);
|
|
}
|
|
inline void Enumerator_Dispose_mBDE5AA338399D1BEA76AC9295E2287FE0B75522C (Enumerator_t7923C0941406E673B314ADFF77ADC30A63D17CCA* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Enumerator_t7923C0941406E673B314ADFF77ADC30A63D17CCA*, const RuntimeMethod*))Enumerator_Dispose_mD9DC3E3C3697830A4823047AB29A77DBBB5ED419_gshared)(__this, method);
|
|
}
|
|
inline DecalDrawCallChunk_tBD0491A1B0B7D19DF01A5C9EDE0A40CBEDBF7A3A* Enumerator_get_Current_m164BDCEA62768BF6A06F68A1A089947511244908_inline (Enumerator_t7923C0941406E673B314ADFF77ADC30A63D17CCA* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( DecalDrawCallChunk_tBD0491A1B0B7D19DF01A5C9EDE0A40CBEDBF7A3A* (*) (Enumerator_t7923C0941406E673B314ADFF77ADC30A63D17CCA*, const RuntimeMethod*))Enumerator_get_Current_m6330F15D18EE4F547C05DF9BF83C5EB710376027_gshared_inline)(__this, method);
|
|
}
|
|
inline bool Enumerator_MoveNext_m82285194E26D691AF9BF6A7233A0D951DFAB30E3 (Enumerator_t7923C0941406E673B314ADFF77ADC30A63D17CCA* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( bool (*) (Enumerator_t7923C0941406E673B314ADFF77ADC30A63D17CCA*, const RuntimeMethod*))Enumerator_MoveNext_mE921CC8F29FBBDE7CC3209A0ED0D921D58D00BCB_gshared)(__this, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DecalEntityIndexer_Clear_mB2F145DD64704090E05D89AA285089FEEF780132 (DecalEntityIndexer_t884A1F60E13512A2DE8CEC24635D2B3BE3FD3544* __this, const RuntimeMethod* method) ;
|
|
inline void List_1_Clear_m38F519CFF9FD938D85EBA4335C73E4860C7AAEF5_inline (List_1_t437E45D007C2D93DCB30DA30023CB2745EE095D0* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (List_1_t437E45D007C2D93DCB30DA30023CB2745EE095D0*, const RuntimeMethod*))List_1_Clear_m16C1F2C61FED5955F10EB36BC1CB2DF34B128994_gshared_inline)(__this, method);
|
|
}
|
|
inline void List_1_Clear_m25927F960325907203BE756C7196321B782E2BA8_inline (List_1_t1A9527CB44249AD17D081A2D7A468343FC2D0720* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (List_1_t1A9527CB44249AD17D081A2D7A468343FC2D0720*, const RuntimeMethod*))List_1_Clear_m16C1F2C61FED5955F10EB36BC1CB2DF34B128994_gshared_inline)(__this, method);
|
|
}
|
|
inline void List_1_Clear_m931602651BB5880916DA414408E994815C32612D_inline (List_1_t2E25D2E682EF62FB0FC538A4C88B3D49616A03DC* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (List_1_t2E25D2E682EF62FB0FC538A4C88B3D49616A03DC*, const RuntimeMethod*))List_1_Clear_m16C1F2C61FED5955F10EB36BC1CB2DF34B128994_gshared_inline)(__this, method);
|
|
}
|
|
inline void List_1_Clear_m0F2A6C272D949AFF5A0BFD4B2C0B326DF491E171_inline (List_1_tD8DB23A94A44626CAF7E9B5B4A949D0FDC7B27A7* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (List_1_tD8DB23A94A44626CAF7E9B5B4A949D0FDC7B27A7*, const RuntimeMethod*))List_1_Clear_m16C1F2C61FED5955F10EB36BC1CB2DF34B128994_gshared_inline)(__this, method);
|
|
}
|
|
inline void List_1_Clear_mF3D2F0801D0D95591EAFF99E087D27BE7EABA697_inline (List_1_t75FC6D059D696BAD77462D09FCDC98B4A7B7D3D4* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (List_1_t75FC6D059D696BAD77462D09FCDC98B4A7B7D3D4*, const RuntimeMethod*))List_1_Clear_mF3D2F0801D0D95591EAFF99E087D27BE7EABA697_gshared_inline)(__this, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__ctor_m8E011C751B147615A55E30BBB86E8F81B0D52952 (U3CU3Ec_t982F331B7EDFDBCE7D881BB6DF31BAC0023967CC* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Int32_CompareTo_mFA011811D4447442ED442B4A507BD4267621C586 (int32_t* __this, int32_t ___0_value, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DecalSkipCulledSystem_Execute_mDC2DF5766BCD4D7E67F87FED548D47580980BB29 (DecalSkipCulledSystem_tBE639384B2E60736F4BD7E7A5DC71A9F8AF84B1C* __this, DecalCulledChunk_tFD4472F0ADDD173C7B13E8B0529983E745F12ED3* ___0_culledChunk, int32_t ___1_count, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Camera_get_cullingMask_m6F5AFF8FB522F876D99E839BF77D8F27F26A1EF8 (Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184* __this, const RuntimeMethod* method) ;
|
|
inline void DecalChunk_RemoveAtSwapBack_Tisfloat2_t24AA5C0F612B0672315EDAFEC9D9E7F1C4A5B0BA_mE510E702120051CBB3A9122BC1BA957B834E2D91 (DecalChunk_tD2C5831DD2A6E97A7A738C88C5922305BA0513CA* __this, NativeArray_1_t46D43179C2B71BAB34958401E08B5C5DA4488E9E* ___0_array, int32_t ___1_index, int32_t ___2_count, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (DecalChunk_tD2C5831DD2A6E97A7A738C88C5922305BA0513CA*, NativeArray_1_t46D43179C2B71BAB34958401E08B5C5DA4488E9E*, int32_t, int32_t, const RuntimeMethod*))DecalChunk_RemoveAtSwapBack_Tisfloat2_t24AA5C0F612B0672315EDAFEC9D9E7F1C4A5B0BA_mE510E702120051CBB3A9122BC1BA957B834E2D91_gshared)(__this, ___0_array, ___1_index, ___2_count, method);
|
|
}
|
|
inline void DecalChunk_RemoveAtSwapBack_Tisfloat4_t89D9A294E7A79BD81BFBDD18654508532958555E_mB4FD1FD13539DAAD140535134857F4E7C2D61113 (DecalChunk_tD2C5831DD2A6E97A7A738C88C5922305BA0513CA* __this, NativeArray_1_tB5EA234C6ABA1F626A4BEF4053D06783E15A3881* ___0_array, int32_t ___1_index, int32_t ___2_count, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (DecalChunk_tD2C5831DD2A6E97A7A738C88C5922305BA0513CA*, NativeArray_1_tB5EA234C6ABA1F626A4BEF4053D06783E15A3881*, int32_t, int32_t, const RuntimeMethod*))DecalChunk_RemoveAtSwapBack_Tisfloat4_t89D9A294E7A79BD81BFBDD18654508532958555E_mB4FD1FD13539DAAD140535134857F4E7C2D61113_gshared)(__this, ___0_array, ___1_index, ___2_count, method);
|
|
}
|
|
inline void DecalChunk_RemoveAtSwapBack_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_m79F67135CEB14F4F697474A409493E057B89D759 (DecalChunk_tD2C5831DD2A6E97A7A738C88C5922305BA0513CA* __this, NativeArray_1_tA833EB7E3E1C9AF82C37976AD964B8D4BAC38B2C* ___0_array, int32_t ___1_index, int32_t ___2_count, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (DecalChunk_tD2C5831DD2A6E97A7A738C88C5922305BA0513CA*, NativeArray_1_tA833EB7E3E1C9AF82C37976AD964B8D4BAC38B2C*, int32_t, int32_t, const RuntimeMethod*))DecalChunk_RemoveAtSwapBack_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_m79F67135CEB14F4F697474A409493E057B89D759_gshared)(__this, ___0_array, ___1_index, ___2_count, method);
|
|
}
|
|
inline void DecalChunk_RemoveAtSwapBack_TisUInt64_t8F12534CC8FC4B5860F2A2CD1EE79D322E7A41AF_mBB7A6220A8A54E9F8DE79470ED3302F907D49F82 (DecalChunk_tD2C5831DD2A6E97A7A738C88C5922305BA0513CA* __this, NativeArray_1_t07975297AD7F7512193094A7C0703BA872EF7A7B* ___0_array, int32_t ___1_index, int32_t ___2_count, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (DecalChunk_tD2C5831DD2A6E97A7A738C88C5922305BA0513CA*, NativeArray_1_t07975297AD7F7512193094A7C0703BA872EF7A7B*, int32_t, int32_t, const RuntimeMethod*))DecalChunk_RemoveAtSwapBack_TisUInt64_t8F12534CC8FC4B5860F2A2CD1EE79D322E7A41AF_mBB7A6220A8A54E9F8DE79470ED3302F907D49F82_gshared)(__this, ___0_array, ___1_index, ___2_count, method);
|
|
}
|
|
inline void DecalChunk_RemoveAtSwapBack_TisBoundingSphere_t2DDB3D1711A6920C0ECA9217D3E4E14AFF03C010_m6543A85EE8FF00637356B416DEDCF1177D22D345 (DecalChunk_tD2C5831DD2A6E97A7A738C88C5922305BA0513CA* __this, BoundingSphereU5BU5D_tD7485B1D5D5A0EE26537B093423FC3AC149BEA47** ___0_array, int32_t ___1_index, int32_t ___2_count, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (DecalChunk_tD2C5831DD2A6E97A7A738C88C5922305BA0513CA*, BoundingSphereU5BU5D_tD7485B1D5D5A0EE26537B093423FC3AC149BEA47**, int32_t, int32_t, const RuntimeMethod*))DecalChunk_RemoveAtSwapBack_TisBoundingSphere_t2DDB3D1711A6920C0ECA9217D3E4E14AFF03C010_m6543A85EE8FF00637356B416DEDCF1177D22D345_gshared)(__this, ___0_array, ___1_index, ___2_count, method);
|
|
}
|
|
inline void DecalChunk_RemoveAtSwapBack_TisBoundingSphere_t2DDB3D1711A6920C0ECA9217D3E4E14AFF03C010_m311450680094235BD4A769DB9E44144FADE76015 (DecalChunk_tD2C5831DD2A6E97A7A738C88C5922305BA0513CA* __this, NativeArray_1_t3D8121943984EEED49DC98DED560DCC6638111B6* ___0_array, int32_t ___1_index, int32_t ___2_count, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (DecalChunk_tD2C5831DD2A6E97A7A738C88C5922305BA0513CA*, NativeArray_1_t3D8121943984EEED49DC98DED560DCC6638111B6*, int32_t, int32_t, const RuntimeMethod*))DecalChunk_RemoveAtSwapBack_TisBoundingSphere_t2DDB3D1711A6920C0ECA9217D3E4E14AFF03C010_m311450680094235BD4A769DB9E44144FADE76015_gshared)(__this, ___0_array, ___1_index, ___2_count, method);
|
|
}
|
|
inline void DecalChunk_RemoveAtSwapBack_TisDecalScaleMode_tBFFBA2F5E3B718BD9965A803920323CB8B6C208C_m26EEFF669A3ACEA48553FA735515456C63A33F25 (DecalChunk_tD2C5831DD2A6E97A7A738C88C5922305BA0513CA* __this, NativeArray_1_tB64676789FBC7DC3DA7BB2D7765883A285CA6065* ___0_array, int32_t ___1_index, int32_t ___2_count, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (DecalChunk_tD2C5831DD2A6E97A7A738C88C5922305BA0513CA*, NativeArray_1_tB64676789FBC7DC3DA7BB2D7765883A285CA6065*, int32_t, int32_t, const RuntimeMethod*))DecalChunk_RemoveAtSwapBack_TisInt32Enum_tCBAC8BA2BFF3A845FA599F303093BBBA374B6F0C_m0C19B1FB7A99F8DBEBA677CE522A1EF3B08411E1_gshared)(__this, ___0_array, ___1_index, ___2_count, method);
|
|
}
|
|
inline void DecalChunk_RemoveAtSwapBack_TisUInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B_mF1836CDB48035A918A43ABAF39AF37C896E0C1BD (DecalChunk_tD2C5831DD2A6E97A7A738C88C5922305BA0513CA* __this, NativeArray_1_t453E3DEA4CC9F1056F24E417C3308C35174BC184* ___0_array, int32_t ___1_index, int32_t ___2_count, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (DecalChunk_tD2C5831DD2A6E97A7A738C88C5922305BA0513CA*, NativeArray_1_t453E3DEA4CC9F1056F24E417C3308C35174BC184*, int32_t, int32_t, const RuntimeMethod*))DecalChunk_RemoveAtSwapBack_TisUInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B_mF1836CDB48035A918A43ABAF39AF37C896E0C1BD_gshared)(__this, ___0_array, ___1_index, ___2_count, method);
|
|
}
|
|
inline void DecalChunk_RemoveAtSwapBack_Tisfloat3_t4AB5D88249ADB24F69FFD0793E8ED25E1CC3745E_m3EB3E0A1DA38C90FA88EE269EC7BDA37C5EF1418 (DecalChunk_tD2C5831DD2A6E97A7A738C88C5922305BA0513CA* __this, NativeArray_1_tEDE9DAD2CAE5954286BC0EF394A57ED0AC69FEE6* ___0_array, int32_t ___1_index, int32_t ___2_count, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (DecalChunk_tD2C5831DD2A6E97A7A738C88C5922305BA0513CA*, NativeArray_1_tEDE9DAD2CAE5954286BC0EF394A57ED0AC69FEE6*, int32_t, int32_t, const RuntimeMethod*))DecalChunk_RemoveAtSwapBack_Tisfloat3_t4AB5D88249ADB24F69FFD0793E8ED25E1CC3745E_m3EB3E0A1DA38C90FA88EE269EC7BDA37C5EF1418_gshared)(__this, ___0_array, ___1_index, ___2_count, method);
|
|
}
|
|
inline void DecalChunk_RemoveAtSwapBack_Tisquaternion_tD6BCBECAF088B9EBAE2345EC8534C7A1A4C910D4_m0D53FB632D8820AC1B5BB42DD60212A78423CCEA (DecalChunk_tD2C5831DD2A6E97A7A738C88C5922305BA0513CA* __this, NativeArray_1_tE645174F30913B665DE45D85525F90B1F64E054A* ___0_array, int32_t ___1_index, int32_t ___2_count, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (DecalChunk_tD2C5831DD2A6E97A7A738C88C5922305BA0513CA*, NativeArray_1_tE645174F30913B665DE45D85525F90B1F64E054A*, int32_t, int32_t, const RuntimeMethod*))DecalChunk_RemoveAtSwapBack_Tisquaternion_tD6BCBECAF088B9EBAE2345EC8534C7A1A4C910D4_m0D53FB632D8820AC1B5BB42DD60212A78423CCEA_gshared)(__this, ___0_array, ___1_index, ___2_count, method);
|
|
}
|
|
inline void DecalChunk_RemoveAtSwapBack_TisBoolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_m1386EBC4D7599F71F0B303F12813F0582E8F3100 (DecalChunk_tD2C5831DD2A6E97A7A738C88C5922305BA0513CA* __this, NativeArray_1_t107C57D0357BCF9956A60495CD8FAADDF1D26AFB* ___0_array, int32_t ___1_index, int32_t ___2_count, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (DecalChunk_tD2C5831DD2A6E97A7A738C88C5922305BA0513CA*, NativeArray_1_t107C57D0357BCF9956A60495CD8FAADDF1D26AFB*, int32_t, int32_t, const RuntimeMethod*))DecalChunk_RemoveAtSwapBack_TisBoolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_m1386EBC4D7599F71F0B303F12813F0582E8F3100_gshared)(__this, ___0_array, ___1_index, ___2_count, method);
|
|
}
|
|
inline void ArrayExtensions_ResizeArray_Tisfloat2_t24AA5C0F612B0672315EDAFEC9D9E7F1C4A5B0BA_m4E50A7CF887E0894D0F694E2A529CD6AA5F064CE (NativeArray_1_t46D43179C2B71BAB34958401E08B5C5DA4488E9E* ___0_array, int32_t ___1_capacity, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (NativeArray_1_t46D43179C2B71BAB34958401E08B5C5DA4488E9E*, int32_t, const RuntimeMethod*))ArrayExtensions_ResizeArray_Tisfloat2_t24AA5C0F612B0672315EDAFEC9D9E7F1C4A5B0BA_m4E50A7CF887E0894D0F694E2A529CD6AA5F064CE_gshared)(___0_array, ___1_capacity, method);
|
|
}
|
|
inline void ArrayExtensions_ResizeArray_Tisfloat4_t89D9A294E7A79BD81BFBDD18654508532958555E_m0F046BCBBC1480B71939881BAC4C4F00A0B302CA (NativeArray_1_tB5EA234C6ABA1F626A4BEF4053D06783E15A3881* ___0_array, int32_t ___1_capacity, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (NativeArray_1_tB5EA234C6ABA1F626A4BEF4053D06783E15A3881*, int32_t, const RuntimeMethod*))ArrayExtensions_ResizeArray_Tisfloat4_t89D9A294E7A79BD81BFBDD18654508532958555E_m0F046BCBBC1480B71939881BAC4C4F00A0B302CA_gshared)(___0_array, ___1_capacity, method);
|
|
}
|
|
inline void ArrayExtensions_ResizeArray_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_mCC1C29FFBD5857EE8A9D2DD4EECE68A25390D347 (NativeArray_1_tA833EB7E3E1C9AF82C37976AD964B8D4BAC38B2C* ___0_array, int32_t ___1_capacity, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (NativeArray_1_tA833EB7E3E1C9AF82C37976AD964B8D4BAC38B2C*, int32_t, const RuntimeMethod*))ArrayExtensions_ResizeArray_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_mCC1C29FFBD5857EE8A9D2DD4EECE68A25390D347_gshared)(___0_array, ___1_capacity, method);
|
|
}
|
|
inline void ArrayExtensions_ResizeArray_TisUInt64_t8F12534CC8FC4B5860F2A2CD1EE79D322E7A41AF_mA7325AB0E73DB3008AF16F6B66B107118806D8D4 (NativeArray_1_t07975297AD7F7512193094A7C0703BA872EF7A7B* ___0_array, int32_t ___1_capacity, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (NativeArray_1_t07975297AD7F7512193094A7C0703BA872EF7A7B*, int32_t, const RuntimeMethod*))ArrayExtensions_ResizeArray_TisUInt64_t8F12534CC8FC4B5860F2A2CD1EE79D322E7A41AF_mA7325AB0E73DB3008AF16F6B66B107118806D8D4_gshared)(___0_array, ___1_capacity, method);
|
|
}
|
|
inline void ArrayExtensions_ResizeArray_TisBoundingSphere_t2DDB3D1711A6920C0ECA9217D3E4E14AFF03C010_m97ECB17020454F538CF86C6311BB0532F9D3AC07 (NativeArray_1_t3D8121943984EEED49DC98DED560DCC6638111B6* ___0_array, int32_t ___1_capacity, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (NativeArray_1_t3D8121943984EEED49DC98DED560DCC6638111B6*, int32_t, const RuntimeMethod*))ArrayExtensions_ResizeArray_TisBoundingSphere_t2DDB3D1711A6920C0ECA9217D3E4E14AFF03C010_m97ECB17020454F538CF86C6311BB0532F9D3AC07_gshared)(___0_array, ___1_capacity, method);
|
|
}
|
|
inline void ArrayExtensions_ResizeArray_TisDecalScaleMode_tBFFBA2F5E3B718BD9965A803920323CB8B6C208C_mC7E67A8F7D18470A4EF4DBEF1580A94A5F438FA7 (NativeArray_1_tB64676789FBC7DC3DA7BB2D7765883A285CA6065* ___0_array, int32_t ___1_capacity, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (NativeArray_1_tB64676789FBC7DC3DA7BB2D7765883A285CA6065*, int32_t, const RuntimeMethod*))ArrayExtensions_ResizeArray_TisInt32Enum_tCBAC8BA2BFF3A845FA599F303093BBBA374B6F0C_m78934B426730B8016F2DF8A1BD018A06F8574528_gshared)(___0_array, ___1_capacity, method);
|
|
}
|
|
inline void ArrayExtensions_ResizeArray_TisUInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B_mA7A1947DAC61D89594FD427B8866AF243CBCA65E (NativeArray_1_t453E3DEA4CC9F1056F24E417C3308C35174BC184* ___0_array, int32_t ___1_capacity, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (NativeArray_1_t453E3DEA4CC9F1056F24E417C3308C35174BC184*, int32_t, const RuntimeMethod*))ArrayExtensions_ResizeArray_TisUInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B_mA7A1947DAC61D89594FD427B8866AF243CBCA65E_gshared)(___0_array, ___1_capacity, method);
|
|
}
|
|
inline void ArrayExtensions_ResizeArray_Tisfloat3_t4AB5D88249ADB24F69FFD0793E8ED25E1CC3745E_mB9C7AEADC1241624FC5482255B8B17E912B88EC6 (NativeArray_1_tEDE9DAD2CAE5954286BC0EF394A57ED0AC69FEE6* ___0_array, int32_t ___1_capacity, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (NativeArray_1_tEDE9DAD2CAE5954286BC0EF394A57ED0AC69FEE6*, int32_t, const RuntimeMethod*))ArrayExtensions_ResizeArray_Tisfloat3_t4AB5D88249ADB24F69FFD0793E8ED25E1CC3745E_mB9C7AEADC1241624FC5482255B8B17E912B88EC6_gshared)(___0_array, ___1_capacity, method);
|
|
}
|
|
inline void ArrayExtensions_ResizeArray_Tisquaternion_tD6BCBECAF088B9EBAE2345EC8534C7A1A4C910D4_mCCC2A04B4AC663EC4E25A7A3EF7E3F73861ADFA1 (NativeArray_1_tE645174F30913B665DE45D85525F90B1F64E054A* ___0_array, int32_t ___1_capacity, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (NativeArray_1_tE645174F30913B665DE45D85525F90B1F64E054A*, int32_t, const RuntimeMethod*))ArrayExtensions_ResizeArray_Tisquaternion_tD6BCBECAF088B9EBAE2345EC8534C7A1A4C910D4_mCCC2A04B4AC663EC4E25A7A3EF7E3F73861ADFA1_gshared)(___0_array, ___1_capacity, method);
|
|
}
|
|
inline void ArrayExtensions_ResizeArray_TisBoolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_m03C40A6C0546B3EF39F41B4F8A01F8069907134A (NativeArray_1_t107C57D0357BCF9956A60495CD8FAADDF1D26AFB* ___0_array, int32_t ___1_capacity, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (NativeArray_1_t107C57D0357BCF9956A60495CD8FAADDF1D26AFB*, int32_t, const RuntimeMethod*))ArrayExtensions_ResizeArray_TisBoolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_m03C40A6C0546B3EF39F41B4F8A01F8069907134A_gshared)(___0_array, ___1_capacity, method);
|
|
}
|
|
inline void ArrayExtensions_ResizeArray_TisBoundingSphere_t2DDB3D1711A6920C0ECA9217D3E4E14AFF03C010_mF1480A26EB90FA28A36BD0EA5CED744A82C9E338 (BoundingSphereU5BU5D_tD7485B1D5D5A0EE26537B093423FC3AC149BEA47** ___0_array, int32_t ___1_capacity, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (BoundingSphereU5BU5D_tD7485B1D5D5A0EE26537B093423FC3AC149BEA47**, int32_t, const RuntimeMethod*))ArrayExtensions_ResizeArray_TisBoundingSphere_t2DDB3D1711A6920C0ECA9217D3E4E14AFF03C010_mF1480A26EB90FA28A36BD0EA5CED744A82C9E338_gshared)(___0_array, ___1_capacity, method);
|
|
}
|
|
inline void NativeArray_1_Dispose_mAD3B69E4B23316C46AF8C35D7E1E81206323F16F (NativeArray_1_t46D43179C2B71BAB34958401E08B5C5DA4488E9E* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (NativeArray_1_t46D43179C2B71BAB34958401E08B5C5DA4488E9E*, const RuntimeMethod*))NativeArray_1_Dispose_mAD3B69E4B23316C46AF8C35D7E1E81206323F16F_gshared)(__this, method);
|
|
}
|
|
inline void NativeArray_1_Dispose_mF001C61A295F2BF3561FD60654243ABFF09AF662 (NativeArray_1_tB5EA234C6ABA1F626A4BEF4053D06783E15A3881* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (NativeArray_1_tB5EA234C6ABA1F626A4BEF4053D06783E15A3881*, const RuntimeMethod*))NativeArray_1_Dispose_mF001C61A295F2BF3561FD60654243ABFF09AF662_gshared)(__this, method);
|
|
}
|
|
inline void NativeArray_1_Dispose_m5CBF60E97954A416106547EF28316741B674D253 (NativeArray_1_t07975297AD7F7512193094A7C0703BA872EF7A7B* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (NativeArray_1_t07975297AD7F7512193094A7C0703BA872EF7A7B*, const RuntimeMethod*))NativeArray_1_Dispose_m5CBF60E97954A416106547EF28316741B674D253_gshared)(__this, method);
|
|
}
|
|
inline void NativeArray_1_Dispose_m4D6B12321C5FF072AD5CD660E179FC761A52C22E (NativeArray_1_t3D8121943984EEED49DC98DED560DCC6638111B6* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (NativeArray_1_t3D8121943984EEED49DC98DED560DCC6638111B6*, const RuntimeMethod*))NativeArray_1_Dispose_m4D6B12321C5FF072AD5CD660E179FC761A52C22E_gshared)(__this, method);
|
|
}
|
|
inline void NativeArray_1_Dispose_mBEC3B949F64875894612C6C8DF654E6C022DF5DF (NativeArray_1_tB64676789FBC7DC3DA7BB2D7765883A285CA6065* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (NativeArray_1_tB64676789FBC7DC3DA7BB2D7765883A285CA6065*, const RuntimeMethod*))NativeArray_1_Dispose_mE208CD8E9CF8772A67BC880E49DDCD173A7E15EE_gshared)(__this, method);
|
|
}
|
|
inline void NativeArray_1_Dispose_m921D007BB17D47849CD74AB7FA825547CB828BBC (NativeArray_1_t453E3DEA4CC9F1056F24E417C3308C35174BC184* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (NativeArray_1_t453E3DEA4CC9F1056F24E417C3308C35174BC184*, const RuntimeMethod*))NativeArray_1_Dispose_m921D007BB17D47849CD74AB7FA825547CB828BBC_gshared)(__this, method);
|
|
}
|
|
inline void NativeArray_1_Dispose_mE40D457AF008BEE531917D94D3A83296CCF8906C (NativeArray_1_tEDE9DAD2CAE5954286BC0EF394A57ED0AC69FEE6* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (NativeArray_1_tEDE9DAD2CAE5954286BC0EF394A57ED0AC69FEE6*, const RuntimeMethod*))NativeArray_1_Dispose_mE40D457AF008BEE531917D94D3A83296CCF8906C_gshared)(__this, method);
|
|
}
|
|
inline void NativeArray_1_Dispose_m03F9BA2E0A4EED6DCA8AD4D9EC282F9B56DFE402 (NativeArray_1_tE645174F30913B665DE45D85525F90B1F64E054A* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (NativeArray_1_tE645174F30913B665DE45D85525F90B1F64E054A*, const RuntimeMethod*))NativeArray_1_Dispose_m03F9BA2E0A4EED6DCA8AD4D9EC282F9B56DFE402_gshared)(__this, method);
|
|
}
|
|
inline void NativeArray_1_Dispose_mF16E4FD33476D6947F979B1E1D9F901CE0A04344 (NativeArray_1_t107C57D0357BCF9956A60495CD8FAADDF1D26AFB* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (NativeArray_1_t107C57D0357BCF9956A60495CD8FAADDF1D26AFB*, const RuntimeMethod*))NativeArray_1_Dispose_mF16E4FD33476D6947F979B1E1D9F901CE0A04344_gshared)(__this, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DecalUpdateCachedSystem_Execute_m2A365BD1C0A70B2A260A15FFB894D08704EE1929 (DecalUpdateCachedSystem_tE54DF723671C1BB35856878DBEC0A7B454E127B6* __this, DecalEntityChunk_t2CDCBFA35711DA074631D26572EF9755A3AD740C* ___0_entityChunk, DecalCachedChunk_tDEF493C8A3A1F442BDEC1794BDDA0996B32DCACE* ___1_cachedChunk, int32_t ___2_count, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Material_HasProperty_mC09A83B44E368A217F606DD4954FA080CC03EC6C (Material_t18053F08F347D0DCA5E1140EC7EC4533DD8A14E3* __this, String_t* ___0_name, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Material_GetInt_mA772B615274DD11B37A352BC66EFA81BFD9C13EA (Material_t18053F08F347D0DCA5E1140EC7EC4533DD8A14E3* __this, String_t* ___0_name, const RuntimeMethod* method) ;
|
|
inline JobHandle_t5DF5F99902FED3C801A81C05205CEA6CE039EF08 IJobParallelForTransformExtensions_Schedule_TisUpdateTransformsJob_t7CF957169E8C6560084F48A51BC15A447F3002C7_m8730007D9D52320B924DE6CD7E6AE6D5FAE4283C (UpdateTransformsJob_t7CF957169E8C6560084F48A51BC15A447F3002C7 ___0_jobData, TransformAccessArray_t104EDE5BB3DC7E294332BB1D2AA508CAEDEE83D4 ___1_transforms, JobHandle_t5DF5F99902FED3C801A81C05205CEA6CE039EF08 ___2_dependsOn, const RuntimeMethod* method)
|
|
{
|
|
return (( JobHandle_t5DF5F99902FED3C801A81C05205CEA6CE039EF08 (*) (UpdateTransformsJob_t7CF957169E8C6560084F48A51BC15A447F3002C7, TransformAccessArray_t104EDE5BB3DC7E294332BB1D2AA508CAEDEE83D4, JobHandle_t5DF5F99902FED3C801A81C05205CEA6CE039EF08, const RuntimeMethod*))IJobParallelForTransformExtensions_Schedule_TisUpdateTransformsJob_t7CF957169E8C6560084F48A51BC15A447F3002C7_m8730007D9D52320B924DE6CD7E6AE6D5FAE4283C_gshared)(___0_jobData, ___1_transforms, ___2_dependsOn, method);
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float math_distancesq_m609DF85E2355430E1F4CD51CDC1971BD5F7D4AF3_inline (float4_t89D9A294E7A79BD81BFBDD18654508532958555E ___0_x, float4_t89D9A294E7A79BD81BFBDD18654508532958555E ___1_y, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_NO_INLINE IL2CPP_METHOD_ATTR float UpdateTransformsJob_DistanceBetweenQuaternions_m35B8169D9160CD29FB09A12A1B2CD3063A2505B1 (UpdateTransformsJob_t7CF957169E8C6560084F48A51BC15A447F3002C7* IL2CPP_PARAMETER_RESTRICT __this, quaternion_tD6BCBECAF088B9EBAE2345EC8534C7A1A4C910D4 ___0_a, quaternion_tD6BCBECAF088B9EBAE2345EC8534C7A1A4C910D4 ___1_b, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 TransformAccess_get_position_m766FDDC608FF936E589A61DD4A7D15922DE9F6FB (TransformAccess_tF0D55E1C5B6B29B618E8A129AB633E2F1100D580* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float math_distancesq_mA49E8B34404D0C4DB3C9D4E065CE4CA255C9770B_inline (float3_t4AB5D88249ADB24F69FFD0793E8ED25E1CC3745E ___0_x, float3_t4AB5D88249ADB24F69FFD0793E8ED25E1CC3745E ___1_y, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Quaternion_tDA59F214EF07D7700B26E40E562F267AF7306974 TransformAccess_get_rotation_m51C5B32FE1DD02DCEF3E59B39C55D296AEDF4C78 (TransformAccess_tF0D55E1C5B6B29B618E8A129AB633E2F1100D580* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 TransformAccess_get_localScale_mB0BAA020211EEC1F0F883E2041E198717EBEEA4E (TransformAccess_tF0D55E1C5B6B29B618E8A129AB633E2F1100D580* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Matrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6 TransformAccess_get_localToWorldMatrix_mBB0663F9C6C07BE886FD4524378B001F0EDEE647 (TransformAccess_tF0D55E1C5B6B29B618E8A129AB633E2F1100D580* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void float4x4__ctor_m36D57BB3339FCFAE6FA39D35CAB4AD9010183D04 (float4x4_t7EDD16F7F57DC7F61A6302535F7C19FB97915DF2* __this, quaternion_tD6BCBECAF088B9EBAE2345EC8534C7A1A4C910D4 ___0_rotation, float3_t4AB5D88249ADB24F69FFD0793E8ED25E1CC3745E ___1_translation, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float4x4_t7EDD16F7F57DC7F61A6302535F7C19FB97915DF2 math_mul_mF9EE8CEC6C3D6A57A74F806EA436DA9465FCB01E_inline (float4x4_t7EDD16F7F57DC7F61A6302535F7C19FB97915DF2 ___0_a, float4x4_t7EDD16F7F57DC7F61A6302535F7C19FB97915DF2 ___1_b, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR quaternion_tD6BCBECAF088B9EBAE2345EC8534C7A1A4C910D4 math_mul_m3CC0941E6A3DE5718C6439421E74D7F80793F652_inline (quaternion_tD6BCBECAF088B9EBAE2345EC8534C7A1A4C910D4 ___0_a, quaternion_tD6BCBECAF088B9EBAE2345EC8534C7A1A4C910D4 ___1_b, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void float3__ctor_mC61002CD0EC13D7C37D846D021A78C028FB80DB9_inline (float3_t4AB5D88249ADB24F69FFD0793E8ED25E1CC3745E* __this, float ___0_x, float ___1_y, float ___2_z, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float4x4_t7EDD16F7F57DC7F61A6302535F7C19FB97915DF2 float4x4_TRS_m253E5B92580E420E113F8C195664D06F967EEF03_inline (float3_t4AB5D88249ADB24F69FFD0793E8ED25E1CC3745E ___0_translation, quaternion_tD6BCBECAF088B9EBAE2345EC8534C7A1A4C910D4 ___1_rotation, float3_t4AB5D88249ADB24F69FFD0793E8ED25E1CC3745E ___2_scale, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_NO_INLINE IL2CPP_METHOD_ATTR BoundingSphere_t2DDB3D1711A6920C0ECA9217D3E4E14AFF03C010 UpdateTransformsJob_GetDecalProjectBoundingSphere_mF9D8DC159DD8A283CDFC5F8B2D6A65E39623A736 (UpdateTransformsJob_t7CF957169E8C6560084F48A51BC15A447F3002C7* IL2CPP_PARAMETER_RESTRICT __this, Matrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6 ___0_decalToWorld, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_NO_INLINE IL2CPP_METHOD_ATTR void UpdateTransformsJob_Execute_mA6FB54BF60F468C915690630E3DDD824D6D305B5 (UpdateTransformsJob_t7CF957169E8C6560084F48A51BC15A447F3002C7* IL2CPP_PARAMETER_RESTRICT __this, int32_t ___0_index, TransformAccess_tF0D55E1C5B6B29B618E8A129AB633E2F1100D580 ___1_transform, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float4_t89D9A294E7A79BD81BFBDD18654508532958555E math_mul_m080515A2DCB7CCE0F4635A8E87B1635C02D72A4E_inline (float4x4_t7EDD16F7F57DC7F61A6302535F7C19FB97915DF2 ___0_a, float4_t89D9A294E7A79BD81BFBDD18654508532958555E ___1_b, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float4_t89D9A294E7A79BD81BFBDD18654508532958555E float4_op_Addition_m2CF2E1B2DAD4996DE3C5B6DFB90185E4CC8F0F44_inline (float4_t89D9A294E7A79BD81BFBDD18654508532958555E ___0_lhs, float4_t89D9A294E7A79BD81BFBDD18654508532958555E ___1_rhs, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float4_t89D9A294E7A79BD81BFBDD18654508532958555E float4_op_Division_mA82993BB826C4799764D5B0E543D0D7776F4F8A2_inline (float4_t89D9A294E7A79BD81BFBDD18654508532958555E ___0_lhs, float ___1_rhs, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float3_t4AB5D88249ADB24F69FFD0793E8ED25E1CC3745E float4_get_xyz_mE6EC829F35512C7BC159047FDC134E80F3B37A06_inline (float4_t89D9A294E7A79BD81BFBDD18654508532958555E* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float4_t89D9A294E7A79BD81BFBDD18654508532958555E float4_op_Subtraction_mBC40F52B8A8EF499A1AA3CC987E5935BD188B4E3_inline (float4_t89D9A294E7A79BD81BFBDD18654508532958555E ___0_lhs, float4_t89D9A294E7A79BD81BFBDD18654508532958555E ___1_rhs, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float math_length_mDA291F159E5B088CF2EF354538EBDBC60063C9E7_inline (float4_t89D9A294E7A79BD81BFBDD18654508532958555E ___0_x, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 float3_op_Implicit_m9CC301DFD67EEFAA15CA05E91913E862B22326F6 (float3_t4AB5D88249ADB24F69FFD0793E8ED25E1CC3745E ___0_v, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR quaternion_tD6BCBECAF088B9EBAE2345EC8534C7A1A4C910D4 quaternion_EulerXYZ_m2035C2A216C0480D847181E970F4C1F2AC4972DE_inline (float ___0_x, float ___1_y, float ___2_z, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DecalUpdateCulledSystem_Execute_mD2BA2DD5E7BEDA257F0E6C96F53730DF236264FD (DecalUpdateCulledSystem_t772328A4933CE3C08E3712729DBADF0C07CEC67F* __this, DecalCulledChunk_tFD4472F0ADDD173C7B13E8B0529983E745F12ED3* ___0_culledChunk, int32_t ___1_count, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t CullingGroup_QueryIndices_mC47E11F41B3589B122AEF577D11627C0A8E7F6F2 (CullingGroup_t0732D3CC044BAE2BE39748CBF5D96DDB6DBF62E7* __this, bool ___0_visible, Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ___1_result, int32_t ___2_firstIndex, const RuntimeMethod* method) ;
|
|
inline void NativeArray_1_CopyFrom_mA833BCBDF37D94BF60950C40CD5C281B113BA999 (NativeArray_1_tA833EB7E3E1C9AF82C37976AD964B8D4BAC38B2C* __this, Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ___0_array, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (NativeArray_1_tA833EB7E3E1C9AF82C37976AD964B8D4BAC38B2C*, Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C*, const RuntimeMethod*))NativeArray_1_CopyFrom_mA833BCBDF37D94BF60950C40CD5C281B113BA999_gshared)(__this, ___0_array, method);
|
|
}
|
|
inline void DecalChunk_RemoveAtSwapBack_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_m915FF8D13A89D601291E1005178CA3EA54A7C5D8 (DecalChunk_tD2C5831DD2A6E97A7A738C88C5922305BA0513CA* __this, Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C** ___0_array, int32_t ___1_index, int32_t ___2_count, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (DecalChunk_tD2C5831DD2A6E97A7A738C88C5922305BA0513CA*, Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C**, int32_t, int32_t, const RuntimeMethod*))DecalChunk_RemoveAtSwapBack_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_m915FF8D13A89D601291E1005178CA3EA54A7C5D8_gshared)(__this, ___0_array, ___1_index, ___2_count, method);
|
|
}
|
|
inline void ArrayExtensions_ResizeArray_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_mFFAD26B2501568E203F55AC9971F07ECF103B4BB (Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C** ___0_array, int32_t ___1_capacity, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C**, int32_t, const RuntimeMethod*))ArrayExtensions_ResizeArray_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_mFFAD26B2501568E203F55AC9971F07ECF103B4BB_gshared)(___0_array, ___1_capacity, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CullingGroup__ctor_mDCD3471B009FDF42FF9F7A735E5AF009C5C890A4 (CullingGroup_t0732D3CC044BAE2BE39748CBF5D96DDB6DBF62E7* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CullingGroup_Dispose_m81E5AC1FB79D0D867B88E66C76821BB8A9EAA3AE (CullingGroup_t0732D3CC044BAE2BE39748CBF5D96DDB6DBF62E7* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DecalUpdateCullingGroupSystem_Execute_mB75AB35C1D44132A1B1D8C475D0D7DB548D11E84 (DecalUpdateCullingGroupSystem_t73FB1167667D8FAED3C38AF3E308A1E717E2C7D2* __this, DecalCachedChunk_tDEF493C8A3A1F442BDEC1794BDDA0996B32DCACE* ___0_cachedChunk, DecalCulledChunk_tFD4472F0ADDD173C7B13E8B0529983E745F12ED3* ___1_culledChunk, int32_t ___2_count, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CullingGroup_set_targetCamera_m98885EABBA6E5C0EF1EEA95D4EFA66D124D9A558 (CullingGroup_t0732D3CC044BAE2BE39748CBF5D96DDB6DBF62E7* __this, Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184* ___0_value, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CullingGroup_SetDistanceReferencePoint_mDC369C67297A4350739CFF01740ADF89E866692E (CullingGroup_t0732D3CC044BAE2BE39748CBF5D96DDB6DBF62E7* __this, Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___0_point, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CullingGroup_SetBoundingDistances_mBC99B7BF56D85B34C0BBFF638686B75288D1011F (CullingGroup_t0732D3CC044BAE2BE39748CBF5D96DDB6DBF62E7* __this, SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C* ___0_distances, const RuntimeMethod* method) ;
|
|
inline void NativeArray_1_CopyTo_mC4570E3EE4DEA62A1F990BDC926014F7773CB6C7 (NativeArray_1_t3D8121943984EEED49DC98DED560DCC6638111B6* __this, BoundingSphereU5BU5D_tD7485B1D5D5A0EE26537B093423FC3AC149BEA47* ___0_array, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (NativeArray_1_t3D8121943984EEED49DC98DED560DCC6638111B6*, BoundingSphereU5BU5D_tD7485B1D5D5A0EE26537B093423FC3AC149BEA47*, const RuntimeMethod*))NativeArray_1_CopyTo_mC4570E3EE4DEA62A1F990BDC926014F7773CB6C7_gshared)(__this, ___0_array, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CullingGroup_SetBoundingSpheres_mCB50B6A6A538FC4377213D4C6F85ABEB55ACCB01 (CullingGroup_t0732D3CC044BAE2BE39748CBF5D96DDB6DBF62E7* __this, BoundingSphereU5BU5D_tD7485B1D5D5A0EE26537B093423FC3AC149BEA47* ___0_array, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CullingGroup_SetBoundingSphereCount_mDA5DFA9EEEE2BA45F15A52AF6C3C7B8D8F05FE2F (CullingGroup_t0732D3CC044BAE2BE39748CBF5D96DDB6DBF62E7* __this, int32_t ___0_count, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PassData__ctor_m026A8010E17A93921E2BF87E12B4384114F0819E (PassData_t4396B080377CC62E6B81D42D8103F58BF0CC9451* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool DeferredLights_get_UseFramebufferFetch_mCA48571D2CF82D0FA8854DEA9831D5EEB2E96891_inline (DeferredLights_t8A3C2AC9C4AF92CF3411F722D8A094EA07DA14AC* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RTHandleU5BU5D_tE4B403B060D159B839BF74E8B59F8DCD52CF97DF* DeferredLights_get_GbufferAttachments_m93F4186104CA66B40F90FC3421542561D91A52DC_inline (DeferredLights_t8A3C2AC9C4AF92CF3411F722D8A094EA07DA14AC* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t DeferredLights_get_GbufferDepthIndex_m9474B481FDA2349B6F2D2FED42FB16C5104D0B85 (DeferredLights_t8A3C2AC9C4AF92CF3411F722D8A094EA07DA14AC* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t DeferredLights_get_GBufferRenderingLayers_mC1516964EE0987641196BF0F04AF65A7888DACDA (DeferredLights_t8A3C2AC9C4AF92CF3411F722D8A094EA07DA14AC* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ScriptableRenderPass_ConfigureInputAttachments_mAE28A6783E50F928F741A08DAEB95695E6EEE543 (ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* __this, RTHandleU5BU5D_tE4B403B060D159B839BF74E8B59F8DCD52CF97DF* ___0_inputs, BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* ___1_isTransient, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B* DeferredLights_get_DepthAttachmentHandle_m1E86B03F9BE60C0C400DD8FF6957629B81A9EF4D_inline (DeferredLights_t8A3C2AC9C4AF92CF3411F722D8A094EA07DA14AC* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ScriptableRenderPass_ConfigureTarget_m95AF62178B8B11980EF5E922FBD15042C2F361E3 (ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* __this, RTHandleU5BU5D_tE4B403B060D159B839BF74E8B59F8DCD52CF97DF* ___0_colorAttachments, RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B* ___1_depthAttachment, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DecalGBufferRenderPass_InitPassData_m036BBAC8AFBF00F3665510AC6AC9D25D767C0ED3 (DecalGBufferRenderPass_tF9AE5E097AC2B82F540580ECA6E502C1B885ECA4* __this, UniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7* ___0_cameraData, PassData_t4396B080377CC62E6B81D42D8103F58BF0CC9451** ___1_passData, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t* CameraData_get_defaultOpaqueSortFlags_m3B2AD697388D3694F3866E41643EC9FB083468B4 (CameraData_tC27AE109CD20677486A4AC19C0CF014AE0F50C3E* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DrawingSettings_t3B64EB029DB6F94A1F2A9B2D19D2969AE361BB49 RenderingUtils_CreateDrawingSettings_mBCE88AD7BDD0C915708EC4E97FB1DB2197EB49EB (List_1_t4673975A297A80D4D4A65EB5A2BE3B6BD1EED9AF* ___0_shaderTagIdList, RenderingData_tAAA01190551D6D5954314E3E1E85B58DD45EED71* ___1_renderingData, int32_t ___2_sortingCriteria, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR CullingResults_tD6B7EF20B68D47DFF3A99EB2EA73F47F1D460267* RenderingData_get_cullResults_m73BE0DBA4ADE8C2CF49FEE34E4553C491AC7016D (RenderingData_tAAA01190551D6D5954314E3E1E85B58DD45EED71* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR CommandBuffer_tB56007DC84EF56296C325EC32DD12AC1E3DC91F7** RenderingData_get_commandBuffer_m747CD6ABF19DD5BB05F8231CC84A9922D9DC080A (RenderingData_tAAA01190551D6D5954314E3E1E85B58DD45EED71* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DecalGBufferRenderPass_ExecutePass_m7D3D8E518D0F76AA4195B9D59A4A1D1B6CE51C5F (RasterCommandBuffer_t4300C4F080EA3CF43C7ACFDBD4F94EA633FE98E8* ___0_cmd, PassData_t4396B080377CC62E6B81D42D8103F58BF0CC9451* ___1_passData, RendererList_t608CE60421616EF4211F5B8AC62E3C36D4BDDF85 ___2_rendererList, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NormalReconstruction_SetupProperties_m5A027E9D69284D7248CEF2B1F137879BD0DCD576 (RasterCommandBuffer_t4300C4F080EA3CF43C7ACFDBD4F94EA633FE98E8* ___0_cmd, UniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7** ___1_cameraData, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RasterCommandBuffer_SetKeyword_m134867C426359E758261AB04E59061F70A69B5C3 (RasterCommandBuffer_t4300C4F080EA3CF43C7ACFDBD4F94EA633FE98E8* __this, GlobalKeyword_tFA029618DA6ADCA20CFA44C1B8AFFF9EA097AE7D* ___0_keyword, bool ___1_value, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TextureHandle_t680ABA3F8B50859351BA5DD66220084F87F37388 UniversalResourceData_get_cameraDepthTexture_m0823722AD418FDA57ECDC5EBDF79842DA3ED33A4 (UniversalResourceData_t1F1DE4101BE122578EAA5E4750D00ACAF1042626* __this, const RuntimeMethod* method) ;
|
|
inline RuntimeObject* RenderGraph_AddRasterRenderPass_TisPassData_t4396B080377CC62E6B81D42D8103F58BF0CC9451_m13AC6F794A0CA94F5CE1484B8A7B8E93C38EA9A6 (RenderGraph_t73ECE03B3CA3D0D17F1448D64AE020E81592AA1E* __this, String_t* ___0_passName, PassData_t4396B080377CC62E6B81D42D8103F58BF0CC9451** ___1_passData, ProfilingSampler_t420D4672EDB44E0EF980B31ADFD9E5747200FECE* ___2_sampler, String_t* ___3_file, int32_t ___4_line, const RuntimeMethod* method)
|
|
{
|
|
return (( RuntimeObject* (*) (RenderGraph_t73ECE03B3CA3D0D17F1448D64AE020E81592AA1E*, String_t*, PassData_t4396B080377CC62E6B81D42D8103F58BF0CC9451**, ProfilingSampler_t420D4672EDB44E0EF980B31ADFD9E5747200FECE*, String_t*, int32_t, const RuntimeMethod*))RenderGraph_AddRasterRenderPass_TisRuntimeObject_mC67DBCDAE9E5C0D6FA1406B1CD4EA8A1F9244044_gshared)(__this, ___0_passName, ___1_passData, ___2_sampler, ___3_file, ___4_line, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TextureHandleU5BU5D_t544FFA6F5A0E1E5F24EB3C5E5F8547CCE9498BD7* UniversalResourceData_get_gBuffer_m8A136731C2349D1F96F57648CF599BDC1982D579 (UniversalResourceData_t1F1DE4101BE122578EAA5E4750D00ACAF1042626* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool TextureHandle_IsValid_mECFF64B8BAC6402F0D37B67BB79FFB3AB3C7F3C2_inline (TextureHandle_t680ABA3F8B50859351BA5DD66220084F87F37388* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t DeferredLights_get_GBufferLightingIndex_mBD9A64655F922428737949BF03FE83498EF388F3 (DeferredLights_t8A3C2AC9C4AF92CF3411F722D8A094EA07DA14AC* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool RenderGraph_get_nativeRenderPassesEnabled_m0A6331F029257ABF0232FA1C278E733B097A812D_inline (RenderGraph_t73ECE03B3CA3D0D17F1448D64AE020E81592AA1E* __this, const RuntimeMethod* method) ;
|
|
inline void BaseRenderFunc_2__ctor_m42EF02CD8F7F36A203A0BA41463801AA38801DD0 (BaseRenderFunc_2_t8B6F86F4EF8472D6B5D84629A6E35307F19167AE* __this, RuntimeObject* ___0_object, intptr_t ___1_method, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (BaseRenderFunc_2_t8B6F86F4EF8472D6B5D84629A6E35307F19167AE*, RuntimeObject*, intptr_t, const RuntimeMethod*))BaseRenderFunc_2__ctor_m72268C37DF7D310181ABEF09D65817B1108D843E_gshared)(__this, ___0_object, ___1_method, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentNullException__ctor_m444AE141157E333844FC1A9500224C2F9FD24F4B (ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129* __this, String_t* ___0_paramName, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CommandBuffer_SetKeyword_m21015D629787CEC4954ABA00F1211D2F957B2399 (CommandBuffer_tB56007DC84EF56296C325EC32DD12AC1E3DC91F7* __this, GlobalKeyword_tFA029618DA6ADCA20CFA44C1B8AFFF9EA097AE7D* ___0_keyword, bool ___1_value, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__ctor_mBC3A00C95FC82A4549C9BFC2D32CE701BB4679C6 (U3CU3Ec_tAA26B4D41608EBD4DBF0897F2337AC0EC4D686C3* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PassData__ctor_m29BA26D68AFB0E35149BE7F863ACE6949CE5D022 (PassData_tE8DFD4099E5A523D2AA3761A4B9CE793D50AA5F6* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DecalScreenSpaceRenderPass_InitPassData_m152AB18218A94C04236550A797803B4AF806A6A3 (DecalScreenSpaceRenderPass_tA23A972765D97DFA9A20665DD1D4E3F4DF339016* __this, UniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7* ___0_cameraData, PassData_tE8DFD4099E5A523D2AA3761A4B9CE793D50AA5F6** ___1_passData, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RenderingUtils_SetScaleBiasRt_m5E60572A103409E116C1EF529D5E9016AA62A572 (RasterCommandBuffer_t4300C4F080EA3CF43C7ACFDBD4F94EA633FE98E8* ___0_cmd, RenderingData_tAAA01190551D6D5954314E3E1E85B58DD45EED71* ___1_renderingData, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RendererListParams_t13F72282BCE2DC255747FE7694C6BBC3377944B1 DecalScreenSpaceRenderPass_CreateRenderListParams_m31FDD069D4D2097D56355AA76861C3D3CBDB4549 (DecalScreenSpaceRenderPass_tA23A972765D97DFA9A20665DD1D4E3F4DF339016* __this, UniversalRenderingData_t045D13A1E051DF623B170223B7CBF1161DDA94E6* ___0_renderingData, UniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7* ___1_cameraData, UniversalLightData_tCFFFAB4033CD97BE9F339F0C90BB7F98C06FFBA2* ___2_lightData, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DecalScreenSpaceRenderPass_ExecutePass_m2989BD2B5F45D64DC5938018759B4D0F75A1205C (RasterCommandBuffer_t4300C4F080EA3CF43C7ACFDBD4F94EA633FE98E8* ___0_cmd, PassData_tE8DFD4099E5A523D2AA3761A4B9CE793D50AA5F6* ___1_passData, RendererList_t608CE60421616EF4211F5B8AC62E3C36D4BDDF85 ___2_rendererList, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DecalRendererFeature_get_isGLDevice_mAB005FBB84E6230BFD7C8DE6672559C5152BD308 (const RuntimeMethod* method) ;
|
|
inline RuntimeObject* RenderGraph_AddRasterRenderPass_TisPassData_tE8DFD4099E5A523D2AA3761A4B9CE793D50AA5F6_m8DC459169A454257F35AA0E777111DE92BB64140 (RenderGraph_t73ECE03B3CA3D0D17F1448D64AE020E81592AA1E* __this, String_t* ___0_passName, PassData_tE8DFD4099E5A523D2AA3761A4B9CE793D50AA5F6** ___1_passData, ProfilingSampler_t420D4672EDB44E0EF980B31ADFD9E5747200FECE* ___2_sampler, String_t* ___3_file, int32_t ___4_line, const RuntimeMethod* method)
|
|
{
|
|
return (( RuntimeObject* (*) (RenderGraph_t73ECE03B3CA3D0D17F1448D64AE020E81592AA1E*, String_t*, PassData_tE8DFD4099E5A523D2AA3761A4B9CE793D50AA5F6**, ProfilingSampler_t420D4672EDB44E0EF980B31ADFD9E5747200FECE*, String_t*, int32_t, const RuntimeMethod*))RenderGraph_AddRasterRenderPass_TisRuntimeObject_mC67DBCDAE9E5C0D6FA1406B1CD4EA8A1F9244044_gshared)(__this, ___0_passName, ___1_passData, ___2_sampler, ___3_file, ___4_line, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TextureHandle_t680ABA3F8B50859351BA5DD66220084F87F37388 UniversalResourceData_get_cameraColor_mED6D8FE90EA44FF9D9975D24B29230B180C77CFC (UniversalResourceData_t1F1DE4101BE122578EAA5E4750D00ACAF1042626* __this, const RuntimeMethod* method) ;
|
|
inline void BaseRenderFunc_2__ctor_m0BFCC9AFAA12AEF51BEDEC807B8DF28F1B68F547 (BaseRenderFunc_2_tC164CC802D091B68B6A0497F4C6AEF80D564AB57* __this, RuntimeObject* ___0_object, intptr_t ___1_method, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (BaseRenderFunc_2_tC164CC802D091B68B6A0497F4C6AEF80D564AB57*, RuntimeObject*, intptr_t, const RuntimeMethod*))BaseRenderFunc_2__ctor_m72268C37DF7D310181ABEF09D65817B1108D843E_gshared)(__this, ___0_object, ___1_method, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__ctor_m9D3D00CBCC4CEF5A314CB3CD100DD6543107F0CB (U3CU3Ec_t15B0AFDB480CE815F26375C7F569551639E65A2B* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B* TextureHandle_op_Implicit_m5B88526114B640AE422305CC950C0887E576CE25 (TextureHandle_t680ABA3F8B50859351BA5DD66220084F87F37388 ___0_texture, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RenderingUtils_SetScaleBiasRt_m553EDC7467A3604FD35366A173F1EF8813B45FEE (RasterCommandBuffer_t4300C4F080EA3CF43C7ACFDBD4F94EA633FE98E8* ___0_cmd, UniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7** ___1_cameraData, RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B* ___2_rTHandle, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NotSupportedException__ctor_mE174750CF0247BBB47544FFD71D66BB89630945B (NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A* __this, String_t* ___0_message, const RuntimeMethod* method) ;
|
|
inline RenderGraphSettings_tC3A05CA5C042545DB58E32841FF2FEA9E260A130* GraphicsSettings_GetRenderPipelineSettings_TisRenderGraphSettings_tC3A05CA5C042545DB58E32841FF2FEA9E260A130_m056A6DF99F51AC9AF02BB64BE4677C83E02946F7 (const RuntimeMethod* method)
|
|
{
|
|
return (( RenderGraphSettings_tC3A05CA5C042545DB58E32841FF2FEA9E260A130* (*) (const RuntimeMethod*))GraphicsSettings_GetRenderPipelineSettings_TisRuntimeObject_mE2EF737215ED168685806935CE4460AB2D8E2BCE_gshared)(method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool RenderGraphSettings_get_enableRenderCompatibilityMode_mF6C49F988080B5096D3FC5870B456442DB0869DB (RenderGraphSettings_tC3A05CA5C042545DB58E32841FF2FEA9E260A130* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t* Object_GetType_mE10A8FC1E57F3DF29972CCBC026C2DC3942263B3 (RuntimeObject* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* ProfilingSampler_get_name_mF1C3E7B9540171DD93186A4DFEF33CE331E92D79_inline (ProfilingSampler_t420D4672EDB44E0EF980B31ADFD9E5747200FECE* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR DebugHandler_t3A09E2CFD1CA6F5C192968A6FF19EE4863F44DA4* ScriptableRenderer_get_DebugHandler_mF10EC7F8F42F5087507DCDB7CD21338F2766DD6F_inline (ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool UniversalCameraData_get_isPreviewCamera_m805B3ED7E0D54B8054BFFD3166489E2B1B3BDC51 (UniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DebugHandler_IsActiveForCamera_mAAAF88FA94FF91A19A7CE1898EB0295997045077 (DebugHandler_t3A09E2CFD1CA6F5C192968A6FF19EE4863F44DA4* __this, bool ___0_isPreviewCamera, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Color_tD001788D726C3A7F1379BEED0260B9591F440C1F Color_get_black_mB50217951591A045844C61E7FF31EEE3FEF16737_inline (const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void ScriptableRenderPass_set_overrideCameraTarget_mC7A5FB7FB9D32C88226E81992DAD058174C99D95_inline (ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* __this, bool ___0_value, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void ScriptableRenderPass_set_isBlitRenderPass_m563EACE500D80556F75FD1BB240C0BEBCA7933C3_inline (ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* __this, bool ___0_value, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void ScriptableRenderPass_set_useNativeRenderPass_m1D60C30BB1CF1B4D383FFCABC1F57EA755626895_inline (ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* __this, bool ___0_value, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void ScriptableRenderPass_set_renderPassQueueIndex_m102EDED778C0A087DF2E7E1C91351EB99AD827FB_inline (ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* __this, int32_t ___0_value, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void ScriptableRenderPass_set_renderTargetFormat_m35B7A4F02CA819EA819D3A058E4A379EF498FA01_inline (ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* __this, GraphicsFormatU5BU5D_tF6A3D90C430FA3F548B77E5D58D25D71F154E6C5* ___0_value, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Math_Min_m53C488772A34D53917BCA2A491E79A0A5356ED52 (int32_t ___0_val1, int32_t ___1_val2, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void ScriptableRenderPass_ConfigureInputAttachments_mEE7F33D93B15335CB7EA5FE8C34C9C76BD8CC805_inline (ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* __this, RTHandleU5BU5D_tE4B403B060D159B839BF74E8B59F8DCD52CF97DF* ___0_inputs, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t RenderingUtils_GetValidColorBufferCount_m99C1CCF85D3EFCA3950A11D106E801E4DF3A31B6 (RTHandleU5BU5D_tE4B403B060D159B839BF74E8B59F8DCD52CF97DF* ___0_colorBuffers, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t SystemInfo_get_supportedRenderTargetCount_mA8696B2D9AB343F9D04B0F4F14A4A1F7098DBC34 (const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* UInt32_ToString_mB6FA6D2459C82ADCF285C55363491D9669A80154 (uint32_t* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Int32_ToString_m030E01C24E294D6762FB0B6F37CB541581F55CA5 (int32_t* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Concat_m093934F71A9B351911EE46311674ED463B180006 (String_t* ___0_str0, String_t* ___1_str1, String_t* ___2_str2, String_t* ___3_str3, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Debug_LogError_mB00B2B4468EF3CAF041B038D840820FB84C924B2 (RuntimeObject* ___0_message, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR GraphicsFormatU5BU5D_tF6A3D90C430FA3F548B77E5D58D25D71F154E6C5* ScriptableRenderPass_get_renderTargetFormat_m7B211E4B10D23A760D3906426BA9C4562DF951CC_inline (ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ScriptableRenderPass_ConfigureTarget_mDC20EFA30782A4E2D734590184A90E338953F36B (ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* __this, RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B* ___0_colorAttachment, RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B* ___1_depthAttachment, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Concat_m8855A6DE10F84DA7F4EC113CADDB59873A25573B (String_t* ___0_str0, String_t* ___1_str1, String_t* ___2_str2, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Debug_LogWarning_m33EF1B897E0C7C6FF538989610BFAFFEF4628CA9 (RuntimeObject* ___0_message, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RenderTexture_tBA90C4C3AD9EECCFDDCC632D97C29FAB80D60D27* RTHandle_get_rt_m593F2799E2E6C97979D3B4CD9E992D305922BBE9_inline (RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Texture_get_filterMode_mFEF0AEA29E8468450EF85533965DCEBE66D02A45 (Texture_t791CBB51219779964E0E8A2ED7C1AA5F92A4A700* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Blitter_BlitCameraTexture_m06500CC676A52761E986039557FC01E30EBA8F8F (CommandBuffer_tB56007DC84EF56296C325EC32DD12AC1E3DC91F7* ___0_cmd, RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B* ___1_source, RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B* ___2_destination, float ___3_mipLevel, bool ___4_bilinear, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Blitter_BlitCameraTexture_mD7AEA91C0BF9E886799FF75A28CCD4167F9FEB3E (CommandBuffer_tB56007DC84EF56296C325EC32DD12AC1E3DC91F7* ___0_cmd, RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B* ___1_source, RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B* ___2_destination, Material_t18053F08F347D0DCA5E1140EC7EC4533DD8A14E3* ___3_material, int32_t ___4_pass, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892** CameraData_get_renderer_mF3602679D5E3E14C185ADF3EFD3C1CB996F7B36A (CameraData_tC27AE109CD20677486A4AC19C0CF014AE0F50C3E* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B* ScriptableRenderer_get_cameraColorTargetHandle_mB0B32CF50F711E4B41822F4F6BBCE2091C608A6D (ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ScriptableRenderPass_Blit_m09FB15CC5B861AE5403E51B0232A390EF92BF8B0 (ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* __this, CommandBuffer_tB56007DC84EF56296C325EC32DD12AC1E3DC91F7* ___0_cmd, RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B* ___1_source, RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B* ___2_destination, Material_t18053F08F347D0DCA5E1140EC7EC4533DD8A14E3* ___3_material, int32_t ___4_passIndex, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DrawingSettings_t3B64EB029DB6F94A1F2A9B2D19D2969AE361BB49 RenderingUtils_CreateDrawingSettings_m19A73A2AF8EE033A231EA599398122F0AEE68928 (ShaderTagId_t453E2085B5EE9448FF75E550CAB111EFF690ECB0 ___0_shaderTagId, UniversalRenderingData_t045D13A1E051DF623B170223B7CBF1161DDA94E6* ___1_renderingData, UniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7* ___2_cameraData, UniversalLightData_tCFFFAB4033CD97BE9F339F0C90BB7F98C06FFBA2* ___3_lightData, int32_t ___4_sortingCriteria, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t ScriptableRenderPass_get_renderPassEvent_mD7ED1EFBF050FE1F86D598FA9A1A987CFEAD1AEE_inline (ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RenderTargetIdentifier_tA528663AC6EB3911D8E91AA40F7070FA5455442B RenderTargetIdentifier_op_Implicit_m3E2366E36F14173DBEED75591978EBE1F01A1325 (int32_t ___0_type, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B* RTHandles_Alloc_m7EC88962CADCEAB38EAE8D792039466E20874304 (RenderTargetIdentifier_tA528663AC6EB3911D8E91AA40F7070FA5455442B ___0_tex, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RenderTargetIdentifier_tA528663AC6EB3911D8E91AA40F7070FA5455442B RTHandle_get_nameID_m30AF2567853494DB845D83A8B37D0FB523DA76E9_inline (RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B* __this, const RuntimeMethod* method) ;
|
|
inline int32_t List_1_get_Count_mE6D3D9D20C29AB0625389FEF206BBFF202CD5293_inline (List_1_t2E485E650BF1E41358CE56A69323E183C5A89CB6* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( int32_t (*) (List_1_t2E485E650BF1E41358CE56A69323E183C5A89CB6*, const RuntimeMethod*))List_1_get_Count_m4407E4C389F22B8CEC282C15D56516658746C383_gshared_inline)(__this, method);
|
|
}
|
|
inline void Dictionary_2_Clear_m4BE2EA63EDA7838BC522E8BFE24EBDBCA0E98482 (Dictionary_2_tCB9019887EB0254D4745B0724BC12327C5B63792* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Dictionary_2_tCB9019887EB0254D4745B0724BC12327C5B63792*, const RuntimeMethod*))Dictionary_2_Clear_mFA357D13986A882E6AF6F665B1BC835A26BB592E_gshared)(__this, method);
|
|
}
|
|
inline void Dictionary_2_Clear_mB11ECB26BB643F5FFF3BD0291E7328DFC6A2712B (Dictionary_2_tB41FAC88F07BAB98D6D373F7C94FB0496D1BDA32* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Dictionary_2_tB41FAC88F07BAB98D6D373F7C94FB0496D1BDA32*, const RuntimeMethod*))Dictionary_2_Clear_mB11ECB26BB643F5FFF3BD0291E7328DFC6A2712B_gshared)(__this, method);
|
|
}
|
|
inline ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* List_1_get_Item_mBC42042D4082F4C6237FEA3435D58D570436268F (List_1_t2E485E650BF1E41358CE56A69323E183C5A89CB6* __this, int32_t ___0_index, const RuntimeMethod* method)
|
|
{
|
|
return (( ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* (*) (List_1_t2E485E650BF1E41358CE56A69323E183C5A89CB6*, int32_t, const RuntimeMethod*))List_1_get_Item_m33561245D64798C2AB07584C0EC4F240E4839A38_gshared)(__this, ___0_index, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ScriptableRenderer_IsRenderPassEnabled_m62F183DF3911C7360F8C812DA5E976D08D9ADB7B (ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892* __this, ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* ___0_renderPass, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Format_mA8DBB4C2516B9723C5A41E6CB1E2FAF4BBE96DD8 (String_t* ___0_format, RuntimeObject* ___1_arg0, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RenderPassDescriptor_t69F0595A52DBEEBFE5A491D3E8E27D530069B0C5 ScriptableRenderer_InitializeRenderPassDescriptor_mA2BED336FF2583DEE2FF881D5FC09673DEB74121 (ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892* __this, UniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7* ___0_cameraData, ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* ___1_renderPass, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Hash128_t93367F504B687578F893CDBCD13FB95AC8A87A40 ScriptableRenderer_CreateRenderPassHash_m57E9275A76DCFAF3E0FF51E184451B1052567585 (RenderPassDescriptor_t69F0595A52DBEEBFE5A491D3E8E27D530069B0C5 ___0_desc, uint32_t ___1_hashIndex, const RuntimeMethod* method) ;
|
|
inline bool Dictionary_2_ContainsKey_mB39B89C4FB0361792450F10D25B8201B4301F28C (Dictionary_2_tCB9019887EB0254D4745B0724BC12327C5B63792* __this, Hash128_t93367F504B687578F893CDBCD13FB95AC8A87A40 ___0_key, const RuntimeMethod* method)
|
|
{
|
|
return (( bool (*) (Dictionary_2_tCB9019887EB0254D4745B0724BC12327C5B63792*, Hash128_t93367F504B687578F893CDBCD13FB95AC8A87A40, const RuntimeMethod*))Dictionary_2_ContainsKey_m5F0D93CF1B8C2E297AB37B13608FF66A13B6309C_gshared)(__this, ___0_key, method);
|
|
}
|
|
inline int32_t Dictionary_2_get_Count_m6A86480525D2034B01C263B792951888765560DC (Dictionary_2_tCB9019887EB0254D4745B0724BC12327C5B63792* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( int32_t (*) (Dictionary_2_tCB9019887EB0254D4745B0724BC12327C5B63792*, const RuntimeMethod*))Dictionary_2_get_Count_m2EE5C9916817E768FC3652EA9441030354A34504_gshared)(__this, method);
|
|
}
|
|
inline void Dictionary_2_Add_m8FFD29D21BD0C02508E87C664C42869EA125EC92 (Dictionary_2_tCB9019887EB0254D4745B0724BC12327C5B63792* __this, Hash128_t93367F504B687578F893CDBCD13FB95AC8A87A40 ___0_key, Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ___1_value, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Dictionary_2_tCB9019887EB0254D4745B0724BC12327C5B63792*, Hash128_t93367F504B687578F893CDBCD13FB95AC8A87A40, Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C*, const RuntimeMethod*))Dictionary_2_Add_mB359B73249C070054471AEAF4F1CCCB5C4769915_gshared)(__this, ___0_key, ___1_value, method);
|
|
}
|
|
inline void Dictionary_2_Add_m31B58F13ADA6D08C1CC6E191031B840006313562 (Dictionary_2_tB41FAC88F07BAB98D6D373F7C94FB0496D1BDA32* __this, Hash128_t93367F504B687578F893CDBCD13FB95AC8A87A40 ___0_key, int32_t ___1_value, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Dictionary_2_tB41FAC88F07BAB98D6D373F7C94FB0496D1BDA32*, Hash128_t93367F504B687578F893CDBCD13FB95AC8A87A40, int32_t, const RuntimeMethod*))Dictionary_2_Add_m31B58F13ADA6D08C1CC6E191031B840006313562_gshared)(__this, ___0_key, ___1_value, method);
|
|
}
|
|
inline Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* Dictionary_2_get_Item_m88A84F3C4F3B87068DF58800EC51E4BAE278F826 (Dictionary_2_tCB9019887EB0254D4745B0724BC12327C5B63792* __this, Hash128_t93367F504B687578F893CDBCD13FB95AC8A87A40 ___0_key, const RuntimeMethod* method)
|
|
{
|
|
return (( Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* (*) (Dictionary_2_tCB9019887EB0254D4745B0724BC12327C5B63792*, Hash128_t93367F504B687578F893CDBCD13FB95AC8A87A40, const RuntimeMethod*))Dictionary_2_get_Item_mBE61B2E0EB355780D39A2B5DF2044D6296E8E88D_gshared)(__this, ___0_key, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ScriptableRenderer_GetValidPassIndexCount_m279EDCB7B38DE3813CB7AC0AF7F204A1D9FDD9F8 (Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ___0_array, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool ScriptableRenderPass_get_overrideCameraTarget_m343BA9235CD254354013E3CFD6EC519958597128_inline (ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t RenderTextureDescriptor_get_msaaSamples_mFCC33643AFF2265C8305DCFD79ED8774A1A8FA22_inline (RenderTextureDescriptor_t69845881CE6437E4E61F92074F2F84079F23FA46* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RenderTextureDescriptor_t69845881CE6437E4E61F92074F2F84079F23FA46 RenderTexture_get_descriptor_m2FABD5CF6CCF410D1311FCBC7C9D9ECDEE9C7CC2 (RenderTexture_tBA90C4C3AD9EECCFDDCC632D97C29FAB80D60D27* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B* ScriptableRenderer_GetFirstAllocatedRTHandle_mA7E143CC52CBD682A3355221BB216C2D3691130A (ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* ___0_pass, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RenderingFeatures_t31044CBDCDC2F05194BFA2A2122FBD937D78A371* ScriptableRenderer_get_supportedRenderingFeatures_m8866E002AF2D9D7C3E70946193B656850A4FC56F_inline (ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool RenderingFeatures_get_msaa_m7DB8FFB8E541A7444D1FB96BC86AFE390B776C36_inline (RenderingFeatures_t31044CBDCDC2F05194BFA2A2122FBD937D78A371* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Camera_get_allowMSAA_mC316155B22B679709F85BA9AE3F7931C30EE7AF4 (Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* ScriptableRenderPass_get_overriddenColorStoreActions_m7C286926155F30C6B51B97A3B494343597077A93_inline (ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RenderBufferStoreActionU5BU5D_tFEA8F5DD460573EA9F35FBEC5727D1804C5DCBF5* ScriptableRenderPass_get_colorStoreActions_m8512840B6D3802C9C09D357894358BAF8FE907D7_inline (ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t ScriptableRenderPass_get_depthStoreAction_m3DCEBE1FEEE5ABD1AF0EC3656296E08C56704845_inline (ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool ScriptableRenderPass_get_overriddenDepthStoreAction_m057C906C81594CF263C433DBC279F6C61FD45D19_inline (ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t ScriptableRenderPass_get_renderPassQueueIndex_mDA630CF31CA4371C2E4BE76B367C4A013C35AB85_inline (ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* __this, const RuntimeMethod* method) ;
|
|
inline int32_t Enumerable_First_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_m665FD6DD7E983D1E8938E44617925C04CD612DE7 (RuntimeObject* ___0_source, const RuntimeMethod* method)
|
|
{
|
|
return (( int32_t (*) (RuntimeObject*, const RuntimeMethod*))Enumerable_First_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_m665FD6DD7E983D1E8938E44617925C04CD612DE7_gshared)(___0_source, method);
|
|
}
|
|
inline void Dictionary_2_set_Item_mFB50A5ABA450F464BCF08AEB35E14D26BB582C78 (Dictionary_2_tB41FAC88F07BAB98D6D373F7C94FB0496D1BDA32* __this, Hash128_t93367F504B687578F893CDBCD13FB95AC8A87A40 ___0_key, int32_t ___1_value, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Dictionary_2_tB41FAC88F07BAB98D6D373F7C94FB0496D1BDA32*, Hash128_t93367F504B687578F893CDBCD13FB95AC8A87A40, int32_t, const RuntimeMethod*))Dictionary_2_set_Item_mFB50A5ABA450F464BCF08AEB35E14D26BB582C78_gshared)(__this, ___0_key, ___1_value, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ScriptableRenderer_UpdateFinalStoreActions_m135A9C4E66BE5FF0EE2ED10781CB316313986152 (ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892* __this, Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ___0_currentMergeablePasses, UniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7* ___1_cameraData, bool ___2_isLastMergeableGroup, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RTHandleU5BU5D_tE4B403B060D159B839BF74E8B59F8DCD52CF97DF* ScriptableRenderPass_get_colorAttachmentHandles_m52C72D6C6F0E7A66FE8FEC5ECFDDE5407FBF8897_inline (ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Graphics_get_preserveFramebufferAlpha_mCB9E42855D0544B90D7CBB454DBAE09DDD1D5E5A (const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t UniversalRenderPipeline_MakeRenderTextureGraphicsFormat_m386F1D4BCAD4537F62E4096D9264554312E11B5D (bool ___0_isHdrEnabled, int32_t ___1_requestHDRColorBufferPrecision, bool ___2_needsAlpha, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AttachmentDescriptor__ctor_m88C496B5B9F52F912AF1B3D2FD13E5DCD57748F4 (AttachmentDescriptor_tBAC9B26B50BB0838C5C0CC22BB296F9DFF41276E* __this, int32_t ___0_format, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ScriptableRenderer_FindAttachmentDescriptorIndexInList_m1DD16FAFA007FC1648DFD24623F46865AAFB5CDB (RenderTargetIdentifier_tA528663AC6EB3911D8E91AA40F7070FA5455442B ___0_target, AttachmentDescriptorU5BU5D_tC70107EBD955FE94BA31C7FDC146069EF9C547C1* ___1_attachmentDescriptors, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AttachmentDescriptor_set_storeAction_m301B420FC8A154DCB629A00523EE2EC41033C25A (AttachmentDescriptor_tBAC9B26B50BB0838C5C0CC22BB296F9DFF41276E* __this, int32_t ___0_value, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t ScriptableRenderPass_get_clearFlag_m74FAFCDC3CD75DC4201B398DFD25E028D7D800DB_inline (ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AttachmentDescriptor_ConfigureTarget_m0F7D48AB1C1005A8C31F597CD69B1F0E3E8C037D (AttachmentDescriptor_tBAC9B26B50BB0838C5C0CC22BB296F9DFF41276E* __this, RenderTargetIdentifier_tA528663AC6EB3911D8E91AA40F7070FA5455442B ___0_target, bool ___1_loadExistingContents, bool ___2_storeResults, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool RenderTargetIdentifier_op_Equality_mD9FD6667F4C385F2379E9DEAAA8F91B7A1D50A1F (RenderTargetIdentifier_tA528663AC6EB3911D8E91AA40F7070FA5455442B ___0_lhs, RenderTargetIdentifier_tA528663AC6EB3911D8E91AA40F7070FA5455442B ___1_rhs, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AttachmentDescriptor_ConfigureClear_m0C4A2481B28180B777F0C46E0FA5BC009FDC0886 (AttachmentDescriptor_tBAC9B26B50BB0838C5C0CC22BB296F9DFF41276E* __this, Color_tD001788D726C3A7F1379BEED0260B9591F440C1F ___0_clearColor, float ___1_clearDepth, uint32_t ___2_clearStencil, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Color_tD001788D726C3A7F1379BEED0260B9591F440C1F ScriptableRenderPass_get_clearColor_mAEC581D756087BF3617FE243D569717FBC2E5DB1_inline (ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Color_tD001788D726C3A7F1379BEED0260B9591F440C1F CoreUtils_ConvertSRGBToActiveColorSpace_mFAC0FDF001398AD8C45D7070A6DAEA9A381A17A2 (Color_tD001788D726C3A7F1379BEED0260B9591F440C1F ___0_color, const RuntimeMethod* method) ;
|
|
inline int32_t Dictionary_2_get_Item_m5A9D1816E2F401909438646463C34D043E421045 (Dictionary_2_tB41FAC88F07BAB98D6D373F7C94FB0496D1BDA32* __this, Hash128_t93367F504B687578F893CDBCD13FB95AC8A87A40 ___0_key, const RuntimeMethod* method)
|
|
{
|
|
return (( int32_t (*) (Dictionary_2_tB41FAC88F07BAB98D6D373F7C94FB0496D1BDA32*, Hash128_t93367F504B687578F893CDBCD13FB95AC8A87A40, const RuntimeMethod*))Dictionary_2_get_Item_m5A9D1816E2F401909438646463C34D043E421045_gshared)(__this, ___0_key, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ScriptableRenderer_PassHasInputAttachments_m26CD6A09B8A3ACB14DEC0A65B730D48FE4F6C1D7 (ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* ___0_renderPass, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ScriptableRenderer_SetupInputAttachmentIndices_m372065B367FFEA0F21A915E683A9338F560F4648 (ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892* __this, ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* ___0_pass, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t SystemInfo_GetGraphicsFormat_mF4A09D38BA91B8F783C9189B5D744BA943292E0E (int32_t ___0_format, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B* ScriptableRenderPass_get_depthAttachmentHandle_m3AA7953B201494DEF4FD2061660B94663EF63465_inline (ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ScriptableRenderer_SetupTransientInputAttachments_m5190F553CCBD5228C578900F3B00789993F8836D (ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892* __this, int32_t ___0_attachmentCount, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t RenderTexture_get_graphicsFormat_m615EA91709BD404765C0C85425CE5F3575F90302 (RenderTexture_tBA90C4C3AD9EECCFDDCC632D97C29FAB80D60D27* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B* ScriptableRenderPass_get_colorAttachmentHandle_m9F25A09AF063ECC69EBDF7680D11FA1E5D38AC7A (ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ScriptableRenderer_IsDepthOnlyRenderTexture_mFF5E987762C786DEBB831975AA953A5E3DA9DF6A (ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892* __this, RenderTexture_tBA90C4C3AD9EECCFDDCC632D97C29FAB80D60D27* ___0_t, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RenderTargetIdentifier__ctor_m79A7348AF351A912E617BF9C8A44A766648C80FB (RenderTargetIdentifier_tA528663AC6EB3911D8E91AA40F7070FA5455442B* __this, RenderTargetIdentifier_tA528663AC6EB3911D8E91AA40F7070FA5455442B ___0_renderTargetIdentifier, int32_t ___1_mipLevel, int32_t ___2_cubeFace, int32_t ___3_depthSlice, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool RenderTargetIdentifier_op_Inequality_m255136CF7E1B63A8D5A1F9FF03B992B656AB42DF (RenderTargetIdentifier_tA528663AC6EB3911D8E91AA40F7070FA5455442B ___0_lhs, RenderTargetIdentifier_tA528663AC6EB3911D8E91AA40F7070FA5455442B ___1_rhs, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t RenderTextureDescriptor_get_graphicsFormat_m50F25A4F179EA318C8D3B0D8685F9C5F59F7DEC0 (RenderTextureDescriptor_t69845881CE6437E4E61F92074F2F84079F23FA46* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t RenderTextureDescriptor_get_depthStencilFormat_m360929BE5BD10E9C3D8C936AA6B44B1D11C119CB_inline (RenderTextureDescriptor_t69845881CE6437E4E61F92074F2F84079F23FA46* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RenderTargetIdentifier__ctor_mD6E20FA134EEBCE40A8B5E64C505DE8A0DC96BDF (RenderTargetIdentifier_tA528663AC6EB3911D8E91AA40F7070FA5455442B* __this, Texture_t791CBB51219779964E0E8A2ED7C1AA5F92A4A700* ___0_tex, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RenderBuffer_tBE7B342979EF2FA36E24C8A7F9242212F5B89551 RenderTexture_get_depthBuffer_mBBDFA14B3AC2AE4796795E89A0BCA59D54B859D5 (RenderTexture_tBA90C4C3AD9EECCFDDCC632D97C29FAB80D60D27* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RenderTargetIdentifier__ctor_m3B830AE627991944D4C8D53DEC6D96CC9C70A060 (RenderTargetIdentifier_tA528663AC6EB3911D8E91AA40F7070FA5455442B* __this, RenderBuffer_tBE7B342979EF2FA36E24C8A7F9242212F5B89551 ___0_buf, int32_t ___1_mipLevel, int32_t ___2_cubeFace, int32_t ___3_depthSlice, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AttachmentDescriptor_ConfigureResolveTarget_mCB1AA1AEFD52C3041AD5FFD82FB7A3C55C1D5C58 (AttachmentDescriptor_tBAC9B26B50BB0838C5C0CC22BB296F9DFF41276E* __this, RenderTargetIdentifier_tA528663AC6EB3911D8E91AA40F7070FA5455442B ___0_target, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool RenderingUtils_MultisampleDepthResolveSupported_mFF310B1C5B2FF3C0B3A4237D4C248398A9F6E6E6 (const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RenderTargetIdentifier_tA528663AC6EB3911D8E91AA40F7070FA5455442B AttachmentDescriptor_get_loadStoreTarget_m0D018823050E378FE3FE501729C2CEC43CA39603 (AttachmentDescriptor_tBAC9B26B50BB0838C5C0CC22BB296F9DFF41276E* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ScriptableRenderer_FindAttachmentDescriptorIndexInList_m1C8C0549F43D2A2AFA119299C7E1ACFB1B81FA9D (int32_t ___0_attachmentIdx, AttachmentDescriptor_tBAC9B26B50BB0838C5C0CC22BB296F9DFF41276E ___1_attachmentDescriptor, AttachmentDescriptorU5BU5D_tC70107EBD955FE94BA31C7FDC146069EF9C547C1* ___2_attachmentDescriptors, const RuntimeMethod* method) ;
|
|
inline void NativeArray_1__ctor_m94DB1A0F1293F5BAA65533ED74C41E31D71CA979 (NativeArray_1_t39BA841475121E3F8A81F9BCA6646FD6FD6A32A8* __this, int32_t ___0_length, int32_t ___1_allocator, int32_t ___2_options, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (NativeArray_1_t39BA841475121E3F8A81F9BCA6646FD6FD6A32A8*, int32_t, int32_t, int32_t, const RuntimeMethod*))NativeArray_1__ctor_m94DB1A0F1293F5BAA65533ED74C41E31D71CA979_gshared)(__this, ___0_length, ___1_allocator, ___2_options, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t ScriptableRenderer_GetSubPassAttachmentIndicesCount_mBB35E73EFD6E816EA9FA2830081F2206F9C692C8 (ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* ___0_pass, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Math_Max_m530EBA549AFD98CFC2BD29FE86C6376E67DF11CF (int32_t ___0_val1, int32_t ___1_val2, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ScriptableRenderContext_BeginRenderPass_mC026E069CF6681EA3331972D2D11BC9616C2BBBE (ScriptableRenderContext_t5AB09B3602BEB456E0DC3D53926D3A3BDAF08E36* __this, int32_t ___0_width, int32_t ___1_height, int32_t ___2_samples, NativeArray_1_t39BA841475121E3F8A81F9BCA6646FD6FD6A32A8 ___3_attachments, int32_t ___4_depthAttachmentIndex, const RuntimeMethod* method) ;
|
|
inline void NativeArray_1_Dispose_mDE23364D98F461C925DB28A6A9D5C8580A56FD39 (NativeArray_1_t39BA841475121E3F8A81F9BCA6646FD6FD6A32A8* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (NativeArray_1_t39BA841475121E3F8A81F9BCA6646FD6FD6A32A8*, const RuntimeMethod*))NativeArray_1_Dispose_mDE23364D98F461C925DB28A6A9D5C8580A56FD39_gshared)(__this, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ScriptableRenderContext_BeginSubPass_m9E1A59EB48A07EDC1FB233CAC1177EDE73B19767 (ScriptableRenderContext_t5AB09B3602BEB456E0DC3D53926D3A3BDAF08E36* __this, NativeArray_1_tA833EB7E3E1C9AF82C37976AD964B8D4BAC38B2C ___0_colors, bool ___1_isDepthStencilReadOnly, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ScriptableRenderer_AreAttachmentIndicesCompatible_m25775E66ACCF88DAF5CE0004E10549E8CF027F55 (ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* ___0_lastSubPass, ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* ___1_currentSubPass, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ScriptableRenderContext_EndSubPass_m9A25C86A96A30590D7D8D9BEE2EE789B4C363602 (ScriptableRenderContext_t5AB09B3602BEB456E0DC3D53926D3A3BDAF08E36* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ScriptableRenderContext_BeginSubPass_m53AECA447C7DC5E5DBA8A3C3DB93CE091B9E9918 (ScriptableRenderContext_t5AB09B3602BEB456E0DC3D53926D3A3BDAF08E36* __this, NativeArray_1_tA833EB7E3E1C9AF82C37976AD964B8D4BAC38B2C ___0_colors, NativeArray_1_tA833EB7E3E1C9AF82C37976AD964B8D4BAC38B2C ___1_inputs, bool ___2_isDepthStencilReadOnly, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ScriptableRenderContext_ExecuteCommandBuffer_mBAE37DFC699B7167A6E2C59012066C44A31E9896 (ScriptableRenderContext_t5AB09B3602BEB456E0DC3D53926D3A3BDAF08E36* __this, CommandBuffer_tB56007DC84EF56296C325EC32DD12AC1E3DC91F7* ___0_commandBuffer, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CommandBuffer_Clear_m4E1272BD1A0C162C9C26434E115279F42FA557C7 (CommandBuffer_tB56007DC84EF56296C325EC32DD12AC1E3DC91F7* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ScriptableRenderContext_EndRenderPass_mA729C3E803FAEBE9D99B2DD03315CC823E4081DF (ScriptableRenderContext_t5AB09B3602BEB456E0DC3D53926D3A3BDAF08E36* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR AttachmentDescriptor_tBAC9B26B50BB0838C5C0CC22BB296F9DFF41276E RenderingUtils_get_emptyAttachment_m2AF0A5A339A35504D7FA8DD4B3400ACF5F449F38_inline (const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ScriptableRenderer_GetValidInputAttachmentCount_mF6D62B642F6243473A3B76EC214897D0AAB80357 (ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* ___0_renderPass, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RenderTargetIdentifier_tA528663AC6EB3911D8E91AA40F7070FA5455442B RTHandle_op_Implicit_m2462183372B0496DE475889924EDCAAAD2011B54 (RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B* ___0_handle, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ScriptableRenderPass_IsInputAttachmentTransient_m2FB2DD892C4642FDE4EF0031EC623040A3633029 (ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* __this, int32_t ___0_idx, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AttachmentDescriptor_set_loadAction_mE9082911CEF05ECB4ADCC1B767CA7AE876D887CB (AttachmentDescriptor_tBAC9B26B50BB0838C5C0CC22BB296F9DFF41276E* __this, int32_t ___0_value, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AttachmentDescriptor_set_loadStoreTarget_m9FF98F42A5FF8BEED8E8F6E4BB50D470A9461D87 (AttachmentDescriptor_tBAC9B26B50BB0838C5C0CC22BB296F9DFF41276E* __this, RenderTargetIdentifier_tA528663AC6EB3911D8E91AA40F7070FA5455442B ___0_value, const RuntimeMethod* method) ;
|
|
inline Enumerator_t7767C5CF41D19BF6C7326C9870C530F1AD3CAC30 NativeArray_1_GetEnumerator_m6E656AE4243351850AD99E832638DDF081239389 (NativeArray_1_tA833EB7E3E1C9AF82C37976AD964B8D4BAC38B2C* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( Enumerator_t7767C5CF41D19BF6C7326C9870C530F1AD3CAC30 (*) (NativeArray_1_tA833EB7E3E1C9AF82C37976AD964B8D4BAC38B2C*, const RuntimeMethod*))NativeArray_1_GetEnumerator_m6E656AE4243351850AD99E832638DDF081239389_gshared)(__this, method);
|
|
}
|
|
inline void Enumerator_Dispose_m76DC8FCCF3E42CD42363AD6C2BAC71ABDA1535C2 (Enumerator_t7767C5CF41D19BF6C7326C9870C530F1AD3CAC30* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Enumerator_t7767C5CF41D19BF6C7326C9870C530F1AD3CAC30*, const RuntimeMethod*))Enumerator_Dispose_m76DC8FCCF3E42CD42363AD6C2BAC71ABDA1535C2_gshared)(__this, method);
|
|
}
|
|
inline int32_t Enumerator_get_Current_m9615CE722B0B33517472FA29CB73AE60D8E8D522_inline (Enumerator_t7767C5CF41D19BF6C7326C9870C530F1AD3CAC30* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( int32_t (*) (Enumerator_t7767C5CF41D19BF6C7326C9870C530F1AD3CAC30*, const RuntimeMethod*))Enumerator_get_Current_m9615CE722B0B33517472FA29CB73AE60D8E8D522_gshared_inline)(__this, method);
|
|
}
|
|
inline bool Enumerator_MoveNext_m62905577B99C79AEA734E15AC569B10365214EDA_inline (Enumerator_t7767C5CF41D19BF6C7326C9870C530F1AD3CAC30* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( bool (*) (Enumerator_t7767C5CF41D19BF6C7326C9870C530F1AD3CAC30*, const RuntimeMethod*))Enumerator_MoveNext_m62905577B99C79AEA734E15AC569B10365214EDA_gshared_inline)(__this, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool AttachmentDescriptor_op_Inequality_m2E35C1D7BEF8C0DDB519C8940A9E1F804396376D (AttachmentDescriptor_tBAC9B26B50BB0838C5C0CC22BB296F9DFF41276E ___0_left, AttachmentDescriptor_tBAC9B26B50BB0838C5C0CC22BB296F9DFF41276E ___1_right, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t AttachmentDescriptor_get_graphicsFormat_mD4C79447C046BFD7348C60D2D1447EA551C7F971 (AttachmentDescriptor_tBAC9B26B50BB0838C5C0CC22BB296F9DFF41276E* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Hash128__ctor_m4C7478EE2EED2085265B895E483B128CCAA6D011 (Hash128_t93367F504B687578F893CDBCD13FB95AC8A87A40* __this, uint32_t ___0_u32_0, uint32_t ___1_u32_1, uint32_t ___2_u32_2, uint32_t ___3_u32_3, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Hash128_t93367F504B687578F893CDBCD13FB95AC8A87A40 ScriptableRenderer_CreateRenderPassHash_mBF31900DFF159E35A02C2CF9164956B5F815CE52 (int32_t ___0_width, int32_t ___1_height, int32_t ___2_depthID, int32_t ___3_sample, uint32_t ___4_hashIndex, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t UniversalCameraData_get_scaledWidth_mD4B35FA28DBA62FA07EF273CCFCA4CC730D1CA88 (UniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void RenderTextureDescriptor_set_width_m3B2494007BFE3AD4D14403407C9B24F5045E7E10_inline (RenderTextureDescriptor_t69845881CE6437E4E61F92074F2F84079F23FA46* __this, int32_t ___0_value, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t UniversalCameraData_get_scaledHeight_mD5B22BF70530FCA60F468DE4E976CBCBCB8363F6 (UniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void RenderTextureDescriptor_set_height_m1FE41111472DAA9B5E80FFAF3445004D72A3CFA5_inline (RenderTextureDescriptor_t69845881CE6437E4E61F92074F2F84079F23FA46* __this, int32_t ___0_value, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ScriptableRenderer_GetRenderTextureDescriptor_mB9100A60948F785006375BF38A095B9615591ED7 (UniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7* ___0_cameraData, ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* ___1_renderPass, RenderTextureDescriptor_t69845881CE6437E4E61F92074F2F84079F23FA46* ___2_targetRT, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B* ScriptableRenderer_get_cameraDepthTargetHandle_m105A4BA47F734199554838F588A5101E2591988E (ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t RenderTextureDescriptor_get_width_mB159E4EB08B23B19CCCFADB465864361FB840BFF_inline (RenderTextureDescriptor_t69845881CE6437E4E61F92074F2F84079F23FA46* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t RenderTextureDescriptor_get_height_m1006F9AA45029715C552C8A8C2F102F63D3A91EC_inline (RenderTextureDescriptor_t69845881CE6437E4E61F92074F2F84079F23FA46* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RenderPassDescriptor__ctor_m8898C83BD6A00119601FBF7274E93C85874A49B1 (RenderPassDescriptor_t69F0595A52DBEEBFE5A491D3E8E27D530069B0C5* __this, int32_t ___0_width, int32_t ___1_height, int32_t ___2_sampleCount, int32_t ___3_rtID, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR UniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7* CameraData_get_universalCameraData_mD67FBE2CAADDBA930E7DDD9F44ED8C5F10E24AC2 (CameraData_tC27AE109CD20677486A4AC19C0CF014AE0F50C3E* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool CameraData_IsCameraProjectionMatrixFlipped_m381DFFDE02B019E1EE975967B5E9593FDF9464E2 (CameraData_tC27AE109CD20677486A4AC19C0CF014AE0F50C3E* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ScriptableRenderer_SetCameraMatrices_m4CB2870357156E68160620CCEE59FE9FAB58F9C0 (RasterCommandBuffer_t4300C4F080EA3CF43C7ACFDBD4F94EA633FE98E8* ___0_cmd, UniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7* ___1_cameraData, bool ___2_setInverseMatrices, bool ___3_isTargetFlipped, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool UniversalCameraData_IsCameraProjectionMatrixFlipped_mB276D4F23A10935367AF04FAAEC51AC177A5C203 (UniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR XRPass_tFC4577E97B88E0EAAAB2EB387AB3A92E9EB9C6DF* UniversalCameraData_get_xr_mC600E667BA2B92EADF2CF60CD49E15242FA83C4D_inline (UniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XRPass_get_enabled_m488D52C18CC6B83FDC3212E98864BA02116A64A3 (XRPass_tFC4577E97B88E0EAAAB2EB387AB3A92E9EB9C6DF* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UniversalCameraData_PushBuiltinShaderConstantsXR_mA5EE73620BDC6B4AD63AEDF6850F7FD24B21F729 (UniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7* __this, RasterCommandBuffer_t4300C4F080EA3CF43C7ACFDBD4F94EA633FE98E8* ___0_cmd, bool ___1_renderIntoTexture, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XRPassUniversal_t8D4B40107F5DBC12D39470D87D108D3D2A8FB8D1* UniversalCameraData_get_xrUniversal_mD28B65BB477E408AF63DCA582FA63CB9FDCC01E0 (UniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRSystemUniversal_MarkShaderProperties_mD3F656E96DD95014FE77EC31F74F74809717D0B5 (RasterCommandBuffer_t4300C4F080EA3CF43C7ACFDBD4F94EA633FE98E8* ___0_cmd, XRPassUniversal_t8D4B40107F5DBC12D39470D87D108D3D2A8FB8D1* ___1_xrPass, bool ___2_renderIntoTexture, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Matrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6 UniversalCameraData_GetViewMatrix_mE4676E11126A0A1F10B2425B245CF438A671A21A (UniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7* __this, int32_t ___0_viewIndex, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Matrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6 UniversalCameraData_GetProjectionMatrix_mCBE3F56686DD504AC04863DB9FC5479E69DB4866 (UniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7* __this, int32_t ___0_viewIndex, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RasterCommandBuffer_SetViewProjectionMatrices_m21CDA0C0749727E056A9F2FA6241346D68876D29 (RasterCommandBuffer_t4300C4F080EA3CF43C7ACFDBD4F94EA633FE98E8* __this, Matrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6 ___0_view, Matrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6 ___1_proj, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Matrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6 UniversalCameraData_GetGPUProjectionMatrix_mE735BC88196500A60E681CB42031792EB977FB1C (UniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7* __this, bool ___0_renderIntoTexture, int32_t ___1_viewIndex, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Matrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6 Matrix4x4_Inverse_mFB2503F5D5FE76E7C56249700ED2E43DDA0F1939 (Matrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6 ___0_m, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Matrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6 Matrix4x4_get_inverse_m4F4A881CD789281EA90EB68CFD39F36C8A81E6BD (Matrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RasterCommandBuffer_SetGlobalMatrix_m036FB6142D56FB781E262E604951EB5EDA003EE2 (RasterCommandBuffer_t4300C4F080EA3CF43C7ACFDBD4F94EA633FE98E8* __this, int32_t ___0_nameID, Matrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6 ___1_value, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Vector2Int__ctor_mC20D1312133EB8CB63EC11067088B043660F11CE_inline (Vector2Int_t69B2886EBAB732D9B880565E18E7568F3DE0CE6A* __this, int32_t ___0_x, int32_t ___1_y, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ScriptableRenderer_SetPerCameraShaderVariables_m11127D897D405440FEB597262B29C713698EF4F9 (ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892* __this, RasterCommandBuffer_t4300C4F080EA3CF43C7ACFDBD4F94EA633FE98E8* ___0_cmd, UniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7* ___1_cameraData, Vector2Int_t69B2886EBAB732D9B880565E18E7568F3DE0CE6A ___2_cameraTargetSizeCopy, bool ___3_isTargetFlipped, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t Vector2Int_get_x_mA2CACB1B6E6B5AD0CCC32B2CD2EDCE3ECEB50576_inline (Vector2Int_t69B2886EBAB732D9B880565E18E7568F3DE0CE6A* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t Vector2Int_get_y_m48454163ECF0B463FB5A16A0C4FC4B14DB0768B3_inline (Vector2Int_t69B2886EBAB732D9B880565E18E7568F3DE0CE6A* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Camera_get_pixelWidth_m55AC8AD744FC0179865C2E630C68F9AD0799065D (Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Camera_get_pixelHeight_m00881B5A440B0018D5A8F837694027050B500F59 (Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Camera_get_allowDynamicResolution_mAD3664A7319B2D48FF0D6DCEE6FD7B855F21A79B (Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t XRPass_get_renderTargetScaledWidth_m023E0E3EA121FEB8E1FD838A3EFFA55E96F7CBC8_inline (XRPass_tFC4577E97B88E0EAAAB2EB387AB3A92E9EB9C6DF* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t XRPass_get_renderTargetScaledHeight_m06C1F1D82C7A84275B6F5881E5347BD57AB96005_inline (XRPass_tFC4577E97B88E0EAAAB2EB387AB3A92E9EB9C6DF* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float ScalableBufferManager_get_widthScaleFactor_m544DB29370FFD51C8E445BA407B0199116F79EAC (const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float ScalableBufferManager_get_heightScaleFactor_mD47126B1D94893B4DC53B57D7678631A058A264B (const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float Camera_get_nearClipPlane_m5E8FAF84326E3192CB036BD29DCCDAF6A9861013 (Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float Camera_get_farClipPlane_m1D7128B85B5DB866F75FBE8CEBA48335716B67BD (Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Mathf_Approximately_m1DADD012A8FC82E11FB282501AE2EBBF9A77150B_inline (float ___0_a, float ___1_b, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Camera_get_orthographic_m904DEFC76C54DA4E30C20A62A86D5D87B7D4DD8F (Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool SystemInfo_get_usesReversedZBuffer_m52819B4B538F590FCA0370FC99775B3AA6B32514 (const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RasterCommandBuffer_SetGlobalVector_mB54A698709E920A961D8601DC5B2452B4866C68E (RasterCommandBuffer_t4300C4F080EA3CF43C7ACFDBD4F94EA633FE98E8* __this, int32_t ___0_nameID, Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3 ___1_value, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float Camera_get_orthographicSize_m7950C5627086253E02992A43ADFE59039DB473F8 (Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3 Vector4_op_Implicit_m2ECA73F345A7AD84144133E9E51657204002B12D_inline (Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___0_v, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3 Vector4_get_one_m0AA55064B3C47D9D94E5BC4EE6AEC5B6E4F2D151_inline (const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR double Math_Log_m5A3BBBF06AB82F25C885812E07D27B473CF43054 (double ___0_a, double ___1_newBase, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float Math_Min_mE913811A2F7566294BF4649A434282634E7254B3 (float ___0_val1, float ___1_val2, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float Settings_get_mipBias_m1A4168EB95838BFB72A8CBB96FD5FA4C9CEE0EA6_inline (Settings_t3BEFDFF2C1A3D3A215DAF7B76E735B1BFB946C92* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3 Vector4_op_Implicit_mB193CD8DA20DEB9E9F95CFEB5A2B1B9B3B7ECFEB_inline (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___0_v, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool QualitySettings_get_billboardsFaceCameraPosition_mBD6743125AB1B58E759F6F069007AE25C2F37166 (const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ScriptableRenderer_CalculateBillboardProperties_m56E42FBF4312BAC9F57093058FDC94762FC86CE1 (Matrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6* ___0_worldToCameraMatrix, Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2* ___1_billboardTangent, Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2* ___2_billboardNormal, float* ___3_cameraXZAngle, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Matrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6 Matrix4x4_get_transpose_mE85C7D21ED5CF86A8066073E6548E77162AA2C89 (Matrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 Vector3_get_up_m128AF3FDC820BF59D5DE86D973E7DE3F20C3AEBA_inline (const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 Vector3_Cross_mF93A280558BCE756D13B6CC5DCD7DE8A43148987_inline (Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___0_lhs, Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___1_rhs, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float Vector3_get_sqrMagnitude_m43C27DEC47C4811FB30AB474FF2131A963B66FC8_inline (Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 Vector3_get_normalized_m736BBF65D5CDA7A18414370D15B4DFCC1E466F07_inline (Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ScriptableRenderer_SetPerCameraClippingPlaneProperties_mEE27A06DB1BDFB5DA3D761251AC7E296BDE30C49 (ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892* __this, RasterCommandBuffer_t4300C4F080EA3CF43C7ACFDBD4F94EA633FE98E8* ___0_cmd, UniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7** ___1_cameraData, bool ___2_isTargetFlipped, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Matrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6 CoreMatrixUtils_MultiplyProjectionMatrix_m11D312AD592B0028034EDC7B3C188E21134C18F6 (Matrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6 ___0_projMatrix, Matrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6 ___1_rhs, bool ___2_orthoCentered, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GeometryUtility_CalculateFrustumPlanes_mEF5113B6E681CC589EE06AF63CD4BE1E744F731D (Matrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6 ___0_worldToProjectionMatrix, PlaneU5BU5D_t4EEF66BAA8B0140EFFF34F6183CE7F80546592BE* ___1_planes, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 Plane_get_normal_mA161D94E6F7327BC111007C880B76E1731729EFB_inline (Plane_tB7D8CC6F7AACF5F3AA483AF005C1102A8577BC0C* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float Plane_get_distance_m2D50D2C23E2D9438272F876878015B38DAF5ED30_inline (Plane_tB7D8CC6F7AACF5F3AA483AF005C1102A8577BC0C* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RasterCommandBuffer_SetGlobalVectorArray_mFBD8CEECFF234DD05410B44D850F0F50CB72406F (RasterCommandBuffer_t4300C4F080EA3CF43C7ACFDBD4F94EA633FE98E8* __this, int32_t ___0_nameID, Vector4U5BU5D_tC0F3A7115F85007510F6D173968200CD31BCF7AD* ___1_values, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float ShaderUtils_get_PersistentDeltaTime_m86B550AC0EF170F909F381C2E4CB55E76181226F (const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3 Vector4_op_Multiply_m59B8215B9A49709B9D299317ECB152C316625559_inline (float ___0_d, Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3 ___1_a, const RuntimeMethod* method) ;
|
|
inline void Dictionary_2__ctor_m05ECDADE8596B7510223CB2621AC5534E7AB2A9C (Dictionary_2_tCB9019887EB0254D4745B0724BC12327C5B63792* __this, int32_t ___0_capacity, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Dictionary_2_tCB9019887EB0254D4745B0724BC12327C5B63792*, int32_t, const RuntimeMethod*))Dictionary_2__ctor_mC41E8B60034BB99ACB3A702E60453217D34386A4_gshared)(__this, ___0_capacity, method);
|
|
}
|
|
inline void Dictionary_2__ctor_m2927741406FF3DA98E94B375416763714607683B (Dictionary_2_tB41FAC88F07BAB98D6D373F7C94FB0496D1BDA32* __this, int32_t ___0_capacity, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Dictionary_2_tB41FAC88F07BAB98D6D373F7C94FB0496D1BDA32*, int32_t, const RuntimeMethod*))Dictionary_2__ctor_m2927741406FF3DA98E94B375416763714607683B_gshared)(__this, ___0_capacity, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RenderingFeatures__ctor_m63CA9CABFDC57D4CBEA1205C070F14CC83FF8C0F (RenderingFeatures_t31044CBDCDC2F05194BFA2A2122FBD937D78A371* __this, const RuntimeMethod* method) ;
|
|
inline void List_1__ctor_m6FE38FE18A0E8C60C49D16C144BBCAC6BF7D7CEB (List_1_t2E485E650BF1E41358CE56A69323E183C5A89CB6* __this, int32_t ___0_capacity, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (List_1_t2E485E650BF1E41358CE56A69323E183C5A89CB6*, int32_t, const RuntimeMethod*))List_1__ctor_m76CBBC3E2F0583F5AD30CE592CEA1225C06A0428_gshared)(__this, ___0_capacity, method);
|
|
}
|
|
inline void List_1__ctor_mB5256BBA70CD858B15C25CE0E77EC59F6479EC82 (List_1_t2121653FB628940E808D105AD2C17E0F20AFB3A6* __this, int32_t ___0_capacity, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (List_1_t2121653FB628940E808D105AD2C17E0F20AFB3A6*, int32_t, const RuntimeMethod*))List_1__ctor_m76CBBC3E2F0583F5AD30CE592CEA1225C06A0428_gshared)(__this, ___0_capacity, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ContextContainer__ctor_mE70E13EDA049DDB0CA0FB8CB65A1913326B70261 (ContextContainer_t384E08F63FABEFF6A7F1A753F5EF02699DAD414C* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Object_get_name_mAC2F6B897CF1303BA4249B4CB55271AFACBB6392 (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Concat_m9E3155FB84015C823606188F53B47CB44C444991 (String_t* ___0_str0, String_t* ___1_str1, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void ScriptableRenderer_set_profilingExecute_m9DE85BB63AA11C1B8C900166DB8961BE6AEAE6CC_inline (ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892* __this, ProfilingSampler_t420D4672EDB44E0EF980B31ADFD9E5747200FECE* ___0_value, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR List_1_t2121653FB628940E808D105AD2C17E0F20AFB3A6* ScriptableRendererData_get_rendererFeatures_m1DF4156F6E0733E01D096AE7A3C43EC6C9D2DD45_inline (ScriptableRendererData_t9005CE645D4881FA4431E52EDC7678203632CAA7* __this, const RuntimeMethod* method) ;
|
|
inline Enumerator_tAE036FA290FC0CC475BEF0D5890C759A8DA9B786 List_1_GetEnumerator_m0ED7F868DFBF0B8A5F2C3A7252C548079FD8BB4F (List_1_t2121653FB628940E808D105AD2C17E0F20AFB3A6* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( Enumerator_tAE036FA290FC0CC475BEF0D5890C759A8DA9B786 (*) (List_1_t2121653FB628940E808D105AD2C17E0F20AFB3A6*, const RuntimeMethod*))List_1_GetEnumerator_mD8294A7FA2BEB1929487127D476F8EC1CDC23BFC_gshared)(__this, method);
|
|
}
|
|
inline void Enumerator_Dispose_mEDFBA1A78C8BF94339410CCE79ED2B8947023112 (Enumerator_tAE036FA290FC0CC475BEF0D5890C759A8DA9B786* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Enumerator_tAE036FA290FC0CC475BEF0D5890C759A8DA9B786*, const RuntimeMethod*))Enumerator_Dispose_mD9DC3E3C3697830A4823047AB29A77DBBB5ED419_gshared)(__this, method);
|
|
}
|
|
inline ScriptableRendererFeature_tF2ED08AD2498105378D4DAB0386A0F8A144EF4C6* Enumerator_get_Current_m65E52814F3289E84E69A7324ED46026114A0FFAE_inline (Enumerator_tAE036FA290FC0CC475BEF0D5890C759A8DA9B786* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( ScriptableRendererFeature_tF2ED08AD2498105378D4DAB0386A0F8A144EF4C6* (*) (Enumerator_tAE036FA290FC0CC475BEF0D5890C759A8DA9B786*, const RuntimeMethod*))Enumerator_get_Current_m6330F15D18EE4F547C05DF9BF83C5EB710376027_gshared_inline)(__this, method);
|
|
}
|
|
inline void List_1_Add_m9C754466AA0D67659DEFB20BF59FF7355899A32A_inline (List_1_t2121653FB628940E808D105AD2C17E0F20AFB3A6* __this, ScriptableRendererFeature_tF2ED08AD2498105378D4DAB0386A0F8A144EF4C6* ___0_item, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (List_1_t2121653FB628940E808D105AD2C17E0F20AFB3A6*, ScriptableRendererFeature_tF2ED08AD2498105378D4DAB0386A0F8A144EF4C6*, const RuntimeMethod*))List_1_Add_mEBCF994CC3814631017F46A387B1A192ED6C85C7_gshared_inline)(__this, ___0_item, method);
|
|
}
|
|
inline bool Enumerator_MoveNext_m699A9E1D941711453887F76F5DD8E797A46A5D48 (Enumerator_tAE036FA290FC0CC475BEF0D5890C759A8DA9B786* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( bool (*) (Enumerator_tAE036FA290FC0CC475BEF0D5890C759A8DA9B786*, const RuntimeMethod*))Enumerator_MoveNext_mE921CC8F29FBBDE7CC3209A0ED0D921D58D00BCB_gshared)(__this, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ScriptableRenderer_ResetNativeRenderPassFrameData_m5F97E74C153E46C6DC32BF2E0A3F468230DB4C5A (ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool ScriptableRendererData_get_useNativeRenderPass_m7F8D3A97A818B1134EFC3A4236E7A7C8ECD9245F_inline (ScriptableRendererData_t9005CE645D4881FA4431E52EDC7678203632CAA7* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ScriptableRenderer_Clear_mC6FE17F23429708C54B9BC06747196B90C6CF3D4 (ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892* __this, int32_t ___0_cameraType, const RuntimeMethod* method) ;
|
|
inline void List_1_Clear_m465CCAF440EF34D44065E6C2BE1D68215EAD505E_inline (List_1_t2E485E650BF1E41358CE56A69323E183C5A89CB6* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (List_1_t2E485E650BF1E41358CE56A69323E183C5A89CB6*, const RuntimeMethod*))List_1_Clear_m16C1F2C61FED5955F10EB36BC1CB2DF34B128994_gshared_inline)(__this, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR UniversalRenderPipelineAsset_tE8A9AA6F030CC3B558CEA2EB54FFF4FC58CA6232* UniversalRenderPipeline_get_asset_mCDEF564C748A6FE271F3749C82ECA64D0F6DE9E9 (const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Object_op_Implicit_m93896EF7D68FA113C42D3FE2BC6F661FC7EF514A (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C* ___0_exists, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t UniversalRenderPipelineAsset_get_storeActionsOptimization_m34BDA517FC97840E134614733270B805F101A8C6_inline (UniversalRenderPipelineAsset_tE8A9AA6F030CC3B558CEA2EB54FFF4FC58CA6232* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR List_1_t2121653FB628940E808D105AD2C17E0F20AFB3A6* ScriptableRenderer_get_rendererFeatures_m2473415AE63D3735ACBD7BF7CAEA7CB0315A7057_inline (ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892* __this, const RuntimeMethod* method) ;
|
|
inline ScriptableRendererFeature_tF2ED08AD2498105378D4DAB0386A0F8A144EF4C6* List_1_get_Item_mA0690F170B9EA5DBD421B889FC1DEDEF46CAAD1E (List_1_t2121653FB628940E808D105AD2C17E0F20AFB3A6* __this, int32_t ___0_index, const RuntimeMethod* method)
|
|
{
|
|
return (( ScriptableRendererFeature_tF2ED08AD2498105378D4DAB0386A0F8A144EF4C6* (*) (List_1_t2121653FB628940E808D105AD2C17E0F20AFB3A6*, int32_t, const RuntimeMethod*))List_1_get_Item_m33561245D64798C2AB07584C0EC4F240E4839A38_gshared)(__this, ___0_index, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ScriptableRendererFeature_Dispose_m8CE96FDAA8728C64B3DA17D95E6154048C7E37AA (ScriptableRendererFeature_tF2ED08AD2498105378D4DAB0386A0F8A144EF4C6* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Debug_LogException_mAB3F4DC7297ED8FBB49DAA718B70E59A6B0171B0 (Exception_t* ___0_exception, const RuntimeMethod* method) ;
|
|
inline int32_t List_1_get_Count_m81D0B7C641653EC8742F7B48EC513ECBD2A61C97_inline (List_1_t2121653FB628940E808D105AD2C17E0F20AFB3A6* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( int32_t (*) (List_1_t2121653FB628940E808D105AD2C17E0F20AFB3A6*, const RuntimeMethod*))List_1_get_Count_m4407E4C389F22B8CEC282C15D56516658746C383_gshared_inline)(__this, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GC_SuppressFinalize_m71815DBD5A0CD2EA1BE43317B08B7A14949EDC65 (RuntimeObject* ___0_obj, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DebugHandler_Dispose_mC4D4898C5BB702306AE5C1DC7243D5DEC6E7D97F (DebugHandler_t3A09E2CFD1CA6F5C192968A6FF19EE4863F44DA4* __this, const RuntimeMethod* method) ;
|
|
inline RuntimeObject* RenderGraph_AddUnsafePass_TisPassData_t84C7078BE208CBCF257438586035AB69DE199182_m12AE6576970C3F76D24E04EB4195A2C7BDC81F05 (RenderGraph_t73ECE03B3CA3D0D17F1448D64AE020E81592AA1E* __this, String_t* ___0_passName, PassData_t84C7078BE208CBCF257438586035AB69DE199182** ___1_passData, ProfilingSampler_t420D4672EDB44E0EF980B31ADFD9E5747200FECE* ___2_sampler, String_t* ___3_file, int32_t ___4_line, const RuntimeMethod* method)
|
|
{
|
|
return (( RuntimeObject* (*) (RenderGraph_t73ECE03B3CA3D0D17F1448D64AE020E81592AA1E*, String_t*, PassData_t84C7078BE208CBCF257438586035AB69DE199182**, ProfilingSampler_t420D4672EDB44E0EF980B31ADFD9E5747200FECE*, String_t*, int32_t, const RuntimeMethod*))RenderGraph_AddUnsafePass_TisRuntimeObject_m22ED403D4C84145926A27918AB261A49E25F3206_gshared)(__this, ___0_passName, ___1_passData, ___2_sampler, ___3_file, ___4_line, method);
|
|
}
|
|
inline void BaseRenderFunc_2__ctor_mDB332AD138198FF2F7AAF7934A3A34B5C5F214E7 (BaseRenderFunc_2_t0F078AB23E7CF63F4670F4E80CFDE4CD4BEB0F72* __this, RuntimeObject* ___0_object, intptr_t ___1_method, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (BaseRenderFunc_2_t0F078AB23E7CF63F4670F4E80CFDE4CD4BEB0F72*, RuntimeObject*, intptr_t, const RuntimeMethod*))BaseRenderFunc_2__ctor_mDC58545FDE0ACE8DDA93E3C3AF0D636A40E65081_gshared)(__this, ___0_object, ___1_method, method);
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ContextContainer_t384E08F63FABEFF6A7F1A753F5EF02699DAD414C* ScriptableRenderer_get_frameData_m1E575C1F7F79B65139F8AD75EB4B40BB4113714A_inline (ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892* __this, const RuntimeMethod* method) ;
|
|
inline RuntimeObject* RenderGraph_AddUnsafePass_TisVFXProcessCameraPassData_t19BF6E1F978BA36189D226BA7F36E8F3190D07A9_m1B860B78DA9A535D8D605384DF7FF725B9A60780 (RenderGraph_t73ECE03B3CA3D0D17F1448D64AE020E81592AA1E* __this, String_t* ___0_passName, VFXProcessCameraPassData_t19BF6E1F978BA36189D226BA7F36E8F3190D07A9** ___1_passData, ProfilingSampler_t420D4672EDB44E0EF980B31ADFD9E5747200FECE* ___2_sampler, String_t* ___3_file, int32_t ___4_line, const RuntimeMethod* method)
|
|
{
|
|
return (( RuntimeObject* (*) (RenderGraph_t73ECE03B3CA3D0D17F1448D64AE020E81592AA1E*, String_t*, VFXProcessCameraPassData_t19BF6E1F978BA36189D226BA7F36E8F3190D07A9**, ProfilingSampler_t420D4672EDB44E0EF980B31ADFD9E5747200FECE*, String_t*, int32_t, const RuntimeMethod*))RenderGraph_AddUnsafePass_TisRuntimeObject_m22ED403D4C84145926A27918AB261A49E25F3206_gshared)(__this, ___0_passName, ___1_passData, ___2_sampler, ___3_file, ___4_line, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XRPass_get_viewCount_m0D9E6A5AEA60C52EAA3B211DDE1BEA734318A35D (XRPass_tFC4577E97B88E0EAAAB2EB387AB3A92E9EB9C6DF* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t XRPass_get_multipassId_m312BE1D2B8BA520E9A214F50E601EA6BED92E245_inline (XRPass_tFC4577E97B88E0EAAAB2EB387AB3A92E9EB9C6DF* __this, const RuntimeMethod* method) ;
|
|
inline void BaseRenderFunc_2__ctor_mB92587605D969A04E3971CC614A5E599027A593C (BaseRenderFunc_2_t55E594CC6D951D462AFB9867489BE9665166DC90* __this, RuntimeObject* ___0_object, intptr_t ___1_method, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (BaseRenderFunc_2_t55E594CC6D951D462AFB9867489BE9665166DC90*, RuntimeObject*, intptr_t, const RuntimeMethod*))BaseRenderFunc_2__ctor_mDC58545FDE0ACE8DDA93E3C3AF0D636A40E65081_gshared)(__this, ___0_object, ___1_method, method);
|
|
}
|
|
inline RuntimeObject* RenderGraph_AddRasterRenderPass_TisPassData_t84C7078BE208CBCF257438586035AB69DE199182_m16E4B052F1CF829CEE630A12FCB0881DC498F9C2 (RenderGraph_t73ECE03B3CA3D0D17F1448D64AE020E81592AA1E* __this, String_t* ___0_passName, PassData_t84C7078BE208CBCF257438586035AB69DE199182** ___1_passData, ProfilingSampler_t420D4672EDB44E0EF980B31ADFD9E5747200FECE* ___2_sampler, String_t* ___3_file, int32_t ___4_line, const RuntimeMethod* method)
|
|
{
|
|
return (( RuntimeObject* (*) (RenderGraph_t73ECE03B3CA3D0D17F1448D64AE020E81592AA1E*, String_t*, PassData_t84C7078BE208CBCF257438586035AB69DE199182**, ProfilingSampler_t420D4672EDB44E0EF980B31ADFD9E5747200FECE*, String_t*, int32_t, const RuntimeMethod*))RenderGraph_AddRasterRenderPass_TisRuntimeObject_mC67DBCDAE9E5C0D6FA1406B1CD4EA8A1F9244044_gshared)(__this, ___0_passName, ___1_passData, ___2_sampler, ___3_file, ___4_line, method);
|
|
}
|
|
inline void BaseRenderFunc_2__ctor_mDCAC411E1CB07BDC48FDC7ED201F503A23BCC2CB (BaseRenderFunc_2_t592BAE028800F18A071D869FCB982B997F5E13A2* __this, RuntimeObject* ___0_object, intptr_t ___1_method, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (BaseRenderFunc_2_t592BAE028800F18A071D869FCB982B997F5E13A2*, RuntimeObject*, intptr_t, const RuntimeMethod*))BaseRenderFunc_2__ctor_m72268C37DF7D310181ABEF09D65817B1108D843E_gshared)(__this, ___0_object, ___1_method, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float XRSystem_GetRenderViewportScale_mF6B33B1AA904F881FEA688EBD551E7CD43817D35 (const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool PlatformAutoDetect_get_isXRMobile_mE44C06DAC1F8980BC83D0CE40C3D5551BCF9E448_inline (const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XRPassUniversal_set_canFoveateIntermediatePasses_m24F21289F0909F04F4D682C216DBB1C794472D59_inline (XRPassUniversal_t8D4B40107F5DBC12D39470D87D108D3D2A8FB8D1* __this, bool ___0_value, const RuntimeMethod* method) ;
|
|
inline RuntimeObject* RenderGraph_AddRasterRenderPass_TisBeginXRPassData_t34405E999FE849E4AAE7FBA7EE4CF3A4CFD51F01_m93BA0C85EB16FA31242B0122BDC3424118D10346 (RenderGraph_t73ECE03B3CA3D0D17F1448D64AE020E81592AA1E* __this, String_t* ___0_passName, BeginXRPassData_t34405E999FE849E4AAE7FBA7EE4CF3A4CFD51F01** ___1_passData, ProfilingSampler_t420D4672EDB44E0EF980B31ADFD9E5747200FECE* ___2_sampler, String_t* ___3_file, int32_t ___4_line, const RuntimeMethod* method)
|
|
{
|
|
return (( RuntimeObject* (*) (RenderGraph_t73ECE03B3CA3D0D17F1448D64AE020E81592AA1E*, String_t*, BeginXRPassData_t34405E999FE849E4AAE7FBA7EE4CF3A4CFD51F01**, ProfilingSampler_t420D4672EDB44E0EF980B31ADFD9E5747200FECE*, String_t*, int32_t, const RuntimeMethod*))RenderGraph_AddRasterRenderPass_TisRuntimeObject_mC67DBCDAE9E5C0D6FA1406B1CD4EA8A1F9244044_gshared)(__this, ___0_passName, ___1_passData, ___2_sampler, ___3_file, ___4_line, method);
|
|
}
|
|
inline void BaseRenderFunc_2__ctor_mC7C29FAF2A401ED7E08FC5C843E3394A047BFC89 (BaseRenderFunc_2_t762A186FC860B473359C6CA1DE69EDCFB3985B45* __this, RuntimeObject* ___0_object, intptr_t ___1_method, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (BaseRenderFunc_2_t762A186FC860B473359C6CA1DE69EDCFB3985B45*, RuntimeObject*, intptr_t, const RuntimeMethod*))BaseRenderFunc_2__ctor_m72268C37DF7D310181ABEF09D65817B1108D843E_gshared)(__this, ___0_object, ___1_method, method);
|
|
}
|
|
inline RuntimeObject* RenderGraph_AddRasterRenderPass_TisEndXRPassData_t8FA62D64F60C5147588ACD22BC3136BF31D5A25A_m5917DD5E7449922C9FFECDC188C669EB7F700B65 (RenderGraph_t73ECE03B3CA3D0D17F1448D64AE020E81592AA1E* __this, String_t* ___0_passName, EndXRPassData_t8FA62D64F60C5147588ACD22BC3136BF31D5A25A** ___1_passData, ProfilingSampler_t420D4672EDB44E0EF980B31ADFD9E5747200FECE* ___2_sampler, String_t* ___3_file, int32_t ___4_line, const RuntimeMethod* method)
|
|
{
|
|
return (( RuntimeObject* (*) (RenderGraph_t73ECE03B3CA3D0D17F1448D64AE020E81592AA1E*, String_t*, EndXRPassData_t8FA62D64F60C5147588ACD22BC3136BF31D5A25A**, ProfilingSampler_t420D4672EDB44E0EF980B31ADFD9E5747200FECE*, String_t*, int32_t, const RuntimeMethod*))RenderGraph_AddRasterRenderPass_TisRuntimeObject_mC67DBCDAE9E5C0D6FA1406B1CD4EA8A1F9244044_gshared)(__this, ___0_passName, ___1_passData, ___2_sampler, ___3_file, ___4_line, method);
|
|
}
|
|
inline void BaseRenderFunc_2__ctor_m2B1722A731EE8CAEF516B3F8F64DBC8ED438FB98 (BaseRenderFunc_2_tF8B0FC77C310265D6F0EA096E14C24E57D0FEAD6* __this, RuntimeObject* ___0_object, intptr_t ___1_method, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (BaseRenderFunc_2_tF8B0FC77C310265D6F0EA096E14C24E57D0FEAD6*, RuntimeObject*, intptr_t, const RuntimeMethod*))BaseRenderFunc_2__ctor_m72268C37DF7D310181ABEF09D65817B1108D843E_gshared)(__this, ___0_object, ___1_method, method);
|
|
}
|
|
inline RuntimeObject* RenderGraph_AddUnsafePass_TisDummyData_t0F37F8F2F4E1851082C4B35762C12D62971E203F_m7B296C57DF5E9B5C70BF2BA1BC818CFFAD480146 (RenderGraph_t73ECE03B3CA3D0D17F1448D64AE020E81592AA1E* __this, String_t* ___0_passName, DummyData_t0F37F8F2F4E1851082C4B35762C12D62971E203F** ___1_passData, ProfilingSampler_t420D4672EDB44E0EF980B31ADFD9E5747200FECE* ___2_sampler, String_t* ___3_file, int32_t ___4_line, const RuntimeMethod* method)
|
|
{
|
|
return (( RuntimeObject* (*) (RenderGraph_t73ECE03B3CA3D0D17F1448D64AE020E81592AA1E*, String_t*, DummyData_t0F37F8F2F4E1851082C4B35762C12D62971E203F**, ProfilingSampler_t420D4672EDB44E0EF980B31ADFD9E5747200FECE*, String_t*, int32_t, const RuntimeMethod*))RenderGraph_AddUnsafePass_TisRuntimeObject_m22ED403D4C84145926A27918AB261A49E25F3206_gshared)(__this, ___0_passName, ___1_passData, ___2_sampler, ___3_file, ___4_line, method);
|
|
}
|
|
inline void BaseRenderFunc_2__ctor_m031C0A7A670EBF4FFB64EAB9165F5407C2C38E91 (BaseRenderFunc_2_tECA37CC68AF2BD6C31F2DFF58EF746DC7B2C5AFE* __this, RuntimeObject* ___0_object, intptr_t ___1_method, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (BaseRenderFunc_2_tECA37CC68AF2BD6C31F2DFF58EF746DC7B2C5AFE*, RuntimeObject*, intptr_t, const RuntimeMethod*))BaseRenderFunc_2__ctor_mDC58545FDE0ACE8DDA93E3C3AF0D636A40E65081_gshared)(__this, ___0_object, ___1_method, method);
|
|
}
|
|
inline ProfilingSampler_t420D4672EDB44E0EF980B31ADFD9E5747200FECE* ProfilingSampler_Get_TisURPProfileId_tA83520239B6C0F10A73CCC6CEC7D3DA1F1932481_m9F3104BDEBD70A287E8F4BAC86579564A19A5661 (int32_t ___0_marker, const RuntimeMethod* method)
|
|
{
|
|
return (( ProfilingSampler_t420D4672EDB44E0EF980B31ADFD9E5747200FECE* (*) (int32_t, const RuntimeMethod*))ProfilingSampler_Get_TisInt32Enum_tCBAC8BA2BFF3A845FA599F303093BBBA374B6F0C_m8A88D1A0EBDE48471A988A3C0B292D7E590709B2_gshared)(___0_marker, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ScriptableRenderer_SortStable_m5266EFB9F8D83E6ABFF9D788588E5050FC3503B3 (List_1_t2E485E650BF1E41358CE56A69323E183C5A89CB6* ___0_list, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ScriptableRenderer_InitRenderGraphFrame_m75834DCCB3CED56C4538CAA7D6B9E4756E6BF9C0 (ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892* __this, RenderGraph_t73ECE03B3CA3D0D17F1448D64AE020E81592AA1E* ___0_renderGraph, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ScriptableRenderer_InternalFinishRenderingCommon_mFE9C1F42371A0829FB616D7F3518712724E71F03 (ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892* __this, CommandBuffer_tB56007DC84EF56296C325EC32DD12AC1E3DC91F7* ___0_cmd, bool ___1_resolveFinalTarget, const RuntimeMethod* method) ;
|
|
inline Enumerator_t217065C53B57E784E09AB2704818CE6F68D07625 List_1_GetEnumerator_m82EFB25742BBF4B896DD9DCB9BED813145B9F14E (List_1_t2E485E650BF1E41358CE56A69323E183C5A89CB6* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( Enumerator_t217065C53B57E784E09AB2704818CE6F68D07625 (*) (List_1_t2E485E650BF1E41358CE56A69323E183C5A89CB6*, const RuntimeMethod*))List_1_GetEnumerator_mD8294A7FA2BEB1929487127D476F8EC1CDC23BFC_gshared)(__this, method);
|
|
}
|
|
inline void Enumerator_Dispose_m334C7EB9FBAEA8BC87ECC95C2C0D322E498B6699 (Enumerator_t217065C53B57E784E09AB2704818CE6F68D07625* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Enumerator_t217065C53B57E784E09AB2704818CE6F68D07625*, const RuntimeMethod*))Enumerator_Dispose_mD9DC3E3C3697830A4823047AB29A77DBBB5ED419_gshared)(__this, method);
|
|
}
|
|
inline ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* Enumerator_get_Current_m9F173585FAD931312EF7F684265C41C5747AD600_inline (Enumerator_t217065C53B57E784E09AB2704818CE6F68D07625* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* (*) (Enumerator_t217065C53B57E784E09AB2704818CE6F68D07625*, const RuntimeMethod*))Enumerator_get_Current_m6330F15D18EE4F547C05DF9BF83C5EB710376027_gshared_inline)(__this, method);
|
|
}
|
|
inline bool Enumerator_MoveNext_m29C44877AE440B7C67CDFC9AF883993C67C51115 (Enumerator_t217065C53B57E784E09AB2704818CE6F68D07625* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( bool (*) (Enumerator_t217065C53B57E784E09AB2704818CE6F68D07625*, const RuntimeMethod*))Enumerator_MoveNext_mE921CC8F29FBBDE7CC3209A0ED0D921D58D00BCB_gshared)(__this, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ScriptableRenderPass_GetRenderPassEventRange_mF12257DB57D18DF179F2581C18A85E68997CB1E9 (int32_t ___0_renderPassEvent, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t Math_Clamp_mAB687477D3AAC0E7243D724F45626026980CE2FF_inline (int32_t ___0_value, int32_t ___1_min, int32_t ___2_max, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ScriptableRenderer_RecordCustomRenderGraphPassesInEventRange_m33A833837BC676068A0FC66E0FB6E20B5401EC6A (ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892* __this, RenderGraph_t73ECE03B3CA3D0D17F1448D64AE020E81592AA1E* ___0_renderGraph, int32_t ___1_eventStart, int32_t ___2_eventEnd, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ScriptableRenderer_RecordCustomRenderGraphPasses_mC0B3716CDF203EAECD6665C1A87083AD1A139B8E (ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892* __this, RenderGraph_t73ECE03B3CA3D0D17F1448D64AE020E81592AA1E* ___0_renderGraph, int32_t ___1_startInjectionPoint, int32_t ___2_endInjectionPoint, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ScriptableRenderContext_SetupCameraProperties_mF45D617B34789AD064BF375CF50C854EAA20E4E8 (ScriptableRenderContext_t5AB09B3602BEB456E0DC3D53926D3A3BDAF08E36* __this, Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184* ___0_camera, bool ___1_stereoSetup, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ScriptableRenderer_SetPerCameraShaderVariables_mB52055FC973AD3E42659F6C6FA1BD1EA20272630 (ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892* __this, RasterCommandBuffer_t4300C4F080EA3CF43C7ACFDBD4F94EA633FE98E8* ___0_cmd, UniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7* ___1_cameraData, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ScriptableRenderer_SetPerCameraClippingPlaneProperties_mCC96BE703D17EBBC2E5E54D60AECE0C16F0303C2 (ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892* __this, RasterCommandBuffer_t4300C4F080EA3CF43C7ACFDBD4F94EA633FE98E8* ___0_cmd, UniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7* ___1_cameraData, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ScriptableRenderer_SetPerCameraBillboardProperties_m69C48E7A4F33AA5EA6BAA072A5924FCD2A0C4DB7 (ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892* __this, RasterCommandBuffer_t4300C4F080EA3CF43C7ACFDBD4F94EA633FE98E8* ___0_cmd, UniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7* ___1_cameraData, const RuntimeMethod* method) ;
|
|
inline UniversalRenderPipelineDebugDisplaySettings_t8E70DD217918DB0E7BD8BCCD9958C3E781DE0653* DebugDisplaySettings_1_get_Instance_m6C56D7F9230F1B79878679208F04EE70F413D93B (const RuntimeMethod* method)
|
|
{
|
|
return (( UniversalRenderPipelineDebugDisplaySettings_t8E70DD217918DB0E7BD8BCCD9958C3E781DE0653* (*) (const RuntimeMethod*))DebugDisplaySettings_1_get_Instance_mA88D31ED7AE6F7ABDCEC4B0F92FA19DB4938B189_gshared)(method);
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR DebugDisplaySettingsRendering_t0112AECF41E04E8EB029F3B2C769BB05A72D50F3* UniversalRenderPipelineDebugDisplaySettings_get_renderingSettings_m97737CDDE93484CC032281F18A59EB5D0CB7DCC6_inline (UniversalRenderPipelineDebugDisplaySettings_t8E70DD217918DB0E7BD8BCCD9958C3E781DE0653* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t DebugDisplaySettingsRendering_get_sceneOverrideMode_m4D5732DD1FD1413E5802B83A60BF22B06E96BB01_inline (DebugDisplaySettingsRendering_t0112AECF41E04E8EB029F3B2C769BB05A72D50F3* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool CameraData_get_isPreviewCamera_m6959141510B1D0D136D23D392C6C2076655E75C3 (CameraData_tC27AE109CD20677486A4AC19C0CF014AE0F50C3E* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ScriptableRenderer_SetupRenderPasses_m472967159C7CCC9163CC7E63090C5342CEF8AACA (ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892* __this, RenderingData_tAAA01190551D6D5954314E3E1E85B58DD45EED71* ___0_renderingData, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XRPass_tFC4577E97B88E0EAAAB2EB387AB3A92E9EB9C6DF* CameraData_get_xr_m5E9EFE56E6BABFF14ADC71E87D5A19BA7CDDF697 (CameraData_tC27AE109CD20677486A4AC19C0CF014AE0F50C3E* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ProfilingSampler_t420D4672EDB44E0EF980B31ADFD9E5747200FECE* ScriptableRenderer_get_profilingExecute_mE442262D579FC9D8AE14055A8E47E06DCB555046_inline (ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ScriptableRenderer_InternalStartRendering_m98626DB2266D35368E0F6F0F94CBBCAEB00E24D1 (ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892* __this, ScriptableRenderContext_t5AB09B3602BEB456E0DC3D53926D3A3BDAF08E36 ___0_context, RenderingData_tAAA01190551D6D5954314E3E1E85B58DD45EED71* ___1_renderingData, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float Time_get_time_m3A271BB1B20041144AC5B7863B71AB1F0150374B (const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float Time_get_deltaTime_mC3195000401F0FD167DD2F948FD2BC58330D0865 (const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float Time_get_smoothDeltaTime_m41881A3290CC95E6EF2D55289D1D872A45DC1775 (const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ScriptableRenderer_ClearRenderingState_m06E468421AC0F8FB6BCBD817B0418354B715D784 (RuntimeObject* ___0_cmd, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ScriptableRenderer_SetShaderTimeValues_mCB3E5C8B57B74BBBDD10FBC97067DCEB543D9B81 (RuntimeObject* ___0_cmd, float ___1_time, float ___2_deltaTime, float ___3_smoothDeltaTime, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR List_1_t2E485E650BF1E41358CE56A69323E183C5A89CB6* ScriptableRenderer_get_activeRenderPassQueue_m3DA13EE251E757FC42DAE103A487C3F1562A850F_inline (ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ScriptableRenderer_SetupNativeRenderPassFrameData_m7900DE2C595DDB465564A410595B3CDAA13CAF51 (ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892* __this, UniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7* ___0_cameraData, bool ___1_isRenderPassEnabled, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RenderBlocks__ctor_mCCE8BE592EEDC76187D546AC1E8DE0F0552FA3D1 (RenderBlocks_t59A6A04E57D947104DA8D449CCB1D406F19DB072* __this, List_1_t2E485E650BF1E41358CE56A69323E183C5A89CB6* ___0_activeRenderPassQueue, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RenderBlocks_Dispose_mC14FC55238E6E70D0C2C051A5856F34F89637FAB (RenderBlocks_t59A6A04E57D947104DA8D449CCB1D406F19DB072* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t RenderBlocks_GetLength_m12132BA6300EB4AD9FD8355944BB2D5184DEB804 (RenderBlocks_t59A6A04E57D947104DA8D449CCB1D406F19DB072* __this, int32_t ___0_index, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ScriptableRenderer_ExecuteBlock_m69578F593D05E9EE71E13C98C822158D03193E1D (ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892* __this, int32_t ___0_blockIndex, RenderBlocks_t59A6A04E57D947104DA8D449CCB1D406F19DB072* ___1_renderBlocks, ScriptableRenderContext_t5AB09B3602BEB456E0DC3D53926D3A3BDAF08E36 ___2_context, RenderingData_tAAA01190551D6D5954314E3E1E85B58DD45EED71* ___3_renderingData, bool ___4_submit, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ScriptableRenderer_SetPerCameraProperties_m5488703BD4F0541BD829D86DD1FE2CB1FD6ABC38 (ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892* __this, ScriptableRenderContext_t5AB09B3602BEB456E0DC3D53926D3A3BDAF08E36 ___0_context, UniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7* ___1_cameraData, Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184* ___2_camera, CommandBuffer_tB56007DC84EF56296C325EC32DD12AC1E3DC91F7* ___3_cmd, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ScriptableRenderer_BeginXRRendering_mF14D004085962304083771577669004E4586123F (ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892* __this, CommandBuffer_tB56007DC84EF56296C325EC32DD12AC1E3DC91F7* ___0_cmd, ScriptableRenderContext_t5AB09B3602BEB456E0DC3D53926D3A3BDAF08E36 ___1_context, CameraData_tC27AE109CD20677486A4AC19C0CF014AE0F50C3E* ___2_cameraData, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XRPassUniversal_set_canMarkLateLatch_m55FD53B9F8BE99FF85F7CA356D608F042A55906F_inline (XRPassUniversal_t8D4B40107F5DBC12D39470D87D108D3D2A8FB8D1* __this, bool ___0_value, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ScriptableRenderer_EndXRRendering_m270391BCE0300166C04B6B65E7CFC566AC621C92 (ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892* __this, CommandBuffer_tB56007DC84EF56296C325EC32DD12AC1E3DC91F7* ___0_cmd, ScriptableRenderContext_t5AB09B3602BEB456E0DC3D53926D3A3BDAF08E36 ___1_context, CameraData_tC27AE109CD20677486A4AC19C0CF014AE0F50C3E* ___2_cameraData, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ScriptableRenderer_InternalFinishRenderingExecute_mC02B872221DD717D47492BAB36FF5C2ADB16D768 (ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892* __this, ScriptableRenderContext_t5AB09B3602BEB456E0DC3D53926D3A3BDAF08E36 ___0_context, CommandBuffer_tB56007DC84EF56296C325EC32DD12AC1E3DC91F7* ___1_cmd, bool ___2_resolveFinalTarget, const RuntimeMethod* method) ;
|
|
inline void List_1_Add_m1F8C9721FD4046BBA405A578E144F7856809A878_inline (List_1_t2E485E650BF1E41358CE56A69323E183C5A89CB6* __this, ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* ___0_item, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (List_1_t2E485E650BF1E41358CE56A69323E183C5A89CB6*, ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0*, const RuntimeMethod*))List_1_Add_mEBCF994CC3814631017F46A387B1A192ED6C85C7_gshared_inline)(__this, ___0_item, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ScriptableRenderer_GetCameraClearFlag_m4B266C72886FD41512F25AF2EF1939AB275B3F3A (UniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7* ___0_cameraData, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Camera_get_clearFlags_mA74F538C124B391EF03C46A50CA7FF7B505B7602 (Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DebugHandler_get_IsScreenClearNeeded_m4DA090FCE3573491D7A885AE93051F554C87C496 (DebugHandler_t3A09E2CFD1CA6F5C192968A6FF19EE4863F44DA4* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Material_t18053F08F347D0DCA5E1140EC7EC4533DD8A14E3* RenderSettings_get_skybox_m1738CCDBAFAA20797D174DB97066440B10FBCE6F (const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Camera_set_backgroundColor_m036FD8C316A93A0B168ACC89AFF16D396B872138 (Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184* __this, Color_tD001788D726C3A7F1379BEED0260B9591F440C1F ___0_value, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool ScriptableRendererFeature_get_isActive_m3A636889F4504C471F26F735F682472FD9B31178_inline (ScriptableRendererFeature_tF2ED08AD2498105378D4DAB0386A0F8A144EF4C6* __this, const RuntimeMethod* method) ;
|
|
inline void List_1_RemoveAt_m901167C6F189A4D02B21F1A9CE238CDDCFF769CB (List_1_t2E485E650BF1E41358CE56A69323E183C5A89CB6* __this, int32_t ___0_index, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (List_1_t2E485E650BF1E41358CE56A69323E183C5A89CB6*, int32_t, const RuntimeMethod*))List_1_RemoveAt_m54F62297ADEE4D4FDA697F49ED807BF901201B54_gshared)(__this, ___0_index, method);
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3 Vector4_get_zero_m3D61F5FA9483CD9C08977D9D8852FB448B4CE6D1_inline (const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RenderTargetIdentifier_tA528663AC6EB3911D8E91AA40F7070FA5455442B RenderTargetIdentifier_op_Implicit_m5D9E7FF7B325608E3C4A37BBB52FE728361E7324 (int32_t ___0_nameID, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR BlockRange_tA1B8F0F361ACE9052C36ADAD020F52FB749A7F91 RenderBlocks_GetRange_mBCDFF558A7FB92CB0F23A681AE14BC9029DA75A6 (RenderBlocks_t59A6A04E57D947104DA8D449CCB1D406F19DB072* __this, int32_t ___0_index, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR BlockRange_tA1B8F0F361ACE9052C36ADAD020F52FB749A7F91 BlockRange_GetEnumerator_m5ABDD60561E6FE77794F49D9DAEBFCCA368375B0 (BlockRange_tA1B8F0F361ACE9052C36ADAD020F52FB749A7F91* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BlockRange_Dispose_mF58CD9DF9B97A3048311E9DEBC5D72B8242BB4B0 (BlockRange_tA1B8F0F361ACE9052C36ADAD020F52FB749A7F91* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t BlockRange_get_Current_mAE0444A8F3C9E0E6999B59148E9C87F6055133F8_inline (BlockRange_tA1B8F0F361ACE9052C36ADAD020F52FB749A7F91* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ScriptableRenderer_ExecuteRenderPass_m8ED5438C607B9133B7BC63EC52E4AA4155A7C77C (ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892* __this, ScriptableRenderContext_t5AB09B3602BEB456E0DC3D53926D3A3BDAF08E36 ___0_context, ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* ___1_renderPass, UniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7* ___2_cameraData, RenderingData_tAAA01190551D6D5954314E3E1E85B58DD45EED71* ___3_renderingData, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool BlockRange_MoveNext_m7428499A41DAC2364322F5D077F7016AFB2A1958 (BlockRange_tA1B8F0F361ACE9052C36ADAD020F52FB749A7F91* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ScriptableRenderContext_Submit_mF417223097ECEB2768EE736BE00A7F94DA3BDD26 (ScriptableRenderContext_t5AB09B3602BEB456E0DC3D53926D3A3BDAF08E36* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool ScriptableRenderPass_get_useNativeRenderPass_mB8008DC999D63A3EDBD066CF07F7A4824812E4E9_inline (ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XRPass_get_supportsFoveatedRendering_mC6E13A1C877BBEE86D48AEEA9A552074C2452B73 (XRPass_tFC4577E97B88E0EAAAB2EB387AB3A92E9EB9C6DF* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t XRSystem_get_foveatedRenderingCaps_m2B4B6BD6E1BFD298DD8A66DB2294FA27A0F6F989_inline (const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CommandBuffer_SetFoveatedRenderingMode_mEB94470BC91694B62B28AC5EE1383DA636D3B43B (CommandBuffer_tB56007DC84EF56296C325EC32DD12AC1E3DC91F7* __this, int32_t ___0_foveatedRenderingMode, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ScriptableRenderer_SetRenderPassAttachments_mC031A44CE876ED59BBD8E25A4984FFF280303808 (ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892* __this, CommandBuffer_tB56007DC84EF56296C325EC32DD12AC1E3DC91F7* ___0_cmd, ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* ___1_renderPass, UniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7* ___2_cameraData, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool UniversalCameraData_get_isRenderPassSupportedCamera_m540F7A822ED64400F9E4E7CA6EEAE4EEAEC81671 (UniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ScriptableRenderer_ExecuteNativeRenderPass_m5F62A02F11AAA72F04BCC35B720D54A8350B789B (ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892* __this, ScriptableRenderContext_t5AB09B3602BEB456E0DC3D53926D3A3BDAF08E36 ___0_context, ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* ___1_renderPass, UniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7* ___2_cameraData, RenderingData_tAAA01190551D6D5954314E3E1E85B58DD45EED71* ___3_renderingData, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRSystemUniversal_UnmarkShaderProperties_m4F679B22E1DB22851FC6B7D76BC832A642AE0F81 (RasterCommandBuffer_t4300C4F080EA3CF43C7ACFDBD4F94EA633FE98E8* ___0_cmd, XRPassUniversal_t8D4B40107F5DBC12D39470D87D108D3D2A8FB8D1* ___1_xrPass, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool RenderingUtils_IsMRT_mC605B9CE9E4DB69B0F585C4653BFE4E34274F7A9 (RTHandleU5BU5D_tE4B403B060D159B839BF74E8B59F8DCD52CF97DF* ___0_colorBuffers, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t RenderingUtils_IndexOf_m5AA241D67F3867F8434D658F4F30B52E2475410F (RTHandleU5BU5D_tE4B403B060D159B839BF74E8B59F8DCD52CF97DF* ___0_source, RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B* ___1_value, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Color_op_Inequality_mF1C733BA10E60B086AB950A71143678AE76C4D92_inline (Color_tD001788D726C3A7F1379BEED0260B9591F440C1F ___0_lhs, Color_tD001788D726C3A7F1379BEED0260B9591F440C1F ___1_rhs, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ScriptableRenderer_SetRenderTarget_mA8C80A941EC4D76318A688D1E571561E2CCA5FC0 (CommandBuffer_tB56007DC84EF56296C325EC32DD12AC1E3DC91F7* ___0_cmd, RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B* ___1_colorAttachment, RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B* ___2_depthAttachment, int32_t ___3_clearFlag, Color_tD001788D726C3A7F1379BEED0260B9591F440C1F ___4_clearColor, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t RenderingUtils_CountDistinct_m1269F77CC5C9A3CA9304A44F060851C1C249C4EA (RTHandleU5BU5D_tE4B403B060D159B839BF74E8B59F8DCD52CF97DF* ___0_source, RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B* ___1_value, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ScriptableRenderer_SetRenderTarget_mFC51724D0976261B84FA758B2174DC3DCE700F61 (CommandBuffer_tB56007DC84EF56296C325EC32DD12AC1E3DC91F7* ___0_cmd, RTHandleU5BU5D_tE4B403B060D159B839BF74E8B59F8DCD52CF97DF* ___1_colorAttachments, RenderTargetIdentifierU5BU5D_t179798C153B7CE381B41C57863F98CB24023C4CE* ___2_colorAttachmentIDs, RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B* ___3_depthAttachment, int32_t ___4_clearFlag, Color_tD001788D726C3A7F1379BEED0260B9591F440C1F ___5_clearColor, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ScriptableRenderer_SetNativeRenderPassMRTAttachmentList_m4B6A8C3E5D06EC581872993BA511A45029CD7815 (ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892* __this, ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* ___0_renderPass, UniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7* ___1_cameraData, bool ___2_needCustomCameraColorClear, int32_t ___3_cameraClearFlag, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool RenderingUtils_SequenceEqual_mD8283931D9CBDAC24BDAEF1072772ADECCD05084 (RTHandleU5BU5D_tE4B403B060D159B839BF74E8B59F8DCD52CF97DF* ___0_left, RTHandleU5BU5D_tE4B403B060D159B839BF74E8B59F8DCD52CF97DF* ___1_right, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t RenderingUtils_LastValid_mEA68E4FAD36AB41849720265A828472CE9B5DAFB (RTHandleU5BU5D_tE4B403B060D159B839BF74E8B59F8DCD52CF97DF* ___0_source, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RenderTargetIdentifier_tA528663AC6EB3911D8E91AA40F7070FA5455442B XRPass_get_renderTarget_m4183955FBAB06A0CD30DAAC60DFC51AD18466F48_inline (XRPass_tFC4577E97B88E0EAAAB2EB387AB3A92E9EB9C6DF* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t RenderingUtils_IndexOf_m8DD01B5A2F64BE94C1771EE5905FCB4332EFE2CB (RTHandleU5BU5D_tE4B403B060D159B839BF74E8B59F8DCD52CF97DF* ___0_source, RenderTargetIdentifier_tA528663AC6EB3911D8E91AA40F7070FA5455442B ___1_value, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool SystemInfo_get_usesLoadStoreActions_m66E53BB7F2F2750E9607057718B720FFB59291B6 (const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ScriptableRenderer_IsSceneFilteringEnabled_m177DE9C0DEEB440C7DC82C3431930EB2C6FE489D (ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892* __this, Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184* ___0_camera, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DebugHandler_TryGetScreenClearColor_m619E4FB0A12C3D326CC27F2088D4F4E454BC5C46 (DebugHandler_t3A09E2CFD1CA6F5C192968A6FF19EE4863F44DA4* __this, Color_tD001788D726C3A7F1379BEED0260B9591F440C1F* ___0_color, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ScriptableRenderer_SetNativeRenderPassAttachmentList_mA63C41DE0D22482BB9FC708CDE911E8171356B27 (ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892* __this, ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* ___0_renderPass, UniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7* ___1_cameraData, RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B* ___2_passColorAttachment, RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B* ___3_passDepthAttachment, int32_t ___4_finalClearFlag, Color_tD001788D726C3A7F1379BEED0260B9591F440C1F ___5_finalClearColor, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ScriptableRenderer_SetRenderTarget_m6A0935746EE31A98A2BEB866052B9A1F6302E123 (CommandBuffer_tB56007DC84EF56296C325EC32DD12AC1E3DC91F7* ___0_cmd, RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B* ___1_colorAttachment, RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B* ___2_depthAttachment, int32_t ___3_clearFlag, Color_tD001788D726C3A7F1379BEED0260B9591F440C1F ___4_clearColor, int32_t ___5_colorStoreAction, int32_t ___6_depthStoreAction, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XRPassUniversal_t8D4B40107F5DBC12D39470D87D108D3D2A8FB8D1* CameraData_get_xrUniversal_m2D8CD187845B0A130FE01C8045F4A709ABA87364 (CameraData_tC27AE109CD20677486A4AC19C0CF014AE0F50C3E* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool XRPassUniversal_get_isLateLatchEnabled_mCFAAB2099E57226FDD74EC51E16DE26E3B7777A3_inline (XRPassUniversal_t8D4B40107F5DBC12D39470D87D108D3D2A8FB8D1* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRPass_StartSinglePass_mEAB8D0365AE942CBE93BFB0DAC39E8D04ACE9F9E (XRPass_tFC4577E97B88E0EAAAB2EB387AB3A92E9EB9C6DF* __this, CommandBuffer_tB56007DC84EF56296C325EC32DD12AC1E3DC91F7* ___0_cmd, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR intptr_t XRPass_get_foveatedRenderingInfo_m6F0E2EFEFFF40F47ABD3602D125C40E7CFBDE39B_inline (XRPass_tFC4577E97B88E0EAAAB2EB387AB3A92E9EB9C6DF* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CommandBuffer_ConfigureFoveatedRendering_mCA5453D2455474AD65FBE7DC301D8C4D52308F47 (CommandBuffer_tB56007DC84EF56296C325EC32DD12AC1E3DC91F7* __this, intptr_t ___0_platformData, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRPass_StopSinglePass_m960F285B09F60B90BD27844AFA5069E24189C336 (XRPass_tFC4577E97B88E0EAAAB2EB387AB3A92E9EB9C6DF* __this, CommandBuffer_tB56007DC84EF56296C325EC32DD12AC1E3DC91F7* ___0_cmd, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ScriptableRenderer_SetRenderTarget_m40F88F3A4D8A461F95BF79E2D8BA10F2E1D277FC (CommandBuffer_tB56007DC84EF56296C325EC32DD12AC1E3DC91F7* ___0_cmd, RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B* ___1_colorAttachment, int32_t ___2_colorLoadAction, int32_t ___3_colorStoreAction, RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B* ___4_depthAttachment, int32_t ___5_depthLoadAction, int32_t ___6_depthStoreAction, int32_t ___7_clearFlags, Color_tD001788D726C3A7F1379BEED0260B9591F440C1F ___8_clearColor, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CoreUtils_SetRenderTarget_m838FAF1D1208455517D825BB6BB036FC3F5FC0B6 (CommandBuffer_tB56007DC84EF56296C325EC32DD12AC1E3DC91F7* ___0_cmd, RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B* ___1_colorBuffer, int32_t ___2_colorLoadAction, int32_t ___3_colorStoreAction, RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B* ___4_depthBuffer, int32_t ___5_depthLoadAction, int32_t ___6_depthStoreAction, int32_t ___7_clearFlag, Color_tD001788D726C3A7F1379BEED0260B9591F440C1F ___8_clearColor, int32_t ___9_miplevel, int32_t ___10_cubemapFace, int32_t ___11_depthSlice, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CoreUtils_SetRenderTarget_mCC0E54E14524A8EF107392DC2C57414535C6550B (CommandBuffer_tB56007DC84EF56296C325EC32DD12AC1E3DC91F7* ___0_cmd, RenderTargetIdentifierU5BU5D_t179798C153B7CE381B41C57863F98CB24023C4CE* ___1_colorBuffers, RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B* ___2_depthBuffer, int32_t ___3_clearFlag, Color_tD001788D726C3A7F1379BEED0260B9591F440C1F ___4_clearColor, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ScriptableRenderContext_DrawWireOverlay_m5FBA5BFEF35D1499E023EFFF04D07B98CB05FDE8 (ScriptableRenderContext_t5AB09B3602BEB456E0DC3D53926D3A3BDAF08E36* __this, Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184* ___0_camera, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool SystemInfo_get_supportsMultisampledBackBuffer_mF41BBAB52D5EFC925D4651F07DE1F74AD2BA71F7 (const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool UniversalRenderPipeline_get_canOptimizeScreenMSAASamples_mCC0EEDA2FBA9A3A609B5333AD144C75DDE84B695_inline (const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Screen_get_msaaSamples_m3DD469BD1B150F0EF5B96BA0B1BA990DB38F3DD4 (const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Screen_SetMSAASamples_m03CA1BD4B08DE6D6A67D69C232D5DF1174274744 (int32_t ___0_numSamples, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Application_get_platform_m59EF7D6155D18891B24767F83F388160B1FF2138 (const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t Mathf_Max_m7FA442918DE37E3A00106D1F2E789D65829792B8_inline (int32_t ___0_a, int32_t ___1_b, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t UniversalRenderPipeline_get_startFrameScreenMSAASamples_m792250C7C4608F91083A8C270ECEA9C67CE7E041_inline (const RuntimeMethod* method) ;
|
|
inline void List_1_set_Item_m87B2E8BC263F70F16FEADB6B4278F1DD9A6765FF (List_1_t2E485E650BF1E41358CE56A69323E183C5A89CB6* __this, int32_t ___0_index, ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* ___1_value, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (List_1_t2E485E650BF1E41358CE56A69323E183C5A89CB6*, int32_t, ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0*, const RuntimeMethod*))List_1_set_Item_m3C58DBC69A321AF2826595584FF3E9F43C07EA56_gshared)(__this, ___0_index, ___1_value, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ScriptableRenderPass_op_LessThan_m966D3E63781FD503FE98E73D49902B67294BA1C4 (ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* ___0_lhs, ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* ___1_rhs, const RuntimeMethod* method) ;
|
|
inline RenderTargetIdentifierU5BU5D_t179798C153B7CE381B41C57863F98CB24023C4CE* Array_Empty_TisRenderTargetIdentifier_tA528663AC6EB3911D8E91AA40F7070FA5455442B_mE9CB7004FB24F2FE6566E734B9132170794E41F6_inline (const RuntimeMethod* method)
|
|
{
|
|
return (( RenderTargetIdentifierU5BU5D_t179798C153B7CE381B41C57863F98CB24023C4CE* (*) (const RuntimeMethod*))Array_Empty_TisRenderTargetIdentifier_tA528663AC6EB3911D8E91AA40F7070FA5455442B_mE9CB7004FB24F2FE6566E734B9132170794E41F6_gshared_inline)(method);
|
|
}
|
|
inline RTHandleU5BU5D_tE4B403B060D159B839BF74E8B59F8DCD52CF97DF* Array_Empty_TisRTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B_mA62B3EA5D88F1E070CBD70F23D82135AC2E111F9_inline (const RuntimeMethod* method)
|
|
{
|
|
return (( RTHandleU5BU5D_tE4B403B060D159B839BF74E8B59F8DCD52CF97DF* (*) (const RuntimeMethod*))Array_Empty_TisRuntimeObject_mFB8A63D602BB6974D31E20300D9EB89C6FE7C278_gshared_inline)(method);
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Vector2_op_Equality_m6F2E069A50E787D131261E5CB25FC9E03F95B5E1_inline (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___0_lhs, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___1_rhs, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Vector3_op_Equality_mCDCBB8D2EDC3D3BF20F31A25ACB34705D352B479_inline (Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___0_lhs, Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___1_rhs, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Single_IsNaN_mFE637F6ECA9F7697CE8EFF56427858F4C5EDF75D_inline (float ___0_f, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float math_max_m4B454A91AE8827997609E74C4C24036BBD3CC496_inline (float ___0_x, float ___1_y, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float math_lengthsq_m246AAF09A2EA30D8FE4314442E031D9B5AFF31FF_inline (float4_t89D9A294E7A79BD81BFBDD18654508532958555E ___0_x, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float3_t4AB5D88249ADB24F69FFD0793E8ED25E1CC3745E float3_op_Subtraction_mB6036E9849D95650D6E73DA0D179CD7B61E696F2_inline (float3_t4AB5D88249ADB24F69FFD0793E8ED25E1CC3745E ___0_lhs, float3_t4AB5D88249ADB24F69FFD0793E8ED25E1CC3745E ___1_rhs, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float math_lengthsq_mC699F3F214F05B26BEBAF1B46E3AA3C00407A532_inline (float3_t4AB5D88249ADB24F69FFD0793E8ED25E1CC3745E ___0_x, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float4_t89D9A294E7A79BD81BFBDD18654508532958555E float4_op_Multiply_m712573F441DA8AF0843DE2167927FB76E642B1EB_inline (float4_t89D9A294E7A79BD81BFBDD18654508532958555E ___0_lhs, float ___1_rhs, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float4x4_t7EDD16F7F57DC7F61A6302535F7C19FB97915DF2 math_float4x4_m7C95B2B93CDEE0AF483EB84446F9F06F7B1AD261_inline (float4_t89D9A294E7A79BD81BFBDD18654508532958555E ___0_c0, float4_t89D9A294E7A79BD81BFBDD18654508532958555E ___1_c1, float4_t89D9A294E7A79BD81BFBDD18654508532958555E ___2_c2, float4_t89D9A294E7A79BD81BFBDD18654508532958555E ___3_c3, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float4_t89D9A294E7A79BD81BFBDD18654508532958555E float4_get_wwww_mF04E8B99431D2717DEE58BDAE207EF4C7E1A0009_inline (float4_t89D9A294E7A79BD81BFBDD18654508532958555E* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float4_t89D9A294E7A79BD81BFBDD18654508532958555E float4_op_Multiply_m0E98338FB7DFF55B101EBCD78A8703ADB9C08667_inline (float4_t89D9A294E7A79BD81BFBDD18654508532958555E ___0_lhs, float4_t89D9A294E7A79BD81BFBDD18654508532958555E ___1_rhs, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float4_t89D9A294E7A79BD81BFBDD18654508532958555E float4_get_xyzx_m5FFC709BBF25AC7B7755AE077E4288E47089C76C_inline (float4_t89D9A294E7A79BD81BFBDD18654508532958555E* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float4_t89D9A294E7A79BD81BFBDD18654508532958555E float4_get_wwwx_m698BBD6517D0DCF19C3529E0E686FF430642E480_inline (float4_t89D9A294E7A79BD81BFBDD18654508532958555E* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float4_t89D9A294E7A79BD81BFBDD18654508532958555E float4_get_yzxy_m78C60157637373AC6CB36343778B04CAA046ADDD_inline (float4_t89D9A294E7A79BD81BFBDD18654508532958555E* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float4_t89D9A294E7A79BD81BFBDD18654508532958555E float4_get_zxyy_m4B8D0449EEB8DD3CE5A79C96E911C70617339C4E_inline (float4_t89D9A294E7A79BD81BFBDD18654508532958555E* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float4_t89D9A294E7A79BD81BFBDD18654508532958555E math_float4_m16697C284FA0C25A84F3DC3E99F3D4C306B6BFBF_inline (float ___0_x, float ___1_y, float ___2_z, float ___3_w, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float4_t89D9A294E7A79BD81BFBDD18654508532958555E float4_get_zxyz_m91C90CDA336353253B33F0407198ACCC593EBB1B_inline (float4_t89D9A294E7A79BD81BFBDD18654508532958555E* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float4_t89D9A294E7A79BD81BFBDD18654508532958555E float4_get_yzxz_mE81FC33B6A0D370B2C8DB339CC5501533BB31223_inline (float4_t89D9A294E7A79BD81BFBDD18654508532958555E* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR quaternion_tD6BCBECAF088B9EBAE2345EC8534C7A1A4C910D4 math_quaternion_m315B4CA2F8475CC33F3C73187F00AC8B64BBF939_inline (float4_t89D9A294E7A79BD81BFBDD18654508532958555E ___0_value, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float3x3_tB318DB8C7E54B6CA9E14EB9AC7F5964C1189FC79 math_float3x3_m850F2B065688B7C95009136DAA44853A04069298_inline (quaternion_tD6BCBECAF088B9EBAE2345EC8534C7A1A4C910D4 ___0_rotation, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float3_t4AB5D88249ADB24F69FFD0793E8ED25E1CC3745E float3_op_Multiply_m6E5DC552C8B0F9A180298BD9197FF47B14E0EA81_inline (float3_t4AB5D88249ADB24F69FFD0793E8ED25E1CC3745E ___0_lhs, float ___1_rhs, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float4_t89D9A294E7A79BD81BFBDD18654508532958555E math_float4_mE54104D60E6B9A358C75CB6F378118AB4914BFC4_inline (float3_t4AB5D88249ADB24F69FFD0793E8ED25E1CC3745E ___0_xyz, float ___1_w, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float math_dot_m20F2285F7227DC308D9CF2DCB8EAAD3E774501D4_inline (float4_t89D9A294E7A79BD81BFBDD18654508532958555E ___0_x, float4_t89D9A294E7A79BD81BFBDD18654508532958555E ___1_y, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float math_sqrt_mEF31DE7BD0179009683C5D7B0C58E6571B30CF4A_inline (float ___0_x, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float3_t4AB5D88249ADB24F69FFD0793E8ED25E1CC3745E math_float3_m4F96A74FEE1D6C85241B8E62386C5DE1C439837F_inline (float ___0_x, float ___1_y, float ___2_z, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR quaternion_tD6BCBECAF088B9EBAE2345EC8534C7A1A4C910D4 quaternion_EulerXYZ_m0AD608E878C0F5683DD56F636D10C75071C50E83_inline (float3_t4AB5D88249ADB24F69FFD0793E8ED25E1CC3745E ___0_xyz, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool ResourceHandle_IsValid_m20B0218FDCA98DCD069AE3BE86FEFCAEDB985B9A_inline (ResourceHandle_tD3B1FFBD59EB9C23F0A020351836F834C4BD276C* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Color__ctor_m3786F0D6E510D9CFA544523A955870BD2A514C8C_inline (Color_tD001788D726C3A7F1379BEED0260B9591F440C1F* __this, float ___0_r, float ___1_g, float ___2_b, float ___3_a, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 Vector3_Normalize_mEF8349CC39674236CFC694189AFD36E31F89AC8F_inline (Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___0_value, const RuntimeMethod* method) ;
|
|
inline void Math_ThrowMinMaxException_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_mBC7732632C280D3AEE2B08C470A78B9C5C4CBD77 (int32_t ___0_min, int32_t ___1_max, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (int32_t, int32_t, const RuntimeMethod*))Math_ThrowMinMaxException_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_mBC7732632C280D3AEE2B08C470A78B9C5C4CBD77_gshared)(___0_min, ___1_max, method);
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Color_op_Equality_mB2BDC39B0B367BA15AA8DF22F8CB0D02D20BDC71_inline (Color_tD001788D726C3A7F1379BEED0260B9591F440C1F ___0_lhs, Color_tD001788D726C3A7F1379BEED0260B9591F440C1F ___1_rhs, const RuntimeMethod* method) ;
|
|
inline void List_1_AddWithResize_m9DC0CBC6B2899B36D53FDDEC54B3367D03C0FCC7 (List_1_t4673975A297A80D4D4A65EB5A2BE3B6BD1EED9AF* __this, ShaderTagId_t453E2085B5EE9448FF75E550CAB111EFF690ECB0 ___0_item, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (List_1_t4673975A297A80D4D4A65EB5A2BE3B6BD1EED9AF*, ShaderTagId_t453E2085B5EE9448FF75E550CAB111EFF690ECB0, const RuntimeMethod*))List_1_AddWithResize_m9DC0CBC6B2899B36D53FDDEC54B3367D03C0FCC7_gshared)(__this, ___0_item, method);
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool ContextContainer_Contains_mD38FBF0FAC84169E395802CBF880BD0980490AF3_inline (ContextContainer_t384E08F63FABEFF6A7F1A753F5EF02699DAD414C* __this, uint32_t ___0_typeId, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t* Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57 (RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B ___0_handle, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162 (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* __this, String_t* ___0_message, const RuntimeMethod* method) ;
|
|
inline void List_1_AddWithResize_m2E6AC37E6A35250D5466273135CC6693D65E6FC6 (List_1_t218CEA415E5769B47AB34C68D264977822ECAD17* __this, DecalEntityItem_tE2209120E111E679725F7022B0C54DEC6783EA5D ___0_item, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (List_1_t218CEA415E5769B47AB34C68D264977822ECAD17*, DecalEntityItem_tE2209120E111E679725F7022B0C54DEC6783EA5D, const RuntimeMethod*))List_1_AddWithResize_m2E6AC37E6A35250D5466273135CC6693D65E6FC6_gshared)(__this, ___0_item, method);
|
|
}
|
|
inline void List_1_AddWithResize_m79A9BF770BEF9C06BE40D5401E55E375F2726CC4 (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* __this, RuntimeObject* ___0_item, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D*, RuntimeObject*, const RuntimeMethod*))List_1_AddWithResize_m79A9BF770BEF9C06BE40D5401E55E375F2726CC4_gshared)(__this, ___0_item, method);
|
|
}
|
|
inline void List_1_AddWithResize_mC95A72BD9417C19E5A29495887130736575B720E (List_1_t75FC6D059D696BAD77462D09FCDC98B4A7B7D3D4* __this, CombinedChunks_tCFB3356163B9F9B0E31E0B194E9B415F83340ED9 ___0_item, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (List_1_t75FC6D059D696BAD77462D09FCDC98B4A7B7D3D4*, CombinedChunks_tCFB3356163B9F9B0E31E0B194E9B415F83340ED9, const RuntimeMethod*))List_1_AddWithResize_mC95A72BD9417C19E5A29495887130736575B720E_gshared)(__this, ___0_item, method);
|
|
}
|
|
inline void List_1_AddWithResize_m378B392086AAB6F400944FA9839516326B3F7BB8 (List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* __this, int32_t ___0_item, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73*, int32_t, const RuntimeMethod*))List_1_AddWithResize_m378B392086AAB6F400944FA9839516326B3F7BB8_gshared)(__this, ___0_item, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_Clear_m50BAA3751899858B097D3FF2ED31F284703FE5CB (RuntimeArray* ___0_array, int32_t ___1_index, int32_t ___2_length, const RuntimeMethod* method) ;
|
|
inline int32_t UnsafeUtility_ReadArrayElement_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_mFBA66C06ECEB0A2BC1AAE634B6E6BB436F957084_inline (void* ___0_source, int32_t ___1_index, const RuntimeMethod* method)
|
|
{
|
|
return (( int32_t (*) (void*, int32_t, const RuntimeMethod*))UnsafeUtility_ReadArrayElement_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_mFBA66C06ECEB0A2BC1AAE634B6E6BB436F957084_gshared_inline)(___0_source, ___1_index, method);
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t BitConverter_SingleToInt32Bits_mC760C7CFC89725E3CF68DC45BE3A9A42A7E7DA73_inline (float ___0_value, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float math_dot_mE193D8880350D74CC8D63A0D53CDC5902F844AAD_inline (float3_t4AB5D88249ADB24F69FFD0793E8ED25E1CC3745E ___0_x, float3_t4AB5D88249ADB24F69FFD0793E8ED25E1CC3745E ___1_y, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void float4x4__ctor_mF0B7C823E36025A539E8024123057CAC380E97EF_inline (float4x4_t7EDD16F7F57DC7F61A6302535F7C19FB97915DF2* __this, float4_t89D9A294E7A79BD81BFBDD18654508532958555E ___0_c0, float4_t89D9A294E7A79BD81BFBDD18654508532958555E ___1_c1, float4_t89D9A294E7A79BD81BFBDD18654508532958555E ___2_c2, float4_t89D9A294E7A79BD81BFBDD18654508532958555E ___3_c3, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void quaternion__ctor_m2F6A34CCFD1150A326CB4CE108260A8BD8B1D75F_inline (quaternion_tD6BCBECAF088B9EBAE2345EC8534C7A1A4C910D4* __this, float4_t89D9A294E7A79BD81BFBDD18654508532958555E ___0_value, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void float3x3__ctor_mF94488DFF7867CFC89648E024FA89A19F23E2FAE (float3x3_tB318DB8C7E54B6CA9E14EB9AC7F5964C1189FC79* __this, quaternion_tD6BCBECAF088B9EBAE2345EC8534C7A1A4C910D4 ___0_q, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void float4__ctor_m2A21052EF06884F609D1CDA9A2C2ED84A7584345_inline (float4_t89D9A294E7A79BD81BFBDD18654508532958555E* __this, float3_t4AB5D88249ADB24F69FFD0793E8ED25E1CC3745E ___0_xyz, float ___1_w, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float3_t4AB5D88249ADB24F69FFD0793E8ED25E1CC3745E float3_op_Multiply_m38F52B61F8E5636955A1A6DF3A75BD0724148350_inline (float ___0_lhs, float3_t4AB5D88249ADB24F69FFD0793E8ED25E1CC3745E ___1_rhs, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void math_sincos_m28D7C74E99CF12DE35172DC6F26C77FD4D46D1B7_inline (float3_t4AB5D88249ADB24F69FFD0793E8ED25E1CC3745E ___0_x, float3_t4AB5D88249ADB24F69FFD0793E8ED25E1CC3745E* ___1_s, float3_t4AB5D88249ADB24F69FFD0793E8ED25E1CC3745E* ___2_c, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float3_t4AB5D88249ADB24F69FFD0793E8ED25E1CC3745E float3_get_xyz_m720A862AA512BE0B0B1089527A43EEF2B6766BEF_inline (float3_t4AB5D88249ADB24F69FFD0793E8ED25E1CC3745E* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float4_t89D9A294E7A79BD81BFBDD18654508532958555E float3_get_yxxy_mF003E86CB17AE3175090DEF37A636AD75087AF81_inline (float3_t4AB5D88249ADB24F69FFD0793E8ED25E1CC3745E* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float4_t89D9A294E7A79BD81BFBDD18654508532958555E float3_get_zzyz_m78B967EBE527FA5705C0E7B38563D1E33BB992C1_inline (float3_t4AB5D88249ADB24F69FFD0793E8ED25E1CC3745E* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float Vector3_Magnitude_m21652D951393A3D7CE92CE40049A0E7F76544D1B_inline (Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___0_vector, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 Vector3_op_Division_mCC6BB24E372AB96B8380D1678446EF6A8BAE13BB_inline (Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___0_a, float ___1_d, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 Vector3_get_zero_m0C1249C3F25B1C70EAD3CC8B31259975A457AE39_inline (const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3 Color_op_Implicit_m9B3228DAFA8DC57A75DE00CBBF13ED4F1E7B01FF_inline (Color_tD001788D726C3A7F1379BEED0260B9591F440C1F ___0_c, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Vector4_op_Equality_mCEA0E5F229F4AE8C55152F7A8F84345F24F52DC6_inline (Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3 ___0_lhs, Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3 ___1_rhs, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float3_t4AB5D88249ADB24F69FFD0793E8ED25E1CC3745E math_sin_m43618973AB0574A29896B4479E1F72A829644A33_inline (float3_t4AB5D88249ADB24F69FFD0793E8ED25E1CC3745E ___0_x, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float3_t4AB5D88249ADB24F69FFD0793E8ED25E1CC3745E math_cos_m42275E85C55A660ABC711D07B4349A82F4BBCBC4_inline (float3_t4AB5D88249ADB24F69FFD0793E8ED25E1CC3745E ___0_x, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float math_sin_m231F847C28B88B17BDAD7F49A7A38E46DF12D3FF_inline (float ___0_x, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float math_cos_m28B6228E047D552B1312CCFADB8AE95DDD94A6AF_inline (float ___0_x, const RuntimeMethod* method) ;
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// Method Definition Index: 33047
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PassData__ctor_m2B936010294B088616FF70B79E66D035E04F3D2A (PassData_t077B24D5F09604372E173ECFC9A3A66F30F8AD4C* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
|
|
return;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// Method Definition Index: 33048
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__cctor_mFD3F7218519B90BECC3FA7E1C3137DB73EDE526A (const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec_t590CD067BFDD49421D57479BC8BC6311FABEA5F1_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
U3CU3Ec_t590CD067BFDD49421D57479BC8BC6311FABEA5F1* L_0 = (U3CU3Ec_t590CD067BFDD49421D57479BC8BC6311FABEA5F1*)il2cpp_codegen_object_new(U3CU3Ec_t590CD067BFDD49421D57479BC8BC6311FABEA5F1_il2cpp_TypeInfo_var);
|
|
U3CU3Ec__ctor_mCF81DB9D13AF1CD4C36B68E902B402A89DFD1F32(L_0, NULL);
|
|
((U3CU3Ec_t590CD067BFDD49421D57479BC8BC6311FABEA5F1_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t590CD067BFDD49421D57479BC8BC6311FABEA5F1_il2cpp_TypeInfo_var))->___U3CU3E9 = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&((U3CU3Ec_t590CD067BFDD49421D57479BC8BC6311FABEA5F1_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t590CD067BFDD49421D57479BC8BC6311FABEA5F1_il2cpp_TypeInfo_var))->___U3CU3E9), (void*)L_0);
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 33049
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__ctor_mCF81DB9D13AF1CD4C36B68E902B402A89DFD1F32 (U3CU3Ec_t590CD067BFDD49421D57479BC8BC6311FABEA5F1* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 33050
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec_U3CRecordRenderGraphU3Eb__35_0_m37E5A485BAB8B000BDADC4BE194DF843AFC73EFE (U3CU3Ec_t590CD067BFDD49421D57479BC8BC6311FABEA5F1* __this, PassData_t077B24D5F09604372E173ECFC9A3A66F30F8AD4C* ___0_data, RasterGraphContext_tC4D3E53FF7131476487751ACB0237D56C8327147 ___1_rgContext, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DBufferRenderPass_t49879C87DABC55DF17293F334967AE8ADC9101B7_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/DBuffer/DBufferRenderPass.cs:294>
|
|
RasterGraphContext_tC4D3E53FF7131476487751ACB0237D56C8327147 L_0 = ___1_rgContext;
|
|
RasterCommandBuffer_t4300C4F080EA3CF43C7ACFDBD4F94EA633FE98E8* L_1 = L_0.___cmd;
|
|
PassData_t077B24D5F09604372E173ECFC9A3A66F30F8AD4C* L_2 = ___0_data;
|
|
il2cpp_codegen_runtime_class_init_inline(DBufferRenderPass_t49879C87DABC55DF17293F334967AE8ADC9101B7_il2cpp_TypeInfo_var);
|
|
DBufferRenderPass_SetKeywords_mE683D8FB6C16C65FC6BD03FC68465DE8E734958C(L_1, L_2, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/DBuffer/DBufferRenderPass.cs:295>
|
|
RasterGraphContext_tC4D3E53FF7131476487751ACB0237D56C8327147 L_3 = ___1_rgContext;
|
|
RasterCommandBuffer_t4300C4F080EA3CF43C7ACFDBD4F94EA633FE98E8* L_4 = L_3.___cmd;
|
|
PassData_t077B24D5F09604372E173ECFC9A3A66F30F8AD4C* L_5 = ___0_data;
|
|
PassData_t077B24D5F09604372E173ECFC9A3A66F30F8AD4C* L_6 = ___0_data;
|
|
NullCheck(L_6);
|
|
RendererListHandle_t2DFC72A560B979AE0BAFBABBD8B9AF5DC1FEFEBA L_7 = L_6->___rendererList;
|
|
RendererList_t608CE60421616EF4211F5B8AC62E3C36D4BDDF85 L_8;
|
|
L_8 = RendererListHandle_op_Implicit_m23F3E49F9D97B0BABE1044E02A7A70784F05C585(L_7, NULL);
|
|
DBufferRenderPass_ExecutePass_m67E3722B434DC26BCFE20660DAE14EF85EB4478F(L_4, L_5, L_8, (bool)1, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/DBuffer/DBufferRenderPass.cs:296>
|
|
return;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// Method Definition Index: 33051
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DecalDrawFowardEmissiveSystem__ctor_m8E4DED025617608225B7BFC2AAAF5BF568D092F8 (DecalDrawFowardEmissiveSystem_t3A7F6E2F427E996F5E6FF6073ED0DD97921FD378* __this, DecalEntityManager_tDA689202786946588782A67EF3F0B0D9121C294A* ___0_entityManager, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DecalDrawSystem_t87ECA1A8D2D9C3A73A12F81D8CCA0F79029C0BFE_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralC801C024F9D148EC38CF3E9136502901A5CB991C);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/DBuffer/DecalForwardEmissivePass.cs:10>
|
|
DecalEntityManager_tDA689202786946588782A67EF3F0B0D9121C294A* L_0 = ___0_entityManager;
|
|
il2cpp_codegen_runtime_class_init_inline(DecalDrawSystem_t87ECA1A8D2D9C3A73A12F81D8CCA0F79029C0BFE_il2cpp_TypeInfo_var);
|
|
DecalDrawSystem__ctor_m2F13DA6696D08715AC3C3BE7B73AA680945620A5(__this, _stringLiteralC801C024F9D148EC38CF3E9136502901A5CB991C, L_0, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/DBuffer/DecalForwardEmissivePass.cs:10>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 33052
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t DecalDrawFowardEmissiveSystem_GetPassIndex_mD9B8E0E49834EECD656B17C6DBD5B552516A3126 (DecalDrawFowardEmissiveSystem_t3A7F6E2F427E996F5E6FF6073ED0DD97921FD378* __this, DecalCachedChunk_tDEF493C8A3A1F442BDEC1794BDDA0996B32DCACE* ___0_decalCachedChunk, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/DBuffer/DecalForwardEmissivePass.cs:11>
|
|
DecalCachedChunk_tDEF493C8A3A1F442BDEC1794BDDA0996B32DCACE* L_0 = ___0_decalCachedChunk;
|
|
NullCheck(L_0);
|
|
int32_t L_1 = L_0->___passIndexEmissive;
|
|
return L_1;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// Method Definition Index: 33053
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DecalForwardEmissivePass__ctor_m8E2AEDB39E8A7CEA72CA8C1EE8C9A72A44030699 (DecalForwardEmissivePass_t9C18488945B9FD7A0B3A20FBACC5DEAD39D9C5B9* __this, DecalDrawFowardEmissiveSystem_t3A7F6E2F427E996F5E6FF6073ED0DD97921FD378* ___0_drawSystem, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Add_m999CAB0903219BD2CF988827287D44B0B44D69FE_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1__ctor_m21A3AD10EC2C165E8A6A3A533380D5D8BE162787_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_t4673975A297A80D4D4A65EB5A2BE3B6BD1EED9AF_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1__ctor_mC09CE20B08C6A7188EE04F52B6A2E598657A0204_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PassData_t3894D6AEA48D65EEDB1032B9371FF5B63D4302A6_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ProfilingSampler_t420D4672EDB44E0EF980B31ADFD9E5747200FECE_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RenderQueueRange_t7518252AA6426B1EA45D3D9B394F304EEF784D71_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral26B0573FA55389022EB9147C80C4B8E37A15A4B8);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral7CEB5B9773EFBA63CB7BF08B497158A6BED62F24);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralD9D81B4FD140947CF3DAA1BCCE19AB84F788D01C);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/DBuffer/DecalForwardEmissivePass.cs:21>
|
|
il2cpp_codegen_runtime_class_init_inline(ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0_il2cpp_TypeInfo_var);
|
|
ScriptableRenderPass__ctor_mE49D4FF8E68A854367A4081E664B8DBA74E6B752(__this, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/DBuffer/DecalForwardEmissivePass.cs:23>
|
|
ScriptableRenderPass_set_renderPassEvent_m63FA581FFDE1C69C2E1358BD0B8DB30275334960_inline(__this, ((int32_t)300), NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/DBuffer/DecalForwardEmissivePass.cs:24>
|
|
ScriptableRenderPass_ConfigureInput_m15D8C10FC37E33CD358F2E9665ECF5515CB9C687_inline(__this, 1, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/DBuffer/DecalForwardEmissivePass.cs:26>
|
|
DecalDrawFowardEmissiveSystem_t3A7F6E2F427E996F5E6FF6073ED0DD97921FD378* L_0 = ___0_drawSystem;
|
|
__this->___m_DrawSystem = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_DrawSystem), (void*)L_0);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/DBuffer/DecalForwardEmissivePass.cs:27>
|
|
ProfilingSampler_t420D4672EDB44E0EF980B31ADFD9E5747200FECE* L_1 = (ProfilingSampler_t420D4672EDB44E0EF980B31ADFD9E5747200FECE*)il2cpp_codegen_object_new(ProfilingSampler_t420D4672EDB44E0EF980B31ADFD9E5747200FECE_il2cpp_TypeInfo_var);
|
|
ProfilingSampler__ctor_m26500989FCDB07FA33C9A3BB7F215CBD892F5BB7(L_1, _stringLiteral7CEB5B9773EFBA63CB7BF08B497158A6BED62F24, NULL);
|
|
ScriptableRenderPass_set_profilingSampler_mFD238B85B68DED586BA8C678141BEEAF229FBF2D(__this, L_1, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/DBuffer/DecalForwardEmissivePass.cs:28>
|
|
il2cpp_codegen_runtime_class_init_inline(RenderQueueRange_t7518252AA6426B1EA45D3D9B394F304EEF784D71_il2cpp_TypeInfo_var);
|
|
RenderQueueRange_t7518252AA6426B1EA45D3D9B394F304EEF784D71 L_2;
|
|
L_2 = RenderQueueRange_get_opaque_m197DF3E6CC12F21B15F3F603EFD640806FCB65D9(NULL);
|
|
Nullable_1_t7D98773CC20A842A0846271D1181ECBB0D95926C L_3;
|
|
memset((&L_3), 0, sizeof(L_3));
|
|
Nullable_1__ctor_mC09CE20B08C6A7188EE04F52B6A2E598657A0204((&L_3), L_2, Nullable_1__ctor_mC09CE20B08C6A7188EE04F52B6A2E598657A0204_RuntimeMethod_var);
|
|
FilteringSettings_t75860B12A7BCF9A0E2F13CB2C2E5DCD9E1EEAD9F L_4;
|
|
memset((&L_4), 0, sizeof(L_4));
|
|
FilteringSettings__ctor_m2A2242373FC7D053CFBBC6814D02AAC73C7B3AE7((&L_4), L_3, (-1), (-1), 0, NULL);
|
|
__this->___m_FilteringSettings = L_4;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/DBuffer/DecalForwardEmissivePass.cs:30>
|
|
List_1_t4673975A297A80D4D4A65EB5A2BE3B6BD1EED9AF* L_5 = (List_1_t4673975A297A80D4D4A65EB5A2BE3B6BD1EED9AF*)il2cpp_codegen_object_new(List_1_t4673975A297A80D4D4A65EB5A2BE3B6BD1EED9AF_il2cpp_TypeInfo_var);
|
|
List_1__ctor_m21A3AD10EC2C165E8A6A3A533380D5D8BE162787(L_5, List_1__ctor_m21A3AD10EC2C165E8A6A3A533380D5D8BE162787_RuntimeMethod_var);
|
|
__this->___m_ShaderTagIdList = L_5;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_ShaderTagIdList), (void*)L_5);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/DBuffer/DecalForwardEmissivePass.cs:31>
|
|
List_1_t4673975A297A80D4D4A65EB5A2BE3B6BD1EED9AF* L_6 = __this->___m_ShaderTagIdList;
|
|
ShaderTagId_t453E2085B5EE9448FF75E550CAB111EFF690ECB0 L_7;
|
|
memset((&L_7), 0, sizeof(L_7));
|
|
ShaderTagId__ctor_m4191968F1D2CE19F9092253EC10F83734A9CFF5B((&L_7), _stringLiteralD9D81B4FD140947CF3DAA1BCCE19AB84F788D01C, NULL);
|
|
NullCheck(L_6);
|
|
List_1_Add_m999CAB0903219BD2CF988827287D44B0B44D69FE_inline(L_6, L_7, List_1_Add_m999CAB0903219BD2CF988827287D44B0B44D69FE_RuntimeMethod_var);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/DBuffer/DecalForwardEmissivePass.cs:32>
|
|
List_1_t4673975A297A80D4D4A65EB5A2BE3B6BD1EED9AF* L_8 = __this->___m_ShaderTagIdList;
|
|
ShaderTagId_t453E2085B5EE9448FF75E550CAB111EFF690ECB0 L_9;
|
|
memset((&L_9), 0, sizeof(L_9));
|
|
ShaderTagId__ctor_m4191968F1D2CE19F9092253EC10F83734A9CFF5B((&L_9), _stringLiteral26B0573FA55389022EB9147C80C4B8E37A15A4B8, NULL);
|
|
NullCheck(L_8);
|
|
List_1_Add_m999CAB0903219BD2CF988827287D44B0B44D69FE_inline(L_8, L_9, List_1_Add_m999CAB0903219BD2CF988827287D44B0B44D69FE_RuntimeMethod_var);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/DBuffer/DecalForwardEmissivePass.cs:34>
|
|
PassData_t3894D6AEA48D65EEDB1032B9371FF5B63D4302A6* L_10 = (PassData_t3894D6AEA48D65EEDB1032B9371FF5B63D4302A6*)il2cpp_codegen_object_new(PassData_t3894D6AEA48D65EEDB1032B9371FF5B63D4302A6_il2cpp_TypeInfo_var);
|
|
PassData__ctor_mC6432EF6C25A2A0FF15B7F37D2D971A2210215E5(L_10, NULL);
|
|
__this->___m_PassData = L_10;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_PassData), (void*)L_10);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/DBuffer/DecalForwardEmissivePass.cs:35>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 33054
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DecalForwardEmissivePass_Execute_m43803B60D53C844218228EC738110E2D88C4C52C (DecalForwardEmissivePass_t9C18488945B9FD7A0B3A20FBACC5DEAD39D9C5B9* __this, ScriptableRenderContext_t5AB09B3602BEB456E0DC3D53926D3A3BDAF08E36 ___0_context, RenderingData_tAAA01190551D6D5954314E3E1E85B58DD45EED71* ___1_renderingData, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CommandBufferHelpers_tB8C09D01D6F0369DF52DEA955F017D6001BC72E5_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ContextContainer_Get_TisUniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7_mE62F7903614384541B770CC0B9A99BD2E608A0F8_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ContextContainer_Get_TisUniversalLightData_tCFFFAB4033CD97BE9F339F0C90BB7F98C06FFBA2_m7D529C251F384985900DEA334BC399BAD36BFC8F_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ContextContainer_Get_TisUniversalRenderingData_t045D13A1E051DF623B170223B7CBF1161DDA94E6_m71849CEFB9C023EDE026A0F38CE6044274505C06_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ScriptableRenderContext_t5AB09B3602BEB456E0DC3D53926D3A3BDAF08E36_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
UniversalRenderingData_t045D13A1E051DF623B170223B7CBF1161DDA94E6* V_0 = NULL;
|
|
UniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7* V_1 = NULL;
|
|
UniversalLightData_tCFFFAB4033CD97BE9F339F0C90BB7F98C06FFBA2* V_2 = NULL;
|
|
RendererListParams_t13F72282BCE2DC255747FE7694C6BBC3377944B1 V_3;
|
|
memset((&V_3), 0, sizeof(V_3));
|
|
RendererList_t608CE60421616EF4211F5B8AC62E3C36D4BDDF85 V_4;
|
|
memset((&V_4), 0, sizeof(V_4));
|
|
ProfilingScope_t57898BA31E8EF8F083EF84E0DA2737AC61CBC5BD V_5;
|
|
memset((&V_5), 0, sizeof(V_5));
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/DBuffer/DecalForwardEmissivePass.cs:40>
|
|
PassData_t3894D6AEA48D65EEDB1032B9371FF5B63D4302A6** L_0 = (PassData_t3894D6AEA48D65EEDB1032B9371FF5B63D4302A6**)(&__this->___m_PassData);
|
|
DecalForwardEmissivePass_InitPassData_m0F72354C3738EB1A66B65A3D75B2DF58AA12E09C(__this, L_0, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/DBuffer/DecalForwardEmissivePass.cs:42>
|
|
RenderingData_tAAA01190551D6D5954314E3E1E85B58DD45EED71* L_1 = ___1_renderingData;
|
|
ContextContainer_t384E08F63FABEFF6A7F1A753F5EF02699DAD414C* L_2 = L_1->___frameData;
|
|
NullCheck(L_2);
|
|
UniversalRenderingData_t045D13A1E051DF623B170223B7CBF1161DDA94E6* L_3;
|
|
L_3 = ContextContainer_Get_TisUniversalRenderingData_t045D13A1E051DF623B170223B7CBF1161DDA94E6_m71849CEFB9C023EDE026A0F38CE6044274505C06_inline(L_2, ContextContainer_Get_TisUniversalRenderingData_t045D13A1E051DF623B170223B7CBF1161DDA94E6_m71849CEFB9C023EDE026A0F38CE6044274505C06_RuntimeMethod_var);
|
|
V_0 = L_3;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/DBuffer/DecalForwardEmissivePass.cs:43>
|
|
RenderingData_tAAA01190551D6D5954314E3E1E85B58DD45EED71* L_4 = ___1_renderingData;
|
|
ContextContainer_t384E08F63FABEFF6A7F1A753F5EF02699DAD414C* L_5 = L_4->___frameData;
|
|
NullCheck(L_5);
|
|
UniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7* L_6;
|
|
L_6 = ContextContainer_Get_TisUniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7_mE62F7903614384541B770CC0B9A99BD2E608A0F8_inline(L_5, ContextContainer_Get_TisUniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7_mE62F7903614384541B770CC0B9A99BD2E608A0F8_RuntimeMethod_var);
|
|
V_1 = L_6;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/DBuffer/DecalForwardEmissivePass.cs:44>
|
|
RenderingData_tAAA01190551D6D5954314E3E1E85B58DD45EED71* L_7 = ___1_renderingData;
|
|
ContextContainer_t384E08F63FABEFF6A7F1A753F5EF02699DAD414C* L_8 = L_7->___frameData;
|
|
NullCheck(L_8);
|
|
UniversalLightData_tCFFFAB4033CD97BE9F339F0C90BB7F98C06FFBA2* L_9;
|
|
L_9 = ContextContainer_Get_TisUniversalLightData_tCFFFAB4033CD97BE9F339F0C90BB7F98C06FFBA2_m7D529C251F384985900DEA334BC399BAD36BFC8F_inline(L_8, ContextContainer_Get_TisUniversalLightData_tCFFFAB4033CD97BE9F339F0C90BB7F98C06FFBA2_m7D529C251F384985900DEA334BC399BAD36BFC8F_RuntimeMethod_var);
|
|
V_2 = L_9;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/DBuffer/DecalForwardEmissivePass.cs:46>
|
|
UniversalRenderingData_t045D13A1E051DF623B170223B7CBF1161DDA94E6* L_10 = V_0;
|
|
UniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7* L_11 = V_1;
|
|
UniversalLightData_tCFFFAB4033CD97BE9F339F0C90BB7F98C06FFBA2* L_12 = V_2;
|
|
RendererListParams_t13F72282BCE2DC255747FE7694C6BBC3377944B1 L_13;
|
|
L_13 = DecalForwardEmissivePass_InitRendererListParams_m51529974A7131FC8CBEB8C15E0D73C9B664DC577(__this, L_10, L_11, L_12, NULL);
|
|
V_3 = L_13;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/DBuffer/DecalForwardEmissivePass.cs:48>
|
|
il2cpp_codegen_runtime_class_init_inline(ScriptableRenderContext_t5AB09B3602BEB456E0DC3D53926D3A3BDAF08E36_il2cpp_TypeInfo_var);
|
|
RendererList_t608CE60421616EF4211F5B8AC62E3C36D4BDDF85 L_14;
|
|
L_14 = ScriptableRenderContext_CreateRendererList_mBF2F8A1EA796B87CBBAAC245133F2961D52A9BFA((&___0_context), (&V_3), NULL);
|
|
V_4 = L_14;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/DBuffer/DecalForwardEmissivePass.cs:49>
|
|
UniversalRenderingData_t045D13A1E051DF623B170223B7CBF1161DDA94E6* L_15 = V_0;
|
|
NullCheck(L_15);
|
|
CommandBuffer_tB56007DC84EF56296C325EC32DD12AC1E3DC91F7* L_16;
|
|
L_16 = UniversalRenderingData_get_commandBuffer_m8397484CEAB1A0D725DEA8A85C9B955E2B4007F8(L_15, NULL);
|
|
ProfilingSampler_t420D4672EDB44E0EF980B31ADFD9E5747200FECE* L_17;
|
|
L_17 = ScriptableRenderPass_get_profilingSampler_m627C9BF8A4A08101DCB6F40E0A97145A5A1CDA38(__this, NULL);
|
|
ProfilingScope__ctor_mE15813DF7651C1A3B6AFD6465AD4B973E8F1DBFC((&V_5), L_16, L_17, NULL);
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_0072:
|
|
{
|
|
ProfilingScope_Dispose_m4231A2ACA1F8E345BB0078310A9F7601704C8BE4((&V_5), NULL);
|
|
return;
|
|
}
|
|
});
|
|
try
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/DBuffer/DecalForwardEmissivePass.cs:51>
|
|
UniversalRenderingData_t045D13A1E051DF623B170223B7CBF1161DDA94E6* L_18 = V_0;
|
|
NullCheck(L_18);
|
|
CommandBuffer_tB56007DC84EF56296C325EC32DD12AC1E3DC91F7* L_19;
|
|
L_19 = UniversalRenderingData_get_commandBuffer_m8397484CEAB1A0D725DEA8A85C9B955E2B4007F8(L_18, NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(CommandBufferHelpers_tB8C09D01D6F0369DF52DEA955F017D6001BC72E5_il2cpp_TypeInfo_var);
|
|
RasterCommandBuffer_t4300C4F080EA3CF43C7ACFDBD4F94EA633FE98E8* L_20;
|
|
L_20 = CommandBufferHelpers_GetRasterCommandBuffer_m6086D650343F166614B3FB5ED89D63DE8F85C42B_inline(L_19, NULL);
|
|
PassData_t3894D6AEA48D65EEDB1032B9371FF5B63D4302A6* L_21 = __this->___m_PassData;
|
|
RendererList_t608CE60421616EF4211F5B8AC62E3C36D4BDDF85 L_22 = V_4;
|
|
DecalForwardEmissivePass_ExecutePass_m742EF878DAB685962A361EB3121B2E090ED59AE5(L_20, L_21, L_22, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/DBuffer/DecalForwardEmissivePass.cs:52>
|
|
goto IL_0080;
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_0080:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/DBuffer/DecalForwardEmissivePass.cs:53>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 33055
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DecalForwardEmissivePass_InitPassData_m0F72354C3738EB1A66B65A3D75B2DF58AA12E09C (DecalForwardEmissivePass_t9C18488945B9FD7A0B3A20FBACC5DEAD39D9C5B9* __this, PassData_t3894D6AEA48D65EEDB1032B9371FF5B63D4302A6** ___0_passData, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/DBuffer/DecalForwardEmissivePass.cs:64>
|
|
PassData_t3894D6AEA48D65EEDB1032B9371FF5B63D4302A6** L_0 = ___0_passData;
|
|
PassData_t3894D6AEA48D65EEDB1032B9371FF5B63D4302A6* L_1 = *((PassData_t3894D6AEA48D65EEDB1032B9371FF5B63D4302A6**)L_0);
|
|
DecalDrawFowardEmissiveSystem_t3A7F6E2F427E996F5E6FF6073ED0DD97921FD378* L_2 = __this->___m_DrawSystem;
|
|
NullCheck(L_1);
|
|
L_1->___drawSystem = L_2;
|
|
Il2CppCodeGenWriteBarrier((void**)(&L_1->___drawSystem), (void*)L_2);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/DBuffer/DecalForwardEmissivePass.cs:65>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 33056
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RendererListParams_t13F72282BCE2DC255747FE7694C6BBC3377944B1 DecalForwardEmissivePass_InitRendererListParams_m51529974A7131FC8CBEB8C15E0D73C9B664DC577 (DecalForwardEmissivePass_t9C18488945B9FD7A0B3A20FBACC5DEAD39D9C5B9* __this, UniversalRenderingData_t045D13A1E051DF623B170223B7CBF1161DDA94E6* ___0_renderingData, UniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7* ___1_cameraData, UniversalLightData_tCFFFAB4033CD97BE9F339F0C90BB7F98C06FFBA2* ___2_lightData, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RenderingUtils_t4E40200449A82FA3A172A563C490DF11FADA2BE1_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int32_t V_0 = 0;
|
|
DrawingSettings_t3B64EB029DB6F94A1F2A9B2D19D2969AE361BB49 V_1;
|
|
memset((&V_1), 0, sizeof(V_1));
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/DBuffer/DecalForwardEmissivePass.cs:69>
|
|
UniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7* L_0 = ___1_cameraData;
|
|
NullCheck(L_0);
|
|
int32_t L_1 = L_0->___defaultOpaqueSortFlags;
|
|
V_0 = L_1;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/DBuffer/DecalForwardEmissivePass.cs:70>
|
|
List_1_t4673975A297A80D4D4A65EB5A2BE3B6BD1EED9AF* L_2 = __this->___m_ShaderTagIdList;
|
|
UniversalRenderingData_t045D13A1E051DF623B170223B7CBF1161DDA94E6* L_3 = ___0_renderingData;
|
|
UniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7* L_4 = ___1_cameraData;
|
|
UniversalLightData_tCFFFAB4033CD97BE9F339F0C90BB7F98C06FFBA2* L_5 = ___2_lightData;
|
|
int32_t L_6 = V_0;
|
|
il2cpp_codegen_runtime_class_init_inline(RenderingUtils_t4E40200449A82FA3A172A563C490DF11FADA2BE1_il2cpp_TypeInfo_var);
|
|
DrawingSettings_t3B64EB029DB6F94A1F2A9B2D19D2969AE361BB49 L_7;
|
|
L_7 = RenderingUtils_CreateDrawingSettings_m3DB61D695B8C38BC10DF00E538DCB622F04189A0(L_2, L_3, L_4, L_5, L_6, NULL);
|
|
V_1 = L_7;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/DBuffer/DecalForwardEmissivePass.cs:71>
|
|
UniversalRenderingData_t045D13A1E051DF623B170223B7CBF1161DDA94E6* L_8 = ___0_renderingData;
|
|
NullCheck(L_8);
|
|
CullingResults_tD6B7EF20B68D47DFF3A99EB2EA73F47F1D460267 L_9 = L_8->___cullResults;
|
|
DrawingSettings_t3B64EB029DB6F94A1F2A9B2D19D2969AE361BB49 L_10 = V_1;
|
|
FilteringSettings_t75860B12A7BCF9A0E2F13CB2C2E5DCD9E1EEAD9F L_11 = __this->___m_FilteringSettings;
|
|
RendererListParams_t13F72282BCE2DC255747FE7694C6BBC3377944B1 L_12;
|
|
memset((&L_12), 0, sizeof(L_12));
|
|
RendererListParams__ctor_m46CCE38EA66C6F213878BBAE3E058D7AA995D5F7((&L_12), L_9, L_10, L_11, NULL);
|
|
return L_12;
|
|
}
|
|
}
|
|
// Method Definition Index: 33057
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DecalForwardEmissivePass_ExecutePass_m742EF878DAB685962A361EB3121B2E090ED59AE5 (RasterCommandBuffer_t4300C4F080EA3CF43C7ACFDBD4F94EA633FE98E8* ___0_cmd, PassData_t3894D6AEA48D65EEDB1032B9371FF5B63D4302A6* ___1_passData, RendererList_t608CE60421616EF4211F5B8AC62E3C36D4BDDF85 ___2_rendererList, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/DBuffer/DecalForwardEmissivePass.cs:76>
|
|
PassData_t3894D6AEA48D65EEDB1032B9371FF5B63D4302A6* L_0 = ___1_passData;
|
|
NullCheck(L_0);
|
|
DecalDrawFowardEmissiveSystem_t3A7F6E2F427E996F5E6FF6073ED0DD97921FD378* L_1 = L_0->___drawSystem;
|
|
RasterCommandBuffer_t4300C4F080EA3CF43C7ACFDBD4F94EA633FE98E8* L_2 = ___0_cmd;
|
|
NullCheck(L_1);
|
|
DecalDrawSystem_Execute_mF71C2FD9B2D2D46D509C8D480ABA3D990211E6B8(L_1, L_2, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/DBuffer/DecalForwardEmissivePass.cs:77>
|
|
RasterCommandBuffer_t4300C4F080EA3CF43C7ACFDBD4F94EA633FE98E8* L_3 = ___0_cmd;
|
|
RendererList_t608CE60421616EF4211F5B8AC62E3C36D4BDDF85 L_4 = ___2_rendererList;
|
|
NullCheck(L_3);
|
|
RasterCommandBuffer_DrawRendererList_m6C50C4A5E4CABE3542317969BC91F552B41A427F(L_3, L_4, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/DBuffer/DecalForwardEmissivePass.cs:78>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 33058
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DecalForwardEmissivePass_RecordRenderGraph_m9BCC886BF7D28825584BCC751F50F8084789E608 (DecalForwardEmissivePass_t9C18488945B9FD7A0B3A20FBACC5DEAD39D9C5B9* __this, RenderGraph_t73ECE03B3CA3D0D17F1448D64AE020E81592AA1E* ___0_renderGraph, ContextContainer_t384E08F63FABEFF6A7F1A753F5EF02699DAD414C* ___1_frameData, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&BaseRenderFunc_2_t2AE7A68115EFC92E8E3068C0057F850871744886_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ContextContainer_Get_TisUniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7_mE62F7903614384541B770CC0B9A99BD2E608A0F8_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ContextContainer_Get_TisUniversalLightData_tCFFFAB4033CD97BE9F339F0C90BB7F98C06FFBA2_m7D529C251F384985900DEA334BC399BAD36BFC8F_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ContextContainer_Get_TisUniversalRenderingData_t045D13A1E051DF623B170223B7CBF1161DDA94E6_m71849CEFB9C023EDE026A0F38CE6044274505C06_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ContextContainer_Get_TisUniversalResourceData_t1F1DE4101BE122578EAA5E4750D00ACAF1042626_m1CAD9250ED48A65B3DE774336F9221928EB054B4_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IBaseRenderGraphBuilder_tFFF84F72F862F1BE246A789AB6A59F959B490F3D_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IRasterRenderGraphBuilder_SetRenderFunc_TisPassData_t3894D6AEA48D65EEDB1032B9371FF5B63D4302A6_mC84A7D28C0BE2EBD63B10E4FC4087DEE08BF0D75_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IRasterRenderGraphBuilder_t607F94718848D836CFEEF0DE553E4A79CABD9372_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RenderGraph_AddRasterRenderPass_TisPassData_t3894D6AEA48D65EEDB1032B9371FF5B63D4302A6_mB86D217730949EEA5463E34263ECAD13B745DDEA_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec_U3CRecordRenderGraphU3Eb__10_0_m01C2EAB46099E6DFEDC38A0E88ABAC115ED57799_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec_t7B444D3F3AAA0A33FD57F6821D1F929FEB0555F5_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UniversalRenderer_t31019D4AD52F646128E0D1649E7B87E33BA36D8A_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralA07B69F2BD345094C82ABDEA229CCBE795326271);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
RuntimeObject* V_0 = NULL;
|
|
PassData_t3894D6AEA48D65EEDB1032B9371FF5B63D4302A6* V_1 = NULL;
|
|
UniversalResourceData_t1F1DE4101BE122578EAA5E4750D00ACAF1042626* V_2 = NULL;
|
|
UniversalRenderingData_t045D13A1E051DF623B170223B7CBF1161DDA94E6* V_3 = NULL;
|
|
UniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7* V_4 = NULL;
|
|
UniversalLightData_tCFFFAB4033CD97BE9F339F0C90BB7F98C06FFBA2* V_5 = NULL;
|
|
RendererListParams_t13F72282BCE2DC255747FE7694C6BBC3377944B1 V_6;
|
|
memset((&V_6), 0, sizeof(V_6));
|
|
BaseRenderFunc_2_t2AE7A68115EFC92E8E3068C0057F850871744886* G_B3_0 = NULL;
|
|
RuntimeObject* G_B3_1 = NULL;
|
|
BaseRenderFunc_2_t2AE7A68115EFC92E8E3068C0057F850871744886* G_B2_0 = NULL;
|
|
RuntimeObject* G_B2_1 = NULL;
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/DBuffer/DecalForwardEmissivePass.cs:82>
|
|
RenderGraph_t73ECE03B3CA3D0D17F1448D64AE020E81592AA1E* L_0 = ___0_renderGraph;
|
|
String_t* L_1;
|
|
L_1 = ScriptableRenderPass_get_passName_m838292A44DB6ED7D67E43C1DE58383959B4F1925_inline(__this, NULL);
|
|
ProfilingSampler_t420D4672EDB44E0EF980B31ADFD9E5747200FECE* L_2;
|
|
L_2 = ScriptableRenderPass_get_profilingSampler_m627C9BF8A4A08101DCB6F40E0A97145A5A1CDA38(__this, NULL);
|
|
NullCheck(L_0);
|
|
RuntimeObject* L_3;
|
|
L_3 = RenderGraph_AddRasterRenderPass_TisPassData_t3894D6AEA48D65EEDB1032B9371FF5B63D4302A6_mB86D217730949EEA5463E34263ECAD13B745DDEA(L_0, L_1, (&V_1), L_2, _stringLiteralA07B69F2BD345094C82ABDEA229CCBE795326271, ((int32_t)82), RenderGraph_AddRasterRenderPass_TisPassData_t3894D6AEA48D65EEDB1032B9371FF5B63D4302A6_mB86D217730949EEA5463E34263ECAD13B745DDEA_RuntimeMethod_var);
|
|
V_0 = L_3;
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_00b8:
|
|
{
|
|
{
|
|
RuntimeObject* L_4 = V_0;
|
|
if (!L_4)
|
|
{
|
|
goto IL_00c1;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_5 = V_0;
|
|
NullCheck(L_5);
|
|
InterfaceActionInvoker0::Invoke(0, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, L_5);
|
|
}
|
|
|
|
IL_00c1:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
});
|
|
try
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/DBuffer/DecalForwardEmissivePass.cs:84>
|
|
ContextContainer_t384E08F63FABEFF6A7F1A753F5EF02699DAD414C* L_6 = ___1_frameData;
|
|
NullCheck(L_6);
|
|
UniversalResourceData_t1F1DE4101BE122578EAA5E4750D00ACAF1042626* L_7;
|
|
L_7 = ContextContainer_Get_TisUniversalResourceData_t1F1DE4101BE122578EAA5E4750D00ACAF1042626_m1CAD9250ED48A65B3DE774336F9221928EB054B4_inline(L_6, ContextContainer_Get_TisUniversalResourceData_t1F1DE4101BE122578EAA5E4750D00ACAF1042626_m1CAD9250ED48A65B3DE774336F9221928EB054B4_RuntimeMethod_var);
|
|
V_2 = L_7;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/DBuffer/DecalForwardEmissivePass.cs:85>
|
|
ContextContainer_t384E08F63FABEFF6A7F1A753F5EF02699DAD414C* L_8 = ___1_frameData;
|
|
NullCheck(L_8);
|
|
UniversalRenderingData_t045D13A1E051DF623B170223B7CBF1161DDA94E6* L_9;
|
|
L_9 = ContextContainer_Get_TisUniversalRenderingData_t045D13A1E051DF623B170223B7CBF1161DDA94E6_m71849CEFB9C023EDE026A0F38CE6044274505C06_inline(L_8, ContextContainer_Get_TisUniversalRenderingData_t045D13A1E051DF623B170223B7CBF1161DDA94E6_m71849CEFB9C023EDE026A0F38CE6044274505C06_RuntimeMethod_var);
|
|
V_3 = L_9;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/DBuffer/DecalForwardEmissivePass.cs:86>
|
|
ContextContainer_t384E08F63FABEFF6A7F1A753F5EF02699DAD414C* L_10 = ___1_frameData;
|
|
NullCheck(L_10);
|
|
UniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7* L_11;
|
|
L_11 = ContextContainer_Get_TisUniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7_mE62F7903614384541B770CC0B9A99BD2E608A0F8_inline(L_10, ContextContainer_Get_TisUniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7_mE62F7903614384541B770CC0B9A99BD2E608A0F8_RuntimeMethod_var);
|
|
V_4 = L_11;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/DBuffer/DecalForwardEmissivePass.cs:87>
|
|
ContextContainer_t384E08F63FABEFF6A7F1A753F5EF02699DAD414C* L_12 = ___1_frameData;
|
|
NullCheck(L_12);
|
|
UniversalLightData_tCFFFAB4033CD97BE9F339F0C90BB7F98C06FFBA2* L_13;
|
|
L_13 = ContextContainer_Get_TisUniversalLightData_tCFFFAB4033CD97BE9F339F0C90BB7F98C06FFBA2_m7D529C251F384985900DEA334BC399BAD36BFC8F_inline(L_12, ContextContainer_Get_TisUniversalLightData_tCFFFAB4033CD97BE9F339F0C90BB7F98C06FFBA2_m7D529C251F384985900DEA334BC399BAD36BFC8F_RuntimeMethod_var);
|
|
V_5 = L_13;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/DBuffer/DecalForwardEmissivePass.cs:89>
|
|
DecalForwardEmissivePass_InitPassData_m0F72354C3738EB1A66B65A3D75B2DF58AA12E09C(__this, (&V_1), NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/DBuffer/DecalForwardEmissivePass.cs:90>
|
|
UniversalRenderingData_t045D13A1E051DF623B170223B7CBF1161DDA94E6* L_14 = V_3;
|
|
UniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7* L_15 = V_4;
|
|
UniversalLightData_tCFFFAB4033CD97BE9F339F0C90BB7F98C06FFBA2* L_16 = V_5;
|
|
RendererListParams_t13F72282BCE2DC255747FE7694C6BBC3377944B1 L_17;
|
|
L_17 = DecalForwardEmissivePass_InitRendererListParams_m51529974A7131FC8CBEB8C15E0D73C9B664DC577(__this, L_14, L_15, L_16, NULL);
|
|
V_6 = L_17;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/DBuffer/DecalForwardEmissivePass.cs:91>
|
|
PassData_t3894D6AEA48D65EEDB1032B9371FF5B63D4302A6* L_18 = V_1;
|
|
RenderGraph_t73ECE03B3CA3D0D17F1448D64AE020E81592AA1E* L_19 = ___0_renderGraph;
|
|
NullCheck(L_19);
|
|
RendererListHandle_t2DFC72A560B979AE0BAFBABBD8B9AF5DC1FEFEBA L_20;
|
|
L_20 = RenderGraph_CreateRendererList_m7A5DCFC7F4A8A38BB0FC4E41BAE77FD5590B4F42(L_19, (&V_6), NULL);
|
|
NullCheck(L_18);
|
|
L_18->___rendererList = L_20;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/DBuffer/DecalForwardEmissivePass.cs:92>
|
|
RuntimeObject* L_21 = V_0;
|
|
PassData_t3894D6AEA48D65EEDB1032B9371FF5B63D4302A6* L_22 = V_1;
|
|
NullCheck(L_22);
|
|
RendererListHandle_t2DFC72A560B979AE0BAFBABBD8B9AF5DC1FEFEBA* L_23 = (RendererListHandle_t2DFC72A560B979AE0BAFBABBD8B9AF5DC1FEFEBA*)(&L_22->___rendererList);
|
|
NullCheck(L_21);
|
|
InterfaceActionInvoker1< RendererListHandle_t2DFC72A560B979AE0BAFBABBD8B9AF5DC1FEFEBA* >::Invoke(9, IBaseRenderGraphBuilder_tFFF84F72F862F1BE246A789AB6A59F959B490F3D_il2cpp_TypeInfo_var, L_21, L_23);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/DBuffer/DecalForwardEmissivePass.cs:94>
|
|
UniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7* L_24 = V_4;
|
|
NullCheck(L_24);
|
|
ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892* L_25 = L_24->___renderer;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/DBuffer/DecalForwardEmissivePass.cs:95>
|
|
RuntimeObject* L_26 = V_0;
|
|
UniversalResourceData_t1F1DE4101BE122578EAA5E4750D00ACAF1042626* L_27 = V_2;
|
|
NullCheck(L_27);
|
|
TextureHandle_t680ABA3F8B50859351BA5DD66220084F87F37388 L_28;
|
|
L_28 = UniversalResourceData_get_activeColorTexture_m1B7A0CE5B0282F05AEAE46AC7B45478199DF9188(L_27, NULL);
|
|
NullCheck(L_26);
|
|
InterfaceActionInvoker3< TextureHandle_t680ABA3F8B50859351BA5DD66220084F87F37388, int32_t, int32_t >::Invoke(0, IRasterRenderGraphBuilder_t607F94718848D836CFEEF0DE553E4A79CABD9372_il2cpp_TypeInfo_var, L_26, L_28, 0, 2);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/DBuffer/DecalForwardEmissivePass.cs:96>
|
|
RuntimeObject* L_29 = V_0;
|
|
UniversalResourceData_t1F1DE4101BE122578EAA5E4750D00ACAF1042626* L_30 = V_2;
|
|
NullCheck(L_30);
|
|
TextureHandle_t680ABA3F8B50859351BA5DD66220084F87F37388 L_31;
|
|
L_31 = UniversalResourceData_get_activeDepthTexture_mCE3930EAEF20F80A0EA1F4CE423E6E406E25F296(L_30, NULL);
|
|
NullCheck(L_29);
|
|
InterfaceActionInvoker2< TextureHandle_t680ABA3F8B50859351BA5DD66220084F87F37388, int32_t >::Invoke(4, IRasterRenderGraphBuilder_t607F94718848D836CFEEF0DE553E4A79CABD9372_il2cpp_TypeInfo_var, L_29, L_31, 1);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/DBuffer/DecalForwardEmissivePass.cs:98>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/DBuffer/DecalForwardEmissivePass.cs:99>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/DBuffer/DecalForwardEmissivePass.cs:100>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/DBuffer/DecalForwardEmissivePass.cs:101>
|
|
RuntimeObject* L_32 = V_0;
|
|
il2cpp_codegen_runtime_class_init_inline(U3CU3Ec_t7B444D3F3AAA0A33FD57F6821D1F929FEB0555F5_il2cpp_TypeInfo_var);
|
|
BaseRenderFunc_2_t2AE7A68115EFC92E8E3068C0057F850871744886* L_33 = ((U3CU3Ec_t7B444D3F3AAA0A33FD57F6821D1F929FEB0555F5_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t7B444D3F3AAA0A33FD57F6821D1F929FEB0555F5_il2cpp_TypeInfo_var))->___U3CU3E9__10_0;
|
|
BaseRenderFunc_2_t2AE7A68115EFC92E8E3068C0057F850871744886* L_34 = L_33;
|
|
if (L_34)
|
|
{
|
|
G_B3_0 = L_34;
|
|
G_B3_1 = L_32;
|
|
goto IL_00b1_1;
|
|
}
|
|
G_B2_0 = L_34;
|
|
G_B2_1 = L_32;
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(U3CU3Ec_t7B444D3F3AAA0A33FD57F6821D1F929FEB0555F5_il2cpp_TypeInfo_var);
|
|
U3CU3Ec_t7B444D3F3AAA0A33FD57F6821D1F929FEB0555F5* L_35 = ((U3CU3Ec_t7B444D3F3AAA0A33FD57F6821D1F929FEB0555F5_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t7B444D3F3AAA0A33FD57F6821D1F929FEB0555F5_il2cpp_TypeInfo_var))->___U3CU3E9;
|
|
BaseRenderFunc_2_t2AE7A68115EFC92E8E3068C0057F850871744886* L_36 = (BaseRenderFunc_2_t2AE7A68115EFC92E8E3068C0057F850871744886*)il2cpp_codegen_object_new(BaseRenderFunc_2_t2AE7A68115EFC92E8E3068C0057F850871744886_il2cpp_TypeInfo_var);
|
|
BaseRenderFunc_2__ctor_m4D42C7EFE3ED2F841709240536DCCD692CC07971(L_36, L_35, (intptr_t)((void*)U3CU3Ec_U3CRecordRenderGraphU3Eb__10_0_m01C2EAB46099E6DFEDC38A0E88ABAC115ED57799_RuntimeMethod_var), NULL);
|
|
BaseRenderFunc_2_t2AE7A68115EFC92E8E3068C0057F850871744886* L_37 = L_36;
|
|
((U3CU3Ec_t7B444D3F3AAA0A33FD57F6821D1F929FEB0555F5_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t7B444D3F3AAA0A33FD57F6821D1F929FEB0555F5_il2cpp_TypeInfo_var))->___U3CU3E9__10_0 = L_37;
|
|
Il2CppCodeGenWriteBarrier((void**)(&((U3CU3Ec_t7B444D3F3AAA0A33FD57F6821D1F929FEB0555F5_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t7B444D3F3AAA0A33FD57F6821D1F929FEB0555F5_il2cpp_TypeInfo_var))->___U3CU3E9__10_0), (void*)L_37);
|
|
G_B3_0 = L_37;
|
|
G_B3_1 = G_B2_1;
|
|
}
|
|
|
|
IL_00b1_1:
|
|
{
|
|
NullCheck(G_B3_1);
|
|
GenericInterfaceActionInvoker1< BaseRenderFunc_2_t2AE7A68115EFC92E8E3068C0057F850871744886* >::Invoke(IRasterRenderGraphBuilder_SetRenderFunc_TisPassData_t3894D6AEA48D65EEDB1032B9371FF5B63D4302A6_mC84A7D28C0BE2EBD63B10E4FC4087DEE08BF0D75_RuntimeMethod_var, G_B3_1, G_B3_0);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/DBuffer/DecalForwardEmissivePass.cs:102>
|
|
goto IL_00c2;
|
|
}
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_00c2:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/DBuffer/DecalForwardEmissivePass.cs:103>
|
|
return;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// Method Definition Index: 33059
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PassData__ctor_mC6432EF6C25A2A0FF15B7F37D2D971A2210215E5 (PassData_t3894D6AEA48D65EEDB1032B9371FF5B63D4302A6* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
|
|
return;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// Method Definition Index: 33060
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__cctor_m15B887ACBFFDB25DDA6DA2E04E7EFF0E76EC1D6C (const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec_t7B444D3F3AAA0A33FD57F6821D1F929FEB0555F5_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
U3CU3Ec_t7B444D3F3AAA0A33FD57F6821D1F929FEB0555F5* L_0 = (U3CU3Ec_t7B444D3F3AAA0A33FD57F6821D1F929FEB0555F5*)il2cpp_codegen_object_new(U3CU3Ec_t7B444D3F3AAA0A33FD57F6821D1F929FEB0555F5_il2cpp_TypeInfo_var);
|
|
U3CU3Ec__ctor_m9E9F18D44D199B0996983F04A983B77FD5DC1CCF(L_0, NULL);
|
|
((U3CU3Ec_t7B444D3F3AAA0A33FD57F6821D1F929FEB0555F5_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t7B444D3F3AAA0A33FD57F6821D1F929FEB0555F5_il2cpp_TypeInfo_var))->___U3CU3E9 = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&((U3CU3Ec_t7B444D3F3AAA0A33FD57F6821D1F929FEB0555F5_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t7B444D3F3AAA0A33FD57F6821D1F929FEB0555F5_il2cpp_TypeInfo_var))->___U3CU3E9), (void*)L_0);
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 33061
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__ctor_m9E9F18D44D199B0996983F04A983B77FD5DC1CCF (U3CU3Ec_t7B444D3F3AAA0A33FD57F6821D1F929FEB0555F5* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 33062
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec_U3CRecordRenderGraphU3Eb__10_0_m01C2EAB46099E6DFEDC38A0E88ABAC115ED57799 (U3CU3Ec_t7B444D3F3AAA0A33FD57F6821D1F929FEB0555F5* __this, PassData_t3894D6AEA48D65EEDB1032B9371FF5B63D4302A6* ___0_data, RasterGraphContext_tC4D3E53FF7131476487751ACB0237D56C8327147 ___1_rgContext, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/DBuffer/DecalForwardEmissivePass.cs:100>
|
|
RasterGraphContext_tC4D3E53FF7131476487751ACB0237D56C8327147 L_0 = ___1_rgContext;
|
|
RasterCommandBuffer_t4300C4F080EA3CF43C7ACFDBD4F94EA633FE98E8* L_1 = L_0.___cmd;
|
|
PassData_t3894D6AEA48D65EEDB1032B9371FF5B63D4302A6* L_2 = ___0_data;
|
|
PassData_t3894D6AEA48D65EEDB1032B9371FF5B63D4302A6* L_3 = ___0_data;
|
|
NullCheck(L_3);
|
|
RendererListHandle_t2DFC72A560B979AE0BAFBABBD8B9AF5DC1FEFEBA L_4 = L_3->___rendererList;
|
|
RendererList_t608CE60421616EF4211F5B8AC62E3C36D4BDDF85 L_5;
|
|
L_5 = RendererListHandle_op_Implicit_m23F3E49F9D97B0BABE1044E02A7A70784F05C585(L_4, NULL);
|
|
DecalForwardEmissivePass_ExecutePass_m742EF878DAB685962A361EB3121B2E090ED59AE5(L_1, L_2, L_5, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/DBuffer/DecalForwardEmissivePass.cs:101>
|
|
return;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// Method Definition Index: 33063
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DecalDrawErrorSystem__ctor_m015484F442DE0009013C0A23C76D897327344BB1 (DecalDrawErrorSystem_tBFEB031E49B33054C1378119DBFC83DDCBBD9837* __this, DecalEntityManager_tDA689202786946588782A67EF3F0B0D9121C294A* ___0_entityManager, int32_t ___1_technique, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DecalDrawSystem_t87ECA1A8D2D9C3A73A12F81D8CCA0F79029C0BFE_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral73147A0ACD9AA81543CFD75A19414ADBC0877E35);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/DecalDrawErrorRenderPass.cs:11>
|
|
DecalEntityManager_tDA689202786946588782A67EF3F0B0D9121C294A* L_0 = ___0_entityManager;
|
|
il2cpp_codegen_runtime_class_init_inline(DecalDrawSystem_t87ECA1A8D2D9C3A73A12F81D8CCA0F79029C0BFE_il2cpp_TypeInfo_var);
|
|
DecalDrawSystem__ctor_m2F13DA6696D08715AC3C3BE7B73AA680945620A5(__this, _stringLiteral73147A0ACD9AA81543CFD75A19414ADBC0877E35, L_0, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/DecalDrawErrorRenderPass.cs:13>
|
|
int32_t L_1 = ___1_technique;
|
|
__this->___m_Technique = L_1;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/DecalDrawErrorRenderPass.cs:14>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 33064
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t DecalDrawErrorSystem_GetPassIndex_mF9AEFD9048F6916B83A9EE65954969D2FAF7D754 (DecalDrawErrorSystem_tBFEB031E49B33054C1378119DBFC83DDCBBD9837* __this, DecalCachedChunk_tDEF493C8A3A1F442BDEC1794BDDA0996B32DCACE* ___0_decalCachedChunk, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/DecalDrawErrorRenderPass.cs:18>
|
|
int32_t L_0 = __this->___m_Technique;
|
|
V_0 = L_0;
|
|
int32_t L_1 = V_0;
|
|
switch (L_1)
|
|
{
|
|
case 0:
|
|
{
|
|
goto IL_004f;
|
|
}
|
|
case 1:
|
|
{
|
|
goto IL_001f;
|
|
}
|
|
case 2:
|
|
{
|
|
goto IL_0035;
|
|
}
|
|
case 3:
|
|
{
|
|
goto IL_0042;
|
|
}
|
|
}
|
|
}
|
|
{
|
|
goto IL_0051;
|
|
}
|
|
|
|
IL_001f:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/DecalDrawErrorRenderPass.cs:21>
|
|
DecalCachedChunk_tDEF493C8A3A1F442BDEC1794BDDA0996B32DCACE* L_2 = ___0_decalCachedChunk;
|
|
NullCheck(L_2);
|
|
int32_t L_3 = L_2->___passIndexDBuffer;
|
|
if ((!(((uint32_t)L_3) == ((uint32_t)(-1)))))
|
|
{
|
|
goto IL_0031;
|
|
}
|
|
}
|
|
{
|
|
DecalCachedChunk_tDEF493C8A3A1F442BDEC1794BDDA0996B32DCACE* L_4 = ___0_decalCachedChunk;
|
|
NullCheck(L_4);
|
|
int32_t L_5 = L_4->___passIndexEmissive;
|
|
if ((((int32_t)L_5) == ((int32_t)(-1))))
|
|
{
|
|
goto IL_0033;
|
|
}
|
|
}
|
|
|
|
IL_0031:
|
|
{
|
|
return (-1);
|
|
}
|
|
|
|
IL_0033:
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
IL_0035:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/DecalDrawErrorRenderPass.cs:23>
|
|
DecalCachedChunk_tDEF493C8A3A1F442BDEC1794BDDA0996B32DCACE* L_6 = ___0_decalCachedChunk;
|
|
NullCheck(L_6);
|
|
int32_t L_7 = L_6->___passIndexScreenSpace;
|
|
if ((((int32_t)L_7) == ((int32_t)(-1))))
|
|
{
|
|
goto IL_0040;
|
|
}
|
|
}
|
|
{
|
|
return (-1);
|
|
}
|
|
|
|
IL_0040:
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
IL_0042:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/DecalDrawErrorRenderPass.cs:25>
|
|
DecalCachedChunk_tDEF493C8A3A1F442BDEC1794BDDA0996B32DCACE* L_8 = ___0_decalCachedChunk;
|
|
NullCheck(L_8);
|
|
int32_t L_9 = L_8->___passIndexGBuffer;
|
|
if ((((int32_t)L_9) == ((int32_t)(-1))))
|
|
{
|
|
goto IL_004d;
|
|
}
|
|
}
|
|
{
|
|
return (-1);
|
|
}
|
|
|
|
IL_004d:
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
IL_004f:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/DecalDrawErrorRenderPass.cs:27>
|
|
return 0;
|
|
}
|
|
|
|
IL_0051:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/DecalDrawErrorRenderPass.cs:29>
|
|
return 0;
|
|
}
|
|
}
|
|
// Method Definition Index: 33065
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Material_t18053F08F347D0DCA5E1140EC7EC4533DD8A14E3* DecalDrawErrorSystem_GetMaterial_m367E289437ECAE2A2FCEC57280387B05B973E037 (DecalDrawErrorSystem_tBFEB031E49B33054C1378119DBFC83DDCBBD9837* __this, DecalEntityChunk_t2CDCBFA35711DA074631D26572EF9755A3AD740C* ___0_decalEntityChunk, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/DecalDrawErrorRenderPass.cs:33>
|
|
DecalEntityManager_tDA689202786946588782A67EF3F0B0D9121C294A* L_0 = ((DecalDrawSystem_t87ECA1A8D2D9C3A73A12F81D8CCA0F79029C0BFE*)__this)->___m_EntityManager;
|
|
NullCheck(L_0);
|
|
Material_t18053F08F347D0DCA5E1140EC7EC4533DD8A14E3* L_1;
|
|
L_1 = DecalEntityManager_get_errorMaterial_mF7CE0C1E49520A1DA01F300E2896C63BBAEDD2A3(L_0, NULL);
|
|
return L_1;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// Method Definition Index: 33066
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DecalPreviewPass__ctor_mEA23BEC97CFF1C875C14B9B97DFF661B3CB668BA (DecalPreviewPass_tC8F131FA3853246D09707D85C52494D16B6116B5* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Add_m999CAB0903219BD2CF988827287D44B0B44D69FE_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1__ctor_m21A3AD10EC2C165E8A6A3A533380D5D8BE162787_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_t4673975A297A80D4D4A65EB5A2BE3B6BD1EED9AF_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1__ctor_mC09CE20B08C6A7188EE04F52B6A2E598657A0204_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PassData_t0F7D1F1E94925DC481C5764B997BEC982471D969_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ProfilingSampler_t420D4672EDB44E0EF980B31ADFD9E5747200FECE_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RenderQueueRange_t7518252AA6426B1EA45D3D9B394F304EEF784D71_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralB56C8C04D473A08E6B18DFF1DBD7D31E63788212);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralD565F3F01746A93957C2F52BA872EAFAFDC8A64D);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/DecalPreviewPass.cs:16>
|
|
il2cpp_codegen_runtime_class_init_inline(ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0_il2cpp_TypeInfo_var);
|
|
ScriptableRenderPass__ctor_mE49D4FF8E68A854367A4081E664B8DBA74E6B752(__this, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/DecalPreviewPass.cs:18>
|
|
ScriptableRenderPass_set_renderPassEvent_m63FA581FFDE1C69C2E1358BD0B8DB30275334960_inline(__this, ((int32_t)300), NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/DecalPreviewPass.cs:19>
|
|
ScriptableRenderPass_ConfigureInput_m15D8C10FC37E33CD358F2E9665ECF5515CB9C687_inline(__this, 1, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/DecalPreviewPass.cs:21>
|
|
ProfilingSampler_t420D4672EDB44E0EF980B31ADFD9E5747200FECE* L_0 = (ProfilingSampler_t420D4672EDB44E0EF980B31ADFD9E5747200FECE*)il2cpp_codegen_object_new(ProfilingSampler_t420D4672EDB44E0EF980B31ADFD9E5747200FECE_il2cpp_TypeInfo_var);
|
|
ProfilingSampler__ctor_m26500989FCDB07FA33C9A3BB7F215CBD892F5BB7(L_0, _stringLiteralB56C8C04D473A08E6B18DFF1DBD7D31E63788212, NULL);
|
|
__this->___m_ProfilingSampler = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_ProfilingSampler), (void*)L_0);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/DecalPreviewPass.cs:22>
|
|
il2cpp_codegen_runtime_class_init_inline(RenderQueueRange_t7518252AA6426B1EA45D3D9B394F304EEF784D71_il2cpp_TypeInfo_var);
|
|
RenderQueueRange_t7518252AA6426B1EA45D3D9B394F304EEF784D71 L_1;
|
|
L_1 = RenderQueueRange_get_opaque_m197DF3E6CC12F21B15F3F603EFD640806FCB65D9(NULL);
|
|
Nullable_1_t7D98773CC20A842A0846271D1181ECBB0D95926C L_2;
|
|
memset((&L_2), 0, sizeof(L_2));
|
|
Nullable_1__ctor_mC09CE20B08C6A7188EE04F52B6A2E598657A0204((&L_2), L_1, Nullable_1__ctor_mC09CE20B08C6A7188EE04F52B6A2E598657A0204_RuntimeMethod_var);
|
|
FilteringSettings_t75860B12A7BCF9A0E2F13CB2C2E5DCD9E1EEAD9F L_3;
|
|
memset((&L_3), 0, sizeof(L_3));
|
|
FilteringSettings__ctor_m2A2242373FC7D053CFBBC6814D02AAC73C7B3AE7((&L_3), L_2, (-1), (-1), 0, NULL);
|
|
__this->___m_FilteringSettings = L_3;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/DecalPreviewPass.cs:24>
|
|
List_1_t4673975A297A80D4D4A65EB5A2BE3B6BD1EED9AF* L_4 = (List_1_t4673975A297A80D4D4A65EB5A2BE3B6BD1EED9AF*)il2cpp_codegen_object_new(List_1_t4673975A297A80D4D4A65EB5A2BE3B6BD1EED9AF_il2cpp_TypeInfo_var);
|
|
List_1__ctor_m21A3AD10EC2C165E8A6A3A533380D5D8BE162787(L_4, List_1__ctor_m21A3AD10EC2C165E8A6A3A533380D5D8BE162787_RuntimeMethod_var);
|
|
__this->___m_ShaderTagIdList = L_4;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_ShaderTagIdList), (void*)L_4);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/DecalPreviewPass.cs:25>
|
|
List_1_t4673975A297A80D4D4A65EB5A2BE3B6BD1EED9AF* L_5 = __this->___m_ShaderTagIdList;
|
|
ShaderTagId_t453E2085B5EE9448FF75E550CAB111EFF690ECB0 L_6;
|
|
memset((&L_6), 0, sizeof(L_6));
|
|
ShaderTagId__ctor_m4191968F1D2CE19F9092253EC10F83734A9CFF5B((&L_6), _stringLiteralD565F3F01746A93957C2F52BA872EAFAFDC8A64D, NULL);
|
|
NullCheck(L_5);
|
|
List_1_Add_m999CAB0903219BD2CF988827287D44B0B44D69FE_inline(L_5, L_6, List_1_Add_m999CAB0903219BD2CF988827287D44B0B44D69FE_RuntimeMethod_var);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/DecalPreviewPass.cs:27>
|
|
PassData_t0F7D1F1E94925DC481C5764B997BEC982471D969* L_7 = (PassData_t0F7D1F1E94925DC481C5764B997BEC982471D969*)il2cpp_codegen_object_new(PassData_t0F7D1F1E94925DC481C5764B997BEC982471D969_il2cpp_TypeInfo_var);
|
|
PassData__ctor_m362F709BA478FC9448BA29B0E10A6B4873F61A67(L_7, NULL);
|
|
__this->___m_PassData = L_7;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_PassData), (void*)L_7);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/DecalPreviewPass.cs:28>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 33067
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DecalPreviewPass_Execute_m42DF5428CB1DD396823A36169E6BC1B0A25F01F6 (DecalPreviewPass_tC8F131FA3853246D09707D85C52494D16B6116B5* __this, ScriptableRenderContext_t5AB09B3602BEB456E0DC3D53926D3A3BDAF08E36 ___0_context, RenderingData_tAAA01190551D6D5954314E3E1E85B58DD45EED71* ___1_renderingData, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CommandBufferHelpers_tB8C09D01D6F0369DF52DEA955F017D6001BC72E5_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ContextContainer_Get_TisUniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7_mE62F7903614384541B770CC0B9A99BD2E608A0F8_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ContextContainer_Get_TisUniversalLightData_tCFFFAB4033CD97BE9F339F0C90BB7F98C06FFBA2_m7D529C251F384985900DEA334BC399BAD36BFC8F_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ContextContainer_Get_TisUniversalRenderingData_t045D13A1E051DF623B170223B7CBF1161DDA94E6_m71849CEFB9C023EDE026A0F38CE6044274505C06_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RendererListParams_t13F72282BCE2DC255747FE7694C6BBC3377944B1_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RenderingUtils_t4E40200449A82FA3A172A563C490DF11FADA2BE1_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ScriptableRenderContext_t5AB09B3602BEB456E0DC3D53926D3A3BDAF08E36_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
UniversalRenderingData_t045D13A1E051DF623B170223B7CBF1161DDA94E6* V_0 = NULL;
|
|
UniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7* V_1 = NULL;
|
|
UniversalLightData_tCFFFAB4033CD97BE9F339F0C90BB7F98C06FFBA2* V_2 = NULL;
|
|
int32_t V_3 = 0;
|
|
DrawingSettings_t3B64EB029DB6F94A1F2A9B2D19D2969AE361BB49 V_4;
|
|
memset((&V_4), 0, sizeof(V_4));
|
|
RendererListParams_t13F72282BCE2DC255747FE7694C6BBC3377944B1 V_5;
|
|
memset((&V_5), 0, sizeof(V_5));
|
|
RendererList_t608CE60421616EF4211F5B8AC62E3C36D4BDDF85 V_6;
|
|
memset((&V_6), 0, sizeof(V_6));
|
|
ProfilingScope_t57898BA31E8EF8F083EF84E0DA2737AC61CBC5BD V_7;
|
|
memset((&V_7), 0, sizeof(V_7));
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/DecalPreviewPass.cs:33>
|
|
RenderingData_tAAA01190551D6D5954314E3E1E85B58DD45EED71* L_0 = ___1_renderingData;
|
|
ContextContainer_t384E08F63FABEFF6A7F1A753F5EF02699DAD414C* L_1 = L_0->___frameData;
|
|
NullCheck(L_1);
|
|
UniversalRenderingData_t045D13A1E051DF623B170223B7CBF1161DDA94E6* L_2;
|
|
L_2 = ContextContainer_Get_TisUniversalRenderingData_t045D13A1E051DF623B170223B7CBF1161DDA94E6_m71849CEFB9C023EDE026A0F38CE6044274505C06_inline(L_1, ContextContainer_Get_TisUniversalRenderingData_t045D13A1E051DF623B170223B7CBF1161DDA94E6_m71849CEFB9C023EDE026A0F38CE6044274505C06_RuntimeMethod_var);
|
|
V_0 = L_2;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/DecalPreviewPass.cs:34>
|
|
RenderingData_tAAA01190551D6D5954314E3E1E85B58DD45EED71* L_3 = ___1_renderingData;
|
|
ContextContainer_t384E08F63FABEFF6A7F1A753F5EF02699DAD414C* L_4 = L_3->___frameData;
|
|
NullCheck(L_4);
|
|
UniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7* L_5;
|
|
L_5 = ContextContainer_Get_TisUniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7_mE62F7903614384541B770CC0B9A99BD2E608A0F8_inline(L_4, ContextContainer_Get_TisUniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7_mE62F7903614384541B770CC0B9A99BD2E608A0F8_RuntimeMethod_var);
|
|
V_1 = L_5;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/DecalPreviewPass.cs:35>
|
|
RenderingData_tAAA01190551D6D5954314E3E1E85B58DD45EED71* L_6 = ___1_renderingData;
|
|
ContextContainer_t384E08F63FABEFF6A7F1A753F5EF02699DAD414C* L_7 = L_6->___frameData;
|
|
NullCheck(L_7);
|
|
UniversalLightData_tCFFFAB4033CD97BE9F339F0C90BB7F98C06FFBA2* L_8;
|
|
L_8 = ContextContainer_Get_TisUniversalLightData_tCFFFAB4033CD97BE9F339F0C90BB7F98C06FFBA2_m7D529C251F384985900DEA334BC399BAD36BFC8F_inline(L_7, ContextContainer_Get_TisUniversalLightData_tCFFFAB4033CD97BE9F339F0C90BB7F98C06FFBA2_m7D529C251F384985900DEA334BC399BAD36BFC8F_RuntimeMethod_var);
|
|
V_2 = L_8;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/DecalPreviewPass.cs:38>
|
|
UniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7* L_9 = V_1;
|
|
NullCheck(L_9);
|
|
int32_t L_10 = L_9->___defaultOpaqueSortFlags;
|
|
V_3 = L_10;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/DecalPreviewPass.cs:39>
|
|
List_1_t4673975A297A80D4D4A65EB5A2BE3B6BD1EED9AF* L_11 = __this->___m_ShaderTagIdList;
|
|
UniversalRenderingData_t045D13A1E051DF623B170223B7CBF1161DDA94E6* L_12 = V_0;
|
|
UniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7* L_13 = V_1;
|
|
UniversalLightData_tCFFFAB4033CD97BE9F339F0C90BB7F98C06FFBA2* L_14 = V_2;
|
|
int32_t L_15 = V_3;
|
|
il2cpp_codegen_runtime_class_init_inline(RenderingUtils_t4E40200449A82FA3A172A563C490DF11FADA2BE1_il2cpp_TypeInfo_var);
|
|
DrawingSettings_t3B64EB029DB6F94A1F2A9B2D19D2969AE361BB49 L_16;
|
|
L_16 = RenderingUtils_CreateDrawingSettings_m3DB61D695B8C38BC10DF00E538DCB622F04189A0(L_11, L_12, L_13, L_14, L_15, NULL);
|
|
V_4 = L_16;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/DecalPreviewPass.cs:40>
|
|
UniversalRenderingData_t045D13A1E051DF623B170223B7CBF1161DDA94E6* L_17 = V_0;
|
|
NullCheck(L_17);
|
|
CullingResults_tD6B7EF20B68D47DFF3A99EB2EA73F47F1D460267 L_18 = L_17->___cullResults;
|
|
DrawingSettings_t3B64EB029DB6F94A1F2A9B2D19D2969AE361BB49 L_19 = V_4;
|
|
FilteringSettings_t75860B12A7BCF9A0E2F13CB2C2E5DCD9E1EEAD9F L_20 = __this->___m_FilteringSettings;
|
|
il2cpp_codegen_runtime_class_init_inline(RendererListParams_t13F72282BCE2DC255747FE7694C6BBC3377944B1_il2cpp_TypeInfo_var);
|
|
RendererListParams__ctor_m46CCE38EA66C6F213878BBAE3E058D7AA995D5F7((&V_5), L_18, L_19, L_20, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/DecalPreviewPass.cs:41>
|
|
il2cpp_codegen_runtime_class_init_inline(ScriptableRenderContext_t5AB09B3602BEB456E0DC3D53926D3A3BDAF08E36_il2cpp_TypeInfo_var);
|
|
RendererList_t608CE60421616EF4211F5B8AC62E3C36D4BDDF85 L_21;
|
|
L_21 = ScriptableRenderContext_CreateRendererList_mBF2F8A1EA796B87CBBAAC245133F2961D52A9BFA((&___0_context), (&V_5), NULL);
|
|
V_6 = L_21;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/DecalPreviewPass.cs:42>
|
|
UniversalRenderingData_t045D13A1E051DF623B170223B7CBF1161DDA94E6* L_22 = V_0;
|
|
NullCheck(L_22);
|
|
CommandBuffer_tB56007DC84EF56296C325EC32DD12AC1E3DC91F7* L_23;
|
|
L_23 = UniversalRenderingData_get_commandBuffer_m8397484CEAB1A0D725DEA8A85C9B955E2B4007F8(L_22, NULL);
|
|
ProfilingSampler_t420D4672EDB44E0EF980B31ADFD9E5747200FECE* L_24 = __this->___m_ProfilingSampler;
|
|
ProfilingScope__ctor_mE15813DF7651C1A3B6AFD6465AD4B973E8F1DBFC((&V_7), L_23, L_24, NULL);
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_0089:
|
|
{
|
|
ProfilingScope_Dispose_m4231A2ACA1F8E345BB0078310A9F7601704C8BE4((&V_7), NULL);
|
|
return;
|
|
}
|
|
});
|
|
try
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/DecalPreviewPass.cs:44>
|
|
UniversalRenderingData_t045D13A1E051DF623B170223B7CBF1161DDA94E6* L_25 = V_0;
|
|
NullCheck(L_25);
|
|
CommandBuffer_tB56007DC84EF56296C325EC32DD12AC1E3DC91F7* L_26;
|
|
L_26 = UniversalRenderingData_get_commandBuffer_m8397484CEAB1A0D725DEA8A85C9B955E2B4007F8(L_25, NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(CommandBufferHelpers_tB8C09D01D6F0369DF52DEA955F017D6001BC72E5_il2cpp_TypeInfo_var);
|
|
RasterCommandBuffer_t4300C4F080EA3CF43C7ACFDBD4F94EA633FE98E8* L_27;
|
|
L_27 = CommandBufferHelpers_GetRasterCommandBuffer_m6086D650343F166614B3FB5ED89D63DE8F85C42B_inline(L_26, NULL);
|
|
PassData_t0F7D1F1E94925DC481C5764B997BEC982471D969* L_28 = __this->___m_PassData;
|
|
RendererList_t608CE60421616EF4211F5B8AC62E3C36D4BDDF85 L_29 = V_6;
|
|
DecalPreviewPass_ExecutePass_m9F9DEA92A7BC03137B1207BE54B94BB7821CA80A(L_27, L_28, L_29, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/DecalPreviewPass.cs:45>
|
|
goto IL_0097;
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_0097:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/DecalPreviewPass.cs:46>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 33068
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DecalPreviewPass_ExecutePass_m9F9DEA92A7BC03137B1207BE54B94BB7821CA80A (RasterCommandBuffer_t4300C4F080EA3CF43C7ACFDBD4F94EA633FE98E8* ___0_cmd, PassData_t0F7D1F1E94925DC481C5764B997BEC982471D969* ___1_passData, RendererList_t608CE60421616EF4211F5B8AC62E3C36D4BDDF85 ___2_rendererList, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/DecalPreviewPass.cs:51>
|
|
RasterCommandBuffer_t4300C4F080EA3CF43C7ACFDBD4F94EA633FE98E8* L_0 = ___0_cmd;
|
|
RendererList_t608CE60421616EF4211F5B8AC62E3C36D4BDDF85 L_1 = ___2_rendererList;
|
|
NullCheck(L_0);
|
|
RasterCommandBuffer_DrawRendererList_m6C50C4A5E4CABE3542317969BC91F552B41A427F(L_0, L_1, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/DecalPreviewPass.cs:53>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 33069
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DecalPreviewPass_RecordRenderGraph_m6A233CBBC20ACC50DDB33BBE1A830B947FC1834C (DecalPreviewPass_tC8F131FA3853246D09707D85C52494D16B6116B5* __this, RenderGraph_t73ECE03B3CA3D0D17F1448D64AE020E81592AA1E* ___0_renderGraph, ContextContainer_t384E08F63FABEFF6A7F1A753F5EF02699DAD414C* ___1_frameData, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&BaseRenderFunc_2_tEE48E9E21762BFE07AE97EF2E3E0E79793067606_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ContextContainer_Get_TisUniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7_mE62F7903614384541B770CC0B9A99BD2E608A0F8_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ContextContainer_Get_TisUniversalLightData_tCFFFAB4033CD97BE9F339F0C90BB7F98C06FFBA2_m7D529C251F384985900DEA334BC399BAD36BFC8F_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ContextContainer_Get_TisUniversalRenderingData_t045D13A1E051DF623B170223B7CBF1161DDA94E6_m71849CEFB9C023EDE026A0F38CE6044274505C06_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ContextContainer_Get_TisUniversalResourceData_t1F1DE4101BE122578EAA5E4750D00ACAF1042626_m1CAD9250ED48A65B3DE774336F9221928EB054B4_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IBaseRenderGraphBuilder_tFFF84F72F862F1BE246A789AB6A59F959B490F3D_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IRasterRenderGraphBuilder_SetRenderFunc_TisPassData_t0F7D1F1E94925DC481C5764B997BEC982471D969_m07537D39B3DBA2C8E11842A0DA12DD7B2A903530_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IRasterRenderGraphBuilder_t607F94718848D836CFEEF0DE553E4A79CABD9372_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RenderGraph_AddRasterRenderPass_TisPassData_t0F7D1F1E94925DC481C5764B997BEC982471D969_m28F491F231919F5CED432FD84E0618A9E06FCF86_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RendererListParams_t13F72282BCE2DC255747FE7694C6BBC3377944B1_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RenderingUtils_t4E40200449A82FA3A172A563C490DF11FADA2BE1_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec_U3CRecordRenderGraphU3Eb__8_0_m1B070B214EB858B612D68F284FB27326D06B1404_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec_tFB39F0BD639048162C0147869970658EACB36812_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UniversalRenderer_t31019D4AD52F646128E0D1649E7B87E33BA36D8A_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral00394E91773E36676FB3A8C2584B82CCCE3C7E4E);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral15EC429DD574B86A8F701D47205C0301DB968353);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
RuntimeObject* V_0 = NULL;
|
|
PassData_t0F7D1F1E94925DC481C5764B997BEC982471D969* V_1 = NULL;
|
|
UniversalResourceData_t1F1DE4101BE122578EAA5E4750D00ACAF1042626* V_2 = NULL;
|
|
UniversalRenderingData_t045D13A1E051DF623B170223B7CBF1161DDA94E6* V_3 = NULL;
|
|
UniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7* V_4 = NULL;
|
|
UniversalLightData_tCFFFAB4033CD97BE9F339F0C90BB7F98C06FFBA2* V_5 = NULL;
|
|
int32_t V_6 = 0;
|
|
DrawingSettings_t3B64EB029DB6F94A1F2A9B2D19D2969AE361BB49 V_7;
|
|
memset((&V_7), 0, sizeof(V_7));
|
|
RendererListParams_t13F72282BCE2DC255747FE7694C6BBC3377944B1 V_8;
|
|
memset((&V_8), 0, sizeof(V_8));
|
|
BaseRenderFunc_2_tEE48E9E21762BFE07AE97EF2E3E0E79793067606* G_B3_0 = NULL;
|
|
RuntimeObject* G_B3_1 = NULL;
|
|
BaseRenderFunc_2_tEE48E9E21762BFE07AE97EF2E3E0E79793067606* G_B2_0 = NULL;
|
|
RuntimeObject* G_B2_1 = NULL;
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/DecalPreviewPass.cs:62>
|
|
RenderGraph_t73ECE03B3CA3D0D17F1448D64AE020E81592AA1E* L_0 = ___0_renderGraph;
|
|
ProfilingSampler_t420D4672EDB44E0EF980B31ADFD9E5747200FECE* L_1 = __this->___m_ProfilingSampler;
|
|
NullCheck(L_0);
|
|
RuntimeObject* L_2;
|
|
L_2 = RenderGraph_AddRasterRenderPass_TisPassData_t0F7D1F1E94925DC481C5764B997BEC982471D969_m28F491F231919F5CED432FD84E0618A9E06FCF86(L_0, _stringLiteral00394E91773E36676FB3A8C2584B82CCCE3C7E4E, (&V_1), L_1, _stringLiteral15EC429DD574B86A8F701D47205C0301DB968353, ((int32_t)62), RenderGraph_AddRasterRenderPass_TisPassData_t0F7D1F1E94925DC481C5764B997BEC982471D969_m28F491F231919F5CED432FD84E0618A9E06FCF86_RuntimeMethod_var);
|
|
V_0 = L_2;
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_00d4:
|
|
{
|
|
{
|
|
RuntimeObject* L_3 = V_0;
|
|
if (!L_3)
|
|
{
|
|
goto IL_00dd;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_4 = V_0;
|
|
NullCheck(L_4);
|
|
InterfaceActionInvoker0::Invoke(0, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, L_4);
|
|
}
|
|
|
|
IL_00dd:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
});
|
|
try
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/DecalPreviewPass.cs:64>
|
|
ContextContainer_t384E08F63FABEFF6A7F1A753F5EF02699DAD414C* L_5 = ___1_frameData;
|
|
NullCheck(L_5);
|
|
UniversalResourceData_t1F1DE4101BE122578EAA5E4750D00ACAF1042626* L_6;
|
|
L_6 = ContextContainer_Get_TisUniversalResourceData_t1F1DE4101BE122578EAA5E4750D00ACAF1042626_m1CAD9250ED48A65B3DE774336F9221928EB054B4_inline(L_5, ContextContainer_Get_TisUniversalResourceData_t1F1DE4101BE122578EAA5E4750D00ACAF1042626_m1CAD9250ED48A65B3DE774336F9221928EB054B4_RuntimeMethod_var);
|
|
V_2 = L_6;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/DecalPreviewPass.cs:65>
|
|
ContextContainer_t384E08F63FABEFF6A7F1A753F5EF02699DAD414C* L_7 = ___1_frameData;
|
|
NullCheck(L_7);
|
|
UniversalRenderingData_t045D13A1E051DF623B170223B7CBF1161DDA94E6* L_8;
|
|
L_8 = ContextContainer_Get_TisUniversalRenderingData_t045D13A1E051DF623B170223B7CBF1161DDA94E6_m71849CEFB9C023EDE026A0F38CE6044274505C06_inline(L_7, ContextContainer_Get_TisUniversalRenderingData_t045D13A1E051DF623B170223B7CBF1161DDA94E6_m71849CEFB9C023EDE026A0F38CE6044274505C06_RuntimeMethod_var);
|
|
V_3 = L_8;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/DecalPreviewPass.cs:66>
|
|
ContextContainer_t384E08F63FABEFF6A7F1A753F5EF02699DAD414C* L_9 = ___1_frameData;
|
|
NullCheck(L_9);
|
|
UniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7* L_10;
|
|
L_10 = ContextContainer_Get_TisUniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7_mE62F7903614384541B770CC0B9A99BD2E608A0F8_inline(L_9, ContextContainer_Get_TisUniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7_mE62F7903614384541B770CC0B9A99BD2E608A0F8_RuntimeMethod_var);
|
|
V_4 = L_10;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/DecalPreviewPass.cs:67>
|
|
ContextContainer_t384E08F63FABEFF6A7F1A753F5EF02699DAD414C* L_11 = ___1_frameData;
|
|
NullCheck(L_11);
|
|
UniversalLightData_tCFFFAB4033CD97BE9F339F0C90BB7F98C06FFBA2* L_12;
|
|
L_12 = ContextContainer_Get_TisUniversalLightData_tCFFFAB4033CD97BE9F339F0C90BB7F98C06FFBA2_m7D529C251F384985900DEA334BC399BAD36BFC8F_inline(L_11, ContextContainer_Get_TisUniversalLightData_tCFFFAB4033CD97BE9F339F0C90BB7F98C06FFBA2_m7D529C251F384985900DEA334BC399BAD36BFC8F_RuntimeMethod_var);
|
|
V_5 = L_12;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/DecalPreviewPass.cs:69>
|
|
UniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7* L_13 = V_4;
|
|
NullCheck(L_13);
|
|
ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892* L_14 = L_13->___renderer;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/DecalPreviewPass.cs:71>
|
|
RuntimeObject* L_15 = V_0;
|
|
UniversalResourceData_t1F1DE4101BE122578EAA5E4750D00ACAF1042626* L_16 = V_2;
|
|
NullCheck(L_16);
|
|
TextureHandle_t680ABA3F8B50859351BA5DD66220084F87F37388 L_17;
|
|
L_17 = UniversalResourceData_get_activeColorTexture_m1B7A0CE5B0282F05AEAE46AC7B45478199DF9188(L_16, NULL);
|
|
NullCheck(L_15);
|
|
InterfaceActionInvoker3< TextureHandle_t680ABA3F8B50859351BA5DD66220084F87F37388, int32_t, int32_t >::Invoke(0, IRasterRenderGraphBuilder_t607F94718848D836CFEEF0DE553E4A79CABD9372_il2cpp_TypeInfo_var, L_15, L_17, 0, 2);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/DecalPreviewPass.cs:72>
|
|
RuntimeObject* L_18 = V_0;
|
|
UniversalResourceData_t1F1DE4101BE122578EAA5E4750D00ACAF1042626* L_19 = V_2;
|
|
NullCheck(L_19);
|
|
TextureHandle_t680ABA3F8B50859351BA5DD66220084F87F37388 L_20;
|
|
L_20 = UniversalResourceData_get_activeDepthTexture_mCE3930EAEF20F80A0EA1F4CE423E6E406E25F296(L_19, NULL);
|
|
NullCheck(L_18);
|
|
InterfaceActionInvoker2< TextureHandle_t680ABA3F8B50859351BA5DD66220084F87F37388, int32_t >::Invoke(4, IRasterRenderGraphBuilder_t607F94718848D836CFEEF0DE553E4A79CABD9372_il2cpp_TypeInfo_var, L_18, L_20, 1);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/DecalPreviewPass.cs:74>
|
|
UniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7* L_21 = V_4;
|
|
NullCheck(L_21);
|
|
int32_t L_22 = L_21->___defaultOpaqueSortFlags;
|
|
V_6 = L_22;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/DecalPreviewPass.cs:75>
|
|
List_1_t4673975A297A80D4D4A65EB5A2BE3B6BD1EED9AF* L_23 = __this->___m_ShaderTagIdList;
|
|
UniversalRenderingData_t045D13A1E051DF623B170223B7CBF1161DDA94E6* L_24 = V_3;
|
|
UniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7* L_25 = V_4;
|
|
UniversalLightData_tCFFFAB4033CD97BE9F339F0C90BB7F98C06FFBA2* L_26 = V_5;
|
|
int32_t L_27 = V_6;
|
|
il2cpp_codegen_runtime_class_init_inline(RenderingUtils_t4E40200449A82FA3A172A563C490DF11FADA2BE1_il2cpp_TypeInfo_var);
|
|
DrawingSettings_t3B64EB029DB6F94A1F2A9B2D19D2969AE361BB49 L_28;
|
|
L_28 = RenderingUtils_CreateDrawingSettings_m3DB61D695B8C38BC10DF00E538DCB622F04189A0(L_23, L_24, L_25, L_26, L_27, NULL);
|
|
V_7 = L_28;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/DecalPreviewPass.cs:76>
|
|
UniversalRenderingData_t045D13A1E051DF623B170223B7CBF1161DDA94E6* L_29 = V_3;
|
|
NullCheck(L_29);
|
|
CullingResults_tD6B7EF20B68D47DFF3A99EB2EA73F47F1D460267 L_30 = L_29->___cullResults;
|
|
DrawingSettings_t3B64EB029DB6F94A1F2A9B2D19D2969AE361BB49 L_31 = V_7;
|
|
FilteringSettings_t75860B12A7BCF9A0E2F13CB2C2E5DCD9E1EEAD9F L_32 = __this->___m_FilteringSettings;
|
|
il2cpp_codegen_runtime_class_init_inline(RendererListParams_t13F72282BCE2DC255747FE7694C6BBC3377944B1_il2cpp_TypeInfo_var);
|
|
RendererListParams__ctor_m46CCE38EA66C6F213878BBAE3E058D7AA995D5F7((&V_8), L_30, L_31, L_32, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/DecalPreviewPass.cs:77>
|
|
PassData_t0F7D1F1E94925DC481C5764B997BEC982471D969* L_33 = V_1;
|
|
RenderGraph_t73ECE03B3CA3D0D17F1448D64AE020E81592AA1E* L_34 = ___0_renderGraph;
|
|
NullCheck(L_34);
|
|
RendererListHandle_t2DFC72A560B979AE0BAFBABBD8B9AF5DC1FEFEBA L_35;
|
|
L_35 = RenderGraph_CreateRendererList_m7A5DCFC7F4A8A38BB0FC4E41BAE77FD5590B4F42(L_34, (&V_8), NULL);
|
|
NullCheck(L_33);
|
|
L_33->___rendererList = L_35;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/DecalPreviewPass.cs:78>
|
|
RuntimeObject* L_36 = V_0;
|
|
PassData_t0F7D1F1E94925DC481C5764B997BEC982471D969* L_37 = V_1;
|
|
NullCheck(L_37);
|
|
RendererListHandle_t2DFC72A560B979AE0BAFBABBD8B9AF5DC1FEFEBA* L_38 = (RendererListHandle_t2DFC72A560B979AE0BAFBABBD8B9AF5DC1FEFEBA*)(&L_37->___rendererList);
|
|
NullCheck(L_36);
|
|
InterfaceActionInvoker1< RendererListHandle_t2DFC72A560B979AE0BAFBABBD8B9AF5DC1FEFEBA* >::Invoke(9, IBaseRenderGraphBuilder_tFFF84F72F862F1BE246A789AB6A59F959B490F3D_il2cpp_TypeInfo_var, L_36, L_38);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/DecalPreviewPass.cs:80>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/DecalPreviewPass.cs:81>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/DecalPreviewPass.cs:82>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/DecalPreviewPass.cs:83>
|
|
RuntimeObject* L_39 = V_0;
|
|
il2cpp_codegen_runtime_class_init_inline(U3CU3Ec_tFB39F0BD639048162C0147869970658EACB36812_il2cpp_TypeInfo_var);
|
|
BaseRenderFunc_2_tEE48E9E21762BFE07AE97EF2E3E0E79793067606* L_40 = ((U3CU3Ec_tFB39F0BD639048162C0147869970658EACB36812_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_tFB39F0BD639048162C0147869970658EACB36812_il2cpp_TypeInfo_var))->___U3CU3E9__8_0;
|
|
BaseRenderFunc_2_tEE48E9E21762BFE07AE97EF2E3E0E79793067606* L_41 = L_40;
|
|
if (L_41)
|
|
{
|
|
G_B3_0 = L_41;
|
|
G_B3_1 = L_39;
|
|
goto IL_00cd_1;
|
|
}
|
|
G_B2_0 = L_41;
|
|
G_B2_1 = L_39;
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(U3CU3Ec_tFB39F0BD639048162C0147869970658EACB36812_il2cpp_TypeInfo_var);
|
|
U3CU3Ec_tFB39F0BD639048162C0147869970658EACB36812* L_42 = ((U3CU3Ec_tFB39F0BD639048162C0147869970658EACB36812_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_tFB39F0BD639048162C0147869970658EACB36812_il2cpp_TypeInfo_var))->___U3CU3E9;
|
|
BaseRenderFunc_2_tEE48E9E21762BFE07AE97EF2E3E0E79793067606* L_43 = (BaseRenderFunc_2_tEE48E9E21762BFE07AE97EF2E3E0E79793067606*)il2cpp_codegen_object_new(BaseRenderFunc_2_tEE48E9E21762BFE07AE97EF2E3E0E79793067606_il2cpp_TypeInfo_var);
|
|
BaseRenderFunc_2__ctor_mB3494A5C200BFAE64AFE4676D92DE9C51F770A29(L_43, L_42, (intptr_t)((void*)U3CU3Ec_U3CRecordRenderGraphU3Eb__8_0_m1B070B214EB858B612D68F284FB27326D06B1404_RuntimeMethod_var), NULL);
|
|
BaseRenderFunc_2_tEE48E9E21762BFE07AE97EF2E3E0E79793067606* L_44 = L_43;
|
|
((U3CU3Ec_tFB39F0BD639048162C0147869970658EACB36812_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_tFB39F0BD639048162C0147869970658EACB36812_il2cpp_TypeInfo_var))->___U3CU3E9__8_0 = L_44;
|
|
Il2CppCodeGenWriteBarrier((void**)(&((U3CU3Ec_tFB39F0BD639048162C0147869970658EACB36812_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_tFB39F0BD639048162C0147869970658EACB36812_il2cpp_TypeInfo_var))->___U3CU3E9__8_0), (void*)L_44);
|
|
G_B3_0 = L_44;
|
|
G_B3_1 = G_B2_1;
|
|
}
|
|
|
|
IL_00cd_1:
|
|
{
|
|
NullCheck(G_B3_1);
|
|
GenericInterfaceActionInvoker1< BaseRenderFunc_2_tEE48E9E21762BFE07AE97EF2E3E0E79793067606* >::Invoke(IRasterRenderGraphBuilder_SetRenderFunc_TisPassData_t0F7D1F1E94925DC481C5764B997BEC982471D969_m07537D39B3DBA2C8E11842A0DA12DD7B2A903530_RuntimeMethod_var, G_B3_1, G_B3_0);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/DecalPreviewPass.cs:84>
|
|
goto IL_00de;
|
|
}
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_00de:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/DecalPreviewPass.cs:85>
|
|
return;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// Method Definition Index: 33070
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PassData__ctor_m362F709BA478FC9448BA29B0E10A6B4873F61A67 (PassData_t0F7D1F1E94925DC481C5764B997BEC982471D969* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
|
|
return;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// Method Definition Index: 33071
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__cctor_m949894D47D600EA28CEC5935821EE8F60DC8D4C2 (const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec_tFB39F0BD639048162C0147869970658EACB36812_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
U3CU3Ec_tFB39F0BD639048162C0147869970658EACB36812* L_0 = (U3CU3Ec_tFB39F0BD639048162C0147869970658EACB36812*)il2cpp_codegen_object_new(U3CU3Ec_tFB39F0BD639048162C0147869970658EACB36812_il2cpp_TypeInfo_var);
|
|
U3CU3Ec__ctor_m364B4E80E11809D5C38DC97BC665089850151491(L_0, NULL);
|
|
((U3CU3Ec_tFB39F0BD639048162C0147869970658EACB36812_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_tFB39F0BD639048162C0147869970658EACB36812_il2cpp_TypeInfo_var))->___U3CU3E9 = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&((U3CU3Ec_tFB39F0BD639048162C0147869970658EACB36812_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_tFB39F0BD639048162C0147869970658EACB36812_il2cpp_TypeInfo_var))->___U3CU3E9), (void*)L_0);
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 33072
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__ctor_m364B4E80E11809D5C38DC97BC665089850151491 (U3CU3Ec_tFB39F0BD639048162C0147869970658EACB36812* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 33073
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec_U3CRecordRenderGraphU3Eb__8_0_m1B070B214EB858B612D68F284FB27326D06B1404 (U3CU3Ec_tFB39F0BD639048162C0147869970658EACB36812* __this, PassData_t0F7D1F1E94925DC481C5764B997BEC982471D969* ___0_data, RasterGraphContext_tC4D3E53FF7131476487751ACB0237D56C8327147 ___1_rgContext, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/DecalPreviewPass.cs:82>
|
|
RasterGraphContext_tC4D3E53FF7131476487751ACB0237D56C8327147 L_0 = ___1_rgContext;
|
|
RasterCommandBuffer_t4300C4F080EA3CF43C7ACFDBD4F94EA633FE98E8* L_1 = L_0.___cmd;
|
|
PassData_t0F7D1F1E94925DC481C5764B997BEC982471D969* L_2 = ___0_data;
|
|
PassData_t0F7D1F1E94925DC481C5764B997BEC982471D969* L_3 = ___0_data;
|
|
NullCheck(L_3);
|
|
RendererListHandle_t2DFC72A560B979AE0BAFBABBD8B9AF5DC1FEFEBA L_4 = L_3->___rendererList;
|
|
RendererList_t608CE60421616EF4211F5B8AC62E3C36D4BDDF85 L_5;
|
|
L_5 = RendererListHandle_op_Implicit_m23F3E49F9D97B0BABE1044E02A7A70784F05C585(L_4, NULL);
|
|
DecalPreviewPass_ExecutePass_m9F9DEA92A7BC03137B1207BE54B94BB7821CA80A(L_1, L_2, L_5, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/DecalPreviewPass.cs:83>
|
|
return;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// Method Definition Index: 33074
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DecalProjector_add_onDecalAdd_mA05977518FA839F3F0D1BA4D17D517A8356AB49D (DecalProjectorAction_tDFCBDEE542B3D640BD121E036275AA51A003CF5C* ___0_value, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DecalProjectorAction_tDFCBDEE542B3D640BD121E036275AA51A003CF5C_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DecalProjector_tE7CEBAABFEF36162FD325321C1F94173CEFEDF64_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
DecalProjectorAction_tDFCBDEE542B3D640BD121E036275AA51A003CF5C* V_0 = NULL;
|
|
DecalProjectorAction_tDFCBDEE542B3D640BD121E036275AA51A003CF5C* V_1 = NULL;
|
|
DecalProjectorAction_tDFCBDEE542B3D640BD121E036275AA51A003CF5C* V_2 = NULL;
|
|
{
|
|
DecalProjectorAction_tDFCBDEE542B3D640BD121E036275AA51A003CF5C* L_0 = ((DecalProjector_tE7CEBAABFEF36162FD325321C1F94173CEFEDF64_StaticFields*)il2cpp_codegen_static_fields_for(DecalProjector_tE7CEBAABFEF36162FD325321C1F94173CEFEDF64_il2cpp_TypeInfo_var))->___onDecalAdd;
|
|
V_0 = L_0;
|
|
}
|
|
|
|
IL_0006:
|
|
{
|
|
DecalProjectorAction_tDFCBDEE542B3D640BD121E036275AA51A003CF5C* L_1 = V_0;
|
|
V_1 = L_1;
|
|
DecalProjectorAction_tDFCBDEE542B3D640BD121E036275AA51A003CF5C* L_2 = V_1;
|
|
DecalProjectorAction_tDFCBDEE542B3D640BD121E036275AA51A003CF5C* L_3 = ___0_value;
|
|
Delegate_t* L_4;
|
|
L_4 = Delegate_Combine_m1F725AEF318BE6F0426863490691A6F4606E7D00(L_2, L_3, NULL);
|
|
V_2 = ((DecalProjectorAction_tDFCBDEE542B3D640BD121E036275AA51A003CF5C*)CastclassSealed((RuntimeObject*)L_4, DecalProjectorAction_tDFCBDEE542B3D640BD121E036275AA51A003CF5C_il2cpp_TypeInfo_var));
|
|
DecalProjectorAction_tDFCBDEE542B3D640BD121E036275AA51A003CF5C* L_5 = V_2;
|
|
DecalProjectorAction_tDFCBDEE542B3D640BD121E036275AA51A003CF5C* L_6 = V_1;
|
|
DecalProjectorAction_tDFCBDEE542B3D640BD121E036275AA51A003CF5C* L_7;
|
|
L_7 = InterlockedCompareExchangeImpl<DecalProjectorAction_tDFCBDEE542B3D640BD121E036275AA51A003CF5C*>((&((DecalProjector_tE7CEBAABFEF36162FD325321C1F94173CEFEDF64_StaticFields*)il2cpp_codegen_static_fields_for(DecalProjector_tE7CEBAABFEF36162FD325321C1F94173CEFEDF64_il2cpp_TypeInfo_var))->___onDecalAdd), L_5, L_6);
|
|
V_0 = L_7;
|
|
DecalProjectorAction_tDFCBDEE542B3D640BD121E036275AA51A003CF5C* L_8 = V_0;
|
|
DecalProjectorAction_tDFCBDEE542B3D640BD121E036275AA51A003CF5C* L_9 = V_1;
|
|
if ((!(((RuntimeObject*)(DecalProjectorAction_tDFCBDEE542B3D640BD121E036275AA51A003CF5C*)L_8) == ((RuntimeObject*)(DecalProjectorAction_tDFCBDEE542B3D640BD121E036275AA51A003CF5C*)L_9))))
|
|
{
|
|
goto IL_0006;
|
|
}
|
|
}
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 33075
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DecalProjector_remove_onDecalAdd_mCF842A6859ECCA72D57D3CD3BC88592DAE550788 (DecalProjectorAction_tDFCBDEE542B3D640BD121E036275AA51A003CF5C* ___0_value, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DecalProjectorAction_tDFCBDEE542B3D640BD121E036275AA51A003CF5C_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DecalProjector_tE7CEBAABFEF36162FD325321C1F94173CEFEDF64_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
DecalProjectorAction_tDFCBDEE542B3D640BD121E036275AA51A003CF5C* V_0 = NULL;
|
|
DecalProjectorAction_tDFCBDEE542B3D640BD121E036275AA51A003CF5C* V_1 = NULL;
|
|
DecalProjectorAction_tDFCBDEE542B3D640BD121E036275AA51A003CF5C* V_2 = NULL;
|
|
{
|
|
DecalProjectorAction_tDFCBDEE542B3D640BD121E036275AA51A003CF5C* L_0 = ((DecalProjector_tE7CEBAABFEF36162FD325321C1F94173CEFEDF64_StaticFields*)il2cpp_codegen_static_fields_for(DecalProjector_tE7CEBAABFEF36162FD325321C1F94173CEFEDF64_il2cpp_TypeInfo_var))->___onDecalAdd;
|
|
V_0 = L_0;
|
|
}
|
|
|
|
IL_0006:
|
|
{
|
|
DecalProjectorAction_tDFCBDEE542B3D640BD121E036275AA51A003CF5C* L_1 = V_0;
|
|
V_1 = L_1;
|
|
DecalProjectorAction_tDFCBDEE542B3D640BD121E036275AA51A003CF5C* L_2 = V_1;
|
|
DecalProjectorAction_tDFCBDEE542B3D640BD121E036275AA51A003CF5C* L_3 = ___0_value;
|
|
Delegate_t* L_4;
|
|
L_4 = Delegate_Remove_m8B7DD5661308FA972E23CA1CC3FC9CEB355504E3(L_2, L_3, NULL);
|
|
V_2 = ((DecalProjectorAction_tDFCBDEE542B3D640BD121E036275AA51A003CF5C*)CastclassSealed((RuntimeObject*)L_4, DecalProjectorAction_tDFCBDEE542B3D640BD121E036275AA51A003CF5C_il2cpp_TypeInfo_var));
|
|
DecalProjectorAction_tDFCBDEE542B3D640BD121E036275AA51A003CF5C* L_5 = V_2;
|
|
DecalProjectorAction_tDFCBDEE542B3D640BD121E036275AA51A003CF5C* L_6 = V_1;
|
|
DecalProjectorAction_tDFCBDEE542B3D640BD121E036275AA51A003CF5C* L_7;
|
|
L_7 = InterlockedCompareExchangeImpl<DecalProjectorAction_tDFCBDEE542B3D640BD121E036275AA51A003CF5C*>((&((DecalProjector_tE7CEBAABFEF36162FD325321C1F94173CEFEDF64_StaticFields*)il2cpp_codegen_static_fields_for(DecalProjector_tE7CEBAABFEF36162FD325321C1F94173CEFEDF64_il2cpp_TypeInfo_var))->___onDecalAdd), L_5, L_6);
|
|
V_0 = L_7;
|
|
DecalProjectorAction_tDFCBDEE542B3D640BD121E036275AA51A003CF5C* L_8 = V_0;
|
|
DecalProjectorAction_tDFCBDEE542B3D640BD121E036275AA51A003CF5C* L_9 = V_1;
|
|
if ((!(((RuntimeObject*)(DecalProjectorAction_tDFCBDEE542B3D640BD121E036275AA51A003CF5C*)L_8) == ((RuntimeObject*)(DecalProjectorAction_tDFCBDEE542B3D640BD121E036275AA51A003CF5C*)L_9))))
|
|
{
|
|
goto IL_0006;
|
|
}
|
|
}
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 33076
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DecalProjector_add_onDecalRemove_m531C4E7FDFCF3DD57E0746261249BA8D7D8F449A (DecalProjectorAction_tDFCBDEE542B3D640BD121E036275AA51A003CF5C* ___0_value, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DecalProjectorAction_tDFCBDEE542B3D640BD121E036275AA51A003CF5C_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DecalProjector_tE7CEBAABFEF36162FD325321C1F94173CEFEDF64_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
DecalProjectorAction_tDFCBDEE542B3D640BD121E036275AA51A003CF5C* V_0 = NULL;
|
|
DecalProjectorAction_tDFCBDEE542B3D640BD121E036275AA51A003CF5C* V_1 = NULL;
|
|
DecalProjectorAction_tDFCBDEE542B3D640BD121E036275AA51A003CF5C* V_2 = NULL;
|
|
{
|
|
DecalProjectorAction_tDFCBDEE542B3D640BD121E036275AA51A003CF5C* L_0 = ((DecalProjector_tE7CEBAABFEF36162FD325321C1F94173CEFEDF64_StaticFields*)il2cpp_codegen_static_fields_for(DecalProjector_tE7CEBAABFEF36162FD325321C1F94173CEFEDF64_il2cpp_TypeInfo_var))->___onDecalRemove;
|
|
V_0 = L_0;
|
|
}
|
|
|
|
IL_0006:
|
|
{
|
|
DecalProjectorAction_tDFCBDEE542B3D640BD121E036275AA51A003CF5C* L_1 = V_0;
|
|
V_1 = L_1;
|
|
DecalProjectorAction_tDFCBDEE542B3D640BD121E036275AA51A003CF5C* L_2 = V_1;
|
|
DecalProjectorAction_tDFCBDEE542B3D640BD121E036275AA51A003CF5C* L_3 = ___0_value;
|
|
Delegate_t* L_4;
|
|
L_4 = Delegate_Combine_m1F725AEF318BE6F0426863490691A6F4606E7D00(L_2, L_3, NULL);
|
|
V_2 = ((DecalProjectorAction_tDFCBDEE542B3D640BD121E036275AA51A003CF5C*)CastclassSealed((RuntimeObject*)L_4, DecalProjectorAction_tDFCBDEE542B3D640BD121E036275AA51A003CF5C_il2cpp_TypeInfo_var));
|
|
DecalProjectorAction_tDFCBDEE542B3D640BD121E036275AA51A003CF5C* L_5 = V_2;
|
|
DecalProjectorAction_tDFCBDEE542B3D640BD121E036275AA51A003CF5C* L_6 = V_1;
|
|
DecalProjectorAction_tDFCBDEE542B3D640BD121E036275AA51A003CF5C* L_7;
|
|
L_7 = InterlockedCompareExchangeImpl<DecalProjectorAction_tDFCBDEE542B3D640BD121E036275AA51A003CF5C*>((&((DecalProjector_tE7CEBAABFEF36162FD325321C1F94173CEFEDF64_StaticFields*)il2cpp_codegen_static_fields_for(DecalProjector_tE7CEBAABFEF36162FD325321C1F94173CEFEDF64_il2cpp_TypeInfo_var))->___onDecalRemove), L_5, L_6);
|
|
V_0 = L_7;
|
|
DecalProjectorAction_tDFCBDEE542B3D640BD121E036275AA51A003CF5C* L_8 = V_0;
|
|
DecalProjectorAction_tDFCBDEE542B3D640BD121E036275AA51A003CF5C* L_9 = V_1;
|
|
if ((!(((RuntimeObject*)(DecalProjectorAction_tDFCBDEE542B3D640BD121E036275AA51A003CF5C*)L_8) == ((RuntimeObject*)(DecalProjectorAction_tDFCBDEE542B3D640BD121E036275AA51A003CF5C*)L_9))))
|
|
{
|
|
goto IL_0006;
|
|
}
|
|
}
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 33077
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DecalProjector_remove_onDecalRemove_mE9C2DBE62BD5C5D25666F0F6BBD77F4DF79BBDD2 (DecalProjectorAction_tDFCBDEE542B3D640BD121E036275AA51A003CF5C* ___0_value, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DecalProjectorAction_tDFCBDEE542B3D640BD121E036275AA51A003CF5C_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DecalProjector_tE7CEBAABFEF36162FD325321C1F94173CEFEDF64_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
DecalProjectorAction_tDFCBDEE542B3D640BD121E036275AA51A003CF5C* V_0 = NULL;
|
|
DecalProjectorAction_tDFCBDEE542B3D640BD121E036275AA51A003CF5C* V_1 = NULL;
|
|
DecalProjectorAction_tDFCBDEE542B3D640BD121E036275AA51A003CF5C* V_2 = NULL;
|
|
{
|
|
DecalProjectorAction_tDFCBDEE542B3D640BD121E036275AA51A003CF5C* L_0 = ((DecalProjector_tE7CEBAABFEF36162FD325321C1F94173CEFEDF64_StaticFields*)il2cpp_codegen_static_fields_for(DecalProjector_tE7CEBAABFEF36162FD325321C1F94173CEFEDF64_il2cpp_TypeInfo_var))->___onDecalRemove;
|
|
V_0 = L_0;
|
|
}
|
|
|
|
IL_0006:
|
|
{
|
|
DecalProjectorAction_tDFCBDEE542B3D640BD121E036275AA51A003CF5C* L_1 = V_0;
|
|
V_1 = L_1;
|
|
DecalProjectorAction_tDFCBDEE542B3D640BD121E036275AA51A003CF5C* L_2 = V_1;
|
|
DecalProjectorAction_tDFCBDEE542B3D640BD121E036275AA51A003CF5C* L_3 = ___0_value;
|
|
Delegate_t* L_4;
|
|
L_4 = Delegate_Remove_m8B7DD5661308FA972E23CA1CC3FC9CEB355504E3(L_2, L_3, NULL);
|
|
V_2 = ((DecalProjectorAction_tDFCBDEE542B3D640BD121E036275AA51A003CF5C*)CastclassSealed((RuntimeObject*)L_4, DecalProjectorAction_tDFCBDEE542B3D640BD121E036275AA51A003CF5C_il2cpp_TypeInfo_var));
|
|
DecalProjectorAction_tDFCBDEE542B3D640BD121E036275AA51A003CF5C* L_5 = V_2;
|
|
DecalProjectorAction_tDFCBDEE542B3D640BD121E036275AA51A003CF5C* L_6 = V_1;
|
|
DecalProjectorAction_tDFCBDEE542B3D640BD121E036275AA51A003CF5C* L_7;
|
|
L_7 = InterlockedCompareExchangeImpl<DecalProjectorAction_tDFCBDEE542B3D640BD121E036275AA51A003CF5C*>((&((DecalProjector_tE7CEBAABFEF36162FD325321C1F94173CEFEDF64_StaticFields*)il2cpp_codegen_static_fields_for(DecalProjector_tE7CEBAABFEF36162FD325321C1F94173CEFEDF64_il2cpp_TypeInfo_var))->___onDecalRemove), L_5, L_6);
|
|
V_0 = L_7;
|
|
DecalProjectorAction_tDFCBDEE542B3D640BD121E036275AA51A003CF5C* L_8 = V_0;
|
|
DecalProjectorAction_tDFCBDEE542B3D640BD121E036275AA51A003CF5C* L_9 = V_1;
|
|
if ((!(((RuntimeObject*)(DecalProjectorAction_tDFCBDEE542B3D640BD121E036275AA51A003CF5C*)L_8) == ((RuntimeObject*)(DecalProjectorAction_tDFCBDEE542B3D640BD121E036275AA51A003CF5C*)L_9))))
|
|
{
|
|
goto IL_0006;
|
|
}
|
|
}
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 33078
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DecalProjector_add_onDecalPropertyChange_mAA2F942E4309DDE464D9EB0BFFC55BB648FEB18C (DecalProjectorAction_tDFCBDEE542B3D640BD121E036275AA51A003CF5C* ___0_value, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DecalProjectorAction_tDFCBDEE542B3D640BD121E036275AA51A003CF5C_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DecalProjector_tE7CEBAABFEF36162FD325321C1F94173CEFEDF64_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
DecalProjectorAction_tDFCBDEE542B3D640BD121E036275AA51A003CF5C* V_0 = NULL;
|
|
DecalProjectorAction_tDFCBDEE542B3D640BD121E036275AA51A003CF5C* V_1 = NULL;
|
|
DecalProjectorAction_tDFCBDEE542B3D640BD121E036275AA51A003CF5C* V_2 = NULL;
|
|
{
|
|
DecalProjectorAction_tDFCBDEE542B3D640BD121E036275AA51A003CF5C* L_0 = ((DecalProjector_tE7CEBAABFEF36162FD325321C1F94173CEFEDF64_StaticFields*)il2cpp_codegen_static_fields_for(DecalProjector_tE7CEBAABFEF36162FD325321C1F94173CEFEDF64_il2cpp_TypeInfo_var))->___onDecalPropertyChange;
|
|
V_0 = L_0;
|
|
}
|
|
|
|
IL_0006:
|
|
{
|
|
DecalProjectorAction_tDFCBDEE542B3D640BD121E036275AA51A003CF5C* L_1 = V_0;
|
|
V_1 = L_1;
|
|
DecalProjectorAction_tDFCBDEE542B3D640BD121E036275AA51A003CF5C* L_2 = V_1;
|
|
DecalProjectorAction_tDFCBDEE542B3D640BD121E036275AA51A003CF5C* L_3 = ___0_value;
|
|
Delegate_t* L_4;
|
|
L_4 = Delegate_Combine_m1F725AEF318BE6F0426863490691A6F4606E7D00(L_2, L_3, NULL);
|
|
V_2 = ((DecalProjectorAction_tDFCBDEE542B3D640BD121E036275AA51A003CF5C*)CastclassSealed((RuntimeObject*)L_4, DecalProjectorAction_tDFCBDEE542B3D640BD121E036275AA51A003CF5C_il2cpp_TypeInfo_var));
|
|
DecalProjectorAction_tDFCBDEE542B3D640BD121E036275AA51A003CF5C* L_5 = V_2;
|
|
DecalProjectorAction_tDFCBDEE542B3D640BD121E036275AA51A003CF5C* L_6 = V_1;
|
|
DecalProjectorAction_tDFCBDEE542B3D640BD121E036275AA51A003CF5C* L_7;
|
|
L_7 = InterlockedCompareExchangeImpl<DecalProjectorAction_tDFCBDEE542B3D640BD121E036275AA51A003CF5C*>((&((DecalProjector_tE7CEBAABFEF36162FD325321C1F94173CEFEDF64_StaticFields*)il2cpp_codegen_static_fields_for(DecalProjector_tE7CEBAABFEF36162FD325321C1F94173CEFEDF64_il2cpp_TypeInfo_var))->___onDecalPropertyChange), L_5, L_6);
|
|
V_0 = L_7;
|
|
DecalProjectorAction_tDFCBDEE542B3D640BD121E036275AA51A003CF5C* L_8 = V_0;
|
|
DecalProjectorAction_tDFCBDEE542B3D640BD121E036275AA51A003CF5C* L_9 = V_1;
|
|
if ((!(((RuntimeObject*)(DecalProjectorAction_tDFCBDEE542B3D640BD121E036275AA51A003CF5C*)L_8) == ((RuntimeObject*)(DecalProjectorAction_tDFCBDEE542B3D640BD121E036275AA51A003CF5C*)L_9))))
|
|
{
|
|
goto IL_0006;
|
|
}
|
|
}
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 33079
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DecalProjector_remove_onDecalPropertyChange_m9FD4A2217E074247B2CEE5CF55F8A0403B61C9E9 (DecalProjectorAction_tDFCBDEE542B3D640BD121E036275AA51A003CF5C* ___0_value, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DecalProjectorAction_tDFCBDEE542B3D640BD121E036275AA51A003CF5C_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DecalProjector_tE7CEBAABFEF36162FD325321C1F94173CEFEDF64_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
DecalProjectorAction_tDFCBDEE542B3D640BD121E036275AA51A003CF5C* V_0 = NULL;
|
|
DecalProjectorAction_tDFCBDEE542B3D640BD121E036275AA51A003CF5C* V_1 = NULL;
|
|
DecalProjectorAction_tDFCBDEE542B3D640BD121E036275AA51A003CF5C* V_2 = NULL;
|
|
{
|
|
DecalProjectorAction_tDFCBDEE542B3D640BD121E036275AA51A003CF5C* L_0 = ((DecalProjector_tE7CEBAABFEF36162FD325321C1F94173CEFEDF64_StaticFields*)il2cpp_codegen_static_fields_for(DecalProjector_tE7CEBAABFEF36162FD325321C1F94173CEFEDF64_il2cpp_TypeInfo_var))->___onDecalPropertyChange;
|
|
V_0 = L_0;
|
|
}
|
|
|
|
IL_0006:
|
|
{
|
|
DecalProjectorAction_tDFCBDEE542B3D640BD121E036275AA51A003CF5C* L_1 = V_0;
|
|
V_1 = L_1;
|
|
DecalProjectorAction_tDFCBDEE542B3D640BD121E036275AA51A003CF5C* L_2 = V_1;
|
|
DecalProjectorAction_tDFCBDEE542B3D640BD121E036275AA51A003CF5C* L_3 = ___0_value;
|
|
Delegate_t* L_4;
|
|
L_4 = Delegate_Remove_m8B7DD5661308FA972E23CA1CC3FC9CEB355504E3(L_2, L_3, NULL);
|
|
V_2 = ((DecalProjectorAction_tDFCBDEE542B3D640BD121E036275AA51A003CF5C*)CastclassSealed((RuntimeObject*)L_4, DecalProjectorAction_tDFCBDEE542B3D640BD121E036275AA51A003CF5C_il2cpp_TypeInfo_var));
|
|
DecalProjectorAction_tDFCBDEE542B3D640BD121E036275AA51A003CF5C* L_5 = V_2;
|
|
DecalProjectorAction_tDFCBDEE542B3D640BD121E036275AA51A003CF5C* L_6 = V_1;
|
|
DecalProjectorAction_tDFCBDEE542B3D640BD121E036275AA51A003CF5C* L_7;
|
|
L_7 = InterlockedCompareExchangeImpl<DecalProjectorAction_tDFCBDEE542B3D640BD121E036275AA51A003CF5C*>((&((DecalProjector_tE7CEBAABFEF36162FD325321C1F94173CEFEDF64_StaticFields*)il2cpp_codegen_static_fields_for(DecalProjector_tE7CEBAABFEF36162FD325321C1F94173CEFEDF64_il2cpp_TypeInfo_var))->___onDecalPropertyChange), L_5, L_6);
|
|
V_0 = L_7;
|
|
DecalProjectorAction_tDFCBDEE542B3D640BD121E036275AA51A003CF5C* L_8 = V_0;
|
|
DecalProjectorAction_tDFCBDEE542B3D640BD121E036275AA51A003CF5C* L_9 = V_1;
|
|
if ((!(((RuntimeObject*)(DecalProjectorAction_tDFCBDEE542B3D640BD121E036275AA51A003CF5C*)L_8) == ((RuntimeObject*)(DecalProjectorAction_tDFCBDEE542B3D640BD121E036275AA51A003CF5C*)L_9))))
|
|
{
|
|
goto IL_0006;
|
|
}
|
|
}
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 33080
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DecalProjector_add_onAllDecalPropertyChange_mB0377575C163622BFF68915CFEBCED0D846DA06C (Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* ___0_value, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DecalProjector_tE7CEBAABFEF36162FD325321C1F94173CEFEDF64_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* V_0 = NULL;
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* V_1 = NULL;
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* V_2 = NULL;
|
|
{
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* L_0 = ((DecalProjector_tE7CEBAABFEF36162FD325321C1F94173CEFEDF64_StaticFields*)il2cpp_codegen_static_fields_for(DecalProjector_tE7CEBAABFEF36162FD325321C1F94173CEFEDF64_il2cpp_TypeInfo_var))->___onAllDecalPropertyChange;
|
|
V_0 = L_0;
|
|
}
|
|
|
|
IL_0006:
|
|
{
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* L_1 = V_0;
|
|
V_1 = L_1;
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* L_2 = V_1;
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* L_3 = ___0_value;
|
|
Delegate_t* L_4;
|
|
L_4 = Delegate_Combine_m1F725AEF318BE6F0426863490691A6F4606E7D00(L_2, L_3, NULL);
|
|
V_2 = ((Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07*)CastclassSealed((RuntimeObject*)L_4, Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07_il2cpp_TypeInfo_var));
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* L_5 = V_2;
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* L_6 = V_1;
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* L_7;
|
|
L_7 = InterlockedCompareExchangeImpl<Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07*>((&((DecalProjector_tE7CEBAABFEF36162FD325321C1F94173CEFEDF64_StaticFields*)il2cpp_codegen_static_fields_for(DecalProjector_tE7CEBAABFEF36162FD325321C1F94173CEFEDF64_il2cpp_TypeInfo_var))->___onAllDecalPropertyChange), L_5, L_6);
|
|
V_0 = L_7;
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* L_8 = V_0;
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* L_9 = V_1;
|
|
if ((!(((RuntimeObject*)(Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07*)L_8) == ((RuntimeObject*)(Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07*)L_9))))
|
|
{
|
|
goto IL_0006;
|
|
}
|
|
}
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 33081
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DecalProjector_remove_onAllDecalPropertyChange_m17DFEF5CF48E2C4F782867AC881F248E9BC9BC9F (Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* ___0_value, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DecalProjector_tE7CEBAABFEF36162FD325321C1F94173CEFEDF64_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* V_0 = NULL;
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* V_1 = NULL;
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* V_2 = NULL;
|
|
{
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* L_0 = ((DecalProjector_tE7CEBAABFEF36162FD325321C1F94173CEFEDF64_StaticFields*)il2cpp_codegen_static_fields_for(DecalProjector_tE7CEBAABFEF36162FD325321C1F94173CEFEDF64_il2cpp_TypeInfo_var))->___onAllDecalPropertyChange;
|
|
V_0 = L_0;
|
|
}
|
|
|
|
IL_0006:
|
|
{
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* L_1 = V_0;
|
|
V_1 = L_1;
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* L_2 = V_1;
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* L_3 = ___0_value;
|
|
Delegate_t* L_4;
|
|
L_4 = Delegate_Remove_m8B7DD5661308FA972E23CA1CC3FC9CEB355504E3(L_2, L_3, NULL);
|
|
V_2 = ((Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07*)CastclassSealed((RuntimeObject*)L_4, Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07_il2cpp_TypeInfo_var));
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* L_5 = V_2;
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* L_6 = V_1;
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* L_7;
|
|
L_7 = InterlockedCompareExchangeImpl<Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07*>((&((DecalProjector_tE7CEBAABFEF36162FD325321C1F94173CEFEDF64_StaticFields*)il2cpp_codegen_static_fields_for(DecalProjector_tE7CEBAABFEF36162FD325321C1F94173CEFEDF64_il2cpp_TypeInfo_var))->___onAllDecalPropertyChange), L_5, L_6);
|
|
V_0 = L_7;
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* L_8 = V_0;
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* L_9 = V_1;
|
|
if ((!(((RuntimeObject*)(Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07*)L_8) == ((RuntimeObject*)(Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07*)L_9))))
|
|
{
|
|
goto IL_0006;
|
|
}
|
|
}
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 33082
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DecalProjector_add_onDecalMaterialChange_m8F2C90C593E7593C2287D8532E74F33C547C5CAB (DecalProjectorAction_tDFCBDEE542B3D640BD121E036275AA51A003CF5C* ___0_value, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DecalProjectorAction_tDFCBDEE542B3D640BD121E036275AA51A003CF5C_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DecalProjector_tE7CEBAABFEF36162FD325321C1F94173CEFEDF64_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
DecalProjectorAction_tDFCBDEE542B3D640BD121E036275AA51A003CF5C* V_0 = NULL;
|
|
DecalProjectorAction_tDFCBDEE542B3D640BD121E036275AA51A003CF5C* V_1 = NULL;
|
|
DecalProjectorAction_tDFCBDEE542B3D640BD121E036275AA51A003CF5C* V_2 = NULL;
|
|
{
|
|
DecalProjectorAction_tDFCBDEE542B3D640BD121E036275AA51A003CF5C* L_0 = ((DecalProjector_tE7CEBAABFEF36162FD325321C1F94173CEFEDF64_StaticFields*)il2cpp_codegen_static_fields_for(DecalProjector_tE7CEBAABFEF36162FD325321C1F94173CEFEDF64_il2cpp_TypeInfo_var))->___onDecalMaterialChange;
|
|
V_0 = L_0;
|
|
}
|
|
|
|
IL_0006:
|
|
{
|
|
DecalProjectorAction_tDFCBDEE542B3D640BD121E036275AA51A003CF5C* L_1 = V_0;
|
|
V_1 = L_1;
|
|
DecalProjectorAction_tDFCBDEE542B3D640BD121E036275AA51A003CF5C* L_2 = V_1;
|
|
DecalProjectorAction_tDFCBDEE542B3D640BD121E036275AA51A003CF5C* L_3 = ___0_value;
|
|
Delegate_t* L_4;
|
|
L_4 = Delegate_Combine_m1F725AEF318BE6F0426863490691A6F4606E7D00(L_2, L_3, NULL);
|
|
V_2 = ((DecalProjectorAction_tDFCBDEE542B3D640BD121E036275AA51A003CF5C*)CastclassSealed((RuntimeObject*)L_4, DecalProjectorAction_tDFCBDEE542B3D640BD121E036275AA51A003CF5C_il2cpp_TypeInfo_var));
|
|
DecalProjectorAction_tDFCBDEE542B3D640BD121E036275AA51A003CF5C* L_5 = V_2;
|
|
DecalProjectorAction_tDFCBDEE542B3D640BD121E036275AA51A003CF5C* L_6 = V_1;
|
|
DecalProjectorAction_tDFCBDEE542B3D640BD121E036275AA51A003CF5C* L_7;
|
|
L_7 = InterlockedCompareExchangeImpl<DecalProjectorAction_tDFCBDEE542B3D640BD121E036275AA51A003CF5C*>((&((DecalProjector_tE7CEBAABFEF36162FD325321C1F94173CEFEDF64_StaticFields*)il2cpp_codegen_static_fields_for(DecalProjector_tE7CEBAABFEF36162FD325321C1F94173CEFEDF64_il2cpp_TypeInfo_var))->___onDecalMaterialChange), L_5, L_6);
|
|
V_0 = L_7;
|
|
DecalProjectorAction_tDFCBDEE542B3D640BD121E036275AA51A003CF5C* L_8 = V_0;
|
|
DecalProjectorAction_tDFCBDEE542B3D640BD121E036275AA51A003CF5C* L_9 = V_1;
|
|
if ((!(((RuntimeObject*)(DecalProjectorAction_tDFCBDEE542B3D640BD121E036275AA51A003CF5C*)L_8) == ((RuntimeObject*)(DecalProjectorAction_tDFCBDEE542B3D640BD121E036275AA51A003CF5C*)L_9))))
|
|
{
|
|
goto IL_0006;
|
|
}
|
|
}
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 33083
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DecalProjector_remove_onDecalMaterialChange_m3701462729ADAE7D703E4BDE5B98CDA02FC8B8B8 (DecalProjectorAction_tDFCBDEE542B3D640BD121E036275AA51A003CF5C* ___0_value, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DecalProjectorAction_tDFCBDEE542B3D640BD121E036275AA51A003CF5C_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DecalProjector_tE7CEBAABFEF36162FD325321C1F94173CEFEDF64_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
DecalProjectorAction_tDFCBDEE542B3D640BD121E036275AA51A003CF5C* V_0 = NULL;
|
|
DecalProjectorAction_tDFCBDEE542B3D640BD121E036275AA51A003CF5C* V_1 = NULL;
|
|
DecalProjectorAction_tDFCBDEE542B3D640BD121E036275AA51A003CF5C* V_2 = NULL;
|
|
{
|
|
DecalProjectorAction_tDFCBDEE542B3D640BD121E036275AA51A003CF5C* L_0 = ((DecalProjector_tE7CEBAABFEF36162FD325321C1F94173CEFEDF64_StaticFields*)il2cpp_codegen_static_fields_for(DecalProjector_tE7CEBAABFEF36162FD325321C1F94173CEFEDF64_il2cpp_TypeInfo_var))->___onDecalMaterialChange;
|
|
V_0 = L_0;
|
|
}
|
|
|
|
IL_0006:
|
|
{
|
|
DecalProjectorAction_tDFCBDEE542B3D640BD121E036275AA51A003CF5C* L_1 = V_0;
|
|
V_1 = L_1;
|
|
DecalProjectorAction_tDFCBDEE542B3D640BD121E036275AA51A003CF5C* L_2 = V_1;
|
|
DecalProjectorAction_tDFCBDEE542B3D640BD121E036275AA51A003CF5C* L_3 = ___0_value;
|
|
Delegate_t* L_4;
|
|
L_4 = Delegate_Remove_m8B7DD5661308FA972E23CA1CC3FC9CEB355504E3(L_2, L_3, NULL);
|
|
V_2 = ((DecalProjectorAction_tDFCBDEE542B3D640BD121E036275AA51A003CF5C*)CastclassSealed((RuntimeObject*)L_4, DecalProjectorAction_tDFCBDEE542B3D640BD121E036275AA51A003CF5C_il2cpp_TypeInfo_var));
|
|
DecalProjectorAction_tDFCBDEE542B3D640BD121E036275AA51A003CF5C* L_5 = V_2;
|
|
DecalProjectorAction_tDFCBDEE542B3D640BD121E036275AA51A003CF5C* L_6 = V_1;
|
|
DecalProjectorAction_tDFCBDEE542B3D640BD121E036275AA51A003CF5C* L_7;
|
|
L_7 = InterlockedCompareExchangeImpl<DecalProjectorAction_tDFCBDEE542B3D640BD121E036275AA51A003CF5C*>((&((DecalProjector_tE7CEBAABFEF36162FD325321C1F94173CEFEDF64_StaticFields*)il2cpp_codegen_static_fields_for(DecalProjector_tE7CEBAABFEF36162FD325321C1F94173CEFEDF64_il2cpp_TypeInfo_var))->___onDecalMaterialChange), L_5, L_6);
|
|
V_0 = L_7;
|
|
DecalProjectorAction_tDFCBDEE542B3D640BD121E036275AA51A003CF5C* L_8 = V_0;
|
|
DecalProjectorAction_tDFCBDEE542B3D640BD121E036275AA51A003CF5C* L_9 = V_1;
|
|
if ((!(((RuntimeObject*)(DecalProjectorAction_tDFCBDEE542B3D640BD121E036275AA51A003CF5C*)L_8) == ((RuntimeObject*)(DecalProjectorAction_tDFCBDEE542B3D640BD121E036275AA51A003CF5C*)L_9))))
|
|
{
|
|
goto IL_0006;
|
|
}
|
|
}
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 33084
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Material_t18053F08F347D0DCA5E1140EC7EC4533DD8A14E3* DecalProjector_get_defaultMaterial_m73C720ACA64E59CA62637A8C1EEC0B128FE21EB0 (const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DecalProjector_tE7CEBAABFEF36162FD325321C1F94173CEFEDF64_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/DecalProjector.cs:34>
|
|
Material_t18053F08F347D0DCA5E1140EC7EC4533DD8A14E3* L_0 = ((DecalProjector_tE7CEBAABFEF36162FD325321C1F94173CEFEDF64_StaticFields*)il2cpp_codegen_static_fields_for(DecalProjector_tE7CEBAABFEF36162FD325321C1F94173CEFEDF64_il2cpp_TypeInfo_var))->___U3CdefaultMaterialU3Ek__BackingField;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 33085
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DecalProjector_set_defaultMaterial_m2BACFA6EE311050D78EA56B4800B9D395F65723B (Material_t18053F08F347D0DCA5E1140EC7EC4533DD8A14E3* ___0_value, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DecalProjector_tE7CEBAABFEF36162FD325321C1F94173CEFEDF64_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/DecalProjector.cs:34>
|
|
Material_t18053F08F347D0DCA5E1140EC7EC4533DD8A14E3* L_0 = ___0_value;
|
|
((DecalProjector_tE7CEBAABFEF36162FD325321C1F94173CEFEDF64_StaticFields*)il2cpp_codegen_static_fields_for(DecalProjector_tE7CEBAABFEF36162FD325321C1F94173CEFEDF64_il2cpp_TypeInfo_var))->___U3CdefaultMaterialU3Ek__BackingField = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&((DecalProjector_tE7CEBAABFEF36162FD325321C1F94173CEFEDF64_StaticFields*)il2cpp_codegen_static_fields_for(DecalProjector_tE7CEBAABFEF36162FD325321C1F94173CEFEDF64_il2cpp_TypeInfo_var))->___U3CdefaultMaterialU3Ek__BackingField), (void*)L_0);
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 33086
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DecalProjector_get_isSupported_m4480C7701E267E9844321D3A7804D2D3751E427A (const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DecalProjector_tE7CEBAABFEF36162FD325321C1F94173CEFEDF64_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/DecalProjector.cs:35>
|
|
DecalProjectorAction_tDFCBDEE542B3D640BD121E036275AA51A003CF5C* L_0 = ((DecalProjector_tE7CEBAABFEF36162FD325321C1F94173CEFEDF64_StaticFields*)il2cpp_codegen_static_fields_for(DecalProjector_tE7CEBAABFEF36162FD325321C1F94173CEFEDF64_il2cpp_TypeInfo_var))->___onDecalAdd;
|
|
return (bool)((!(((RuntimeObject*)(DecalProjectorAction_tDFCBDEE542B3D640BD121E036275AA51A003CF5C*)L_0) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
|
|
}
|
|
}
|
|
// Method Definition Index: 33087
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DecalEntity_t8CAF09C65939503449C4138ADCDC4907196293FD DecalProjector_get_decalEntity_m567C59A20E812BD089244A06FC921CB14DF6AEF5 (DecalProjector_tE7CEBAABFEF36162FD325321C1F94173CEFEDF64* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/DecalProjector.cs:37>
|
|
DecalEntity_t8CAF09C65939503449C4138ADCDC4907196293FD L_0 = __this->___U3CdecalEntityU3Ek__BackingField;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 33088
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DecalProjector_set_decalEntity_mB69979C283861801CBF16EF122CE14111FF3E871 (DecalProjector_tE7CEBAABFEF36162FD325321C1F94173CEFEDF64* __this, DecalEntity_t8CAF09C65939503449C4138ADCDC4907196293FD ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/DecalProjector.cs:37>
|
|
DecalEntity_t8CAF09C65939503449C4138ADCDC4907196293FD L_0 = ___0_value;
|
|
__this->___U3CdecalEntityU3Ek__BackingField = L_0;
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 33089
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Material_t18053F08F347D0DCA5E1140EC7EC4533DD8A14E3* DecalProjector_get_material_m7B4C2B869C8E062AFF5519DDB9BD954DB5163C77 (DecalProjector_tE7CEBAABFEF36162FD325321C1F94173CEFEDF64* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/DecalProjector.cs:48>
|
|
Material_t18053F08F347D0DCA5E1140EC7EC4533DD8A14E3* L_0 = __this->___m_Material;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 33090
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DecalProjector_set_material_m113A932BB67FE037E0B8DA163FB88706903F9212 (DecalProjector_tE7CEBAABFEF36162FD325321C1F94173CEFEDF64* __this, Material_t18053F08F347D0DCA5E1140EC7EC4533DD8A14E3* ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/DecalProjector.cs:52>
|
|
Material_t18053F08F347D0DCA5E1140EC7EC4533DD8A14E3* L_0 = ___0_value;
|
|
__this->___m_Material = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_Material), (void*)L_0);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/DecalProjector.cs:53>
|
|
DecalProjector_OnValidate_mF1F8F3D8D65D22CC7D116AFA0BDB753997C26237(__this, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/DecalProjector.cs:54>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 33091
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float DecalProjector_get_drawDistance_mFD825C09FD3C99B01F33DBD057B180627010BE03 (DecalProjector_tE7CEBAABFEF36162FD325321C1F94173CEFEDF64* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/DecalProjector.cs:66>
|
|
float L_0 = __this->___m_DrawDistance;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 33092
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DecalProjector_set_drawDistance_m29DB46B626E451EB654BD42308070605C2966645 (DecalProjector_tE7CEBAABFEF36162FD325321C1F94173CEFEDF64* __this, float ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/DecalProjector.cs:70>
|
|
float L_0 = ___0_value;
|
|
float L_1;
|
|
L_1 = Mathf_Max_mF5379E63D2BBAC76D090748695D833934F8AD051_inline((0.0f), L_0, NULL);
|
|
__this->___m_DrawDistance = L_1;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/DecalProjector.cs:71>
|
|
DecalProjector_OnValidate_mF1F8F3D8D65D22CC7D116AFA0BDB753997C26237(__this, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/DecalProjector.cs:72>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 33093
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float DecalProjector_get_fadeScale_m0114135F3885A2FE9F94CB7D98C6A7595578C26C (DecalProjector_tE7CEBAABFEF36162FD325321C1F94173CEFEDF64* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/DecalProjector.cs:85>
|
|
float L_0 = __this->___m_FadeScale;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 33094
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DecalProjector_set_fadeScale_mEC3721172A2569E1E86455C5DA6157A3C0D42FFB (DecalProjector_tE7CEBAABFEF36162FD325321C1F94173CEFEDF64* __this, float ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/DecalProjector.cs:89>
|
|
float L_0 = ___0_value;
|
|
float L_1;
|
|
L_1 = Mathf_Clamp01_mA7E048DBDA832D399A581BE4D6DED9FA44CE0F14_inline(L_0, NULL);
|
|
__this->___m_FadeScale = L_1;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/DecalProjector.cs:90>
|
|
DecalProjector_OnValidate_mF1F8F3D8D65D22CC7D116AFA0BDB753997C26237(__this, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/DecalProjector.cs:91>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 33095
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float DecalProjector_get_startAngleFade_mD61F7D4B1D2B19EA3ADD8B2F53AF26963B058BB8 (DecalProjector_tE7CEBAABFEF36162FD325321C1F94173CEFEDF64* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/DecalProjector.cs:104>
|
|
float L_0 = __this->___m_StartAngleFade;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 33096
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DecalProjector_set_startAngleFade_m3A59A4C3FEEEA3C4C76A6615D72D2E01A0C144E0 (DecalProjector_tE7CEBAABFEF36162FD325321C1F94173CEFEDF64* __this, float ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/DecalProjector.cs:108>
|
|
float L_0 = ___0_value;
|
|
float L_1;
|
|
L_1 = Mathf_Clamp_mEB9AEA827D27D20FCC787F7375156AF46BB12BBF_inline(L_0, (0.0f), (180.0f), NULL);
|
|
__this->___m_StartAngleFade = L_1;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/DecalProjector.cs:109>
|
|
DecalProjector_OnValidate_mF1F8F3D8D65D22CC7D116AFA0BDB753997C26237(__this, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/DecalProjector.cs:110>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 33097
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float DecalProjector_get_endAngleFade_m367D4FA628133F6020678EC43A4E93F60C9D038E (DecalProjector_tE7CEBAABFEF36162FD325321C1F94173CEFEDF64* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/DecalProjector.cs:123>
|
|
float L_0 = __this->___m_EndAngleFade;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 33098
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DecalProjector_set_endAngleFade_mCD3079DF892FA561FC4E24624609B9A4AEFFF9CC (DecalProjector_tE7CEBAABFEF36162FD325321C1F94173CEFEDF64* __this, float ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/DecalProjector.cs:127>
|
|
float L_0 = ___0_value;
|
|
float L_1 = __this->___m_StartAngleFade;
|
|
float L_2;
|
|
L_2 = Mathf_Clamp_mEB9AEA827D27D20FCC787F7375156AF46BB12BBF_inline(L_0, L_1, (180.0f), NULL);
|
|
__this->___m_EndAngleFade = L_2;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/DecalProjector.cs:128>
|
|
DecalProjector_OnValidate_mF1F8F3D8D65D22CC7D116AFA0BDB753997C26237(__this, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/DecalProjector.cs:129>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 33099
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 DecalProjector_get_uvScale_m09488F62F72977F90FC79265D69289CD124FE419 (DecalProjector_tE7CEBAABFEF36162FD325321C1F94173CEFEDF64* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/DecalProjector.cs:141>
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_0 = __this->___m_UVScale;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 33100
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DecalProjector_set_uvScale_mB091D824E67C7BF11FBE21637C2BBAAFC5F1E9CA (DecalProjector_tE7CEBAABFEF36162FD325321C1F94173CEFEDF64* __this, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/DecalProjector.cs:145>
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_0 = ___0_value;
|
|
__this->___m_UVScale = L_0;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/DecalProjector.cs:146>
|
|
DecalProjector_OnValidate_mF1F8F3D8D65D22CC7D116AFA0BDB753997C26237(__this, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/DecalProjector.cs:147>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 33101
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 DecalProjector_get_uvBias_m0407D06FD8383770CE499B14901E3A388165A31E (DecalProjector_tE7CEBAABFEF36162FD325321C1F94173CEFEDF64* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/DecalProjector.cs:159>
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_0 = __this->___m_UVBias;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 33102
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DecalProjector_set_uvBias_m6535CAD99D4BF9E0BB82222A381875D80BD03D76 (DecalProjector_tE7CEBAABFEF36162FD325321C1F94173CEFEDF64* __this, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/DecalProjector.cs:163>
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_0 = ___0_value;
|
|
__this->___m_UVBias = L_0;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/DecalProjector.cs:164>
|
|
DecalProjector_OnValidate_mF1F8F3D8D65D22CC7D116AFA0BDB753997C26237(__this, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/DecalProjector.cs:165>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 33103
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RenderingLayerMask_tD73B9FC1A65A937F18E56833FC83BF89C2B085A1 DecalProjector_get_renderingLayerMask_mF62BD63ED4EB13B2DF450E199A29252E7DAA3D9D (DecalProjector_tE7CEBAABFEF36162FD325321C1F94173CEFEDF64* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/DecalProjector.cs:175>
|
|
RenderingLayerMask_tD73B9FC1A65A937F18E56833FC83BF89C2B085A1 L_0 = __this->___m_RenderingLayerMask;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 33104
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DecalProjector_set_renderingLayerMask_mF0B72F3B890D5317E62DF581C89AEC6C9E9CEDFC (DecalProjector_tE7CEBAABFEF36162FD325321C1F94173CEFEDF64* __this, RenderingLayerMask_tD73B9FC1A65A937F18E56833FC83BF89C2B085A1 ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/DecalProjector.cs:176>
|
|
RenderingLayerMask_tD73B9FC1A65A937F18E56833FC83BF89C2B085A1 L_0 = ___0_value;
|
|
__this->___m_RenderingLayerMask = L_0;
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 33105
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t DecalProjector_get_scaleMode_m18359D12B22161553CB46FCE13436565747E33D1 (DecalProjector_tE7CEBAABFEF36162FD325321C1F94173CEFEDF64* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/DecalProjector.cs:186>
|
|
int32_t L_0 = __this->___m_ScaleMode;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 33106
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DecalProjector_set_scaleMode_m888D62A9E76F66681C4C96E10A039AFC4DF11EF4 (DecalProjector_tE7CEBAABFEF36162FD325321C1F94173CEFEDF64* __this, int32_t ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/DecalProjector.cs:189>
|
|
int32_t L_0 = ___0_value;
|
|
__this->___m_ScaleMode = L_0;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/DecalProjector.cs:190>
|
|
DecalProjector_OnValidate_mF1F8F3D8D65D22CC7D116AFA0BDB753997C26237(__this, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/DecalProjector.cs:191>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 33107
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 DecalProjector_get_pivot_mC5A04B3E64350399BCB25F22C2A32A4D42710907 (DecalProjector_tE7CEBAABFEF36162FD325321C1F94173CEFEDF64* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/DecalProjector.cs:204>
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_0 = __this->___m_Offset;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 33108
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DecalProjector_set_pivot_m4EBC99B85F56D16834C6EDE02B2E71CCCDB6C505 (DecalProjector_tE7CEBAABFEF36162FD325321C1F94173CEFEDF64* __this, Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/DecalProjector.cs:208>
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_0 = ___0_value;
|
|
__this->___m_Offset = L_0;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/DecalProjector.cs:209>
|
|
DecalProjector_OnValidate_mF1F8F3D8D65D22CC7D116AFA0BDB753997C26237(__this, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/DecalProjector.cs:210>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 33109
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 DecalProjector_get_size_m8011B8CCF1DDE8238C02F901703A12950D2DEF74 (DecalProjector_tE7CEBAABFEF36162FD325321C1F94173CEFEDF64* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/DecalProjector.cs:222>
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_0 = __this->___m_Size;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 33110
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DecalProjector_set_size_mF73CCC16524E87CB370EFAD500D30F0FD4AC0BFF (DecalProjector_tE7CEBAABFEF36162FD325321C1F94173CEFEDF64* __this, Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/DecalProjector.cs:226>
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_0 = ___0_value;
|
|
__this->___m_Size = L_0;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/DecalProjector.cs:227>
|
|
DecalProjector_OnValidate_mF1F8F3D8D65D22CC7D116AFA0BDB753997C26237(__this, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/DecalProjector.cs:228>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 33111
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float DecalProjector_get_fadeFactor_m5C265D9A466D5C9F558846AEDDEDBC4B8D6C83CD (DecalProjector_tE7CEBAABFEF36162FD325321C1F94173CEFEDF64* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/DecalProjector.cs:241>
|
|
float L_0 = __this->___m_FadeFactor;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 33112
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DecalProjector_set_fadeFactor_mD7E834877AE2ABFE01637DE922A41A585CBCD65B (DecalProjector_tE7CEBAABFEF36162FD325321C1F94173CEFEDF64* __this, float ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/DecalProjector.cs:245>
|
|
float L_0 = ___0_value;
|
|
float L_1;
|
|
L_1 = Mathf_Clamp01_mA7E048DBDA832D399A581BE4D6DED9FA44CE0F14_inline(L_0, NULL);
|
|
__this->___m_FadeFactor = L_1;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/DecalProjector.cs:246>
|
|
DecalProjector_OnValidate_mF1F8F3D8D65D22CC7D116AFA0BDB753997C26237(__this, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/DecalProjector.cs:247>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 33113
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 DecalProjector_get_effectiveScale_m478AC3F03AC2EB51DCA97379A4FCEF5C494EEC68 (DecalProjector_tE7CEBAABFEF36162FD325321C1F94173CEFEDF64* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/DecalProjector.cs:263>
|
|
int32_t L_0 = __this->___m_ScaleMode;
|
|
if ((((int32_t)L_0) == ((int32_t)1)))
|
|
{
|
|
goto IL_000f;
|
|
}
|
|
}
|
|
{
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_1;
|
|
L_1 = Vector3_get_one_mC9B289F1E15C42C597180C9FE6FB492495B51D02_inline(NULL);
|
|
return L_1;
|
|
}
|
|
|
|
IL_000f:
|
|
{
|
|
Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1* L_2;
|
|
L_2 = Component_get_transform_m2919A1D81931E6932C7F06D4C2F0AB8DDA9A5371(__this, NULL);
|
|
NullCheck(L_2);
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_3;
|
|
L_3 = Transform_get_lossyScale_mFF740DA4BE1489C6882CD2F3A37B7321176E5D07(L_2, NULL);
|
|
return L_3;
|
|
}
|
|
}
|
|
// Method Definition Index: 33114
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 DecalProjector_get_decalSize_m897C18B439B795E0E979B808B91C1ACEBCC83867 (DecalProjector_tE7CEBAABFEF36162FD325321C1F94173CEFEDF64* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/DecalProjector.cs:265>
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2* L_0 = (Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2*)(&__this->___m_Size);
|
|
float L_1 = L_0->___x;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2* L_2 = (Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2*)(&__this->___m_Size);
|
|
float L_3 = L_2->___z;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2* L_4 = (Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2*)(&__this->___m_Size);
|
|
float L_5 = L_4->___y;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_6;
|
|
memset((&L_6), 0, sizeof(L_6));
|
|
Vector3__ctor_m376936E6B999EF1ECBE57D990A386303E2283DE0_inline((&L_6), L_1, L_3, L_5, NULL);
|
|
return L_6;
|
|
}
|
|
}
|
|
// Method Definition Index: 33115
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 DecalProjector_get_decalOffset_m42B945918221551D1DD30FE80F335A707AE93C93 (DecalProjector_tE7CEBAABFEF36162FD325321C1F94173CEFEDF64* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/DecalProjector.cs:267>
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2* L_0 = (Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2*)(&__this->___m_Offset);
|
|
float L_1 = L_0->___x;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2* L_2 = (Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2*)(&__this->___m_Offset);
|
|
float L_3 = L_2->___z;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2* L_4 = (Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2*)(&__this->___m_Offset);
|
|
float L_5 = L_4->___y;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_6;
|
|
memset((&L_6), 0, sizeof(L_6));
|
|
Vector3__ctor_m376936E6B999EF1ECBE57D990A386303E2283DE0_inline((&L_6), L_1, ((-L_3)), L_5, NULL);
|
|
return L_6;
|
|
}
|
|
}
|
|
// Method Definition Index: 33116
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3 DecalProjector_get_uvScaleBias_m623FF505DD6AF3D2FF22922FBFC7FA8B3AF4788E (DecalProjector_tE7CEBAABFEF36162FD325321C1F94173CEFEDF64* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/DecalProjector.cs:269>
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7* L_0 = (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7*)(&__this->___m_UVScale);
|
|
float L_1 = L_0->___x;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7* L_2 = (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7*)(&__this->___m_UVScale);
|
|
float L_3 = L_2->___y;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7* L_4 = (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7*)(&__this->___m_UVBias);
|
|
float L_5 = L_4->___x;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7* L_6 = (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7*)(&__this->___m_UVBias);
|
|
float L_7 = L_6->___y;
|
|
Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3 L_8;
|
|
memset((&L_8), 0, sizeof(L_8));
|
|
Vector4__ctor_m96B2CD8B862B271F513AF0BDC2EABD58E4DBC813_inline((&L_8), L_1, L_3, L_5, L_7, NULL);
|
|
return L_8;
|
|
}
|
|
}
|
|
// Method Definition Index: 33117
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DecalProjector_InitMaterial_m63C571FA5B0E6769DC5AF11A6F1E3B4EF06C9A75 (DecalProjector_tE7CEBAABFEF36162FD325321C1F94173CEFEDF64* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/DecalProjector.cs:273>
|
|
Material_t18053F08F347D0DCA5E1140EC7EC4533DD8A14E3* L_0 = __this->___m_Material;
|
|
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
bool L_1;
|
|
L_1 = Object_op_Equality_mB6120F782D83091EF56A198FCEBCF066DB4A9605(L_0, (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C*)NULL, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/DecalProjector.cs:279>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 33118
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DecalProjector_OnEnable_m90F280C229CB91B60FE6D729BA8418F94B6AAD6B (DecalProjector_tE7CEBAABFEF36162FD325321C1F94173CEFEDF64* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DecalProjector_tE7CEBAABFEF36162FD325321C1F94173CEFEDF64_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
DecalProjectorAction_tDFCBDEE542B3D640BD121E036275AA51A003CF5C* G_B2_0 = NULL;
|
|
DecalProjectorAction_tDFCBDEE542B3D640BD121E036275AA51A003CF5C* G_B1_0 = NULL;
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/DecalProjector.cs:283>
|
|
DecalProjector_InitMaterial_m63C571FA5B0E6769DC5AF11A6F1E3B4EF06C9A75(__this, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/DecalProjector.cs:285>
|
|
Material_t18053F08F347D0DCA5E1140EC7EC4533DD8A14E3* L_0 = __this->___m_Material;
|
|
__this->___m_OldMaterial = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_OldMaterial), (void*)L_0);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/DecalProjector.cs:287>
|
|
DecalProjectorAction_tDFCBDEE542B3D640BD121E036275AA51A003CF5C* L_1 = ((DecalProjector_tE7CEBAABFEF36162FD325321C1F94173CEFEDF64_StaticFields*)il2cpp_codegen_static_fields_for(DecalProjector_tE7CEBAABFEF36162FD325321C1F94173CEFEDF64_il2cpp_TypeInfo_var))->___onDecalAdd;
|
|
DecalProjectorAction_tDFCBDEE542B3D640BD121E036275AA51A003CF5C* L_2 = L_1;
|
|
if (L_2)
|
|
{
|
|
G_B2_0 = L_2;
|
|
goto IL_001c;
|
|
}
|
|
G_B1_0 = L_2;
|
|
}
|
|
{
|
|
return;
|
|
}
|
|
|
|
IL_001c:
|
|
{
|
|
NullCheck(G_B2_0);
|
|
DecalProjectorAction_Invoke_mB1B4E86AF2D30FFE627DC803CD91C8F0A80530F3_inline(G_B2_0, __this, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/DecalProjector.cs:293>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 33119
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DecalProjector_OnDisable_m34AFC63B9A9D13EB00CA94E7BB2E137AC03130BD (DecalProjector_tE7CEBAABFEF36162FD325321C1F94173CEFEDF64* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DecalProjector_tE7CEBAABFEF36162FD325321C1F94173CEFEDF64_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
DecalProjectorAction_tDFCBDEE542B3D640BD121E036275AA51A003CF5C* G_B2_0 = NULL;
|
|
DecalProjectorAction_tDFCBDEE542B3D640BD121E036275AA51A003CF5C* G_B1_0 = NULL;
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/DecalProjector.cs:314>
|
|
DecalProjectorAction_tDFCBDEE542B3D640BD121E036275AA51A003CF5C* L_0 = ((DecalProjector_tE7CEBAABFEF36162FD325321C1F94173CEFEDF64_StaticFields*)il2cpp_codegen_static_fields_for(DecalProjector_tE7CEBAABFEF36162FD325321C1F94173CEFEDF64_il2cpp_TypeInfo_var))->___onDecalRemove;
|
|
DecalProjectorAction_tDFCBDEE542B3D640BD121E036275AA51A003CF5C* L_1 = L_0;
|
|
if (L_1)
|
|
{
|
|
G_B2_0 = L_1;
|
|
goto IL_000a;
|
|
}
|
|
G_B1_0 = L_1;
|
|
}
|
|
{
|
|
return;
|
|
}
|
|
|
|
IL_000a:
|
|
{
|
|
NullCheck(G_B2_0);
|
|
DecalProjectorAction_Invoke_mB1B4E86AF2D30FFE627DC803CD91C8F0A80530F3_inline(G_B2_0, __this, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/DecalProjector.cs:319>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 33120
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DecalProjector_OnValidate_mF1F8F3D8D65D22CC7D116AFA0BDB753997C26237 (DecalProjector_tE7CEBAABFEF36162FD325321C1F94173CEFEDF64* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DecalProjector_tE7CEBAABFEF36162FD325321C1F94173CEFEDF64_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
DecalProjectorAction_tDFCBDEE542B3D640BD121E036275AA51A003CF5C* G_B5_0 = NULL;
|
|
DecalProjectorAction_tDFCBDEE542B3D640BD121E036275AA51A003CF5C* G_B4_0 = NULL;
|
|
DecalProjectorAction_tDFCBDEE542B3D640BD121E036275AA51A003CF5C* G_B9_0 = NULL;
|
|
DecalProjectorAction_tDFCBDEE542B3D640BD121E036275AA51A003CF5C* G_B8_0 = NULL;
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/DecalProjector.cs:323>
|
|
bool L_0;
|
|
L_0 = Behaviour_get_isActiveAndEnabled_mEB4ECCE9761A7016BC619557CEFEA1A30D3BF28A(__this, NULL);
|
|
if (L_0)
|
|
{
|
|
goto IL_0009;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/DecalProjector.cs:324>
|
|
return;
|
|
}
|
|
|
|
IL_0009:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/DecalProjector.cs:326>
|
|
Material_t18053F08F347D0DCA5E1140EC7EC4533DD8A14E3* L_1 = __this->___m_Material;
|
|
Material_t18053F08F347D0DCA5E1140EC7EC4533DD8A14E3* L_2 = __this->___m_OldMaterial;
|
|
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
bool L_3;
|
|
L_3 = Object_op_Inequality_mD0BE578448EAA61948F25C32F8DD55AB1F778602(L_1, L_2, NULL);
|
|
if (!L_3)
|
|
{
|
|
goto IL_003b;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/DecalProjector.cs:328>
|
|
DecalProjectorAction_tDFCBDEE542B3D640BD121E036275AA51A003CF5C* L_4 = ((DecalProjector_tE7CEBAABFEF36162FD325321C1F94173CEFEDF64_StaticFields*)il2cpp_codegen_static_fields_for(DecalProjector_tE7CEBAABFEF36162FD325321C1F94173CEFEDF64_il2cpp_TypeInfo_var))->___onDecalMaterialChange;
|
|
DecalProjectorAction_tDFCBDEE542B3D640BD121E036275AA51A003CF5C* L_5 = L_4;
|
|
if (L_5)
|
|
{
|
|
G_B5_0 = L_5;
|
|
goto IL_0027;
|
|
}
|
|
G_B4_0 = L_5;
|
|
}
|
|
{
|
|
goto IL_002d;
|
|
}
|
|
|
|
IL_0027:
|
|
{
|
|
NullCheck(G_B5_0);
|
|
DecalProjectorAction_Invoke_mB1B4E86AF2D30FFE627DC803CD91C8F0A80530F3_inline(G_B5_0, __this, NULL);
|
|
}
|
|
|
|
IL_002d:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/DecalProjector.cs:329>
|
|
Material_t18053F08F347D0DCA5E1140EC7EC4533DD8A14E3* L_6 = __this->___m_Material;
|
|
__this->___m_OldMaterial = L_6;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_OldMaterial), (void*)L_6);
|
|
goto IL_004c;
|
|
}
|
|
|
|
IL_003b:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/DecalProjector.cs:332>
|
|
DecalProjectorAction_tDFCBDEE542B3D640BD121E036275AA51A003CF5C* L_7 = ((DecalProjector_tE7CEBAABFEF36162FD325321C1F94173CEFEDF64_StaticFields*)il2cpp_codegen_static_fields_for(DecalProjector_tE7CEBAABFEF36162FD325321C1F94173CEFEDF64_il2cpp_TypeInfo_var))->___onDecalPropertyChange;
|
|
DecalProjectorAction_tDFCBDEE542B3D640BD121E036275AA51A003CF5C* L_8 = L_7;
|
|
if (L_8)
|
|
{
|
|
G_B9_0 = L_8;
|
|
goto IL_0046;
|
|
}
|
|
G_B8_0 = L_8;
|
|
}
|
|
{
|
|
goto IL_004c;
|
|
}
|
|
|
|
IL_0046:
|
|
{
|
|
NullCheck(G_B9_0);
|
|
DecalProjectorAction_Invoke_mB1B4E86AF2D30FFE627DC803CD91C8F0A80530F3_inline(G_B9_0, __this, NULL);
|
|
}
|
|
|
|
IL_004c:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/DecalProjector.cs:334>
|
|
float L_9 = __this->___m_DrawDistance;
|
|
__this->___m_OldDrawDistance = L_9;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/DecalProjector.cs:335>
|
|
float L_10 = __this->___m_FadeScale;
|
|
__this->___m_OldFadeScale = L_10;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/DecalProjector.cs:336>
|
|
float L_11 = __this->___m_StartAngleFade;
|
|
__this->___m_OldStartAngleFade = L_11;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/DecalProjector.cs:337>
|
|
float L_12 = __this->___m_EndAngleFade;
|
|
__this->___m_OldEndAngleFade = L_12;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/DecalProjector.cs:338>
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_13 = __this->___m_UVScale;
|
|
__this->___m_OldUVScale = L_13;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/DecalProjector.cs:339>
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_14 = __this->___m_UVBias;
|
|
__this->___m_OldUVBias = L_14;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/DecalProjector.cs:340>
|
|
int32_t L_15 = __this->___m_ScaleMode;
|
|
__this->___m_OldScaleMode = L_15;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/DecalProjector.cs:341>
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_16 = __this->___m_Offset;
|
|
__this->___m_OldOffset = L_16;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/DecalProjector.cs:342>
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_17 = __this->___m_Size;
|
|
__this->___m_OldSize = L_17;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/DecalProjector.cs:343>
|
|
float L_18 = __this->___m_FadeFactor;
|
|
__this->___m_OldFadeFactor = L_18;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/DecalProjector.cs:344>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 33121
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DecalProjector_OnDidApplyAnimationProperties_mD583F432BD05F13E127592F2EEC8312AB95FB147 (DecalProjector_tE7CEBAABFEF36162FD325321C1F94173CEFEDF64* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Mathf_tE284D016E3B297B72311AAD9EB8F0E643F6A4682_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/DecalProjector.cs:349>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/DecalProjector.cs:350>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/DecalProjector.cs:351>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/DecalProjector.cs:352>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/DecalProjector.cs:353>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/DecalProjector.cs:354>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/DecalProjector.cs:355>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/DecalProjector.cs:356>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/DecalProjector.cs:357>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/DecalProjector.cs:358>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/DecalProjector.cs:359>
|
|
Material_t18053F08F347D0DCA5E1140EC7EC4533DD8A14E3* L_0 = __this->___m_OldMaterial;
|
|
Material_t18053F08F347D0DCA5E1140EC7EC4533DD8A14E3* L_1 = __this->___m_Material;
|
|
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
bool L_2;
|
|
L_2 = Object_op_Inequality_mD0BE578448EAA61948F25C32F8DD55AB1F778602(L_0, L_1, NULL);
|
|
if (L_2)
|
|
{
|
|
goto IL_00f6;
|
|
}
|
|
}
|
|
{
|
|
float L_3 = __this->___m_OldDrawDistance;
|
|
float L_4 = __this->___m_DrawDistance;
|
|
float L_5;
|
|
L_5 = fabsf(((float)il2cpp_codegen_subtract(L_3, L_4)));
|
|
float L_6 = ((Mathf_tE284D016E3B297B72311AAD9EB8F0E643F6A4682_StaticFields*)il2cpp_codegen_static_fields_for(Mathf_tE284D016E3B297B72311AAD9EB8F0E643F6A4682_il2cpp_TypeInfo_var))->___Epsilon;
|
|
if ((((float)L_5) > ((float)L_6)))
|
|
{
|
|
goto IL_00f6;
|
|
}
|
|
}
|
|
{
|
|
float L_7 = __this->___m_OldFadeScale;
|
|
float L_8 = __this->___m_FadeScale;
|
|
float L_9;
|
|
L_9 = fabsf(((float)il2cpp_codegen_subtract(L_7, L_8)));
|
|
float L_10 = ((Mathf_tE284D016E3B297B72311AAD9EB8F0E643F6A4682_StaticFields*)il2cpp_codegen_static_fields_for(Mathf_tE284D016E3B297B72311AAD9EB8F0E643F6A4682_il2cpp_TypeInfo_var))->___Epsilon;
|
|
if ((((float)L_9) > ((float)L_10)))
|
|
{
|
|
goto IL_00f6;
|
|
}
|
|
}
|
|
{
|
|
float L_11 = __this->___m_OldStartAngleFade;
|
|
float L_12 = __this->___m_StartAngleFade;
|
|
float L_13;
|
|
L_13 = fabsf(((float)il2cpp_codegen_subtract(L_11, L_12)));
|
|
float L_14 = ((Mathf_tE284D016E3B297B72311AAD9EB8F0E643F6A4682_StaticFields*)il2cpp_codegen_static_fields_for(Mathf_tE284D016E3B297B72311AAD9EB8F0E643F6A4682_il2cpp_TypeInfo_var))->___Epsilon;
|
|
if ((((float)L_13) > ((float)L_14)))
|
|
{
|
|
goto IL_00f6;
|
|
}
|
|
}
|
|
{
|
|
float L_15 = __this->___m_OldEndAngleFade;
|
|
float L_16 = __this->___m_EndAngleFade;
|
|
float L_17;
|
|
L_17 = fabsf(((float)il2cpp_codegen_subtract(L_15, L_16)));
|
|
float L_18 = ((Mathf_tE284D016E3B297B72311AAD9EB8F0E643F6A4682_StaticFields*)il2cpp_codegen_static_fields_for(Mathf_tE284D016E3B297B72311AAD9EB8F0E643F6A4682_il2cpp_TypeInfo_var))->___Epsilon;
|
|
if ((((float)L_17) > ((float)L_18)))
|
|
{
|
|
goto IL_00f6;
|
|
}
|
|
}
|
|
{
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_19 = __this->___m_OldUVScale;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_20 = __this->___m_UVScale;
|
|
bool L_21;
|
|
L_21 = Vector2_op_Inequality_mBEA93B5A0E954FEFB863DC61CB209119980EC713_inline(L_19, L_20, NULL);
|
|
if (L_21)
|
|
{
|
|
goto IL_00f6;
|
|
}
|
|
}
|
|
{
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_22 = __this->___m_OldUVBias;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_23 = __this->___m_UVBias;
|
|
bool L_24;
|
|
L_24 = Vector2_op_Inequality_mBEA93B5A0E954FEFB863DC61CB209119980EC713_inline(L_22, L_23, NULL);
|
|
if (L_24)
|
|
{
|
|
goto IL_00f6;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_25 = __this->___m_OldScaleMode;
|
|
int32_t L_26 = __this->___m_ScaleMode;
|
|
if ((!(((uint32_t)L_25) == ((uint32_t)L_26))))
|
|
{
|
|
goto IL_00f6;
|
|
}
|
|
}
|
|
{
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_27 = __this->___m_OldOffset;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_28 = __this->___m_Offset;
|
|
bool L_29;
|
|
L_29 = Vector3_op_Inequality_m9F170CDFBF1E490E559DA5D06D6547501A402BBF_inline(L_27, L_28, NULL);
|
|
if (L_29)
|
|
{
|
|
goto IL_00f6;
|
|
}
|
|
}
|
|
{
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_30 = __this->___m_OldSize;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_31 = __this->___m_Size;
|
|
bool L_32;
|
|
L_32 = Vector3_op_Inequality_m9F170CDFBF1E490E559DA5D06D6547501A402BBF_inline(L_30, L_31, NULL);
|
|
if (L_32)
|
|
{
|
|
goto IL_00f6;
|
|
}
|
|
}
|
|
{
|
|
float L_33 = __this->___m_OldFadeFactor;
|
|
float L_34 = __this->___m_FadeFactor;
|
|
float L_35;
|
|
L_35 = fabsf(((float)il2cpp_codegen_subtract(L_33, L_34)));
|
|
float L_36 = ((Mathf_tE284D016E3B297B72311AAD9EB8F0E643F6A4682_StaticFields*)il2cpp_codegen_static_fields_for(Mathf_tE284D016E3B297B72311AAD9EB8F0E643F6A4682_il2cpp_TypeInfo_var))->___Epsilon;
|
|
if ((!(((float)L_35) > ((float)L_36))))
|
|
{
|
|
goto IL_00fc;
|
|
}
|
|
}
|
|
|
|
IL_00f6:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/DecalProjector.cs:361>
|
|
DecalProjector_OnValidate_mF1F8F3D8D65D22CC7D116AFA0BDB753997C26237(__this, NULL);
|
|
}
|
|
|
|
IL_00fc:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/DecalProjector.cs:363>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 33122
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DecalProjector_IsValid_m380E403CEE9DE29D38D448C8CB09DAE7569F2CBD (DecalProjector_tE7CEBAABFEF36162FD325321C1F94173CEFEDF64* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral22BB297A3EA6A210F84D6E9BD40BC3E9B40E1471);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral26B0573FA55389022EB9147C80C4B8E37A15A4B8);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral8C159DFF1F2B304532ED7A8E82FEB26C8E469416);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralD4CD417E1A72493EB1F413494479950631318DD5);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/DecalProjector.cs:371>
|
|
Material_t18053F08F347D0DCA5E1140EC7EC4533DD8A14E3* L_0;
|
|
L_0 = DecalProjector_get_material_m7B4C2B869C8E062AFF5519DDB9BD954DB5163C77_inline(__this, NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
bool L_1;
|
|
L_1 = Object_op_Equality_mB6120F782D83091EF56A198FCEBCF066DB4A9605(L_0, (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C*)NULL, NULL);
|
|
if (!L_1)
|
|
{
|
|
goto IL_0010;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/DecalProjector.cs:372>
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_0010:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/DecalProjector.cs:374>
|
|
Material_t18053F08F347D0DCA5E1140EC7EC4533DD8A14E3* L_2;
|
|
L_2 = DecalProjector_get_material_m7B4C2B869C8E062AFF5519DDB9BD954DB5163C77_inline(__this, NULL);
|
|
NullCheck(L_2);
|
|
int32_t L_3;
|
|
L_3 = Material_FindPass_mCCAAC088EE0E39AD5950BA41E965371417DBCFBC(L_2, _stringLiteral8C159DFF1F2B304532ED7A8E82FEB26C8E469416, NULL);
|
|
if ((((int32_t)L_3) == ((int32_t)(-1))))
|
|
{
|
|
goto IL_0025;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/DecalProjector.cs:375>
|
|
return (bool)1;
|
|
}
|
|
|
|
IL_0025:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/DecalProjector.cs:377>
|
|
Material_t18053F08F347D0DCA5E1140EC7EC4533DD8A14E3* L_4;
|
|
L_4 = DecalProjector_get_material_m7B4C2B869C8E062AFF5519DDB9BD954DB5163C77_inline(__this, NULL);
|
|
NullCheck(L_4);
|
|
int32_t L_5;
|
|
L_5 = Material_FindPass_mCCAAC088EE0E39AD5950BA41E965371417DBCFBC(L_4, _stringLiteral26B0573FA55389022EB9147C80C4B8E37A15A4B8, NULL);
|
|
if ((((int32_t)L_5) == ((int32_t)(-1))))
|
|
{
|
|
goto IL_003a;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/DecalProjector.cs:378>
|
|
return (bool)1;
|
|
}
|
|
|
|
IL_003a:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/DecalProjector.cs:380>
|
|
Material_t18053F08F347D0DCA5E1140EC7EC4533DD8A14E3* L_6;
|
|
L_6 = DecalProjector_get_material_m7B4C2B869C8E062AFF5519DDB9BD954DB5163C77_inline(__this, NULL);
|
|
NullCheck(L_6);
|
|
int32_t L_7;
|
|
L_7 = Material_FindPass_mCCAAC088EE0E39AD5950BA41E965371417DBCFBC(L_6, _stringLiteral22BB297A3EA6A210F84D6E9BD40BC3E9B40E1471, NULL);
|
|
if ((((int32_t)L_7) == ((int32_t)(-1))))
|
|
{
|
|
goto IL_004f;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/DecalProjector.cs:381>
|
|
return (bool)1;
|
|
}
|
|
|
|
IL_004f:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/DecalProjector.cs:383>
|
|
Material_t18053F08F347D0DCA5E1140EC7EC4533DD8A14E3* L_8;
|
|
L_8 = DecalProjector_get_material_m7B4C2B869C8E062AFF5519DDB9BD954DB5163C77_inline(__this, NULL);
|
|
NullCheck(L_8);
|
|
int32_t L_9;
|
|
L_9 = Material_FindPass_mCCAAC088EE0E39AD5950BA41E965371417DBCFBC(L_8, _stringLiteralD4CD417E1A72493EB1F413494479950631318DD5, NULL);
|
|
if ((((int32_t)L_9) == ((int32_t)(-1))))
|
|
{
|
|
goto IL_0064;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/DecalProjector.cs:384>
|
|
return (bool)1;
|
|
}
|
|
|
|
IL_0064:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/DecalProjector.cs:386>
|
|
return (bool)0;
|
|
}
|
|
}
|
|
// Method Definition Index: 33123
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DecalProjector_UpdateAllDecalProperties_m2B03EA9D72D018432E63E818687E09E752E63DA7 (const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DecalProjector_tE7CEBAABFEF36162FD325321C1F94173CEFEDF64_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* G_B2_0 = NULL;
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* G_B1_0 = NULL;
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/DecalProjector.cs:391>
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* L_0 = ((DecalProjector_tE7CEBAABFEF36162FD325321C1F94173CEFEDF64_StaticFields*)il2cpp_codegen_static_fields_for(DecalProjector_tE7CEBAABFEF36162FD325321C1F94173CEFEDF64_il2cpp_TypeInfo_var))->___onAllDecalPropertyChange;
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* L_1 = L_0;
|
|
if (L_1)
|
|
{
|
|
G_B2_0 = L_1;
|
|
goto IL_000a;
|
|
}
|
|
G_B1_0 = L_1;
|
|
}
|
|
{
|
|
return;
|
|
}
|
|
|
|
IL_000a:
|
|
{
|
|
NullCheck(G_B2_0);
|
|
Action_Invoke_m7126A54DACA72B845424072887B5F3A51FC3808E_inline(G_B2_0, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/DecalProjector.cs:392>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 33124
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DecalProjector_UnityEngine_ISerializationCallbackReceiver_OnBeforeSerialize_mFD1A46DBFDFE15D546454FE612AF91C471EEBC97 (DecalProjector_tE7CEBAABFEF36162FD325321C1F94173CEFEDF64* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/DecalProjector.cs:408>
|
|
int32_t L_0 = __this->___version;
|
|
if ((!(((uint32_t)L_0) == ((uint32_t)2))))
|
|
{
|
|
goto IL_0010;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/DecalProjector.cs:409>
|
|
__this->___version = 1;
|
|
}
|
|
|
|
IL_0010:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/DecalProjector.cs:410>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 33125
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DecalProjector_UnityEngine_ISerializationCallbackReceiver_OnAfterDeserialize_m2030D13A79818C5BCAEF344D21A51569D301E820 (DecalProjector_tE7CEBAABFEF36162FD325321C1F94173CEFEDF64* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RenderingLayerMask_tD73B9FC1A65A937F18E56833FC83BF89C2B085A1_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/DecalProjector.cs:415>
|
|
int32_t L_0 = __this->___version;
|
|
if ((!(((uint32_t)L_0) == ((uint32_t)2))))
|
|
{
|
|
goto IL_0010;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/DecalProjector.cs:416>
|
|
__this->___version = 0;
|
|
}
|
|
|
|
IL_0010:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/DecalProjector.cs:418>
|
|
int32_t L_1 = __this->___version;
|
|
if ((((int32_t)L_1) >= ((int32_t)1)))
|
|
{
|
|
goto IL_0031;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/DecalProjector.cs:421>
|
|
uint32_t L_2 = __this->___m_DecalLayerMask;
|
|
il2cpp_codegen_runtime_class_init_inline(RenderingLayerMask_tD73B9FC1A65A937F18E56833FC83BF89C2B085A1_il2cpp_TypeInfo_var);
|
|
RenderingLayerMask_tD73B9FC1A65A937F18E56833FC83BF89C2B085A1 L_3;
|
|
L_3 = RenderingLayerMask_op_Implicit_m38EAE38A00D82EDD2CD8CACB022F2B7E5FC5069B(L_2, NULL);
|
|
__this->___m_RenderingLayerMask = L_3;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/DecalProjector.cs:423>
|
|
__this->___version = 1;
|
|
}
|
|
|
|
IL_0031:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/DecalProjector.cs:425>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 33126
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DecalProjector__ctor_m7EFF19ACD0A29373711BF64DC46DD3259EF63C55 (DecalProjector_tE7CEBAABFEF36162FD325321C1F94173CEFEDF64* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RenderingLayerMask_tD73B9FC1A65A937F18E56833FC83BF89C2B085A1_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/DecalProjector.cs:58>
|
|
__this->___m_DrawDistance = (1000.0f);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/DecalProjector.cs:77>
|
|
__this->___m_FadeScale = (0.899999976f);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/DecalProjector.cs:96>
|
|
__this->___m_StartAngleFade = (180.0f);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/DecalProjector.cs:115>
|
|
__this->___m_EndAngleFade = (180.0f);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/DecalProjector.cs:133>
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_0;
|
|
memset((&L_0), 0, sizeof(L_0));
|
|
Vector2__ctor_m9525B79969AFFE3254B303A40997A56DEEB6F548_inline((&L_0), (1.0f), (1.0f), NULL);
|
|
__this->___m_UVScale = L_0;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/DecalProjector.cs:151>
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_1;
|
|
memset((&L_1), 0, sizeof(L_1));
|
|
Vector2__ctor_m9525B79969AFFE3254B303A40997A56DEEB6F548_inline((&L_1), (0.0f), (0.0f), NULL);
|
|
__this->___m_UVBias = L_1;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/DecalProjector.cs:168>
|
|
il2cpp_codegen_runtime_class_init_inline(RenderingLayerMask_tD73B9FC1A65A937F18E56833FC83BF89C2B085A1_il2cpp_TypeInfo_var);
|
|
RenderingLayerMask_tD73B9FC1A65A937F18E56833FC83BF89C2B085A1 L_2;
|
|
L_2 = RenderingLayerMask_get_defaultRenderingLayerMask_m75949CAB9D04088013D84AF5835A3F38BB723A7B_inline(NULL);
|
|
__this->___m_RenderingLayerMask = L_2;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/DecalProjector.cs:195>
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_3;
|
|
memset((&L_3), 0, sizeof(L_3));
|
|
Vector3__ctor_m376936E6B999EF1ECBE57D990A386303E2283DE0_inline((&L_3), (0.0f), (0.0f), (0.5f), NULL);
|
|
__this->___m_Offset = L_3;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/DecalProjector.cs:214>
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_4;
|
|
memset((&L_4), 0, sizeof(L_4));
|
|
Vector3__ctor_m376936E6B999EF1ECBE57D990A386303E2283DE0_inline((&L_4), (1.0f), (1.0f), (1.0f), NULL);
|
|
__this->___m_Size = L_4;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/DecalProjector.cs:233>
|
|
__this->___m_FadeFactor = (1.0f);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/DecalProjector.cs:251>
|
|
__this->___m_OldDrawDistance = (1000.0f);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/DecalProjector.cs:252>
|
|
__this->___m_OldFadeScale = (0.899999976f);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/DecalProjector.cs:253>
|
|
__this->___m_OldStartAngleFade = (180.0f);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/DecalProjector.cs:254>
|
|
__this->___m_OldEndAngleFade = (180.0f);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/DecalProjector.cs:255>
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_5;
|
|
memset((&L_5), 0, sizeof(L_5));
|
|
Vector2__ctor_m9525B79969AFFE3254B303A40997A56DEEB6F548_inline((&L_5), (1.0f), (1.0f), NULL);
|
|
__this->___m_OldUVScale = L_5;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/DecalProjector.cs:256>
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_6;
|
|
memset((&L_6), 0, sizeof(L_6));
|
|
Vector2__ctor_m9525B79969AFFE3254B303A40997A56DEEB6F548_inline((&L_6), (0.0f), (0.0f), NULL);
|
|
__this->___m_OldUVBias = L_6;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/DecalProjector.cs:258>
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_7;
|
|
memset((&L_7), 0, sizeof(L_7));
|
|
Vector3__ctor_m376936E6B999EF1ECBE57D990A386303E2283DE0_inline((&L_7), (0.0f), (0.0f), (0.5f), NULL);
|
|
__this->___m_OldOffset = L_7;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/DecalProjector.cs:259>
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_8;
|
|
memset((&L_8), 0, sizeof(L_8));
|
|
Vector3__ctor_m376936E6B999EF1ECBE57D990A386303E2283DE0_inline((&L_8), (1.0f), (1.0f), (1.0f), NULL);
|
|
__this->___m_OldSize = L_8;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/DecalProjector.cs:260>
|
|
__this->___m_OldFadeFactor = (1.0f);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/DecalProjector.cs:402>
|
|
__this->___version = 2;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/DecalProjector.deprecated.cs:8>
|
|
__this->___m_DecalLayerMask = 1;
|
|
MonoBehaviour__ctor_m592DB0105CA0BC97AA1C5F4AD27B12D68A3B7C1E(__this, NULL);
|
|
return;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
void DecalProjectorAction_Invoke_mB1B4E86AF2D30FFE627DC803CD91C8F0A80530F3_Multicast(DecalProjectorAction_tDFCBDEE542B3D640BD121E036275AA51A003CF5C* __this, DecalProjector_tE7CEBAABFEF36162FD325321C1F94173CEFEDF64* ___0_decalProjector, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_array_size_t length = __this->___delegates->max_length;
|
|
Delegate_t** delegatesToInvoke = reinterpret_cast<Delegate_t**>(__this->___delegates->GetAddressAtUnchecked(0));
|
|
for (il2cpp_array_size_t i = 0; i < length; i++)
|
|
{
|
|
DecalProjectorAction_tDFCBDEE542B3D640BD121E036275AA51A003CF5C* currentDelegate = reinterpret_cast<DecalProjectorAction_tDFCBDEE542B3D640BD121E036275AA51A003CF5C*>(delegatesToInvoke[i]);
|
|
typedef void (*FunctionPointerType) (RuntimeObject*, DecalProjector_tE7CEBAABFEF36162FD325321C1F94173CEFEDF64*, const RuntimeMethod*);
|
|
((FunctionPointerType)currentDelegate->___invoke_impl)((Il2CppObject*)currentDelegate->___method_code, ___0_decalProjector, reinterpret_cast<RuntimeMethod*>(currentDelegate->___method));
|
|
}
|
|
}
|
|
void DecalProjectorAction_Invoke_mB1B4E86AF2D30FFE627DC803CD91C8F0A80530F3_OpenInst(DecalProjectorAction_tDFCBDEE542B3D640BD121E036275AA51A003CF5C* __this, DecalProjector_tE7CEBAABFEF36162FD325321C1F94173CEFEDF64* ___0_decalProjector, const RuntimeMethod* method)
|
|
{
|
|
NullCheck(___0_decalProjector);
|
|
typedef void (*FunctionPointerType) (DecalProjector_tE7CEBAABFEF36162FD325321C1F94173CEFEDF64*, const RuntimeMethod*);
|
|
((FunctionPointerType)__this->___method_ptr)(___0_decalProjector, method);
|
|
}
|
|
void DecalProjectorAction_Invoke_mB1B4E86AF2D30FFE627DC803CD91C8F0A80530F3_OpenStatic(DecalProjectorAction_tDFCBDEE542B3D640BD121E036275AA51A003CF5C* __this, DecalProjector_tE7CEBAABFEF36162FD325321C1F94173CEFEDF64* ___0_decalProjector, const RuntimeMethod* method)
|
|
{
|
|
typedef void (*FunctionPointerType) (DecalProjector_tE7CEBAABFEF36162FD325321C1F94173CEFEDF64*, const RuntimeMethod*);
|
|
((FunctionPointerType)__this->___method_ptr)(___0_decalProjector, method);
|
|
}
|
|
void DecalProjectorAction_Invoke_mB1B4E86AF2D30FFE627DC803CD91C8F0A80530F3_OpenVirtual(DecalProjectorAction_tDFCBDEE542B3D640BD121E036275AA51A003CF5C* __this, DecalProjector_tE7CEBAABFEF36162FD325321C1F94173CEFEDF64* ___0_decalProjector, const RuntimeMethod* method)
|
|
{
|
|
NullCheck(___0_decalProjector);
|
|
VirtualActionInvoker0::Invoke(il2cpp_codegen_method_get_slot(method), ___0_decalProjector);
|
|
}
|
|
void DecalProjectorAction_Invoke_mB1B4E86AF2D30FFE627DC803CD91C8F0A80530F3_OpenInterface(DecalProjectorAction_tDFCBDEE542B3D640BD121E036275AA51A003CF5C* __this, DecalProjector_tE7CEBAABFEF36162FD325321C1F94173CEFEDF64* ___0_decalProjector, const RuntimeMethod* method)
|
|
{
|
|
NullCheck(___0_decalProjector);
|
|
InterfaceActionInvoker0::Invoke(il2cpp_codegen_method_get_slot(method), il2cpp_codegen_method_get_declaring_type(method), ___0_decalProjector);
|
|
}
|
|
void DecalProjectorAction_Invoke_mB1B4E86AF2D30FFE627DC803CD91C8F0A80530F3_OpenGenericVirtual(DecalProjectorAction_tDFCBDEE542B3D640BD121E036275AA51A003CF5C* __this, DecalProjector_tE7CEBAABFEF36162FD325321C1F94173CEFEDF64* ___0_decalProjector, const RuntimeMethod* method)
|
|
{
|
|
NullCheck(___0_decalProjector);
|
|
GenericVirtualActionInvoker0::Invoke(method, ___0_decalProjector);
|
|
}
|
|
void DecalProjectorAction_Invoke_mB1B4E86AF2D30FFE627DC803CD91C8F0A80530F3_OpenGenericInterface(DecalProjectorAction_tDFCBDEE542B3D640BD121E036275AA51A003CF5C* __this, DecalProjector_tE7CEBAABFEF36162FD325321C1F94173CEFEDF64* ___0_decalProjector, const RuntimeMethod* method)
|
|
{
|
|
NullCheck(___0_decalProjector);
|
|
GenericInterfaceActionInvoker0::Invoke(method, ___0_decalProjector);
|
|
}
|
|
// Method Definition Index: 33127
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DecalProjectorAction__ctor_m5C6BBC11B5DA637D6CF7BD2B42150850B3ED1ED8 (DecalProjectorAction_tDFCBDEE542B3D640BD121E036275AA51A003CF5C* __this, RuntimeObject* ___0_object, intptr_t ___1_method, const RuntimeMethod* method)
|
|
{
|
|
__this->___method_ptr = (intptr_t)il2cpp_codegen_get_method_pointer((RuntimeMethod*)___1_method);
|
|
__this->___method = ___1_method;
|
|
__this->___m_target = ___0_object;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_target), (void*)___0_object);
|
|
int parameterCount = il2cpp_codegen_method_parameter_count((RuntimeMethod*)___1_method);
|
|
__this->___method_code = (intptr_t)__this;
|
|
if (MethodIsStatic((RuntimeMethod*)___1_method))
|
|
{
|
|
bool isOpen = parameterCount == 1;
|
|
if (isOpen)
|
|
__this->___invoke_impl = (intptr_t)&DecalProjectorAction_Invoke_mB1B4E86AF2D30FFE627DC803CD91C8F0A80530F3_OpenStatic;
|
|
else
|
|
{
|
|
__this->___invoke_impl = __this->___method_ptr;
|
|
__this->___method_code = (intptr_t)__this->___m_target;
|
|
}
|
|
}
|
|
else
|
|
{
|
|
bool isOpen = parameterCount == 0;
|
|
if (isOpen)
|
|
{
|
|
if (__this->___method_is_virtual)
|
|
{
|
|
if (il2cpp_codegen_method_is_generic_instance_method((RuntimeMethod*)___1_method))
|
|
if (il2cpp_codegen_method_is_interface_method((RuntimeMethod*)___1_method))
|
|
__this->___invoke_impl = (intptr_t)&DecalProjectorAction_Invoke_mB1B4E86AF2D30FFE627DC803CD91C8F0A80530F3_OpenGenericInterface;
|
|
else
|
|
__this->___invoke_impl = (intptr_t)&DecalProjectorAction_Invoke_mB1B4E86AF2D30FFE627DC803CD91C8F0A80530F3_OpenGenericVirtual;
|
|
else
|
|
if (il2cpp_codegen_method_is_interface_method((RuntimeMethod*)___1_method))
|
|
__this->___invoke_impl = (intptr_t)&DecalProjectorAction_Invoke_mB1B4E86AF2D30FFE627DC803CD91C8F0A80530F3_OpenInterface;
|
|
else
|
|
__this->___invoke_impl = (intptr_t)&DecalProjectorAction_Invoke_mB1B4E86AF2D30FFE627DC803CD91C8F0A80530F3_OpenVirtual;
|
|
}
|
|
else
|
|
{
|
|
__this->___invoke_impl = (intptr_t)&DecalProjectorAction_Invoke_mB1B4E86AF2D30FFE627DC803CD91C8F0A80530F3_OpenInst;
|
|
}
|
|
}
|
|
else
|
|
{
|
|
if (___0_object == NULL)
|
|
il2cpp_codegen_raise_exception(il2cpp_codegen_get_argument_exception(NULL, "Delegate to an instance method cannot have null 'this'."), NULL);
|
|
__this->___invoke_impl = __this->___method_ptr;
|
|
__this->___method_code = (intptr_t)__this->___m_target;
|
|
}
|
|
}
|
|
__this->___extra_arg = (intptr_t)&DecalProjectorAction_Invoke_mB1B4E86AF2D30FFE627DC803CD91C8F0A80530F3_Multicast;
|
|
}
|
|
// Method Definition Index: 33128
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DecalProjectorAction_Invoke_mB1B4E86AF2D30FFE627DC803CD91C8F0A80530F3 (DecalProjectorAction_tDFCBDEE542B3D640BD121E036275AA51A003CF5C* __this, DecalProjector_tE7CEBAABFEF36162FD325321C1F94173CEFEDF64* ___0_decalProjector, const RuntimeMethod* method)
|
|
{
|
|
typedef void (*FunctionPointerType) (RuntimeObject*, DecalProjector_tE7CEBAABFEF36162FD325321C1F94173CEFEDF64*, const RuntimeMethod*);
|
|
((FunctionPointerType)__this->___invoke_impl)((Il2CppObject*)__this->___method_code, ___0_decalProjector, reinterpret_cast<RuntimeMethod*>(__this->___method));
|
|
}
|
|
// Method Definition Index: 33129
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* DecalProjectorAction_BeginInvoke_mA5C6C0B71EEA82E2650C91C53DF101E77C67A0BA (DecalProjectorAction_tDFCBDEE542B3D640BD121E036275AA51A003CF5C* __this, DecalProjector_tE7CEBAABFEF36162FD325321C1F94173CEFEDF64* ___0_decalProjector, AsyncCallback_t7FEF460CBDCFB9C5FA2EF776984778B9A4145F4C* ___1_callback, RuntimeObject* ___2_object, const RuntimeMethod* method)
|
|
{
|
|
void *__d_args[2] = {0};
|
|
__d_args[0] = ___0_decalProjector;
|
|
return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___1_callback, (RuntimeObject*)___2_object);
|
|
}
|
|
// Method Definition Index: 33130
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DecalProjectorAction_EndInvoke_mB2A72B2484B4B92B955A8BDCE855E5200612AD30 (DecalProjectorAction_tDFCBDEE542B3D640BD121E036275AA51A003CF5C* __this, RuntimeObject* ___0_result, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___0_result, 0);
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// Method Definition Index: 33131
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t DecalChunk_get_count_mEF67D584A3FF77C4A87A916D5F464D91D47C4B17 (DecalChunk_tD2C5831DD2A6E97A7A738C88C5922305BA0513CA* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalChunk.cs:11>
|
|
int32_t L_0 = __this->___U3CcountU3Ek__BackingField;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 33132
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DecalChunk_set_count_m55DFD6DAB9893215E6FB8E81AB00257C21488EC8 (DecalChunk_tD2C5831DD2A6E97A7A738C88C5922305BA0513CA* __this, int32_t ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalChunk.cs:11>
|
|
int32_t L_0 = ___0_value;
|
|
__this->___U3CcountU3Ek__BackingField = L_0;
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 33133
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t DecalChunk_get_capacity_m70E0A37FAAF474D0AC7277BCD11673777BA0C15A (DecalChunk_tD2C5831DD2A6E97A7A738C88C5922305BA0513CA* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalChunk.cs:12>
|
|
int32_t L_0 = __this->___U3CcapacityU3Ek__BackingField;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 33134
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DecalChunk_set_capacity_mB9107E4EB6FFDDEAD9D6DED6B83E65AC10E4E490 (DecalChunk_tD2C5831DD2A6E97A7A738C88C5922305BA0513CA* __this, int32_t ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalChunk.cs:12>
|
|
int32_t L_0 = ___0_value;
|
|
__this->___U3CcapacityU3Ek__BackingField = L_0;
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 33135
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR JobHandle_t5DF5F99902FED3C801A81C05205CEA6CE039EF08 DecalChunk_get_currentJobHandle_m0EBD28118EB20E5BBC3BE831171CD2CDC745AAD4 (DecalChunk_tD2C5831DD2A6E97A7A738C88C5922305BA0513CA* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalChunk.cs:14>
|
|
JobHandle_t5DF5F99902FED3C801A81C05205CEA6CE039EF08 L_0 = __this->___U3CcurrentJobHandleU3Ek__BackingField;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 33136
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DecalChunk_set_currentJobHandle_mE426515F8CC325C7F17BED7DB77E3024C43CE1AD (DecalChunk_tD2C5831DD2A6E97A7A738C88C5922305BA0513CA* __this, JobHandle_t5DF5F99902FED3C801A81C05205CEA6CE039EF08 ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalChunk.cs:14>
|
|
JobHandle_t5DF5F99902FED3C801A81C05205CEA6CE039EF08 L_0 = ___0_value;
|
|
__this->___U3CcurrentJobHandleU3Ek__BackingField = L_0;
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 33137
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DecalChunk_Push_m37E8B1DA87269C5DB14A4CBCE80F49CE9EDABE9C (DecalChunk_tD2C5831DD2A6E97A7A738C88C5922305BA0513CA* __this, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalChunk.cs:16>
|
|
int32_t L_0;
|
|
L_0 = DecalChunk_get_count_mEF67D584A3FF77C4A87A916D5F464D91D47C4B17_inline(__this, NULL);
|
|
V_0 = L_0;
|
|
int32_t L_1 = V_0;
|
|
DecalChunk_set_count_m55DFD6DAB9893215E6FB8E81AB00257C21488EC8_inline(__this, ((int32_t)il2cpp_codegen_add(L_1, 1)), NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalChunk.cs:16>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 33140
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DecalChunk_Dispose_m39F865D79E1F3409B35D6D6C19F8CEAFCBDF5423 (DecalChunk_tD2C5831DD2A6E97A7A738C88C5922305BA0513CA* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalChunk.cs:20>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 33141
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DecalChunk_ResizeNativeArray_m9652651457AB96782FBF7D08ADFF217768611E9C (DecalChunk_tD2C5831DD2A6E97A7A738C88C5922305BA0513CA* __this, TransformAccessArray_t104EDE5BB3DC7E294332BB1D2AA508CAEDEE83D4* ___0_array, DecalProjectorU5BU5D_t4DB89E5586C0FD4200DA223C0ADAFD3D66BF21F3* ___1_decalProjectors, int32_t ___2_capacity, const RuntimeMethod* method)
|
|
{
|
|
TransformAccessArray_t104EDE5BB3DC7E294332BB1D2AA508CAEDEE83D4 V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
int32_t V_1 = 0;
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalChunk.cs:24>
|
|
int32_t L_0 = ___2_capacity;
|
|
TransformAccessArray__ctor_m66B44699D46850AA776992B25A5443B6BAC42ED1((&V_0), L_0, (-1), NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalChunk.cs:25>
|
|
TransformAccessArray_t104EDE5BB3DC7E294332BB1D2AA508CAEDEE83D4* L_1 = ___0_array;
|
|
bool L_2;
|
|
L_2 = TransformAccessArray_get_isCreated_m27A01F9644D14864AAF311A87959DF8705A0B142(L_1, NULL);
|
|
if (!L_2)
|
|
{
|
|
goto IL_0037;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalChunk.cs:27>
|
|
V_1 = 0;
|
|
goto IL_0028;
|
|
}
|
|
|
|
IL_0015:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalChunk.cs:28>
|
|
DecalProjectorU5BU5D_t4DB89E5586C0FD4200DA223C0ADAFD3D66BF21F3* L_3 = ___1_decalProjectors;
|
|
int32_t L_4 = V_1;
|
|
NullCheck(L_3);
|
|
int32_t L_5 = L_4;
|
|
DecalProjector_tE7CEBAABFEF36162FD325321C1F94173CEFEDF64* L_6 = (L_3)->GetAt(static_cast<il2cpp_array_size_t>(L_5));
|
|
NullCheck(L_6);
|
|
Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1* L_7;
|
|
L_7 = Component_get_transform_m2919A1D81931E6932C7F06D4C2F0AB8DDA9A5371(L_6, NULL);
|
|
TransformAccessArray_Add_mC1B41F75FE0CD6AAB77186F6EF7A41E790BDE336((&V_0), L_7, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalChunk.cs:27>
|
|
int32_t L_8 = V_1;
|
|
V_1 = ((int32_t)il2cpp_codegen_add(L_8, 1));
|
|
}
|
|
|
|
IL_0028:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalChunk.cs:27>
|
|
int32_t L_9 = V_1;
|
|
TransformAccessArray_t104EDE5BB3DC7E294332BB1D2AA508CAEDEE83D4* L_10 = ___0_array;
|
|
int32_t L_11;
|
|
L_11 = TransformAccessArray_get_length_mC5BF0953331F1128106EC2647B558FB9163DE165(L_10, NULL);
|
|
if ((((int32_t)L_9) < ((int32_t)L_11)))
|
|
{
|
|
goto IL_0015;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalChunk.cs:29>
|
|
TransformAccessArray_t104EDE5BB3DC7E294332BB1D2AA508CAEDEE83D4* L_12 = ___0_array;
|
|
TransformAccessArray_Dispose_mC0775DCFFE41173544615D7031AC028D653C4186(L_12, NULL);
|
|
}
|
|
|
|
IL_0037:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalChunk.cs:31>
|
|
TransformAccessArray_t104EDE5BB3DC7E294332BB1D2AA508CAEDEE83D4* L_13 = ___0_array;
|
|
TransformAccessArray_t104EDE5BB3DC7E294332BB1D2AA508CAEDEE83D4 L_14 = V_0;
|
|
*(TransformAccessArray_t104EDE5BB3DC7E294332BB1D2AA508CAEDEE83D4*)L_13 = L_14;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalChunk.cs:32>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 33144
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DecalChunk__ctor_m948088C98FD016DE3F70B7312E3398BE8D9F1DF1 (DecalChunk_tD2C5831DD2A6E97A7A738C88C5922305BA0513CA* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
|
|
return;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// Method Definition Index: 33145
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t DecalSubDrawCall_get_count_m8B38E73F7F4564C38F29C7D6259DDD55774621D0 (DecalSubDrawCall_t68CDD2E663F805776DE0281AB4FAEDC8B8D9EC49* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalCreateDrawCallSystem.cs:11>
|
|
int32_t L_0 = __this->___end;
|
|
int32_t L_1 = __this->___start;
|
|
return ((int32_t)il2cpp_codegen_subtract(L_0, L_1));
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C int32_t DecalSubDrawCall_get_count_m8B38E73F7F4564C38F29C7D6259DDD55774621D0_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
DecalSubDrawCall_t68CDD2E663F805776DE0281AB4FAEDC8B8D9EC49* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<DecalSubDrawCall_t68CDD2E663F805776DE0281AB4FAEDC8B8D9EC49*>(__this + _offset);
|
|
int32_t _returnValue;
|
|
_returnValue = DecalSubDrawCall_get_count_m8B38E73F7F4564C38F29C7D6259DDD55774621D0(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// Method Definition Index: 33146
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DecalDrawCallChunk_set_subCallCount_m4E2F5DBF9BF8C7D32ECCADE866E9588F1F504A99 (DecalDrawCallChunk_tBD0491A1B0B7D19DF01A5C9EDE0A40CBEDBF7A3A* __this, int32_t ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalCreateDrawCallSystem.cs:25>
|
|
NativeArray_1_tA833EB7E3E1C9AF82C37976AD964B8D4BAC38B2C* L_0 = (NativeArray_1_tA833EB7E3E1C9AF82C37976AD964B8D4BAC38B2C*)(&__this->___subCallCounts);
|
|
int32_t L_1 = ___0_value;
|
|
IL2CPP_NATIVEARRAY_SET_ITEM(int32_t, (L_0)->___m_Buffer, 0, (L_1));
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalCreateDrawCallSystem.cs:25>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 33147
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t DecalDrawCallChunk_get_subCallCount_m122EAA49534D171EF4779395DA05095FC9DD080D (DecalDrawCallChunk_tBD0491A1B0B7D19DF01A5C9EDE0A40CBEDBF7A3A* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalCreateDrawCallSystem.cs:25>
|
|
NativeArray_1_tA833EB7E3E1C9AF82C37976AD964B8D4BAC38B2C* L_0 = (NativeArray_1_tA833EB7E3E1C9AF82C37976AD964B8D4BAC38B2C*)(&__this->___subCallCounts);
|
|
int32_t L_1;
|
|
L_1 = IL2CPP_NATIVEARRAY_GET_ITEM(int32_t, (L_0)->___m_Buffer, 0);
|
|
return L_1;
|
|
}
|
|
}
|
|
// Method Definition Index: 33148
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DecalDrawCallChunk_RemoveAtSwapBack_m0368E6D93AFB5C94AF2ED43B701DAD54B38923E3 (DecalDrawCallChunk_tBD0491A1B0B7D19DF01A5C9EDE0A40CBEDBF7A3A* __this, int32_t ___0_entityIndex, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DecalChunk_RemoveAtSwapBack_TisDecalSubDrawCall_t68CDD2E663F805776DE0281AB4FAEDC8B8D9EC49_m4BA3CBFAFEA6D310AACA36EB36A4F76192F8C6CA_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DecalChunk_RemoveAtSwapBack_TisSingle_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_m938CD70E1FF91D3803E9854F0872C6BE2F4CCD1B_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DecalChunk_RemoveAtSwapBack_Tisfloat4x4_t7EDD16F7F57DC7F61A6302535F7C19FB97915DF2_mE225441B0A02C93487869B33817022EBF2023283_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int32_t V_0 = 0;
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalCreateDrawCallSystem.cs:29>
|
|
NativeArray_1_t63326FF687E26631308829A9CDB0C51D523D4E9A* L_0 = (NativeArray_1_t63326FF687E26631308829A9CDB0C51D523D4E9A*)(&__this->___decalToWorlds);
|
|
int32_t L_1 = ___0_entityIndex;
|
|
int32_t L_2;
|
|
L_2 = DecalChunk_get_count_mEF67D584A3FF77C4A87A916D5F464D91D47C4B17_inline(__this, NULL);
|
|
DecalChunk_RemoveAtSwapBack_Tisfloat4x4_t7EDD16F7F57DC7F61A6302535F7C19FB97915DF2_mE225441B0A02C93487869B33817022EBF2023283(__this, L_0, L_1, L_2, DecalChunk_RemoveAtSwapBack_Tisfloat4x4_t7EDD16F7F57DC7F61A6302535F7C19FB97915DF2_mE225441B0A02C93487869B33817022EBF2023283_RuntimeMethod_var);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalCreateDrawCallSystem.cs:30>
|
|
NativeArray_1_t63326FF687E26631308829A9CDB0C51D523D4E9A* L_3 = (NativeArray_1_t63326FF687E26631308829A9CDB0C51D523D4E9A*)(&__this->___normalToDecals);
|
|
int32_t L_4 = ___0_entityIndex;
|
|
int32_t L_5;
|
|
L_5 = DecalChunk_get_count_mEF67D584A3FF77C4A87A916D5F464D91D47C4B17_inline(__this, NULL);
|
|
DecalChunk_RemoveAtSwapBack_Tisfloat4x4_t7EDD16F7F57DC7F61A6302535F7C19FB97915DF2_mE225441B0A02C93487869B33817022EBF2023283(__this, L_3, L_4, L_5, DecalChunk_RemoveAtSwapBack_Tisfloat4x4_t7EDD16F7F57DC7F61A6302535F7C19FB97915DF2_mE225441B0A02C93487869B33817022EBF2023283_RuntimeMethod_var);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalCreateDrawCallSystem.cs:31>
|
|
NativeArray_1_t3848EE4B6647317212A754634DE6DBC90B99FBEF* L_6 = (NativeArray_1_t3848EE4B6647317212A754634DE6DBC90B99FBEF*)(&__this->___renderingLayerMasks);
|
|
int32_t L_7 = ___0_entityIndex;
|
|
int32_t L_8;
|
|
L_8 = DecalChunk_get_count_mEF67D584A3FF77C4A87A916D5F464D91D47C4B17_inline(__this, NULL);
|
|
DecalChunk_RemoveAtSwapBack_TisSingle_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_m938CD70E1FF91D3803E9854F0872C6BE2F4CCD1B(__this, L_6, L_7, L_8, DecalChunk_RemoveAtSwapBack_TisSingle_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_m938CD70E1FF91D3803E9854F0872C6BE2F4CCD1B_RuntimeMethod_var);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalCreateDrawCallSystem.cs:32>
|
|
NativeArray_1_t197AED29D4CF7A6BC8C6C69B7BABD82BDC8475E2* L_9 = (NativeArray_1_t197AED29D4CF7A6BC8C6C69B7BABD82BDC8475E2*)(&__this->___subCalls);
|
|
int32_t L_10 = ___0_entityIndex;
|
|
int32_t L_11;
|
|
L_11 = DecalChunk_get_count_mEF67D584A3FF77C4A87A916D5F464D91D47C4B17_inline(__this, NULL);
|
|
DecalChunk_RemoveAtSwapBack_TisDecalSubDrawCall_t68CDD2E663F805776DE0281AB4FAEDC8B8D9EC49_m4BA3CBFAFEA6D310AACA36EB36A4F76192F8C6CA(__this, L_9, L_10, L_11, DecalChunk_RemoveAtSwapBack_TisDecalSubDrawCall_t68CDD2E663F805776DE0281AB4FAEDC8B8D9EC49_m4BA3CBFAFEA6D310AACA36EB36A4F76192F8C6CA_RuntimeMethod_var);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalCreateDrawCallSystem.cs:33>
|
|
int32_t L_12;
|
|
L_12 = DecalChunk_get_count_mEF67D584A3FF77C4A87A916D5F464D91D47C4B17_inline(__this, NULL);
|
|
V_0 = L_12;
|
|
int32_t L_13 = V_0;
|
|
DecalChunk_set_count_m55DFD6DAB9893215E6FB8E81AB00257C21488EC8_inline(__this, ((int32_t)il2cpp_codegen_subtract(L_13, 1)), NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalCreateDrawCallSystem.cs:34>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 33149
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DecalDrawCallChunk_SetCapacity_mD651244BAB9B504E553F114191E6F9A59C5F4F18 (DecalDrawCallChunk_tBD0491A1B0B7D19DF01A5C9EDE0A40CBEDBF7A3A* __this, int32_t ___0_newCapacity, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ArrayExtensions_ResizeArray_TisDecalSubDrawCall_t68CDD2E663F805776DE0281AB4FAEDC8B8D9EC49_m53427FE0458D6B20A22026DD0D267FBEEDE41E78_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ArrayExtensions_ResizeArray_TisSingle_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_m3093DA203EC655A89B97A720E0E41B9D1F6BF89D_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ArrayExtensions_ResizeArray_Tisfloat4x4_t7EDD16F7F57DC7F61A6302535F7C19FB97915DF2_m4455C8B60BA08395D0B896AD808F0433ABCCA888_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalCreateDrawCallSystem.cs:38>
|
|
NativeArray_1_t63326FF687E26631308829A9CDB0C51D523D4E9A* L_0 = (NativeArray_1_t63326FF687E26631308829A9CDB0C51D523D4E9A*)(&__this->___decalToWorlds);
|
|
int32_t L_1 = ___0_newCapacity;
|
|
ArrayExtensions_ResizeArray_Tisfloat4x4_t7EDD16F7F57DC7F61A6302535F7C19FB97915DF2_m4455C8B60BA08395D0B896AD808F0433ABCCA888(L_0, L_1, ArrayExtensions_ResizeArray_Tisfloat4x4_t7EDD16F7F57DC7F61A6302535F7C19FB97915DF2_m4455C8B60BA08395D0B896AD808F0433ABCCA888_RuntimeMethod_var);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalCreateDrawCallSystem.cs:39>
|
|
NativeArray_1_t63326FF687E26631308829A9CDB0C51D523D4E9A* L_2 = (NativeArray_1_t63326FF687E26631308829A9CDB0C51D523D4E9A*)(&__this->___normalToDecals);
|
|
int32_t L_3 = ___0_newCapacity;
|
|
ArrayExtensions_ResizeArray_Tisfloat4x4_t7EDD16F7F57DC7F61A6302535F7C19FB97915DF2_m4455C8B60BA08395D0B896AD808F0433ABCCA888(L_2, L_3, ArrayExtensions_ResizeArray_Tisfloat4x4_t7EDD16F7F57DC7F61A6302535F7C19FB97915DF2_m4455C8B60BA08395D0B896AD808F0433ABCCA888_RuntimeMethod_var);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalCreateDrawCallSystem.cs:40>
|
|
NativeArray_1_t3848EE4B6647317212A754634DE6DBC90B99FBEF* L_4 = (NativeArray_1_t3848EE4B6647317212A754634DE6DBC90B99FBEF*)(&__this->___renderingLayerMasks);
|
|
int32_t L_5 = ___0_newCapacity;
|
|
ArrayExtensions_ResizeArray_TisSingle_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_m3093DA203EC655A89B97A720E0E41B9D1F6BF89D(L_4, L_5, ArrayExtensions_ResizeArray_TisSingle_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_m3093DA203EC655A89B97A720E0E41B9D1F6BF89D_RuntimeMethod_var);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalCreateDrawCallSystem.cs:41>
|
|
NativeArray_1_t197AED29D4CF7A6BC8C6C69B7BABD82BDC8475E2* L_6 = (NativeArray_1_t197AED29D4CF7A6BC8C6C69B7BABD82BDC8475E2*)(&__this->___subCalls);
|
|
int32_t L_7 = ___0_newCapacity;
|
|
ArrayExtensions_ResizeArray_TisDecalSubDrawCall_t68CDD2E663F805776DE0281AB4FAEDC8B8D9EC49_m53427FE0458D6B20A22026DD0D267FBEEDE41E78(L_6, L_7, ArrayExtensions_ResizeArray_TisDecalSubDrawCall_t68CDD2E663F805776DE0281AB4FAEDC8B8D9EC49_m53427FE0458D6B20A22026DD0D267FBEEDE41E78_RuntimeMethod_var);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalCreateDrawCallSystem.cs:42>
|
|
int32_t L_8 = ___0_newCapacity;
|
|
DecalChunk_set_capacity_mB9107E4EB6FFDDEAD9D6DED6B83E65AC10E4E490_inline(__this, L_8, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalCreateDrawCallSystem.cs:43>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 33150
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DecalDrawCallChunk_Dispose_m3CB95E1D9D54E8B7AFFAA3CB23777B6090E70427 (DecalDrawCallChunk_tBD0491A1B0B7D19DF01A5C9EDE0A40CBEDBF7A3A* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NativeArray_1_Dispose_m05C674E687B921C37722A6A1FF938FD56574642E_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NativeArray_1_Dispose_m994685B1A26FB0972542BE1216EBD59B332E880A_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NativeArray_1_Dispose_mACC8FD312FD1CB4F9106BB30A2FED079996CBCD4_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NativeArray_1_Dispose_mC07280A768D065A052D995F3E6175A27CD62E1F6_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalCreateDrawCallSystem.cs:47>
|
|
NativeArray_1_tA833EB7E3E1C9AF82C37976AD964B8D4BAC38B2C* L_0 = (NativeArray_1_tA833EB7E3E1C9AF82C37976AD964B8D4BAC38B2C*)(&__this->___subCallCounts);
|
|
NativeArray_1_Dispose_m05C674E687B921C37722A6A1FF938FD56574642E(L_0, NativeArray_1_Dispose_m05C674E687B921C37722A6A1FF938FD56574642E_RuntimeMethod_var);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalCreateDrawCallSystem.cs:49>
|
|
int32_t L_1;
|
|
L_1 = DecalChunk_get_capacity_m70E0A37FAAF474D0AC7277BCD11673777BA0C15A_inline(__this, NULL);
|
|
if (L_1)
|
|
{
|
|
goto IL_0014;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalCreateDrawCallSystem.cs:50>
|
|
return;
|
|
}
|
|
|
|
IL_0014:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalCreateDrawCallSystem.cs:52>
|
|
NativeArray_1_t63326FF687E26631308829A9CDB0C51D523D4E9A* L_2 = (NativeArray_1_t63326FF687E26631308829A9CDB0C51D523D4E9A*)(&__this->___decalToWorlds);
|
|
NativeArray_1_Dispose_m994685B1A26FB0972542BE1216EBD59B332E880A(L_2, NativeArray_1_Dispose_m994685B1A26FB0972542BE1216EBD59B332E880A_RuntimeMethod_var);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalCreateDrawCallSystem.cs:53>
|
|
NativeArray_1_t63326FF687E26631308829A9CDB0C51D523D4E9A* L_3 = (NativeArray_1_t63326FF687E26631308829A9CDB0C51D523D4E9A*)(&__this->___normalToDecals);
|
|
NativeArray_1_Dispose_m994685B1A26FB0972542BE1216EBD59B332E880A(L_3, NativeArray_1_Dispose_m994685B1A26FB0972542BE1216EBD59B332E880A_RuntimeMethod_var);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalCreateDrawCallSystem.cs:54>
|
|
NativeArray_1_t3848EE4B6647317212A754634DE6DBC90B99FBEF* L_4 = (NativeArray_1_t3848EE4B6647317212A754634DE6DBC90B99FBEF*)(&__this->___renderingLayerMasks);
|
|
NativeArray_1_Dispose_mC07280A768D065A052D995F3E6175A27CD62E1F6(L_4, NativeArray_1_Dispose_mC07280A768D065A052D995F3E6175A27CD62E1F6_RuntimeMethod_var);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalCreateDrawCallSystem.cs:55>
|
|
NativeArray_1_t197AED29D4CF7A6BC8C6C69B7BABD82BDC8475E2* L_5 = (NativeArray_1_t197AED29D4CF7A6BC8C6C69B7BABD82BDC8475E2*)(&__this->___subCalls);
|
|
NativeArray_1_Dispose_mACC8FD312FD1CB4F9106BB30A2FED079996CBCD4(L_5, NativeArray_1_Dispose_mACC8FD312FD1CB4F9106BB30A2FED079996CBCD4_RuntimeMethod_var);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalCreateDrawCallSystem.cs:56>
|
|
DecalChunk_set_count_m55DFD6DAB9893215E6FB8E81AB00257C21488EC8_inline(__this, 0, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalCreateDrawCallSystem.cs:57>
|
|
DecalChunk_set_capacity_mB9107E4EB6FFDDEAD9D6DED6B83E65AC10E4E490_inline(__this, 0, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalCreateDrawCallSystem.cs:58>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 33151
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DecalDrawCallChunk__ctor_m9CBE14EC12931439E7C3B41B1C40A086139AA7EE (DecalDrawCallChunk_tBD0491A1B0B7D19DF01A5C9EDE0A40CBEDBF7A3A* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
DecalChunk__ctor_m948088C98FD016DE3F70B7312E3398BE8D9F1DF1(__this, NULL);
|
|
return;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// Method Definition Index: 33152
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float DecalCreateDrawCallSystem_get_maxDrawDistance_m6520E477520ECA78ABBF3B3D617BB91133EDCE2F (DecalCreateDrawCallSystem_tD9FCA6DDC386309EBF5C2D737D458A33E7EAF6DA* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalCreateDrawCallSystem.cs:75>
|
|
float L_0 = __this->___m_MaxDrawDistance;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 33153
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DecalCreateDrawCallSystem_set_maxDrawDistance_m0C3214E780FC8E8481DA13DCFF94879AB99A8BB8 (DecalCreateDrawCallSystem_tD9FCA6DDC386309EBF5C2D737D458A33E7EAF6DA* __this, float ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalCreateDrawCallSystem.cs:76>
|
|
float L_0 = ___0_value;
|
|
__this->___m_MaxDrawDistance = L_0;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalCreateDrawCallSystem.cs:76>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 33154
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DecalCreateDrawCallSystem__ctor_mC122DFBE7BF9CF09F5EAF246BDD1C532275875F4 (DecalCreateDrawCallSystem_tD9FCA6DDC386309EBF5C2D737D458A33E7EAF6DA* __this, DecalEntityManager_tDA689202786946588782A67EF3F0B0D9121C294A* ___0_entityManager, float ___1_maxDrawDistance, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ProfilingSampler_t420D4672EDB44E0EF980B31ADFD9E5747200FECE_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralE452E671132A5760BA291DF9896EAD97B7BE52BA);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalCreateDrawCallSystem.cs:79>
|
|
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalCreateDrawCallSystem.cs:81>
|
|
DecalEntityManager_tDA689202786946588782A67EF3F0B0D9121C294A* L_0 = ___0_entityManager;
|
|
__this->___m_EntityManager = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_EntityManager), (void*)L_0);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalCreateDrawCallSystem.cs:82>
|
|
ProfilingSampler_t420D4672EDB44E0EF980B31ADFD9E5747200FECE* L_1 = (ProfilingSampler_t420D4672EDB44E0EF980B31ADFD9E5747200FECE*)il2cpp_codegen_object_new(ProfilingSampler_t420D4672EDB44E0EF980B31ADFD9E5747200FECE_il2cpp_TypeInfo_var);
|
|
ProfilingSampler__ctor_m26500989FCDB07FA33C9A3BB7F215CBD892F5BB7(L_1, _stringLiteralE452E671132A5760BA291DF9896EAD97B7BE52BA, NULL);
|
|
__this->___m_Sampler = L_1;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_Sampler), (void*)L_1);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalCreateDrawCallSystem.cs:83>
|
|
float L_2 = ___1_maxDrawDistance;
|
|
__this->___m_MaxDrawDistance = L_2;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalCreateDrawCallSystem.cs:84>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 33155
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DecalCreateDrawCallSystem_Execute_m9065BD8BC60D5F12697E2F7C8B803E484A759BC8 (DecalCreateDrawCallSystem_tD9FCA6DDC386309EBF5C2D737D458A33E7EAF6DA* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Item_m1678465F50522CE2FAF1BB8EA6969B91268E5FA3_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Item_m4AA84FB449EDD461A47D02E7C9ED3EF72D48A44E_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Item_mF1A0B8107AFE027BCC67DA021B857B6495FA1A90_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
ProfilingScope_t57898BA31E8EF8F083EF84E0DA2737AC61CBC5BD V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
int32_t V_1 = 0;
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalCreateDrawCallSystem.cs:88>
|
|
ProfilingSampler_t420D4672EDB44E0EF980B31ADFD9E5747200FECE* L_0 = __this->___m_Sampler;
|
|
ProfilingScope__ctor_m4B73587A2295443A73B64DDD3D484D8EAECC0D65((&V_0), L_0, NULL);
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_0074:
|
|
{
|
|
ProfilingScope_Dispose_m4231A2ACA1F8E345BB0078310A9F7601704C8BE4((&V_0), NULL);
|
|
return;
|
|
}
|
|
});
|
|
try
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalCreateDrawCallSystem.cs:90>
|
|
V_1 = 0;
|
|
goto IL_0064_1;
|
|
}
|
|
|
|
IL_0011_1:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalCreateDrawCallSystem.cs:91>
|
|
DecalEntityManager_tDA689202786946588782A67EF3F0B0D9121C294A* L_1 = __this->___m_EntityManager;
|
|
NullCheck(L_1);
|
|
List_1_t1A9527CB44249AD17D081A2D7A468343FC2D0720* L_2 = L_1->___cachedChunks;
|
|
int32_t L_3 = V_1;
|
|
NullCheck(L_2);
|
|
DecalCachedChunk_tDEF493C8A3A1F442BDEC1794BDDA0996B32DCACE* L_4;
|
|
L_4 = List_1_get_Item_mF1A0B8107AFE027BCC67DA021B857B6495FA1A90(L_2, L_3, List_1_get_Item_mF1A0B8107AFE027BCC67DA021B857B6495FA1A90_RuntimeMethod_var);
|
|
DecalEntityManager_tDA689202786946588782A67EF3F0B0D9121C294A* L_5 = __this->___m_EntityManager;
|
|
NullCheck(L_5);
|
|
List_1_t2E25D2E682EF62FB0FC538A4C88B3D49616A03DC* L_6 = L_5->___culledChunks;
|
|
int32_t L_7 = V_1;
|
|
NullCheck(L_6);
|
|
DecalCulledChunk_tFD4472F0ADDD173C7B13E8B0529983E745F12ED3* L_8;
|
|
L_8 = List_1_get_Item_m1678465F50522CE2FAF1BB8EA6969B91268E5FA3(L_6, L_7, List_1_get_Item_m1678465F50522CE2FAF1BB8EA6969B91268E5FA3_RuntimeMethod_var);
|
|
DecalEntityManager_tDA689202786946588782A67EF3F0B0D9121C294A* L_9 = __this->___m_EntityManager;
|
|
NullCheck(L_9);
|
|
List_1_tD8DB23A94A44626CAF7E9B5B4A949D0FDC7B27A7* L_10 = L_9->___drawCallChunks;
|
|
int32_t L_11 = V_1;
|
|
NullCheck(L_10);
|
|
DecalDrawCallChunk_tBD0491A1B0B7D19DF01A5C9EDE0A40CBEDBF7A3A* L_12;
|
|
L_12 = List_1_get_Item_m4AA84FB449EDD461A47D02E7C9ED3EF72D48A44E(L_10, L_11, List_1_get_Item_m4AA84FB449EDD461A47D02E7C9ED3EF72D48A44E_RuntimeMethod_var);
|
|
DecalEntityManager_tDA689202786946588782A67EF3F0B0D9121C294A* L_13 = __this->___m_EntityManager;
|
|
NullCheck(L_13);
|
|
List_1_t1A9527CB44249AD17D081A2D7A468343FC2D0720* L_14 = L_13->___cachedChunks;
|
|
int32_t L_15 = V_1;
|
|
NullCheck(L_14);
|
|
DecalCachedChunk_tDEF493C8A3A1F442BDEC1794BDDA0996B32DCACE* L_16;
|
|
L_16 = List_1_get_Item_mF1A0B8107AFE027BCC67DA021B857B6495FA1A90(L_14, L_15, List_1_get_Item_mF1A0B8107AFE027BCC67DA021B857B6495FA1A90_RuntimeMethod_var);
|
|
NullCheck(L_16);
|
|
int32_t L_17;
|
|
L_17 = DecalChunk_get_count_mEF67D584A3FF77C4A87A916D5F464D91D47C4B17_inline(L_16, NULL);
|
|
DecalCreateDrawCallSystem_Execute_mBF8D18F365AC3BA7FC5C0FA8450D707858EAE597(__this, L_4, L_8, L_12, L_17, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalCreateDrawCallSystem.cs:90>
|
|
int32_t L_18 = V_1;
|
|
V_1 = ((int32_t)il2cpp_codegen_add(L_18, 1));
|
|
}
|
|
|
|
IL_0064_1:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalCreateDrawCallSystem.cs:90>
|
|
int32_t L_19 = V_1;
|
|
DecalEntityManager_tDA689202786946588782A67EF3F0B0D9121C294A* L_20 = __this->___m_EntityManager;
|
|
NullCheck(L_20);
|
|
int32_t L_21 = L_20->___chunkCount;
|
|
if ((((int32_t)L_19) < ((int32_t)L_21)))
|
|
{
|
|
goto IL_0011_1;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalCreateDrawCallSystem.cs:92>
|
|
goto IL_0082;
|
|
}
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_0082:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalCreateDrawCallSystem.cs:93>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 33156
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DecalCreateDrawCallSystem_Execute_mBF8D18F365AC3BA7FC5C0FA8450D707858EAE597 (DecalCreateDrawCallSystem_tD9FCA6DDC386309EBF5C2D737D458A33E7EAF6DA* __this, DecalCachedChunk_tDEF493C8A3A1F442BDEC1794BDDA0996B32DCACE* ___0_cachedChunk, DecalCulledChunk_tFD4472F0ADDD173C7B13E8B0529983E745F12ED3* ___1_culledChunk, DecalDrawCallChunk_tBD0491A1B0B7D19DF01A5C9EDE0A40CBEDBF7A3A* ___2_drawCallChunk, int32_t ___3_count, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IJobExtensions_Schedule_TisDrawCallJob_t3EA2ABC822AD5DF50675A5B437DAB927DB95215D_m5EC4DC118A53DBDBF558451EE4FB9DE5F18A379A_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
JobHandle_t5DF5F99902FED3C801A81C05205CEA6CE039EF08 V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
DrawCallJob_t3EA2ABC822AD5DF50675A5B437DAB927DB95215D V_1;
|
|
memset((&V_1), 0, sizeof(V_1));
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalCreateDrawCallSystem.cs:97>
|
|
int32_t L_0 = ___3_count;
|
|
if (L_0)
|
|
{
|
|
goto IL_0005;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalCreateDrawCallSystem.cs:98>
|
|
return;
|
|
}
|
|
|
|
IL_0005:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalCreateDrawCallSystem.cs:100>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalCreateDrawCallSystem.cs:101>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalCreateDrawCallSystem.cs:102>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalCreateDrawCallSystem.cs:103>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalCreateDrawCallSystem.cs:104>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalCreateDrawCallSystem.cs:105>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalCreateDrawCallSystem.cs:106>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalCreateDrawCallSystem.cs:107>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalCreateDrawCallSystem.cs:108>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalCreateDrawCallSystem.cs:109>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalCreateDrawCallSystem.cs:110>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalCreateDrawCallSystem.cs:111>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalCreateDrawCallSystem.cs:112>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalCreateDrawCallSystem.cs:113>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalCreateDrawCallSystem.cs:114>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalCreateDrawCallSystem.cs:115>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalCreateDrawCallSystem.cs:116>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalCreateDrawCallSystem.cs:117>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalCreateDrawCallSystem.cs:118>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalCreateDrawCallSystem.cs:119>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalCreateDrawCallSystem.cs:120>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalCreateDrawCallSystem.cs:121>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalCreateDrawCallSystem.cs:122>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalCreateDrawCallSystem.cs:123>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalCreateDrawCallSystem.cs:124>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalCreateDrawCallSystem.cs:125>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalCreateDrawCallSystem.cs:126>
|
|
il2cpp_codegen_initobj((&V_1), sizeof(DrawCallJob_t3EA2ABC822AD5DF50675A5B437DAB927DB95215D));
|
|
DecalCachedChunk_tDEF493C8A3A1F442BDEC1794BDDA0996B32DCACE* L_1 = ___0_cachedChunk;
|
|
NullCheck(L_1);
|
|
NativeArray_1_t63326FF687E26631308829A9CDB0C51D523D4E9A L_2 = L_1->___decalToWorlds;
|
|
(&V_1)->___decalToWorlds = L_2;
|
|
DecalCachedChunk_tDEF493C8A3A1F442BDEC1794BDDA0996B32DCACE* L_3 = ___0_cachedChunk;
|
|
NullCheck(L_3);
|
|
NativeArray_1_t63326FF687E26631308829A9CDB0C51D523D4E9A L_4 = L_3->___normalToWorlds;
|
|
(&V_1)->___normalToWorlds = L_4;
|
|
DecalCachedChunk_tDEF493C8A3A1F442BDEC1794BDDA0996B32DCACE* L_5 = ___0_cachedChunk;
|
|
NullCheck(L_5);
|
|
NativeArray_1_t63326FF687E26631308829A9CDB0C51D523D4E9A L_6 = L_5->___sizeOffsets;
|
|
(&V_1)->___sizeOffsets = L_6;
|
|
DecalCachedChunk_tDEF493C8A3A1F442BDEC1794BDDA0996B32DCACE* L_7 = ___0_cachedChunk;
|
|
NullCheck(L_7);
|
|
NativeArray_1_t46D43179C2B71BAB34958401E08B5C5DA4488E9E L_8 = L_7->___drawDistances;
|
|
(&V_1)->___drawDistances = L_8;
|
|
DecalCachedChunk_tDEF493C8A3A1F442BDEC1794BDDA0996B32DCACE* L_9 = ___0_cachedChunk;
|
|
NullCheck(L_9);
|
|
NativeArray_1_t46D43179C2B71BAB34958401E08B5C5DA4488E9E L_10 = L_9->___angleFades;
|
|
(&V_1)->___angleFades = L_10;
|
|
DecalCachedChunk_tDEF493C8A3A1F442BDEC1794BDDA0996B32DCACE* L_11 = ___0_cachedChunk;
|
|
NullCheck(L_11);
|
|
NativeArray_1_tB5EA234C6ABA1F626A4BEF4053D06783E15A3881 L_12 = L_11->___uvScaleBias;
|
|
(&V_1)->___uvScaleBiases = L_12;
|
|
DecalCachedChunk_tDEF493C8A3A1F442BDEC1794BDDA0996B32DCACE* L_13 = ___0_cachedChunk;
|
|
NullCheck(L_13);
|
|
NativeArray_1_tA833EB7E3E1C9AF82C37976AD964B8D4BAC38B2C L_14 = L_13->___layerMasks;
|
|
(&V_1)->___layerMasks = L_14;
|
|
DecalCachedChunk_tDEF493C8A3A1F442BDEC1794BDDA0996B32DCACE* L_15 = ___0_cachedChunk;
|
|
NullCheck(L_15);
|
|
NativeArray_1_t07975297AD7F7512193094A7C0703BA872EF7A7B L_16 = L_15->___sceneLayerMasks;
|
|
(&V_1)->___sceneLayerMasks = L_16;
|
|
DecalCachedChunk_tDEF493C8A3A1F442BDEC1794BDDA0996B32DCACE* L_17 = ___0_cachedChunk;
|
|
NullCheck(L_17);
|
|
NativeArray_1_t3848EE4B6647317212A754634DE6DBC90B99FBEF L_18 = L_17->___fadeFactors;
|
|
(&V_1)->___fadeFactors = L_18;
|
|
DecalCachedChunk_tDEF493C8A3A1F442BDEC1794BDDA0996B32DCACE* L_19 = ___0_cachedChunk;
|
|
NullCheck(L_19);
|
|
NativeArray_1_t3D8121943984EEED49DC98DED560DCC6638111B6 L_20 = L_19->___boundingSpheres;
|
|
(&V_1)->___boundingSpheres = L_20;
|
|
DecalCachedChunk_tDEF493C8A3A1F442BDEC1794BDDA0996B32DCACE* L_21 = ___0_cachedChunk;
|
|
NullCheck(L_21);
|
|
NativeArray_1_t453E3DEA4CC9F1056F24E417C3308C35174BC184 L_22 = L_21->___renderingLayerMasks;
|
|
(&V_1)->___renderingLayerMasks = L_22;
|
|
DecalCulledChunk_tFD4472F0ADDD173C7B13E8B0529983E745F12ED3* L_23 = ___1_culledChunk;
|
|
NullCheck(L_23);
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_24 = L_23->___cameraPosition;
|
|
(&V_1)->___cameraPosition = L_24;
|
|
DecalCulledChunk_tFD4472F0ADDD173C7B13E8B0529983E745F12ED3* L_25 = ___1_culledChunk;
|
|
NullCheck(L_25);
|
|
uint64_t L_26 = L_25->___sceneCullingMask;
|
|
(&V_1)->___sceneCullingMask = L_26;
|
|
DecalCulledChunk_tFD4472F0ADDD173C7B13E8B0529983E745F12ED3* L_27 = ___1_culledChunk;
|
|
NullCheck(L_27);
|
|
int32_t L_28 = L_27->___cullingMask;
|
|
(&V_1)->___cullingMask = L_28;
|
|
DecalCulledChunk_tFD4472F0ADDD173C7B13E8B0529983E745F12ED3* L_29 = ___1_culledChunk;
|
|
NullCheck(L_29);
|
|
NativeArray_1_tA833EB7E3E1C9AF82C37976AD964B8D4BAC38B2C L_30 = L_29->___visibleDecalIndices;
|
|
(&V_1)->___visibleDecalIndices = L_30;
|
|
DecalCulledChunk_tFD4472F0ADDD173C7B13E8B0529983E745F12ED3* L_31 = ___1_culledChunk;
|
|
NullCheck(L_31);
|
|
int32_t L_32 = L_31->___visibleDecalCount;
|
|
(&V_1)->___visibleDecalCount = L_32;
|
|
float L_33 = __this->___m_MaxDrawDistance;
|
|
(&V_1)->___maxDrawDistance = L_33;
|
|
DecalDrawCallChunk_tBD0491A1B0B7D19DF01A5C9EDE0A40CBEDBF7A3A* L_34 = ___2_drawCallChunk;
|
|
NullCheck(L_34);
|
|
NativeArray_1_t63326FF687E26631308829A9CDB0C51D523D4E9A L_35 = L_34->___decalToWorlds;
|
|
(&V_1)->___decalToWorldsDraw = L_35;
|
|
DecalDrawCallChunk_tBD0491A1B0B7D19DF01A5C9EDE0A40CBEDBF7A3A* L_36 = ___2_drawCallChunk;
|
|
NullCheck(L_36);
|
|
NativeArray_1_t63326FF687E26631308829A9CDB0C51D523D4E9A L_37 = L_36->___normalToDecals;
|
|
(&V_1)->___normalToDecalsDraw = L_37;
|
|
DecalDrawCallChunk_tBD0491A1B0B7D19DF01A5C9EDE0A40CBEDBF7A3A* L_38 = ___2_drawCallChunk;
|
|
NullCheck(L_38);
|
|
NativeArray_1_t3848EE4B6647317212A754634DE6DBC90B99FBEF L_39 = L_38->___renderingLayerMasks;
|
|
(&V_1)->___renderingLayerMasksDraw = L_39;
|
|
DecalDrawCallChunk_tBD0491A1B0B7D19DF01A5C9EDE0A40CBEDBF7A3A* L_40 = ___2_drawCallChunk;
|
|
NullCheck(L_40);
|
|
NativeArray_1_t197AED29D4CF7A6BC8C6C69B7BABD82BDC8475E2 L_41 = L_40->___subCalls;
|
|
(&V_1)->___subCalls = L_41;
|
|
DecalDrawCallChunk_tBD0491A1B0B7D19DF01A5C9EDE0A40CBEDBF7A3A* L_42 = ___2_drawCallChunk;
|
|
NullCheck(L_42);
|
|
NativeArray_1_tA833EB7E3E1C9AF82C37976AD964B8D4BAC38B2C L_43 = L_42->___subCallCounts;
|
|
(&V_1)->___subCallCount = L_43;
|
|
DrawCallJob_t3EA2ABC822AD5DF50675A5B437DAB927DB95215D L_44 = V_1;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalCreateDrawCallSystem.cs:128>
|
|
DecalCachedChunk_tDEF493C8A3A1F442BDEC1794BDDA0996B32DCACE* L_45 = ___0_cachedChunk;
|
|
NullCheck(L_45);
|
|
JobHandle_t5DF5F99902FED3C801A81C05205CEA6CE039EF08 L_46;
|
|
L_46 = DecalChunk_get_currentJobHandle_m0EBD28118EB20E5BBC3BE831171CD2CDC745AAD4_inline(L_45, NULL);
|
|
JobHandle_t5DF5F99902FED3C801A81C05205CEA6CE039EF08 L_47;
|
|
L_47 = IJobExtensions_Schedule_TisDrawCallJob_t3EA2ABC822AD5DF50675A5B437DAB927DB95215D_m5EC4DC118A53DBDBF558451EE4FB9DE5F18A379A(L_44, L_46, IJobExtensions_Schedule_TisDrawCallJob_t3EA2ABC822AD5DF50675A5B437DAB927DB95215D_m5EC4DC118A53DBDBF558451EE4FB9DE5F18A379A_RuntimeMethod_var);
|
|
V_0 = L_47;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalCreateDrawCallSystem.cs:129>
|
|
DecalDrawCallChunk_tBD0491A1B0B7D19DF01A5C9EDE0A40CBEDBF7A3A* L_48 = ___2_drawCallChunk;
|
|
JobHandle_t5DF5F99902FED3C801A81C05205CEA6CE039EF08 L_49 = V_0;
|
|
NullCheck(L_48);
|
|
DecalChunk_set_currentJobHandle_mE426515F8CC325C7F17BED7DB77E3024C43CE1AD_inline(L_48, L_49, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalCreateDrawCallSystem.cs:130>
|
|
DecalCachedChunk_tDEF493C8A3A1F442BDEC1794BDDA0996B32DCACE* L_50 = ___0_cachedChunk;
|
|
JobHandle_t5DF5F99902FED3C801A81C05205CEA6CE039EF08 L_51 = V_0;
|
|
NullCheck(L_50);
|
|
DecalChunk_set_currentJobHandle_mE426515F8CC325C7F17BED7DB77E3024C43CE1AD_inline(L_50, L_51, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalCreateDrawCallSystem.cs:131>
|
|
return;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// Method Definition Index: 33157
|
|
IL2CPP_EXTERN_C IL2CPP_NO_INLINE IL2CPP_METHOD_ATTR void DrawCallJob_Execute_m772E79CB22259A292B0C7852DE63822BB3C62345 (DrawCallJob_t3EA2ABC822AD5DF50675A5B437DAB927DB95215D* IL2CPP_PARAMETER_RESTRICT __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DecalDrawSystem_t87ECA1A8D2D9C3A73A12F81D8CCA0F79029C0BFE_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int32_t V_0 = 0;
|
|
int32_t V_1 = 0;
|
|
int32_t V_2 = 0;
|
|
int32_t V_3 = 0;
|
|
int32_t V_4 = 0;
|
|
int32_t V_5 = 0;
|
|
BoundingSphere_t2DDB3D1711A6920C0ECA9217D3E4E14AFF03C010 V_6;
|
|
memset((&V_6), 0, sizeof(V_6));
|
|
float2_t24AA5C0F612B0672315EDAFEC9D9E7F1C4A5B0BA V_7;
|
|
memset((&V_7), 0, sizeof(V_7));
|
|
float V_8 = 0.0f;
|
|
float V_9 = 0.0f;
|
|
float2_t24AA5C0F612B0672315EDAFEC9D9E7F1C4A5B0BA V_10;
|
|
memset((&V_10), 0, sizeof(V_10));
|
|
float4_t89D9A294E7A79BD81BFBDD18654508532958555E V_11;
|
|
memset((&V_11), 0, sizeof(V_11));
|
|
float4x4_t7EDD16F7F57DC7F61A6302535F7C19FB97915DF2 V_12;
|
|
memset((&V_12), 0, sizeof(V_12));
|
|
float V_13 = 0.0f;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 V_14;
|
|
memset((&V_14), 0, sizeof(V_14));
|
|
DecalSubDrawCall_t68CDD2E663F805776DE0281AB4FAEDC8B8D9EC49 V_15;
|
|
memset((&V_15), 0, sizeof(V_15));
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalCreateDrawCallSystem.cs:165>
|
|
V_0 = 0;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalCreateDrawCallSystem.cs:166>
|
|
V_1 = 0;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalCreateDrawCallSystem.cs:167>
|
|
V_2 = 0;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalCreateDrawCallSystem.cs:169>
|
|
V_3 = 0;
|
|
goto IL_01e8;
|
|
}
|
|
|
|
IL_000d:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalCreateDrawCallSystem.cs:171>
|
|
NativeArray_1_tA833EB7E3E1C9AF82C37976AD964B8D4BAC38B2C* L_0 = (NativeArray_1_tA833EB7E3E1C9AF82C37976AD964B8D4BAC38B2C*)(&__this->___visibleDecalIndices);
|
|
int32_t L_1 = V_3;
|
|
int32_t L_2;
|
|
L_2 = IL2CPP_NATIVEARRAY_GET_ITEM(int32_t, (L_0)->___m_Buffer, L_1);
|
|
V_4 = L_2;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalCreateDrawCallSystem.cs:178>
|
|
NativeArray_1_tA833EB7E3E1C9AF82C37976AD964B8D4BAC38B2C* L_3 = (NativeArray_1_tA833EB7E3E1C9AF82C37976AD964B8D4BAC38B2C*)(&__this->___layerMasks);
|
|
int32_t L_4 = V_4;
|
|
int32_t L_5;
|
|
L_5 = IL2CPP_NATIVEARRAY_GET_ITEM(int32_t, (L_3)->___m_Buffer, L_4);
|
|
V_5 = ((int32_t)(1<<((int32_t)(L_5&((int32_t)31)))));
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalCreateDrawCallSystem.cs:179>
|
|
int32_t L_6 = __this->___cullingMask;
|
|
int32_t L_7 = V_5;
|
|
if (!((int32_t)(L_6&L_7)))
|
|
{
|
|
goto IL_01e4;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalCreateDrawCallSystem.cs:182>
|
|
NativeArray_1_t3D8121943984EEED49DC98DED560DCC6638111B6* L_8 = (NativeArray_1_t3D8121943984EEED49DC98DED560DCC6638111B6*)(&__this->___boundingSpheres);
|
|
int32_t L_9 = V_4;
|
|
BoundingSphere_t2DDB3D1711A6920C0ECA9217D3E4E14AFF03C010 L_10;
|
|
L_10 = IL2CPP_NATIVEARRAY_GET_ITEM(BoundingSphere_t2DDB3D1711A6920C0ECA9217D3E4E14AFF03C010, (L_8)->___m_Buffer, L_9);
|
|
V_6 = L_10;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalCreateDrawCallSystem.cs:183>
|
|
NativeArray_1_t46D43179C2B71BAB34958401E08B5C5DA4488E9E* L_11 = (NativeArray_1_t46D43179C2B71BAB34958401E08B5C5DA4488E9E*)(&__this->___drawDistances);
|
|
int32_t L_12 = V_4;
|
|
float2_t24AA5C0F612B0672315EDAFEC9D9E7F1C4A5B0BA L_13;
|
|
L_13 = IL2CPP_NATIVEARRAY_GET_ITEM(float2_t24AA5C0F612B0672315EDAFEC9D9E7F1C4A5B0BA, (L_11)->___m_Buffer, L_12);
|
|
V_7 = L_13;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalCreateDrawCallSystem.cs:185>
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_14 = __this->___cameraPosition;
|
|
BoundingSphere_t2DDB3D1711A6920C0ECA9217D3E4E14AFF03C010 L_15 = V_6;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_16 = L_15.___position;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_17;
|
|
L_17 = Vector3_op_Subtraction_mE42023FF80067CB44A1D4A27EB7CF2B24CABB828_inline(L_14, L_16, NULL);
|
|
V_14 = L_17;
|
|
float L_18;
|
|
L_18 = Vector3_get_magnitude_mF0D6017E90B345F1F52D1CC564C640F1A847AF2D_inline((&V_14), NULL);
|
|
V_8 = L_18;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalCreateDrawCallSystem.cs:186>
|
|
float2_t24AA5C0F612B0672315EDAFEC9D9E7F1C4A5B0BA L_19 = V_7;
|
|
float L_20 = L_19.___x;
|
|
float L_21 = __this->___maxDrawDistance;
|
|
float L_22;
|
|
L_22 = math_min_m54FD010BEF505D2BA1F79FC793BEB0723C329C3B_inline(L_20, L_21, NULL);
|
|
BoundingSphere_t2DDB3D1711A6920C0ECA9217D3E4E14AFF03C010 L_23 = V_6;
|
|
float L_24 = L_23.___radius;
|
|
V_9 = ((float)il2cpp_codegen_add(L_22, L_24));
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalCreateDrawCallSystem.cs:187>
|
|
float L_25 = V_8;
|
|
float L_26 = V_9;
|
|
if ((((float)L_25) > ((float)L_26)))
|
|
{
|
|
goto IL_01e4;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalCreateDrawCallSystem.cs:190>
|
|
NativeArray_1_t63326FF687E26631308829A9CDB0C51D523D4E9A* L_27 = (NativeArray_1_t63326FF687E26631308829A9CDB0C51D523D4E9A*)(&__this->___decalToWorldsDraw);
|
|
int32_t L_28 = V_1;
|
|
NativeArray_1_t63326FF687E26631308829A9CDB0C51D523D4E9A* L_29 = (NativeArray_1_t63326FF687E26631308829A9CDB0C51D523D4E9A*)(&__this->___decalToWorlds);
|
|
int32_t L_30 = V_4;
|
|
float4x4_t7EDD16F7F57DC7F61A6302535F7C19FB97915DF2 L_31;
|
|
L_31 = IL2CPP_NATIVEARRAY_GET_ITEM(float4x4_t7EDD16F7F57DC7F61A6302535F7C19FB97915DF2, (L_29)->___m_Buffer, L_30);
|
|
IL2CPP_NATIVEARRAY_SET_ITEM(float4x4_t7EDD16F7F57DC7F61A6302535F7C19FB97915DF2, (L_27)->___m_Buffer, L_28, (L_31));
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalCreateDrawCallSystem.cs:192>
|
|
NativeArray_1_t3848EE4B6647317212A754634DE6DBC90B99FBEF* L_32 = (NativeArray_1_t3848EE4B6647317212A754634DE6DBC90B99FBEF*)(&__this->___fadeFactors);
|
|
int32_t L_33 = V_4;
|
|
float L_34;
|
|
L_34 = IL2CPP_NATIVEARRAY_GET_ITEM(float, (L_32)->___m_Buffer, L_33);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalCreateDrawCallSystem.cs:193>
|
|
NativeArray_1_t46D43179C2B71BAB34958401E08B5C5DA4488E9E* L_35 = (NativeArray_1_t46D43179C2B71BAB34958401E08B5C5DA4488E9E*)(&__this->___angleFades);
|
|
int32_t L_36 = V_4;
|
|
float2_t24AA5C0F612B0672315EDAFEC9D9E7F1C4A5B0BA L_37;
|
|
L_37 = IL2CPP_NATIVEARRAY_GET_ITEM(float2_t24AA5C0F612B0672315EDAFEC9D9E7F1C4A5B0BA, (L_35)->___m_Buffer, L_36);
|
|
V_10 = L_37;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalCreateDrawCallSystem.cs:194>
|
|
NativeArray_1_tB5EA234C6ABA1F626A4BEF4053D06783E15A3881* L_38 = (NativeArray_1_tB5EA234C6ABA1F626A4BEF4053D06783E15A3881*)(&__this->___uvScaleBiases);
|
|
int32_t L_39 = V_4;
|
|
float4_t89D9A294E7A79BD81BFBDD18654508532958555E L_40;
|
|
L_40 = IL2CPP_NATIVEARRAY_GET_ITEM(float4_t89D9A294E7A79BD81BFBDD18654508532958555E, (L_38)->___m_Buffer, L_39);
|
|
V_11 = L_40;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalCreateDrawCallSystem.cs:196>
|
|
NativeArray_1_t63326FF687E26631308829A9CDB0C51D523D4E9A* L_41 = (NativeArray_1_t63326FF687E26631308829A9CDB0C51D523D4E9A*)(&__this->___normalToWorlds);
|
|
int32_t L_42 = V_4;
|
|
float4x4_t7EDD16F7F57DC7F61A6302535F7C19FB97915DF2 L_43;
|
|
L_43 = IL2CPP_NATIVEARRAY_GET_ITEM(float4x4_t7EDD16F7F57DC7F61A6302535F7C19FB97915DF2, (L_41)->___m_Buffer, L_42);
|
|
V_12 = L_43;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalCreateDrawCallSystem.cs:198>
|
|
float L_44 = V_9;
|
|
float L_45 = V_8;
|
|
float L_46 = V_9;
|
|
float2_t24AA5C0F612B0672315EDAFEC9D9E7F1C4A5B0BA L_47 = V_7;
|
|
float L_48 = L_47.___y;
|
|
float L_49;
|
|
L_49 = math_clamp_mB7233FC9D6C27522014C4E6D4E056D36CE82C97E_inline(((float)(((float)il2cpp_codegen_subtract(L_44, L_45))/((float)il2cpp_codegen_multiply(L_46, ((float)il2cpp_codegen_subtract((1.0f), L_48)))))), (0.0f), (1.0f), NULL);
|
|
V_13 = ((float)il2cpp_codegen_multiply(L_34, L_49));
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalCreateDrawCallSystem.cs:199>
|
|
float4_t89D9A294E7A79BD81BFBDD18654508532958555E* L_50 = (float4_t89D9A294E7A79BD81BFBDD18654508532958555E*)(&(&V_12)->___c0);
|
|
float4_t89D9A294E7A79BD81BFBDD18654508532958555E L_51 = V_11;
|
|
float L_52 = L_51.___x;
|
|
L_50->___w = L_52;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalCreateDrawCallSystem.cs:200>
|
|
float4_t89D9A294E7A79BD81BFBDD18654508532958555E* L_53 = (float4_t89D9A294E7A79BD81BFBDD18654508532958555E*)(&(&V_12)->___c1);
|
|
float4_t89D9A294E7A79BD81BFBDD18654508532958555E L_54 = V_11;
|
|
float L_55 = L_54.___y;
|
|
L_53->___w = L_55;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalCreateDrawCallSystem.cs:201>
|
|
float4_t89D9A294E7A79BD81BFBDD18654508532958555E* L_56 = (float4_t89D9A294E7A79BD81BFBDD18654508532958555E*)(&(&V_12)->___c2);
|
|
float4_t89D9A294E7A79BD81BFBDD18654508532958555E L_57 = V_11;
|
|
float L_58 = L_57.___z;
|
|
L_56->___w = L_58;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalCreateDrawCallSystem.cs:202>
|
|
float L_59 = V_13;
|
|
float2_t24AA5C0F612B0672315EDAFEC9D9E7F1C4A5B0BA L_60 = V_10;
|
|
float L_61 = L_60.___x;
|
|
float2_t24AA5C0F612B0672315EDAFEC9D9E7F1C4A5B0BA L_62 = V_10;
|
|
float L_63 = L_62.___y;
|
|
float4_t89D9A294E7A79BD81BFBDD18654508532958555E L_64 = V_11;
|
|
float L_65 = L_64.___w;
|
|
float4_t89D9A294E7A79BD81BFBDD18654508532958555E L_66;
|
|
memset((&L_66), 0, sizeof(L_66));
|
|
float4__ctor_mB2F7F2D8BCE8159BEF5A0D6400499E211858ED2D_inline((&L_66), ((float)il2cpp_codegen_multiply(L_59, (1.0f))), L_61, L_63, L_65, NULL);
|
|
(&V_12)->___c3 = L_66;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalCreateDrawCallSystem.cs:203>
|
|
NativeArray_1_t63326FF687E26631308829A9CDB0C51D523D4E9A* L_67 = (NativeArray_1_t63326FF687E26631308829A9CDB0C51D523D4E9A*)(&__this->___normalToDecalsDraw);
|
|
int32_t L_68 = V_1;
|
|
float4x4_t7EDD16F7F57DC7F61A6302535F7C19FB97915DF2 L_69 = V_12;
|
|
IL2CPP_NATIVEARRAY_SET_ITEM(float4x4_t7EDD16F7F57DC7F61A6302535F7C19FB97915DF2, (L_67)->___m_Buffer, L_68, (L_69));
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalCreateDrawCallSystem.cs:205>
|
|
NativeArray_1_t3848EE4B6647317212A754634DE6DBC90B99FBEF* L_70 = (NativeArray_1_t3848EE4B6647317212A754634DE6DBC90B99FBEF*)(&__this->___renderingLayerMasksDraw);
|
|
int32_t L_71 = V_1;
|
|
NativeArray_1_t453E3DEA4CC9F1056F24E417C3308C35174BC184* L_72 = (NativeArray_1_t453E3DEA4CC9F1056F24E417C3308C35174BC184*)(&__this->___renderingLayerMasks);
|
|
int32_t L_73 = V_4;
|
|
uint32_t L_74;
|
|
L_74 = IL2CPP_NATIVEARRAY_GET_ITEM(uint32_t, (L_72)->___m_Buffer, L_73);
|
|
IL2CPP_NATIVEARRAY_SET_ITEM(float, (L_70)->___m_Buffer, L_71, (((float)((double)(uint32_t)L_74))));
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalCreateDrawCallSystem.cs:207>
|
|
int32_t L_75 = V_1;
|
|
V_1 = ((int32_t)il2cpp_codegen_add(L_75, 1));
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalCreateDrawCallSystem.cs:209>
|
|
int32_t L_76 = V_1;
|
|
int32_t L_77 = V_2;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalCreateDrawCallSystem.cs:210>
|
|
il2cpp_codegen_runtime_class_init_inline(DecalDrawSystem_t87ECA1A8D2D9C3A73A12F81D8CCA0F79029C0BFE_il2cpp_TypeInfo_var);
|
|
uint32_t L_78 = ((DecalDrawSystem_t87ECA1A8D2D9C3A73A12F81D8CCA0F79029C0BFE_StaticFields*)il2cpp_codegen_static_fields_for(DecalDrawSystem_t87ECA1A8D2D9C3A73A12F81D8CCA0F79029C0BFE_il2cpp_TypeInfo_var))->___MaxBatchSize;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalCreateDrawCallSystem.cs:211>
|
|
if (!((((int32_t)((((int64_t)((int64_t)((int32_t)il2cpp_codegen_subtract(L_76, L_77)))) < ((int64_t)((int64_t)(uint64_t)((uint32_t)L_78))))? 1 : 0)) == ((int32_t)0))? 1 : 0))
|
|
{
|
|
goto IL_01e4;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalCreateDrawCallSystem.cs:213>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalCreateDrawCallSystem.cs:214>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalCreateDrawCallSystem.cs:215>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalCreateDrawCallSystem.cs:216>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalCreateDrawCallSystem.cs:217>
|
|
NativeArray_1_t197AED29D4CF7A6BC8C6C69B7BABD82BDC8475E2* L_79 = (NativeArray_1_t197AED29D4CF7A6BC8C6C69B7BABD82BDC8475E2*)(&__this->___subCalls);
|
|
int32_t L_80 = V_0;
|
|
int32_t L_81 = L_80;
|
|
V_0 = ((int32_t)il2cpp_codegen_add(L_81, 1));
|
|
il2cpp_codegen_initobj((&V_15), sizeof(DecalSubDrawCall_t68CDD2E663F805776DE0281AB4FAEDC8B8D9EC49));
|
|
int32_t L_82 = V_2;
|
|
(&V_15)->___start = L_82;
|
|
int32_t L_83 = V_1;
|
|
(&V_15)->___end = L_83;
|
|
DecalSubDrawCall_t68CDD2E663F805776DE0281AB4FAEDC8B8D9EC49 L_84 = V_15;
|
|
IL2CPP_NATIVEARRAY_SET_ITEM(DecalSubDrawCall_t68CDD2E663F805776DE0281AB4FAEDC8B8D9EC49, (L_79)->___m_Buffer, L_81, (L_84));
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalCreateDrawCallSystem.cs:218>
|
|
int32_t L_85 = V_1;
|
|
V_2 = L_85;
|
|
}
|
|
|
|
IL_01e4:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalCreateDrawCallSystem.cs:169>
|
|
int32_t L_86 = V_3;
|
|
V_3 = ((int32_t)il2cpp_codegen_add(L_86, 1));
|
|
}
|
|
|
|
IL_01e8:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalCreateDrawCallSystem.cs:169>
|
|
int32_t L_87 = V_3;
|
|
int32_t L_88 = __this->___visibleDecalCount;
|
|
if ((((int32_t)L_87) < ((int32_t)L_88)))
|
|
{
|
|
goto IL_000d;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalCreateDrawCallSystem.cs:222>
|
|
int32_t L_89 = V_1;
|
|
int32_t L_90 = V_2;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalCreateDrawCallSystem.cs:223>
|
|
if (!((int32_t)il2cpp_codegen_subtract(L_89, L_90)))
|
|
{
|
|
goto IL_0223;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalCreateDrawCallSystem.cs:225>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalCreateDrawCallSystem.cs:226>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalCreateDrawCallSystem.cs:227>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalCreateDrawCallSystem.cs:228>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalCreateDrawCallSystem.cs:229>
|
|
NativeArray_1_t197AED29D4CF7A6BC8C6C69B7BABD82BDC8475E2* L_91 = (NativeArray_1_t197AED29D4CF7A6BC8C6C69B7BABD82BDC8475E2*)(&__this->___subCalls);
|
|
int32_t L_92 = V_0;
|
|
int32_t L_93 = L_92;
|
|
V_0 = ((int32_t)il2cpp_codegen_add(L_93, 1));
|
|
il2cpp_codegen_initobj((&V_15), sizeof(DecalSubDrawCall_t68CDD2E663F805776DE0281AB4FAEDC8B8D9EC49));
|
|
int32_t L_94 = V_2;
|
|
(&V_15)->___start = L_94;
|
|
int32_t L_95 = V_1;
|
|
(&V_15)->___end = L_95;
|
|
DecalSubDrawCall_t68CDD2E663F805776DE0281AB4FAEDC8B8D9EC49 L_96 = V_15;
|
|
IL2CPP_NATIVEARRAY_SET_ITEM(DecalSubDrawCall_t68CDD2E663F805776DE0281AB4FAEDC8B8D9EC49, (L_91)->___m_Buffer, L_93, (L_96));
|
|
}
|
|
|
|
IL_0223:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalCreateDrawCallSystem.cs:232>
|
|
NativeArray_1_tA833EB7E3E1C9AF82C37976AD964B8D4BAC38B2C* L_97 = (NativeArray_1_tA833EB7E3E1C9AF82C37976AD964B8D4BAC38B2C*)(&__this->___subCallCount);
|
|
int32_t L_98 = V_0;
|
|
IL2CPP_NATIVEARRAY_SET_ITEM(int32_t, (L_97)->___m_Buffer, 0, (L_98));
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalCreateDrawCallSystem.cs:233>
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void DrawCallJob_Execute_m772E79CB22259A292B0C7852DE63822BB3C62345_AdjustorThunk (RuntimeObject* IL2CPP_PARAMETER_RESTRICT __this, const RuntimeMethod* method)
|
|
{
|
|
DrawCallJob_t3EA2ABC822AD5DF50675A5B437DAB927DB95215D* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<DrawCallJob_t3EA2ABC822AD5DF50675A5B437DAB927DB95215D*>(__this + _offset);
|
|
DrawCallJob_Execute_m772E79CB22259A292B0C7852DE63822BB3C62345(_thisAdjusted, method);
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// Method Definition Index: 33158
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Material_t18053F08F347D0DCA5E1140EC7EC4533DD8A14E3* DecalDrawSystem_get_overrideMaterial_m01F75963B55CBF1BA55C11206346DBD48E79C41D (DecalDrawSystem_t87ECA1A8D2D9C3A73A12F81D8CCA0F79029C0BFE* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalDrawSystem.cs:20>
|
|
Material_t18053F08F347D0DCA5E1140EC7EC4533DD8A14E3* L_0 = __this->___U3CoverrideMaterialU3Ek__BackingField;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 33159
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DecalDrawSystem_set_overrideMaterial_m848AF19F16BF1037FF8BF3F683EA6AECFC915720 (DecalDrawSystem_t87ECA1A8D2D9C3A73A12F81D8CCA0F79029C0BFE* __this, Material_t18053F08F347D0DCA5E1140EC7EC4533DD8A14E3* ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalDrawSystem.cs:20>
|
|
Material_t18053F08F347D0DCA5E1140EC7EC4533DD8A14E3* L_0 = ___0_value;
|
|
__this->___U3CoverrideMaterialU3Ek__BackingField = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CoverrideMaterialU3Ek__BackingField), (void*)L_0);
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 33160
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DecalDrawSystem__ctor_m2F13DA6696D08715AC3C3BE7B73AA680945620A5 (DecalDrawSystem_t87ECA1A8D2D9C3A73A12F81D8CCA0F79029C0BFE* __this, String_t* ___0_sampler, DecalEntityManager_tDA689202786946588782A67EF3F0B0D9121C294A* ___1_entityManager, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DecalDrawSystem_t87ECA1A8D2D9C3A73A12F81D8CCA0F79029C0BFE_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Matrix4x4U5BU5D_t9C51C93425FABC022B506D2DB3A5FA70F9752C4D_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ProfilingSampler_t420D4672EDB44E0EF980B31ADFD9E5747200FECE_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalDrawSystem.cs:22>
|
|
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalDrawSystem.cs:24>
|
|
DecalEntityManager_tDA689202786946588782A67EF3F0B0D9121C294A* L_0 = ___1_entityManager;
|
|
__this->___m_EntityManager = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_EntityManager), (void*)L_0);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalDrawSystem.cs:26>
|
|
il2cpp_codegen_runtime_class_init_inline(DecalDrawSystem_t87ECA1A8D2D9C3A73A12F81D8CCA0F79029C0BFE_il2cpp_TypeInfo_var);
|
|
uint32_t L_1 = ((DecalDrawSystem_t87ECA1A8D2D9C3A73A12F81D8CCA0F79029C0BFE_StaticFields*)il2cpp_codegen_static_fields_for(DecalDrawSystem_t87ECA1A8D2D9C3A73A12F81D8CCA0F79029C0BFE_il2cpp_TypeInfo_var))->___MaxBatchSize;
|
|
Matrix4x4U5BU5D_t9C51C93425FABC022B506D2DB3A5FA70F9752C4D* L_2 = (Matrix4x4U5BU5D_t9C51C93425FABC022B506D2DB3A5FA70F9752C4D*)(Matrix4x4U5BU5D_t9C51C93425FABC022B506D2DB3A5FA70F9752C4D*)SZArrayNew(Matrix4x4U5BU5D_t9C51C93425FABC022B506D2DB3A5FA70F9752C4D_il2cpp_TypeInfo_var, (uint32_t)L_1);
|
|
__this->___m_WorldToDecals = L_2;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_WorldToDecals), (void*)L_2);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalDrawSystem.cs:27>
|
|
uint32_t L_3 = ((DecalDrawSystem_t87ECA1A8D2D9C3A73A12F81D8CCA0F79029C0BFE_StaticFields*)il2cpp_codegen_static_fields_for(DecalDrawSystem_t87ECA1A8D2D9C3A73A12F81D8CCA0F79029C0BFE_il2cpp_TypeInfo_var))->___MaxBatchSize;
|
|
Matrix4x4U5BU5D_t9C51C93425FABC022B506D2DB3A5FA70F9752C4D* L_4 = (Matrix4x4U5BU5D_t9C51C93425FABC022B506D2DB3A5FA70F9752C4D*)(Matrix4x4U5BU5D_t9C51C93425FABC022B506D2DB3A5FA70F9752C4D*)SZArrayNew(Matrix4x4U5BU5D_t9C51C93425FABC022B506D2DB3A5FA70F9752C4D_il2cpp_TypeInfo_var, (uint32_t)L_3);
|
|
__this->___m_NormalToDecals = L_4;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_NormalToDecals), (void*)L_4);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalDrawSystem.cs:28>
|
|
uint32_t L_5 = ((DecalDrawSystem_t87ECA1A8D2D9C3A73A12F81D8CCA0F79029C0BFE_StaticFields*)il2cpp_codegen_static_fields_for(DecalDrawSystem_t87ECA1A8D2D9C3A73A12F81D8CCA0F79029C0BFE_il2cpp_TypeInfo_var))->___MaxBatchSize;
|
|
SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C* L_6 = (SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C*)(SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C*)SZArrayNew(SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C_il2cpp_TypeInfo_var, (uint32_t)L_5);
|
|
__this->___m_DecalLayerMasks = L_6;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_DecalLayerMasks), (void*)L_6);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalDrawSystem.cs:30>
|
|
String_t* L_7 = ___0_sampler;
|
|
ProfilingSampler_t420D4672EDB44E0EF980B31ADFD9E5747200FECE* L_8 = (ProfilingSampler_t420D4672EDB44E0EF980B31ADFD9E5747200FECE*)il2cpp_codegen_object_new(ProfilingSampler_t420D4672EDB44E0EF980B31ADFD9E5747200FECE_il2cpp_TypeInfo_var);
|
|
ProfilingSampler__ctor_m26500989FCDB07FA33C9A3BB7F215CBD892F5BB7(L_8, L_7, NULL);
|
|
__this->___m_Sampler = L_8;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_Sampler), (void*)L_8);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalDrawSystem.cs:31>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 33161
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DecalDrawSystem_Execute_m7FD9C649809CA3C173D99777896D4F5D98D5E4C4 (DecalDrawSystem_t87ECA1A8D2D9C3A73A12F81D8CCA0F79029C0BFE* __this, CommandBuffer_tB56007DC84EF56296C325EC32DD12AC1E3DC91F7* ___0_cmd, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CommandBufferHelpers_tB8C09D01D6F0369DF52DEA955F017D6001BC72E5_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalDrawSystem.cs:35>
|
|
CommandBuffer_tB56007DC84EF56296C325EC32DD12AC1E3DC91F7* L_0 = ___0_cmd;
|
|
il2cpp_codegen_runtime_class_init_inline(CommandBufferHelpers_tB8C09D01D6F0369DF52DEA955F017D6001BC72E5_il2cpp_TypeInfo_var);
|
|
RasterCommandBuffer_t4300C4F080EA3CF43C7ACFDBD4F94EA633FE98E8* L_1;
|
|
L_1 = CommandBufferHelpers_GetRasterCommandBuffer_m6086D650343F166614B3FB5ED89D63DE8F85C42B_inline(L_0, NULL);
|
|
DecalDrawSystem_Execute_mF71C2FD9B2D2D46D509C8D480ABA3D990211E6B8(__this, L_1, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalDrawSystem.cs:36>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 33162
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DecalDrawSystem_Execute_mF71C2FD9B2D2D46D509C8D480ABA3D990211E6B8 (DecalDrawSystem_t87ECA1A8D2D9C3A73A12F81D8CCA0F79029C0BFE* __this, RasterCommandBuffer_t4300C4F080EA3CF43C7ACFDBD4F94EA633FE98E8* ___0_cmd, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Item_m4AA84FB449EDD461A47D02E7C9ED3EF72D48A44E_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Item_mF1A0B8107AFE027BCC67DA021B857B6495FA1A90_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Item_mFCF8BC94A0C7B3A51A1FC623D4F3335994152975_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
ProfilingScope_t57898BA31E8EF8F083EF84E0DA2737AC61CBC5BD V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
int32_t V_1 = 0;
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalDrawSystem.cs:40>
|
|
RasterCommandBuffer_t4300C4F080EA3CF43C7ACFDBD4F94EA633FE98E8* L_0 = ___0_cmd;
|
|
ProfilingSampler_t420D4672EDB44E0EF980B31ADFD9E5747200FECE* L_1 = __this->___m_Sampler;
|
|
ProfilingScope__ctor_mEF7BF01DCAD3709F978E564AEDEDD643FC617904((&V_0), L_0, L_1, NULL);
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_0076:
|
|
{
|
|
ProfilingScope_Dispose_m4231A2ACA1F8E345BB0078310A9F7601704C8BE4((&V_0), NULL);
|
|
return;
|
|
}
|
|
});
|
|
try
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalDrawSystem.cs:42>
|
|
V_1 = 0;
|
|
goto IL_0066_1;
|
|
}
|
|
|
|
IL_0012_1:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalDrawSystem.cs:44>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalDrawSystem.cs:45>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalDrawSystem.cs:46>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalDrawSystem.cs:47>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalDrawSystem.cs:48>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalDrawSystem.cs:49>
|
|
RasterCommandBuffer_t4300C4F080EA3CF43C7ACFDBD4F94EA633FE98E8* L_2 = ___0_cmd;
|
|
DecalEntityManager_tDA689202786946588782A67EF3F0B0D9121C294A* L_3 = __this->___m_EntityManager;
|
|
NullCheck(L_3);
|
|
List_1_t437E45D007C2D93DCB30DA30023CB2745EE095D0* L_4 = L_3->___entityChunks;
|
|
int32_t L_5 = V_1;
|
|
NullCheck(L_4);
|
|
DecalEntityChunk_t2CDCBFA35711DA074631D26572EF9755A3AD740C* L_6;
|
|
L_6 = List_1_get_Item_mFCF8BC94A0C7B3A51A1FC623D4F3335994152975(L_4, L_5, List_1_get_Item_mFCF8BC94A0C7B3A51A1FC623D4F3335994152975_RuntimeMethod_var);
|
|
DecalEntityManager_tDA689202786946588782A67EF3F0B0D9121C294A* L_7 = __this->___m_EntityManager;
|
|
NullCheck(L_7);
|
|
List_1_t1A9527CB44249AD17D081A2D7A468343FC2D0720* L_8 = L_7->___cachedChunks;
|
|
int32_t L_9 = V_1;
|
|
NullCheck(L_8);
|
|
DecalCachedChunk_tDEF493C8A3A1F442BDEC1794BDDA0996B32DCACE* L_10;
|
|
L_10 = List_1_get_Item_mF1A0B8107AFE027BCC67DA021B857B6495FA1A90(L_8, L_9, List_1_get_Item_mF1A0B8107AFE027BCC67DA021B857B6495FA1A90_RuntimeMethod_var);
|
|
DecalEntityManager_tDA689202786946588782A67EF3F0B0D9121C294A* L_11 = __this->___m_EntityManager;
|
|
NullCheck(L_11);
|
|
List_1_tD8DB23A94A44626CAF7E9B5B4A949D0FDC7B27A7* L_12 = L_11->___drawCallChunks;
|
|
int32_t L_13 = V_1;
|
|
NullCheck(L_12);
|
|
DecalDrawCallChunk_tBD0491A1B0B7D19DF01A5C9EDE0A40CBEDBF7A3A* L_14;
|
|
L_14 = List_1_get_Item_m4AA84FB449EDD461A47D02E7C9ED3EF72D48A44E(L_12, L_13, List_1_get_Item_m4AA84FB449EDD461A47D02E7C9ED3EF72D48A44E_RuntimeMethod_var);
|
|
DecalEntityManager_tDA689202786946588782A67EF3F0B0D9121C294A* L_15 = __this->___m_EntityManager;
|
|
NullCheck(L_15);
|
|
List_1_t437E45D007C2D93DCB30DA30023CB2745EE095D0* L_16 = L_15->___entityChunks;
|
|
int32_t L_17 = V_1;
|
|
NullCheck(L_16);
|
|
DecalEntityChunk_t2CDCBFA35711DA074631D26572EF9755A3AD740C* L_18;
|
|
L_18 = List_1_get_Item_mFCF8BC94A0C7B3A51A1FC623D4F3335994152975(L_16, L_17, List_1_get_Item_mFCF8BC94A0C7B3A51A1FC623D4F3335994152975_RuntimeMethod_var);
|
|
NullCheck(L_18);
|
|
int32_t L_19;
|
|
L_19 = DecalChunk_get_count_mEF67D584A3FF77C4A87A916D5F464D91D47C4B17_inline(L_18, NULL);
|
|
DecalDrawSystem_Execute_mCEA86CDE88D3A624C62D0C696DB90DAF318F9EFD(__this, L_2, L_6, L_10, L_14, L_19, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalDrawSystem.cs:42>
|
|
int32_t L_20 = V_1;
|
|
V_1 = ((int32_t)il2cpp_codegen_add(L_20, 1));
|
|
}
|
|
|
|
IL_0066_1:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalDrawSystem.cs:42>
|
|
int32_t L_21 = V_1;
|
|
DecalEntityManager_tDA689202786946588782A67EF3F0B0D9121C294A* L_22 = __this->___m_EntityManager;
|
|
NullCheck(L_22);
|
|
int32_t L_23 = L_22->___chunkCount;
|
|
if ((((int32_t)L_21) < ((int32_t)L_23)))
|
|
{
|
|
goto IL_0012_1;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalDrawSystem.cs:51>
|
|
goto IL_0084;
|
|
}
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_0084:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalDrawSystem.cs:52>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 33163
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Material_t18053F08F347D0DCA5E1140EC7EC4533DD8A14E3* DecalDrawSystem_GetMaterial_mD7EA08ECB956C4D38A3C224E93C469562F96AD1F (DecalDrawSystem_t87ECA1A8D2D9C3A73A12F81D8CCA0F79029C0BFE* __this, DecalEntityChunk_t2CDCBFA35711DA074631D26572EF9755A3AD740C* ___0_decalEntityChunk, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalDrawSystem.cs:54>
|
|
DecalEntityChunk_t2CDCBFA35711DA074631D26572EF9755A3AD740C* L_0 = ___0_decalEntityChunk;
|
|
NullCheck(L_0);
|
|
Material_t18053F08F347D0DCA5E1140EC7EC4533DD8A14E3* L_1 = L_0->___material;
|
|
return L_1;
|
|
}
|
|
}
|
|
// Method Definition Index: 33165
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DecalDrawSystem_Execute_mCEA86CDE88D3A624C62D0C696DB90DAF318F9EFD (DecalDrawSystem_t87ECA1A8D2D9C3A73A12F81D8CCA0F79029C0BFE* __this, RasterCommandBuffer_t4300C4F080EA3CF43C7ACFDBD4F94EA633FE98E8* ___0_cmd, DecalEntityChunk_t2CDCBFA35711DA074631D26572EF9755A3AD740C* ___1_decalEntityChunk, DecalCachedChunk_tDEF493C8A3A1F442BDEC1794BDDA0996B32DCACE* ___2_decalCachedChunk, DecalDrawCallChunk_tBD0491A1B0B7D19DF01A5C9EDE0A40CBEDBF7A3A* ___3_decalDrawCallChunk, int32_t ___4_count, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
Material_t18053F08F347D0DCA5E1140EC7EC4533DD8A14E3* V_0 = NULL;
|
|
int32_t V_1 = 0;
|
|
JobHandle_t5DF5F99902FED3C801A81C05205CEA6CE039EF08 V_2;
|
|
memset((&V_2), 0, sizeof(V_2));
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalDrawSystem.cs:60>
|
|
DecalCachedChunk_tDEF493C8A3A1F442BDEC1794BDDA0996B32DCACE* L_0 = ___2_decalCachedChunk;
|
|
NullCheck(L_0);
|
|
JobHandle_t5DF5F99902FED3C801A81C05205CEA6CE039EF08 L_1;
|
|
L_1 = DecalChunk_get_currentJobHandle_m0EBD28118EB20E5BBC3BE831171CD2CDC745AAD4_inline(L_0, NULL);
|
|
V_2 = L_1;
|
|
JobHandle_Complete_mDCED35A125AAB37EDDAB2E31C805B4904B614A4A((&V_2), NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalDrawSystem.cs:61>
|
|
DecalDrawCallChunk_tBD0491A1B0B7D19DF01A5C9EDE0A40CBEDBF7A3A* L_2 = ___3_decalDrawCallChunk;
|
|
NullCheck(L_2);
|
|
JobHandle_t5DF5F99902FED3C801A81C05205CEA6CE039EF08 L_3;
|
|
L_3 = DecalChunk_get_currentJobHandle_m0EBD28118EB20E5BBC3BE831171CD2CDC745AAD4_inline(L_2, NULL);
|
|
V_2 = L_3;
|
|
JobHandle_Complete_mDCED35A125AAB37EDDAB2E31C805B4904B614A4A((&V_2), NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalDrawSystem.cs:63>
|
|
DecalEntityChunk_t2CDCBFA35711DA074631D26572EF9755A3AD740C* L_4 = ___1_decalEntityChunk;
|
|
Material_t18053F08F347D0DCA5E1140EC7EC4533DD8A14E3* L_5;
|
|
L_5 = VirtualFuncInvoker1< Material_t18053F08F347D0DCA5E1140EC7EC4533DD8A14E3*, DecalEntityChunk_t2CDCBFA35711DA074631D26572EF9755A3AD740C* >::Invoke(4, __this, L_4);
|
|
V_0 = L_5;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalDrawSystem.cs:64>
|
|
DecalCachedChunk_tDEF493C8A3A1F442BDEC1794BDDA0996B32DCACE* L_6 = ___2_decalCachedChunk;
|
|
int32_t L_7;
|
|
L_7 = VirtualFuncInvoker1< int32_t, DecalCachedChunk_tDEF493C8A3A1F442BDEC1794BDDA0996B32DCACE* >::Invoke(5, __this, L_6);
|
|
V_1 = L_7;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalDrawSystem.cs:66>
|
|
int32_t L_8 = ___4_count;
|
|
if (!L_8)
|
|
{
|
|
goto IL_003e;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_9 = V_1;
|
|
if ((((int32_t)L_9) == ((int32_t)(-1))))
|
|
{
|
|
goto IL_003e;
|
|
}
|
|
}
|
|
{
|
|
Material_t18053F08F347D0DCA5E1140EC7EC4533DD8A14E3* L_10 = V_0;
|
|
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
bool L_11;
|
|
L_11 = Object_op_Equality_mB6120F782D83091EF56A198FCEBCF066DB4A9605(L_10, (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C*)NULL, NULL);
|
|
if (!L_11)
|
|
{
|
|
goto IL_003f;
|
|
}
|
|
}
|
|
|
|
IL_003e:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalDrawSystem.cs:67>
|
|
return;
|
|
}
|
|
|
|
IL_003f:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalDrawSystem.cs:69>
|
|
bool L_12;
|
|
L_12 = SystemInfo_get_supportsInstancing_m8EF067060BFA3D50A266342D26A392747DA4FF3E(NULL);
|
|
if (!L_12)
|
|
{
|
|
goto IL_005b;
|
|
}
|
|
}
|
|
{
|
|
Material_t18053F08F347D0DCA5E1140EC7EC4533DD8A14E3* L_13 = V_0;
|
|
NullCheck(L_13);
|
|
bool L_14;
|
|
L_14 = Material_get_enableInstancing_m4EF71CDFA15E9EB97752861350CEDB3D8CC00580(L_13, NULL);
|
|
if (!L_14)
|
|
{
|
|
goto IL_005b;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalDrawSystem.cs:71>
|
|
RasterCommandBuffer_t4300C4F080EA3CF43C7ACFDBD4F94EA633FE98E8* L_15 = ___0_cmd;
|
|
DecalEntityChunk_t2CDCBFA35711DA074631D26572EF9755A3AD740C* L_16 = ___1_decalEntityChunk;
|
|
DecalCachedChunk_tDEF493C8A3A1F442BDEC1794BDDA0996B32DCACE* L_17 = ___2_decalCachedChunk;
|
|
DecalDrawCallChunk_tBD0491A1B0B7D19DF01A5C9EDE0A40CBEDBF7A3A* L_18 = ___3_decalDrawCallChunk;
|
|
int32_t L_19 = V_1;
|
|
DecalDrawSystem_DrawInstanced_mF16455B785F6FEC6150F87EC4ED60A5BEBBC1D95(__this, L_15, L_16, L_17, L_18, L_19, NULL);
|
|
return;
|
|
}
|
|
|
|
IL_005b:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalDrawSystem.cs:75>
|
|
RasterCommandBuffer_t4300C4F080EA3CF43C7ACFDBD4F94EA633FE98E8* L_20 = ___0_cmd;
|
|
DecalEntityChunk_t2CDCBFA35711DA074631D26572EF9755A3AD740C* L_21 = ___1_decalEntityChunk;
|
|
DecalCachedChunk_tDEF493C8A3A1F442BDEC1794BDDA0996B32DCACE* L_22 = ___2_decalCachedChunk;
|
|
DecalDrawCallChunk_tBD0491A1B0B7D19DF01A5C9EDE0A40CBEDBF7A3A* L_23 = ___3_decalDrawCallChunk;
|
|
int32_t L_24 = V_1;
|
|
DecalDrawSystem_Draw_mBD8DA11CF8288CA46FB3441431FC3434536682E7(__this, L_20, L_21, L_22, L_23, L_24, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalDrawSystem.cs:77>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 33166
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DecalDrawSystem_Draw_mBD8DA11CF8288CA46FB3441431FC3434536682E7 (DecalDrawSystem_t87ECA1A8D2D9C3A73A12F81D8CCA0F79029C0BFE* __this, RasterCommandBuffer_t4300C4F080EA3CF43C7ACFDBD4F94EA633FE98E8* ___0_cmd, DecalEntityChunk_t2CDCBFA35711DA074631D26572EF9755A3AD740C* ___1_decalEntityChunk, DecalCachedChunk_tDEF493C8A3A1F442BDEC1794BDDA0996B32DCACE* ___2_decalCachedChunk, DecalDrawCallChunk_tBD0491A1B0B7D19DF01A5C9EDE0A40CBEDBF7A3A* ___3_decalDrawCallChunk, int32_t ___4_passIndex, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral72C15439E7CA24FEE57FB1C4C772BF8F7F8DE0C4);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral91E548F3EBD1A7D7C5EDCC1906D95D22C2F225B4);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralA2C0A63DB753DB0FF0426699143F23CBFDD9C372);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
Mesh_t6D9C539763A09BC2B12AEAEF36F6DFFC98AE63D4* V_0 = NULL;
|
|
Material_t18053F08F347D0DCA5E1140EC7EC4533DD8A14E3* V_1 = NULL;
|
|
int32_t V_2 = 0;
|
|
int32_t V_3 = 0;
|
|
DecalSubDrawCall_t68CDD2E663F805776DE0281AB4FAEDC8B8D9EC49 V_4;
|
|
memset((&V_4), 0, sizeof(V_4));
|
|
int32_t V_5 = 0;
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalDrawSystem.cs:81>
|
|
DecalEntityManager_tDA689202786946588782A67EF3F0B0D9121C294A* L_0 = __this->___m_EntityManager;
|
|
NullCheck(L_0);
|
|
Mesh_t6D9C539763A09BC2B12AEAEF36F6DFFC98AE63D4* L_1;
|
|
L_1 = DecalEntityManager_get_decalProjectorMesh_m63E8D23353B8A5881EC5D5AE562FC8F3D234BD69(L_0, NULL);
|
|
V_0 = L_1;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalDrawSystem.cs:82>
|
|
DecalEntityChunk_t2CDCBFA35711DA074631D26572EF9755A3AD740C* L_2 = ___1_decalEntityChunk;
|
|
Material_t18053F08F347D0DCA5E1140EC7EC4533DD8A14E3* L_3;
|
|
L_3 = VirtualFuncInvoker1< Material_t18053F08F347D0DCA5E1140EC7EC4533DD8A14E3*, DecalEntityChunk_t2CDCBFA35711DA074631D26572EF9755A3AD740C* >::Invoke(4, __this, L_2);
|
|
V_1 = L_3;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalDrawSystem.cs:83>
|
|
DecalCachedChunk_tDEF493C8A3A1F442BDEC1794BDDA0996B32DCACE* L_4 = ___2_decalCachedChunk;
|
|
NullCheck(L_4);
|
|
MaterialPropertyBlock_t2308669579033A857EFE6E4831909F638B27411D* L_5 = L_4->___propertyBlock;
|
|
Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3 L_6;
|
|
memset((&L_6), 0, sizeof(L_6));
|
|
Vector4__ctor_m96B2CD8B862B271F513AF0BDC2EABD58E4DBC813_inline((&L_6), (1.0f), (1.0f), (1.0f), (0.0f), NULL);
|
|
NullCheck(L_5);
|
|
MaterialPropertyBlock_SetVector_mB3D0FFCCDFF9D78447719F25DB8C1AFCB12B8BD5(L_5, _stringLiteral72C15439E7CA24FEE57FB1C4C772BF8F7F8DE0C4, L_6, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalDrawSystem.cs:85>
|
|
DecalDrawCallChunk_tBD0491A1B0B7D19DF01A5C9EDE0A40CBEDBF7A3A* L_7 = ___3_decalDrawCallChunk;
|
|
NullCheck(L_7);
|
|
int32_t L_8;
|
|
L_8 = DecalDrawCallChunk_get_subCallCount_m122EAA49534D171EF4779395DA05095FC9DD080D(L_7, NULL);
|
|
V_2 = L_8;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalDrawSystem.cs:86>
|
|
V_3 = 0;
|
|
goto IL_00e0;
|
|
}
|
|
|
|
IL_004c:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalDrawSystem.cs:88>
|
|
DecalDrawCallChunk_tBD0491A1B0B7D19DF01A5C9EDE0A40CBEDBF7A3A* L_9 = ___3_decalDrawCallChunk;
|
|
NullCheck(L_9);
|
|
NativeArray_1_t197AED29D4CF7A6BC8C6C69B7BABD82BDC8475E2* L_10 = (NativeArray_1_t197AED29D4CF7A6BC8C6C69B7BABD82BDC8475E2*)(&L_9->___subCalls);
|
|
int32_t L_11 = V_3;
|
|
DecalSubDrawCall_t68CDD2E663F805776DE0281AB4FAEDC8B8D9EC49 L_12;
|
|
L_12 = IL2CPP_NATIVEARRAY_GET_ITEM(DecalSubDrawCall_t68CDD2E663F805776DE0281AB4FAEDC8B8D9EC49, (L_10)->___m_Buffer, L_11);
|
|
V_4 = L_12;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalDrawSystem.cs:90>
|
|
DecalSubDrawCall_t68CDD2E663F805776DE0281AB4FAEDC8B8D9EC49 L_13 = V_4;
|
|
int32_t L_14 = L_13.___start;
|
|
V_5 = L_14;
|
|
goto IL_00d1;
|
|
}
|
|
|
|
IL_0066:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalDrawSystem.cs:92>
|
|
DecalCachedChunk_tDEF493C8A3A1F442BDEC1794BDDA0996B32DCACE* L_15 = ___2_decalCachedChunk;
|
|
NullCheck(L_15);
|
|
MaterialPropertyBlock_t2308669579033A857EFE6E4831909F638B27411D* L_16 = L_15->___propertyBlock;
|
|
DecalDrawCallChunk_tBD0491A1B0B7D19DF01A5C9EDE0A40CBEDBF7A3A* L_17 = ___3_decalDrawCallChunk;
|
|
NullCheck(L_17);
|
|
NativeArray_1_t63326FF687E26631308829A9CDB0C51D523D4E9A* L_18 = (NativeArray_1_t63326FF687E26631308829A9CDB0C51D523D4E9A*)(&L_17->___normalToDecals);
|
|
int32_t L_19 = V_5;
|
|
float4x4_t7EDD16F7F57DC7F61A6302535F7C19FB97915DF2 L_20;
|
|
L_20 = IL2CPP_NATIVEARRAY_GET_ITEM(float4x4_t7EDD16F7F57DC7F61A6302535F7C19FB97915DF2, (L_18)->___m_Buffer, L_19);
|
|
Matrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6 L_21;
|
|
L_21 = float4x4_op_Implicit_mC056D7C9F17B6D06E026163034B5414E56DA04B4(L_20, NULL);
|
|
NullCheck(L_16);
|
|
MaterialPropertyBlock_SetMatrix_mB07C5C1539AACE5683720A013B1A44C0D1895910(L_16, _stringLiteralA2C0A63DB753DB0FF0426699143F23CBFDD9C372, L_21, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalDrawSystem.cs:93>
|
|
DecalCachedChunk_tDEF493C8A3A1F442BDEC1794BDDA0996B32DCACE* L_22 = ___2_decalCachedChunk;
|
|
NullCheck(L_22);
|
|
MaterialPropertyBlock_t2308669579033A857EFE6E4831909F638B27411D* L_23 = L_22->___propertyBlock;
|
|
DecalDrawCallChunk_tBD0491A1B0B7D19DF01A5C9EDE0A40CBEDBF7A3A* L_24 = ___3_decalDrawCallChunk;
|
|
NullCheck(L_24);
|
|
NativeArray_1_t3848EE4B6647317212A754634DE6DBC90B99FBEF* L_25 = (NativeArray_1_t3848EE4B6647317212A754634DE6DBC90B99FBEF*)(&L_24->___renderingLayerMasks);
|
|
int32_t L_26 = V_5;
|
|
float L_27;
|
|
L_27 = IL2CPP_NATIVEARRAY_GET_ITEM(float, (L_25)->___m_Buffer, L_26);
|
|
NullCheck(L_23);
|
|
MaterialPropertyBlock_SetFloat_m49458EDC57C2B431D765FE7414F18918AD619888(L_23, _stringLiteral91E548F3EBD1A7D7C5EDCC1906D95D22C2F225B4, L_27, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalDrawSystem.cs:94>
|
|
RasterCommandBuffer_t4300C4F080EA3CF43C7ACFDBD4F94EA633FE98E8* L_28 = ___0_cmd;
|
|
Mesh_t6D9C539763A09BC2B12AEAEF36F6DFFC98AE63D4* L_29 = V_0;
|
|
DecalDrawCallChunk_tBD0491A1B0B7D19DF01A5C9EDE0A40CBEDBF7A3A* L_30 = ___3_decalDrawCallChunk;
|
|
NullCheck(L_30);
|
|
NativeArray_1_t63326FF687E26631308829A9CDB0C51D523D4E9A* L_31 = (NativeArray_1_t63326FF687E26631308829A9CDB0C51D523D4E9A*)(&L_30->___decalToWorlds);
|
|
int32_t L_32 = V_5;
|
|
float4x4_t7EDD16F7F57DC7F61A6302535F7C19FB97915DF2 L_33;
|
|
L_33 = IL2CPP_NATIVEARRAY_GET_ITEM(float4x4_t7EDD16F7F57DC7F61A6302535F7C19FB97915DF2, (L_31)->___m_Buffer, L_32);
|
|
Matrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6 L_34;
|
|
L_34 = float4x4_op_Implicit_mC056D7C9F17B6D06E026163034B5414E56DA04B4(L_33, NULL);
|
|
Material_t18053F08F347D0DCA5E1140EC7EC4533DD8A14E3* L_35 = V_1;
|
|
int32_t L_36 = ___4_passIndex;
|
|
DecalCachedChunk_tDEF493C8A3A1F442BDEC1794BDDA0996B32DCACE* L_37 = ___2_decalCachedChunk;
|
|
NullCheck(L_37);
|
|
MaterialPropertyBlock_t2308669579033A857EFE6E4831909F638B27411D* L_38 = L_37->___propertyBlock;
|
|
NullCheck(L_28);
|
|
RasterCommandBuffer_DrawMesh_mEC6825FC85CCF0EF1A657C7668D35371ED27B292(L_28, L_29, L_34, L_35, 0, L_36, L_38, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalDrawSystem.cs:90>
|
|
int32_t L_39 = V_5;
|
|
V_5 = ((int32_t)il2cpp_codegen_add(L_39, 1));
|
|
}
|
|
|
|
IL_00d1:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalDrawSystem.cs:90>
|
|
int32_t L_40 = V_5;
|
|
DecalSubDrawCall_t68CDD2E663F805776DE0281AB4FAEDC8B8D9EC49 L_41 = V_4;
|
|
int32_t L_42 = L_41.___end;
|
|
if ((((int32_t)L_40) < ((int32_t)L_42)))
|
|
{
|
|
goto IL_0066;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalDrawSystem.cs:86>
|
|
int32_t L_43 = V_3;
|
|
V_3 = ((int32_t)il2cpp_codegen_add(L_43, 1));
|
|
}
|
|
|
|
IL_00e0:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalDrawSystem.cs:86>
|
|
int32_t L_44 = V_3;
|
|
int32_t L_45 = V_2;
|
|
if ((((int32_t)L_44) < ((int32_t)L_45)))
|
|
{
|
|
goto IL_004c;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalDrawSystem.cs:97>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 33167
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DecalDrawSystem_DrawInstanced_mF16455B785F6FEC6150F87EC4ED60A5BEBBC1D95 (DecalDrawSystem_t87ECA1A8D2D9C3A73A12F81D8CCA0F79029C0BFE* __this, RasterCommandBuffer_t4300C4F080EA3CF43C7ACFDBD4F94EA633FE98E8* ___0_cmd, DecalEntityChunk_t2CDCBFA35711DA074631D26572EF9755A3AD740C* ___1_decalEntityChunk, DecalCachedChunk_tDEF493C8A3A1F442BDEC1794BDDA0996B32DCACE* ___2_decalCachedChunk, DecalDrawCallChunk_tBD0491A1B0B7D19DF01A5C9EDE0A40CBEDBF7A3A* ___3_decalDrawCallChunk, int32_t ___4_passIndex, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NativeArray_1_Copy_mCB984DA829C4D613BDCE16D39741EF4FDC95EF92_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NativeArray_1_Copy_mF705F6BD4C4D02C73B49A4D937A01BA1048A537D_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NativeArray_1_Reinterpret_TisMatrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6_m0305CE8B48077F1A6A9C1C7146BEDA3A09B8274B_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NativeArray_1_Reinterpret_TisSingle_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_mDCC6EC00BF88D23975965B27D2824BF2F070EB14_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral72C15439E7CA24FEE57FB1C4C772BF8F7F8DE0C4);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral91E548F3EBD1A7D7C5EDCC1906D95D22C2F225B4);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralA2C0A63DB753DB0FF0426699143F23CBFDD9C372);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
Mesh_t6D9C539763A09BC2B12AEAEF36F6DFFC98AE63D4* V_0 = NULL;
|
|
Material_t18053F08F347D0DCA5E1140EC7EC4533DD8A14E3* V_1 = NULL;
|
|
int32_t V_2 = 0;
|
|
int32_t V_3 = 0;
|
|
DecalSubDrawCall_t68CDD2E663F805776DE0281AB4FAEDC8B8D9EC49 V_4;
|
|
memset((&V_4), 0, sizeof(V_4));
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalDrawSystem.cs:101>
|
|
DecalEntityManager_tDA689202786946588782A67EF3F0B0D9121C294A* L_0 = __this->___m_EntityManager;
|
|
NullCheck(L_0);
|
|
Mesh_t6D9C539763A09BC2B12AEAEF36F6DFFC98AE63D4* L_1;
|
|
L_1 = DecalEntityManager_get_decalProjectorMesh_m63E8D23353B8A5881EC5D5AE562FC8F3D234BD69(L_0, NULL);
|
|
V_0 = L_1;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalDrawSystem.cs:102>
|
|
DecalEntityChunk_t2CDCBFA35711DA074631D26572EF9755A3AD740C* L_2 = ___1_decalEntityChunk;
|
|
Material_t18053F08F347D0DCA5E1140EC7EC4533DD8A14E3* L_3;
|
|
L_3 = VirtualFuncInvoker1< Material_t18053F08F347D0DCA5E1140EC7EC4533DD8A14E3*, DecalEntityChunk_t2CDCBFA35711DA074631D26572EF9755A3AD740C* >::Invoke(4, __this, L_2);
|
|
V_1 = L_3;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalDrawSystem.cs:103>
|
|
DecalCachedChunk_tDEF493C8A3A1F442BDEC1794BDDA0996B32DCACE* L_4 = ___2_decalCachedChunk;
|
|
NullCheck(L_4);
|
|
MaterialPropertyBlock_t2308669579033A857EFE6E4831909F638B27411D* L_5 = L_4->___propertyBlock;
|
|
Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3 L_6;
|
|
memset((&L_6), 0, sizeof(L_6));
|
|
Vector4__ctor_m96B2CD8B862B271F513AF0BDC2EABD58E4DBC813_inline((&L_6), (1.0f), (1.0f), (1.0f), (0.0f), NULL);
|
|
NullCheck(L_5);
|
|
MaterialPropertyBlock_SetVector_mB3D0FFCCDFF9D78447719F25DB8C1AFCB12B8BD5(L_5, _stringLiteral72C15439E7CA24FEE57FB1C4C772BF8F7F8DE0C4, L_6, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalDrawSystem.cs:105>
|
|
DecalDrawCallChunk_tBD0491A1B0B7D19DF01A5C9EDE0A40CBEDBF7A3A* L_7 = ___3_decalDrawCallChunk;
|
|
NullCheck(L_7);
|
|
int32_t L_8;
|
|
L_8 = DecalDrawCallChunk_get_subCallCount_m122EAA49534D171EF4779395DA05095FC9DD080D(L_7, NULL);
|
|
V_2 = L_8;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalDrawSystem.cs:106>
|
|
V_3 = 0;
|
|
goto IL_0123;
|
|
}
|
|
|
|
IL_004c:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalDrawSystem.cs:108>
|
|
DecalDrawCallChunk_tBD0491A1B0B7D19DF01A5C9EDE0A40CBEDBF7A3A* L_9 = ___3_decalDrawCallChunk;
|
|
NullCheck(L_9);
|
|
NativeArray_1_t197AED29D4CF7A6BC8C6C69B7BABD82BDC8475E2* L_10 = (NativeArray_1_t197AED29D4CF7A6BC8C6C69B7BABD82BDC8475E2*)(&L_9->___subCalls);
|
|
int32_t L_11 = V_3;
|
|
DecalSubDrawCall_t68CDD2E663F805776DE0281AB4FAEDC8B8D9EC49 L_12;
|
|
L_12 = IL2CPP_NATIVEARRAY_GET_ITEM(DecalSubDrawCall_t68CDD2E663F805776DE0281AB4FAEDC8B8D9EC49, (L_10)->___m_Buffer, L_11);
|
|
V_4 = L_12;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalDrawSystem.cs:110>
|
|
DecalDrawCallChunk_tBD0491A1B0B7D19DF01A5C9EDE0A40CBEDBF7A3A* L_13 = ___3_decalDrawCallChunk;
|
|
NullCheck(L_13);
|
|
NativeArray_1_t63326FF687E26631308829A9CDB0C51D523D4E9A* L_14 = (NativeArray_1_t63326FF687E26631308829A9CDB0C51D523D4E9A*)(&L_13->___decalToWorlds);
|
|
NativeArray_1_t6D4C2D5161FC101BAF06059CD9414A2153CCC2A0 L_15;
|
|
L_15 = NativeArray_1_Reinterpret_TisMatrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6_m0305CE8B48077F1A6A9C1C7146BEDA3A09B8274B(L_14, NativeArray_1_Reinterpret_TisMatrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6_m0305CE8B48077F1A6A9C1C7146BEDA3A09B8274B_RuntimeMethod_var);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalDrawSystem.cs:111>
|
|
DecalSubDrawCall_t68CDD2E663F805776DE0281AB4FAEDC8B8D9EC49 L_16 = V_4;
|
|
int32_t L_17 = L_16.___start;
|
|
Matrix4x4U5BU5D_t9C51C93425FABC022B506D2DB3A5FA70F9752C4D* L_18 = __this->___m_WorldToDecals;
|
|
int32_t L_19;
|
|
L_19 = DecalSubDrawCall_get_count_m8B38E73F7F4564C38F29C7D6259DDD55774621D0((&V_4), NULL);
|
|
NativeArray_1_Copy_mCB984DA829C4D613BDCE16D39741EF4FDC95EF92(L_15, L_17, L_18, 0, L_19, NativeArray_1_Copy_mCB984DA829C4D613BDCE16D39741EF4FDC95EF92_RuntimeMethod_var);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalDrawSystem.cs:113>
|
|
DecalDrawCallChunk_tBD0491A1B0B7D19DF01A5C9EDE0A40CBEDBF7A3A* L_20 = ___3_decalDrawCallChunk;
|
|
NullCheck(L_20);
|
|
NativeArray_1_t63326FF687E26631308829A9CDB0C51D523D4E9A* L_21 = (NativeArray_1_t63326FF687E26631308829A9CDB0C51D523D4E9A*)(&L_20->___normalToDecals);
|
|
NativeArray_1_t6D4C2D5161FC101BAF06059CD9414A2153CCC2A0 L_22;
|
|
L_22 = NativeArray_1_Reinterpret_TisMatrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6_m0305CE8B48077F1A6A9C1C7146BEDA3A09B8274B(L_21, NativeArray_1_Reinterpret_TisMatrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6_m0305CE8B48077F1A6A9C1C7146BEDA3A09B8274B_RuntimeMethod_var);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalDrawSystem.cs:114>
|
|
DecalSubDrawCall_t68CDD2E663F805776DE0281AB4FAEDC8B8D9EC49 L_23 = V_4;
|
|
int32_t L_24 = L_23.___start;
|
|
Matrix4x4U5BU5D_t9C51C93425FABC022B506D2DB3A5FA70F9752C4D* L_25 = __this->___m_NormalToDecals;
|
|
int32_t L_26;
|
|
L_26 = DecalSubDrawCall_get_count_m8B38E73F7F4564C38F29C7D6259DDD55774621D0((&V_4), NULL);
|
|
NativeArray_1_Copy_mCB984DA829C4D613BDCE16D39741EF4FDC95EF92(L_22, L_24, L_25, 0, L_26, NativeArray_1_Copy_mCB984DA829C4D613BDCE16D39741EF4FDC95EF92_RuntimeMethod_var);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalDrawSystem.cs:116>
|
|
DecalDrawCallChunk_tBD0491A1B0B7D19DF01A5C9EDE0A40CBEDBF7A3A* L_27 = ___3_decalDrawCallChunk;
|
|
NullCheck(L_27);
|
|
NativeArray_1_t3848EE4B6647317212A754634DE6DBC90B99FBEF* L_28 = (NativeArray_1_t3848EE4B6647317212A754634DE6DBC90B99FBEF*)(&L_27->___renderingLayerMasks);
|
|
NativeArray_1_t3848EE4B6647317212A754634DE6DBC90B99FBEF L_29;
|
|
L_29 = NativeArray_1_Reinterpret_TisSingle_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_mDCC6EC00BF88D23975965B27D2824BF2F070EB14(L_28, NativeArray_1_Reinterpret_TisSingle_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_mDCC6EC00BF88D23975965B27D2824BF2F070EB14_RuntimeMethod_var);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalDrawSystem.cs:117>
|
|
DecalSubDrawCall_t68CDD2E663F805776DE0281AB4FAEDC8B8D9EC49 L_30 = V_4;
|
|
int32_t L_31 = L_30.___start;
|
|
SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C* L_32 = __this->___m_DecalLayerMasks;
|
|
int32_t L_33;
|
|
L_33 = DecalSubDrawCall_get_count_m8B38E73F7F4564C38F29C7D6259DDD55774621D0((&V_4), NULL);
|
|
NativeArray_1_Copy_mF705F6BD4C4D02C73B49A4D937A01BA1048A537D(L_29, L_31, L_32, 0, L_33, NativeArray_1_Copy_mF705F6BD4C4D02C73B49A4D937A01BA1048A537D_RuntimeMethod_var);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalDrawSystem.cs:119>
|
|
DecalCachedChunk_tDEF493C8A3A1F442BDEC1794BDDA0996B32DCACE* L_34 = ___2_decalCachedChunk;
|
|
NullCheck(L_34);
|
|
MaterialPropertyBlock_t2308669579033A857EFE6E4831909F638B27411D* L_35 = L_34->___propertyBlock;
|
|
Matrix4x4U5BU5D_t9C51C93425FABC022B506D2DB3A5FA70F9752C4D* L_36 = __this->___m_NormalToDecals;
|
|
NullCheck(L_35);
|
|
MaterialPropertyBlock_SetMatrixArray_m804373A3E7B1D31A4ACD522186ADAD4EF91F93DB(L_35, _stringLiteralA2C0A63DB753DB0FF0426699143F23CBFDD9C372, L_36, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalDrawSystem.cs:120>
|
|
DecalCachedChunk_tDEF493C8A3A1F442BDEC1794BDDA0996B32DCACE* L_37 = ___2_decalCachedChunk;
|
|
NullCheck(L_37);
|
|
MaterialPropertyBlock_t2308669579033A857EFE6E4831909F638B27411D* L_38 = L_37->___propertyBlock;
|
|
SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C* L_39 = __this->___m_DecalLayerMasks;
|
|
NullCheck(L_38);
|
|
MaterialPropertyBlock_SetFloatArray_mB5CC5932A09B2DA4FD9F8F9021C6229AC77FC314(L_38, _stringLiteral91E548F3EBD1A7D7C5EDCC1906D95D22C2F225B4, L_39, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalDrawSystem.cs:121>
|
|
RasterCommandBuffer_t4300C4F080EA3CF43C7ACFDBD4F94EA633FE98E8* L_40 = ___0_cmd;
|
|
Mesh_t6D9C539763A09BC2B12AEAEF36F6DFFC98AE63D4* L_41 = V_0;
|
|
Material_t18053F08F347D0DCA5E1140EC7EC4533DD8A14E3* L_42 = V_1;
|
|
int32_t L_43 = ___4_passIndex;
|
|
Matrix4x4U5BU5D_t9C51C93425FABC022B506D2DB3A5FA70F9752C4D* L_44 = __this->___m_WorldToDecals;
|
|
DecalSubDrawCall_t68CDD2E663F805776DE0281AB4FAEDC8B8D9EC49 L_45 = V_4;
|
|
int32_t L_46 = L_45.___end;
|
|
DecalSubDrawCall_t68CDD2E663F805776DE0281AB4FAEDC8B8D9EC49 L_47 = V_4;
|
|
int32_t L_48 = L_47.___start;
|
|
DecalCachedChunk_tDEF493C8A3A1F442BDEC1794BDDA0996B32DCACE* L_49 = ___2_decalCachedChunk;
|
|
NullCheck(L_49);
|
|
MaterialPropertyBlock_t2308669579033A857EFE6E4831909F638B27411D* L_50 = L_49->___propertyBlock;
|
|
NullCheck(L_40);
|
|
RasterCommandBuffer_DrawMeshInstanced_m4FE35F22A8230739E0D6FE68EF18BF6B456BF30B(L_40, L_41, 0, L_42, L_43, L_44, ((int32_t)il2cpp_codegen_subtract(L_46, L_48)), L_50, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalDrawSystem.cs:106>
|
|
int32_t L_51 = V_3;
|
|
V_3 = ((int32_t)il2cpp_codegen_add(L_51, 1));
|
|
}
|
|
|
|
IL_0123:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalDrawSystem.cs:106>
|
|
int32_t L_52 = V_3;
|
|
int32_t L_53 = V_2;
|
|
if ((((int32_t)L_52) < ((int32_t)L_53)))
|
|
{
|
|
goto IL_004c;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalDrawSystem.cs:123>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 33168
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DecalDrawSystem_Execute_mDB6BC88981DC6AF9CCEAF4B2B3A3FC841484C031 (DecalDrawSystem_t87ECA1A8D2D9C3A73A12F81D8CCA0F79029C0BFE* __this, CameraData_tC27AE109CD20677486A4AC19C0CF014AE0F50C3E* ___0_cameraData, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Item_m4AA84FB449EDD461A47D02E7C9ED3EF72D48A44E_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Item_mF1A0B8107AFE027BCC67DA021B857B6495FA1A90_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Item_mFCF8BC94A0C7B3A51A1FC623D4F3335994152975_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
ProfilingScope_t57898BA31E8EF8F083EF84E0DA2737AC61CBC5BD V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
int32_t V_1 = 0;
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalDrawSystem.cs:127>
|
|
ProfilingSampler_t420D4672EDB44E0EF980B31ADFD9E5747200FECE* L_0 = __this->___m_Sampler;
|
|
ProfilingScope__ctor_m4B73587A2295443A73B64DDD3D484D8EAECC0D65((&V_0), L_0, NULL);
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_0075:
|
|
{
|
|
ProfilingScope_Dispose_m4231A2ACA1F8E345BB0078310A9F7601704C8BE4((&V_0), NULL);
|
|
return;
|
|
}
|
|
});
|
|
try
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalDrawSystem.cs:129>
|
|
V_1 = 0;
|
|
goto IL_0065_1;
|
|
}
|
|
|
|
IL_0011_1:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalDrawSystem.cs:131>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalDrawSystem.cs:132>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalDrawSystem.cs:133>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalDrawSystem.cs:134>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalDrawSystem.cs:135>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalDrawSystem.cs:136>
|
|
CameraData_tC27AE109CD20677486A4AC19C0CF014AE0F50C3E* L_1 = ___0_cameraData;
|
|
DecalEntityManager_tDA689202786946588782A67EF3F0B0D9121C294A* L_2 = __this->___m_EntityManager;
|
|
NullCheck(L_2);
|
|
List_1_t437E45D007C2D93DCB30DA30023CB2745EE095D0* L_3 = L_2->___entityChunks;
|
|
int32_t L_4 = V_1;
|
|
NullCheck(L_3);
|
|
DecalEntityChunk_t2CDCBFA35711DA074631D26572EF9755A3AD740C* L_5;
|
|
L_5 = List_1_get_Item_mFCF8BC94A0C7B3A51A1FC623D4F3335994152975(L_3, L_4, List_1_get_Item_mFCF8BC94A0C7B3A51A1FC623D4F3335994152975_RuntimeMethod_var);
|
|
DecalEntityManager_tDA689202786946588782A67EF3F0B0D9121C294A* L_6 = __this->___m_EntityManager;
|
|
NullCheck(L_6);
|
|
List_1_t1A9527CB44249AD17D081A2D7A468343FC2D0720* L_7 = L_6->___cachedChunks;
|
|
int32_t L_8 = V_1;
|
|
NullCheck(L_7);
|
|
DecalCachedChunk_tDEF493C8A3A1F442BDEC1794BDDA0996B32DCACE* L_9;
|
|
L_9 = List_1_get_Item_mF1A0B8107AFE027BCC67DA021B857B6495FA1A90(L_7, L_8, List_1_get_Item_mF1A0B8107AFE027BCC67DA021B857B6495FA1A90_RuntimeMethod_var);
|
|
DecalEntityManager_tDA689202786946588782A67EF3F0B0D9121C294A* L_10 = __this->___m_EntityManager;
|
|
NullCheck(L_10);
|
|
List_1_tD8DB23A94A44626CAF7E9B5B4A949D0FDC7B27A7* L_11 = L_10->___drawCallChunks;
|
|
int32_t L_12 = V_1;
|
|
NullCheck(L_11);
|
|
DecalDrawCallChunk_tBD0491A1B0B7D19DF01A5C9EDE0A40CBEDBF7A3A* L_13;
|
|
L_13 = List_1_get_Item_m4AA84FB449EDD461A47D02E7C9ED3EF72D48A44E(L_11, L_12, List_1_get_Item_m4AA84FB449EDD461A47D02E7C9ED3EF72D48A44E_RuntimeMethod_var);
|
|
DecalEntityManager_tDA689202786946588782A67EF3F0B0D9121C294A* L_14 = __this->___m_EntityManager;
|
|
NullCheck(L_14);
|
|
List_1_t437E45D007C2D93DCB30DA30023CB2745EE095D0* L_15 = L_14->___entityChunks;
|
|
int32_t L_16 = V_1;
|
|
NullCheck(L_15);
|
|
DecalEntityChunk_t2CDCBFA35711DA074631D26572EF9755A3AD740C* L_17;
|
|
L_17 = List_1_get_Item_mFCF8BC94A0C7B3A51A1FC623D4F3335994152975(L_15, L_16, List_1_get_Item_mFCF8BC94A0C7B3A51A1FC623D4F3335994152975_RuntimeMethod_var);
|
|
NullCheck(L_17);
|
|
int32_t L_18;
|
|
L_18 = DecalChunk_get_count_mEF67D584A3FF77C4A87A916D5F464D91D47C4B17_inline(L_17, NULL);
|
|
DecalDrawSystem_Execute_mC5197C5061BD8C4021610E9B5B800D948413145D(__this, L_1, L_5, L_9, L_13, L_18, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalDrawSystem.cs:129>
|
|
int32_t L_19 = V_1;
|
|
V_1 = ((int32_t)il2cpp_codegen_add(L_19, 1));
|
|
}
|
|
|
|
IL_0065_1:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalDrawSystem.cs:129>
|
|
int32_t L_20 = V_1;
|
|
DecalEntityManager_tDA689202786946588782A67EF3F0B0D9121C294A* L_21 = __this->___m_EntityManager;
|
|
NullCheck(L_21);
|
|
int32_t L_22 = L_21->___chunkCount;
|
|
if ((((int32_t)L_20) < ((int32_t)L_22)))
|
|
{
|
|
goto IL_0011_1;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalDrawSystem.cs:138>
|
|
goto IL_0083;
|
|
}
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_0083:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalDrawSystem.cs:139>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 33169
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DecalDrawSystem_Execute_mC5197C5061BD8C4021610E9B5B800D948413145D (DecalDrawSystem_t87ECA1A8D2D9C3A73A12F81D8CCA0F79029C0BFE* __this, CameraData_tC27AE109CD20677486A4AC19C0CF014AE0F50C3E* ___0_cameraData, DecalEntityChunk_t2CDCBFA35711DA074631D26572EF9755A3AD740C* ___1_decalEntityChunk, DecalCachedChunk_tDEF493C8A3A1F442BDEC1794BDDA0996B32DCACE* ___2_decalCachedChunk, DecalDrawCallChunk_tBD0491A1B0B7D19DF01A5C9EDE0A40CBEDBF7A3A* ___3_decalDrawCallChunk, int32_t ___4_count, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
Material_t18053F08F347D0DCA5E1140EC7EC4533DD8A14E3* V_0 = NULL;
|
|
int32_t V_1 = 0;
|
|
JobHandle_t5DF5F99902FED3C801A81C05205CEA6CE039EF08 V_2;
|
|
memset((&V_2), 0, sizeof(V_2));
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalDrawSystem.cs:143>
|
|
DecalCachedChunk_tDEF493C8A3A1F442BDEC1794BDDA0996B32DCACE* L_0 = ___2_decalCachedChunk;
|
|
NullCheck(L_0);
|
|
JobHandle_t5DF5F99902FED3C801A81C05205CEA6CE039EF08 L_1;
|
|
L_1 = DecalChunk_get_currentJobHandle_m0EBD28118EB20E5BBC3BE831171CD2CDC745AAD4_inline(L_0, NULL);
|
|
V_2 = L_1;
|
|
JobHandle_Complete_mDCED35A125AAB37EDDAB2E31C805B4904B614A4A((&V_2), NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalDrawSystem.cs:144>
|
|
DecalDrawCallChunk_tBD0491A1B0B7D19DF01A5C9EDE0A40CBEDBF7A3A* L_2 = ___3_decalDrawCallChunk;
|
|
NullCheck(L_2);
|
|
JobHandle_t5DF5F99902FED3C801A81C05205CEA6CE039EF08 L_3;
|
|
L_3 = DecalChunk_get_currentJobHandle_m0EBD28118EB20E5BBC3BE831171CD2CDC745AAD4_inline(L_2, NULL);
|
|
V_2 = L_3;
|
|
JobHandle_Complete_mDCED35A125AAB37EDDAB2E31C805B4904B614A4A((&V_2), NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalDrawSystem.cs:146>
|
|
DecalEntityChunk_t2CDCBFA35711DA074631D26572EF9755A3AD740C* L_4 = ___1_decalEntityChunk;
|
|
Material_t18053F08F347D0DCA5E1140EC7EC4533DD8A14E3* L_5;
|
|
L_5 = VirtualFuncInvoker1< Material_t18053F08F347D0DCA5E1140EC7EC4533DD8A14E3*, DecalEntityChunk_t2CDCBFA35711DA074631D26572EF9755A3AD740C* >::Invoke(4, __this, L_4);
|
|
V_0 = L_5;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalDrawSystem.cs:147>
|
|
DecalCachedChunk_tDEF493C8A3A1F442BDEC1794BDDA0996B32DCACE* L_6 = ___2_decalCachedChunk;
|
|
int32_t L_7;
|
|
L_7 = VirtualFuncInvoker1< int32_t, DecalCachedChunk_tDEF493C8A3A1F442BDEC1794BDDA0996B32DCACE* >::Invoke(5, __this, L_6);
|
|
V_1 = L_7;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalDrawSystem.cs:149>
|
|
int32_t L_8 = ___4_count;
|
|
if (!L_8)
|
|
{
|
|
goto IL_003e;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_9 = V_1;
|
|
if ((((int32_t)L_9) == ((int32_t)(-1))))
|
|
{
|
|
goto IL_003e;
|
|
}
|
|
}
|
|
{
|
|
Material_t18053F08F347D0DCA5E1140EC7EC4533DD8A14E3* L_10 = V_0;
|
|
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
bool L_11;
|
|
L_11 = Object_op_Equality_mB6120F782D83091EF56A198FCEBCF066DB4A9605(L_10, (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C*)NULL, NULL);
|
|
if (!L_11)
|
|
{
|
|
goto IL_003f;
|
|
}
|
|
}
|
|
|
|
IL_003e:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalDrawSystem.cs:150>
|
|
return;
|
|
}
|
|
|
|
IL_003f:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalDrawSystem.cs:152>
|
|
bool L_12;
|
|
L_12 = SystemInfo_get_supportsInstancing_m8EF067060BFA3D50A266342D26A392747DA4FF3E(NULL);
|
|
if (!L_12)
|
|
{
|
|
goto IL_005a;
|
|
}
|
|
}
|
|
{
|
|
Material_t18053F08F347D0DCA5E1140EC7EC4533DD8A14E3* L_13 = V_0;
|
|
NullCheck(L_13);
|
|
bool L_14;
|
|
L_14 = Material_get_enableInstancing_m4EF71CDFA15E9EB97752861350CEDB3D8CC00580(L_13, NULL);
|
|
if (!L_14)
|
|
{
|
|
goto IL_005a;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalDrawSystem.cs:154>
|
|
CameraData_tC27AE109CD20677486A4AC19C0CF014AE0F50C3E* L_15 = ___0_cameraData;
|
|
DecalEntityChunk_t2CDCBFA35711DA074631D26572EF9755A3AD740C* L_16 = ___1_decalEntityChunk;
|
|
DecalCachedChunk_tDEF493C8A3A1F442BDEC1794BDDA0996B32DCACE* L_17 = ___2_decalCachedChunk;
|
|
DecalDrawCallChunk_tBD0491A1B0B7D19DF01A5C9EDE0A40CBEDBF7A3A* L_18 = ___3_decalDrawCallChunk;
|
|
DecalDrawSystem_DrawInstanced_mC10A3330403DC57466A40DD210DF51411A7CB490(__this, L_15, L_16, L_17, L_18, NULL);
|
|
return;
|
|
}
|
|
|
|
IL_005a:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalDrawSystem.cs:158>
|
|
CameraData_tC27AE109CD20677486A4AC19C0CF014AE0F50C3E* L_19 = ___0_cameraData;
|
|
DecalEntityChunk_t2CDCBFA35711DA074631D26572EF9755A3AD740C* L_20 = ___1_decalEntityChunk;
|
|
DecalCachedChunk_tDEF493C8A3A1F442BDEC1794BDDA0996B32DCACE* L_21 = ___2_decalCachedChunk;
|
|
DecalDrawCallChunk_tBD0491A1B0B7D19DF01A5C9EDE0A40CBEDBF7A3A* L_22 = ___3_decalDrawCallChunk;
|
|
DecalDrawSystem_Draw_mEC0F1B82C7841FDE1F135CC74C2B356D8E92C9D4(__this, L_19, L_20, L_21, L_22, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalDrawSystem.cs:160>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 33170
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DecalDrawSystem_Draw_mEC0F1B82C7841FDE1F135CC74C2B356D8E92C9D4 (DecalDrawSystem_t87ECA1A8D2D9C3A73A12F81D8CCA0F79029C0BFE* __this, CameraData_tC27AE109CD20677486A4AC19C0CF014AE0F50C3E* ___0_cameraData, DecalEntityChunk_t2CDCBFA35711DA074631D26572EF9755A3AD740C* ___1_decalEntityChunk, DecalCachedChunk_tDEF493C8A3A1F442BDEC1794BDDA0996B32DCACE* ___2_decalCachedChunk, DecalDrawCallChunk_tBD0491A1B0B7D19DF01A5C9EDE0A40CBEDBF7A3A* ___3_decalDrawCallChunk, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Graphics_t99CD970FFEA58171C70F54DF0C06D315BD452F2C_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral91E548F3EBD1A7D7C5EDCC1906D95D22C2F225B4);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralA2C0A63DB753DB0FF0426699143F23CBFDD9C372);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
Mesh_t6D9C539763A09BC2B12AEAEF36F6DFFC98AE63D4* V_0 = NULL;
|
|
Material_t18053F08F347D0DCA5E1140EC7EC4533DD8A14E3* V_1 = NULL;
|
|
int32_t V_2 = 0;
|
|
int32_t V_3 = 0;
|
|
DecalSubDrawCall_t68CDD2E663F805776DE0281AB4FAEDC8B8D9EC49 V_4;
|
|
memset((&V_4), 0, sizeof(V_4));
|
|
int32_t V_5 = 0;
|
|
CameraData_tC27AE109CD20677486A4AC19C0CF014AE0F50C3E V_6;
|
|
memset((&V_6), 0, sizeof(V_6));
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalDrawSystem.cs:164>
|
|
DecalEntityManager_tDA689202786946588782A67EF3F0B0D9121C294A* L_0 = __this->___m_EntityManager;
|
|
NullCheck(L_0);
|
|
Mesh_t6D9C539763A09BC2B12AEAEF36F6DFFC98AE63D4* L_1;
|
|
L_1 = DecalEntityManager_get_decalProjectorMesh_m63E8D23353B8A5881EC5D5AE562FC8F3D234BD69(L_0, NULL);
|
|
V_0 = L_1;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalDrawSystem.cs:165>
|
|
DecalEntityChunk_t2CDCBFA35711DA074631D26572EF9755A3AD740C* L_2 = ___1_decalEntityChunk;
|
|
Material_t18053F08F347D0DCA5E1140EC7EC4533DD8A14E3* L_3;
|
|
L_3 = VirtualFuncInvoker1< Material_t18053F08F347D0DCA5E1140EC7EC4533DD8A14E3*, DecalEntityChunk_t2CDCBFA35711DA074631D26572EF9755A3AD740C* >::Invoke(4, __this, L_2);
|
|
V_1 = L_3;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalDrawSystem.cs:166>
|
|
DecalDrawCallChunk_tBD0491A1B0B7D19DF01A5C9EDE0A40CBEDBF7A3A* L_4 = ___3_decalDrawCallChunk;
|
|
NullCheck(L_4);
|
|
int32_t L_5;
|
|
L_5 = DecalDrawCallChunk_get_subCallCount_m122EAA49534D171EF4779395DA05095FC9DD080D(L_4, NULL);
|
|
V_2 = L_5;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalDrawSystem.cs:167>
|
|
V_3 = 0;
|
|
goto IL_00d7;
|
|
}
|
|
|
|
IL_0023:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalDrawSystem.cs:169>
|
|
DecalDrawCallChunk_tBD0491A1B0B7D19DF01A5C9EDE0A40CBEDBF7A3A* L_6 = ___3_decalDrawCallChunk;
|
|
NullCheck(L_6);
|
|
NativeArray_1_t197AED29D4CF7A6BC8C6C69B7BABD82BDC8475E2* L_7 = (NativeArray_1_t197AED29D4CF7A6BC8C6C69B7BABD82BDC8475E2*)(&L_6->___subCalls);
|
|
int32_t L_8 = V_3;
|
|
DecalSubDrawCall_t68CDD2E663F805776DE0281AB4FAEDC8B8D9EC49 L_9;
|
|
L_9 = IL2CPP_NATIVEARRAY_GET_ITEM(DecalSubDrawCall_t68CDD2E663F805776DE0281AB4FAEDC8B8D9EC49, (L_7)->___m_Buffer, L_8);
|
|
V_4 = L_9;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalDrawSystem.cs:171>
|
|
DecalSubDrawCall_t68CDD2E663F805776DE0281AB4FAEDC8B8D9EC49 L_10 = V_4;
|
|
int32_t L_11 = L_10.___start;
|
|
V_5 = L_11;
|
|
goto IL_00c5;
|
|
}
|
|
|
|
IL_0040:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalDrawSystem.cs:173>
|
|
DecalCachedChunk_tDEF493C8A3A1F442BDEC1794BDDA0996B32DCACE* L_12 = ___2_decalCachedChunk;
|
|
NullCheck(L_12);
|
|
MaterialPropertyBlock_t2308669579033A857EFE6E4831909F638B27411D* L_13 = L_12->___propertyBlock;
|
|
DecalDrawCallChunk_tBD0491A1B0B7D19DF01A5C9EDE0A40CBEDBF7A3A* L_14 = ___3_decalDrawCallChunk;
|
|
NullCheck(L_14);
|
|
NativeArray_1_t63326FF687E26631308829A9CDB0C51D523D4E9A* L_15 = (NativeArray_1_t63326FF687E26631308829A9CDB0C51D523D4E9A*)(&L_14->___normalToDecals);
|
|
int32_t L_16 = V_5;
|
|
float4x4_t7EDD16F7F57DC7F61A6302535F7C19FB97915DF2 L_17;
|
|
L_17 = IL2CPP_NATIVEARRAY_GET_ITEM(float4x4_t7EDD16F7F57DC7F61A6302535F7C19FB97915DF2, (L_15)->___m_Buffer, L_16);
|
|
Matrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6 L_18;
|
|
L_18 = float4x4_op_Implicit_mC056D7C9F17B6D06E026163034B5414E56DA04B4(L_17, NULL);
|
|
NullCheck(L_13);
|
|
MaterialPropertyBlock_SetMatrix_mB07C5C1539AACE5683720A013B1A44C0D1895910(L_13, _stringLiteralA2C0A63DB753DB0FF0426699143F23CBFDD9C372, L_18, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalDrawSystem.cs:174>
|
|
DecalCachedChunk_tDEF493C8A3A1F442BDEC1794BDDA0996B32DCACE* L_19 = ___2_decalCachedChunk;
|
|
NullCheck(L_19);
|
|
MaterialPropertyBlock_t2308669579033A857EFE6E4831909F638B27411D* L_20 = L_19->___propertyBlock;
|
|
DecalDrawCallChunk_tBD0491A1B0B7D19DF01A5C9EDE0A40CBEDBF7A3A* L_21 = ___3_decalDrawCallChunk;
|
|
NullCheck(L_21);
|
|
NativeArray_1_t3848EE4B6647317212A754634DE6DBC90B99FBEF* L_22 = (NativeArray_1_t3848EE4B6647317212A754634DE6DBC90B99FBEF*)(&L_21->___renderingLayerMasks);
|
|
int32_t L_23 = V_5;
|
|
float L_24;
|
|
L_24 = IL2CPP_NATIVEARRAY_GET_ITEM(float, (L_22)->___m_Buffer, L_23);
|
|
NullCheck(L_20);
|
|
MaterialPropertyBlock_SetFloat_m49458EDC57C2B431D765FE7414F18918AD619888(L_20, _stringLiteral91E548F3EBD1A7D7C5EDCC1906D95D22C2F225B4, L_24, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalDrawSystem.cs:176>
|
|
Mesh_t6D9C539763A09BC2B12AEAEF36F6DFFC98AE63D4* L_25 = V_0;
|
|
DecalDrawCallChunk_tBD0491A1B0B7D19DF01A5C9EDE0A40CBEDBF7A3A* L_26 = ___3_decalDrawCallChunk;
|
|
NullCheck(L_26);
|
|
NativeArray_1_t63326FF687E26631308829A9CDB0C51D523D4E9A* L_27 = (NativeArray_1_t63326FF687E26631308829A9CDB0C51D523D4E9A*)(&L_26->___decalToWorlds);
|
|
int32_t L_28 = V_5;
|
|
float4x4_t7EDD16F7F57DC7F61A6302535F7C19FB97915DF2 L_29;
|
|
L_29 = IL2CPP_NATIVEARRAY_GET_ITEM(float4x4_t7EDD16F7F57DC7F61A6302535F7C19FB97915DF2, (L_27)->___m_Buffer, L_28);
|
|
Matrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6 L_30;
|
|
L_30 = float4x4_op_Implicit_mC056D7C9F17B6D06E026163034B5414E56DA04B4(L_29, NULL);
|
|
Material_t18053F08F347D0DCA5E1140EC7EC4533DD8A14E3* L_31 = V_1;
|
|
DecalCachedChunk_tDEF493C8A3A1F442BDEC1794BDDA0996B32DCACE* L_32 = ___2_decalCachedChunk;
|
|
NullCheck(L_32);
|
|
NativeArray_1_tA833EB7E3E1C9AF82C37976AD964B8D4BAC38B2C* L_33 = (NativeArray_1_tA833EB7E3E1C9AF82C37976AD964B8D4BAC38B2C*)(&L_32->___layerMasks);
|
|
int32_t L_34 = V_5;
|
|
int32_t L_35;
|
|
L_35 = IL2CPP_NATIVEARRAY_GET_ITEM(int32_t, (L_33)->___m_Buffer, L_34);
|
|
CameraData_tC27AE109CD20677486A4AC19C0CF014AE0F50C3E* L_36 = ___0_cameraData;
|
|
CameraData_tC27AE109CD20677486A4AC19C0CF014AE0F50C3E L_37 = (*(CameraData_tC27AE109CD20677486A4AC19C0CF014AE0F50C3E*)L_36);
|
|
V_6 = L_37;
|
|
Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184** L_38;
|
|
L_38 = CameraData_get_camera_mA3084B19BBF03DF4E59402E021A74016AC808B01((&V_6), NULL);
|
|
Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184* L_39 = *((Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184**)L_38);
|
|
DecalCachedChunk_tDEF493C8A3A1F442BDEC1794BDDA0996B32DCACE* L_40 = ___2_decalCachedChunk;
|
|
NullCheck(L_40);
|
|
MaterialPropertyBlock_t2308669579033A857EFE6E4831909F638B27411D* L_41 = L_40->___propertyBlock;
|
|
il2cpp_codegen_runtime_class_init_inline(Graphics_t99CD970FFEA58171C70F54DF0C06D315BD452F2C_il2cpp_TypeInfo_var);
|
|
Graphics_DrawMesh_mCFBCF7F355A3BEB4B8E26BDC9C12E064E3EA1C71(L_25, L_30, L_31, L_35, L_39, 0, L_41, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalDrawSystem.cs:171>
|
|
int32_t L_42 = V_5;
|
|
V_5 = ((int32_t)il2cpp_codegen_add(L_42, 1));
|
|
}
|
|
|
|
IL_00c5:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalDrawSystem.cs:171>
|
|
int32_t L_43 = V_5;
|
|
DecalSubDrawCall_t68CDD2E663F805776DE0281AB4FAEDC8B8D9EC49 L_44 = V_4;
|
|
int32_t L_45 = L_44.___end;
|
|
if ((((int32_t)L_43) < ((int32_t)L_45)))
|
|
{
|
|
goto IL_0040;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalDrawSystem.cs:167>
|
|
int32_t L_46 = V_3;
|
|
V_3 = ((int32_t)il2cpp_codegen_add(L_46, 1));
|
|
}
|
|
|
|
IL_00d7:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalDrawSystem.cs:167>
|
|
int32_t L_47 = V_3;
|
|
int32_t L_48 = V_2;
|
|
if ((((int32_t)L_47) < ((int32_t)L_48)))
|
|
{
|
|
goto IL_0023;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalDrawSystem.cs:179>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 33171
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DecalDrawSystem_DrawInstanced_mC10A3330403DC57466A40DD210DF51411A7CB490 (DecalDrawSystem_t87ECA1A8D2D9C3A73A12F81D8CCA0F79029C0BFE* __this, CameraData_tC27AE109CD20677486A4AC19C0CF014AE0F50C3E* ___0_cameraData, DecalEntityChunk_t2CDCBFA35711DA074631D26572EF9755A3AD740C* ___1_decalEntityChunk, DecalCachedChunk_tDEF493C8A3A1F442BDEC1794BDDA0996B32DCACE* ___2_decalCachedChunk, DecalDrawCallChunk_tBD0491A1B0B7D19DF01A5C9EDE0A40CBEDBF7A3A* ___3_decalDrawCallChunk, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Graphics_t99CD970FFEA58171C70F54DF0C06D315BD452F2C_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NativeArray_1_Copy_mCB984DA829C4D613BDCE16D39741EF4FDC95EF92_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NativeArray_1_Copy_mF705F6BD4C4D02C73B49A4D937A01BA1048A537D_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NativeArray_1_Reinterpret_TisMatrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6_m0305CE8B48077F1A6A9C1C7146BEDA3A09B8274B_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NativeArray_1_Reinterpret_TisSingle_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_mDCC6EC00BF88D23975965B27D2824BF2F070EB14_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral72C15439E7CA24FEE57FB1C4C772BF8F7F8DE0C4);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral91E548F3EBD1A7D7C5EDCC1906D95D22C2F225B4);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralA2C0A63DB753DB0FF0426699143F23CBFDD9C372);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
Mesh_t6D9C539763A09BC2B12AEAEF36F6DFFC98AE63D4* V_0 = NULL;
|
|
Material_t18053F08F347D0DCA5E1140EC7EC4533DD8A14E3* V_1 = NULL;
|
|
int32_t V_2 = 0;
|
|
int32_t V_3 = 0;
|
|
DecalSubDrawCall_t68CDD2E663F805776DE0281AB4FAEDC8B8D9EC49 V_4;
|
|
memset((&V_4), 0, sizeof(V_4));
|
|
CameraData_tC27AE109CD20677486A4AC19C0CF014AE0F50C3E V_5;
|
|
memset((&V_5), 0, sizeof(V_5));
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalDrawSystem.cs:183>
|
|
DecalEntityManager_tDA689202786946588782A67EF3F0B0D9121C294A* L_0 = __this->___m_EntityManager;
|
|
NullCheck(L_0);
|
|
Mesh_t6D9C539763A09BC2B12AEAEF36F6DFFC98AE63D4* L_1;
|
|
L_1 = DecalEntityManager_get_decalProjectorMesh_m63E8D23353B8A5881EC5D5AE562FC8F3D234BD69(L_0, NULL);
|
|
V_0 = L_1;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalDrawSystem.cs:184>
|
|
DecalEntityChunk_t2CDCBFA35711DA074631D26572EF9755A3AD740C* L_2 = ___1_decalEntityChunk;
|
|
Material_t18053F08F347D0DCA5E1140EC7EC4533DD8A14E3* L_3;
|
|
L_3 = VirtualFuncInvoker1< Material_t18053F08F347D0DCA5E1140EC7EC4533DD8A14E3*, DecalEntityChunk_t2CDCBFA35711DA074631D26572EF9755A3AD740C* >::Invoke(4, __this, L_2);
|
|
V_1 = L_3;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalDrawSystem.cs:185>
|
|
DecalCachedChunk_tDEF493C8A3A1F442BDEC1794BDDA0996B32DCACE* L_4 = ___2_decalCachedChunk;
|
|
NullCheck(L_4);
|
|
MaterialPropertyBlock_t2308669579033A857EFE6E4831909F638B27411D* L_5 = L_4->___propertyBlock;
|
|
Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3 L_6;
|
|
memset((&L_6), 0, sizeof(L_6));
|
|
Vector4__ctor_m96B2CD8B862B271F513AF0BDC2EABD58E4DBC813_inline((&L_6), (1.0f), (1.0f), (1.0f), (0.0f), NULL);
|
|
NullCheck(L_5);
|
|
MaterialPropertyBlock_SetVector_mB3D0FFCCDFF9D78447719F25DB8C1AFCB12B8BD5(L_5, _stringLiteral72C15439E7CA24FEE57FB1C4C772BF8F7F8DE0C4, L_6, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalDrawSystem.cs:187>
|
|
DecalDrawCallChunk_tBD0491A1B0B7D19DF01A5C9EDE0A40CBEDBF7A3A* L_7 = ___3_decalDrawCallChunk;
|
|
NullCheck(L_7);
|
|
int32_t L_8;
|
|
L_8 = DecalDrawCallChunk_get_subCallCount_m122EAA49534D171EF4779395DA05095FC9DD080D(L_7, NULL);
|
|
V_2 = L_8;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalDrawSystem.cs:188>
|
|
V_3 = 0;
|
|
goto IL_012b;
|
|
}
|
|
|
|
IL_004c:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalDrawSystem.cs:190>
|
|
DecalDrawCallChunk_tBD0491A1B0B7D19DF01A5C9EDE0A40CBEDBF7A3A* L_9 = ___3_decalDrawCallChunk;
|
|
NullCheck(L_9);
|
|
NativeArray_1_t197AED29D4CF7A6BC8C6C69B7BABD82BDC8475E2* L_10 = (NativeArray_1_t197AED29D4CF7A6BC8C6C69B7BABD82BDC8475E2*)(&L_9->___subCalls);
|
|
int32_t L_11 = V_3;
|
|
DecalSubDrawCall_t68CDD2E663F805776DE0281AB4FAEDC8B8D9EC49 L_12;
|
|
L_12 = IL2CPP_NATIVEARRAY_GET_ITEM(DecalSubDrawCall_t68CDD2E663F805776DE0281AB4FAEDC8B8D9EC49, (L_10)->___m_Buffer, L_11);
|
|
V_4 = L_12;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalDrawSystem.cs:192>
|
|
DecalDrawCallChunk_tBD0491A1B0B7D19DF01A5C9EDE0A40CBEDBF7A3A* L_13 = ___3_decalDrawCallChunk;
|
|
NullCheck(L_13);
|
|
NativeArray_1_t63326FF687E26631308829A9CDB0C51D523D4E9A* L_14 = (NativeArray_1_t63326FF687E26631308829A9CDB0C51D523D4E9A*)(&L_13->___decalToWorlds);
|
|
NativeArray_1_t6D4C2D5161FC101BAF06059CD9414A2153CCC2A0 L_15;
|
|
L_15 = NativeArray_1_Reinterpret_TisMatrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6_m0305CE8B48077F1A6A9C1C7146BEDA3A09B8274B(L_14, NativeArray_1_Reinterpret_TisMatrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6_m0305CE8B48077F1A6A9C1C7146BEDA3A09B8274B_RuntimeMethod_var);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalDrawSystem.cs:193>
|
|
DecalSubDrawCall_t68CDD2E663F805776DE0281AB4FAEDC8B8D9EC49 L_16 = V_4;
|
|
int32_t L_17 = L_16.___start;
|
|
Matrix4x4U5BU5D_t9C51C93425FABC022B506D2DB3A5FA70F9752C4D* L_18 = __this->___m_WorldToDecals;
|
|
int32_t L_19;
|
|
L_19 = DecalSubDrawCall_get_count_m8B38E73F7F4564C38F29C7D6259DDD55774621D0((&V_4), NULL);
|
|
NativeArray_1_Copy_mCB984DA829C4D613BDCE16D39741EF4FDC95EF92(L_15, L_17, L_18, 0, L_19, NativeArray_1_Copy_mCB984DA829C4D613BDCE16D39741EF4FDC95EF92_RuntimeMethod_var);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalDrawSystem.cs:195>
|
|
DecalDrawCallChunk_tBD0491A1B0B7D19DF01A5C9EDE0A40CBEDBF7A3A* L_20 = ___3_decalDrawCallChunk;
|
|
NullCheck(L_20);
|
|
NativeArray_1_t63326FF687E26631308829A9CDB0C51D523D4E9A* L_21 = (NativeArray_1_t63326FF687E26631308829A9CDB0C51D523D4E9A*)(&L_20->___normalToDecals);
|
|
NativeArray_1_t6D4C2D5161FC101BAF06059CD9414A2153CCC2A0 L_22;
|
|
L_22 = NativeArray_1_Reinterpret_TisMatrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6_m0305CE8B48077F1A6A9C1C7146BEDA3A09B8274B(L_21, NativeArray_1_Reinterpret_TisMatrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6_m0305CE8B48077F1A6A9C1C7146BEDA3A09B8274B_RuntimeMethod_var);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalDrawSystem.cs:196>
|
|
DecalSubDrawCall_t68CDD2E663F805776DE0281AB4FAEDC8B8D9EC49 L_23 = V_4;
|
|
int32_t L_24 = L_23.___start;
|
|
Matrix4x4U5BU5D_t9C51C93425FABC022B506D2DB3A5FA70F9752C4D* L_25 = __this->___m_NormalToDecals;
|
|
int32_t L_26;
|
|
L_26 = DecalSubDrawCall_get_count_m8B38E73F7F4564C38F29C7D6259DDD55774621D0((&V_4), NULL);
|
|
NativeArray_1_Copy_mCB984DA829C4D613BDCE16D39741EF4FDC95EF92(L_22, L_24, L_25, 0, L_26, NativeArray_1_Copy_mCB984DA829C4D613BDCE16D39741EF4FDC95EF92_RuntimeMethod_var);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalDrawSystem.cs:198>
|
|
DecalDrawCallChunk_tBD0491A1B0B7D19DF01A5C9EDE0A40CBEDBF7A3A* L_27 = ___3_decalDrawCallChunk;
|
|
NullCheck(L_27);
|
|
NativeArray_1_t3848EE4B6647317212A754634DE6DBC90B99FBEF* L_28 = (NativeArray_1_t3848EE4B6647317212A754634DE6DBC90B99FBEF*)(&L_27->___renderingLayerMasks);
|
|
NativeArray_1_t3848EE4B6647317212A754634DE6DBC90B99FBEF L_29;
|
|
L_29 = NativeArray_1_Reinterpret_TisSingle_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_mDCC6EC00BF88D23975965B27D2824BF2F070EB14(L_28, NativeArray_1_Reinterpret_TisSingle_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_mDCC6EC00BF88D23975965B27D2824BF2F070EB14_RuntimeMethod_var);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalDrawSystem.cs:199>
|
|
DecalSubDrawCall_t68CDD2E663F805776DE0281AB4FAEDC8B8D9EC49 L_30 = V_4;
|
|
int32_t L_31 = L_30.___start;
|
|
SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C* L_32 = __this->___m_DecalLayerMasks;
|
|
int32_t L_33;
|
|
L_33 = DecalSubDrawCall_get_count_m8B38E73F7F4564C38F29C7D6259DDD55774621D0((&V_4), NULL);
|
|
NativeArray_1_Copy_mF705F6BD4C4D02C73B49A4D937A01BA1048A537D(L_29, L_31, L_32, 0, L_33, NativeArray_1_Copy_mF705F6BD4C4D02C73B49A4D937A01BA1048A537D_RuntimeMethod_var);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalDrawSystem.cs:201>
|
|
DecalCachedChunk_tDEF493C8A3A1F442BDEC1794BDDA0996B32DCACE* L_34 = ___2_decalCachedChunk;
|
|
NullCheck(L_34);
|
|
MaterialPropertyBlock_t2308669579033A857EFE6E4831909F638B27411D* L_35 = L_34->___propertyBlock;
|
|
Matrix4x4U5BU5D_t9C51C93425FABC022B506D2DB3A5FA70F9752C4D* L_36 = __this->___m_NormalToDecals;
|
|
NullCheck(L_35);
|
|
MaterialPropertyBlock_SetMatrixArray_m804373A3E7B1D31A4ACD522186ADAD4EF91F93DB(L_35, _stringLiteralA2C0A63DB753DB0FF0426699143F23CBFDD9C372, L_36, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalDrawSystem.cs:202>
|
|
DecalCachedChunk_tDEF493C8A3A1F442BDEC1794BDDA0996B32DCACE* L_37 = ___2_decalCachedChunk;
|
|
NullCheck(L_37);
|
|
MaterialPropertyBlock_t2308669579033A857EFE6E4831909F638B27411D* L_38 = L_37->___propertyBlock;
|
|
SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C* L_39 = __this->___m_DecalLayerMasks;
|
|
NullCheck(L_38);
|
|
MaterialPropertyBlock_SetFloatArray_mB5CC5932A09B2DA4FD9F8F9021C6229AC77FC314(L_38, _stringLiteral91E548F3EBD1A7D7C5EDCC1906D95D22C2F225B4, L_39, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalDrawSystem.cs:204>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalDrawSystem.cs:205>
|
|
Mesh_t6D9C539763A09BC2B12AEAEF36F6DFFC98AE63D4* L_40 = V_0;
|
|
Material_t18053F08F347D0DCA5E1140EC7EC4533DD8A14E3* L_41 = V_1;
|
|
Matrix4x4U5BU5D_t9C51C93425FABC022B506D2DB3A5FA70F9752C4D* L_42 = __this->___m_WorldToDecals;
|
|
int32_t L_43;
|
|
L_43 = DecalSubDrawCall_get_count_m8B38E73F7F4564C38F29C7D6259DDD55774621D0((&V_4), NULL);
|
|
DecalCachedChunk_tDEF493C8A3A1F442BDEC1794BDDA0996B32DCACE* L_44 = ___2_decalCachedChunk;
|
|
NullCheck(L_44);
|
|
MaterialPropertyBlock_t2308669579033A857EFE6E4831909F638B27411D* L_45 = L_44->___propertyBlock;
|
|
CameraData_tC27AE109CD20677486A4AC19C0CF014AE0F50C3E* L_46 = ___0_cameraData;
|
|
CameraData_tC27AE109CD20677486A4AC19C0CF014AE0F50C3E L_47 = (*(CameraData_tC27AE109CD20677486A4AC19C0CF014AE0F50C3E*)L_46);
|
|
V_5 = L_47;
|
|
Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184** L_48;
|
|
L_48 = CameraData_get_camera_mA3084B19BBF03DF4E59402E021A74016AC808B01((&V_5), NULL);
|
|
Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184* L_49 = *((Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184**)L_48);
|
|
il2cpp_codegen_runtime_class_init_inline(Graphics_t99CD970FFEA58171C70F54DF0C06D315BD452F2C_il2cpp_TypeInfo_var);
|
|
Graphics_DrawMeshInstanced_m427C1A183F3C36F8971E842D3783900820CFD1C6(L_40, 0, L_41, L_42, L_43, L_45, 1, (bool)1, 0, L_49, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalDrawSystem.cs:188>
|
|
int32_t L_50 = V_3;
|
|
V_3 = ((int32_t)il2cpp_codegen_add(L_50, 1));
|
|
}
|
|
|
|
IL_012b:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalDrawSystem.cs:188>
|
|
int32_t L_51 = V_3;
|
|
int32_t L_52 = V_2;
|
|
if ((((int32_t)L_51) < ((int32_t)L_52)))
|
|
{
|
|
goto IL_004c;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalDrawSystem.cs:207>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 33172
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DecalDrawSystem__cctor_m353F95A9EC731963FB023860BD5C297271C40799 (const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DecalDrawSystem_t87ECA1A8D2D9C3A73A12F81D8CCA0F79029C0BFE_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalDrawSystem.cs:12>
|
|
((DecalDrawSystem_t87ECA1A8D2D9C3A73A12F81D8CCA0F79029C0BFE_StaticFields*)il2cpp_codegen_static_fields_for(DecalDrawSystem_t87ECA1A8D2D9C3A73A12F81D8CCA0F79029C0BFE_il2cpp_TypeInfo_var))->___MaxBatchSize = ((int32_t)250);
|
|
return;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// Method Definition Index: 33173
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DecalEntityIndexer_IsValid_m435987501A9563EFB838C9D79D9681C3FD642A5D (DecalEntityIndexer_t884A1F60E13512A2DE8CEC24635D2B3BE3FD3544* __this, DecalEntity_t8CAF09C65939503449C4138ADCDC4907196293FD ___0_decalEntity, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Count_mED203CDDFC49CE3879C37BC63A8F53B4375C351B_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Item_m54FB7CAFE4C95FB5BAD4BFD0BDAE72F6C6B0E7F3_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:24>
|
|
List_1_t218CEA415E5769B47AB34C68D264977822ECAD17* L_0 = __this->___m_Entities;
|
|
NullCheck(L_0);
|
|
int32_t L_1;
|
|
L_1 = List_1_get_Count_mED203CDDFC49CE3879C37BC63A8F53B4375C351B_inline(L_0, List_1_get_Count_mED203CDDFC49CE3879C37BC63A8F53B4375C351B_RuntimeMethod_var);
|
|
DecalEntity_t8CAF09C65939503449C4138ADCDC4907196293FD L_2 = ___0_decalEntity;
|
|
int32_t L_3 = L_2.___index;
|
|
if ((((int32_t)L_1) > ((int32_t)L_3)))
|
|
{
|
|
goto IL_0015;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:25>
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_0015:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:27>
|
|
List_1_t218CEA415E5769B47AB34C68D264977822ECAD17* L_4 = __this->___m_Entities;
|
|
DecalEntity_t8CAF09C65939503449C4138ADCDC4907196293FD L_5 = ___0_decalEntity;
|
|
int32_t L_6 = L_5.___index;
|
|
NullCheck(L_4);
|
|
DecalEntityItem_tE2209120E111E679725F7022B0C54DEC6783EA5D L_7;
|
|
L_7 = List_1_get_Item_m54FB7CAFE4C95FB5BAD4BFD0BDAE72F6C6B0E7F3(L_4, L_6, List_1_get_Item_m54FB7CAFE4C95FB5BAD4BFD0BDAE72F6C6B0E7F3_RuntimeMethod_var);
|
|
int32_t L_8 = L_7.___version;
|
|
DecalEntity_t8CAF09C65939503449C4138ADCDC4907196293FD L_9 = ___0_decalEntity;
|
|
int32_t L_10 = L_9.___version;
|
|
return (bool)((((int32_t)L_8) == ((int32_t)L_10))? 1 : 0);
|
|
}
|
|
}
|
|
// Method Definition Index: 33174
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DecalEntity_t8CAF09C65939503449C4138ADCDC4907196293FD DecalEntityIndexer_CreateDecalEntity_m002875F9D20F7172B5CB77641FCC7C87261B58F7 (DecalEntityIndexer_t884A1F60E13512A2DE8CEC24635D2B3BE3FD3544* __this, int32_t ___0_arrayIndex, int32_t ___1_chunkIndex, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Add_mF87065DB2C5D09F1743E971BED0CCDC4827EB029_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Count_mED203CDDFC49CE3879C37BC63A8F53B4375C351B_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Item_m54FB7CAFE4C95FB5BAD4BFD0BDAE72F6C6B0E7F3_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_set_Item_m3BF7B0B2C94CCE04F5404BC1BBDE6B1FCFAC802D_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Queue_1_Dequeue_mF8CBF6CA268A863994D198E7FB69116D39C9D650_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Queue_1_get_Count_mC5E49C471693AD17FDBA87D8532FB0676AC0BB75_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int32_t V_0 = 0;
|
|
int32_t V_1 = 0;
|
|
DecalEntityItem_tE2209120E111E679725F7022B0C54DEC6783EA5D V_2;
|
|
memset((&V_2), 0, sizeof(V_2));
|
|
DecalEntity_t8CAF09C65939503449C4138ADCDC4907196293FD V_3;
|
|
memset((&V_3), 0, sizeof(V_3));
|
|
int32_t V_4 = 0;
|
|
int32_t V_5 = 0;
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:33>
|
|
Queue_1_tCA24E420CB13C6411AEFC3ECE9E62219F7937A1E* L_0 = __this->___m_FreeIndices;
|
|
NullCheck(L_0);
|
|
int32_t L_1;
|
|
L_1 = Queue_1_get_Count_mC5E49C471693AD17FDBA87D8532FB0676AC0BB75_inline(L_0, Queue_1_get_Count_mC5E49C471693AD17FDBA87D8532FB0676AC0BB75_RuntimeMethod_var);
|
|
if (!L_1)
|
|
{
|
|
goto IL_0074;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:35>
|
|
Queue_1_tCA24E420CB13C6411AEFC3ECE9E62219F7937A1E* L_2 = __this->___m_FreeIndices;
|
|
NullCheck(L_2);
|
|
int32_t L_3;
|
|
L_3 = Queue_1_Dequeue_mF8CBF6CA268A863994D198E7FB69116D39C9D650(L_2, Queue_1_Dequeue_mF8CBF6CA268A863994D198E7FB69116D39C9D650_RuntimeMethod_var);
|
|
V_0 = L_3;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:36>
|
|
List_1_t218CEA415E5769B47AB34C68D264977822ECAD17* L_4 = __this->___m_Entities;
|
|
int32_t L_5 = V_0;
|
|
NullCheck(L_4);
|
|
DecalEntityItem_tE2209120E111E679725F7022B0C54DEC6783EA5D L_6;
|
|
L_6 = List_1_get_Item_m54FB7CAFE4C95FB5BAD4BFD0BDAE72F6C6B0E7F3(L_4, L_5, List_1_get_Item_m54FB7CAFE4C95FB5BAD4BFD0BDAE72F6C6B0E7F3_RuntimeMethod_var);
|
|
int32_t L_7 = L_6.___version;
|
|
V_1 = ((int32_t)il2cpp_codegen_add(L_7, 1));
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:38>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:39>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:40>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:41>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:42>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:43>
|
|
List_1_t218CEA415E5769B47AB34C68D264977822ECAD17* L_8 = __this->___m_Entities;
|
|
int32_t L_9 = V_0;
|
|
il2cpp_codegen_initobj((&V_2), sizeof(DecalEntityItem_tE2209120E111E679725F7022B0C54DEC6783EA5D));
|
|
int32_t L_10 = ___0_arrayIndex;
|
|
(&V_2)->___arrayIndex = L_10;
|
|
int32_t L_11 = ___1_chunkIndex;
|
|
(&V_2)->___chunkIndex = L_11;
|
|
int32_t L_12 = V_1;
|
|
(&V_2)->___version = L_12;
|
|
DecalEntityItem_tE2209120E111E679725F7022B0C54DEC6783EA5D L_13 = V_2;
|
|
NullCheck(L_8);
|
|
List_1_set_Item_m3BF7B0B2C94CCE04F5404BC1BBDE6B1FCFAC802D(L_8, L_9, L_13, List_1_set_Item_m3BF7B0B2C94CCE04F5404BC1BBDE6B1FCFAC802D_RuntimeMethod_var);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:45>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:46>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:47>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:48>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:49>
|
|
il2cpp_codegen_initobj((&V_3), sizeof(DecalEntity_t8CAF09C65939503449C4138ADCDC4907196293FD));
|
|
int32_t L_14 = V_0;
|
|
(&V_3)->___index = L_14;
|
|
int32_t L_15 = V_1;
|
|
(&V_3)->___version = L_15;
|
|
DecalEntity_t8CAF09C65939503449C4138ADCDC4907196293FD L_16 = V_3;
|
|
return L_16;
|
|
}
|
|
|
|
IL_0074:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:54>
|
|
List_1_t218CEA415E5769B47AB34C68D264977822ECAD17* L_17 = __this->___m_Entities;
|
|
NullCheck(L_17);
|
|
int32_t L_18;
|
|
L_18 = List_1_get_Count_mED203CDDFC49CE3879C37BC63A8F53B4375C351B_inline(L_17, List_1_get_Count_mED203CDDFC49CE3879C37BC63A8F53B4375C351B_RuntimeMethod_var);
|
|
V_4 = L_18;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:55>
|
|
V_5 = 1;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:57>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:58>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:59>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:60>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:61>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:62>
|
|
List_1_t218CEA415E5769B47AB34C68D264977822ECAD17* L_19 = __this->___m_Entities;
|
|
il2cpp_codegen_initobj((&V_2), sizeof(DecalEntityItem_tE2209120E111E679725F7022B0C54DEC6783EA5D));
|
|
int32_t L_20 = ___0_arrayIndex;
|
|
(&V_2)->___arrayIndex = L_20;
|
|
int32_t L_21 = ___1_chunkIndex;
|
|
(&V_2)->___chunkIndex = L_21;
|
|
int32_t L_22 = V_5;
|
|
(&V_2)->___version = L_22;
|
|
DecalEntityItem_tE2209120E111E679725F7022B0C54DEC6783EA5D L_23 = V_2;
|
|
NullCheck(L_19);
|
|
List_1_Add_mF87065DB2C5D09F1743E971BED0CCDC4827EB029_inline(L_19, L_23, List_1_Add_mF87065DB2C5D09F1743E971BED0CCDC4827EB029_RuntimeMethod_var);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:65>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:66>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:67>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:68>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:69>
|
|
il2cpp_codegen_initobj((&V_3), sizeof(DecalEntity_t8CAF09C65939503449C4138ADCDC4907196293FD));
|
|
int32_t L_24 = V_4;
|
|
(&V_3)->___index = L_24;
|
|
int32_t L_25 = V_5;
|
|
(&V_3)->___version = L_25;
|
|
DecalEntity_t8CAF09C65939503449C4138ADCDC4907196293FD L_26 = V_3;
|
|
return L_26;
|
|
}
|
|
}
|
|
// Method Definition Index: 33175
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DecalEntityIndexer_DestroyDecalEntity_mF635D6BD83D30FC9AD186F99ED00842C8CE6B15E (DecalEntityIndexer_t884A1F60E13512A2DE8CEC24635D2B3BE3FD3544* __this, DecalEntity_t8CAF09C65939503449C4138ADCDC4907196293FD ___0_decalEntity, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Item_m54FB7CAFE4C95FB5BAD4BFD0BDAE72F6C6B0E7F3_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_set_Item_m3BF7B0B2C94CCE04F5404BC1BBDE6B1FCFAC802D_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Queue_1_Enqueue_mD0BFD1A401EF2D3489D09B60C30E3468601BBA0A_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
DecalEntityItem_tE2209120E111E679725F7022B0C54DEC6783EA5D V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:76>
|
|
Queue_1_tCA24E420CB13C6411AEFC3ECE9E62219F7937A1E* L_0 = __this->___m_FreeIndices;
|
|
DecalEntity_t8CAF09C65939503449C4138ADCDC4907196293FD L_1 = ___0_decalEntity;
|
|
int32_t L_2 = L_1.___index;
|
|
NullCheck(L_0);
|
|
Queue_1_Enqueue_mD0BFD1A401EF2D3489D09B60C30E3468601BBA0A(L_0, L_2, Queue_1_Enqueue_mD0BFD1A401EF2D3489D09B60C30E3468601BBA0A_RuntimeMethod_var);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:79>
|
|
List_1_t218CEA415E5769B47AB34C68D264977822ECAD17* L_3 = __this->___m_Entities;
|
|
DecalEntity_t8CAF09C65939503449C4138ADCDC4907196293FD L_4 = ___0_decalEntity;
|
|
int32_t L_5 = L_4.___index;
|
|
NullCheck(L_3);
|
|
DecalEntityItem_tE2209120E111E679725F7022B0C54DEC6783EA5D L_6;
|
|
L_6 = List_1_get_Item_m54FB7CAFE4C95FB5BAD4BFD0BDAE72F6C6B0E7F3(L_3, L_5, List_1_get_Item_m54FB7CAFE4C95FB5BAD4BFD0BDAE72F6C6B0E7F3_RuntimeMethod_var);
|
|
V_0 = L_6;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:80>
|
|
int32_t* L_7 = (int32_t*)(&(&V_0)->___version);
|
|
int32_t* L_8 = L_7;
|
|
int32_t L_9 = *((int32_t*)L_8);
|
|
*((int32_t*)L_8) = (int32_t)((int32_t)il2cpp_codegen_add(L_9, 1));
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:81>
|
|
List_1_t218CEA415E5769B47AB34C68D264977822ECAD17* L_10 = __this->___m_Entities;
|
|
DecalEntity_t8CAF09C65939503449C4138ADCDC4907196293FD L_11 = ___0_decalEntity;
|
|
int32_t L_12 = L_11.___index;
|
|
DecalEntityItem_tE2209120E111E679725F7022B0C54DEC6783EA5D L_13 = V_0;
|
|
NullCheck(L_10);
|
|
List_1_set_Item_m3BF7B0B2C94CCE04F5404BC1BBDE6B1FCFAC802D(L_10, L_12, L_13, List_1_set_Item_m3BF7B0B2C94CCE04F5404BC1BBDE6B1FCFAC802D_RuntimeMethod_var);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:82>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 33176
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DecalEntityItem_tE2209120E111E679725F7022B0C54DEC6783EA5D DecalEntityIndexer_GetItem_mBFB4C74136CF7C0D5F6760F8A02908675E231F6D (DecalEntityIndexer_t884A1F60E13512A2DE8CEC24635D2B3BE3FD3544* __this, DecalEntity_t8CAF09C65939503449C4138ADCDC4907196293FD ___0_decalEntity, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Item_m54FB7CAFE4C95FB5BAD4BFD0BDAE72F6C6B0E7F3_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:87>
|
|
List_1_t218CEA415E5769B47AB34C68D264977822ECAD17* L_0 = __this->___m_Entities;
|
|
DecalEntity_t8CAF09C65939503449C4138ADCDC4907196293FD L_1 = ___0_decalEntity;
|
|
int32_t L_2 = L_1.___index;
|
|
NullCheck(L_0);
|
|
DecalEntityItem_tE2209120E111E679725F7022B0C54DEC6783EA5D L_3;
|
|
L_3 = List_1_get_Item_m54FB7CAFE4C95FB5BAD4BFD0BDAE72F6C6B0E7F3(L_0, L_2, List_1_get_Item_m54FB7CAFE4C95FB5BAD4BFD0BDAE72F6C6B0E7F3_RuntimeMethod_var);
|
|
return L_3;
|
|
}
|
|
}
|
|
// Method Definition Index: 33177
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DecalEntityIndexer_UpdateIndex_m723421908B0F8C4354E125A10D657EC14119CAA7 (DecalEntityIndexer_t884A1F60E13512A2DE8CEC24635D2B3BE3FD3544* __this, DecalEntity_t8CAF09C65939503449C4138ADCDC4907196293FD ___0_decalEntity, int32_t ___1_newArrayIndex, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Item_m54FB7CAFE4C95FB5BAD4BFD0BDAE72F6C6B0E7F3_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_set_Item_m3BF7B0B2C94CCE04F5404BC1BBDE6B1FCFAC802D_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
DecalEntityItem_tE2209120E111E679725F7022B0C54DEC6783EA5D V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:93>
|
|
List_1_t218CEA415E5769B47AB34C68D264977822ECAD17* L_0 = __this->___m_Entities;
|
|
DecalEntity_t8CAF09C65939503449C4138ADCDC4907196293FD L_1 = ___0_decalEntity;
|
|
int32_t L_2 = L_1.___index;
|
|
NullCheck(L_0);
|
|
DecalEntityItem_tE2209120E111E679725F7022B0C54DEC6783EA5D L_3;
|
|
L_3 = List_1_get_Item_m54FB7CAFE4C95FB5BAD4BFD0BDAE72F6C6B0E7F3(L_0, L_2, List_1_get_Item_m54FB7CAFE4C95FB5BAD4BFD0BDAE72F6C6B0E7F3_RuntimeMethod_var);
|
|
V_0 = L_3;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:94>
|
|
int32_t L_4 = ___1_newArrayIndex;
|
|
(&V_0)->___arrayIndex = L_4;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:95>
|
|
DecalEntity_t8CAF09C65939503449C4138ADCDC4907196293FD L_5 = ___0_decalEntity;
|
|
int32_t L_6 = L_5.___version;
|
|
(&V_0)->___version = L_6;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:96>
|
|
List_1_t218CEA415E5769B47AB34C68D264977822ECAD17* L_7 = __this->___m_Entities;
|
|
DecalEntity_t8CAF09C65939503449C4138ADCDC4907196293FD L_8 = ___0_decalEntity;
|
|
int32_t L_9 = L_8.___index;
|
|
DecalEntityItem_tE2209120E111E679725F7022B0C54DEC6783EA5D L_10 = V_0;
|
|
NullCheck(L_7);
|
|
List_1_set_Item_m3BF7B0B2C94CCE04F5404BC1BBDE6B1FCFAC802D(L_7, L_9, L_10, List_1_set_Item_m3BF7B0B2C94CCE04F5404BC1BBDE6B1FCFAC802D_RuntimeMethod_var);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:97>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 33178
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DecalEntityIndexer_RemapChunkIndices_m0D24A3A5BE659099CC2F6C0A563D11B9D8AD0EA0 (DecalEntityIndexer_t884A1F60E13512A2DE8CEC24635D2B3BE3FD3544* __this, List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* ___0_remaper, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Count_mED203CDDFC49CE3879C37BC63A8F53B4375C351B_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Item_m54FB7CAFE4C95FB5BAD4BFD0BDAE72F6C6B0E7F3_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Item_mD99081BEFA1AB3526715F489192B0F7F596C183D_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_set_Item_m3BF7B0B2C94CCE04F5404BC1BBDE6B1FCFAC802D_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int32_t V_0 = 0;
|
|
int32_t V_1 = 0;
|
|
DecalEntityItem_tE2209120E111E679725F7022B0C54DEC6783EA5D V_2;
|
|
memset((&V_2), 0, sizeof(V_2));
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:101>
|
|
V_0 = 0;
|
|
goto IL_0042;
|
|
}
|
|
|
|
IL_0004:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:103>
|
|
List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* L_0 = ___0_remaper;
|
|
List_1_t218CEA415E5769B47AB34C68D264977822ECAD17* L_1 = __this->___m_Entities;
|
|
int32_t L_2 = V_0;
|
|
NullCheck(L_1);
|
|
DecalEntityItem_tE2209120E111E679725F7022B0C54DEC6783EA5D L_3;
|
|
L_3 = List_1_get_Item_m54FB7CAFE4C95FB5BAD4BFD0BDAE72F6C6B0E7F3(L_1, L_2, List_1_get_Item_m54FB7CAFE4C95FB5BAD4BFD0BDAE72F6C6B0E7F3_RuntimeMethod_var);
|
|
int32_t L_4 = L_3.___chunkIndex;
|
|
NullCheck(L_0);
|
|
int32_t L_5;
|
|
L_5 = List_1_get_Item_mD99081BEFA1AB3526715F489192B0F7F596C183D(L_0, L_4, List_1_get_Item_mD99081BEFA1AB3526715F489192B0F7F596C183D_RuntimeMethod_var);
|
|
V_1 = L_5;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:104>
|
|
List_1_t218CEA415E5769B47AB34C68D264977822ECAD17* L_6 = __this->___m_Entities;
|
|
int32_t L_7 = V_0;
|
|
NullCheck(L_6);
|
|
DecalEntityItem_tE2209120E111E679725F7022B0C54DEC6783EA5D L_8;
|
|
L_8 = List_1_get_Item_m54FB7CAFE4C95FB5BAD4BFD0BDAE72F6C6B0E7F3(L_6, L_7, List_1_get_Item_m54FB7CAFE4C95FB5BAD4BFD0BDAE72F6C6B0E7F3_RuntimeMethod_var);
|
|
V_2 = L_8;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:105>
|
|
int32_t L_9 = V_1;
|
|
(&V_2)->___chunkIndex = L_9;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:106>
|
|
List_1_t218CEA415E5769B47AB34C68D264977822ECAD17* L_10 = __this->___m_Entities;
|
|
int32_t L_11 = V_0;
|
|
DecalEntityItem_tE2209120E111E679725F7022B0C54DEC6783EA5D L_12 = V_2;
|
|
NullCheck(L_10);
|
|
List_1_set_Item_m3BF7B0B2C94CCE04F5404BC1BBDE6B1FCFAC802D(L_10, L_11, L_12, List_1_set_Item_m3BF7B0B2C94CCE04F5404BC1BBDE6B1FCFAC802D_RuntimeMethod_var);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:101>
|
|
int32_t L_13 = V_0;
|
|
V_0 = ((int32_t)il2cpp_codegen_add(L_13, 1));
|
|
}
|
|
|
|
IL_0042:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:101>
|
|
int32_t L_14 = V_0;
|
|
List_1_t218CEA415E5769B47AB34C68D264977822ECAD17* L_15 = __this->___m_Entities;
|
|
NullCheck(L_15);
|
|
int32_t L_16;
|
|
L_16 = List_1_get_Count_mED203CDDFC49CE3879C37BC63A8F53B4375C351B_inline(L_15, List_1_get_Count_mED203CDDFC49CE3879C37BC63A8F53B4375C351B_RuntimeMethod_var);
|
|
if ((((int32_t)L_14) < ((int32_t)L_16)))
|
|
{
|
|
goto IL_0004;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:108>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 33179
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DecalEntityIndexer_Clear_mB2F145DD64704090E05D89AA285089FEEF780132 (DecalEntityIndexer_t884A1F60E13512A2DE8CEC24635D2B3BE3FD3544* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Clear_m522A510644863A65AB5D00B85D6D20F27E8868FF_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Queue_1_Clear_mF9C62216146F40E17E678C66BDFD0672A6A2BFA1_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:112>
|
|
List_1_t218CEA415E5769B47AB34C68D264977822ECAD17* L_0 = __this->___m_Entities;
|
|
NullCheck(L_0);
|
|
List_1_Clear_m522A510644863A65AB5D00B85D6D20F27E8868FF_inline(L_0, List_1_Clear_m522A510644863A65AB5D00B85D6D20F27E8868FF_RuntimeMethod_var);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:113>
|
|
Queue_1_tCA24E420CB13C6411AEFC3ECE9E62219F7937A1E* L_1 = __this->___m_FreeIndices;
|
|
NullCheck(L_1);
|
|
Queue_1_Clear_mF9C62216146F40E17E678C66BDFD0672A6A2BFA1(L_1, Queue_1_Clear_mF9C62216146F40E17E678C66BDFD0672A6A2BFA1_RuntimeMethod_var);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:114>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 33180
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DecalEntityIndexer__ctor_mD6DF01884095A1C87EDD8B19D701808CB5F4C350 (DecalEntityIndexer_t884A1F60E13512A2DE8CEC24635D2B3BE3FD3544* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1__ctor_m85ABB9DABC756112634E3DAA683DB6B932717F89_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_t218CEA415E5769B47AB34C68D264977822ECAD17_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Queue_1__ctor_mCFD83A65B216389290AEF3479047C9FBD933BF5D_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Queue_1_tCA24E420CB13C6411AEFC3ECE9E62219F7937A1E_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:19>
|
|
List_1_t218CEA415E5769B47AB34C68D264977822ECAD17* L_0 = (List_1_t218CEA415E5769B47AB34C68D264977822ECAD17*)il2cpp_codegen_object_new(List_1_t218CEA415E5769B47AB34C68D264977822ECAD17_il2cpp_TypeInfo_var);
|
|
List_1__ctor_m85ABB9DABC756112634E3DAA683DB6B932717F89(L_0, List_1__ctor_m85ABB9DABC756112634E3DAA683DB6B932717F89_RuntimeMethod_var);
|
|
__this->___m_Entities = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_Entities), (void*)L_0);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:20>
|
|
Queue_1_tCA24E420CB13C6411AEFC3ECE9E62219F7937A1E* L_1 = (Queue_1_tCA24E420CB13C6411AEFC3ECE9E62219F7937A1E*)il2cpp_codegen_object_new(Queue_1_tCA24E420CB13C6411AEFC3ECE9E62219F7937A1E_il2cpp_TypeInfo_var);
|
|
Queue_1__ctor_mCFD83A65B216389290AEF3479047C9FBD933BF5D(L_1, Queue_1__ctor_mCFD83A65B216389290AEF3479047C9FBD933BF5D_RuntimeMethod_var);
|
|
__this->___m_FreeIndices = L_1;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_FreeIndices), (void*)L_1);
|
|
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
|
|
return;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// Method Definition Index: 33181
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DecalEntityChunk_Push_mAD536DA725C8D7FC79CEFC2718AB937ACEC38DF2 (DecalEntityChunk_t2CDCBFA35711DA074631D26572EF9755A3AD740C* __this, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:135>
|
|
int32_t L_0;
|
|
L_0 = DecalChunk_get_count_mEF67D584A3FF77C4A87A916D5F464D91D47C4B17_inline(__this, NULL);
|
|
V_0 = L_0;
|
|
int32_t L_1 = V_0;
|
|
DecalChunk_set_count_m55DFD6DAB9893215E6FB8E81AB00257C21488EC8_inline(__this, ((int32_t)il2cpp_codegen_add(L_1, 1)), NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:136>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 33182
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DecalEntityChunk_RemoveAtSwapBack_m7E2630F9084ABC86CE23E9D10A8834AB4B538706 (DecalEntityChunk_t2CDCBFA35711DA074631D26572EF9755A3AD740C* __this, int32_t ___0_entityIndex, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DecalChunk_RemoveAtSwapBack_TisDecalEntity_t8CAF09C65939503449C4138ADCDC4907196293FD_m36119187CF415D833FDD62E726BC5A1101C68EFB_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DecalChunk_RemoveAtSwapBack_TisDecalProjector_tE7CEBAABFEF36162FD325321C1F94173CEFEDF64_mE9432E8937742F4166543B7E2D8E7867C9751BAA_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int32_t V_0 = 0;
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:140>
|
|
NativeArray_1_t83F02282C33BAD818D67110F7760483208880311* L_0 = (NativeArray_1_t83F02282C33BAD818D67110F7760483208880311*)(&__this->___decalEntities);
|
|
int32_t L_1 = ___0_entityIndex;
|
|
int32_t L_2;
|
|
L_2 = DecalChunk_get_count_mEF67D584A3FF77C4A87A916D5F464D91D47C4B17_inline(__this, NULL);
|
|
DecalChunk_RemoveAtSwapBack_TisDecalEntity_t8CAF09C65939503449C4138ADCDC4907196293FD_m36119187CF415D833FDD62E726BC5A1101C68EFB(__this, L_0, L_1, L_2, DecalChunk_RemoveAtSwapBack_TisDecalEntity_t8CAF09C65939503449C4138ADCDC4907196293FD_m36119187CF415D833FDD62E726BC5A1101C68EFB_RuntimeMethod_var);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:141>
|
|
DecalProjectorU5BU5D_t4DB89E5586C0FD4200DA223C0ADAFD3D66BF21F3** L_3 = (DecalProjectorU5BU5D_t4DB89E5586C0FD4200DA223C0ADAFD3D66BF21F3**)(&__this->___decalProjectors);
|
|
int32_t L_4 = ___0_entityIndex;
|
|
int32_t L_5;
|
|
L_5 = DecalChunk_get_count_mEF67D584A3FF77C4A87A916D5F464D91D47C4B17_inline(__this, NULL);
|
|
DecalChunk_RemoveAtSwapBack_TisDecalProjector_tE7CEBAABFEF36162FD325321C1F94173CEFEDF64_mE9432E8937742F4166543B7E2D8E7867C9751BAA(__this, L_3, L_4, L_5, DecalChunk_RemoveAtSwapBack_TisDecalProjector_tE7CEBAABFEF36162FD325321C1F94173CEFEDF64_mE9432E8937742F4166543B7E2D8E7867C9751BAA_RuntimeMethod_var);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:142>
|
|
TransformAccessArray_t104EDE5BB3DC7E294332BB1D2AA508CAEDEE83D4* L_6 = (TransformAccessArray_t104EDE5BB3DC7E294332BB1D2AA508CAEDEE83D4*)(&__this->___transformAccessArray);
|
|
int32_t L_7 = ___0_entityIndex;
|
|
TransformAccessArray_RemoveAtSwapBack_m20FDDF2B47CD9A3778D4B59AD6598DCF9D985776(L_6, L_7, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:143>
|
|
int32_t L_8;
|
|
L_8 = DecalChunk_get_count_mEF67D584A3FF77C4A87A916D5F464D91D47C4B17_inline(__this, NULL);
|
|
V_0 = L_8;
|
|
int32_t L_9 = V_0;
|
|
DecalChunk_set_count_m55DFD6DAB9893215E6FB8E81AB00257C21488EC8_inline(__this, ((int32_t)il2cpp_codegen_subtract(L_9, 1)), NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:144>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 33183
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DecalEntityChunk_SetCapacity_mD7878C80FD751B9A4A9EDEA20DC479AC059CE22A (DecalEntityChunk_t2CDCBFA35711DA074631D26572EF9755A3AD740C* __this, int32_t ___0_newCapacity, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ArrayExtensions_ResizeArray_TisDecalEntity_t8CAF09C65939503449C4138ADCDC4907196293FD_m48C0117B395C3815A44062256EA8529C46D36025_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ArrayExtensions_ResizeArray_TisDecalProjector_tE7CEBAABFEF36162FD325321C1F94173CEFEDF64_mB5978910DC5DE32AA46F24E4EB057779F4801878_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:148>
|
|
NativeArray_1_t83F02282C33BAD818D67110F7760483208880311* L_0 = (NativeArray_1_t83F02282C33BAD818D67110F7760483208880311*)(&__this->___decalEntities);
|
|
int32_t L_1 = ___0_newCapacity;
|
|
ArrayExtensions_ResizeArray_TisDecalEntity_t8CAF09C65939503449C4138ADCDC4907196293FD_m48C0117B395C3815A44062256EA8529C46D36025(L_0, L_1, ArrayExtensions_ResizeArray_TisDecalEntity_t8CAF09C65939503449C4138ADCDC4907196293FD_m48C0117B395C3815A44062256EA8529C46D36025_RuntimeMethod_var);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:149>
|
|
TransformAccessArray_t104EDE5BB3DC7E294332BB1D2AA508CAEDEE83D4* L_2 = (TransformAccessArray_t104EDE5BB3DC7E294332BB1D2AA508CAEDEE83D4*)(&__this->___transformAccessArray);
|
|
DecalProjectorU5BU5D_t4DB89E5586C0FD4200DA223C0ADAFD3D66BF21F3* L_3 = __this->___decalProjectors;
|
|
int32_t L_4 = ___0_newCapacity;
|
|
DecalChunk_ResizeNativeArray_m9652651457AB96782FBF7D08ADFF217768611E9C(__this, L_2, L_3, L_4, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:150>
|
|
DecalProjectorU5BU5D_t4DB89E5586C0FD4200DA223C0ADAFD3D66BF21F3** L_5 = (DecalProjectorU5BU5D_t4DB89E5586C0FD4200DA223C0ADAFD3D66BF21F3**)(&__this->___decalProjectors);
|
|
int32_t L_6 = ___0_newCapacity;
|
|
ArrayExtensions_ResizeArray_TisDecalProjector_tE7CEBAABFEF36162FD325321C1F94173CEFEDF64_mB5978910DC5DE32AA46F24E4EB057779F4801878(L_5, L_6, ArrayExtensions_ResizeArray_TisDecalProjector_tE7CEBAABFEF36162FD325321C1F94173CEFEDF64_mB5978910DC5DE32AA46F24E4EB057779F4801878_RuntimeMethod_var);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:151>
|
|
int32_t L_7 = ___0_newCapacity;
|
|
DecalChunk_set_capacity_mB9107E4EB6FFDDEAD9D6DED6B83E65AC10E4E490_inline(__this, L_7, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:152>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 33184
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DecalEntityChunk_Dispose_mB391F902B6D64859670A5D20B4FD2F9EA99EA59C (DecalEntityChunk_t2CDCBFA35711DA074631D26572EF9755A3AD740C* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NativeArray_1_Dispose_m0032B76C31C760137D0DB03AFF0ADF68197AD3C3_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:156>
|
|
int32_t L_0;
|
|
L_0 = DecalChunk_get_capacity_m70E0A37FAAF474D0AC7277BCD11673777BA0C15A_inline(__this, NULL);
|
|
if (L_0)
|
|
{
|
|
goto IL_0009;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:157>
|
|
return;
|
|
}
|
|
|
|
IL_0009:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:159>
|
|
NativeArray_1_t83F02282C33BAD818D67110F7760483208880311* L_1 = (NativeArray_1_t83F02282C33BAD818D67110F7760483208880311*)(&__this->___decalEntities);
|
|
NativeArray_1_Dispose_m0032B76C31C760137D0DB03AFF0ADF68197AD3C3(L_1, NativeArray_1_Dispose_m0032B76C31C760137D0DB03AFF0ADF68197AD3C3_RuntimeMethod_var);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:160>
|
|
TransformAccessArray_t104EDE5BB3DC7E294332BB1D2AA508CAEDEE83D4* L_2 = (TransformAccessArray_t104EDE5BB3DC7E294332BB1D2AA508CAEDEE83D4*)(&__this->___transformAccessArray);
|
|
TransformAccessArray_Dispose_mC0775DCFFE41173544615D7031AC028D653C4186(L_2, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:161>
|
|
__this->___decalProjectors = (DecalProjectorU5BU5D_t4DB89E5586C0FD4200DA223C0ADAFD3D66BF21F3*)NULL;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___decalProjectors), (void*)(DecalProjectorU5BU5D_t4DB89E5586C0FD4200DA223C0ADAFD3D66BF21F3*)NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:162>
|
|
DecalChunk_set_count_m55DFD6DAB9893215E6FB8E81AB00257C21488EC8_inline(__this, 0, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:163>
|
|
DecalChunk_set_capacity_mB9107E4EB6FFDDEAD9D6DED6B83E65AC10E4E490_inline(__this, 0, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:164>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 33185
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DecalEntityChunk__ctor_m6FE8DC65A6B4D4D4607D00208D780F529AC4751D (DecalEntityChunk_t2CDCBFA35711DA074631D26572EF9755A3AD740C* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
DecalChunk__ctor_m948088C98FD016DE3F70B7312E3398BE8D9F1DF1(__this, NULL);
|
|
return;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// Method Definition Index: 33186
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Material_t18053F08F347D0DCA5E1140EC7EC4533DD8A14E3* DecalEntityManager_get_errorMaterial_mF7CE0C1E49520A1DA01F300E2896C63BBAEDD2A3 (DecalEntityManager_tDA689202786946588782A67EF3F0B0D9121C294A* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CoreUtils_tEE57AB2B0DAE9561F4954B08800A8F957850B038_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralA3DFDD1C75685F4BD136ACAF08E535626B718D2C);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:203>
|
|
Material_t18053F08F347D0DCA5E1140EC7EC4533DD8A14E3* L_0 = __this->___m_ErrorMaterial;
|
|
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
bool L_1;
|
|
L_1 = Object_op_Equality_mB6120F782D83091EF56A198FCEBCF066DB4A9605(L_0, (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C*)NULL, NULL);
|
|
if (!L_1)
|
|
{
|
|
goto IL_0023;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:204>
|
|
Shader_tADC867D36B7876EE22427FAA2CE485105F4EE692* L_2;
|
|
L_2 = Shader_Find_m183AA54F78320212DDEC811592F98456898A41C5(_stringLiteralA3DFDD1C75685F4BD136ACAF08E535626B718D2C, NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(CoreUtils_tEE57AB2B0DAE9561F4954B08800A8F957850B038_il2cpp_TypeInfo_var);
|
|
Material_t18053F08F347D0DCA5E1140EC7EC4533DD8A14E3* L_3;
|
|
L_3 = CoreUtils_CreateEngineMaterial_m81DECC0AF6901F95B5041A00ED588F5230546AD2(L_2, NULL);
|
|
__this->___m_ErrorMaterial = L_3;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_ErrorMaterial), (void*)L_3);
|
|
}
|
|
|
|
IL_0023:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:205>
|
|
Material_t18053F08F347D0DCA5E1140EC7EC4533DD8A14E3* L_4 = __this->___m_ErrorMaterial;
|
|
return L_4;
|
|
}
|
|
}
|
|
// Method Definition Index: 33187
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Mesh_t6D9C539763A09BC2B12AEAEF36F6DFFC98AE63D4* DecalEntityManager_get_decalProjectorMesh_m63E8D23353B8A5881EC5D5AE562FC8F3D234BD69 (DecalEntityManager_tDA689202786946588782A67EF3F0B0D9121C294A* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CoreUtils_tEE57AB2B0DAE9561F4954B08800A8F957850B038_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:214>
|
|
Mesh_t6D9C539763A09BC2B12AEAEF36F6DFFC98AE63D4* L_0 = __this->___m_DecalProjectorMesh;
|
|
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
bool L_1;
|
|
L_1 = Object_op_Equality_mB6120F782D83091EF56A198FCEBCF066DB4A9605(L_0, (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C*)NULL, NULL);
|
|
if (!L_1)
|
|
{
|
|
goto IL_0055;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:215>
|
|
Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3 L_2;
|
|
memset((&L_2), 0, sizeof(L_2));
|
|
Vector4__ctor_m96B2CD8B862B271F513AF0BDC2EABD58E4DBC813_inline((&L_2), (-0.5f), (-0.5f), (-0.5f), (1.0f), NULL);
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_3;
|
|
L_3 = Vector4_op_Implicit_m0217ADDC8CADDB93ACBABB17A50207698DAB0071_inline(L_2, NULL);
|
|
Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3 L_4;
|
|
memset((&L_4), 0, sizeof(L_4));
|
|
Vector4__ctor_m96B2CD8B862B271F513AF0BDC2EABD58E4DBC813_inline((&L_4), (0.5f), (0.5f), (0.5f), (1.0f), NULL);
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_5;
|
|
L_5 = Vector4_op_Implicit_m0217ADDC8CADDB93ACBABB17A50207698DAB0071_inline(L_4, NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(CoreUtils_tEE57AB2B0DAE9561F4954B08800A8F957850B038_il2cpp_TypeInfo_var);
|
|
Mesh_t6D9C539763A09BC2B12AEAEF36F6DFFC98AE63D4* L_6;
|
|
L_6 = CoreUtils_CreateCubeMesh_mB701A16899348266F6DDDEE36CC2E4EDC788A44B(L_3, L_5, NULL);
|
|
__this->___m_DecalProjectorMesh = L_6;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_DecalProjectorMesh), (void*)L_6);
|
|
}
|
|
|
|
IL_0055:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:216>
|
|
Mesh_t6D9C539763A09BC2B12AEAEF36F6DFFC98AE63D4* L_7 = __this->___m_DecalProjectorMesh;
|
|
return L_7;
|
|
}
|
|
}
|
|
// Method Definition Index: 33188
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DecalEntityManager__ctor_m7C3BC334BACCF412B5B69B45069F868E505F495E (DecalEntityManager_tDA689202786946588782A67EF3F0B0D9121C294A* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DecalEntityIndexer_t884A1F60E13512A2DE8CEC24635D2B3BE3FD3544_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2__ctor_mA563968253DE4672794228EC7E1F9BC19CAE0A93_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_t6EB10DF170874D02D43E115B0A1B93479CE3FF80_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1__ctor_m17F501B5A5C289ECE1B4F3D6EBF05DFA421433F8_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1__ctor_m1DAED5A8EFFF0E76240583B2476A0782F36ABA0E_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1__ctor_m44CF7D068C78C4031FE1623E6502FC9270D1630C_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1__ctor_m704CDA15CF76B2197F63CD15DB8F1A9B9F209E07_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1__ctor_mAA472708F75F42B710D5787D9B2FC033BA985640_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1__ctor_mE6E9C860C1BC22D7D9013215F7A81182FCD3BB1C_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_t1A9527CB44249AD17D081A2D7A468343FC2D0720_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_t2E25D2E682EF62FB0FC538A4C88B3D49616A03DC_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_t437E45D007C2D93DCB30DA30023CB2745EE095D0_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_t75FC6D059D696BAD77462D09FCDC98B4A7B7D3D4_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_tD8DB23A94A44626CAF7E9B5B4A949D0FDC7B27A7_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ProfilingSampler_t420D4672EDB44E0EF980B31ADFD9E5747200FECE_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral16107139481111914B09E898379B0EE5C9FCAE0C);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralCDEDD8CC39891270C6E5D2B049B03454E5D931E1);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralF76325BE0DA797C99DDBEF623D6F995D51B0B490);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:173>
|
|
List_1_t437E45D007C2D93DCB30DA30023CB2745EE095D0* L_0 = (List_1_t437E45D007C2D93DCB30DA30023CB2745EE095D0*)il2cpp_codegen_object_new(List_1_t437E45D007C2D93DCB30DA30023CB2745EE095D0_il2cpp_TypeInfo_var);
|
|
List_1__ctor_m1DAED5A8EFFF0E76240583B2476A0782F36ABA0E(L_0, List_1__ctor_m1DAED5A8EFFF0E76240583B2476A0782F36ABA0E_RuntimeMethod_var);
|
|
__this->___entityChunks = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___entityChunks), (void*)L_0);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:174>
|
|
List_1_t1A9527CB44249AD17D081A2D7A468343FC2D0720* L_1 = (List_1_t1A9527CB44249AD17D081A2D7A468343FC2D0720*)il2cpp_codegen_object_new(List_1_t1A9527CB44249AD17D081A2D7A468343FC2D0720_il2cpp_TypeInfo_var);
|
|
List_1__ctor_mE6E9C860C1BC22D7D9013215F7A81182FCD3BB1C(L_1, List_1__ctor_mE6E9C860C1BC22D7D9013215F7A81182FCD3BB1C_RuntimeMethod_var);
|
|
__this->___cachedChunks = L_1;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___cachedChunks), (void*)L_1);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:175>
|
|
List_1_t2E25D2E682EF62FB0FC538A4C88B3D49616A03DC* L_2 = (List_1_t2E25D2E682EF62FB0FC538A4C88B3D49616A03DC*)il2cpp_codegen_object_new(List_1_t2E25D2E682EF62FB0FC538A4C88B3D49616A03DC_il2cpp_TypeInfo_var);
|
|
List_1__ctor_m704CDA15CF76B2197F63CD15DB8F1A9B9F209E07(L_2, List_1__ctor_m704CDA15CF76B2197F63CD15DB8F1A9B9F209E07_RuntimeMethod_var);
|
|
__this->___culledChunks = L_2;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___culledChunks), (void*)L_2);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:176>
|
|
List_1_tD8DB23A94A44626CAF7E9B5B4A949D0FDC7B27A7* L_3 = (List_1_tD8DB23A94A44626CAF7E9B5B4A949D0FDC7B27A7*)il2cpp_codegen_object_new(List_1_tD8DB23A94A44626CAF7E9B5B4A949D0FDC7B27A7_il2cpp_TypeInfo_var);
|
|
List_1__ctor_mAA472708F75F42B710D5787D9B2FC033BA985640(L_3, List_1__ctor_mAA472708F75F42B710D5787D9B2FC033BA985640_RuntimeMethod_var);
|
|
__this->___drawCallChunks = L_3;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___drawCallChunks), (void*)L_3);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:183>
|
|
DecalEntityIndexer_t884A1F60E13512A2DE8CEC24635D2B3BE3FD3544* L_4 = (DecalEntityIndexer_t884A1F60E13512A2DE8CEC24635D2B3BE3FD3544*)il2cpp_codegen_object_new(DecalEntityIndexer_t884A1F60E13512A2DE8CEC24635D2B3BE3FD3544_il2cpp_TypeInfo_var);
|
|
DecalEntityIndexer__ctor_mD6DF01884095A1C87EDD8B19D701808CB5F4C350(L_4, NULL);
|
|
__this->___m_DecalEntityIndexer = L_4;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_DecalEntityIndexer), (void*)L_4);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:184>
|
|
Dictionary_2_t6EB10DF170874D02D43E115B0A1B93479CE3FF80* L_5 = (Dictionary_2_t6EB10DF170874D02D43E115B0A1B93479CE3FF80*)il2cpp_codegen_object_new(Dictionary_2_t6EB10DF170874D02D43E115B0A1B93479CE3FF80_il2cpp_TypeInfo_var);
|
|
Dictionary_2__ctor_mA563968253DE4672794228EC7E1F9BC19CAE0A93(L_5, Dictionary_2__ctor_mA563968253DE4672794228EC7E1F9BC19CAE0A93_RuntimeMethod_var);
|
|
__this->___m_MaterialToChunkIndex = L_5;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_MaterialToChunkIndex), (void*)L_5);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:195>
|
|
List_1_t75FC6D059D696BAD77462D09FCDC98B4A7B7D3D4* L_6 = (List_1_t75FC6D059D696BAD77462D09FCDC98B4A7B7D3D4*)il2cpp_codegen_object_new(List_1_t75FC6D059D696BAD77462D09FCDC98B4A7B7D3D4_il2cpp_TypeInfo_var);
|
|
List_1__ctor_m44CF7D068C78C4031FE1623E6502FC9270D1630C(L_6, List_1__ctor_m44CF7D068C78C4031FE1623E6502FC9270D1630C_RuntimeMethod_var);
|
|
__this->___m_CombinedChunks = L_6;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_CombinedChunks), (void*)L_6);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:196>
|
|
List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* L_7 = (List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73*)il2cpp_codegen_object_new(List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73_il2cpp_TypeInfo_var);
|
|
List_1__ctor_m17F501B5A5C289ECE1B4F3D6EBF05DFA421433F8(L_7, List_1__ctor_m17F501B5A5C289ECE1B4F3D6EBF05DFA421433F8_RuntimeMethod_var);
|
|
__this->___m_CombinedChunkRemmap = L_7;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_CombinedChunkRemmap), (void*)L_7);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:220>
|
|
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:222>
|
|
ProfilingSampler_t420D4672EDB44E0EF980B31ADFD9E5747200FECE* L_8 = (ProfilingSampler_t420D4672EDB44E0EF980B31ADFD9E5747200FECE*)il2cpp_codegen_object_new(ProfilingSampler_t420D4672EDB44E0EF980B31ADFD9E5747200FECE_il2cpp_TypeInfo_var);
|
|
ProfilingSampler__ctor_m26500989FCDB07FA33C9A3BB7F215CBD892F5BB7(L_8, _stringLiteral16107139481111914B09E898379B0EE5C9FCAE0C, NULL);
|
|
__this->___m_AddDecalSampler = L_8;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_AddDecalSampler), (void*)L_8);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:223>
|
|
ProfilingSampler_t420D4672EDB44E0EF980B31ADFD9E5747200FECE* L_9 = (ProfilingSampler_t420D4672EDB44E0EF980B31ADFD9E5747200FECE*)il2cpp_codegen_object_new(ProfilingSampler_t420D4672EDB44E0EF980B31ADFD9E5747200FECE_il2cpp_TypeInfo_var);
|
|
ProfilingSampler__ctor_m26500989FCDB07FA33C9A3BB7F215CBD892F5BB7(L_9, _stringLiteralF76325BE0DA797C99DDBEF623D6F995D51B0B490, NULL);
|
|
__this->___m_ResizeChunks = L_9;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_ResizeChunks), (void*)L_9);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:224>
|
|
ProfilingSampler_t420D4672EDB44E0EF980B31ADFD9E5747200FECE* L_10 = (ProfilingSampler_t420D4672EDB44E0EF980B31ADFD9E5747200FECE*)il2cpp_codegen_object_new(ProfilingSampler_t420D4672EDB44E0EF980B31ADFD9E5747200FECE_il2cpp_TypeInfo_var);
|
|
ProfilingSampler__ctor_m26500989FCDB07FA33C9A3BB7F215CBD892F5BB7(L_10, _stringLiteralCDEDD8CC39891270C6E5D2B049B03454E5D931E1, NULL);
|
|
__this->___m_SortChunks = L_10;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_SortChunks), (void*)L_10);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:225>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 33189
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DecalEntityManager_IsValid_m3230B3D6F55B890FBA70B880A83FCE3BCB04AB6F (DecalEntityManager_tDA689202786946588782A67EF3F0B0D9121C294A* __this, DecalEntity_t8CAF09C65939503449C4138ADCDC4907196293FD ___0_decalEntity, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:229>
|
|
DecalEntityIndexer_t884A1F60E13512A2DE8CEC24635D2B3BE3FD3544* L_0 = __this->___m_DecalEntityIndexer;
|
|
DecalEntity_t8CAF09C65939503449C4138ADCDC4907196293FD L_1 = ___0_decalEntity;
|
|
NullCheck(L_0);
|
|
bool L_2;
|
|
L_2 = DecalEntityIndexer_IsValid_m435987501A9563EFB838C9D79D9681C3FD642A5D(L_0, L_1, NULL);
|
|
return L_2;
|
|
}
|
|
}
|
|
// Method Definition Index: 33190
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DecalEntity_t8CAF09C65939503449C4138ADCDC4907196293FD DecalEntityManager_CreateDecalEntity_mA41B0AF15E30EB901C2ED0488CDFBF57B6771BC0 (DecalEntityManager_tDA689202786946588782A67EF3F0B0D9121C294A* __this, DecalProjector_tE7CEBAABFEF36162FD325321C1F94173CEFEDF64* ___0_decalProjector, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Item_m1678465F50522CE2FAF1BB8EA6969B91268E5FA3_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Item_m4AA84FB449EDD461A47D02E7C9ED3EF72D48A44E_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Item_mF1A0B8107AFE027BCC67DA021B857B6495FA1A90_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Item_mFCF8BC94A0C7B3A51A1FC623D4F3335994152975_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
Material_t18053F08F347D0DCA5E1140EC7EC4533DD8A14E3* V_0 = NULL;
|
|
ProfilingScope_t57898BA31E8EF8F083EF84E0DA2737AC61CBC5BD V_1;
|
|
memset((&V_1), 0, sizeof(V_1));
|
|
int32_t V_2 = 0;
|
|
int32_t V_3 = 0;
|
|
DecalEntity_t8CAF09C65939503449C4138ADCDC4907196293FD V_4;
|
|
memset((&V_4), 0, sizeof(V_4));
|
|
DecalEntityChunk_t2CDCBFA35711DA074631D26572EF9755A3AD740C* V_5 = NULL;
|
|
DecalCachedChunk_tDEF493C8A3A1F442BDEC1794BDDA0996B32DCACE* V_6 = NULL;
|
|
DecalCulledChunk_tFD4472F0ADDD173C7B13E8B0529983E745F12ED3* V_7 = NULL;
|
|
DecalDrawCallChunk_tBD0491A1B0B7D19DF01A5C9EDE0A40CBEDBF7A3A* V_8 = NULL;
|
|
ProfilingScope_t57898BA31E8EF8F083EF84E0DA2737AC61CBC5BD V_9;
|
|
memset((&V_9), 0, sizeof(V_9));
|
|
int32_t V_10 = 0;
|
|
DecalEntity_t8CAF09C65939503449C4138ADCDC4907196293FD V_11;
|
|
memset((&V_11), 0, sizeof(V_11));
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:234>
|
|
DecalProjector_tE7CEBAABFEF36162FD325321C1F94173CEFEDF64* L_0 = ___0_decalProjector;
|
|
NullCheck(L_0);
|
|
Material_t18053F08F347D0DCA5E1140EC7EC4533DD8A14E3* L_1;
|
|
L_1 = DecalProjector_get_material_m7B4C2B869C8E062AFF5519DDB9BD954DB5163C77_inline(L_0, NULL);
|
|
V_0 = L_1;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:235>
|
|
Material_t18053F08F347D0DCA5E1140EC7EC4533DD8A14E3* L_2 = V_0;
|
|
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
bool L_3;
|
|
L_3 = Object_op_Equality_mB6120F782D83091EF56A198FCEBCF066DB4A9605(L_2, (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C*)NULL, NULL);
|
|
if (!L_3)
|
|
{
|
|
goto IL_0017;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:236>
|
|
Material_t18053F08F347D0DCA5E1140EC7EC4533DD8A14E3* L_4;
|
|
L_4 = DecalEntityManager_get_errorMaterial_mF7CE0C1E49520A1DA01F300E2896C63BBAEDD2A3(__this, NULL);
|
|
V_0 = L_4;
|
|
}
|
|
|
|
IL_0017:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:238>
|
|
ProfilingSampler_t420D4672EDB44E0EF980B31ADFD9E5747200FECE* L_5 = __this->___m_AddDecalSampler;
|
|
ProfilingScope__ctor_m4B73587A2295443A73B64DDD3D484D8EAECC0D65((&V_1), L_5, NULL);
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_016f:
|
|
{
|
|
ProfilingScope_Dispose_m4231A2ACA1F8E345BB0078310A9F7601704C8BE4((&V_1), NULL);
|
|
return;
|
|
}
|
|
});
|
|
try
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:240>
|
|
Material_t18053F08F347D0DCA5E1140EC7EC4533DD8A14E3* L_6 = V_0;
|
|
int32_t L_7;
|
|
L_7 = DecalEntityManager_CreateChunkIndex_m6DE42494DDDD8A7DAEB03212B507A86C3C64E06F(__this, L_6, NULL);
|
|
V_2 = L_7;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:241>
|
|
List_1_t437E45D007C2D93DCB30DA30023CB2745EE095D0* L_8 = __this->___entityChunks;
|
|
int32_t L_9 = V_2;
|
|
NullCheck(L_8);
|
|
DecalEntityChunk_t2CDCBFA35711DA074631D26572EF9755A3AD740C* L_10;
|
|
L_10 = List_1_get_Item_mFCF8BC94A0C7B3A51A1FC623D4F3335994152975(L_8, L_9, List_1_get_Item_mFCF8BC94A0C7B3A51A1FC623D4F3335994152975_RuntimeMethod_var);
|
|
NullCheck(L_10);
|
|
int32_t L_11;
|
|
L_11 = DecalChunk_get_count_mEF67D584A3FF77C4A87A916D5F464D91D47C4B17_inline(L_10, NULL);
|
|
V_3 = L_11;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:243>
|
|
DecalEntityIndexer_t884A1F60E13512A2DE8CEC24635D2B3BE3FD3544* L_12 = __this->___m_DecalEntityIndexer;
|
|
int32_t L_13 = V_3;
|
|
int32_t L_14 = V_2;
|
|
NullCheck(L_12);
|
|
DecalEntity_t8CAF09C65939503449C4138ADCDC4907196293FD L_15;
|
|
L_15 = DecalEntityIndexer_CreateDecalEntity_m002875F9D20F7172B5CB77641FCC7C87261B58F7(L_12, L_13, L_14, NULL);
|
|
V_4 = L_15;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:245>
|
|
List_1_t437E45D007C2D93DCB30DA30023CB2745EE095D0* L_16 = __this->___entityChunks;
|
|
int32_t L_17 = V_2;
|
|
NullCheck(L_16);
|
|
DecalEntityChunk_t2CDCBFA35711DA074631D26572EF9755A3AD740C* L_18;
|
|
L_18 = List_1_get_Item_mFCF8BC94A0C7B3A51A1FC623D4F3335994152975(L_16, L_17, List_1_get_Item_mFCF8BC94A0C7B3A51A1FC623D4F3335994152975_RuntimeMethod_var);
|
|
V_5 = L_18;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:246>
|
|
List_1_t1A9527CB44249AD17D081A2D7A468343FC2D0720* L_19 = __this->___cachedChunks;
|
|
int32_t L_20 = V_2;
|
|
NullCheck(L_19);
|
|
DecalCachedChunk_tDEF493C8A3A1F442BDEC1794BDDA0996B32DCACE* L_21;
|
|
L_21 = List_1_get_Item_mF1A0B8107AFE027BCC67DA021B857B6495FA1A90(L_19, L_20, List_1_get_Item_mF1A0B8107AFE027BCC67DA021B857B6495FA1A90_RuntimeMethod_var);
|
|
V_6 = L_21;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:247>
|
|
List_1_t2E25D2E682EF62FB0FC538A4C88B3D49616A03DC* L_22 = __this->___culledChunks;
|
|
int32_t L_23 = V_2;
|
|
NullCheck(L_22);
|
|
DecalCulledChunk_tFD4472F0ADDD173C7B13E8B0529983E745F12ED3* L_24;
|
|
L_24 = List_1_get_Item_m1678465F50522CE2FAF1BB8EA6969B91268E5FA3(L_22, L_23, List_1_get_Item_m1678465F50522CE2FAF1BB8EA6969B91268E5FA3_RuntimeMethod_var);
|
|
V_7 = L_24;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:248>
|
|
List_1_tD8DB23A94A44626CAF7E9B5B4A949D0FDC7B27A7* L_25 = __this->___drawCallChunks;
|
|
int32_t L_26 = V_2;
|
|
NullCheck(L_25);
|
|
DecalDrawCallChunk_tBD0491A1B0B7D19DF01A5C9EDE0A40CBEDBF7A3A* L_27;
|
|
L_27 = List_1_get_Item_m4AA84FB449EDD461A47D02E7C9ED3EF72D48A44E(L_25, L_26, List_1_get_Item_m4AA84FB449EDD461A47D02E7C9ED3EF72D48A44E_RuntimeMethod_var);
|
|
V_8 = L_27;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:251>
|
|
List_1_t437E45D007C2D93DCB30DA30023CB2745EE095D0* L_28 = __this->___entityChunks;
|
|
int32_t L_29 = V_2;
|
|
NullCheck(L_28);
|
|
DecalEntityChunk_t2CDCBFA35711DA074631D26572EF9755A3AD740C* L_30;
|
|
L_30 = List_1_get_Item_mFCF8BC94A0C7B3A51A1FC623D4F3335994152975(L_28, L_29, List_1_get_Item_mFCF8BC94A0C7B3A51A1FC623D4F3335994152975_RuntimeMethod_var);
|
|
NullCheck(L_30);
|
|
int32_t L_31;
|
|
L_31 = DecalChunk_get_capacity_m70E0A37FAAF474D0AC7277BCD11673777BA0C15A_inline(L_30, NULL);
|
|
List_1_t437E45D007C2D93DCB30DA30023CB2745EE095D0* L_32 = __this->___entityChunks;
|
|
int32_t L_33 = V_2;
|
|
NullCheck(L_32);
|
|
DecalEntityChunk_t2CDCBFA35711DA074631D26572EF9755A3AD740C* L_34;
|
|
L_34 = List_1_get_Item_mFCF8BC94A0C7B3A51A1FC623D4F3335994152975(L_32, L_33, List_1_get_Item_mFCF8BC94A0C7B3A51A1FC623D4F3335994152975_RuntimeMethod_var);
|
|
NullCheck(L_34);
|
|
int32_t L_35;
|
|
L_35 = DecalChunk_get_count_mEF67D584A3FF77C4A87A916D5F464D91D47C4B17_inline(L_34, NULL);
|
|
if ((!(((uint32_t)L_31) == ((uint32_t)L_35))))
|
|
{
|
|
goto IL_0119_1;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:253>
|
|
ProfilingSampler_t420D4672EDB44E0EF980B31ADFD9E5747200FECE* L_36 = __this->___m_ResizeChunks;
|
|
ProfilingScope_t57898BA31E8EF8F083EF84E0DA2737AC61CBC5BD L_37;
|
|
memset((&L_37), 0, sizeof(L_37));
|
|
ProfilingScope__ctor_m4B73587A2295443A73B64DDD3D484D8EAECC0D65((&L_37), L_36, NULL);
|
|
V_9 = L_37;
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_010b_1:
|
|
{
|
|
ProfilingScope_Dispose_m4231A2ACA1F8E345BB0078310A9F7601704C8BE4((&V_9), NULL);
|
|
return;
|
|
}
|
|
});
|
|
try
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:255>
|
|
List_1_t437E45D007C2D93DCB30DA30023CB2745EE095D0* L_38 = __this->___entityChunks;
|
|
int32_t L_39 = V_2;
|
|
NullCheck(L_38);
|
|
DecalEntityChunk_t2CDCBFA35711DA074631D26572EF9755A3AD740C* L_40;
|
|
L_40 = List_1_get_Item_mFCF8BC94A0C7B3A51A1FC623D4F3335994152975(L_38, L_39, List_1_get_Item_mFCF8BC94A0C7B3A51A1FC623D4F3335994152975_RuntimeMethod_var);
|
|
NullCheck(L_40);
|
|
int32_t L_41;
|
|
L_41 = DecalChunk_get_capacity_m70E0A37FAAF474D0AC7277BCD11673777BA0C15A_inline(L_40, NULL);
|
|
List_1_t437E45D007C2D93DCB30DA30023CB2745EE095D0* L_42 = __this->___entityChunks;
|
|
int32_t L_43 = V_2;
|
|
NullCheck(L_42);
|
|
DecalEntityChunk_t2CDCBFA35711DA074631D26572EF9755A3AD740C* L_44;
|
|
L_44 = List_1_get_Item_mFCF8BC94A0C7B3A51A1FC623D4F3335994152975(L_42, L_43, List_1_get_Item_mFCF8BC94A0C7B3A51A1FC623D4F3335994152975_RuntimeMethod_var);
|
|
NullCheck(L_44);
|
|
int32_t L_45;
|
|
L_45 = DecalChunk_get_capacity_m70E0A37FAAF474D0AC7277BCD11673777BA0C15A_inline(L_44, NULL);
|
|
V_10 = ((int32_t)il2cpp_codegen_add(L_41, L_45));
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:256>
|
|
int32_t L_46 = V_10;
|
|
int32_t L_47;
|
|
L_47 = math_max_m9083201D37A8ED0157B127B5878D9B7F3A2A40BE_inline(8, L_46, NULL);
|
|
V_10 = L_47;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:258>
|
|
DecalEntityChunk_t2CDCBFA35711DA074631D26572EF9755A3AD740C* L_48 = V_5;
|
|
int32_t L_49 = V_10;
|
|
NullCheck(L_48);
|
|
VirtualActionInvoker1< int32_t >::Invoke(7, L_48, L_49);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:259>
|
|
DecalCachedChunk_tDEF493C8A3A1F442BDEC1794BDDA0996B32DCACE* L_50 = V_6;
|
|
int32_t L_51 = V_10;
|
|
NullCheck(L_50);
|
|
VirtualActionInvoker1< int32_t >::Invoke(7, L_50, L_51);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:260>
|
|
DecalCulledChunk_tFD4472F0ADDD173C7B13E8B0529983E745F12ED3* L_52 = V_7;
|
|
int32_t L_53 = V_10;
|
|
NullCheck(L_52);
|
|
VirtualActionInvoker1< int32_t >::Invoke(7, L_52, L_53);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:261>
|
|
DecalDrawCallChunk_tBD0491A1B0B7D19DF01A5C9EDE0A40CBEDBF7A3A* L_54 = V_8;
|
|
int32_t L_55 = V_10;
|
|
NullCheck(L_54);
|
|
VirtualActionInvoker1< int32_t >::Invoke(7, L_54, L_55);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:262>
|
|
goto IL_0119_1;
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_0119_1:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:265>
|
|
DecalEntityChunk_t2CDCBFA35711DA074631D26572EF9755A3AD740C* L_56 = V_5;
|
|
NullCheck(L_56);
|
|
VirtualActionInvoker0::Invoke(5, L_56);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:266>
|
|
DecalCachedChunk_tDEF493C8A3A1F442BDEC1794BDDA0996B32DCACE* L_57 = V_6;
|
|
NullCheck(L_57);
|
|
VirtualActionInvoker0::Invoke(5, L_57);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:267>
|
|
DecalCulledChunk_tFD4472F0ADDD173C7B13E8B0529983E745F12ED3* L_58 = V_7;
|
|
NullCheck(L_58);
|
|
VirtualActionInvoker0::Invoke(5, L_58);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:268>
|
|
DecalDrawCallChunk_tBD0491A1B0B7D19DF01A5C9EDE0A40CBEDBF7A3A* L_59 = V_8;
|
|
NullCheck(L_59);
|
|
VirtualActionInvoker0::Invoke(5, L_59);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:270>
|
|
DecalEntityChunk_t2CDCBFA35711DA074631D26572EF9755A3AD740C* L_60 = V_5;
|
|
NullCheck(L_60);
|
|
DecalProjectorU5BU5D_t4DB89E5586C0FD4200DA223C0ADAFD3D66BF21F3* L_61 = L_60->___decalProjectors;
|
|
int32_t L_62 = V_3;
|
|
DecalProjector_tE7CEBAABFEF36162FD325321C1F94173CEFEDF64* L_63 = ___0_decalProjector;
|
|
NullCheck(L_61);
|
|
ArrayElementTypeCheck (L_61, L_63);
|
|
(L_61)->SetAt(static_cast<il2cpp_array_size_t>(L_62), (DecalProjector_tE7CEBAABFEF36162FD325321C1F94173CEFEDF64*)L_63);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:271>
|
|
DecalEntityChunk_t2CDCBFA35711DA074631D26572EF9755A3AD740C* L_64 = V_5;
|
|
NullCheck(L_64);
|
|
NativeArray_1_t83F02282C33BAD818D67110F7760483208880311* L_65 = (NativeArray_1_t83F02282C33BAD818D67110F7760483208880311*)(&L_64->___decalEntities);
|
|
int32_t L_66 = V_3;
|
|
DecalEntity_t8CAF09C65939503449C4138ADCDC4907196293FD L_67 = V_4;
|
|
IL2CPP_NATIVEARRAY_SET_ITEM(DecalEntity_t8CAF09C65939503449C4138ADCDC4907196293FD, (L_65)->___m_Buffer, L_66, (L_67));
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:272>
|
|
DecalEntityChunk_t2CDCBFA35711DA074631D26572EF9755A3AD740C* L_68 = V_5;
|
|
NullCheck(L_68);
|
|
TransformAccessArray_t104EDE5BB3DC7E294332BB1D2AA508CAEDEE83D4* L_69 = (TransformAccessArray_t104EDE5BB3DC7E294332BB1D2AA508CAEDEE83D4*)(&L_68->___transformAccessArray);
|
|
DecalProjector_tE7CEBAABFEF36162FD325321C1F94173CEFEDF64* L_70 = ___0_decalProjector;
|
|
NullCheck(L_70);
|
|
Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1* L_71;
|
|
L_71 = Component_get_transform_m2919A1D81931E6932C7F06D4C2F0AB8DDA9A5371(L_70, NULL);
|
|
TransformAccessArray_Add_mC1B41F75FE0CD6AAB77186F6EF7A41E790BDE336(L_69, L_71, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:274>
|
|
DecalEntity_t8CAF09C65939503449C4138ADCDC4907196293FD L_72 = V_4;
|
|
DecalProjector_tE7CEBAABFEF36162FD325321C1F94173CEFEDF64* L_73 = ___0_decalProjector;
|
|
DecalEntityManager_UpdateDecalEntityData_mADA2777065215D61F2FB0CA51F5A91700547DB28(__this, L_72, L_73, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:276>
|
|
DecalEntity_t8CAF09C65939503449C4138ADCDC4907196293FD L_74 = V_4;
|
|
V_11 = L_74;
|
|
goto IL_017d;
|
|
}
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_017d:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:278>
|
|
DecalEntity_t8CAF09C65939503449C4138ADCDC4907196293FD L_75 = V_11;
|
|
return L_75;
|
|
}
|
|
}
|
|
// Method Definition Index: 33191
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t DecalEntityManager_CreateChunkIndex_m6DE42494DDDD8A7DAEB03212B507A86C3C64E06F (DecalEntityManager_tDA689202786946588782A67EF3F0B0D9121C294A* __this, Material_t18053F08F347D0DCA5E1140EC7EC4533DD8A14E3* ___0_material, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DecalCachedChunk_tDEF493C8A3A1F442BDEC1794BDDA0996B32DCACE_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DecalCulledChunk_tFD4472F0ADDD173C7B13E8B0529983E745F12ED3_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DecalDrawCallChunk_tBD0491A1B0B7D19DF01A5C9EDE0A40CBEDBF7A3A_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DecalDrawSystem_t87ECA1A8D2D9C3A73A12F81D8CCA0F79029C0BFE_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DecalEntityChunk_t2CDCBFA35711DA074631D26572EF9755A3AD740C_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_Add_mEF2E83E7D7A51D9598E8771D187138AF3CE614A6_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_TryGetValue_mFFE573FB3A9A6382F9B1D723AC935F8839F1DA26_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Add_m0248A96C5334E9A93E6994B7780478BCD994EA3D_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Add_m53400F87C60C102F372B41825F43DDAA9544F2B7_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Add_m60880A8D0548B9F2CA00A3C88432EF80A6D754FA_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Add_m8495D908D03C140D97C2E99FAE15F6B98C2B3BA1_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Add_m8FAAE99193D3A7C3DBF38A647493E8C1652C74F0_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Add_mBA5DCA355F0405A43E019DA085DA702A7F08B632_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&MaterialPropertyBlock_t2308669579033A857EFE6E4831909F638B27411D_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Matrix4x4U5BU5D_t9C51C93425FABC022B506D2DB3A5FA70F9752C4D_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NativeArray_1__ctor_mB7BB23924A114599D399A5EC6C00B2B6407CF66D_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral91E548F3EBD1A7D7C5EDCC1906D95D22C2F225B4);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralA2C0A63DB753DB0FF0426699143F23CBFDD9C372);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int32_t V_0 = 0;
|
|
MaterialPropertyBlock_t2308669579033A857EFE6E4831909F638B27411D* V_1 = NULL;
|
|
CombinedChunks_tCFB3356163B9F9B0E31E0B194E9B415F83340ED9 V_2;
|
|
memset((&V_2), 0, sizeof(V_2));
|
|
int32_t V_3 = 0;
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:282>
|
|
Dictionary_2_t6EB10DF170874D02D43E115B0A1B93479CE3FF80* L_0 = __this->___m_MaterialToChunkIndex;
|
|
Material_t18053F08F347D0DCA5E1140EC7EC4533DD8A14E3* L_1 = ___0_material;
|
|
NullCheck(L_0);
|
|
bool L_2;
|
|
L_2 = Dictionary_2_TryGetValue_mFFE573FB3A9A6382F9B1D723AC935F8839F1DA26(L_0, L_1, (&V_0), Dictionary_2_TryGetValue_mFFE573FB3A9A6382F9B1D723AC935F8839F1DA26_RuntimeMethod_var);
|
|
if (L_2)
|
|
{
|
|
goto IL_00e3;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:284>
|
|
MaterialPropertyBlock_t2308669579033A857EFE6E4831909F638B27411D* L_3 = (MaterialPropertyBlock_t2308669579033A857EFE6E4831909F638B27411D*)il2cpp_codegen_object_new(MaterialPropertyBlock_t2308669579033A857EFE6E4831909F638B27411D_il2cpp_TypeInfo_var);
|
|
MaterialPropertyBlock__ctor_m14C3432585F7BB65028BCD64A0FD6607A1B490FB(L_3, NULL);
|
|
V_1 = L_3;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:288>
|
|
MaterialPropertyBlock_t2308669579033A857EFE6E4831909F638B27411D* L_4 = V_1;
|
|
il2cpp_codegen_runtime_class_init_inline(DecalDrawSystem_t87ECA1A8D2D9C3A73A12F81D8CCA0F79029C0BFE_il2cpp_TypeInfo_var);
|
|
uint32_t L_5 = ((DecalDrawSystem_t87ECA1A8D2D9C3A73A12F81D8CCA0F79029C0BFE_StaticFields*)il2cpp_codegen_static_fields_for(DecalDrawSystem_t87ECA1A8D2D9C3A73A12F81D8CCA0F79029C0BFE_il2cpp_TypeInfo_var))->___MaxBatchSize;
|
|
Matrix4x4U5BU5D_t9C51C93425FABC022B506D2DB3A5FA70F9752C4D* L_6 = (Matrix4x4U5BU5D_t9C51C93425FABC022B506D2DB3A5FA70F9752C4D*)(Matrix4x4U5BU5D_t9C51C93425FABC022B506D2DB3A5FA70F9752C4D*)SZArrayNew(Matrix4x4U5BU5D_t9C51C93425FABC022B506D2DB3A5FA70F9752C4D_il2cpp_TypeInfo_var, (uint32_t)L_5);
|
|
NullCheck(L_4);
|
|
MaterialPropertyBlock_SetMatrixArray_m804373A3E7B1D31A4ACD522186ADAD4EF91F93DB(L_4, _stringLiteralA2C0A63DB753DB0FF0426699143F23CBFDD9C372, L_6, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:289>
|
|
MaterialPropertyBlock_t2308669579033A857EFE6E4831909F638B27411D* L_7 = V_1;
|
|
uint32_t L_8 = ((DecalDrawSystem_t87ECA1A8D2D9C3A73A12F81D8CCA0F79029C0BFE_StaticFields*)il2cpp_codegen_static_fields_for(DecalDrawSystem_t87ECA1A8D2D9C3A73A12F81D8CCA0F79029C0BFE_il2cpp_TypeInfo_var))->___MaxBatchSize;
|
|
SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C* L_9 = (SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C*)(SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C*)SZArrayNew(SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C_il2cpp_TypeInfo_var, (uint32_t)L_8);
|
|
NullCheck(L_7);
|
|
MaterialPropertyBlock_SetFloatArray_mB5CC5932A09B2DA4FD9F8F9021C6229AC77FC314(L_7, _stringLiteral91E548F3EBD1A7D7C5EDCC1906D95D22C2F225B4, L_9, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:291>
|
|
List_1_t437E45D007C2D93DCB30DA30023CB2745EE095D0* L_10 = __this->___entityChunks;
|
|
DecalEntityChunk_t2CDCBFA35711DA074631D26572EF9755A3AD740C* L_11 = (DecalEntityChunk_t2CDCBFA35711DA074631D26572EF9755A3AD740C*)il2cpp_codegen_object_new(DecalEntityChunk_t2CDCBFA35711DA074631D26572EF9755A3AD740C_il2cpp_TypeInfo_var);
|
|
DecalEntityChunk__ctor_m6FE8DC65A6B4D4D4607D00208D780F529AC4751D(L_11, NULL);
|
|
DecalEntityChunk_t2CDCBFA35711DA074631D26572EF9755A3AD740C* L_12 = L_11;
|
|
Material_t18053F08F347D0DCA5E1140EC7EC4533DD8A14E3* L_13 = ___0_material;
|
|
NullCheck(L_12);
|
|
L_12->___material = L_13;
|
|
Il2CppCodeGenWriteBarrier((void**)(&L_12->___material), (void*)L_13);
|
|
NullCheck(L_10);
|
|
List_1_Add_mBA5DCA355F0405A43E019DA085DA702A7F08B632_inline(L_10, L_12, List_1_Add_mBA5DCA355F0405A43E019DA085DA702A7F08B632_RuntimeMethod_var);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:292>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:293>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:294>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:295>
|
|
List_1_t1A9527CB44249AD17D081A2D7A468343FC2D0720* L_14 = __this->___cachedChunks;
|
|
DecalCachedChunk_tDEF493C8A3A1F442BDEC1794BDDA0996B32DCACE* L_15 = (DecalCachedChunk_tDEF493C8A3A1F442BDEC1794BDDA0996B32DCACE*)il2cpp_codegen_object_new(DecalCachedChunk_tDEF493C8A3A1F442BDEC1794BDDA0996B32DCACE_il2cpp_TypeInfo_var);
|
|
DecalCachedChunk__ctor_m5097692CFA636D32F3B34A371320A115DA4E6371(L_15, NULL);
|
|
DecalCachedChunk_tDEF493C8A3A1F442BDEC1794BDDA0996B32DCACE* L_16 = L_15;
|
|
MaterialPropertyBlock_t2308669579033A857EFE6E4831909F638B27411D* L_17 = V_1;
|
|
NullCheck(L_16);
|
|
L_16->___propertyBlock = L_17;
|
|
Il2CppCodeGenWriteBarrier((void**)(&L_16->___propertyBlock), (void*)L_17);
|
|
NullCheck(L_14);
|
|
List_1_Add_m8495D908D03C140D97C2E99FAE15F6B98C2B3BA1_inline(L_14, L_16, List_1_Add_m8495D908D03C140D97C2E99FAE15F6B98C2B3BA1_RuntimeMethod_var);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:297>
|
|
List_1_t2E25D2E682EF62FB0FC538A4C88B3D49616A03DC* L_18 = __this->___culledChunks;
|
|
DecalCulledChunk_tFD4472F0ADDD173C7B13E8B0529983E745F12ED3* L_19 = (DecalCulledChunk_tFD4472F0ADDD173C7B13E8B0529983E745F12ED3*)il2cpp_codegen_object_new(DecalCulledChunk_tFD4472F0ADDD173C7B13E8B0529983E745F12ED3_il2cpp_TypeInfo_var);
|
|
DecalCulledChunk__ctor_mCACB1A26B40BDE5EC3D4026081B50CAFCDFB721F(L_19, NULL);
|
|
NullCheck(L_18);
|
|
List_1_Add_m60880A8D0548B9F2CA00A3C88432EF80A6D754FA_inline(L_18, L_19, List_1_Add_m60880A8D0548B9F2CA00A3C88432EF80A6D754FA_RuntimeMethod_var);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:298>
|
|
List_1_tD8DB23A94A44626CAF7E9B5B4A949D0FDC7B27A7* L_20 = __this->___drawCallChunks;
|
|
DecalDrawCallChunk_tBD0491A1B0B7D19DF01A5C9EDE0A40CBEDBF7A3A* L_21 = (DecalDrawCallChunk_tBD0491A1B0B7D19DF01A5C9EDE0A40CBEDBF7A3A*)il2cpp_codegen_object_new(DecalDrawCallChunk_tBD0491A1B0B7D19DF01A5C9EDE0A40CBEDBF7A3A_il2cpp_TypeInfo_var);
|
|
DecalDrawCallChunk__ctor_m9CBE14EC12931439E7C3B41B1C40A086139AA7EE(L_21, NULL);
|
|
DecalDrawCallChunk_tBD0491A1B0B7D19DF01A5C9EDE0A40CBEDBF7A3A* L_22 = L_21;
|
|
NativeArray_1_tA833EB7E3E1C9AF82C37976AD964B8D4BAC38B2C L_23;
|
|
memset((&L_23), 0, sizeof(L_23));
|
|
NativeArray_1__ctor_mB7BB23924A114599D399A5EC6C00B2B6407CF66D((&L_23), 1, 4, 1, NativeArray_1__ctor_mB7BB23924A114599D399A5EC6C00B2B6407CF66D_RuntimeMethod_var);
|
|
NullCheck(L_22);
|
|
L_22->___subCallCounts = L_23;
|
|
NullCheck(L_20);
|
|
List_1_Add_m8FAAE99193D3A7C3DBF38A647493E8C1652C74F0_inline(L_20, L_22, List_1_Add_m8FAAE99193D3A7C3DBF38A647493E8C1652C74F0_RuntimeMethod_var);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:300>
|
|
List_1_t75FC6D059D696BAD77462D09FCDC98B4A7B7D3D4* L_24 = __this->___m_CombinedChunks;
|
|
il2cpp_codegen_initobj((&V_2), sizeof(CombinedChunks_tCFB3356163B9F9B0E31E0B194E9B415F83340ED9));
|
|
CombinedChunks_tCFB3356163B9F9B0E31E0B194E9B415F83340ED9 L_25 = V_2;
|
|
NullCheck(L_24);
|
|
List_1_Add_m53400F87C60C102F372B41825F43DDAA9544F2B7_inline(L_24, L_25, List_1_Add_m53400F87C60C102F372B41825F43DDAA9544F2B7_RuntimeMethod_var);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:301>
|
|
List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* L_26 = __this->___m_CombinedChunkRemmap;
|
|
NullCheck(L_26);
|
|
List_1_Add_m0248A96C5334E9A93E6994B7780478BCD994EA3D_inline(L_26, 0, List_1_Add_m0248A96C5334E9A93E6994B7780478BCD994EA3D_RuntimeMethod_var);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:303>
|
|
Dictionary_2_t6EB10DF170874D02D43E115B0A1B93479CE3FF80* L_27 = __this->___m_MaterialToChunkIndex;
|
|
Material_t18053F08F347D0DCA5E1140EC7EC4533DD8A14E3* L_28 = ___0_material;
|
|
int32_t L_29 = __this->___chunkCount;
|
|
NullCheck(L_27);
|
|
Dictionary_2_Add_mEF2E83E7D7A51D9598E8771D187138AF3CE614A6(L_27, L_28, L_29, Dictionary_2_Add_mEF2E83E7D7A51D9598E8771D187138AF3CE614A6_RuntimeMethod_var);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:304>
|
|
int32_t L_30 = __this->___chunkCount;
|
|
V_3 = L_30;
|
|
int32_t L_31 = V_3;
|
|
__this->___chunkCount = ((int32_t)il2cpp_codegen_add(L_31, 1));
|
|
int32_t L_32 = V_3;
|
|
return L_32;
|
|
}
|
|
|
|
IL_00e3:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:307>
|
|
int32_t L_33 = V_0;
|
|
return L_33;
|
|
}
|
|
}
|
|
// Method Definition Index: 33192
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DecalEntityManager_UpdateAllDecalEntitiesData_m8B73D354BD0302A1C684B1FF43ED9E7BAB3AF465 (DecalEntityManager_tDA689202786946588782A67EF3F0B0D9121C294A* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_Dispose_mE4288E0F12F7086A80CD684C0A0F919FD1DDACEC_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_MoveNext_m80A18F75B452473B49786B16A4654E2C139E8290_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_get_Current_m4EFC47E612DA489655B9850C2E9BA6B0CF084CB4_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_GetEnumerator_m23C9E22BBF7C218F713D09604F58A0FEEB1FCA9C_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
Enumerator_tF5DDF189C56DD8FE4A5FC3E8C99C6F401F606A5A V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
DecalEntityChunk_t2CDCBFA35711DA074631D26572EF9755A3AD740C* V_1 = NULL;
|
|
int32_t V_2 = 0;
|
|
DecalProjector_tE7CEBAABFEF36162FD325321C1F94173CEFEDF64* V_3 = NULL;
|
|
DecalEntity_t8CAF09C65939503449C4138ADCDC4907196293FD V_4;
|
|
memset((&V_4), 0, sizeof(V_4));
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:312>
|
|
List_1_t437E45D007C2D93DCB30DA30023CB2745EE095D0* L_0 = __this->___entityChunks;
|
|
NullCheck(L_0);
|
|
Enumerator_tF5DDF189C56DD8FE4A5FC3E8C99C6F401F606A5A L_1;
|
|
L_1 = List_1_GetEnumerator_m23C9E22BBF7C218F713D09604F58A0FEEB1FCA9C(L_0, List_1_GetEnumerator_m23C9E22BBF7C218F713D09604F58A0FEEB1FCA9C_RuntimeMethod_var);
|
|
V_0 = L_1;
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_0065:
|
|
{
|
|
Enumerator_Dispose_mE4288E0F12F7086A80CD684C0A0F919FD1DDACEC((&V_0), Enumerator_Dispose_mE4288E0F12F7086A80CD684C0A0F919FD1DDACEC_RuntimeMethod_var);
|
|
return;
|
|
}
|
|
});
|
|
try
|
|
{
|
|
{
|
|
goto IL_005a_1;
|
|
}
|
|
|
|
IL_000e_1:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:312>
|
|
DecalEntityChunk_t2CDCBFA35711DA074631D26572EF9755A3AD740C* L_2;
|
|
L_2 = Enumerator_get_Current_m4EFC47E612DA489655B9850C2E9BA6B0CF084CB4_inline((&V_0), Enumerator_get_Current_m4EFC47E612DA489655B9850C2E9BA6B0CF084CB4_RuntimeMethod_var);
|
|
V_1 = L_2;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:314>
|
|
V_2 = 0;
|
|
goto IL_0051_1;
|
|
}
|
|
|
|
IL_001a_1:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:316>
|
|
DecalEntityChunk_t2CDCBFA35711DA074631D26572EF9755A3AD740C* L_3 = V_1;
|
|
NullCheck(L_3);
|
|
DecalProjectorU5BU5D_t4DB89E5586C0FD4200DA223C0ADAFD3D66BF21F3* L_4 = L_3->___decalProjectors;
|
|
int32_t L_5 = V_2;
|
|
NullCheck(L_4);
|
|
int32_t L_6 = L_5;
|
|
DecalProjector_tE7CEBAABFEF36162FD325321C1F94173CEFEDF64* L_7 = (L_4)->GetAt(static_cast<il2cpp_array_size_t>(L_6));
|
|
V_3 = L_7;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:317>
|
|
DecalProjector_tE7CEBAABFEF36162FD325321C1F94173CEFEDF64* L_8 = V_3;
|
|
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
bool L_9;
|
|
L_9 = Object_op_Equality_mB6120F782D83091EF56A198FCEBCF066DB4A9605(L_8, (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C*)NULL, NULL);
|
|
if (L_9)
|
|
{
|
|
goto IL_004d_1;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:320>
|
|
DecalEntityChunk_t2CDCBFA35711DA074631D26572EF9755A3AD740C* L_10 = V_1;
|
|
NullCheck(L_10);
|
|
NativeArray_1_t83F02282C33BAD818D67110F7760483208880311* L_11 = (NativeArray_1_t83F02282C33BAD818D67110F7760483208880311*)(&L_10->___decalEntities);
|
|
int32_t L_12 = V_2;
|
|
DecalEntity_t8CAF09C65939503449C4138ADCDC4907196293FD L_13;
|
|
L_13 = IL2CPP_NATIVEARRAY_GET_ITEM(DecalEntity_t8CAF09C65939503449C4138ADCDC4907196293FD, (L_11)->___m_Buffer, L_12);
|
|
V_4 = L_13;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:321>
|
|
DecalEntity_t8CAF09C65939503449C4138ADCDC4907196293FD L_14 = V_4;
|
|
bool L_15;
|
|
L_15 = DecalEntityManager_IsValid_m3230B3D6F55B890FBA70B880A83FCE3BCB04AB6F(__this, L_14, NULL);
|
|
if (!L_15)
|
|
{
|
|
goto IL_004d_1;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:324>
|
|
DecalEntity_t8CAF09C65939503449C4138ADCDC4907196293FD L_16 = V_4;
|
|
DecalProjector_tE7CEBAABFEF36162FD325321C1F94173CEFEDF64* L_17 = V_3;
|
|
DecalEntityManager_UpdateDecalEntityData_mADA2777065215D61F2FB0CA51F5A91700547DB28(__this, L_16, L_17, NULL);
|
|
}
|
|
|
|
IL_004d_1:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:314>
|
|
int32_t L_18 = V_2;
|
|
V_2 = ((int32_t)il2cpp_codegen_add(L_18, 1));
|
|
}
|
|
|
|
IL_0051_1:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:314>
|
|
int32_t L_19 = V_2;
|
|
DecalEntityChunk_t2CDCBFA35711DA074631D26572EF9755A3AD740C* L_20 = V_1;
|
|
NullCheck(L_20);
|
|
int32_t L_21;
|
|
L_21 = DecalChunk_get_count_mEF67D584A3FF77C4A87A916D5F464D91D47C4B17_inline(L_20, NULL);
|
|
if ((((int32_t)L_19) < ((int32_t)L_21)))
|
|
{
|
|
goto IL_001a_1;
|
|
}
|
|
}
|
|
|
|
IL_005a_1:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:312>
|
|
bool L_22;
|
|
L_22 = Enumerator_MoveNext_m80A18F75B452473B49786B16A4654E2C139E8290((&V_0), Enumerator_MoveNext_m80A18F75B452473B49786B16A4654E2C139E8290_RuntimeMethod_var);
|
|
if (L_22)
|
|
{
|
|
goto IL_000e_1;
|
|
}
|
|
}
|
|
{
|
|
goto IL_0073;
|
|
}
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_0073:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:327>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 33193
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DecalEntityManager_UpdateDecalEntityData_mADA2777065215D61F2FB0CA51F5A91700547DB28 (DecalEntityManager_tDA689202786946588782A67EF3F0B0D9121C294A* __this, DecalEntity_t8CAF09C65939503449C4138ADCDC4907196293FD ___0_decalEntity, DecalProjector_tE7CEBAABFEF36162FD325321C1F94173CEFEDF64* ___1_decalProjector, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Item_mF1A0B8107AFE027BCC67DA021B857B6495FA1A90_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RenderingLayerMask_tD73B9FC1A65A937F18E56833FC83BF89C2B085A1_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int32_t V_0 = 0;
|
|
int32_t V_1 = 0;
|
|
DecalCachedChunk_tDEF493C8A3A1F442BDEC1794BDDA0996B32DCACE* V_2 = NULL;
|
|
float V_3 = 0.0f;
|
|
float V_4 = 0.0f;
|
|
float V_5 = 0.0f;
|
|
float V_6 = 0.0f;
|
|
Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3 V_7;
|
|
memset((&V_7), 0, sizeof(V_7));
|
|
int32_t V_8 = 0;
|
|
uint64_t V_9 = 0;
|
|
float V_10 = 0.0f;
|
|
float V_11 = 0.0f;
|
|
float V_12 = 0.0f;
|
|
float V_13 = 0.0f;
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:331>
|
|
DecalEntityIndexer_t884A1F60E13512A2DE8CEC24635D2B3BE3FD3544* L_0 = __this->___m_DecalEntityIndexer;
|
|
DecalEntity_t8CAF09C65939503449C4138ADCDC4907196293FD L_1 = ___0_decalEntity;
|
|
NullCheck(L_0);
|
|
DecalEntityItem_tE2209120E111E679725F7022B0C54DEC6783EA5D L_2;
|
|
L_2 = DecalEntityIndexer_GetItem_mBFB4C74136CF7C0D5F6760F8A02908675E231F6D(L_0, L_1, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:333>
|
|
DecalEntityItem_tE2209120E111E679725F7022B0C54DEC6783EA5D L_3 = L_2;
|
|
int32_t L_4 = L_3.___chunkIndex;
|
|
V_0 = L_4;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:334>
|
|
int32_t L_5 = L_3.___arrayIndex;
|
|
V_1 = L_5;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:336>
|
|
List_1_t1A9527CB44249AD17D081A2D7A468343FC2D0720* L_6 = __this->___cachedChunks;
|
|
int32_t L_7 = V_0;
|
|
NullCheck(L_6);
|
|
DecalCachedChunk_tDEF493C8A3A1F442BDEC1794BDDA0996B32DCACE* L_8;
|
|
L_8 = List_1_get_Item_mF1A0B8107AFE027BCC67DA021B857B6495FA1A90(L_6, L_7, List_1_get_Item_mF1A0B8107AFE027BCC67DA021B857B6495FA1A90_RuntimeMethod_var);
|
|
V_2 = L_8;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:338>
|
|
DecalCachedChunk_tDEF493C8A3A1F442BDEC1794BDDA0996B32DCACE* L_9 = V_2;
|
|
NullCheck(L_9);
|
|
NativeArray_1_t63326FF687E26631308829A9CDB0C51D523D4E9A* L_10 = (NativeArray_1_t63326FF687E26631308829A9CDB0C51D523D4E9A*)(&L_9->___sizeOffsets);
|
|
int32_t L_11 = V_1;
|
|
DecalProjector_tE7CEBAABFEF36162FD325321C1F94173CEFEDF64* L_12 = ___1_decalProjector;
|
|
NullCheck(L_12);
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_13;
|
|
L_13 = DecalProjector_get_decalOffset_m42B945918221551D1DD30FE80F335A707AE93C93(L_12, NULL);
|
|
Matrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6 L_14;
|
|
L_14 = Matrix4x4_Translate_mF3EDFC59C9E51DC0C0A483F6E44A4930D62E4091(L_13, NULL);
|
|
DecalProjector_tE7CEBAABFEF36162FD325321C1F94173CEFEDF64* L_15 = ___1_decalProjector;
|
|
NullCheck(L_15);
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_16;
|
|
L_16 = DecalProjector_get_decalSize_m897C18B439B795E0E979B808B91C1ACEBCC83867(L_15, NULL);
|
|
Matrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6 L_17;
|
|
L_17 = Matrix4x4_Scale_m95902D2A889FD6E7B04BBEAE6FAE5D6D8A88E642(L_16, NULL);
|
|
Matrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6 L_18;
|
|
L_18 = Matrix4x4_op_Multiply_m75E91775655DCA8DFC8EDE0AB787285BB3935162(L_14, L_17, NULL);
|
|
float4x4_t7EDD16F7F57DC7F61A6302535F7C19FB97915DF2 L_19;
|
|
L_19 = float4x4_op_Implicit_mCDD72C5454A8DAFB2A659484006D18D5979BE6AB(L_18, NULL);
|
|
IL2CPP_NATIVEARRAY_SET_ITEM(float4x4_t7EDD16F7F57DC7F61A6302535F7C19FB97915DF2, (L_10)->___m_Buffer, L_11, (L_19));
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:340>
|
|
DecalProjector_tE7CEBAABFEF36162FD325321C1F94173CEFEDF64* L_20 = ___1_decalProjector;
|
|
NullCheck(L_20);
|
|
float L_21;
|
|
L_21 = DecalProjector_get_drawDistance_mFD825C09FD3C99B01F33DBD057B180627010BE03_inline(L_20, NULL);
|
|
V_3 = L_21;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:341>
|
|
DecalProjector_tE7CEBAABFEF36162FD325321C1F94173CEFEDF64* L_22 = ___1_decalProjector;
|
|
NullCheck(L_22);
|
|
float L_23;
|
|
L_23 = DecalProjector_get_fadeScale_m0114135F3885A2FE9F94CB7D98C6A7595578C26C_inline(L_22, NULL);
|
|
V_4 = L_23;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:342>
|
|
DecalProjector_tE7CEBAABFEF36162FD325321C1F94173CEFEDF64* L_24 = ___1_decalProjector;
|
|
NullCheck(L_24);
|
|
float L_25;
|
|
L_25 = DecalProjector_get_startAngleFade_mD61F7D4B1D2B19EA3ADD8B2F53AF26963B058BB8_inline(L_24, NULL);
|
|
V_5 = L_25;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:343>
|
|
DecalProjector_tE7CEBAABFEF36162FD325321C1F94173CEFEDF64* L_26 = ___1_decalProjector;
|
|
NullCheck(L_26);
|
|
float L_27;
|
|
L_27 = DecalProjector_get_endAngleFade_m367D4FA628133F6020678EC43A4E93F60C9D038E_inline(L_26, NULL);
|
|
V_6 = L_27;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:344>
|
|
DecalProjector_tE7CEBAABFEF36162FD325321C1F94173CEFEDF64* L_28 = ___1_decalProjector;
|
|
NullCheck(L_28);
|
|
Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3 L_29;
|
|
L_29 = DecalProjector_get_uvScaleBias_m623FF505DD6AF3D2FF22922FBFC7FA8B3AF4788E(L_28, NULL);
|
|
V_7 = L_29;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:345>
|
|
DecalProjector_tE7CEBAABFEF36162FD325321C1F94173CEFEDF64* L_30 = ___1_decalProjector;
|
|
NullCheck(L_30);
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_31;
|
|
L_31 = Component_get_gameObject_m57AEFBB14DB39EC476F740BA000E170355DE691B(L_30, NULL);
|
|
NullCheck(L_31);
|
|
int32_t L_32;
|
|
L_32 = GameObject_get_layer_m108902B9C89E9F837CE06B9942AA42307450FEAF(L_31, NULL);
|
|
V_8 = L_32;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:346>
|
|
DecalProjector_tE7CEBAABFEF36162FD325321C1F94173CEFEDF64* L_33 = ___1_decalProjector;
|
|
NullCheck(L_33);
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_34;
|
|
L_34 = Component_get_gameObject_m57AEFBB14DB39EC476F740BA000E170355DE691B(L_33, NULL);
|
|
NullCheck(L_34);
|
|
uint64_t L_35;
|
|
L_35 = GameObject_get_sceneCullingMask_m278949639563C33453502982A92E5B127EA6DB87(L_34, NULL);
|
|
V_9 = L_35;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:347>
|
|
DecalProjector_tE7CEBAABFEF36162FD325321C1F94173CEFEDF64* L_36 = ___1_decalProjector;
|
|
NullCheck(L_36);
|
|
float L_37;
|
|
L_37 = DecalProjector_get_fadeFactor_m5C265D9A466D5C9F558846AEDDEDBC4B8D6C83CD_inline(L_36, NULL);
|
|
V_10 = L_37;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:349>
|
|
DecalCachedChunk_tDEF493C8A3A1F442BDEC1794BDDA0996B32DCACE* L_38 = V_2;
|
|
NullCheck(L_38);
|
|
NativeArray_1_t46D43179C2B71BAB34958401E08B5C5DA4488E9E* L_39 = (NativeArray_1_t46D43179C2B71BAB34958401E08B5C5DA4488E9E*)(&L_38->___drawDistances);
|
|
int32_t L_40 = V_1;
|
|
float L_41 = V_3;
|
|
float L_42 = V_4;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_43;
|
|
memset((&L_43), 0, sizeof(L_43));
|
|
Vector2__ctor_m9525B79969AFFE3254B303A40997A56DEEB6F548_inline((&L_43), L_41, L_42, NULL);
|
|
float2_t24AA5C0F612B0672315EDAFEC9D9E7F1C4A5B0BA L_44;
|
|
L_44 = float2_op_Implicit_m274CE0EFDC0FFD5168817614BF1A3699784DE02B(L_43, NULL);
|
|
IL2CPP_NATIVEARRAY_SET_ITEM(float2_t24AA5C0F612B0672315EDAFEC9D9E7F1C4A5B0BA, (L_39)->___m_Buffer, L_40, (L_44));
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:356>
|
|
float L_45 = V_5;
|
|
if ((!(((float)L_45) == ((float)(180.0f)))))
|
|
{
|
|
goto IL_00df;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:358>
|
|
DecalCachedChunk_tDEF493C8A3A1F442BDEC1794BDDA0996B32DCACE* L_46 = V_2;
|
|
NullCheck(L_46);
|
|
NativeArray_1_t46D43179C2B71BAB34958401E08B5C5DA4488E9E* L_47 = (NativeArray_1_t46D43179C2B71BAB34958401E08B5C5DA4488E9E*)(&L_46->___angleFades);
|
|
int32_t L_48 = V_1;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_49;
|
|
memset((&L_49), 0, sizeof(L_49));
|
|
Vector2__ctor_m9525B79969AFFE3254B303A40997A56DEEB6F548_inline((&L_49), (0.0f), (0.0f), NULL);
|
|
float2_t24AA5C0F612B0672315EDAFEC9D9E7F1C4A5B0BA L_50;
|
|
L_50 = float2_op_Implicit_m274CE0EFDC0FFD5168817614BF1A3699784DE02B(L_49, NULL);
|
|
IL2CPP_NATIVEARRAY_SET_ITEM(float2_t24AA5C0F612B0672315EDAFEC9D9E7F1C4A5B0BA, (L_47)->___m_Buffer, L_48, (L_50));
|
|
goto IL_0133;
|
|
}
|
|
|
|
IL_00df:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:362>
|
|
float L_51 = V_5;
|
|
V_11 = ((float)(L_51/(180.0f)));
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:363>
|
|
float L_52 = V_6;
|
|
V_12 = ((float)(L_52/(180.0f)));
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:364>
|
|
float L_53 = V_12;
|
|
float L_54 = V_11;
|
|
float L_55;
|
|
L_55 = Mathf_Max_mF5379E63D2BBAC76D090748695D833934F8AD051_inline((9.99999975E-05f), ((float)il2cpp_codegen_subtract(L_53, L_54)), NULL);
|
|
V_13 = L_55;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:365>
|
|
DecalCachedChunk_tDEF493C8A3A1F442BDEC1794BDDA0996B32DCACE* L_56 = V_2;
|
|
NullCheck(L_56);
|
|
NativeArray_1_t46D43179C2B71BAB34958401E08B5C5DA4488E9E* L_57 = (NativeArray_1_t46D43179C2B71BAB34958401E08B5C5DA4488E9E*)(&L_56->___angleFades);
|
|
int32_t L_58 = V_1;
|
|
float L_59 = V_11;
|
|
float L_60 = V_13;
|
|
float L_61 = V_13;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_62;
|
|
memset((&L_62), 0, sizeof(L_62));
|
|
Vector2__ctor_m9525B79969AFFE3254B303A40997A56DEEB6F548_inline((&L_62), ((float)il2cpp_codegen_subtract((1.0f), ((float)(((float)il2cpp_codegen_subtract((0.25f), L_59))/L_60)))), ((float)((-0.25f)/L_61)), NULL);
|
|
float2_t24AA5C0F612B0672315EDAFEC9D9E7F1C4A5B0BA L_63;
|
|
L_63 = float2_op_Implicit_m274CE0EFDC0FFD5168817614BF1A3699784DE02B(L_62, NULL);
|
|
IL2CPP_NATIVEARRAY_SET_ITEM(float2_t24AA5C0F612B0672315EDAFEC9D9E7F1C4A5B0BA, (L_57)->___m_Buffer, L_58, (L_63));
|
|
}
|
|
|
|
IL_0133:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:367>
|
|
DecalCachedChunk_tDEF493C8A3A1F442BDEC1794BDDA0996B32DCACE* L_64 = V_2;
|
|
NullCheck(L_64);
|
|
NativeArray_1_tB5EA234C6ABA1F626A4BEF4053D06783E15A3881* L_65 = (NativeArray_1_tB5EA234C6ABA1F626A4BEF4053D06783E15A3881*)(&L_64->___uvScaleBias);
|
|
int32_t L_66 = V_1;
|
|
Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3 L_67 = V_7;
|
|
float4_t89D9A294E7A79BD81BFBDD18654508532958555E L_68;
|
|
L_68 = float4_op_Implicit_m6D2091EB2CF6E0629A029A7BE9AD230F5F394CB2(L_67, NULL);
|
|
IL2CPP_NATIVEARRAY_SET_ITEM(float4_t89D9A294E7A79BD81BFBDD18654508532958555E, (L_65)->___m_Buffer, L_66, (L_68));
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:368>
|
|
DecalCachedChunk_tDEF493C8A3A1F442BDEC1794BDDA0996B32DCACE* L_69 = V_2;
|
|
NullCheck(L_69);
|
|
NativeArray_1_tA833EB7E3E1C9AF82C37976AD964B8D4BAC38B2C* L_70 = (NativeArray_1_tA833EB7E3E1C9AF82C37976AD964B8D4BAC38B2C*)(&L_69->___layerMasks);
|
|
int32_t L_71 = V_1;
|
|
int32_t L_72 = V_8;
|
|
IL2CPP_NATIVEARRAY_SET_ITEM(int32_t, (L_70)->___m_Buffer, L_71, (L_72));
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:369>
|
|
DecalCachedChunk_tDEF493C8A3A1F442BDEC1794BDDA0996B32DCACE* L_73 = V_2;
|
|
NullCheck(L_73);
|
|
NativeArray_1_t07975297AD7F7512193094A7C0703BA872EF7A7B* L_74 = (NativeArray_1_t07975297AD7F7512193094A7C0703BA872EF7A7B*)(&L_73->___sceneLayerMasks);
|
|
int32_t L_75 = V_1;
|
|
uint64_t L_76 = V_9;
|
|
IL2CPP_NATIVEARRAY_SET_ITEM(uint64_t, (L_74)->___m_Buffer, L_75, (L_76));
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:370>
|
|
DecalCachedChunk_tDEF493C8A3A1F442BDEC1794BDDA0996B32DCACE* L_77 = V_2;
|
|
NullCheck(L_77);
|
|
NativeArray_1_t3848EE4B6647317212A754634DE6DBC90B99FBEF* L_78 = (NativeArray_1_t3848EE4B6647317212A754634DE6DBC90B99FBEF*)(&L_77->___fadeFactors);
|
|
int32_t L_79 = V_1;
|
|
float L_80 = V_10;
|
|
IL2CPP_NATIVEARRAY_SET_ITEM(float, (L_78)->___m_Buffer, L_79, (L_80));
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:371>
|
|
DecalCachedChunk_tDEF493C8A3A1F442BDEC1794BDDA0996B32DCACE* L_81 = V_2;
|
|
NullCheck(L_81);
|
|
NativeArray_1_tB64676789FBC7DC3DA7BB2D7765883A285CA6065* L_82 = (NativeArray_1_tB64676789FBC7DC3DA7BB2D7765883A285CA6065*)(&L_81->___scaleModes);
|
|
int32_t L_83 = V_1;
|
|
DecalProjector_tE7CEBAABFEF36162FD325321C1F94173CEFEDF64* L_84 = ___1_decalProjector;
|
|
NullCheck(L_84);
|
|
int32_t L_85;
|
|
L_85 = DecalProjector_get_scaleMode_m18359D12B22161553CB46FCE13436565747E33D1_inline(L_84, NULL);
|
|
IL2CPP_NATIVEARRAY_SET_ITEM(int32_t, (L_82)->___m_Buffer, L_83, (L_85));
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:372>
|
|
DecalCachedChunk_tDEF493C8A3A1F442BDEC1794BDDA0996B32DCACE* L_86 = V_2;
|
|
NullCheck(L_86);
|
|
NativeArray_1_t453E3DEA4CC9F1056F24E417C3308C35174BC184* L_87 = (NativeArray_1_t453E3DEA4CC9F1056F24E417C3308C35174BC184*)(&L_86->___renderingLayerMasks);
|
|
int32_t L_88 = V_1;
|
|
DecalProjector_tE7CEBAABFEF36162FD325321C1F94173CEFEDF64* L_89 = ___1_decalProjector;
|
|
NullCheck(L_89);
|
|
RenderingLayerMask_tD73B9FC1A65A937F18E56833FC83BF89C2B085A1 L_90;
|
|
L_90 = DecalProjector_get_renderingLayerMask_mF62BD63ED4EB13B2DF450E199A29252E7DAA3D9D_inline(L_89, NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(RenderingLayerMask_tD73B9FC1A65A937F18E56833FC83BF89C2B085A1_il2cpp_TypeInfo_var);
|
|
uint32_t L_91;
|
|
L_91 = RenderingLayerMask_op_Implicit_m8A57803F29D06516B5DB48D099F2E32ACC6DA162(L_90, NULL);
|
|
uint32_t L_92;
|
|
L_92 = RenderingLayerUtils_ToValidRenderingLayers_m0A7058438D6132C39118BD06430A19B691ED1180(L_91, NULL);
|
|
IL2CPP_NATIVEARRAY_SET_ITEM(uint32_t, (L_87)->___m_Buffer, L_88, (L_92));
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:374>
|
|
DecalCachedChunk_tDEF493C8A3A1F442BDEC1794BDDA0996B32DCACE* L_93 = V_2;
|
|
NullCheck(L_93);
|
|
NativeArray_1_tEDE9DAD2CAE5954286BC0EF394A57ED0AC69FEE6* L_94 = (NativeArray_1_tEDE9DAD2CAE5954286BC0EF394A57ED0AC69FEE6*)(&L_93->___positions);
|
|
int32_t L_95 = V_1;
|
|
DecalProjector_tE7CEBAABFEF36162FD325321C1F94173CEFEDF64* L_96 = ___1_decalProjector;
|
|
NullCheck(L_96);
|
|
Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1* L_97;
|
|
L_97 = Component_get_transform_m2919A1D81931E6932C7F06D4C2F0AB8DDA9A5371(L_96, NULL);
|
|
NullCheck(L_97);
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_98;
|
|
L_98 = Transform_get_position_m69CD5FA214FDAE7BB701552943674846C220FDE1(L_97, NULL);
|
|
float3_t4AB5D88249ADB24F69FFD0793E8ED25E1CC3745E L_99;
|
|
L_99 = float3_op_Implicit_mE1831A3AC179B7EB3236F8202EC8DD5CE05376AB(L_98, NULL);
|
|
IL2CPP_NATIVEARRAY_SET_ITEM(float3_t4AB5D88249ADB24F69FFD0793E8ED25E1CC3745E, (L_94)->___m_Buffer, L_95, (L_99));
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:375>
|
|
DecalCachedChunk_tDEF493C8A3A1F442BDEC1794BDDA0996B32DCACE* L_100 = V_2;
|
|
NullCheck(L_100);
|
|
NativeArray_1_tE645174F30913B665DE45D85525F90B1F64E054A* L_101 = (NativeArray_1_tE645174F30913B665DE45D85525F90B1F64E054A*)(&L_100->___rotation);
|
|
int32_t L_102 = V_1;
|
|
DecalProjector_tE7CEBAABFEF36162FD325321C1F94173CEFEDF64* L_103 = ___1_decalProjector;
|
|
NullCheck(L_103);
|
|
Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1* L_104;
|
|
L_104 = Component_get_transform_m2919A1D81931E6932C7F06D4C2F0AB8DDA9A5371(L_103, NULL);
|
|
NullCheck(L_104);
|
|
Quaternion_tDA59F214EF07D7700B26E40E562F267AF7306974 L_105;
|
|
L_105 = Transform_get_rotation_m32AF40CA0D50C797DA639A696F8EAEC7524C179C(L_104, NULL);
|
|
quaternion_tD6BCBECAF088B9EBAE2345EC8534C7A1A4C910D4 L_106;
|
|
L_106 = quaternion_op_Implicit_m12C97CDC5FE642C53837F73E2F9B8761D530C502(L_105, NULL);
|
|
IL2CPP_NATIVEARRAY_SET_ITEM(quaternion_tD6BCBECAF088B9EBAE2345EC8534C7A1A4C910D4, (L_101)->___m_Buffer, L_102, (L_106));
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:376>
|
|
DecalCachedChunk_tDEF493C8A3A1F442BDEC1794BDDA0996B32DCACE* L_107 = V_2;
|
|
NullCheck(L_107);
|
|
NativeArray_1_tEDE9DAD2CAE5954286BC0EF394A57ED0AC69FEE6* L_108 = (NativeArray_1_tEDE9DAD2CAE5954286BC0EF394A57ED0AC69FEE6*)(&L_107->___scales);
|
|
int32_t L_109 = V_1;
|
|
DecalProjector_tE7CEBAABFEF36162FD325321C1F94173CEFEDF64* L_110 = ___1_decalProjector;
|
|
NullCheck(L_110);
|
|
Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1* L_111;
|
|
L_111 = Component_get_transform_m2919A1D81931E6932C7F06D4C2F0AB8DDA9A5371(L_110, NULL);
|
|
NullCheck(L_111);
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_112;
|
|
L_112 = Transform_get_lossyScale_mFF740DA4BE1489C6882CD2F3A37B7321176E5D07(L_111, NULL);
|
|
float3_t4AB5D88249ADB24F69FFD0793E8ED25E1CC3745E L_113;
|
|
L_113 = float3_op_Implicit_mE1831A3AC179B7EB3236F8202EC8DD5CE05376AB(L_112, NULL);
|
|
IL2CPP_NATIVEARRAY_SET_ITEM(float3_t4AB5D88249ADB24F69FFD0793E8ED25E1CC3745E, (L_108)->___m_Buffer, L_109, (L_113));
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:377>
|
|
DecalCachedChunk_tDEF493C8A3A1F442BDEC1794BDDA0996B32DCACE* L_114 = V_2;
|
|
NullCheck(L_114);
|
|
NativeArray_1_t107C57D0357BCF9956A60495CD8FAADDF1D26AFB* L_115 = (NativeArray_1_t107C57D0357BCF9956A60495CD8FAADDF1D26AFB*)(&L_114->___dirty);
|
|
int32_t L_116 = V_1;
|
|
IL2CPP_NATIVEARRAY_SET_ITEM(bool, (L_115)->___m_Buffer, L_116, ((bool)1));
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:378>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 33194
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DecalEntityManager_DestroyDecalEntity_mC807A733E2DD070B363DA2FF8D1EDCEF00D4018E (DecalEntityManager_tDA689202786946588782A67EF3F0B0D9121C294A* __this, DecalEntity_t8CAF09C65939503449C4138ADCDC4907196293FD ___0_decalEntity, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Item_m1678465F50522CE2FAF1BB8EA6969B91268E5FA3_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Item_m4AA84FB449EDD461A47D02E7C9ED3EF72D48A44E_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Item_mF1A0B8107AFE027BCC67DA021B857B6495FA1A90_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Item_mFCF8BC94A0C7B3A51A1FC623D4F3335994152975_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int32_t V_0 = 0;
|
|
int32_t V_1 = 0;
|
|
DecalEntityChunk_t2CDCBFA35711DA074631D26572EF9755A3AD740C* V_2 = NULL;
|
|
DecalCachedChunk_tDEF493C8A3A1F442BDEC1794BDDA0996B32DCACE* V_3 = NULL;
|
|
DecalCulledChunk_tFD4472F0ADDD173C7B13E8B0529983E745F12ED3* V_4 = NULL;
|
|
int32_t V_5 = 0;
|
|
DecalDrawCallChunk_tBD0491A1B0B7D19DF01A5C9EDE0A40CBEDBF7A3A* G_B4_0 = NULL;
|
|
DecalDrawCallChunk_tBD0491A1B0B7D19DF01A5C9EDE0A40CBEDBF7A3A* G_B3_0 = NULL;
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:382>
|
|
DecalEntityIndexer_t884A1F60E13512A2DE8CEC24635D2B3BE3FD3544* L_0 = __this->___m_DecalEntityIndexer;
|
|
DecalEntity_t8CAF09C65939503449C4138ADCDC4907196293FD L_1 = ___0_decalEntity;
|
|
NullCheck(L_0);
|
|
bool L_2;
|
|
L_2 = DecalEntityIndexer_IsValid_m435987501A9563EFB838C9D79D9681C3FD642A5D(L_0, L_1, NULL);
|
|
if (L_2)
|
|
{
|
|
goto IL_000f;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:383>
|
|
return;
|
|
}
|
|
|
|
IL_000f:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:385>
|
|
DecalEntityIndexer_t884A1F60E13512A2DE8CEC24635D2B3BE3FD3544* L_3 = __this->___m_DecalEntityIndexer;
|
|
DecalEntity_t8CAF09C65939503449C4138ADCDC4907196293FD L_4 = ___0_decalEntity;
|
|
NullCheck(L_3);
|
|
DecalEntityItem_tE2209120E111E679725F7022B0C54DEC6783EA5D L_5;
|
|
L_5 = DecalEntityIndexer_GetItem_mBFB4C74136CF7C0D5F6760F8A02908675E231F6D(L_3, L_4, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:386>
|
|
DecalEntityIndexer_t884A1F60E13512A2DE8CEC24635D2B3BE3FD3544* L_6 = __this->___m_DecalEntityIndexer;
|
|
DecalEntity_t8CAF09C65939503449C4138ADCDC4907196293FD L_7 = ___0_decalEntity;
|
|
NullCheck(L_6);
|
|
DecalEntityIndexer_DestroyDecalEntity_mF635D6BD83D30FC9AD186F99ED00842C8CE6B15E(L_6, L_7, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:388>
|
|
DecalEntityItem_tE2209120E111E679725F7022B0C54DEC6783EA5D L_8 = L_5;
|
|
int32_t L_9 = L_8.___chunkIndex;
|
|
V_0 = L_9;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:389>
|
|
int32_t L_10 = L_8.___arrayIndex;
|
|
V_1 = L_10;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:391>
|
|
List_1_t437E45D007C2D93DCB30DA30023CB2745EE095D0* L_11 = __this->___entityChunks;
|
|
int32_t L_12 = V_0;
|
|
NullCheck(L_11);
|
|
DecalEntityChunk_t2CDCBFA35711DA074631D26572EF9755A3AD740C* L_13;
|
|
L_13 = List_1_get_Item_mFCF8BC94A0C7B3A51A1FC623D4F3335994152975(L_11, L_12, List_1_get_Item_mFCF8BC94A0C7B3A51A1FC623D4F3335994152975_RuntimeMethod_var);
|
|
V_2 = L_13;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:392>
|
|
List_1_t1A9527CB44249AD17D081A2D7A468343FC2D0720* L_14 = __this->___cachedChunks;
|
|
int32_t L_15 = V_0;
|
|
NullCheck(L_14);
|
|
DecalCachedChunk_tDEF493C8A3A1F442BDEC1794BDDA0996B32DCACE* L_16;
|
|
L_16 = List_1_get_Item_mF1A0B8107AFE027BCC67DA021B857B6495FA1A90(L_14, L_15, List_1_get_Item_mF1A0B8107AFE027BCC67DA021B857B6495FA1A90_RuntimeMethod_var);
|
|
V_3 = L_16;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:393>
|
|
List_1_t2E25D2E682EF62FB0FC538A4C88B3D49616A03DC* L_17 = __this->___culledChunks;
|
|
int32_t L_18 = V_0;
|
|
NullCheck(L_17);
|
|
DecalCulledChunk_tFD4472F0ADDD173C7B13E8B0529983E745F12ED3* L_19;
|
|
L_19 = List_1_get_Item_m1678465F50522CE2FAF1BB8EA6969B91268E5FA3(L_17, L_18, List_1_get_Item_m1678465F50522CE2FAF1BB8EA6969B91268E5FA3_RuntimeMethod_var);
|
|
V_4 = L_19;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:394>
|
|
List_1_tD8DB23A94A44626CAF7E9B5B4A949D0FDC7B27A7* L_20 = __this->___drawCallChunks;
|
|
int32_t L_21 = V_0;
|
|
NullCheck(L_20);
|
|
DecalDrawCallChunk_tBD0491A1B0B7D19DF01A5C9EDE0A40CBEDBF7A3A* L_22;
|
|
L_22 = List_1_get_Item_m4AA84FB449EDD461A47D02E7C9ED3EF72D48A44E(L_20, L_21, List_1_get_Item_m4AA84FB449EDD461A47D02E7C9ED3EF72D48A44E_RuntimeMethod_var);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:396>
|
|
DecalEntityChunk_t2CDCBFA35711DA074631D26572EF9755A3AD740C* L_23 = V_2;
|
|
NullCheck(L_23);
|
|
int32_t L_24;
|
|
L_24 = DecalChunk_get_count_mEF67D584A3FF77C4A87A916D5F464D91D47C4B17_inline(L_23, NULL);
|
|
V_5 = ((int32_t)il2cpp_codegen_subtract(L_24, 1));
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:397>
|
|
int32_t L_25 = V_1;
|
|
int32_t L_26 = V_5;
|
|
if ((((int32_t)L_25) == ((int32_t)L_26)))
|
|
{
|
|
G_B4_0 = L_22;
|
|
goto IL_0090;
|
|
}
|
|
G_B3_0 = L_22;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:398>
|
|
DecalEntityIndexer_t884A1F60E13512A2DE8CEC24635D2B3BE3FD3544* L_27 = __this->___m_DecalEntityIndexer;
|
|
DecalEntityChunk_t2CDCBFA35711DA074631D26572EF9755A3AD740C* L_28 = V_2;
|
|
NullCheck(L_28);
|
|
NativeArray_1_t83F02282C33BAD818D67110F7760483208880311* L_29 = (NativeArray_1_t83F02282C33BAD818D67110F7760483208880311*)(&L_28->___decalEntities);
|
|
int32_t L_30 = V_5;
|
|
DecalEntity_t8CAF09C65939503449C4138ADCDC4907196293FD L_31;
|
|
L_31 = IL2CPP_NATIVEARRAY_GET_ITEM(DecalEntity_t8CAF09C65939503449C4138ADCDC4907196293FD, (L_29)->___m_Buffer, L_30);
|
|
int32_t L_32 = V_1;
|
|
NullCheck(L_27);
|
|
DecalEntityIndexer_UpdateIndex_m723421908B0F8C4354E125A10D657EC14119CAA7(L_27, L_31, L_32, NULL);
|
|
G_B4_0 = G_B3_0;
|
|
}
|
|
|
|
IL_0090:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:400>
|
|
DecalEntityChunk_t2CDCBFA35711DA074631D26572EF9755A3AD740C* L_33 = V_2;
|
|
int32_t L_34 = V_1;
|
|
NullCheck(L_33);
|
|
VirtualActionInvoker1< int32_t >::Invoke(6, L_33, L_34);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:401>
|
|
DecalCachedChunk_tDEF493C8A3A1F442BDEC1794BDDA0996B32DCACE* L_35 = V_3;
|
|
int32_t L_36 = V_1;
|
|
NullCheck(L_35);
|
|
VirtualActionInvoker1< int32_t >::Invoke(6, L_35, L_36);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:402>
|
|
DecalCulledChunk_tFD4472F0ADDD173C7B13E8B0529983E745F12ED3* L_37 = V_4;
|
|
int32_t L_38 = V_1;
|
|
NullCheck(L_37);
|
|
VirtualActionInvoker1< int32_t >::Invoke(6, L_37, L_38);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:403>
|
|
int32_t L_39 = V_1;
|
|
NullCheck(G_B4_0);
|
|
VirtualActionInvoker1< int32_t >::Invoke(6, G_B4_0, L_39);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:404>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 33195
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DecalEntityManager_Update_mDCE8CDF07E499154DFE7078175B0CB815D497B11 (DecalEntityManager_tDA689202786946588782A67EF3F0B0D9121C294A* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Comparison_1_t1D70AD681199BAE9A46BB890478D827A9BA04A36_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_Add_mEF2E83E7D7A51D9598E8771D187138AF3CE614A6_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_Clear_m2AC070D7EA40F018A5B2A6F94C75362212F74014_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_ContainsKey_mCFA7AF1835284648D44D1BF57A75C81683207D5E_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_RemoveRange_m67B6F69125A5394BC088ACBE2BC99E53792F3D84_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_RemoveRange_m822EDEFF9A41F5ECF6FF477BD098365A13889AF6_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_RemoveRange_m9FB32ECC157784E2F3A9499B6FDB818869D04C12_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_RemoveRange_mB2A135AC73DB3416988192AD3564E5F949C3CF9C_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_RemoveRange_mF49B2BF39FBBF329FD80C63D5117F74628384C4C_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Sort_m7D91ABCC3436181A92740FA30F58517E70C30EC2_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Item_m1678465F50522CE2FAF1BB8EA6969B91268E5FA3_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Item_m4AA84FB449EDD461A47D02E7C9ED3EF72D48A44E_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Item_m590DCDF63905DBC9AFD853145981546152F126A4_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Item_mF1A0B8107AFE027BCC67DA021B857B6495FA1A90_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Item_mFCF8BC94A0C7B3A51A1FC623D4F3335994152975_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_set_Item_m15D488D7D55AE426685D5C693FB2F2E98DD1CF19_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_set_Item_m6804E01E4F07D1876D51E76EE142AAD2625798AE_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_set_Item_m806D36B3667116780356A42019B45C63D5F7B367_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_set_Item_m85FB153F408B4FFDE64F242D3B10FF820A7D5137_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_set_Item_m95629806F31CF369D937590912E0B6A53FF7C587_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_set_Item_mA56E7E3B84B486552CEBAF1FFD6986FA5F724808_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec_U3CUpdateU3Eb__26_0_m87A64C173CD8369E00BCE92FE54C3F36E362C322_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec_t982F331B7EDFDBCE7D881BB6DF31BAC0023967CC_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
ProfilingScope_t57898BA31E8EF8F083EF84E0DA2737AC61CBC5BD V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
bool V_1 = false;
|
|
int32_t V_2 = 0;
|
|
int32_t V_3 = 0;
|
|
int32_t V_4 = 0;
|
|
CombinedChunks_tCFB3356163B9F9B0E31E0B194E9B415F83340ED9 V_5;
|
|
memset((&V_5), 0, sizeof(V_5));
|
|
int32_t V_6 = 0;
|
|
int32_t V_7 = 0;
|
|
CombinedChunks_tCFB3356163B9F9B0E31E0B194E9B415F83340ED9 V_8;
|
|
memset((&V_8), 0, sizeof(V_8));
|
|
JobHandle_t5DF5F99902FED3C801A81C05205CEA6CE039EF08 V_9;
|
|
memset((&V_9), 0, sizeof(V_9));
|
|
Comparison_1_t1D70AD681199BAE9A46BB890478D827A9BA04A36* G_B11_0 = NULL;
|
|
List_1_t75FC6D059D696BAD77462D09FCDC98B4A7B7D3D4* G_B11_1 = NULL;
|
|
Comparison_1_t1D70AD681199BAE9A46BB890478D827A9BA04A36* G_B10_0 = NULL;
|
|
List_1_t75FC6D059D696BAD77462D09FCDC98B4A7B7D3D4* G_B10_1 = NULL;
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:408>
|
|
ProfilingSampler_t420D4672EDB44E0EF980B31ADFD9E5747200FECE* L_0 = __this->___m_SortChunks;
|
|
ProfilingScope__ctor_m4B73587A2295443A73B64DDD3D484D8EAECC0D65((&V_0), L_0, NULL);
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_0370:
|
|
{
|
|
ProfilingScope_Dispose_m4231A2ACA1F8E345BB0078310A9F7601704C8BE4((&V_0), NULL);
|
|
return;
|
|
}
|
|
});
|
|
try
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:410>
|
|
V_3 = 0;
|
|
goto IL_0045_1;
|
|
}
|
|
|
|
IL_0011_1:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:412>
|
|
List_1_t437E45D007C2D93DCB30DA30023CB2745EE095D0* L_1 = __this->___entityChunks;
|
|
int32_t L_2 = V_3;
|
|
NullCheck(L_1);
|
|
DecalEntityChunk_t2CDCBFA35711DA074631D26572EF9755A3AD740C* L_3;
|
|
L_3 = List_1_get_Item_mFCF8BC94A0C7B3A51A1FC623D4F3335994152975(L_1, L_2, List_1_get_Item_mFCF8BC94A0C7B3A51A1FC623D4F3335994152975_RuntimeMethod_var);
|
|
NullCheck(L_3);
|
|
Material_t18053F08F347D0DCA5E1140EC7EC4533DD8A14E3* L_4 = L_3->___material;
|
|
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
bool L_5;
|
|
L_5 = Object_op_Equality_mB6120F782D83091EF56A198FCEBCF066DB4A9605(L_4, (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C*)NULL, NULL);
|
|
if (!L_5)
|
|
{
|
|
goto IL_0041_1;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:413>
|
|
List_1_t437E45D007C2D93DCB30DA30023CB2745EE095D0* L_6 = __this->___entityChunks;
|
|
int32_t L_7 = V_3;
|
|
NullCheck(L_6);
|
|
DecalEntityChunk_t2CDCBFA35711DA074631D26572EF9755A3AD740C* L_8;
|
|
L_8 = List_1_get_Item_mFCF8BC94A0C7B3A51A1FC623D4F3335994152975(L_6, L_7, List_1_get_Item_mFCF8BC94A0C7B3A51A1FC623D4F3335994152975_RuntimeMethod_var);
|
|
Material_t18053F08F347D0DCA5E1140EC7EC4533DD8A14E3* L_9;
|
|
L_9 = DecalEntityManager_get_errorMaterial_mF7CE0C1E49520A1DA01F300E2896C63BBAEDD2A3(__this, NULL);
|
|
NullCheck(L_8);
|
|
L_8->___material = L_9;
|
|
Il2CppCodeGenWriteBarrier((void**)(&L_8->___material), (void*)L_9);
|
|
}
|
|
|
|
IL_0041_1:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:410>
|
|
int32_t L_10 = V_3;
|
|
V_3 = ((int32_t)il2cpp_codegen_add(L_10, 1));
|
|
}
|
|
|
|
IL_0045_1:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:410>
|
|
int32_t L_11 = V_3;
|
|
int32_t L_12 = __this->___chunkCount;
|
|
if ((((int32_t)L_11) < ((int32_t)L_12)))
|
|
{
|
|
goto IL_0011_1;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:417>
|
|
V_4 = 0;
|
|
goto IL_00e8_1;
|
|
}
|
|
|
|
IL_0056_1:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:419>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:420>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:421>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:422>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:423>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:424>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:425>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:426>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:427>
|
|
List_1_t75FC6D059D696BAD77462D09FCDC98B4A7B7D3D4* L_13 = __this->___m_CombinedChunks;
|
|
int32_t L_14 = V_4;
|
|
il2cpp_codegen_initobj((&V_5), sizeof(CombinedChunks_tCFB3356163B9F9B0E31E0B194E9B415F83340ED9));
|
|
List_1_t437E45D007C2D93DCB30DA30023CB2745EE095D0* L_15 = __this->___entityChunks;
|
|
int32_t L_16 = V_4;
|
|
NullCheck(L_15);
|
|
DecalEntityChunk_t2CDCBFA35711DA074631D26572EF9755A3AD740C* L_17;
|
|
L_17 = List_1_get_Item_mFCF8BC94A0C7B3A51A1FC623D4F3335994152975(L_15, L_16, List_1_get_Item_mFCF8BC94A0C7B3A51A1FC623D4F3335994152975_RuntimeMethod_var);
|
|
(&V_5)->___entityChunk = L_17;
|
|
Il2CppCodeGenWriteBarrier((void**)(&(&V_5)->___entityChunk), (void*)L_17);
|
|
List_1_t1A9527CB44249AD17D081A2D7A468343FC2D0720* L_18 = __this->___cachedChunks;
|
|
int32_t L_19 = V_4;
|
|
NullCheck(L_18);
|
|
DecalCachedChunk_tDEF493C8A3A1F442BDEC1794BDDA0996B32DCACE* L_20;
|
|
L_20 = List_1_get_Item_mF1A0B8107AFE027BCC67DA021B857B6495FA1A90(L_18, L_19, List_1_get_Item_mF1A0B8107AFE027BCC67DA021B857B6495FA1A90_RuntimeMethod_var);
|
|
(&V_5)->___cachedChunk = L_20;
|
|
Il2CppCodeGenWriteBarrier((void**)(&(&V_5)->___cachedChunk), (void*)L_20);
|
|
List_1_t2E25D2E682EF62FB0FC538A4C88B3D49616A03DC* L_21 = __this->___culledChunks;
|
|
int32_t L_22 = V_4;
|
|
NullCheck(L_21);
|
|
DecalCulledChunk_tFD4472F0ADDD173C7B13E8B0529983E745F12ED3* L_23;
|
|
L_23 = List_1_get_Item_m1678465F50522CE2FAF1BB8EA6969B91268E5FA3(L_21, L_22, List_1_get_Item_m1678465F50522CE2FAF1BB8EA6969B91268E5FA3_RuntimeMethod_var);
|
|
(&V_5)->___culledChunk = L_23;
|
|
Il2CppCodeGenWriteBarrier((void**)(&(&V_5)->___culledChunk), (void*)L_23);
|
|
List_1_tD8DB23A94A44626CAF7E9B5B4A949D0FDC7B27A7* L_24 = __this->___drawCallChunks;
|
|
int32_t L_25 = V_4;
|
|
NullCheck(L_24);
|
|
DecalDrawCallChunk_tBD0491A1B0B7D19DF01A5C9EDE0A40CBEDBF7A3A* L_26;
|
|
L_26 = List_1_get_Item_m4AA84FB449EDD461A47D02E7C9ED3EF72D48A44E(L_24, L_25, List_1_get_Item_m4AA84FB449EDD461A47D02E7C9ED3EF72D48A44E_RuntimeMethod_var);
|
|
(&V_5)->___drawCallChunk = L_26;
|
|
Il2CppCodeGenWriteBarrier((void**)(&(&V_5)->___drawCallChunk), (void*)L_26);
|
|
int32_t L_27 = V_4;
|
|
(&V_5)->___previousChunkIndex = L_27;
|
|
List_1_t437E45D007C2D93DCB30DA30023CB2745EE095D0* L_28 = __this->___entityChunks;
|
|
int32_t L_29 = V_4;
|
|
NullCheck(L_28);
|
|
DecalEntityChunk_t2CDCBFA35711DA074631D26572EF9755A3AD740C* L_30;
|
|
L_30 = List_1_get_Item_mFCF8BC94A0C7B3A51A1FC623D4F3335994152975(L_28, L_29, List_1_get_Item_mFCF8BC94A0C7B3A51A1FC623D4F3335994152975_RuntimeMethod_var);
|
|
NullCheck(L_30);
|
|
int32_t L_31;
|
|
L_31 = DecalChunk_get_count_mEF67D584A3FF77C4A87A916D5F464D91D47C4B17_inline(L_30, NULL);
|
|
(&V_5)->___valid = (bool)((!(((uint32_t)L_31) <= ((uint32_t)0)))? 1 : 0);
|
|
CombinedChunks_tCFB3356163B9F9B0E31E0B194E9B415F83340ED9 L_32 = V_5;
|
|
NullCheck(L_13);
|
|
List_1_set_Item_mA56E7E3B84B486552CEBAF1FFD6986FA5F724808(L_13, L_14, L_32, List_1_set_Item_mA56E7E3B84B486552CEBAF1FFD6986FA5F724808_RuntimeMethod_var);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:417>
|
|
int32_t L_33 = V_4;
|
|
V_4 = ((int32_t)il2cpp_codegen_add(L_33, 1));
|
|
}
|
|
|
|
IL_00e8_1:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:417>
|
|
int32_t L_34 = V_4;
|
|
int32_t L_35 = __this->___chunkCount;
|
|
if ((((int32_t)L_34) < ((int32_t)L_35)))
|
|
{
|
|
goto IL_0056_1;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:432>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:433>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:434>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:435>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:436>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:437>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:438>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:439>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:440>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:441>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:442>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:443>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:444>
|
|
List_1_t75FC6D059D696BAD77462D09FCDC98B4A7B7D3D4* L_36 = __this->___m_CombinedChunks;
|
|
il2cpp_codegen_runtime_class_init_inline(U3CU3Ec_t982F331B7EDFDBCE7D881BB6DF31BAC0023967CC_il2cpp_TypeInfo_var);
|
|
Comparison_1_t1D70AD681199BAE9A46BB890478D827A9BA04A36* L_37 = ((U3CU3Ec_t982F331B7EDFDBCE7D881BB6DF31BAC0023967CC_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t982F331B7EDFDBCE7D881BB6DF31BAC0023967CC_il2cpp_TypeInfo_var))->___U3CU3E9__26_0;
|
|
Comparison_1_t1D70AD681199BAE9A46BB890478D827A9BA04A36* L_38 = L_37;
|
|
if (L_38)
|
|
{
|
|
G_B11_0 = L_38;
|
|
G_B11_1 = L_36;
|
|
goto IL_011a_1;
|
|
}
|
|
G_B10_0 = L_38;
|
|
G_B10_1 = L_36;
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(U3CU3Ec_t982F331B7EDFDBCE7D881BB6DF31BAC0023967CC_il2cpp_TypeInfo_var);
|
|
U3CU3Ec_t982F331B7EDFDBCE7D881BB6DF31BAC0023967CC* L_39 = ((U3CU3Ec_t982F331B7EDFDBCE7D881BB6DF31BAC0023967CC_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t982F331B7EDFDBCE7D881BB6DF31BAC0023967CC_il2cpp_TypeInfo_var))->___U3CU3E9;
|
|
Comparison_1_t1D70AD681199BAE9A46BB890478D827A9BA04A36* L_40 = (Comparison_1_t1D70AD681199BAE9A46BB890478D827A9BA04A36*)il2cpp_codegen_object_new(Comparison_1_t1D70AD681199BAE9A46BB890478D827A9BA04A36_il2cpp_TypeInfo_var);
|
|
Comparison_1__ctor_mBF1B4978AA4B5B19579B8551412B7D03053A6AD3(L_40, L_39, (intptr_t)((void*)U3CU3Ec_U3CUpdateU3Eb__26_0_m87A64C173CD8369E00BCE92FE54C3F36E362C322_RuntimeMethod_var), NULL);
|
|
Comparison_1_t1D70AD681199BAE9A46BB890478D827A9BA04A36* L_41 = L_40;
|
|
((U3CU3Ec_t982F331B7EDFDBCE7D881BB6DF31BAC0023967CC_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t982F331B7EDFDBCE7D881BB6DF31BAC0023967CC_il2cpp_TypeInfo_var))->___U3CU3E9__26_0 = L_41;
|
|
Il2CppCodeGenWriteBarrier((void**)(&((U3CU3Ec_t982F331B7EDFDBCE7D881BB6DF31BAC0023967CC_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t982F331B7EDFDBCE7D881BB6DF31BAC0023967CC_il2cpp_TypeInfo_var))->___U3CU3E9__26_0), (void*)L_41);
|
|
G_B11_0 = L_41;
|
|
G_B11_1 = G_B10_1;
|
|
}
|
|
|
|
IL_011a_1:
|
|
{
|
|
NullCheck(G_B11_1);
|
|
List_1_Sort_m7D91ABCC3436181A92740FA30F58517E70C30EC2(G_B11_1, G_B11_0, List_1_Sort_m7D91ABCC3436181A92740FA30F58517E70C30EC2_RuntimeMethod_var);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:447>
|
|
V_1 = (bool)0;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:448>
|
|
V_6 = 0;
|
|
goto IL_015a_1;
|
|
}
|
|
|
|
IL_0126_1:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:450>
|
|
List_1_t75FC6D059D696BAD77462D09FCDC98B4A7B7D3D4* L_42 = __this->___m_CombinedChunks;
|
|
int32_t L_43 = V_6;
|
|
NullCheck(L_42);
|
|
CombinedChunks_tCFB3356163B9F9B0E31E0B194E9B415F83340ED9 L_44;
|
|
L_44 = List_1_get_Item_m590DCDF63905DBC9AFD853145981546152F126A4(L_42, L_43, List_1_get_Item_m590DCDF63905DBC9AFD853145981546152F126A4_RuntimeMethod_var);
|
|
int32_t L_45 = L_44.___previousChunkIndex;
|
|
int32_t L_46 = V_6;
|
|
if ((!(((uint32_t)L_45) == ((uint32_t)L_46))))
|
|
{
|
|
goto IL_0150_1;
|
|
}
|
|
}
|
|
{
|
|
List_1_t75FC6D059D696BAD77462D09FCDC98B4A7B7D3D4* L_47 = __this->___m_CombinedChunks;
|
|
int32_t L_48 = V_6;
|
|
NullCheck(L_47);
|
|
CombinedChunks_tCFB3356163B9F9B0E31E0B194E9B415F83340ED9 L_49;
|
|
L_49 = List_1_get_Item_m590DCDF63905DBC9AFD853145981546152F126A4(L_47, L_48, List_1_get_Item_m590DCDF63905DBC9AFD853145981546152F126A4_RuntimeMethod_var);
|
|
bool L_50 = L_49.___valid;
|
|
if (L_50)
|
|
{
|
|
goto IL_0154_1;
|
|
}
|
|
}
|
|
|
|
IL_0150_1:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:452>
|
|
V_1 = (bool)1;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:453>
|
|
goto IL_0164_1;
|
|
}
|
|
|
|
IL_0154_1:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:448>
|
|
int32_t L_51 = V_6;
|
|
V_6 = ((int32_t)il2cpp_codegen_add(L_51, 1));
|
|
}
|
|
|
|
IL_015a_1:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:448>
|
|
int32_t L_52 = V_6;
|
|
int32_t L_53 = __this->___chunkCount;
|
|
if ((((int32_t)L_52) < ((int32_t)L_53)))
|
|
{
|
|
goto IL_0126_1;
|
|
}
|
|
}
|
|
|
|
IL_0164_1:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:456>
|
|
bool L_54 = V_1;
|
|
if (L_54)
|
|
{
|
|
goto IL_016c_1;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:457>
|
|
goto IL_037e;
|
|
}
|
|
|
|
IL_016c_1:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:460>
|
|
V_2 = 0;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:461>
|
|
Dictionary_2_t6EB10DF170874D02D43E115B0A1B93479CE3FF80* L_55 = __this->___m_MaterialToChunkIndex;
|
|
NullCheck(L_55);
|
|
Dictionary_2_Clear_m2AC070D7EA40F018A5B2A6F94C75362212F74014(L_55, Dictionary_2_Clear_m2AC070D7EA40F018A5B2A6F94C75362212F74014_RuntimeMethod_var);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:462>
|
|
V_7 = 0;
|
|
goto IL_02dc_1;
|
|
}
|
|
|
|
IL_0181_1:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:464>
|
|
List_1_t75FC6D059D696BAD77462D09FCDC98B4A7B7D3D4* L_56 = __this->___m_CombinedChunks;
|
|
int32_t L_57 = V_7;
|
|
NullCheck(L_56);
|
|
CombinedChunks_tCFB3356163B9F9B0E31E0B194E9B415F83340ED9 L_58;
|
|
L_58 = List_1_get_Item_m590DCDF63905DBC9AFD853145981546152F126A4(L_56, L_57, List_1_get_Item_m590DCDF63905DBC9AFD853145981546152F126A4_RuntimeMethod_var);
|
|
V_8 = L_58;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:467>
|
|
List_1_t75FC6D059D696BAD77462D09FCDC98B4A7B7D3D4* L_59 = __this->___m_CombinedChunks;
|
|
int32_t L_60 = V_7;
|
|
NullCheck(L_59);
|
|
CombinedChunks_tCFB3356163B9F9B0E31E0B194E9B415F83340ED9 L_61;
|
|
L_61 = List_1_get_Item_m590DCDF63905DBC9AFD853145981546152F126A4(L_59, L_60, List_1_get_Item_m590DCDF63905DBC9AFD853145981546152F126A4_RuntimeMethod_var);
|
|
bool L_62 = L_61.___valid;
|
|
if (L_62)
|
|
{
|
|
goto IL_0230_1;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:469>
|
|
CombinedChunks_tCFB3356163B9F9B0E31E0B194E9B415F83340ED9 L_63 = V_8;
|
|
DecalEntityChunk_t2CDCBFA35711DA074631D26572EF9755A3AD740C* L_64 = L_63.___entityChunk;
|
|
NullCheck(L_64);
|
|
JobHandle_t5DF5F99902FED3C801A81C05205CEA6CE039EF08 L_65;
|
|
L_65 = DecalChunk_get_currentJobHandle_m0EBD28118EB20E5BBC3BE831171CD2CDC745AAD4_inline(L_64, NULL);
|
|
V_9 = L_65;
|
|
JobHandle_Complete_mDCED35A125AAB37EDDAB2E31C805B4904B614A4A((&V_9), NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:470>
|
|
CombinedChunks_tCFB3356163B9F9B0E31E0B194E9B415F83340ED9 L_66 = V_8;
|
|
DecalCachedChunk_tDEF493C8A3A1F442BDEC1794BDDA0996B32DCACE* L_67 = L_66.___cachedChunk;
|
|
NullCheck(L_67);
|
|
JobHandle_t5DF5F99902FED3C801A81C05205CEA6CE039EF08 L_68;
|
|
L_68 = DecalChunk_get_currentJobHandle_m0EBD28118EB20E5BBC3BE831171CD2CDC745AAD4_inline(L_67, NULL);
|
|
V_9 = L_68;
|
|
JobHandle_Complete_mDCED35A125AAB37EDDAB2E31C805B4904B614A4A((&V_9), NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:471>
|
|
CombinedChunks_tCFB3356163B9F9B0E31E0B194E9B415F83340ED9 L_69 = V_8;
|
|
DecalCulledChunk_tFD4472F0ADDD173C7B13E8B0529983E745F12ED3* L_70 = L_69.___culledChunk;
|
|
NullCheck(L_70);
|
|
JobHandle_t5DF5F99902FED3C801A81C05205CEA6CE039EF08 L_71;
|
|
L_71 = DecalChunk_get_currentJobHandle_m0EBD28118EB20E5BBC3BE831171CD2CDC745AAD4_inline(L_70, NULL);
|
|
V_9 = L_71;
|
|
JobHandle_Complete_mDCED35A125AAB37EDDAB2E31C805B4904B614A4A((&V_9), NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:472>
|
|
CombinedChunks_tCFB3356163B9F9B0E31E0B194E9B415F83340ED9 L_72 = V_8;
|
|
DecalDrawCallChunk_tBD0491A1B0B7D19DF01A5C9EDE0A40CBEDBF7A3A* L_73 = L_72.___drawCallChunk;
|
|
NullCheck(L_73);
|
|
JobHandle_t5DF5F99902FED3C801A81C05205CEA6CE039EF08 L_74;
|
|
L_74 = DecalChunk_get_currentJobHandle_m0EBD28118EB20E5BBC3BE831171CD2CDC745AAD4_inline(L_73, NULL);
|
|
V_9 = L_74;
|
|
JobHandle_Complete_mDCED35A125AAB37EDDAB2E31C805B4904B614A4A((&V_9), NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:474>
|
|
CombinedChunks_tCFB3356163B9F9B0E31E0B194E9B415F83340ED9 L_75 = V_8;
|
|
DecalEntityChunk_t2CDCBFA35711DA074631D26572EF9755A3AD740C* L_76 = L_75.___entityChunk;
|
|
NullCheck(L_76);
|
|
VirtualActionInvoker0::Invoke(8, L_76);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:475>
|
|
CombinedChunks_tCFB3356163B9F9B0E31E0B194E9B415F83340ED9 L_77 = V_8;
|
|
DecalCachedChunk_tDEF493C8A3A1F442BDEC1794BDDA0996B32DCACE* L_78 = L_77.___cachedChunk;
|
|
NullCheck(L_78);
|
|
VirtualActionInvoker0::Invoke(8, L_78);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:476>
|
|
CombinedChunks_tCFB3356163B9F9B0E31E0B194E9B415F83340ED9 L_79 = V_8;
|
|
DecalCulledChunk_tFD4472F0ADDD173C7B13E8B0529983E745F12ED3* L_80 = L_79.___culledChunk;
|
|
NullCheck(L_80);
|
|
VirtualActionInvoker0::Invoke(8, L_80);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:477>
|
|
CombinedChunks_tCFB3356163B9F9B0E31E0B194E9B415F83340ED9 L_81 = V_8;
|
|
DecalDrawCallChunk_tBD0491A1B0B7D19DF01A5C9EDE0A40CBEDBF7A3A* L_82 = L_81.___drawCallChunk;
|
|
NullCheck(L_82);
|
|
VirtualActionInvoker0::Invoke(8, L_82);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:479>
|
|
goto IL_02d6_1;
|
|
}
|
|
|
|
IL_0230_1:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:482>
|
|
List_1_t437E45D007C2D93DCB30DA30023CB2745EE095D0* L_83 = __this->___entityChunks;
|
|
int32_t L_84 = V_7;
|
|
CombinedChunks_tCFB3356163B9F9B0E31E0B194E9B415F83340ED9 L_85 = V_8;
|
|
DecalEntityChunk_t2CDCBFA35711DA074631D26572EF9755A3AD740C* L_86 = L_85.___entityChunk;
|
|
NullCheck(L_83);
|
|
List_1_set_Item_m6804E01E4F07D1876D51E76EE142AAD2625798AE(L_83, L_84, L_86, List_1_set_Item_m6804E01E4F07D1876D51E76EE142AAD2625798AE_RuntimeMethod_var);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:483>
|
|
List_1_t1A9527CB44249AD17D081A2D7A468343FC2D0720* L_87 = __this->___cachedChunks;
|
|
int32_t L_88 = V_7;
|
|
CombinedChunks_tCFB3356163B9F9B0E31E0B194E9B415F83340ED9 L_89 = V_8;
|
|
DecalCachedChunk_tDEF493C8A3A1F442BDEC1794BDDA0996B32DCACE* L_90 = L_89.___cachedChunk;
|
|
NullCheck(L_87);
|
|
List_1_set_Item_m85FB153F408B4FFDE64F242D3B10FF820A7D5137(L_87, L_88, L_90, List_1_set_Item_m85FB153F408B4FFDE64F242D3B10FF820A7D5137_RuntimeMethod_var);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:484>
|
|
List_1_t2E25D2E682EF62FB0FC538A4C88B3D49616A03DC* L_91 = __this->___culledChunks;
|
|
int32_t L_92 = V_7;
|
|
CombinedChunks_tCFB3356163B9F9B0E31E0B194E9B415F83340ED9 L_93 = V_8;
|
|
DecalCulledChunk_tFD4472F0ADDD173C7B13E8B0529983E745F12ED3* L_94 = L_93.___culledChunk;
|
|
NullCheck(L_91);
|
|
List_1_set_Item_m806D36B3667116780356A42019B45C63D5F7B367(L_91, L_92, L_94, List_1_set_Item_m806D36B3667116780356A42019B45C63D5F7B367_RuntimeMethod_var);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:485>
|
|
List_1_tD8DB23A94A44626CAF7E9B5B4A949D0FDC7B27A7* L_95 = __this->___drawCallChunks;
|
|
int32_t L_96 = V_7;
|
|
CombinedChunks_tCFB3356163B9F9B0E31E0B194E9B415F83340ED9 L_97 = V_8;
|
|
DecalDrawCallChunk_tBD0491A1B0B7D19DF01A5C9EDE0A40CBEDBF7A3A* L_98 = L_97.___drawCallChunk;
|
|
NullCheck(L_95);
|
|
List_1_set_Item_m15D488D7D55AE426685D5C693FB2F2E98DD1CF19(L_95, L_96, L_98, List_1_set_Item_m15D488D7D55AE426685D5C693FB2F2E98DD1CF19_RuntimeMethod_var);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:486>
|
|
Dictionary_2_t6EB10DF170874D02D43E115B0A1B93479CE3FF80* L_99 = __this->___m_MaterialToChunkIndex;
|
|
List_1_t437E45D007C2D93DCB30DA30023CB2745EE095D0* L_100 = __this->___entityChunks;
|
|
int32_t L_101 = V_7;
|
|
NullCheck(L_100);
|
|
DecalEntityChunk_t2CDCBFA35711DA074631D26572EF9755A3AD740C* L_102;
|
|
L_102 = List_1_get_Item_mFCF8BC94A0C7B3A51A1FC623D4F3335994152975(L_100, L_101, List_1_get_Item_mFCF8BC94A0C7B3A51A1FC623D4F3335994152975_RuntimeMethod_var);
|
|
NullCheck(L_102);
|
|
Material_t18053F08F347D0DCA5E1140EC7EC4533DD8A14E3* L_103 = L_102->___material;
|
|
NullCheck(L_99);
|
|
bool L_104;
|
|
L_104 = Dictionary_2_ContainsKey_mCFA7AF1835284648D44D1BF57A75C81683207D5E(L_99, L_103, Dictionary_2_ContainsKey_mCFA7AF1835284648D44D1BF57A75C81683207D5E_RuntimeMethod_var);
|
|
if (L_104)
|
|
{
|
|
goto IL_02be_1;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:487>
|
|
Dictionary_2_t6EB10DF170874D02D43E115B0A1B93479CE3FF80* L_105 = __this->___m_MaterialToChunkIndex;
|
|
List_1_t437E45D007C2D93DCB30DA30023CB2745EE095D0* L_106 = __this->___entityChunks;
|
|
int32_t L_107 = V_7;
|
|
NullCheck(L_106);
|
|
DecalEntityChunk_t2CDCBFA35711DA074631D26572EF9755A3AD740C* L_108;
|
|
L_108 = List_1_get_Item_mFCF8BC94A0C7B3A51A1FC623D4F3335994152975(L_106, L_107, List_1_get_Item_mFCF8BC94A0C7B3A51A1FC623D4F3335994152975_RuntimeMethod_var);
|
|
NullCheck(L_108);
|
|
Material_t18053F08F347D0DCA5E1140EC7EC4533DD8A14E3* L_109 = L_108->___material;
|
|
int32_t L_110 = V_7;
|
|
NullCheck(L_105);
|
|
Dictionary_2_Add_mEF2E83E7D7A51D9598E8771D187138AF3CE614A6(L_105, L_109, L_110, Dictionary_2_Add_mEF2E83E7D7A51D9598E8771D187138AF3CE614A6_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_02be_1:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:488>
|
|
List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* L_111 = __this->___m_CombinedChunkRemmap;
|
|
CombinedChunks_tCFB3356163B9F9B0E31E0B194E9B415F83340ED9 L_112 = V_8;
|
|
int32_t L_113 = L_112.___previousChunkIndex;
|
|
int32_t L_114 = V_7;
|
|
NullCheck(L_111);
|
|
List_1_set_Item_m95629806F31CF369D937590912E0B6A53FF7C587(L_111, L_113, L_114, List_1_set_Item_m95629806F31CF369D937590912E0B6A53FF7C587_RuntimeMethod_var);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:489>
|
|
int32_t L_115 = V_2;
|
|
V_2 = ((int32_t)il2cpp_codegen_add(L_115, 1));
|
|
}
|
|
|
|
IL_02d6_1:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:462>
|
|
int32_t L_116 = V_7;
|
|
V_7 = ((int32_t)il2cpp_codegen_add(L_116, 1));
|
|
}
|
|
|
|
IL_02dc_1:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:462>
|
|
int32_t L_117 = V_7;
|
|
int32_t L_118 = __this->___chunkCount;
|
|
if ((((int32_t)L_117) < ((int32_t)L_118)))
|
|
{
|
|
goto IL_0181_1;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:493>
|
|
int32_t L_119 = __this->___chunkCount;
|
|
int32_t L_120 = V_2;
|
|
if ((((int32_t)L_119) <= ((int32_t)L_120)))
|
|
{
|
|
goto IL_035d_1;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:495>
|
|
List_1_t437E45D007C2D93DCB30DA30023CB2745EE095D0* L_121 = __this->___entityChunks;
|
|
int32_t L_122 = V_2;
|
|
int32_t L_123 = __this->___chunkCount;
|
|
int32_t L_124 = V_2;
|
|
NullCheck(L_121);
|
|
List_1_RemoveRange_mF49B2BF39FBBF329FD80C63D5117F74628384C4C(L_121, L_122, ((int32_t)il2cpp_codegen_subtract(L_123, L_124)), List_1_RemoveRange_mF49B2BF39FBBF329FD80C63D5117F74628384C4C_RuntimeMethod_var);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:496>
|
|
List_1_t1A9527CB44249AD17D081A2D7A468343FC2D0720* L_125 = __this->___cachedChunks;
|
|
int32_t L_126 = V_2;
|
|
int32_t L_127 = __this->___chunkCount;
|
|
int32_t L_128 = V_2;
|
|
NullCheck(L_125);
|
|
List_1_RemoveRange_m67B6F69125A5394BC088ACBE2BC99E53792F3D84(L_125, L_126, ((int32_t)il2cpp_codegen_subtract(L_127, L_128)), List_1_RemoveRange_m67B6F69125A5394BC088ACBE2BC99E53792F3D84_RuntimeMethod_var);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:497>
|
|
List_1_t2E25D2E682EF62FB0FC538A4C88B3D49616A03DC* L_129 = __this->___culledChunks;
|
|
int32_t L_130 = V_2;
|
|
int32_t L_131 = __this->___chunkCount;
|
|
int32_t L_132 = V_2;
|
|
NullCheck(L_129);
|
|
List_1_RemoveRange_m822EDEFF9A41F5ECF6FF477BD098365A13889AF6(L_129, L_130, ((int32_t)il2cpp_codegen_subtract(L_131, L_132)), List_1_RemoveRange_m822EDEFF9A41F5ECF6FF477BD098365A13889AF6_RuntimeMethod_var);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:498>
|
|
List_1_tD8DB23A94A44626CAF7E9B5B4A949D0FDC7B27A7* L_133 = __this->___drawCallChunks;
|
|
int32_t L_134 = V_2;
|
|
int32_t L_135 = __this->___chunkCount;
|
|
int32_t L_136 = V_2;
|
|
NullCheck(L_133);
|
|
List_1_RemoveRange_m9FB32ECC157784E2F3A9499B6FDB818869D04C12(L_133, L_134, ((int32_t)il2cpp_codegen_subtract(L_135, L_136)), List_1_RemoveRange_m9FB32ECC157784E2F3A9499B6FDB818869D04C12_RuntimeMethod_var);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:499>
|
|
List_1_t75FC6D059D696BAD77462D09FCDC98B4A7B7D3D4* L_137 = __this->___m_CombinedChunks;
|
|
int32_t L_138 = V_2;
|
|
int32_t L_139 = __this->___chunkCount;
|
|
int32_t L_140 = V_2;
|
|
NullCheck(L_137);
|
|
List_1_RemoveRange_mB2A135AC73DB3416988192AD3564E5F949C3CF9C(L_137, L_138, ((int32_t)il2cpp_codegen_subtract(L_139, L_140)), List_1_RemoveRange_mB2A135AC73DB3416988192AD3564E5F949C3CF9C_RuntimeMethod_var);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:500>
|
|
int32_t L_141 = V_2;
|
|
__this->___chunkCount = L_141;
|
|
}
|
|
|
|
IL_035d_1:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:504>
|
|
DecalEntityIndexer_t884A1F60E13512A2DE8CEC24635D2B3BE3FD3544* L_142 = __this->___m_DecalEntityIndexer;
|
|
List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* L_143 = __this->___m_CombinedChunkRemmap;
|
|
NullCheck(L_142);
|
|
DecalEntityIndexer_RemapChunkIndices_m0D24A3A5BE659099CC2F6C0A563D11B9D8AD0EA0(L_142, L_143, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:505>
|
|
goto IL_037e;
|
|
}
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_037e:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:506>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 33196
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DecalEntityManager_Dispose_mE97270B7147CEE4894F7423903C86444F21FF27B (DecalEntityManager_tDA689202786946588782A67EF3F0B0D9121C294A* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CoreUtils_tEE57AB2B0DAE9561F4954B08800A8F957850B038_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_Clear_m2AC070D7EA40F018A5B2A6F94C75362212F74014_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_Dispose_m0E06EF2FB18AE1B60D0DE5101EA8F8CC0EF67689_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_Dispose_mBDE5AA338399D1BEA76AC9295E2287FE0B75522C_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_Dispose_mE4288E0F12F7086A80CD684C0A0F919FD1DDACEC_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_Dispose_mF97C2EAF7C0D8F5E7C7EA1012A4FE2DD163EE706_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_MoveNext_m80A18F75B452473B49786B16A4654E2C139E8290_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_MoveNext_m82285194E26D691AF9BF6A7233A0D951DFAB30E3_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_MoveNext_mEABB682BDEAD268B7AB57DA26D04B95248950EA9_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_MoveNext_mF0240F1FA41F980A8C237D12729A3CC0455CEC12_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_get_Current_m164BDCEA62768BF6A06F68A1A089947511244908_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_get_Current_m4EFC47E612DA489655B9850C2E9BA6B0CF084CB4_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_get_Current_m67F4DA2EB9B115CC3A70504BA7DC25214A662BE6_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_get_Current_mA19BF2A9BBB4A17BBFB2F68F59D890B9498C2583_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Clear_m0F2A6C272D949AFF5A0BFD4B2C0B326DF491E171_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Clear_m25927F960325907203BE756C7196321B782E2BA8_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Clear_m38F519CFF9FD938D85EBA4335C73E4860C7AAEF5_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Clear_m931602651BB5880916DA414408E994815C32612D_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Clear_mF3D2F0801D0D95591EAFF99E087D27BE7EABA697_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_GetEnumerator_m048B7AA90802D503194E9B6B953CDF1CDC94E003_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_GetEnumerator_m07A4E7847EE8277BA708A9F86E35AB330B3EF1D2_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_GetEnumerator_m23C9E22BBF7C218F713D09604F58A0FEEB1FCA9C_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_GetEnumerator_m8915322E9C7EBA21ED46FBA090753AFA6A0E1DEB_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
Enumerator_tF5DDF189C56DD8FE4A5FC3E8C99C6F401F606A5A V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
JobHandle_t5DF5F99902FED3C801A81C05205CEA6CE039EF08 V_1;
|
|
memset((&V_1), 0, sizeof(V_1));
|
|
Enumerator_t1F37311553599DE64203CA50CD1BC7A504A73BBF V_2;
|
|
memset((&V_2), 0, sizeof(V_2));
|
|
Enumerator_t490DE54C026ACEB8ECD91DB31ED7D8427892ADA9 V_3;
|
|
memset((&V_3), 0, sizeof(V_3));
|
|
Enumerator_t7923C0941406E673B314ADFF77ADC30A63D17CCA V_4;
|
|
memset((&V_4), 0, sizeof(V_4));
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:510>
|
|
Material_t18053F08F347D0DCA5E1140EC7EC4533DD8A14E3* L_0 = __this->___m_ErrorMaterial;
|
|
il2cpp_codegen_runtime_class_init_inline(CoreUtils_tEE57AB2B0DAE9561F4954B08800A8F957850B038_il2cpp_TypeInfo_var);
|
|
CoreUtils_Destroy_mD2FDD299C528530E4CC5F99EFBAF90ABC7B02C69(L_0, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:511>
|
|
Mesh_t6D9C539763A09BC2B12AEAEF36F6DFFC98AE63D4* L_1 = __this->___m_DecalProjectorMesh;
|
|
CoreUtils_Destroy_mD2FDD299C528530E4CC5F99EFBAF90ABC7B02C69(L_1, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:513>
|
|
List_1_t437E45D007C2D93DCB30DA30023CB2745EE095D0* L_2 = __this->___entityChunks;
|
|
NullCheck(L_2);
|
|
Enumerator_tF5DDF189C56DD8FE4A5FC3E8C99C6F401F606A5A L_3;
|
|
L_3 = List_1_GetEnumerator_m23C9E22BBF7C218F713D09604F58A0FEEB1FCA9C(L_2, List_1_GetEnumerator_m23C9E22BBF7C218F713D09604F58A0FEEB1FCA9C_RuntimeMethod_var);
|
|
V_0 = L_3;
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_0043:
|
|
{
|
|
Enumerator_Dispose_mE4288E0F12F7086A80CD684C0A0F919FD1DDACEC((&V_0), Enumerator_Dispose_mE4288E0F12F7086A80CD684C0A0F919FD1DDACEC_RuntimeMethod_var);
|
|
return;
|
|
}
|
|
});
|
|
try
|
|
{
|
|
{
|
|
goto IL_0038_1;
|
|
}
|
|
|
|
IL_0024_1:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:513>
|
|
DecalEntityChunk_t2CDCBFA35711DA074631D26572EF9755A3AD740C* L_4;
|
|
L_4 = Enumerator_get_Current_m4EFC47E612DA489655B9850C2E9BA6B0CF084CB4_inline((&V_0), Enumerator_get_Current_m4EFC47E612DA489655B9850C2E9BA6B0CF084CB4_RuntimeMethod_var);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:514>
|
|
NullCheck(L_4);
|
|
JobHandle_t5DF5F99902FED3C801A81C05205CEA6CE039EF08 L_5;
|
|
L_5 = DecalChunk_get_currentJobHandle_m0EBD28118EB20E5BBC3BE831171CD2CDC745AAD4_inline(L_4, NULL);
|
|
V_1 = L_5;
|
|
JobHandle_Complete_mDCED35A125AAB37EDDAB2E31C805B4904B614A4A((&V_1), NULL);
|
|
}
|
|
|
|
IL_0038_1:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:513>
|
|
bool L_6;
|
|
L_6 = Enumerator_MoveNext_m80A18F75B452473B49786B16A4654E2C139E8290((&V_0), Enumerator_MoveNext_m80A18F75B452473B49786B16A4654E2C139E8290_RuntimeMethod_var);
|
|
if (L_6)
|
|
{
|
|
goto IL_0024_1;
|
|
}
|
|
}
|
|
{
|
|
goto IL_0051;
|
|
}
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_0051:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:515>
|
|
List_1_t1A9527CB44249AD17D081A2D7A468343FC2D0720* L_7 = __this->___cachedChunks;
|
|
NullCheck(L_7);
|
|
Enumerator_t1F37311553599DE64203CA50CD1BC7A504A73BBF L_8;
|
|
L_8 = List_1_GetEnumerator_m8915322E9C7EBA21ED46FBA090753AFA6A0E1DEB(L_7, List_1_GetEnumerator_m8915322E9C7EBA21ED46FBA090753AFA6A0E1DEB_RuntimeMethod_var);
|
|
V_2 = L_8;
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_007e:
|
|
{
|
|
Enumerator_Dispose_mF97C2EAF7C0D8F5E7C7EA1012A4FE2DD163EE706((&V_2), Enumerator_Dispose_mF97C2EAF7C0D8F5E7C7EA1012A4FE2DD163EE706_RuntimeMethod_var);
|
|
return;
|
|
}
|
|
});
|
|
try
|
|
{
|
|
{
|
|
goto IL_0073_1;
|
|
}
|
|
|
|
IL_005f_1:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:515>
|
|
DecalCachedChunk_tDEF493C8A3A1F442BDEC1794BDDA0996B32DCACE* L_9;
|
|
L_9 = Enumerator_get_Current_m67F4DA2EB9B115CC3A70504BA7DC25214A662BE6_inline((&V_2), Enumerator_get_Current_m67F4DA2EB9B115CC3A70504BA7DC25214A662BE6_RuntimeMethod_var);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:516>
|
|
NullCheck(L_9);
|
|
JobHandle_t5DF5F99902FED3C801A81C05205CEA6CE039EF08 L_10;
|
|
L_10 = DecalChunk_get_currentJobHandle_m0EBD28118EB20E5BBC3BE831171CD2CDC745AAD4_inline(L_9, NULL);
|
|
V_1 = L_10;
|
|
JobHandle_Complete_mDCED35A125AAB37EDDAB2E31C805B4904B614A4A((&V_1), NULL);
|
|
}
|
|
|
|
IL_0073_1:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:515>
|
|
bool L_11;
|
|
L_11 = Enumerator_MoveNext_mF0240F1FA41F980A8C237D12729A3CC0455CEC12((&V_2), Enumerator_MoveNext_mF0240F1FA41F980A8C237D12729A3CC0455CEC12_RuntimeMethod_var);
|
|
if (L_11)
|
|
{
|
|
goto IL_005f_1;
|
|
}
|
|
}
|
|
{
|
|
goto IL_008c;
|
|
}
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_008c:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:517>
|
|
List_1_t2E25D2E682EF62FB0FC538A4C88B3D49616A03DC* L_12 = __this->___culledChunks;
|
|
NullCheck(L_12);
|
|
Enumerator_t490DE54C026ACEB8ECD91DB31ED7D8427892ADA9 L_13;
|
|
L_13 = List_1_GetEnumerator_m07A4E7847EE8277BA708A9F86E35AB330B3EF1D2(L_12, List_1_GetEnumerator_m07A4E7847EE8277BA708A9F86E35AB330B3EF1D2_RuntimeMethod_var);
|
|
V_3 = L_13;
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_00b9:
|
|
{
|
|
Enumerator_Dispose_m0E06EF2FB18AE1B60D0DE5101EA8F8CC0EF67689((&V_3), Enumerator_Dispose_m0E06EF2FB18AE1B60D0DE5101EA8F8CC0EF67689_RuntimeMethod_var);
|
|
return;
|
|
}
|
|
});
|
|
try
|
|
{
|
|
{
|
|
goto IL_00ae_1;
|
|
}
|
|
|
|
IL_009a_1:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:517>
|
|
DecalCulledChunk_tFD4472F0ADDD173C7B13E8B0529983E745F12ED3* L_14;
|
|
L_14 = Enumerator_get_Current_mA19BF2A9BBB4A17BBFB2F68F59D890B9498C2583_inline((&V_3), Enumerator_get_Current_mA19BF2A9BBB4A17BBFB2F68F59D890B9498C2583_RuntimeMethod_var);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:518>
|
|
NullCheck(L_14);
|
|
JobHandle_t5DF5F99902FED3C801A81C05205CEA6CE039EF08 L_15;
|
|
L_15 = DecalChunk_get_currentJobHandle_m0EBD28118EB20E5BBC3BE831171CD2CDC745AAD4_inline(L_14, NULL);
|
|
V_1 = L_15;
|
|
JobHandle_Complete_mDCED35A125AAB37EDDAB2E31C805B4904B614A4A((&V_1), NULL);
|
|
}
|
|
|
|
IL_00ae_1:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:517>
|
|
bool L_16;
|
|
L_16 = Enumerator_MoveNext_mEABB682BDEAD268B7AB57DA26D04B95248950EA9((&V_3), Enumerator_MoveNext_mEABB682BDEAD268B7AB57DA26D04B95248950EA9_RuntimeMethod_var);
|
|
if (L_16)
|
|
{
|
|
goto IL_009a_1;
|
|
}
|
|
}
|
|
{
|
|
goto IL_00c7;
|
|
}
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_00c7:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:519>
|
|
List_1_tD8DB23A94A44626CAF7E9B5B4A949D0FDC7B27A7* L_17 = __this->___drawCallChunks;
|
|
NullCheck(L_17);
|
|
Enumerator_t7923C0941406E673B314ADFF77ADC30A63D17CCA L_18;
|
|
L_18 = List_1_GetEnumerator_m048B7AA90802D503194E9B6B953CDF1CDC94E003(L_17, List_1_GetEnumerator_m048B7AA90802D503194E9B6B953CDF1CDC94E003_RuntimeMethod_var);
|
|
V_4 = L_18;
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_00f5:
|
|
{
|
|
Enumerator_Dispose_mBDE5AA338399D1BEA76AC9295E2287FE0B75522C((&V_4), Enumerator_Dispose_mBDE5AA338399D1BEA76AC9295E2287FE0B75522C_RuntimeMethod_var);
|
|
return;
|
|
}
|
|
});
|
|
try
|
|
{
|
|
{
|
|
goto IL_00ea_1;
|
|
}
|
|
|
|
IL_00d6_1:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:519>
|
|
DecalDrawCallChunk_tBD0491A1B0B7D19DF01A5C9EDE0A40CBEDBF7A3A* L_19;
|
|
L_19 = Enumerator_get_Current_m164BDCEA62768BF6A06F68A1A089947511244908_inline((&V_4), Enumerator_get_Current_m164BDCEA62768BF6A06F68A1A089947511244908_RuntimeMethod_var);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:520>
|
|
NullCheck(L_19);
|
|
JobHandle_t5DF5F99902FED3C801A81C05205CEA6CE039EF08 L_20;
|
|
L_20 = DecalChunk_get_currentJobHandle_m0EBD28118EB20E5BBC3BE831171CD2CDC745AAD4_inline(L_19, NULL);
|
|
V_1 = L_20;
|
|
JobHandle_Complete_mDCED35A125AAB37EDDAB2E31C805B4904B614A4A((&V_1), NULL);
|
|
}
|
|
|
|
IL_00ea_1:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:519>
|
|
bool L_21;
|
|
L_21 = Enumerator_MoveNext_m82285194E26D691AF9BF6A7233A0D951DFAB30E3((&V_4), Enumerator_MoveNext_m82285194E26D691AF9BF6A7233A0D951DFAB30E3_RuntimeMethod_var);
|
|
if (L_21)
|
|
{
|
|
goto IL_00d6_1;
|
|
}
|
|
}
|
|
{
|
|
goto IL_0103;
|
|
}
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_0103:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:522>
|
|
List_1_t437E45D007C2D93DCB30DA30023CB2745EE095D0* L_22 = __this->___entityChunks;
|
|
NullCheck(L_22);
|
|
Enumerator_tF5DDF189C56DD8FE4A5FC3E8C99C6F401F606A5A L_23;
|
|
L_23 = List_1_GetEnumerator_m23C9E22BBF7C218F713D09604F58A0FEEB1FCA9C(L_22, List_1_GetEnumerator_m23C9E22BBF7C218F713D09604F58A0FEEB1FCA9C_RuntimeMethod_var);
|
|
V_0 = L_23;
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_0128:
|
|
{
|
|
Enumerator_Dispose_mE4288E0F12F7086A80CD684C0A0F919FD1DDACEC((&V_0), Enumerator_Dispose_mE4288E0F12F7086A80CD684C0A0F919FD1DDACEC_RuntimeMethod_var);
|
|
return;
|
|
}
|
|
});
|
|
try
|
|
{
|
|
{
|
|
goto IL_011d_1;
|
|
}
|
|
|
|
IL_0111_1:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:522>
|
|
DecalEntityChunk_t2CDCBFA35711DA074631D26572EF9755A3AD740C* L_24;
|
|
L_24 = Enumerator_get_Current_m4EFC47E612DA489655B9850C2E9BA6B0CF084CB4_inline((&V_0), Enumerator_get_Current_m4EFC47E612DA489655B9850C2E9BA6B0CF084CB4_RuntimeMethod_var);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:523>
|
|
NullCheck(L_24);
|
|
VirtualActionInvoker0::Invoke(8, L_24);
|
|
}
|
|
|
|
IL_011d_1:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:522>
|
|
bool L_25;
|
|
L_25 = Enumerator_MoveNext_m80A18F75B452473B49786B16A4654E2C139E8290((&V_0), Enumerator_MoveNext_m80A18F75B452473B49786B16A4654E2C139E8290_RuntimeMethod_var);
|
|
if (L_25)
|
|
{
|
|
goto IL_0111_1;
|
|
}
|
|
}
|
|
{
|
|
goto IL_0136;
|
|
}
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_0136:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:524>
|
|
List_1_t1A9527CB44249AD17D081A2D7A468343FC2D0720* L_26 = __this->___cachedChunks;
|
|
NullCheck(L_26);
|
|
Enumerator_t1F37311553599DE64203CA50CD1BC7A504A73BBF L_27;
|
|
L_27 = List_1_GetEnumerator_m8915322E9C7EBA21ED46FBA090753AFA6A0E1DEB(L_26, List_1_GetEnumerator_m8915322E9C7EBA21ED46FBA090753AFA6A0E1DEB_RuntimeMethod_var);
|
|
V_2 = L_27;
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_015b:
|
|
{
|
|
Enumerator_Dispose_mF97C2EAF7C0D8F5E7C7EA1012A4FE2DD163EE706((&V_2), Enumerator_Dispose_mF97C2EAF7C0D8F5E7C7EA1012A4FE2DD163EE706_RuntimeMethod_var);
|
|
return;
|
|
}
|
|
});
|
|
try
|
|
{
|
|
{
|
|
goto IL_0150_1;
|
|
}
|
|
|
|
IL_0144_1:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:524>
|
|
DecalCachedChunk_tDEF493C8A3A1F442BDEC1794BDDA0996B32DCACE* L_28;
|
|
L_28 = Enumerator_get_Current_m67F4DA2EB9B115CC3A70504BA7DC25214A662BE6_inline((&V_2), Enumerator_get_Current_m67F4DA2EB9B115CC3A70504BA7DC25214A662BE6_RuntimeMethod_var);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:525>
|
|
NullCheck(L_28);
|
|
VirtualActionInvoker0::Invoke(8, L_28);
|
|
}
|
|
|
|
IL_0150_1:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:524>
|
|
bool L_29;
|
|
L_29 = Enumerator_MoveNext_mF0240F1FA41F980A8C237D12729A3CC0455CEC12((&V_2), Enumerator_MoveNext_mF0240F1FA41F980A8C237D12729A3CC0455CEC12_RuntimeMethod_var);
|
|
if (L_29)
|
|
{
|
|
goto IL_0144_1;
|
|
}
|
|
}
|
|
{
|
|
goto IL_0169;
|
|
}
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_0169:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:526>
|
|
List_1_t2E25D2E682EF62FB0FC538A4C88B3D49616A03DC* L_30 = __this->___culledChunks;
|
|
NullCheck(L_30);
|
|
Enumerator_t490DE54C026ACEB8ECD91DB31ED7D8427892ADA9 L_31;
|
|
L_31 = List_1_GetEnumerator_m07A4E7847EE8277BA708A9F86E35AB330B3EF1D2(L_30, List_1_GetEnumerator_m07A4E7847EE8277BA708A9F86E35AB330B3EF1D2_RuntimeMethod_var);
|
|
V_3 = L_31;
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_018e:
|
|
{
|
|
Enumerator_Dispose_m0E06EF2FB18AE1B60D0DE5101EA8F8CC0EF67689((&V_3), Enumerator_Dispose_m0E06EF2FB18AE1B60D0DE5101EA8F8CC0EF67689_RuntimeMethod_var);
|
|
return;
|
|
}
|
|
});
|
|
try
|
|
{
|
|
{
|
|
goto IL_0183_1;
|
|
}
|
|
|
|
IL_0177_1:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:526>
|
|
DecalCulledChunk_tFD4472F0ADDD173C7B13E8B0529983E745F12ED3* L_32;
|
|
L_32 = Enumerator_get_Current_mA19BF2A9BBB4A17BBFB2F68F59D890B9498C2583_inline((&V_3), Enumerator_get_Current_mA19BF2A9BBB4A17BBFB2F68F59D890B9498C2583_RuntimeMethod_var);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:527>
|
|
NullCheck(L_32);
|
|
VirtualActionInvoker0::Invoke(8, L_32);
|
|
}
|
|
|
|
IL_0183_1:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:526>
|
|
bool L_33;
|
|
L_33 = Enumerator_MoveNext_mEABB682BDEAD268B7AB57DA26D04B95248950EA9((&V_3), Enumerator_MoveNext_mEABB682BDEAD268B7AB57DA26D04B95248950EA9_RuntimeMethod_var);
|
|
if (L_33)
|
|
{
|
|
goto IL_0177_1;
|
|
}
|
|
}
|
|
{
|
|
goto IL_019c;
|
|
}
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_019c:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:528>
|
|
List_1_tD8DB23A94A44626CAF7E9B5B4A949D0FDC7B27A7* L_34 = __this->___drawCallChunks;
|
|
NullCheck(L_34);
|
|
Enumerator_t7923C0941406E673B314ADFF77ADC30A63D17CCA L_35;
|
|
L_35 = List_1_GetEnumerator_m048B7AA90802D503194E9B6B953CDF1CDC94E003(L_34, List_1_GetEnumerator_m048B7AA90802D503194E9B6B953CDF1CDC94E003_RuntimeMethod_var);
|
|
V_4 = L_35;
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_01c2:
|
|
{
|
|
Enumerator_Dispose_mBDE5AA338399D1BEA76AC9295E2287FE0B75522C((&V_4), Enumerator_Dispose_mBDE5AA338399D1BEA76AC9295E2287FE0B75522C_RuntimeMethod_var);
|
|
return;
|
|
}
|
|
});
|
|
try
|
|
{
|
|
{
|
|
goto IL_01b7_1;
|
|
}
|
|
|
|
IL_01ab_1:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:528>
|
|
DecalDrawCallChunk_tBD0491A1B0B7D19DF01A5C9EDE0A40CBEDBF7A3A* L_36;
|
|
L_36 = Enumerator_get_Current_m164BDCEA62768BF6A06F68A1A089947511244908_inline((&V_4), Enumerator_get_Current_m164BDCEA62768BF6A06F68A1A089947511244908_RuntimeMethod_var);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:529>
|
|
NullCheck(L_36);
|
|
VirtualActionInvoker0::Invoke(8, L_36);
|
|
}
|
|
|
|
IL_01b7_1:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:528>
|
|
bool L_37;
|
|
L_37 = Enumerator_MoveNext_m82285194E26D691AF9BF6A7233A0D951DFAB30E3((&V_4), Enumerator_MoveNext_m82285194E26D691AF9BF6A7233A0D951DFAB30E3_RuntimeMethod_var);
|
|
if (L_37)
|
|
{
|
|
goto IL_01ab_1;
|
|
}
|
|
}
|
|
{
|
|
goto IL_01d0;
|
|
}
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_01d0:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:531>
|
|
DecalEntityIndexer_t884A1F60E13512A2DE8CEC24635D2B3BE3FD3544* L_38 = __this->___m_DecalEntityIndexer;
|
|
NullCheck(L_38);
|
|
DecalEntityIndexer_Clear_mB2F145DD64704090E05D89AA285089FEEF780132(L_38, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:532>
|
|
Dictionary_2_t6EB10DF170874D02D43E115B0A1B93479CE3FF80* L_39 = __this->___m_MaterialToChunkIndex;
|
|
NullCheck(L_39);
|
|
Dictionary_2_Clear_m2AC070D7EA40F018A5B2A6F94C75362212F74014(L_39, Dictionary_2_Clear_m2AC070D7EA40F018A5B2A6F94C75362212F74014_RuntimeMethod_var);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:533>
|
|
List_1_t437E45D007C2D93DCB30DA30023CB2745EE095D0* L_40 = __this->___entityChunks;
|
|
NullCheck(L_40);
|
|
List_1_Clear_m38F519CFF9FD938D85EBA4335C73E4860C7AAEF5_inline(L_40, List_1_Clear_m38F519CFF9FD938D85EBA4335C73E4860C7AAEF5_RuntimeMethod_var);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:534>
|
|
List_1_t1A9527CB44249AD17D081A2D7A468343FC2D0720* L_41 = __this->___cachedChunks;
|
|
NullCheck(L_41);
|
|
List_1_Clear_m25927F960325907203BE756C7196321B782E2BA8_inline(L_41, List_1_Clear_m25927F960325907203BE756C7196321B782E2BA8_RuntimeMethod_var);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:535>
|
|
List_1_t2E25D2E682EF62FB0FC538A4C88B3D49616A03DC* L_42 = __this->___culledChunks;
|
|
NullCheck(L_42);
|
|
List_1_Clear_m931602651BB5880916DA414408E994815C32612D_inline(L_42, List_1_Clear_m931602651BB5880916DA414408E994815C32612D_RuntimeMethod_var);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:536>
|
|
List_1_tD8DB23A94A44626CAF7E9B5B4A949D0FDC7B27A7* L_43 = __this->___drawCallChunks;
|
|
NullCheck(L_43);
|
|
List_1_Clear_m0F2A6C272D949AFF5A0BFD4B2C0B326DF491E171_inline(L_43, List_1_Clear_m0F2A6C272D949AFF5A0BFD4B2C0B326DF491E171_RuntimeMethod_var);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:537>
|
|
List_1_t75FC6D059D696BAD77462D09FCDC98B4A7B7D3D4* L_44 = __this->___m_CombinedChunks;
|
|
NullCheck(L_44);
|
|
List_1_Clear_mF3D2F0801D0D95591EAFF99E087D27BE7EABA697_inline(L_44, List_1_Clear_mF3D2F0801D0D95591EAFF99E087D27BE7EABA697_RuntimeMethod_var);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:538>
|
|
__this->___chunkCount = 0;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:539>
|
|
return;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
IL2CPP_EXTERN_C void CombinedChunks_tCFB3356163B9F9B0E31E0B194E9B415F83340ED9_marshal_pinvoke(const CombinedChunks_tCFB3356163B9F9B0E31E0B194E9B415F83340ED9& unmarshaled, CombinedChunks_tCFB3356163B9F9B0E31E0B194E9B415F83340ED9_marshaled_pinvoke& marshaled)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CombinedChunks_tCFB3356163B9F9B0E31E0B194E9B415F83340ED9_0_0_0_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CombinedChunks_tCFB3356163B9F9B0E31E0B194E9B415F83340ED9____entityChunk_FieldInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
Exception_t* ___entityChunkException = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field '%s' of type '%s': Reference type field marshaling is not supported.", CombinedChunks_tCFB3356163B9F9B0E31E0B194E9B415F83340ED9____entityChunk_FieldInfo_var, CombinedChunks_tCFB3356163B9F9B0E31E0B194E9B415F83340ED9_0_0_0_var);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(___entityChunkException, NULL);
|
|
}
|
|
IL2CPP_EXTERN_C void CombinedChunks_tCFB3356163B9F9B0E31E0B194E9B415F83340ED9_marshal_pinvoke_back(const CombinedChunks_tCFB3356163B9F9B0E31E0B194E9B415F83340ED9_marshaled_pinvoke& marshaled, CombinedChunks_tCFB3356163B9F9B0E31E0B194E9B415F83340ED9& unmarshaled)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CombinedChunks_tCFB3356163B9F9B0E31E0B194E9B415F83340ED9_0_0_0_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CombinedChunks_tCFB3356163B9F9B0E31E0B194E9B415F83340ED9____entityChunk_FieldInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
Exception_t* ___entityChunkException = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field '%s' of type '%s': Reference type field marshaling is not supported.", CombinedChunks_tCFB3356163B9F9B0E31E0B194E9B415F83340ED9____entityChunk_FieldInfo_var, CombinedChunks_tCFB3356163B9F9B0E31E0B194E9B415F83340ED9_0_0_0_var);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(___entityChunkException, NULL);
|
|
}
|
|
IL2CPP_EXTERN_C void CombinedChunks_tCFB3356163B9F9B0E31E0B194E9B415F83340ED9_marshal_pinvoke_cleanup(CombinedChunks_tCFB3356163B9F9B0E31E0B194E9B415F83340ED9_marshaled_pinvoke& marshaled)
|
|
{
|
|
}
|
|
IL2CPP_EXTERN_C void CombinedChunks_tCFB3356163B9F9B0E31E0B194E9B415F83340ED9_marshal_com(const CombinedChunks_tCFB3356163B9F9B0E31E0B194E9B415F83340ED9& unmarshaled, CombinedChunks_tCFB3356163B9F9B0E31E0B194E9B415F83340ED9_marshaled_com& marshaled)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CombinedChunks_tCFB3356163B9F9B0E31E0B194E9B415F83340ED9_0_0_0_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CombinedChunks_tCFB3356163B9F9B0E31E0B194E9B415F83340ED9____entityChunk_FieldInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
Exception_t* ___entityChunkException = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field '%s' of type '%s': Reference type field marshaling is not supported.", CombinedChunks_tCFB3356163B9F9B0E31E0B194E9B415F83340ED9____entityChunk_FieldInfo_var, CombinedChunks_tCFB3356163B9F9B0E31E0B194E9B415F83340ED9_0_0_0_var);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(___entityChunkException, NULL);
|
|
}
|
|
IL2CPP_EXTERN_C void CombinedChunks_tCFB3356163B9F9B0E31E0B194E9B415F83340ED9_marshal_com_back(const CombinedChunks_tCFB3356163B9F9B0E31E0B194E9B415F83340ED9_marshaled_com& marshaled, CombinedChunks_tCFB3356163B9F9B0E31E0B194E9B415F83340ED9& unmarshaled)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CombinedChunks_tCFB3356163B9F9B0E31E0B194E9B415F83340ED9_0_0_0_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CombinedChunks_tCFB3356163B9F9B0E31E0B194E9B415F83340ED9____entityChunk_FieldInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
Exception_t* ___entityChunkException = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field '%s' of type '%s': Reference type field marshaling is not supported.", CombinedChunks_tCFB3356163B9F9B0E31E0B194E9B415F83340ED9____entityChunk_FieldInfo_var, CombinedChunks_tCFB3356163B9F9B0E31E0B194E9B415F83340ED9_0_0_0_var);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(___entityChunkException, NULL);
|
|
}
|
|
IL2CPP_EXTERN_C void CombinedChunks_tCFB3356163B9F9B0E31E0B194E9B415F83340ED9_marshal_com_cleanup(CombinedChunks_tCFB3356163B9F9B0E31E0B194E9B415F83340ED9_marshaled_com& marshaled)
|
|
{
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// Method Definition Index: 33197
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__cctor_mD761F018625D953E217BF17C640F3F12C51341D3 (const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec_t982F331B7EDFDBCE7D881BB6DF31BAC0023967CC_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
U3CU3Ec_t982F331B7EDFDBCE7D881BB6DF31BAC0023967CC* L_0 = (U3CU3Ec_t982F331B7EDFDBCE7D881BB6DF31BAC0023967CC*)il2cpp_codegen_object_new(U3CU3Ec_t982F331B7EDFDBCE7D881BB6DF31BAC0023967CC_il2cpp_TypeInfo_var);
|
|
U3CU3Ec__ctor_m8E011C751B147615A55E30BBB86E8F81B0D52952(L_0, NULL);
|
|
((U3CU3Ec_t982F331B7EDFDBCE7D881BB6DF31BAC0023967CC_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t982F331B7EDFDBCE7D881BB6DF31BAC0023967CC_il2cpp_TypeInfo_var))->___U3CU3E9 = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&((U3CU3Ec_t982F331B7EDFDBCE7D881BB6DF31BAC0023967CC_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t982F331B7EDFDBCE7D881BB6DF31BAC0023967CC_il2cpp_TypeInfo_var))->___U3CU3E9), (void*)L_0);
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 33198
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__ctor_m8E011C751B147615A55E30BBB86E8F81B0D52952 (U3CU3Ec_t982F331B7EDFDBCE7D881BB6DF31BAC0023967CC* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 33199
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t U3CU3Ec_U3CUpdateU3Eb__26_0_m87A64C173CD8369E00BCE92FE54C3F36E362C322 (U3CU3Ec_t982F331B7EDFDBCE7D881BB6DF31BAC0023967CC* __this, CombinedChunks_tCFB3356163B9F9B0E31E0B194E9B415F83340ED9 ___0_a, CombinedChunks_tCFB3356163B9F9B0E31E0B194E9B415F83340ED9 ___1_b, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:434>
|
|
CombinedChunks_tCFB3356163B9F9B0E31E0B194E9B415F83340ED9 L_0 = ___0_a;
|
|
bool L_1 = L_0.___valid;
|
|
if (!L_1)
|
|
{
|
|
goto IL_0012;
|
|
}
|
|
}
|
|
{
|
|
CombinedChunks_tCFB3356163B9F9B0E31E0B194E9B415F83340ED9 L_2 = ___1_b;
|
|
bool L_3 = L_2.___valid;
|
|
if (L_3)
|
|
{
|
|
goto IL_0012;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:435>
|
|
return (-1);
|
|
}
|
|
|
|
IL_0012:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:436>
|
|
CombinedChunks_tCFB3356163B9F9B0E31E0B194E9B415F83340ED9 L_4 = ___0_a;
|
|
bool L_5 = L_4.___valid;
|
|
if (L_5)
|
|
{
|
|
goto IL_0024;
|
|
}
|
|
}
|
|
{
|
|
CombinedChunks_tCFB3356163B9F9B0E31E0B194E9B415F83340ED9 L_6 = ___1_b;
|
|
bool L_7 = L_6.___valid;
|
|
if (!L_7)
|
|
{
|
|
goto IL_0024;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:437>
|
|
return 1;
|
|
}
|
|
|
|
IL_0024:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:439>
|
|
CombinedChunks_tCFB3356163B9F9B0E31E0B194E9B415F83340ED9 L_8 = ___0_a;
|
|
DecalCachedChunk_tDEF493C8A3A1F442BDEC1794BDDA0996B32DCACE* L_9 = L_8.___cachedChunk;
|
|
NullCheck(L_9);
|
|
int32_t L_10 = L_9->___drawOrder;
|
|
CombinedChunks_tCFB3356163B9F9B0E31E0B194E9B415F83340ED9 L_11 = ___1_b;
|
|
DecalCachedChunk_tDEF493C8A3A1F442BDEC1794BDDA0996B32DCACE* L_12 = L_11.___cachedChunk;
|
|
NullCheck(L_12);
|
|
int32_t L_13 = L_12->___drawOrder;
|
|
if ((((int32_t)L_10) >= ((int32_t)L_13)))
|
|
{
|
|
goto IL_003e;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:440>
|
|
return (-1);
|
|
}
|
|
|
|
IL_003e:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:441>
|
|
CombinedChunks_tCFB3356163B9F9B0E31E0B194E9B415F83340ED9 L_14 = ___0_a;
|
|
DecalCachedChunk_tDEF493C8A3A1F442BDEC1794BDDA0996B32DCACE* L_15 = L_14.___cachedChunk;
|
|
NullCheck(L_15);
|
|
int32_t L_16 = L_15->___drawOrder;
|
|
CombinedChunks_tCFB3356163B9F9B0E31E0B194E9B415F83340ED9 L_17 = ___1_b;
|
|
DecalCachedChunk_tDEF493C8A3A1F442BDEC1794BDDA0996B32DCACE* L_18 = L_17.___cachedChunk;
|
|
NullCheck(L_18);
|
|
int32_t L_19 = L_18->___drawOrder;
|
|
if ((((int32_t)L_16) <= ((int32_t)L_19)))
|
|
{
|
|
goto IL_0058;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:442>
|
|
return 1;
|
|
}
|
|
|
|
IL_0058:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalEntityManager.cs:443>
|
|
CombinedChunks_tCFB3356163B9F9B0E31E0B194E9B415F83340ED9 L_20 = ___0_a;
|
|
DecalEntityChunk_t2CDCBFA35711DA074631D26572EF9755A3AD740C* L_21 = L_20.___entityChunk;
|
|
NullCheck(L_21);
|
|
Material_t18053F08F347D0DCA5E1140EC7EC4533DD8A14E3* L_22 = L_21->___material;
|
|
NullCheck(L_22);
|
|
int32_t L_23;
|
|
L_23 = VirtualFuncInvoker0< int32_t >::Invoke(2, L_22);
|
|
V_0 = L_23;
|
|
CombinedChunks_tCFB3356163B9F9B0E31E0B194E9B415F83340ED9 L_24 = ___1_b;
|
|
DecalEntityChunk_t2CDCBFA35711DA074631D26572EF9755A3AD740C* L_25 = L_24.___entityChunk;
|
|
NullCheck(L_25);
|
|
Material_t18053F08F347D0DCA5E1140EC7EC4533DD8A14E3* L_26 = L_25->___material;
|
|
NullCheck(L_26);
|
|
int32_t L_27;
|
|
L_27 = VirtualFuncInvoker0< int32_t >::Invoke(2, L_26);
|
|
int32_t L_28;
|
|
L_28 = Int32_CompareTo_mFA011811D4447442ED442B4A507BD4267621C586((&V_0), L_27, NULL);
|
|
return L_28;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// Method Definition Index: 33200
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DecalSkipCulledSystem__ctor_mE9B76A882F6B06341D1C09BCFB0C7BFB3CC1C951 (DecalSkipCulledSystem_tBE639384B2E60736F4BD7E7A5DC71A9F8AF84B1C* __this, DecalEntityManager_tDA689202786946588782A67EF3F0B0D9121C294A* ___0_entityManager, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ProfilingSampler_t420D4672EDB44E0EF980B31ADFD9E5747200FECE_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral35B24BB26A8CE829F2885203EE6FEF13E05EE7CB);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalSkipCulledSystem.cs:15>
|
|
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalSkipCulledSystem.cs:17>
|
|
DecalEntityManager_tDA689202786946588782A67EF3F0B0D9121C294A* L_0 = ___0_entityManager;
|
|
__this->___m_EntityManager = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_EntityManager), (void*)L_0);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalSkipCulledSystem.cs:18>
|
|
ProfilingSampler_t420D4672EDB44E0EF980B31ADFD9E5747200FECE* L_1 = (ProfilingSampler_t420D4672EDB44E0EF980B31ADFD9E5747200FECE*)il2cpp_codegen_object_new(ProfilingSampler_t420D4672EDB44E0EF980B31ADFD9E5747200FECE_il2cpp_TypeInfo_var);
|
|
ProfilingSampler__ctor_m26500989FCDB07FA33C9A3BB7F215CBD892F5BB7(L_1, _stringLiteral35B24BB26A8CE829F2885203EE6FEF13E05EE7CB, NULL);
|
|
__this->___m_Sampler = L_1;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_Sampler), (void*)L_1);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalSkipCulledSystem.cs:19>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 33201
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DecalSkipCulledSystem_Execute_m5CD567108A793D03C5E994A9F635ACC874F602D0 (DecalSkipCulledSystem_tBE639384B2E60736F4BD7E7A5DC71A9F8AF84B1C* __this, Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184* ___0_camera, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Item_m1678465F50522CE2FAF1BB8EA6969B91268E5FA3_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
ProfilingScope_t57898BA31E8EF8F083EF84E0DA2737AC61CBC5BD V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
int32_t V_1 = 0;
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalSkipCulledSystem.cs:23>
|
|
ProfilingSampler_t420D4672EDB44E0EF980B31ADFD9E5747200FECE* L_0 = __this->___m_Sampler;
|
|
ProfilingScope__ctor_m4B73587A2295443A73B64DDD3D484D8EAECC0D65((&V_0), L_0, NULL);
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_0059:
|
|
{
|
|
ProfilingScope_Dispose_m4231A2ACA1F8E345BB0078310A9F7601704C8BE4((&V_0), NULL);
|
|
return;
|
|
}
|
|
});
|
|
try
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalSkipCulledSystem.cs:25>
|
|
Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184* L_1 = ___0_camera;
|
|
__this->___m_Camera = L_1;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_Camera), (void*)L_1);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalSkipCulledSystem.cs:26>
|
|
V_1 = 0;
|
|
goto IL_0049_1;
|
|
}
|
|
|
|
IL_0018_1:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalSkipCulledSystem.cs:27>
|
|
DecalEntityManager_tDA689202786946588782A67EF3F0B0D9121C294A* L_2 = __this->___m_EntityManager;
|
|
NullCheck(L_2);
|
|
List_1_t2E25D2E682EF62FB0FC538A4C88B3D49616A03DC* L_3 = L_2->___culledChunks;
|
|
int32_t L_4 = V_1;
|
|
NullCheck(L_3);
|
|
DecalCulledChunk_tFD4472F0ADDD173C7B13E8B0529983E745F12ED3* L_5;
|
|
L_5 = List_1_get_Item_m1678465F50522CE2FAF1BB8EA6969B91268E5FA3(L_3, L_4, List_1_get_Item_m1678465F50522CE2FAF1BB8EA6969B91268E5FA3_RuntimeMethod_var);
|
|
DecalEntityManager_tDA689202786946588782A67EF3F0B0D9121C294A* L_6 = __this->___m_EntityManager;
|
|
NullCheck(L_6);
|
|
List_1_t2E25D2E682EF62FB0FC538A4C88B3D49616A03DC* L_7 = L_6->___culledChunks;
|
|
int32_t L_8 = V_1;
|
|
NullCheck(L_7);
|
|
DecalCulledChunk_tFD4472F0ADDD173C7B13E8B0529983E745F12ED3* L_9;
|
|
L_9 = List_1_get_Item_m1678465F50522CE2FAF1BB8EA6969B91268E5FA3(L_7, L_8, List_1_get_Item_m1678465F50522CE2FAF1BB8EA6969B91268E5FA3_RuntimeMethod_var);
|
|
NullCheck(L_9);
|
|
int32_t L_10;
|
|
L_10 = DecalChunk_get_count_mEF67D584A3FF77C4A87A916D5F464D91D47C4B17_inline(L_9, NULL);
|
|
DecalSkipCulledSystem_Execute_mDC2DF5766BCD4D7E67F87FED548D47580980BB29(__this, L_5, L_10, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalSkipCulledSystem.cs:26>
|
|
int32_t L_11 = V_1;
|
|
V_1 = ((int32_t)il2cpp_codegen_add(L_11, 1));
|
|
}
|
|
|
|
IL_0049_1:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalSkipCulledSystem.cs:26>
|
|
int32_t L_12 = V_1;
|
|
DecalEntityManager_tDA689202786946588782A67EF3F0B0D9121C294A* L_13 = __this->___m_EntityManager;
|
|
NullCheck(L_13);
|
|
int32_t L_14 = L_13->___chunkCount;
|
|
if ((((int32_t)L_12) < ((int32_t)L_14)))
|
|
{
|
|
goto IL_0018_1;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalSkipCulledSystem.cs:28>
|
|
goto IL_0067;
|
|
}
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_0067:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalSkipCulledSystem.cs:29>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 33202
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DecalSkipCulledSystem_Execute_mDC2DF5766BCD4D7E67F87FED548D47580980BB29 (DecalSkipCulledSystem_tBE639384B2E60736F4BD7E7A5DC71A9F8AF84B1C* __this, DecalCulledChunk_tFD4472F0ADDD173C7B13E8B0529983E745F12ED3* ___0_culledChunk, int32_t ___1_count, const RuntimeMethod* method)
|
|
{
|
|
JobHandle_t5DF5F99902FED3C801A81C05205CEA6CE039EF08 V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
int32_t V_1 = 0;
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalSkipCulledSystem.cs:33>
|
|
int32_t L_0 = ___1_count;
|
|
if (L_0)
|
|
{
|
|
goto IL_0004;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalSkipCulledSystem.cs:34>
|
|
return;
|
|
}
|
|
|
|
IL_0004:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalSkipCulledSystem.cs:36>
|
|
DecalCulledChunk_tFD4472F0ADDD173C7B13E8B0529983E745F12ED3* L_1 = ___0_culledChunk;
|
|
NullCheck(L_1);
|
|
JobHandle_t5DF5F99902FED3C801A81C05205CEA6CE039EF08 L_2;
|
|
L_2 = DecalChunk_get_currentJobHandle_m0EBD28118EB20E5BBC3BE831171CD2CDC745AAD4_inline(L_1, NULL);
|
|
V_0 = L_2;
|
|
JobHandle_Complete_mDCED35A125AAB37EDDAB2E31C805B4904B614A4A((&V_0), NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalSkipCulledSystem.cs:38>
|
|
V_1 = 0;
|
|
goto IL_0027;
|
|
}
|
|
|
|
IL_0016:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalSkipCulledSystem.cs:39>
|
|
DecalCulledChunk_tFD4472F0ADDD173C7B13E8B0529983E745F12ED3* L_3 = ___0_culledChunk;
|
|
NullCheck(L_3);
|
|
NativeArray_1_tA833EB7E3E1C9AF82C37976AD964B8D4BAC38B2C* L_4 = (NativeArray_1_tA833EB7E3E1C9AF82C37976AD964B8D4BAC38B2C*)(&L_3->___visibleDecalIndices);
|
|
int32_t L_5 = V_1;
|
|
int32_t L_6 = V_1;
|
|
IL2CPP_NATIVEARRAY_SET_ITEM(int32_t, (L_4)->___m_Buffer, L_5, (L_6));
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalSkipCulledSystem.cs:38>
|
|
int32_t L_7 = V_1;
|
|
V_1 = ((int32_t)il2cpp_codegen_add(L_7, 1));
|
|
}
|
|
|
|
IL_0027:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalSkipCulledSystem.cs:38>
|
|
int32_t L_8 = V_1;
|
|
int32_t L_9 = ___1_count;
|
|
if ((((int32_t)L_8) < ((int32_t)L_9)))
|
|
{
|
|
goto IL_0016;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalSkipCulledSystem.cs:40>
|
|
DecalCulledChunk_tFD4472F0ADDD173C7B13E8B0529983E745F12ED3* L_10 = ___0_culledChunk;
|
|
int32_t L_11 = ___1_count;
|
|
NullCheck(L_10);
|
|
L_10->___visibleDecalCount = L_11;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalSkipCulledSystem.cs:41>
|
|
DecalCulledChunk_tFD4472F0ADDD173C7B13E8B0529983E745F12ED3* L_12 = ___0_culledChunk;
|
|
Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184* L_13 = __this->___m_Camera;
|
|
NullCheck(L_13);
|
|
Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1* L_14;
|
|
L_14 = Component_get_transform_m2919A1D81931E6932C7F06D4C2F0AB8DDA9A5371(L_13, NULL);
|
|
NullCheck(L_14);
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_15;
|
|
L_15 = Transform_get_position_m69CD5FA214FDAE7BB701552943674846C220FDE1(L_14, NULL);
|
|
NullCheck(L_12);
|
|
L_12->___cameraPosition = L_15;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalSkipCulledSystem.cs:42>
|
|
DecalCulledChunk_tFD4472F0ADDD173C7B13E8B0529983E745F12ED3* L_16 = ___0_culledChunk;
|
|
Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184* L_17 = __this->___m_Camera;
|
|
NullCheck(L_17);
|
|
int32_t L_18;
|
|
L_18 = Camera_get_cullingMask_m6F5AFF8FB522F876D99E839BF77D8F27F26A1EF8(L_17, NULL);
|
|
NullCheck(L_16);
|
|
L_16->___cullingMask = L_18;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalSkipCulledSystem.cs:46>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 33203
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t DecalSkipCulledSystem_GetSceneCullingMaskFromCamera_m8DF5B3B1E44D6269B3278FF6CCF2022E44582E92 (Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184* ___0_camera, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalSkipCulledSystem.cs:65>
|
|
return ((int64_t)0);
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// Method Definition Index: 33204
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DecalCachedChunk_RemoveAtSwapBack_m4DB86BCC42CA8C1B1017818945AE20021EC4BC0D (DecalCachedChunk_tDEF493C8A3A1F442BDEC1794BDDA0996B32DCACE* __this, int32_t ___0_entityIndex, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DecalChunk_RemoveAtSwapBack_TisBoolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_m1386EBC4D7599F71F0B303F12813F0582E8F3100_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DecalChunk_RemoveAtSwapBack_TisBoundingSphere_t2DDB3D1711A6920C0ECA9217D3E4E14AFF03C010_m311450680094235BD4A769DB9E44144FADE76015_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DecalChunk_RemoveAtSwapBack_TisBoundingSphere_t2DDB3D1711A6920C0ECA9217D3E4E14AFF03C010_m6543A85EE8FF00637356B416DEDCF1177D22D345_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DecalChunk_RemoveAtSwapBack_TisDecalScaleMode_tBFFBA2F5E3B718BD9965A803920323CB8B6C208C_m26EEFF669A3ACEA48553FA735515456C63A33F25_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DecalChunk_RemoveAtSwapBack_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_m79F67135CEB14F4F697474A409493E057B89D759_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DecalChunk_RemoveAtSwapBack_TisSingle_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_m938CD70E1FF91D3803E9854F0872C6BE2F4CCD1B_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DecalChunk_RemoveAtSwapBack_TisUInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B_mF1836CDB48035A918A43ABAF39AF37C896E0C1BD_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DecalChunk_RemoveAtSwapBack_TisUInt64_t8F12534CC8FC4B5860F2A2CD1EE79D322E7A41AF_mBB7A6220A8A54E9F8DE79470ED3302F907D49F82_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DecalChunk_RemoveAtSwapBack_Tisfloat2_t24AA5C0F612B0672315EDAFEC9D9E7F1C4A5B0BA_mE510E702120051CBB3A9122BC1BA957B834E2D91_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DecalChunk_RemoveAtSwapBack_Tisfloat3_t4AB5D88249ADB24F69FFD0793E8ED25E1CC3745E_m3EB3E0A1DA38C90FA88EE269EC7BDA37C5EF1418_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DecalChunk_RemoveAtSwapBack_Tisfloat4_t89D9A294E7A79BD81BFBDD18654508532958555E_mB4FD1FD13539DAAD140535134857F4E7C2D61113_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DecalChunk_RemoveAtSwapBack_Tisfloat4x4_t7EDD16F7F57DC7F61A6302535F7C19FB97915DF2_mE225441B0A02C93487869B33817022EBF2023283_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DecalChunk_RemoveAtSwapBack_Tisquaternion_tD6BCBECAF088B9EBAE2345EC8534C7A1A4C910D4_m0D53FB632D8820AC1B5BB42DD60212A78423CCEA_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int32_t V_0 = 0;
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalUpdateCachedSystem.cs:41>
|
|
NativeArray_1_t63326FF687E26631308829A9CDB0C51D523D4E9A* L_0 = (NativeArray_1_t63326FF687E26631308829A9CDB0C51D523D4E9A*)(&__this->___decalToWorlds);
|
|
int32_t L_1 = ___0_entityIndex;
|
|
int32_t L_2;
|
|
L_2 = DecalChunk_get_count_mEF67D584A3FF77C4A87A916D5F464D91D47C4B17_inline(__this, NULL);
|
|
DecalChunk_RemoveAtSwapBack_Tisfloat4x4_t7EDD16F7F57DC7F61A6302535F7C19FB97915DF2_mE225441B0A02C93487869B33817022EBF2023283(__this, L_0, L_1, L_2, DecalChunk_RemoveAtSwapBack_Tisfloat4x4_t7EDD16F7F57DC7F61A6302535F7C19FB97915DF2_mE225441B0A02C93487869B33817022EBF2023283_RuntimeMethod_var);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalUpdateCachedSystem.cs:42>
|
|
NativeArray_1_t63326FF687E26631308829A9CDB0C51D523D4E9A* L_3 = (NativeArray_1_t63326FF687E26631308829A9CDB0C51D523D4E9A*)(&__this->___normalToWorlds);
|
|
int32_t L_4 = ___0_entityIndex;
|
|
int32_t L_5;
|
|
L_5 = DecalChunk_get_count_mEF67D584A3FF77C4A87A916D5F464D91D47C4B17_inline(__this, NULL);
|
|
DecalChunk_RemoveAtSwapBack_Tisfloat4x4_t7EDD16F7F57DC7F61A6302535F7C19FB97915DF2_mE225441B0A02C93487869B33817022EBF2023283(__this, L_3, L_4, L_5, DecalChunk_RemoveAtSwapBack_Tisfloat4x4_t7EDD16F7F57DC7F61A6302535F7C19FB97915DF2_mE225441B0A02C93487869B33817022EBF2023283_RuntimeMethod_var);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalUpdateCachedSystem.cs:43>
|
|
NativeArray_1_t63326FF687E26631308829A9CDB0C51D523D4E9A* L_6 = (NativeArray_1_t63326FF687E26631308829A9CDB0C51D523D4E9A*)(&__this->___sizeOffsets);
|
|
int32_t L_7 = ___0_entityIndex;
|
|
int32_t L_8;
|
|
L_8 = DecalChunk_get_count_mEF67D584A3FF77C4A87A916D5F464D91D47C4B17_inline(__this, NULL);
|
|
DecalChunk_RemoveAtSwapBack_Tisfloat4x4_t7EDD16F7F57DC7F61A6302535F7C19FB97915DF2_mE225441B0A02C93487869B33817022EBF2023283(__this, L_6, L_7, L_8, DecalChunk_RemoveAtSwapBack_Tisfloat4x4_t7EDD16F7F57DC7F61A6302535F7C19FB97915DF2_mE225441B0A02C93487869B33817022EBF2023283_RuntimeMethod_var);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalUpdateCachedSystem.cs:44>
|
|
NativeArray_1_t46D43179C2B71BAB34958401E08B5C5DA4488E9E* L_9 = (NativeArray_1_t46D43179C2B71BAB34958401E08B5C5DA4488E9E*)(&__this->___drawDistances);
|
|
int32_t L_10 = ___0_entityIndex;
|
|
int32_t L_11;
|
|
L_11 = DecalChunk_get_count_mEF67D584A3FF77C4A87A916D5F464D91D47C4B17_inline(__this, NULL);
|
|
DecalChunk_RemoveAtSwapBack_Tisfloat2_t24AA5C0F612B0672315EDAFEC9D9E7F1C4A5B0BA_mE510E702120051CBB3A9122BC1BA957B834E2D91(__this, L_9, L_10, L_11, DecalChunk_RemoveAtSwapBack_Tisfloat2_t24AA5C0F612B0672315EDAFEC9D9E7F1C4A5B0BA_mE510E702120051CBB3A9122BC1BA957B834E2D91_RuntimeMethod_var);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalUpdateCachedSystem.cs:45>
|
|
NativeArray_1_t46D43179C2B71BAB34958401E08B5C5DA4488E9E* L_12 = (NativeArray_1_t46D43179C2B71BAB34958401E08B5C5DA4488E9E*)(&__this->___angleFades);
|
|
int32_t L_13 = ___0_entityIndex;
|
|
int32_t L_14;
|
|
L_14 = DecalChunk_get_count_mEF67D584A3FF77C4A87A916D5F464D91D47C4B17_inline(__this, NULL);
|
|
DecalChunk_RemoveAtSwapBack_Tisfloat2_t24AA5C0F612B0672315EDAFEC9D9E7F1C4A5B0BA_mE510E702120051CBB3A9122BC1BA957B834E2D91(__this, L_12, L_13, L_14, DecalChunk_RemoveAtSwapBack_Tisfloat2_t24AA5C0F612B0672315EDAFEC9D9E7F1C4A5B0BA_mE510E702120051CBB3A9122BC1BA957B834E2D91_RuntimeMethod_var);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalUpdateCachedSystem.cs:46>
|
|
NativeArray_1_tB5EA234C6ABA1F626A4BEF4053D06783E15A3881* L_15 = (NativeArray_1_tB5EA234C6ABA1F626A4BEF4053D06783E15A3881*)(&__this->___uvScaleBias);
|
|
int32_t L_16 = ___0_entityIndex;
|
|
int32_t L_17;
|
|
L_17 = DecalChunk_get_count_mEF67D584A3FF77C4A87A916D5F464D91D47C4B17_inline(__this, NULL);
|
|
DecalChunk_RemoveAtSwapBack_Tisfloat4_t89D9A294E7A79BD81BFBDD18654508532958555E_mB4FD1FD13539DAAD140535134857F4E7C2D61113(__this, L_15, L_16, L_17, DecalChunk_RemoveAtSwapBack_Tisfloat4_t89D9A294E7A79BD81BFBDD18654508532958555E_mB4FD1FD13539DAAD140535134857F4E7C2D61113_RuntimeMethod_var);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalUpdateCachedSystem.cs:47>
|
|
NativeArray_1_tA833EB7E3E1C9AF82C37976AD964B8D4BAC38B2C* L_18 = (NativeArray_1_tA833EB7E3E1C9AF82C37976AD964B8D4BAC38B2C*)(&__this->___layerMasks);
|
|
int32_t L_19 = ___0_entityIndex;
|
|
int32_t L_20;
|
|
L_20 = DecalChunk_get_count_mEF67D584A3FF77C4A87A916D5F464D91D47C4B17_inline(__this, NULL);
|
|
DecalChunk_RemoveAtSwapBack_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_m79F67135CEB14F4F697474A409493E057B89D759(__this, L_18, L_19, L_20, DecalChunk_RemoveAtSwapBack_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_m79F67135CEB14F4F697474A409493E057B89D759_RuntimeMethod_var);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalUpdateCachedSystem.cs:48>
|
|
NativeArray_1_t07975297AD7F7512193094A7C0703BA872EF7A7B* L_21 = (NativeArray_1_t07975297AD7F7512193094A7C0703BA872EF7A7B*)(&__this->___sceneLayerMasks);
|
|
int32_t L_22 = ___0_entityIndex;
|
|
int32_t L_23;
|
|
L_23 = DecalChunk_get_count_mEF67D584A3FF77C4A87A916D5F464D91D47C4B17_inline(__this, NULL);
|
|
DecalChunk_RemoveAtSwapBack_TisUInt64_t8F12534CC8FC4B5860F2A2CD1EE79D322E7A41AF_mBB7A6220A8A54E9F8DE79470ED3302F907D49F82(__this, L_21, L_22, L_23, DecalChunk_RemoveAtSwapBack_TisUInt64_t8F12534CC8FC4B5860F2A2CD1EE79D322E7A41AF_mBB7A6220A8A54E9F8DE79470ED3302F907D49F82_RuntimeMethod_var);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalUpdateCachedSystem.cs:49>
|
|
NativeArray_1_t3848EE4B6647317212A754634DE6DBC90B99FBEF* L_24 = (NativeArray_1_t3848EE4B6647317212A754634DE6DBC90B99FBEF*)(&__this->___fadeFactors);
|
|
int32_t L_25 = ___0_entityIndex;
|
|
int32_t L_26;
|
|
L_26 = DecalChunk_get_count_mEF67D584A3FF77C4A87A916D5F464D91D47C4B17_inline(__this, NULL);
|
|
DecalChunk_RemoveAtSwapBack_TisSingle_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_m938CD70E1FF91D3803E9854F0872C6BE2F4CCD1B(__this, L_24, L_25, L_26, DecalChunk_RemoveAtSwapBack_TisSingle_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_m938CD70E1FF91D3803E9854F0872C6BE2F4CCD1B_RuntimeMethod_var);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalUpdateCachedSystem.cs:50>
|
|
BoundingSphereU5BU5D_tD7485B1D5D5A0EE26537B093423FC3AC149BEA47** L_27 = (BoundingSphereU5BU5D_tD7485B1D5D5A0EE26537B093423FC3AC149BEA47**)(&__this->___boundingSphereArray);
|
|
int32_t L_28 = ___0_entityIndex;
|
|
int32_t L_29;
|
|
L_29 = DecalChunk_get_count_mEF67D584A3FF77C4A87A916D5F464D91D47C4B17_inline(__this, NULL);
|
|
DecalChunk_RemoveAtSwapBack_TisBoundingSphere_t2DDB3D1711A6920C0ECA9217D3E4E14AFF03C010_m6543A85EE8FF00637356B416DEDCF1177D22D345(__this, L_27, L_28, L_29, DecalChunk_RemoveAtSwapBack_TisBoundingSphere_t2DDB3D1711A6920C0ECA9217D3E4E14AFF03C010_m6543A85EE8FF00637356B416DEDCF1177D22D345_RuntimeMethod_var);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalUpdateCachedSystem.cs:51>
|
|
NativeArray_1_t3D8121943984EEED49DC98DED560DCC6638111B6* L_30 = (NativeArray_1_t3D8121943984EEED49DC98DED560DCC6638111B6*)(&__this->___boundingSpheres);
|
|
int32_t L_31 = ___0_entityIndex;
|
|
int32_t L_32;
|
|
L_32 = DecalChunk_get_count_mEF67D584A3FF77C4A87A916D5F464D91D47C4B17_inline(__this, NULL);
|
|
DecalChunk_RemoveAtSwapBack_TisBoundingSphere_t2DDB3D1711A6920C0ECA9217D3E4E14AFF03C010_m311450680094235BD4A769DB9E44144FADE76015(__this, L_30, L_31, L_32, DecalChunk_RemoveAtSwapBack_TisBoundingSphere_t2DDB3D1711A6920C0ECA9217D3E4E14AFF03C010_m311450680094235BD4A769DB9E44144FADE76015_RuntimeMethod_var);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalUpdateCachedSystem.cs:52>
|
|
NativeArray_1_tB64676789FBC7DC3DA7BB2D7765883A285CA6065* L_33 = (NativeArray_1_tB64676789FBC7DC3DA7BB2D7765883A285CA6065*)(&__this->___scaleModes);
|
|
int32_t L_34 = ___0_entityIndex;
|
|
int32_t L_35;
|
|
L_35 = DecalChunk_get_count_mEF67D584A3FF77C4A87A916D5F464D91D47C4B17_inline(__this, NULL);
|
|
DecalChunk_RemoveAtSwapBack_TisDecalScaleMode_tBFFBA2F5E3B718BD9965A803920323CB8B6C208C_m26EEFF669A3ACEA48553FA735515456C63A33F25(__this, L_33, L_34, L_35, DecalChunk_RemoveAtSwapBack_TisDecalScaleMode_tBFFBA2F5E3B718BD9965A803920323CB8B6C208C_m26EEFF669A3ACEA48553FA735515456C63A33F25_RuntimeMethod_var);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalUpdateCachedSystem.cs:53>
|
|
NativeArray_1_t453E3DEA4CC9F1056F24E417C3308C35174BC184* L_36 = (NativeArray_1_t453E3DEA4CC9F1056F24E417C3308C35174BC184*)(&__this->___renderingLayerMasks);
|
|
int32_t L_37 = ___0_entityIndex;
|
|
int32_t L_38;
|
|
L_38 = DecalChunk_get_count_mEF67D584A3FF77C4A87A916D5F464D91D47C4B17_inline(__this, NULL);
|
|
DecalChunk_RemoveAtSwapBack_TisUInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B_mF1836CDB48035A918A43ABAF39AF37C896E0C1BD(__this, L_36, L_37, L_38, DecalChunk_RemoveAtSwapBack_TisUInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B_mF1836CDB48035A918A43ABAF39AF37C896E0C1BD_RuntimeMethod_var);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalUpdateCachedSystem.cs:54>
|
|
NativeArray_1_tEDE9DAD2CAE5954286BC0EF394A57ED0AC69FEE6* L_39 = (NativeArray_1_tEDE9DAD2CAE5954286BC0EF394A57ED0AC69FEE6*)(&__this->___positions);
|
|
int32_t L_40 = ___0_entityIndex;
|
|
int32_t L_41;
|
|
L_41 = DecalChunk_get_count_mEF67D584A3FF77C4A87A916D5F464D91D47C4B17_inline(__this, NULL);
|
|
DecalChunk_RemoveAtSwapBack_Tisfloat3_t4AB5D88249ADB24F69FFD0793E8ED25E1CC3745E_m3EB3E0A1DA38C90FA88EE269EC7BDA37C5EF1418(__this, L_39, L_40, L_41, DecalChunk_RemoveAtSwapBack_Tisfloat3_t4AB5D88249ADB24F69FFD0793E8ED25E1CC3745E_m3EB3E0A1DA38C90FA88EE269EC7BDA37C5EF1418_RuntimeMethod_var);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalUpdateCachedSystem.cs:55>
|
|
NativeArray_1_tE645174F30913B665DE45D85525F90B1F64E054A* L_42 = (NativeArray_1_tE645174F30913B665DE45D85525F90B1F64E054A*)(&__this->___rotation);
|
|
int32_t L_43 = ___0_entityIndex;
|
|
int32_t L_44;
|
|
L_44 = DecalChunk_get_count_mEF67D584A3FF77C4A87A916D5F464D91D47C4B17_inline(__this, NULL);
|
|
DecalChunk_RemoveAtSwapBack_Tisquaternion_tD6BCBECAF088B9EBAE2345EC8534C7A1A4C910D4_m0D53FB632D8820AC1B5BB42DD60212A78423CCEA(__this, L_42, L_43, L_44, DecalChunk_RemoveAtSwapBack_Tisquaternion_tD6BCBECAF088B9EBAE2345EC8534C7A1A4C910D4_m0D53FB632D8820AC1B5BB42DD60212A78423CCEA_RuntimeMethod_var);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalUpdateCachedSystem.cs:56>
|
|
NativeArray_1_tEDE9DAD2CAE5954286BC0EF394A57ED0AC69FEE6* L_45 = (NativeArray_1_tEDE9DAD2CAE5954286BC0EF394A57ED0AC69FEE6*)(&__this->___scales);
|
|
int32_t L_46 = ___0_entityIndex;
|
|
int32_t L_47;
|
|
L_47 = DecalChunk_get_count_mEF67D584A3FF77C4A87A916D5F464D91D47C4B17_inline(__this, NULL);
|
|
DecalChunk_RemoveAtSwapBack_Tisfloat3_t4AB5D88249ADB24F69FFD0793E8ED25E1CC3745E_m3EB3E0A1DA38C90FA88EE269EC7BDA37C5EF1418(__this, L_45, L_46, L_47, DecalChunk_RemoveAtSwapBack_Tisfloat3_t4AB5D88249ADB24F69FFD0793E8ED25E1CC3745E_m3EB3E0A1DA38C90FA88EE269EC7BDA37C5EF1418_RuntimeMethod_var);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalUpdateCachedSystem.cs:57>
|
|
NativeArray_1_t107C57D0357BCF9956A60495CD8FAADDF1D26AFB* L_48 = (NativeArray_1_t107C57D0357BCF9956A60495CD8FAADDF1D26AFB*)(&__this->___dirty);
|
|
int32_t L_49 = ___0_entityIndex;
|
|
int32_t L_50;
|
|
L_50 = DecalChunk_get_count_mEF67D584A3FF77C4A87A916D5F464D91D47C4B17_inline(__this, NULL);
|
|
DecalChunk_RemoveAtSwapBack_TisBoolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_m1386EBC4D7599F71F0B303F12813F0582E8F3100(__this, L_48, L_49, L_50, DecalChunk_RemoveAtSwapBack_TisBoolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_m1386EBC4D7599F71F0B303F12813F0582E8F3100_RuntimeMethod_var);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalUpdateCachedSystem.cs:58>
|
|
int32_t L_51;
|
|
L_51 = DecalChunk_get_count_mEF67D584A3FF77C4A87A916D5F464D91D47C4B17_inline(__this, NULL);
|
|
V_0 = L_51;
|
|
int32_t L_52 = V_0;
|
|
DecalChunk_set_count_m55DFD6DAB9893215E6FB8E81AB00257C21488EC8_inline(__this, ((int32_t)il2cpp_codegen_subtract(L_52, 1)), NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalUpdateCachedSystem.cs:59>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 33205
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DecalCachedChunk_SetCapacity_m5C8ACB6F3801E327C68392D39F4CC03205914012 (DecalCachedChunk_tDEF493C8A3A1F442BDEC1794BDDA0996B32DCACE* __this, int32_t ___0_newCapacity, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ArrayExtensions_ResizeArray_TisBoolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_m03C40A6C0546B3EF39F41B4F8A01F8069907134A_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ArrayExtensions_ResizeArray_TisBoundingSphere_t2DDB3D1711A6920C0ECA9217D3E4E14AFF03C010_m97ECB17020454F538CF86C6311BB0532F9D3AC07_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ArrayExtensions_ResizeArray_TisBoundingSphere_t2DDB3D1711A6920C0ECA9217D3E4E14AFF03C010_mF1480A26EB90FA28A36BD0EA5CED744A82C9E338_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ArrayExtensions_ResizeArray_TisDecalScaleMode_tBFFBA2F5E3B718BD9965A803920323CB8B6C208C_mC7E67A8F7D18470A4EF4DBEF1580A94A5F438FA7_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ArrayExtensions_ResizeArray_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_mCC1C29FFBD5857EE8A9D2DD4EECE68A25390D347_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ArrayExtensions_ResizeArray_TisSingle_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_m3093DA203EC655A89B97A720E0E41B9D1F6BF89D_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ArrayExtensions_ResizeArray_TisUInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B_mA7A1947DAC61D89594FD427B8866AF243CBCA65E_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ArrayExtensions_ResizeArray_TisUInt64_t8F12534CC8FC4B5860F2A2CD1EE79D322E7A41AF_mA7325AB0E73DB3008AF16F6B66B107118806D8D4_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ArrayExtensions_ResizeArray_Tisfloat2_t24AA5C0F612B0672315EDAFEC9D9E7F1C4A5B0BA_m4E50A7CF887E0894D0F694E2A529CD6AA5F064CE_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ArrayExtensions_ResizeArray_Tisfloat3_t4AB5D88249ADB24F69FFD0793E8ED25E1CC3745E_mB9C7AEADC1241624FC5482255B8B17E912B88EC6_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ArrayExtensions_ResizeArray_Tisfloat4_t89D9A294E7A79BD81BFBDD18654508532958555E_m0F046BCBBC1480B71939881BAC4C4F00A0B302CA_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ArrayExtensions_ResizeArray_Tisfloat4x4_t7EDD16F7F57DC7F61A6302535F7C19FB97915DF2_m4455C8B60BA08395D0B896AD808F0433ABCCA888_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ArrayExtensions_ResizeArray_Tisquaternion_tD6BCBECAF088B9EBAE2345EC8534C7A1A4C910D4_mCCC2A04B4AC663EC4E25A7A3EF7E3F73861ADFA1_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalUpdateCachedSystem.cs:63>
|
|
NativeArray_1_t63326FF687E26631308829A9CDB0C51D523D4E9A* L_0 = (NativeArray_1_t63326FF687E26631308829A9CDB0C51D523D4E9A*)(&__this->___decalToWorlds);
|
|
int32_t L_1 = ___0_newCapacity;
|
|
ArrayExtensions_ResizeArray_Tisfloat4x4_t7EDD16F7F57DC7F61A6302535F7C19FB97915DF2_m4455C8B60BA08395D0B896AD808F0433ABCCA888(L_0, L_1, ArrayExtensions_ResizeArray_Tisfloat4x4_t7EDD16F7F57DC7F61A6302535F7C19FB97915DF2_m4455C8B60BA08395D0B896AD808F0433ABCCA888_RuntimeMethod_var);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalUpdateCachedSystem.cs:64>
|
|
NativeArray_1_t63326FF687E26631308829A9CDB0C51D523D4E9A* L_2 = (NativeArray_1_t63326FF687E26631308829A9CDB0C51D523D4E9A*)(&__this->___normalToWorlds);
|
|
int32_t L_3 = ___0_newCapacity;
|
|
ArrayExtensions_ResizeArray_Tisfloat4x4_t7EDD16F7F57DC7F61A6302535F7C19FB97915DF2_m4455C8B60BA08395D0B896AD808F0433ABCCA888(L_2, L_3, ArrayExtensions_ResizeArray_Tisfloat4x4_t7EDD16F7F57DC7F61A6302535F7C19FB97915DF2_m4455C8B60BA08395D0B896AD808F0433ABCCA888_RuntimeMethod_var);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalUpdateCachedSystem.cs:65>
|
|
NativeArray_1_t63326FF687E26631308829A9CDB0C51D523D4E9A* L_4 = (NativeArray_1_t63326FF687E26631308829A9CDB0C51D523D4E9A*)(&__this->___sizeOffsets);
|
|
int32_t L_5 = ___0_newCapacity;
|
|
ArrayExtensions_ResizeArray_Tisfloat4x4_t7EDD16F7F57DC7F61A6302535F7C19FB97915DF2_m4455C8B60BA08395D0B896AD808F0433ABCCA888(L_4, L_5, ArrayExtensions_ResizeArray_Tisfloat4x4_t7EDD16F7F57DC7F61A6302535F7C19FB97915DF2_m4455C8B60BA08395D0B896AD808F0433ABCCA888_RuntimeMethod_var);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalUpdateCachedSystem.cs:66>
|
|
NativeArray_1_t46D43179C2B71BAB34958401E08B5C5DA4488E9E* L_6 = (NativeArray_1_t46D43179C2B71BAB34958401E08B5C5DA4488E9E*)(&__this->___drawDistances);
|
|
int32_t L_7 = ___0_newCapacity;
|
|
ArrayExtensions_ResizeArray_Tisfloat2_t24AA5C0F612B0672315EDAFEC9D9E7F1C4A5B0BA_m4E50A7CF887E0894D0F694E2A529CD6AA5F064CE(L_6, L_7, ArrayExtensions_ResizeArray_Tisfloat2_t24AA5C0F612B0672315EDAFEC9D9E7F1C4A5B0BA_m4E50A7CF887E0894D0F694E2A529CD6AA5F064CE_RuntimeMethod_var);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalUpdateCachedSystem.cs:67>
|
|
NativeArray_1_t46D43179C2B71BAB34958401E08B5C5DA4488E9E* L_8 = (NativeArray_1_t46D43179C2B71BAB34958401E08B5C5DA4488E9E*)(&__this->___angleFades);
|
|
int32_t L_9 = ___0_newCapacity;
|
|
ArrayExtensions_ResizeArray_Tisfloat2_t24AA5C0F612B0672315EDAFEC9D9E7F1C4A5B0BA_m4E50A7CF887E0894D0F694E2A529CD6AA5F064CE(L_8, L_9, ArrayExtensions_ResizeArray_Tisfloat2_t24AA5C0F612B0672315EDAFEC9D9E7F1C4A5B0BA_m4E50A7CF887E0894D0F694E2A529CD6AA5F064CE_RuntimeMethod_var);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalUpdateCachedSystem.cs:68>
|
|
NativeArray_1_tB5EA234C6ABA1F626A4BEF4053D06783E15A3881* L_10 = (NativeArray_1_tB5EA234C6ABA1F626A4BEF4053D06783E15A3881*)(&__this->___uvScaleBias);
|
|
int32_t L_11 = ___0_newCapacity;
|
|
ArrayExtensions_ResizeArray_Tisfloat4_t89D9A294E7A79BD81BFBDD18654508532958555E_m0F046BCBBC1480B71939881BAC4C4F00A0B302CA(L_10, L_11, ArrayExtensions_ResizeArray_Tisfloat4_t89D9A294E7A79BD81BFBDD18654508532958555E_m0F046BCBBC1480B71939881BAC4C4F00A0B302CA_RuntimeMethod_var);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalUpdateCachedSystem.cs:69>
|
|
NativeArray_1_tA833EB7E3E1C9AF82C37976AD964B8D4BAC38B2C* L_12 = (NativeArray_1_tA833EB7E3E1C9AF82C37976AD964B8D4BAC38B2C*)(&__this->___layerMasks);
|
|
int32_t L_13 = ___0_newCapacity;
|
|
ArrayExtensions_ResizeArray_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_mCC1C29FFBD5857EE8A9D2DD4EECE68A25390D347(L_12, L_13, ArrayExtensions_ResizeArray_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_mCC1C29FFBD5857EE8A9D2DD4EECE68A25390D347_RuntimeMethod_var);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalUpdateCachedSystem.cs:70>
|
|
NativeArray_1_t07975297AD7F7512193094A7C0703BA872EF7A7B* L_14 = (NativeArray_1_t07975297AD7F7512193094A7C0703BA872EF7A7B*)(&__this->___sceneLayerMasks);
|
|
int32_t L_15 = ___0_newCapacity;
|
|
ArrayExtensions_ResizeArray_TisUInt64_t8F12534CC8FC4B5860F2A2CD1EE79D322E7A41AF_mA7325AB0E73DB3008AF16F6B66B107118806D8D4(L_14, L_15, ArrayExtensions_ResizeArray_TisUInt64_t8F12534CC8FC4B5860F2A2CD1EE79D322E7A41AF_mA7325AB0E73DB3008AF16F6B66B107118806D8D4_RuntimeMethod_var);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalUpdateCachedSystem.cs:71>
|
|
NativeArray_1_t3848EE4B6647317212A754634DE6DBC90B99FBEF* L_16 = (NativeArray_1_t3848EE4B6647317212A754634DE6DBC90B99FBEF*)(&__this->___fadeFactors);
|
|
int32_t L_17 = ___0_newCapacity;
|
|
ArrayExtensions_ResizeArray_TisSingle_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_m3093DA203EC655A89B97A720E0E41B9D1F6BF89D(L_16, L_17, ArrayExtensions_ResizeArray_TisSingle_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_m3093DA203EC655A89B97A720E0E41B9D1F6BF89D_RuntimeMethod_var);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalUpdateCachedSystem.cs:72>
|
|
NativeArray_1_t3D8121943984EEED49DC98DED560DCC6638111B6* L_18 = (NativeArray_1_t3D8121943984EEED49DC98DED560DCC6638111B6*)(&__this->___boundingSpheres);
|
|
int32_t L_19 = ___0_newCapacity;
|
|
ArrayExtensions_ResizeArray_TisBoundingSphere_t2DDB3D1711A6920C0ECA9217D3E4E14AFF03C010_m97ECB17020454F538CF86C6311BB0532F9D3AC07(L_18, L_19, ArrayExtensions_ResizeArray_TisBoundingSphere_t2DDB3D1711A6920C0ECA9217D3E4E14AFF03C010_m97ECB17020454F538CF86C6311BB0532F9D3AC07_RuntimeMethod_var);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalUpdateCachedSystem.cs:73>
|
|
NativeArray_1_tB64676789FBC7DC3DA7BB2D7765883A285CA6065* L_20 = (NativeArray_1_tB64676789FBC7DC3DA7BB2D7765883A285CA6065*)(&__this->___scaleModes);
|
|
int32_t L_21 = ___0_newCapacity;
|
|
ArrayExtensions_ResizeArray_TisDecalScaleMode_tBFFBA2F5E3B718BD9965A803920323CB8B6C208C_mC7E67A8F7D18470A4EF4DBEF1580A94A5F438FA7(L_20, L_21, ArrayExtensions_ResizeArray_TisDecalScaleMode_tBFFBA2F5E3B718BD9965A803920323CB8B6C208C_mC7E67A8F7D18470A4EF4DBEF1580A94A5F438FA7_RuntimeMethod_var);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalUpdateCachedSystem.cs:74>
|
|
NativeArray_1_t453E3DEA4CC9F1056F24E417C3308C35174BC184* L_22 = (NativeArray_1_t453E3DEA4CC9F1056F24E417C3308C35174BC184*)(&__this->___renderingLayerMasks);
|
|
int32_t L_23 = ___0_newCapacity;
|
|
ArrayExtensions_ResizeArray_TisUInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B_mA7A1947DAC61D89594FD427B8866AF243CBCA65E(L_22, L_23, ArrayExtensions_ResizeArray_TisUInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B_mA7A1947DAC61D89594FD427B8866AF243CBCA65E_RuntimeMethod_var);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalUpdateCachedSystem.cs:75>
|
|
NativeArray_1_tEDE9DAD2CAE5954286BC0EF394A57ED0AC69FEE6* L_24 = (NativeArray_1_tEDE9DAD2CAE5954286BC0EF394A57ED0AC69FEE6*)(&__this->___positions);
|
|
int32_t L_25 = ___0_newCapacity;
|
|
ArrayExtensions_ResizeArray_Tisfloat3_t4AB5D88249ADB24F69FFD0793E8ED25E1CC3745E_mB9C7AEADC1241624FC5482255B8B17E912B88EC6(L_24, L_25, ArrayExtensions_ResizeArray_Tisfloat3_t4AB5D88249ADB24F69FFD0793E8ED25E1CC3745E_mB9C7AEADC1241624FC5482255B8B17E912B88EC6_RuntimeMethod_var);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalUpdateCachedSystem.cs:76>
|
|
NativeArray_1_tE645174F30913B665DE45D85525F90B1F64E054A* L_26 = (NativeArray_1_tE645174F30913B665DE45D85525F90B1F64E054A*)(&__this->___rotation);
|
|
int32_t L_27 = ___0_newCapacity;
|
|
ArrayExtensions_ResizeArray_Tisquaternion_tD6BCBECAF088B9EBAE2345EC8534C7A1A4C910D4_mCCC2A04B4AC663EC4E25A7A3EF7E3F73861ADFA1(L_26, L_27, ArrayExtensions_ResizeArray_Tisquaternion_tD6BCBECAF088B9EBAE2345EC8534C7A1A4C910D4_mCCC2A04B4AC663EC4E25A7A3EF7E3F73861ADFA1_RuntimeMethod_var);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalUpdateCachedSystem.cs:77>
|
|
NativeArray_1_tEDE9DAD2CAE5954286BC0EF394A57ED0AC69FEE6* L_28 = (NativeArray_1_tEDE9DAD2CAE5954286BC0EF394A57ED0AC69FEE6*)(&__this->___scales);
|
|
int32_t L_29 = ___0_newCapacity;
|
|
ArrayExtensions_ResizeArray_Tisfloat3_t4AB5D88249ADB24F69FFD0793E8ED25E1CC3745E_mB9C7AEADC1241624FC5482255B8B17E912B88EC6(L_28, L_29, ArrayExtensions_ResizeArray_Tisfloat3_t4AB5D88249ADB24F69FFD0793E8ED25E1CC3745E_mB9C7AEADC1241624FC5482255B8B17E912B88EC6_RuntimeMethod_var);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalUpdateCachedSystem.cs:78>
|
|
NativeArray_1_t107C57D0357BCF9956A60495CD8FAADDF1D26AFB* L_30 = (NativeArray_1_t107C57D0357BCF9956A60495CD8FAADDF1D26AFB*)(&__this->___dirty);
|
|
int32_t L_31 = ___0_newCapacity;
|
|
ArrayExtensions_ResizeArray_TisBoolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_m03C40A6C0546B3EF39F41B4F8A01F8069907134A(L_30, L_31, ArrayExtensions_ResizeArray_TisBoolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_m03C40A6C0546B3EF39F41B4F8A01F8069907134A_RuntimeMethod_var);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalUpdateCachedSystem.cs:80>
|
|
BoundingSphereU5BU5D_tD7485B1D5D5A0EE26537B093423FC3AC149BEA47** L_32 = (BoundingSphereU5BU5D_tD7485B1D5D5A0EE26537B093423FC3AC149BEA47**)(&__this->___boundingSphereArray);
|
|
int32_t L_33 = ___0_newCapacity;
|
|
ArrayExtensions_ResizeArray_TisBoundingSphere_t2DDB3D1711A6920C0ECA9217D3E4E14AFF03C010_mF1480A26EB90FA28A36BD0EA5CED744A82C9E338(L_32, L_33, ArrayExtensions_ResizeArray_TisBoundingSphere_t2DDB3D1711A6920C0ECA9217D3E4E14AFF03C010_mF1480A26EB90FA28A36BD0EA5CED744A82C9E338_RuntimeMethod_var);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalUpdateCachedSystem.cs:81>
|
|
int32_t L_34 = ___0_newCapacity;
|
|
DecalChunk_set_capacity_mB9107E4EB6FFDDEAD9D6DED6B83E65AC10E4E490_inline(__this, L_34, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalUpdateCachedSystem.cs:82>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 33206
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DecalCachedChunk_Dispose_m038F2D5509B7361804047F3E7F1C7784DB669DFA (DecalCachedChunk_tDEF493C8A3A1F442BDEC1794BDDA0996B32DCACE* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NativeArray_1_Dispose_m03F9BA2E0A4EED6DCA8AD4D9EC282F9B56DFE402_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NativeArray_1_Dispose_m05C674E687B921C37722A6A1FF938FD56574642E_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NativeArray_1_Dispose_m4D6B12321C5FF072AD5CD660E179FC761A52C22E_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NativeArray_1_Dispose_m5CBF60E97954A416106547EF28316741B674D253_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NativeArray_1_Dispose_m921D007BB17D47849CD74AB7FA825547CB828BBC_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NativeArray_1_Dispose_m994685B1A26FB0972542BE1216EBD59B332E880A_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NativeArray_1_Dispose_mAD3B69E4B23316C46AF8C35D7E1E81206323F16F_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NativeArray_1_Dispose_mBEC3B949F64875894612C6C8DF654E6C022DF5DF_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NativeArray_1_Dispose_mC07280A768D065A052D995F3E6175A27CD62E1F6_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NativeArray_1_Dispose_mE40D457AF008BEE531917D94D3A83296CCF8906C_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NativeArray_1_Dispose_mF001C61A295F2BF3561FD60654243ABFF09AF662_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NativeArray_1_Dispose_mF16E4FD33476D6947F979B1E1D9F901CE0A04344_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalUpdateCachedSystem.cs:86>
|
|
int32_t L_0;
|
|
L_0 = DecalChunk_get_capacity_m70E0A37FAAF474D0AC7277BCD11673777BA0C15A_inline(__this, NULL);
|
|
if (L_0)
|
|
{
|
|
goto IL_0009;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalUpdateCachedSystem.cs:87>
|
|
return;
|
|
}
|
|
|
|
IL_0009:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalUpdateCachedSystem.cs:89>
|
|
NativeArray_1_t63326FF687E26631308829A9CDB0C51D523D4E9A* L_1 = (NativeArray_1_t63326FF687E26631308829A9CDB0C51D523D4E9A*)(&__this->___decalToWorlds);
|
|
NativeArray_1_Dispose_m994685B1A26FB0972542BE1216EBD59B332E880A(L_1, NativeArray_1_Dispose_m994685B1A26FB0972542BE1216EBD59B332E880A_RuntimeMethod_var);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalUpdateCachedSystem.cs:90>
|
|
NativeArray_1_t63326FF687E26631308829A9CDB0C51D523D4E9A* L_2 = (NativeArray_1_t63326FF687E26631308829A9CDB0C51D523D4E9A*)(&__this->___normalToWorlds);
|
|
NativeArray_1_Dispose_m994685B1A26FB0972542BE1216EBD59B332E880A(L_2, NativeArray_1_Dispose_m994685B1A26FB0972542BE1216EBD59B332E880A_RuntimeMethod_var);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalUpdateCachedSystem.cs:91>
|
|
NativeArray_1_t63326FF687E26631308829A9CDB0C51D523D4E9A* L_3 = (NativeArray_1_t63326FF687E26631308829A9CDB0C51D523D4E9A*)(&__this->___sizeOffsets);
|
|
NativeArray_1_Dispose_m994685B1A26FB0972542BE1216EBD59B332E880A(L_3, NativeArray_1_Dispose_m994685B1A26FB0972542BE1216EBD59B332E880A_RuntimeMethod_var);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalUpdateCachedSystem.cs:92>
|
|
NativeArray_1_t46D43179C2B71BAB34958401E08B5C5DA4488E9E* L_4 = (NativeArray_1_t46D43179C2B71BAB34958401E08B5C5DA4488E9E*)(&__this->___drawDistances);
|
|
NativeArray_1_Dispose_mAD3B69E4B23316C46AF8C35D7E1E81206323F16F(L_4, NativeArray_1_Dispose_mAD3B69E4B23316C46AF8C35D7E1E81206323F16F_RuntimeMethod_var);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalUpdateCachedSystem.cs:93>
|
|
NativeArray_1_t46D43179C2B71BAB34958401E08B5C5DA4488E9E* L_5 = (NativeArray_1_t46D43179C2B71BAB34958401E08B5C5DA4488E9E*)(&__this->___angleFades);
|
|
NativeArray_1_Dispose_mAD3B69E4B23316C46AF8C35D7E1E81206323F16F(L_5, NativeArray_1_Dispose_mAD3B69E4B23316C46AF8C35D7E1E81206323F16F_RuntimeMethod_var);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalUpdateCachedSystem.cs:94>
|
|
NativeArray_1_tB5EA234C6ABA1F626A4BEF4053D06783E15A3881* L_6 = (NativeArray_1_tB5EA234C6ABA1F626A4BEF4053D06783E15A3881*)(&__this->___uvScaleBias);
|
|
NativeArray_1_Dispose_mF001C61A295F2BF3561FD60654243ABFF09AF662(L_6, NativeArray_1_Dispose_mF001C61A295F2BF3561FD60654243ABFF09AF662_RuntimeMethod_var);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalUpdateCachedSystem.cs:95>
|
|
NativeArray_1_tA833EB7E3E1C9AF82C37976AD964B8D4BAC38B2C* L_7 = (NativeArray_1_tA833EB7E3E1C9AF82C37976AD964B8D4BAC38B2C*)(&__this->___layerMasks);
|
|
NativeArray_1_Dispose_m05C674E687B921C37722A6A1FF938FD56574642E(L_7, NativeArray_1_Dispose_m05C674E687B921C37722A6A1FF938FD56574642E_RuntimeMethod_var);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalUpdateCachedSystem.cs:96>
|
|
NativeArray_1_t07975297AD7F7512193094A7C0703BA872EF7A7B* L_8 = (NativeArray_1_t07975297AD7F7512193094A7C0703BA872EF7A7B*)(&__this->___sceneLayerMasks);
|
|
NativeArray_1_Dispose_m5CBF60E97954A416106547EF28316741B674D253(L_8, NativeArray_1_Dispose_m5CBF60E97954A416106547EF28316741B674D253_RuntimeMethod_var);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalUpdateCachedSystem.cs:97>
|
|
NativeArray_1_t3848EE4B6647317212A754634DE6DBC90B99FBEF* L_9 = (NativeArray_1_t3848EE4B6647317212A754634DE6DBC90B99FBEF*)(&__this->___fadeFactors);
|
|
NativeArray_1_Dispose_mC07280A768D065A052D995F3E6175A27CD62E1F6(L_9, NativeArray_1_Dispose_mC07280A768D065A052D995F3E6175A27CD62E1F6_RuntimeMethod_var);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalUpdateCachedSystem.cs:98>
|
|
NativeArray_1_t3D8121943984EEED49DC98DED560DCC6638111B6* L_10 = (NativeArray_1_t3D8121943984EEED49DC98DED560DCC6638111B6*)(&__this->___boundingSpheres);
|
|
NativeArray_1_Dispose_m4D6B12321C5FF072AD5CD660E179FC761A52C22E(L_10, NativeArray_1_Dispose_m4D6B12321C5FF072AD5CD660E179FC761A52C22E_RuntimeMethod_var);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalUpdateCachedSystem.cs:99>
|
|
NativeArray_1_tB64676789FBC7DC3DA7BB2D7765883A285CA6065* L_11 = (NativeArray_1_tB64676789FBC7DC3DA7BB2D7765883A285CA6065*)(&__this->___scaleModes);
|
|
NativeArray_1_Dispose_mBEC3B949F64875894612C6C8DF654E6C022DF5DF(L_11, NativeArray_1_Dispose_mBEC3B949F64875894612C6C8DF654E6C022DF5DF_RuntimeMethod_var);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalUpdateCachedSystem.cs:100>
|
|
NativeArray_1_t453E3DEA4CC9F1056F24E417C3308C35174BC184* L_12 = (NativeArray_1_t453E3DEA4CC9F1056F24E417C3308C35174BC184*)(&__this->___renderingLayerMasks);
|
|
NativeArray_1_Dispose_m921D007BB17D47849CD74AB7FA825547CB828BBC(L_12, NativeArray_1_Dispose_m921D007BB17D47849CD74AB7FA825547CB828BBC_RuntimeMethod_var);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalUpdateCachedSystem.cs:101>
|
|
NativeArray_1_tEDE9DAD2CAE5954286BC0EF394A57ED0AC69FEE6* L_13 = (NativeArray_1_tEDE9DAD2CAE5954286BC0EF394A57ED0AC69FEE6*)(&__this->___positions);
|
|
NativeArray_1_Dispose_mE40D457AF008BEE531917D94D3A83296CCF8906C(L_13, NativeArray_1_Dispose_mE40D457AF008BEE531917D94D3A83296CCF8906C_RuntimeMethod_var);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalUpdateCachedSystem.cs:102>
|
|
NativeArray_1_tE645174F30913B665DE45D85525F90B1F64E054A* L_14 = (NativeArray_1_tE645174F30913B665DE45D85525F90B1F64E054A*)(&__this->___rotation);
|
|
NativeArray_1_Dispose_m03F9BA2E0A4EED6DCA8AD4D9EC282F9B56DFE402(L_14, NativeArray_1_Dispose_m03F9BA2E0A4EED6DCA8AD4D9EC282F9B56DFE402_RuntimeMethod_var);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalUpdateCachedSystem.cs:103>
|
|
NativeArray_1_tEDE9DAD2CAE5954286BC0EF394A57ED0AC69FEE6* L_15 = (NativeArray_1_tEDE9DAD2CAE5954286BC0EF394A57ED0AC69FEE6*)(&__this->___scales);
|
|
NativeArray_1_Dispose_mE40D457AF008BEE531917D94D3A83296CCF8906C(L_15, NativeArray_1_Dispose_mE40D457AF008BEE531917D94D3A83296CCF8906C_RuntimeMethod_var);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalUpdateCachedSystem.cs:104>
|
|
NativeArray_1_t107C57D0357BCF9956A60495CD8FAADDF1D26AFB* L_16 = (NativeArray_1_t107C57D0357BCF9956A60495CD8FAADDF1D26AFB*)(&__this->___dirty);
|
|
NativeArray_1_Dispose_mF16E4FD33476D6947F979B1E1D9F901CE0A04344(L_16, NativeArray_1_Dispose_mF16E4FD33476D6947F979B1E1D9F901CE0A04344_RuntimeMethod_var);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalUpdateCachedSystem.cs:105>
|
|
DecalChunk_set_count_m55DFD6DAB9893215E6FB8E81AB00257C21488EC8_inline(__this, 0, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalUpdateCachedSystem.cs:106>
|
|
DecalChunk_set_capacity_mB9107E4EB6FFDDEAD9D6DED6B83E65AC10E4E490_inline(__this, 0, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalUpdateCachedSystem.cs:107>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 33207
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DecalCachedChunk__ctor_m5097692CFA636D32F3B34A371320A115DA4E6371 (DecalCachedChunk_tDEF493C8A3A1F442BDEC1794BDDA0996B32DCACE* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
DecalChunk__ctor_m948088C98FD016DE3F70B7312E3398BE8D9F1DF1(__this, NULL);
|
|
return;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// Method Definition Index: 33208
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DecalUpdateCachedSystem__ctor_m61CB04D08417976D8C9532B19A0295568E82773A (DecalUpdateCachedSystem_tE54DF723671C1BB35856878DBEC0A7B454E127B6* __this, DecalEntityManager_tDA689202786946588782A67EF3F0B0D9121C294A* ___0_entityManager, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ProfilingSampler_t420D4672EDB44E0EF980B31ADFD9E5747200FECE_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral315F9DFB0A7E1C5E25C7A4E45C119F7D62A4A543);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral8D5F65AFBD89DAF01A819E0267BEF21F3294B32D);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalUpdateCachedSystem.cs:120>
|
|
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalUpdateCachedSystem.cs:122>
|
|
DecalEntityManager_tDA689202786946588782A67EF3F0B0D9121C294A* L_0 = ___0_entityManager;
|
|
__this->___m_EntityManager = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_EntityManager), (void*)L_0);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalUpdateCachedSystem.cs:123>
|
|
ProfilingSampler_t420D4672EDB44E0EF980B31ADFD9E5747200FECE* L_1 = (ProfilingSampler_t420D4672EDB44E0EF980B31ADFD9E5747200FECE*)il2cpp_codegen_object_new(ProfilingSampler_t420D4672EDB44E0EF980B31ADFD9E5747200FECE_il2cpp_TypeInfo_var);
|
|
ProfilingSampler__ctor_m26500989FCDB07FA33C9A3BB7F215CBD892F5BB7(L_1, _stringLiteral8D5F65AFBD89DAF01A819E0267BEF21F3294B32D, NULL);
|
|
__this->___m_Sampler = L_1;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_Sampler), (void*)L_1);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalUpdateCachedSystem.cs:124>
|
|
ProfilingSampler_t420D4672EDB44E0EF980B31ADFD9E5747200FECE* L_2 = (ProfilingSampler_t420D4672EDB44E0EF980B31ADFD9E5747200FECE*)il2cpp_codegen_object_new(ProfilingSampler_t420D4672EDB44E0EF980B31ADFD9E5747200FECE_il2cpp_TypeInfo_var);
|
|
ProfilingSampler__ctor_m26500989FCDB07FA33C9A3BB7F215CBD892F5BB7(L_2, _stringLiteral315F9DFB0A7E1C5E25C7A4E45C119F7D62A4A543, NULL);
|
|
__this->___m_SamplerJob = L_2;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_SamplerJob), (void*)L_2);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalUpdateCachedSystem.cs:125>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 33209
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DecalUpdateCachedSystem_Execute_m49D9D4B18FA9A672E5687FE2535556788AD8040E (DecalUpdateCachedSystem_tE54DF723671C1BB35856878DBEC0A7B454E127B6* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Item_mF1A0B8107AFE027BCC67DA021B857B6495FA1A90_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Item_mFCF8BC94A0C7B3A51A1FC623D4F3335994152975_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
ProfilingScope_t57898BA31E8EF8F083EF84E0DA2737AC61CBC5BD V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
int32_t V_1 = 0;
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalUpdateCachedSystem.cs:129>
|
|
ProfilingSampler_t420D4672EDB44E0EF980B31ADFD9E5747200FECE* L_0 = __this->___m_Sampler;
|
|
ProfilingScope__ctor_m4B73587A2295443A73B64DDD3D484D8EAECC0D65((&V_0), L_0, NULL);
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_0063:
|
|
{
|
|
ProfilingScope_Dispose_m4231A2ACA1F8E345BB0078310A9F7601704C8BE4((&V_0), NULL);
|
|
return;
|
|
}
|
|
});
|
|
try
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalUpdateCachedSystem.cs:131>
|
|
V_1 = 0;
|
|
goto IL_0053_1;
|
|
}
|
|
|
|
IL_0011_1:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalUpdateCachedSystem.cs:132>
|
|
DecalEntityManager_tDA689202786946588782A67EF3F0B0D9121C294A* L_1 = __this->___m_EntityManager;
|
|
NullCheck(L_1);
|
|
List_1_t437E45D007C2D93DCB30DA30023CB2745EE095D0* L_2 = L_1->___entityChunks;
|
|
int32_t L_3 = V_1;
|
|
NullCheck(L_2);
|
|
DecalEntityChunk_t2CDCBFA35711DA074631D26572EF9755A3AD740C* L_4;
|
|
L_4 = List_1_get_Item_mFCF8BC94A0C7B3A51A1FC623D4F3335994152975(L_2, L_3, List_1_get_Item_mFCF8BC94A0C7B3A51A1FC623D4F3335994152975_RuntimeMethod_var);
|
|
DecalEntityManager_tDA689202786946588782A67EF3F0B0D9121C294A* L_5 = __this->___m_EntityManager;
|
|
NullCheck(L_5);
|
|
List_1_t1A9527CB44249AD17D081A2D7A468343FC2D0720* L_6 = L_5->___cachedChunks;
|
|
int32_t L_7 = V_1;
|
|
NullCheck(L_6);
|
|
DecalCachedChunk_tDEF493C8A3A1F442BDEC1794BDDA0996B32DCACE* L_8;
|
|
L_8 = List_1_get_Item_mF1A0B8107AFE027BCC67DA021B857B6495FA1A90(L_6, L_7, List_1_get_Item_mF1A0B8107AFE027BCC67DA021B857B6495FA1A90_RuntimeMethod_var);
|
|
DecalEntityManager_tDA689202786946588782A67EF3F0B0D9121C294A* L_9 = __this->___m_EntityManager;
|
|
NullCheck(L_9);
|
|
List_1_t437E45D007C2D93DCB30DA30023CB2745EE095D0* L_10 = L_9->___entityChunks;
|
|
int32_t L_11 = V_1;
|
|
NullCheck(L_10);
|
|
DecalEntityChunk_t2CDCBFA35711DA074631D26572EF9755A3AD740C* L_12;
|
|
L_12 = List_1_get_Item_mFCF8BC94A0C7B3A51A1FC623D4F3335994152975(L_10, L_11, List_1_get_Item_mFCF8BC94A0C7B3A51A1FC623D4F3335994152975_RuntimeMethod_var);
|
|
NullCheck(L_12);
|
|
int32_t L_13;
|
|
L_13 = DecalChunk_get_count_mEF67D584A3FF77C4A87A916D5F464D91D47C4B17_inline(L_12, NULL);
|
|
DecalUpdateCachedSystem_Execute_m2A365BD1C0A70B2A260A15FFB894D08704EE1929(__this, L_4, L_8, L_13, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalUpdateCachedSystem.cs:131>
|
|
int32_t L_14 = V_1;
|
|
V_1 = ((int32_t)il2cpp_codegen_add(L_14, 1));
|
|
}
|
|
|
|
IL_0053_1:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalUpdateCachedSystem.cs:131>
|
|
int32_t L_15 = V_1;
|
|
DecalEntityManager_tDA689202786946588782A67EF3F0B0D9121C294A* L_16 = __this->___m_EntityManager;
|
|
NullCheck(L_16);
|
|
int32_t L_17 = L_16->___chunkCount;
|
|
if ((((int32_t)L_15) < ((int32_t)L_17)))
|
|
{
|
|
goto IL_0011_1;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalUpdateCachedSystem.cs:133>
|
|
goto IL_0071;
|
|
}
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_0071:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalUpdateCachedSystem.cs:134>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 33210
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DecalUpdateCachedSystem_Execute_m2A365BD1C0A70B2A260A15FFB894D08704EE1929 (DecalUpdateCachedSystem_tE54DF723671C1BB35856878DBEC0A7B454E127B6* __this, DecalEntityChunk_t2CDCBFA35711DA074631D26572EF9755A3AD740C* ___0_entityChunk, DecalCachedChunk_tDEF493C8A3A1F442BDEC1794BDDA0996B32DCACE* ___1_cachedChunk, int32_t ___2_count, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IJobParallelForTransformExtensions_Schedule_TisUpdateTransformsJob_t7CF957169E8C6560084F48A51BC15A447F3002C7_m8730007D9D52320B924DE6CD7E6AE6D5FAE4283C_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral22BB297A3EA6A210F84D6E9BD40BC3E9B40E1471);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral26B0573FA55389022EB9147C80C4B8E37A15A4B8);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral8C159DFF1F2B304532ED7A8E82FEB26C8E469416);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralD4CD417E1A72493EB1F413494479950631318DD5);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralF8D773750D897D16066C16D6F77A6E8744BF67DF);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
Material_t18053F08F347D0DCA5E1140EC7EC4533DD8A14E3* V_0 = NULL;
|
|
JobHandle_t5DF5F99902FED3C801A81C05205CEA6CE039EF08 V_1;
|
|
memset((&V_1), 0, sizeof(V_1));
|
|
int32_t V_2 = 0;
|
|
int32_t V_3 = 0;
|
|
int32_t V_4 = 0;
|
|
int32_t V_5 = 0;
|
|
ProfilingScope_t57898BA31E8EF8F083EF84E0DA2737AC61CBC5BD V_6;
|
|
memset((&V_6), 0, sizeof(V_6));
|
|
JobHandle_t5DF5F99902FED3C801A81C05205CEA6CE039EF08 V_7;
|
|
memset((&V_7), 0, sizeof(V_7));
|
|
UpdateTransformsJob_t7CF957169E8C6560084F48A51BC15A447F3002C7 V_8;
|
|
memset((&V_8), 0, sizeof(V_8));
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalUpdateCachedSystem.cs:138>
|
|
int32_t L_0 = ___2_count;
|
|
if (L_0)
|
|
{
|
|
goto IL_0004;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalUpdateCachedSystem.cs:139>
|
|
return;
|
|
}
|
|
|
|
IL_0004:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalUpdateCachedSystem.cs:141>
|
|
DecalCachedChunk_tDEF493C8A3A1F442BDEC1794BDDA0996B32DCACE* L_1 = ___1_cachedChunk;
|
|
NullCheck(L_1);
|
|
JobHandle_t5DF5F99902FED3C801A81C05205CEA6CE039EF08 L_2;
|
|
L_2 = DecalChunk_get_currentJobHandle_m0EBD28118EB20E5BBC3BE831171CD2CDC745AAD4_inline(L_1, NULL);
|
|
V_1 = L_2;
|
|
JobHandle_Complete_mDCED35A125AAB37EDDAB2E31C805B4904B614A4A((&V_1), NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalUpdateCachedSystem.cs:144>
|
|
DecalEntityChunk_t2CDCBFA35711DA074631D26572EF9755A3AD740C* L_3 = ___0_entityChunk;
|
|
NullCheck(L_3);
|
|
Material_t18053F08F347D0DCA5E1140EC7EC4533DD8A14E3* L_4 = L_3->___material;
|
|
V_0 = L_4;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalUpdateCachedSystem.cs:145>
|
|
Material_t18053F08F347D0DCA5E1140EC7EC4533DD8A14E3* L_5 = V_0;
|
|
NullCheck(L_5);
|
|
bool L_6;
|
|
L_6 = Material_HasProperty_mC09A83B44E368A217F606DD4954FA080CC03EC6C(L_5, _stringLiteralF8D773750D897D16066C16D6F77A6E8744BF67DF, NULL);
|
|
if (!L_6)
|
|
{
|
|
goto IL_0037;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalUpdateCachedSystem.cs:146>
|
|
DecalCachedChunk_tDEF493C8A3A1F442BDEC1794BDDA0996B32DCACE* L_7 = ___1_cachedChunk;
|
|
Material_t18053F08F347D0DCA5E1140EC7EC4533DD8A14E3* L_8 = V_0;
|
|
NullCheck(L_8);
|
|
int32_t L_9;
|
|
L_9 = Material_GetInt_mA772B615274DD11B37A352BC66EFA81BFD9C13EA(L_8, _stringLiteralF8D773750D897D16066C16D6F77A6E8744BF67DF, NULL);
|
|
NullCheck(L_7);
|
|
L_7->___drawOrder = L_9;
|
|
}
|
|
|
|
IL_0037:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalUpdateCachedSystem.cs:150>
|
|
DecalCachedChunk_tDEF493C8A3A1F442BDEC1794BDDA0996B32DCACE* L_10 = ___1_cachedChunk;
|
|
NullCheck(L_10);
|
|
bool L_11 = L_10->___isCreated;
|
|
if (L_11)
|
|
{
|
|
goto IL_0096;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalUpdateCachedSystem.cs:153>
|
|
Material_t18053F08F347D0DCA5E1140EC7EC4533DD8A14E3* L_12 = V_0;
|
|
NullCheck(L_12);
|
|
int32_t L_13;
|
|
L_13 = Material_FindPass_mCCAAC088EE0E39AD5950BA41E965371417DBCFBC(L_12, _stringLiteral8C159DFF1F2B304532ED7A8E82FEB26C8E469416, NULL);
|
|
V_2 = L_13;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalUpdateCachedSystem.cs:154>
|
|
DecalCachedChunk_tDEF493C8A3A1F442BDEC1794BDDA0996B32DCACE* L_14 = ___1_cachedChunk;
|
|
int32_t L_15 = V_2;
|
|
NullCheck(L_14);
|
|
L_14->___passIndexDBuffer = L_15;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalUpdateCachedSystem.cs:156>
|
|
Material_t18053F08F347D0DCA5E1140EC7EC4533DD8A14E3* L_16 = V_0;
|
|
NullCheck(L_16);
|
|
int32_t L_17;
|
|
L_17 = Material_FindPass_mCCAAC088EE0E39AD5950BA41E965371417DBCFBC(L_16, _stringLiteral26B0573FA55389022EB9147C80C4B8E37A15A4B8, NULL);
|
|
V_3 = L_17;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalUpdateCachedSystem.cs:157>
|
|
DecalCachedChunk_tDEF493C8A3A1F442BDEC1794BDDA0996B32DCACE* L_18 = ___1_cachedChunk;
|
|
int32_t L_19 = V_3;
|
|
NullCheck(L_18);
|
|
L_18->___passIndexEmissive = L_19;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalUpdateCachedSystem.cs:159>
|
|
Material_t18053F08F347D0DCA5E1140EC7EC4533DD8A14E3* L_20 = V_0;
|
|
NullCheck(L_20);
|
|
int32_t L_21;
|
|
L_21 = Material_FindPass_mCCAAC088EE0E39AD5950BA41E965371417DBCFBC(L_20, _stringLiteral22BB297A3EA6A210F84D6E9BD40BC3E9B40E1471, NULL);
|
|
V_4 = L_21;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalUpdateCachedSystem.cs:160>
|
|
DecalCachedChunk_tDEF493C8A3A1F442BDEC1794BDDA0996B32DCACE* L_22 = ___1_cachedChunk;
|
|
int32_t L_23 = V_4;
|
|
NullCheck(L_22);
|
|
L_22->___passIndexScreenSpace = L_23;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalUpdateCachedSystem.cs:162>
|
|
Material_t18053F08F347D0DCA5E1140EC7EC4533DD8A14E3* L_24 = V_0;
|
|
NullCheck(L_24);
|
|
int32_t L_25;
|
|
L_25 = Material_FindPass_mCCAAC088EE0E39AD5950BA41E965371417DBCFBC(L_24, _stringLiteralD4CD417E1A72493EB1F413494479950631318DD5, NULL);
|
|
V_5 = L_25;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalUpdateCachedSystem.cs:163>
|
|
DecalCachedChunk_tDEF493C8A3A1F442BDEC1794BDDA0996B32DCACE* L_26 = ___1_cachedChunk;
|
|
int32_t L_27 = V_5;
|
|
NullCheck(L_26);
|
|
L_26->___passIndexGBuffer = L_27;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalUpdateCachedSystem.cs:165>
|
|
DecalCachedChunk_tDEF493C8A3A1F442BDEC1794BDDA0996B32DCACE* L_28 = ___1_cachedChunk;
|
|
NullCheck(L_28);
|
|
L_28->___isCreated = (bool)1;
|
|
}
|
|
|
|
IL_0096:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalUpdateCachedSystem.cs:168>
|
|
ProfilingSampler_t420D4672EDB44E0EF980B31ADFD9E5747200FECE* L_29 = __this->___m_SamplerJob;
|
|
ProfilingScope__ctor_m4B73587A2295443A73B64DDD3D484D8EAECC0D65((&V_6), L_29, NULL);
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_014e:
|
|
{
|
|
ProfilingScope_Dispose_m4231A2ACA1F8E345BB0078310A9F7601704C8BE4((&V_6), NULL);
|
|
return;
|
|
}
|
|
});
|
|
try
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalUpdateCachedSystem.cs:170>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalUpdateCachedSystem.cs:171>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalUpdateCachedSystem.cs:172>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalUpdateCachedSystem.cs:173>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalUpdateCachedSystem.cs:174>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalUpdateCachedSystem.cs:175>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalUpdateCachedSystem.cs:176>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalUpdateCachedSystem.cs:177>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalUpdateCachedSystem.cs:178>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalUpdateCachedSystem.cs:179>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalUpdateCachedSystem.cs:180>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalUpdateCachedSystem.cs:181>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalUpdateCachedSystem.cs:182>
|
|
il2cpp_codegen_initobj((&V_8), sizeof(UpdateTransformsJob_t7CF957169E8C6560084F48A51BC15A447F3002C7));
|
|
DecalCachedChunk_tDEF493C8A3A1F442BDEC1794BDDA0996B32DCACE* L_30 = ___1_cachedChunk;
|
|
NullCheck(L_30);
|
|
NativeArray_1_tEDE9DAD2CAE5954286BC0EF394A57ED0AC69FEE6 L_31 = L_30->___positions;
|
|
(&V_8)->___positions = L_31;
|
|
DecalCachedChunk_tDEF493C8A3A1F442BDEC1794BDDA0996B32DCACE* L_32 = ___1_cachedChunk;
|
|
NullCheck(L_32);
|
|
NativeArray_1_tE645174F30913B665DE45D85525F90B1F64E054A L_33 = L_32->___rotation;
|
|
(&V_8)->___rotations = L_33;
|
|
DecalCachedChunk_tDEF493C8A3A1F442BDEC1794BDDA0996B32DCACE* L_34 = ___1_cachedChunk;
|
|
NullCheck(L_34);
|
|
NativeArray_1_tEDE9DAD2CAE5954286BC0EF394A57ED0AC69FEE6 L_35 = L_34->___scales;
|
|
(&V_8)->___scales = L_35;
|
|
DecalCachedChunk_tDEF493C8A3A1F442BDEC1794BDDA0996B32DCACE* L_36 = ___1_cachedChunk;
|
|
NullCheck(L_36);
|
|
NativeArray_1_t107C57D0357BCF9956A60495CD8FAADDF1D26AFB L_37 = L_36->___dirty;
|
|
(&V_8)->___dirty = L_37;
|
|
DecalCachedChunk_tDEF493C8A3A1F442BDEC1794BDDA0996B32DCACE* L_38 = ___1_cachedChunk;
|
|
NullCheck(L_38);
|
|
NativeArray_1_tB64676789FBC7DC3DA7BB2D7765883A285CA6065 L_39 = L_38->___scaleModes;
|
|
(&V_8)->___scaleModes = L_39;
|
|
DecalCachedChunk_tDEF493C8A3A1F442BDEC1794BDDA0996B32DCACE* L_40 = ___1_cachedChunk;
|
|
NullCheck(L_40);
|
|
NativeArray_1_t63326FF687E26631308829A9CDB0C51D523D4E9A L_41 = L_40->___sizeOffsets;
|
|
(&V_8)->___sizeOffsets = L_41;
|
|
DecalCachedChunk_tDEF493C8A3A1F442BDEC1794BDDA0996B32DCACE* L_42 = ___1_cachedChunk;
|
|
NullCheck(L_42);
|
|
NativeArray_1_t63326FF687E26631308829A9CDB0C51D523D4E9A L_43 = L_42->___decalToWorlds;
|
|
(&V_8)->___decalToWorlds = L_43;
|
|
DecalCachedChunk_tDEF493C8A3A1F442BDEC1794BDDA0996B32DCACE* L_44 = ___1_cachedChunk;
|
|
NullCheck(L_44);
|
|
NativeArray_1_t63326FF687E26631308829A9CDB0C51D523D4E9A L_45 = L_44->___normalToWorlds;
|
|
(&V_8)->___normalToWorlds = L_45;
|
|
DecalCachedChunk_tDEF493C8A3A1F442BDEC1794BDDA0996B32DCACE* L_46 = ___1_cachedChunk;
|
|
NullCheck(L_46);
|
|
NativeArray_1_t3D8121943984EEED49DC98DED560DCC6638111B6 L_47 = L_46->___boundingSpheres;
|
|
(&V_8)->___boundingSpheres = L_47;
|
|
(&V_8)->___minDistance = (1.40129846E-45f);
|
|
UpdateTransformsJob_t7CF957169E8C6560084F48A51BC15A447F3002C7 L_48 = V_8;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalUpdateCachedSystem.cs:184>
|
|
DecalEntityChunk_t2CDCBFA35711DA074631D26572EF9755A3AD740C* L_49 = ___0_entityChunk;
|
|
NullCheck(L_49);
|
|
TransformAccessArray_t104EDE5BB3DC7E294332BB1D2AA508CAEDEE83D4 L_50 = L_49->___transformAccessArray;
|
|
il2cpp_codegen_initobj((&V_1), sizeof(JobHandle_t5DF5F99902FED3C801A81C05205CEA6CE039EF08));
|
|
JobHandle_t5DF5F99902FED3C801A81C05205CEA6CE039EF08 L_51 = V_1;
|
|
JobHandle_t5DF5F99902FED3C801A81C05205CEA6CE039EF08 L_52;
|
|
L_52 = IJobParallelForTransformExtensions_Schedule_TisUpdateTransformsJob_t7CF957169E8C6560084F48A51BC15A447F3002C7_m8730007D9D52320B924DE6CD7E6AE6D5FAE4283C(L_48, L_50, L_51, IJobParallelForTransformExtensions_Schedule_TisUpdateTransformsJob_t7CF957169E8C6560084F48A51BC15A447F3002C7_m8730007D9D52320B924DE6CD7E6AE6D5FAE4283C_RuntimeMethod_var);
|
|
V_7 = L_52;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalUpdateCachedSystem.cs:185>
|
|
DecalCachedChunk_tDEF493C8A3A1F442BDEC1794BDDA0996B32DCACE* L_53 = ___1_cachedChunk;
|
|
JobHandle_t5DF5F99902FED3C801A81C05205CEA6CE039EF08 L_54 = V_7;
|
|
NullCheck(L_53);
|
|
DecalChunk_set_currentJobHandle_mE426515F8CC325C7F17BED7DB77E3024C43CE1AD_inline(L_53, L_54, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalUpdateCachedSystem.cs:186>
|
|
goto IL_015c;
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_015c:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalUpdateCachedSystem.cs:187>
|
|
return;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// Method Definition Index: 33211
|
|
IL2CPP_EXTERN_C IL2CPP_NO_INLINE IL2CPP_METHOD_ATTR float UpdateTransformsJob_DistanceBetweenQuaternions_m35B8169D9160CD29FB09A12A1B2CD3063A2505B1 (UpdateTransformsJob_t7CF957169E8C6560084F48A51BC15A447F3002C7* IL2CPP_PARAMETER_RESTRICT __this, quaternion_tD6BCBECAF088B9EBAE2345EC8534C7A1A4C910D4 ___0_a, quaternion_tD6BCBECAF088B9EBAE2345EC8534C7A1A4C910D4 ___1_b, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalUpdateCachedSystem.cs:211>
|
|
quaternion_tD6BCBECAF088B9EBAE2345EC8534C7A1A4C910D4 L_0 = ___0_a;
|
|
float4_t89D9A294E7A79BD81BFBDD18654508532958555E L_1 = L_0.___value;
|
|
quaternion_tD6BCBECAF088B9EBAE2345EC8534C7A1A4C910D4 L_2 = ___1_b;
|
|
float4_t89D9A294E7A79BD81BFBDD18654508532958555E L_3 = L_2.___value;
|
|
float L_4;
|
|
L_4 = math_distancesq_m609DF85E2355430E1F4CD51CDC1971BD5F7D4AF3_inline(L_1, L_3, NULL);
|
|
return L_4;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C float UpdateTransformsJob_DistanceBetweenQuaternions_m35B8169D9160CD29FB09A12A1B2CD3063A2505B1_AdjustorThunk (RuntimeObject* IL2CPP_PARAMETER_RESTRICT __this, quaternion_tD6BCBECAF088B9EBAE2345EC8534C7A1A4C910D4 ___0_a, quaternion_tD6BCBECAF088B9EBAE2345EC8534C7A1A4C910D4 ___1_b, const RuntimeMethod* method)
|
|
{
|
|
UpdateTransformsJob_t7CF957169E8C6560084F48A51BC15A447F3002C7* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<UpdateTransformsJob_t7CF957169E8C6560084F48A51BC15A447F3002C7*>(__this + _offset);
|
|
float _returnValue;
|
|
_returnValue = UpdateTransformsJob_DistanceBetweenQuaternions_m35B8169D9160CD29FB09A12A1B2CD3063A2505B1(_thisAdjusted, ___0_a, ___1_b, method);
|
|
return _returnValue;
|
|
}
|
|
// Method Definition Index: 33212
|
|
IL2CPP_EXTERN_C IL2CPP_NO_INLINE IL2CPP_METHOD_ATTR void UpdateTransformsJob_Execute_mA6FB54BF60F468C915690630E3DDD824D6D305B5 (UpdateTransformsJob_t7CF957169E8C6560084F48A51BC15A447F3002C7* IL2CPP_PARAMETER_RESTRICT __this, int32_t ___0_index, TransformAccess_tF0D55E1C5B6B29B618E8A129AB633E2F1100D580 ___1_transform, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UpdateTransformsJob_t7CF957169E8C6560084F48A51BC15A447F3002C7_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&float3_t4AB5D88249ADB24F69FFD0793E8ED25E1CC3745E_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
bool V_0 = false;
|
|
bool V_1 = false;
|
|
float4x4_t7EDD16F7F57DC7F61A6302535F7C19FB97915DF2 V_2;
|
|
memset((&V_2), 0, sizeof(V_2));
|
|
float4x4_t7EDD16F7F57DC7F61A6302535F7C19FB97915DF2 V_3;
|
|
memset((&V_3), 0, sizeof(V_3));
|
|
float4_t89D9A294E7A79BD81BFBDD18654508532958555E V_4;
|
|
memset((&V_4), 0, sizeof(V_4));
|
|
float4x4_t7EDD16F7F57DC7F61A6302535F7C19FB97915DF2 V_5;
|
|
memset((&V_5), 0, sizeof(V_5));
|
|
float4x4_t7EDD16F7F57DC7F61A6302535F7C19FB97915DF2 V_6;
|
|
memset((&V_6), 0, sizeof(V_6));
|
|
quaternion_tD6BCBECAF088B9EBAE2345EC8534C7A1A4C910D4 V_7;
|
|
memset((&V_7), 0, sizeof(V_7));
|
|
int32_t G_B2_0 = 0;
|
|
int32_t G_B1_0 = 0;
|
|
int32_t G_B4_0 = 0;
|
|
int32_t G_B3_0 = 0;
|
|
int32_t G_B6_0 = 0;
|
|
int32_t G_B5_0 = 0;
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalUpdateCachedSystem.cs:217>
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_0;
|
|
L_0 = TransformAccess_get_position_m766FDDC608FF936E589A61DD4A7D15922DE9F6FB((&___1_transform), NULL);
|
|
float3_t4AB5D88249ADB24F69FFD0793E8ED25E1CC3745E L_1;
|
|
L_1 = float3_op_Implicit_mE1831A3AC179B7EB3236F8202EC8DD5CE05376AB(L_0, NULL);
|
|
NativeArray_1_tEDE9DAD2CAE5954286BC0EF394A57ED0AC69FEE6* L_2 = (NativeArray_1_tEDE9DAD2CAE5954286BC0EF394A57ED0AC69FEE6*)(&__this->___positions);
|
|
int32_t L_3 = ___0_index;
|
|
float3_t4AB5D88249ADB24F69FFD0793E8ED25E1CC3745E L_4;
|
|
L_4 = IL2CPP_NATIVEARRAY_GET_ITEM(float3_t4AB5D88249ADB24F69FFD0793E8ED25E1CC3745E, (L_2)->___m_Buffer, L_3);
|
|
float L_5;
|
|
L_5 = math_distancesq_mA49E8B34404D0C4DB3C9D4E065CE4CA255C9770B_inline(L_1, L_4, NULL);
|
|
float L_6 = __this->___minDistance;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalUpdateCachedSystem.cs:218>
|
|
int32_t L_7 = ((((float)L_5) > ((float)L_6))? 1 : 0);
|
|
if (!L_7)
|
|
{
|
|
G_B2_0 = L_7;
|
|
goto IL_0040;
|
|
}
|
|
G_B1_0 = L_7;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalUpdateCachedSystem.cs:219>
|
|
NativeArray_1_tEDE9DAD2CAE5954286BC0EF394A57ED0AC69FEE6* L_8 = (NativeArray_1_tEDE9DAD2CAE5954286BC0EF394A57ED0AC69FEE6*)(&__this->___positions);
|
|
int32_t L_9 = ___0_index;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_10;
|
|
L_10 = TransformAccess_get_position_m766FDDC608FF936E589A61DD4A7D15922DE9F6FB((&___1_transform), NULL);
|
|
float3_t4AB5D88249ADB24F69FFD0793E8ED25E1CC3745E L_11;
|
|
L_11 = float3_op_Implicit_mE1831A3AC179B7EB3236F8202EC8DD5CE05376AB(L_10, NULL);
|
|
IL2CPP_NATIVEARRAY_SET_ITEM(float3_t4AB5D88249ADB24F69FFD0793E8ED25E1CC3745E, (L_8)->___m_Buffer, L_9, (L_11));
|
|
G_B2_0 = G_B1_0;
|
|
}
|
|
|
|
IL_0040:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalUpdateCachedSystem.cs:220>
|
|
Quaternion_tDA59F214EF07D7700B26E40E562F267AF7306974 L_12;
|
|
L_12 = TransformAccess_get_rotation_m51C5B32FE1DD02DCEF3E59B39C55D296AEDF4C78((&___1_transform), NULL);
|
|
quaternion_tD6BCBECAF088B9EBAE2345EC8534C7A1A4C910D4 L_13;
|
|
L_13 = quaternion_op_Implicit_m12C97CDC5FE642C53837F73E2F9B8761D530C502(L_12, NULL);
|
|
NativeArray_1_tE645174F30913B665DE45D85525F90B1F64E054A* L_14 = (NativeArray_1_tE645174F30913B665DE45D85525F90B1F64E054A*)(&__this->___rotations);
|
|
int32_t L_15 = ___0_index;
|
|
quaternion_tD6BCBECAF088B9EBAE2345EC8534C7A1A4C910D4 L_16;
|
|
L_16 = IL2CPP_NATIVEARRAY_GET_ITEM(quaternion_tD6BCBECAF088B9EBAE2345EC8534C7A1A4C910D4, (L_14)->___m_Buffer, L_15);
|
|
il2cpp_codegen_runtime_class_init_inline(UpdateTransformsJob_t7CF957169E8C6560084F48A51BC15A447F3002C7_il2cpp_TypeInfo_var);
|
|
float L_17;
|
|
L_17 = UpdateTransformsJob_DistanceBetweenQuaternions_m35B8169D9160CD29FB09A12A1B2CD3063A2505B1(__this, L_13, L_16, NULL);
|
|
float L_18 = __this->___minDistance;
|
|
V_0 = (bool)((((float)L_17) > ((float)L_18))? 1 : 0);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalUpdateCachedSystem.cs:221>
|
|
bool L_19 = V_0;
|
|
if (!L_19)
|
|
{
|
|
G_B4_0 = G_B2_0;
|
|
goto IL_0082;
|
|
}
|
|
G_B3_0 = G_B2_0;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalUpdateCachedSystem.cs:222>
|
|
NativeArray_1_tE645174F30913B665DE45D85525F90B1F64E054A* L_20 = (NativeArray_1_tE645174F30913B665DE45D85525F90B1F64E054A*)(&__this->___rotations);
|
|
int32_t L_21 = ___0_index;
|
|
Quaternion_tDA59F214EF07D7700B26E40E562F267AF7306974 L_22;
|
|
L_22 = TransformAccess_get_rotation_m51C5B32FE1DD02DCEF3E59B39C55D296AEDF4C78((&___1_transform), NULL);
|
|
quaternion_tD6BCBECAF088B9EBAE2345EC8534C7A1A4C910D4 L_23;
|
|
L_23 = quaternion_op_Implicit_m12C97CDC5FE642C53837F73E2F9B8761D530C502(L_22, NULL);
|
|
IL2CPP_NATIVEARRAY_SET_ITEM(quaternion_tD6BCBECAF088B9EBAE2345EC8534C7A1A4C910D4, (L_20)->___m_Buffer, L_21, (L_23));
|
|
G_B4_0 = G_B3_0;
|
|
}
|
|
|
|
IL_0082:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalUpdateCachedSystem.cs:223>
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_24;
|
|
L_24 = TransformAccess_get_localScale_mB0BAA020211EEC1F0F883E2041E198717EBEEA4E((&___1_transform), NULL);
|
|
float3_t4AB5D88249ADB24F69FFD0793E8ED25E1CC3745E L_25;
|
|
L_25 = float3_op_Implicit_mE1831A3AC179B7EB3236F8202EC8DD5CE05376AB(L_24, NULL);
|
|
NativeArray_1_tEDE9DAD2CAE5954286BC0EF394A57ED0AC69FEE6* L_26 = (NativeArray_1_tEDE9DAD2CAE5954286BC0EF394A57ED0AC69FEE6*)(&__this->___scales);
|
|
int32_t L_27 = ___0_index;
|
|
float3_t4AB5D88249ADB24F69FFD0793E8ED25E1CC3745E L_28;
|
|
L_28 = IL2CPP_NATIVEARRAY_GET_ITEM(float3_t4AB5D88249ADB24F69FFD0793E8ED25E1CC3745E, (L_26)->___m_Buffer, L_27);
|
|
float L_29;
|
|
L_29 = math_distancesq_mA49E8B34404D0C4DB3C9D4E065CE4CA255C9770B_inline(L_25, L_28, NULL);
|
|
float L_30 = __this->___minDistance;
|
|
V_1 = (bool)((((float)L_29) > ((float)L_30))? 1 : 0);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalUpdateCachedSystem.cs:224>
|
|
bool L_31 = V_1;
|
|
if (!L_31)
|
|
{
|
|
G_B6_0 = G_B4_0;
|
|
goto IL_00c3;
|
|
}
|
|
G_B5_0 = G_B4_0;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalUpdateCachedSystem.cs:225>
|
|
NativeArray_1_tEDE9DAD2CAE5954286BC0EF394A57ED0AC69FEE6* L_32 = (NativeArray_1_tEDE9DAD2CAE5954286BC0EF394A57ED0AC69FEE6*)(&__this->___scales);
|
|
int32_t L_33 = ___0_index;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_34;
|
|
L_34 = TransformAccess_get_localScale_mB0BAA020211EEC1F0F883E2041E198717EBEEA4E((&___1_transform), NULL);
|
|
float3_t4AB5D88249ADB24F69FFD0793E8ED25E1CC3745E L_35;
|
|
L_35 = float3_op_Implicit_mE1831A3AC179B7EB3236F8202EC8DD5CE05376AB(L_34, NULL);
|
|
IL2CPP_NATIVEARRAY_SET_ITEM(float3_t4AB5D88249ADB24F69FFD0793E8ED25E1CC3745E, (L_32)->___m_Buffer, L_33, (L_35));
|
|
G_B6_0 = G_B5_0;
|
|
}
|
|
|
|
IL_00c3:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalUpdateCachedSystem.cs:228>
|
|
if (G_B6_0)
|
|
{
|
|
goto IL_00da;
|
|
}
|
|
}
|
|
{
|
|
bool L_36 = V_0;
|
|
if (L_36)
|
|
{
|
|
goto IL_00da;
|
|
}
|
|
}
|
|
{
|
|
bool L_37 = V_1;
|
|
if (L_37)
|
|
{
|
|
goto IL_00da;
|
|
}
|
|
}
|
|
{
|
|
NativeArray_1_t107C57D0357BCF9956A60495CD8FAADDF1D26AFB* L_38 = (NativeArray_1_t107C57D0357BCF9956A60495CD8FAADDF1D26AFB*)(&__this->___dirty);
|
|
int32_t L_39 = ___0_index;
|
|
bool L_40;
|
|
L_40 = IL2CPP_NATIVEARRAY_GET_ITEM(bool, (L_38)->___m_Buffer, L_39);
|
|
if (L_40)
|
|
{
|
|
goto IL_00da;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalUpdateCachedSystem.cs:229>
|
|
return;
|
|
}
|
|
|
|
IL_00da:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalUpdateCachedSystem.cs:232>
|
|
NativeArray_1_tB64676789FBC7DC3DA7BB2D7765883A285CA6065* L_41 = (NativeArray_1_tB64676789FBC7DC3DA7BB2D7765883A285CA6065*)(&__this->___scaleModes);
|
|
int32_t L_42 = ___0_index;
|
|
int32_t L_43;
|
|
L_43 = IL2CPP_NATIVEARRAY_GET_ITEM(int32_t, (L_41)->___m_Buffer, L_42);
|
|
if ((!(((uint32_t)L_43) == ((uint32_t)1))))
|
|
{
|
|
goto IL_010e;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalUpdateCachedSystem.cs:234>
|
|
Matrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6 L_44;
|
|
L_44 = TransformAccess_get_localToWorldMatrix_mBB0663F9C6C07BE886FD4524378B001F0EDEE647((&___1_transform), NULL);
|
|
float4x4_t7EDD16F7F57DC7F61A6302535F7C19FB97915DF2 L_45;
|
|
L_45 = float4x4_op_Implicit_mCDD72C5454A8DAFB2A659484006D18D5979BE6AB(L_44, NULL);
|
|
V_2 = L_45;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalUpdateCachedSystem.cs:235>
|
|
float4x4_t7EDD16F7F57DC7F61A6302535F7C19FB97915DF2 L_46 = V_2;
|
|
il2cpp_codegen_runtime_class_init_inline(UpdateTransformsJob_t7CF957169E8C6560084F48A51BC15A447F3002C7_il2cpp_TypeInfo_var);
|
|
quaternion_tD6BCBECAF088B9EBAE2345EC8534C7A1A4C910D4 L_47 = ((UpdateTransformsJob_t7CF957169E8C6560084F48A51BC15A447F3002C7_StaticFields*)il2cpp_codegen_static_fields_for(UpdateTransformsJob_t7CF957169E8C6560084F48A51BC15A447F3002C7_il2cpp_TypeInfo_var))->___k_MinusYtoZRotation;
|
|
float3_t4AB5D88249ADB24F69FFD0793E8ED25E1CC3745E L_48 = ((float3_t4AB5D88249ADB24F69FFD0793E8ED25E1CC3745E_StaticFields*)il2cpp_codegen_static_fields_for(float3_t4AB5D88249ADB24F69FFD0793E8ED25E1CC3745E_il2cpp_TypeInfo_var))->___zero;
|
|
float4x4_t7EDD16F7F57DC7F61A6302535F7C19FB97915DF2 L_49;
|
|
memset((&L_49), 0, sizeof(L_49));
|
|
float4x4__ctor_m36D57BB3339FCFAE6FA39D35CAB4AD9010183D04((&L_49), L_47, L_48, NULL);
|
|
float4x4_t7EDD16F7F57DC7F61A6302535F7C19FB97915DF2 L_50;
|
|
L_50 = math_mul_mF9EE8CEC6C3D6A57A74F806EA436DA9465FCB01E_inline(L_46, L_49, NULL);
|
|
V_2 = L_50;
|
|
goto IL_014e;
|
|
}
|
|
|
|
IL_010e:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalUpdateCachedSystem.cs:239>
|
|
Quaternion_tDA59F214EF07D7700B26E40E562F267AF7306974 L_51;
|
|
L_51 = TransformAccess_get_rotation_m51C5B32FE1DD02DCEF3E59B39C55D296AEDF4C78((&___1_transform), NULL);
|
|
quaternion_tD6BCBECAF088B9EBAE2345EC8534C7A1A4C910D4 L_52;
|
|
L_52 = quaternion_op_Implicit_m12C97CDC5FE642C53837F73E2F9B8761D530C502(L_51, NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(UpdateTransformsJob_t7CF957169E8C6560084F48A51BC15A447F3002C7_il2cpp_TypeInfo_var);
|
|
quaternion_tD6BCBECAF088B9EBAE2345EC8534C7A1A4C910D4 L_53 = ((UpdateTransformsJob_t7CF957169E8C6560084F48A51BC15A447F3002C7_StaticFields*)il2cpp_codegen_static_fields_for(UpdateTransformsJob_t7CF957169E8C6560084F48A51BC15A447F3002C7_il2cpp_TypeInfo_var))->___k_MinusYtoZRotation;
|
|
quaternion_tD6BCBECAF088B9EBAE2345EC8534C7A1A4C910D4 L_54;
|
|
L_54 = math_mul_m3CC0941E6A3DE5718C6439421E74D7F80793F652_inline(L_52, L_53, NULL);
|
|
V_7 = L_54;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalUpdateCachedSystem.cs:240>
|
|
NativeArray_1_tEDE9DAD2CAE5954286BC0EF394A57ED0AC69FEE6* L_55 = (NativeArray_1_tEDE9DAD2CAE5954286BC0EF394A57ED0AC69FEE6*)(&__this->___positions);
|
|
int32_t L_56 = ___0_index;
|
|
float3_t4AB5D88249ADB24F69FFD0793E8ED25E1CC3745E L_57;
|
|
L_57 = IL2CPP_NATIVEARRAY_GET_ITEM(float3_t4AB5D88249ADB24F69FFD0793E8ED25E1CC3745E, (L_55)->___m_Buffer, L_56);
|
|
quaternion_tD6BCBECAF088B9EBAE2345EC8534C7A1A4C910D4 L_58 = V_7;
|
|
float3_t4AB5D88249ADB24F69FFD0793E8ED25E1CC3745E L_59;
|
|
memset((&L_59), 0, sizeof(L_59));
|
|
float3__ctor_mC61002CD0EC13D7C37D846D021A78C028FB80DB9_inline((&L_59), (1.0f), (1.0f), (1.0f), NULL);
|
|
float4x4_t7EDD16F7F57DC7F61A6302535F7C19FB97915DF2 L_60;
|
|
L_60 = float4x4_TRS_m253E5B92580E420E113F8C195664D06F967EEF03_inline(L_57, L_58, L_59, NULL);
|
|
V_2 = L_60;
|
|
}
|
|
|
|
IL_014e:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalUpdateCachedSystem.cs:243>
|
|
float4x4_t7EDD16F7F57DC7F61A6302535F7C19FB97915DF2 L_61 = V_2;
|
|
V_3 = L_61;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalUpdateCachedSystem.cs:245>
|
|
float4x4_t7EDD16F7F57DC7F61A6302535F7C19FB97915DF2 L_62 = V_3;
|
|
float4_t89D9A294E7A79BD81BFBDD18654508532958555E L_63 = L_62.___c1;
|
|
V_4 = L_63;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalUpdateCachedSystem.cs:246>
|
|
float4x4_t7EDD16F7F57DC7F61A6302535F7C19FB97915DF2 L_64 = V_3;
|
|
float4_t89D9A294E7A79BD81BFBDD18654508532958555E L_65 = L_64.___c2;
|
|
(&V_3)->___c1 = L_65;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalUpdateCachedSystem.cs:247>
|
|
float4_t89D9A294E7A79BD81BFBDD18654508532958555E L_66 = V_4;
|
|
(&V_3)->___c2 = L_66;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalUpdateCachedSystem.cs:248>
|
|
NativeArray_1_t63326FF687E26631308829A9CDB0C51D523D4E9A* L_67 = (NativeArray_1_t63326FF687E26631308829A9CDB0C51D523D4E9A*)(&__this->___normalToWorlds);
|
|
int32_t L_68 = ___0_index;
|
|
float4x4_t7EDD16F7F57DC7F61A6302535F7C19FB97915DF2 L_69 = V_3;
|
|
IL2CPP_NATIVEARRAY_SET_ITEM(float4x4_t7EDD16F7F57DC7F61A6302535F7C19FB97915DF2, (L_67)->___m_Buffer, L_68, (L_69));
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalUpdateCachedSystem.cs:250>
|
|
NativeArray_1_t63326FF687E26631308829A9CDB0C51D523D4E9A* L_70 = (NativeArray_1_t63326FF687E26631308829A9CDB0C51D523D4E9A*)(&__this->___sizeOffsets);
|
|
int32_t L_71 = ___0_index;
|
|
float4x4_t7EDD16F7F57DC7F61A6302535F7C19FB97915DF2 L_72;
|
|
L_72 = IL2CPP_NATIVEARRAY_GET_ITEM(float4x4_t7EDD16F7F57DC7F61A6302535F7C19FB97915DF2, (L_70)->___m_Buffer, L_71);
|
|
V_5 = L_72;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalUpdateCachedSystem.cs:251>
|
|
float4x4_t7EDD16F7F57DC7F61A6302535F7C19FB97915DF2 L_73 = V_2;
|
|
float4x4_t7EDD16F7F57DC7F61A6302535F7C19FB97915DF2 L_74 = V_5;
|
|
float4x4_t7EDD16F7F57DC7F61A6302535F7C19FB97915DF2 L_75;
|
|
L_75 = math_mul_mF9EE8CEC6C3D6A57A74F806EA436DA9465FCB01E_inline(L_73, L_74, NULL);
|
|
V_6 = L_75;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalUpdateCachedSystem.cs:252>
|
|
NativeArray_1_t63326FF687E26631308829A9CDB0C51D523D4E9A* L_76 = (NativeArray_1_t63326FF687E26631308829A9CDB0C51D523D4E9A*)(&__this->___decalToWorlds);
|
|
int32_t L_77 = ___0_index;
|
|
float4x4_t7EDD16F7F57DC7F61A6302535F7C19FB97915DF2 L_78 = V_6;
|
|
IL2CPP_NATIVEARRAY_SET_ITEM(float4x4_t7EDD16F7F57DC7F61A6302535F7C19FB97915DF2, (L_76)->___m_Buffer, L_77, (L_78));
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalUpdateCachedSystem.cs:253>
|
|
NativeArray_1_t3D8121943984EEED49DC98DED560DCC6638111B6* L_79 = (NativeArray_1_t3D8121943984EEED49DC98DED560DCC6638111B6*)(&__this->___boundingSpheres);
|
|
int32_t L_80 = ___0_index;
|
|
float4x4_t7EDD16F7F57DC7F61A6302535F7C19FB97915DF2 L_81 = V_6;
|
|
Matrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6 L_82;
|
|
L_82 = float4x4_op_Implicit_mC056D7C9F17B6D06E026163034B5414E56DA04B4(L_81, NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(UpdateTransformsJob_t7CF957169E8C6560084F48A51BC15A447F3002C7_il2cpp_TypeInfo_var);
|
|
BoundingSphere_t2DDB3D1711A6920C0ECA9217D3E4E14AFF03C010 L_83;
|
|
L_83 = UpdateTransformsJob_GetDecalProjectBoundingSphere_mF9D8DC159DD8A283CDFC5F8B2D6A65E39623A736(__this, L_82, NULL);
|
|
IL2CPP_NATIVEARRAY_SET_ITEM(BoundingSphere_t2DDB3D1711A6920C0ECA9217D3E4E14AFF03C010, (L_79)->___m_Buffer, L_80, (L_83));
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalUpdateCachedSystem.cs:255>
|
|
NativeArray_1_t107C57D0357BCF9956A60495CD8FAADDF1D26AFB* L_84 = (NativeArray_1_t107C57D0357BCF9956A60495CD8FAADDF1D26AFB*)(&__this->___dirty);
|
|
int32_t L_85 = ___0_index;
|
|
IL2CPP_NATIVEARRAY_SET_ITEM(bool, (L_84)->___m_Buffer, L_85, ((bool)0));
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalUpdateCachedSystem.cs:256>
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void UpdateTransformsJob_Execute_mA6FB54BF60F468C915690630E3DDD824D6D305B5_AdjustorThunk (RuntimeObject* IL2CPP_PARAMETER_RESTRICT __this, int32_t ___0_index, TransformAccess_tF0D55E1C5B6B29B618E8A129AB633E2F1100D580 ___1_transform, const RuntimeMethod* method)
|
|
{
|
|
UpdateTransformsJob_t7CF957169E8C6560084F48A51BC15A447F3002C7* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<UpdateTransformsJob_t7CF957169E8C6560084F48A51BC15A447F3002C7*>(__this + _offset);
|
|
UpdateTransformsJob_Execute_mA6FB54BF60F468C915690630E3DDD824D6D305B5(_thisAdjusted, ___0_index, ___1_transform, method);
|
|
}
|
|
// Method Definition Index: 33213
|
|
IL2CPP_EXTERN_C IL2CPP_NO_INLINE IL2CPP_METHOD_ATTR BoundingSphere_t2DDB3D1711A6920C0ECA9217D3E4E14AFF03C010 UpdateTransformsJob_GetDecalProjectBoundingSphere_mF9D8DC159DD8A283CDFC5F8B2D6A65E39623A736 (UpdateTransformsJob_t7CF957169E8C6560084F48A51BC15A447F3002C7* IL2CPP_PARAMETER_RESTRICT __this, Matrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6 ___0_decalToWorld, const RuntimeMethod* method)
|
|
{
|
|
float4_t89D9A294E7A79BD81BFBDD18654508532958555E V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
float4_t89D9A294E7A79BD81BFBDD18654508532958555E V_1;
|
|
memset((&V_1), 0, sizeof(V_1));
|
|
float3_t4AB5D88249ADB24F69FFD0793E8ED25E1CC3745E V_2;
|
|
memset((&V_2), 0, sizeof(V_2));
|
|
float V_3 = 0.0f;
|
|
BoundingSphere_t2DDB3D1711A6920C0ECA9217D3E4E14AFF03C010 V_4;
|
|
memset((&V_4), 0, sizeof(V_4));
|
|
float4_t89D9A294E7A79BD81BFBDD18654508532958555E V_5;
|
|
memset((&V_5), 0, sizeof(V_5));
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalUpdateCachedSystem.cs:260>
|
|
float4__ctor_mB2F7F2D8BCE8159BEF5A0D6400499E211858ED2D_inline((&V_0), (-0.5f), (-0.5f), (-0.5f), (1.0f), NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalUpdateCachedSystem.cs:261>
|
|
float4__ctor_mB2F7F2D8BCE8159BEF5A0D6400499E211858ED2D_inline((&V_1), (0.5f), (0.5f), (0.5f), (1.0f), NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalUpdateCachedSystem.cs:262>
|
|
Matrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6 L_0 = ___0_decalToWorld;
|
|
float4x4_t7EDD16F7F57DC7F61A6302535F7C19FB97915DF2 L_1;
|
|
L_1 = float4x4_op_Implicit_mCDD72C5454A8DAFB2A659484006D18D5979BE6AB(L_0, NULL);
|
|
float4_t89D9A294E7A79BD81BFBDD18654508532958555E L_2 = V_0;
|
|
float4_t89D9A294E7A79BD81BFBDD18654508532958555E L_3;
|
|
L_3 = math_mul_m080515A2DCB7CCE0F4635A8E87B1635C02D72A4E_inline(L_1, L_2, NULL);
|
|
V_0 = L_3;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalUpdateCachedSystem.cs:263>
|
|
Matrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6 L_4 = ___0_decalToWorld;
|
|
float4x4_t7EDD16F7F57DC7F61A6302535F7C19FB97915DF2 L_5;
|
|
L_5 = float4x4_op_Implicit_mCDD72C5454A8DAFB2A659484006D18D5979BE6AB(L_4, NULL);
|
|
float4_t89D9A294E7A79BD81BFBDD18654508532958555E L_6 = V_1;
|
|
float4_t89D9A294E7A79BD81BFBDD18654508532958555E L_7;
|
|
L_7 = math_mul_m080515A2DCB7CCE0F4635A8E87B1635C02D72A4E_inline(L_5, L_6, NULL);
|
|
V_1 = L_7;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalUpdateCachedSystem.cs:265>
|
|
float4_t89D9A294E7A79BD81BFBDD18654508532958555E L_8 = V_1;
|
|
float4_t89D9A294E7A79BD81BFBDD18654508532958555E L_9 = V_0;
|
|
float4_t89D9A294E7A79BD81BFBDD18654508532958555E L_10;
|
|
L_10 = float4_op_Addition_m2CF2E1B2DAD4996DE3C5B6DFB90185E4CC8F0F44_inline(L_8, L_9, NULL);
|
|
float4_t89D9A294E7A79BD81BFBDD18654508532958555E L_11;
|
|
L_11 = float4_op_Division_mA82993BB826C4799764D5B0E543D0D7776F4F8A2_inline(L_10, (2.0f), NULL);
|
|
V_5 = L_11;
|
|
float3_t4AB5D88249ADB24F69FFD0793E8ED25E1CC3745E L_12;
|
|
L_12 = float4_get_xyz_mE6EC829F35512C7BC159047FDC134E80F3B37A06_inline((&V_5), NULL);
|
|
V_2 = L_12;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalUpdateCachedSystem.cs:266>
|
|
float4_t89D9A294E7A79BD81BFBDD18654508532958555E L_13 = V_1;
|
|
float4_t89D9A294E7A79BD81BFBDD18654508532958555E L_14 = V_0;
|
|
float4_t89D9A294E7A79BD81BFBDD18654508532958555E L_15;
|
|
L_15 = float4_op_Subtraction_mBC40F52B8A8EF499A1AA3CC987E5935BD188B4E3_inline(L_13, L_14, NULL);
|
|
float L_16;
|
|
L_16 = math_length_mDA291F159E5B088CF2EF354538EBDBC60063C9E7_inline(L_15, NULL);
|
|
V_3 = ((float)(L_16/(2.0f)));
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalUpdateCachedSystem.cs:268>
|
|
il2cpp_codegen_initobj((&V_4), sizeof(BoundingSphere_t2DDB3D1711A6920C0ECA9217D3E4E14AFF03C010));
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalUpdateCachedSystem.cs:269>
|
|
float3_t4AB5D88249ADB24F69FFD0793E8ED25E1CC3745E L_17 = V_2;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_18;
|
|
L_18 = float3_op_Implicit_m9CC301DFD67EEFAA15CA05E91913E862B22326F6(L_17, NULL);
|
|
(&V_4)->___position = L_18;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalUpdateCachedSystem.cs:270>
|
|
float L_19 = V_3;
|
|
(&V_4)->___radius = L_19;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalUpdateCachedSystem.cs:271>
|
|
BoundingSphere_t2DDB3D1711A6920C0ECA9217D3E4E14AFF03C010 L_20 = V_4;
|
|
return L_20;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C BoundingSphere_t2DDB3D1711A6920C0ECA9217D3E4E14AFF03C010 UpdateTransformsJob_GetDecalProjectBoundingSphere_mF9D8DC159DD8A283CDFC5F8B2D6A65E39623A736_AdjustorThunk (RuntimeObject* IL2CPP_PARAMETER_RESTRICT __this, Matrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6 ___0_decalToWorld, const RuntimeMethod* method)
|
|
{
|
|
UpdateTransformsJob_t7CF957169E8C6560084F48A51BC15A447F3002C7* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<UpdateTransformsJob_t7CF957169E8C6560084F48A51BC15A447F3002C7*>(__this + _offset);
|
|
BoundingSphere_t2DDB3D1711A6920C0ECA9217D3E4E14AFF03C010 _returnValue;
|
|
_returnValue = UpdateTransformsJob_GetDecalProjectBoundingSphere_mF9D8DC159DD8A283CDFC5F8B2D6A65E39623A736(_thisAdjusted, ___0_decalToWorld, method);
|
|
return _returnValue;
|
|
}
|
|
// Method Definition Index: 33214
|
|
IL2CPP_EXTERN_C IL2CPP_NO_INLINE IL2CPP_METHOD_ATTR void UpdateTransformsJob__cctor_mBF83421E170A2C5CF24278DD70D0D1B49C8A8D7E (const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UpdateTransformsJob_t7CF957169E8C6560084F48A51BC15A447F3002C7_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalUpdateCachedSystem.cs:194>
|
|
quaternion_tD6BCBECAF088B9EBAE2345EC8534C7A1A4C910D4 L_0;
|
|
L_0 = quaternion_EulerXYZ_m2035C2A216C0480D847181E970F4C1F2AC4972DE_inline((-1.57079637f), (0.0f), (0.0f), NULL);
|
|
((UpdateTransformsJob_t7CF957169E8C6560084F48A51BC15A447F3002C7_StaticFields*)il2cpp_codegen_static_fields_for(UpdateTransformsJob_t7CF957169E8C6560084F48A51BC15A447F3002C7_il2cpp_TypeInfo_var))->___k_MinusYtoZRotation = L_0;
|
|
return;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// Method Definition Index: 33215
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DecalUpdateCulledSystem__ctor_mF16F0666A7642C20554EF3142FEA0A06C60A32A2 (DecalUpdateCulledSystem_t772328A4933CE3C08E3712729DBADF0C07CEC67F* __this, DecalEntityManager_tDA689202786946588782A67EF3F0B0D9121C294A* ___0_entityManager, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ProfilingSampler_t420D4672EDB44E0EF980B31ADFD9E5747200FECE_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralA1B2AB35233738B5FBDA8786157B8E2EF5D42E15);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalUpdateCulledSystem.cs:11>
|
|
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalUpdateCulledSystem.cs:13>
|
|
DecalEntityManager_tDA689202786946588782A67EF3F0B0D9121C294A* L_0 = ___0_entityManager;
|
|
__this->___m_EntityManager = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_EntityManager), (void*)L_0);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalUpdateCulledSystem.cs:14>
|
|
ProfilingSampler_t420D4672EDB44E0EF980B31ADFD9E5747200FECE* L_1 = (ProfilingSampler_t420D4672EDB44E0EF980B31ADFD9E5747200FECE*)il2cpp_codegen_object_new(ProfilingSampler_t420D4672EDB44E0EF980B31ADFD9E5747200FECE_il2cpp_TypeInfo_var);
|
|
ProfilingSampler__ctor_m26500989FCDB07FA33C9A3BB7F215CBD892F5BB7(L_1, _stringLiteralA1B2AB35233738B5FBDA8786157B8E2EF5D42E15, NULL);
|
|
__this->___m_Sampler = L_1;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_Sampler), (void*)L_1);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalUpdateCulledSystem.cs:15>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 33216
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DecalUpdateCulledSystem_Execute_mC9AB16C84C382BE4D114FE4129493C2A5C75234F (DecalUpdateCulledSystem_t772328A4933CE3C08E3712729DBADF0C07CEC67F* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Item_m1678465F50522CE2FAF1BB8EA6969B91268E5FA3_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
ProfilingScope_t57898BA31E8EF8F083EF84E0DA2737AC61CBC5BD V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
int32_t V_1 = 0;
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalUpdateCulledSystem.cs:19>
|
|
ProfilingSampler_t420D4672EDB44E0EF980B31ADFD9E5747200FECE* L_0 = __this->___m_Sampler;
|
|
ProfilingScope__ctor_m4B73587A2295443A73B64DDD3D484D8EAECC0D65((&V_0), L_0, NULL);
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_0052:
|
|
{
|
|
ProfilingScope_Dispose_m4231A2ACA1F8E345BB0078310A9F7601704C8BE4((&V_0), NULL);
|
|
return;
|
|
}
|
|
});
|
|
try
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalUpdateCulledSystem.cs:21>
|
|
V_1 = 0;
|
|
goto IL_0042_1;
|
|
}
|
|
|
|
IL_0011_1:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalUpdateCulledSystem.cs:22>
|
|
DecalEntityManager_tDA689202786946588782A67EF3F0B0D9121C294A* L_1 = __this->___m_EntityManager;
|
|
NullCheck(L_1);
|
|
List_1_t2E25D2E682EF62FB0FC538A4C88B3D49616A03DC* L_2 = L_1->___culledChunks;
|
|
int32_t L_3 = V_1;
|
|
NullCheck(L_2);
|
|
DecalCulledChunk_tFD4472F0ADDD173C7B13E8B0529983E745F12ED3* L_4;
|
|
L_4 = List_1_get_Item_m1678465F50522CE2FAF1BB8EA6969B91268E5FA3(L_2, L_3, List_1_get_Item_m1678465F50522CE2FAF1BB8EA6969B91268E5FA3_RuntimeMethod_var);
|
|
DecalEntityManager_tDA689202786946588782A67EF3F0B0D9121C294A* L_5 = __this->___m_EntityManager;
|
|
NullCheck(L_5);
|
|
List_1_t2E25D2E682EF62FB0FC538A4C88B3D49616A03DC* L_6 = L_5->___culledChunks;
|
|
int32_t L_7 = V_1;
|
|
NullCheck(L_6);
|
|
DecalCulledChunk_tFD4472F0ADDD173C7B13E8B0529983E745F12ED3* L_8;
|
|
L_8 = List_1_get_Item_m1678465F50522CE2FAF1BB8EA6969B91268E5FA3(L_6, L_7, List_1_get_Item_m1678465F50522CE2FAF1BB8EA6969B91268E5FA3_RuntimeMethod_var);
|
|
NullCheck(L_8);
|
|
int32_t L_9;
|
|
L_9 = DecalChunk_get_count_mEF67D584A3FF77C4A87A916D5F464D91D47C4B17_inline(L_8, NULL);
|
|
DecalUpdateCulledSystem_Execute_mD2BA2DD5E7BEDA257F0E6C96F53730DF236264FD(__this, L_4, L_9, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalUpdateCulledSystem.cs:21>
|
|
int32_t L_10 = V_1;
|
|
V_1 = ((int32_t)il2cpp_codegen_add(L_10, 1));
|
|
}
|
|
|
|
IL_0042_1:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalUpdateCulledSystem.cs:21>
|
|
int32_t L_11 = V_1;
|
|
DecalEntityManager_tDA689202786946588782A67EF3F0B0D9121C294A* L_12 = __this->___m_EntityManager;
|
|
NullCheck(L_12);
|
|
int32_t L_13 = L_12->___chunkCount;
|
|
if ((((int32_t)L_11) < ((int32_t)L_13)))
|
|
{
|
|
goto IL_0011_1;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalUpdateCulledSystem.cs:23>
|
|
goto IL_0060;
|
|
}
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_0060:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalUpdateCulledSystem.cs:24>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 33217
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DecalUpdateCulledSystem_Execute_mD2BA2DD5E7BEDA257F0E6C96F53730DF236264FD (DecalUpdateCulledSystem_t772328A4933CE3C08E3712729DBADF0C07CEC67F* __this, DecalCulledChunk_tFD4472F0ADDD173C7B13E8B0529983E745F12ED3* ___0_culledChunk, int32_t ___1_count, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NativeArray_1_CopyFrom_mA833BCBDF37D94BF60950C40CD5C281B113BA999_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
CullingGroup_t0732D3CC044BAE2BE39748CBF5D96DDB6DBF62E7* V_0 = NULL;
|
|
JobHandle_t5DF5F99902FED3C801A81C05205CEA6CE039EF08 V_1;
|
|
memset((&V_1), 0, sizeof(V_1));
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalUpdateCulledSystem.cs:28>
|
|
int32_t L_0 = ___1_count;
|
|
if (L_0)
|
|
{
|
|
goto IL_0004;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalUpdateCulledSystem.cs:29>
|
|
return;
|
|
}
|
|
|
|
IL_0004:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalUpdateCulledSystem.cs:31>
|
|
DecalCulledChunk_tFD4472F0ADDD173C7B13E8B0529983E745F12ED3* L_1 = ___0_culledChunk;
|
|
NullCheck(L_1);
|
|
JobHandle_t5DF5F99902FED3C801A81C05205CEA6CE039EF08 L_2;
|
|
L_2 = DecalChunk_get_currentJobHandle_m0EBD28118EB20E5BBC3BE831171CD2CDC745AAD4_inline(L_1, NULL);
|
|
V_1 = L_2;
|
|
JobHandle_Complete_mDCED35A125AAB37EDDAB2E31C805B4904B614A4A((&V_1), NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalUpdateCulledSystem.cs:33>
|
|
DecalCulledChunk_tFD4472F0ADDD173C7B13E8B0529983E745F12ED3* L_3 = ___0_culledChunk;
|
|
NullCheck(L_3);
|
|
CullingGroup_t0732D3CC044BAE2BE39748CBF5D96DDB6DBF62E7* L_4 = L_3->___cullingGroups;
|
|
V_0 = L_4;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalUpdateCulledSystem.cs:34>
|
|
DecalCulledChunk_tFD4472F0ADDD173C7B13E8B0529983E745F12ED3* L_5 = ___0_culledChunk;
|
|
CullingGroup_t0732D3CC044BAE2BE39748CBF5D96DDB6DBF62E7* L_6 = V_0;
|
|
DecalCulledChunk_tFD4472F0ADDD173C7B13E8B0529983E745F12ED3* L_7 = ___0_culledChunk;
|
|
NullCheck(L_7);
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_8 = L_7->___visibleDecalIndexArray;
|
|
NullCheck(L_6);
|
|
int32_t L_9;
|
|
L_9 = CullingGroup_QueryIndices_mC47E11F41B3589B122AEF577D11627C0A8E7F6F2(L_6, (bool)1, L_8, 0, NULL);
|
|
NullCheck(L_5);
|
|
L_5->___visibleDecalCount = L_9;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalUpdateCulledSystem.cs:35>
|
|
DecalCulledChunk_tFD4472F0ADDD173C7B13E8B0529983E745F12ED3* L_10 = ___0_culledChunk;
|
|
NullCheck(L_10);
|
|
NativeArray_1_tA833EB7E3E1C9AF82C37976AD964B8D4BAC38B2C* L_11 = (NativeArray_1_tA833EB7E3E1C9AF82C37976AD964B8D4BAC38B2C*)(&L_10->___visibleDecalIndices);
|
|
DecalCulledChunk_tFD4472F0ADDD173C7B13E8B0529983E745F12ED3* L_12 = ___0_culledChunk;
|
|
NullCheck(L_12);
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_13 = L_12->___visibleDecalIndexArray;
|
|
NativeArray_1_CopyFrom_mA833BCBDF37D94BF60950C40CD5C281B113BA999(L_11, L_13, NativeArray_1_CopyFrom_mA833BCBDF37D94BF60950C40CD5C281B113BA999_RuntimeMethod_var);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalUpdateCulledSystem.cs:36>
|
|
return;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// Method Definition Index: 33218
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DecalCulledChunk_RemoveAtSwapBack_m5A493AB04C9F1C45FD30A14C5966D34386FD64FE (DecalCulledChunk_tFD4472F0ADDD173C7B13E8B0529983E745F12ED3* __this, int32_t ___0_entityIndex, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DecalChunk_RemoveAtSwapBack_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_m79F67135CEB14F4F697474A409493E057B89D759_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DecalChunk_RemoveAtSwapBack_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_m915FF8D13A89D601291E1005178CA3EA54A7C5D8_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int32_t V_0 = 0;
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalUpdateCullingGroupSystem.cs:22>
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C** L_0 = (Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C**)(&__this->___visibleDecalIndexArray);
|
|
int32_t L_1 = ___0_entityIndex;
|
|
int32_t L_2;
|
|
L_2 = DecalChunk_get_count_mEF67D584A3FF77C4A87A916D5F464D91D47C4B17_inline(__this, NULL);
|
|
DecalChunk_RemoveAtSwapBack_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_m915FF8D13A89D601291E1005178CA3EA54A7C5D8(__this, L_0, L_1, L_2, DecalChunk_RemoveAtSwapBack_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_m915FF8D13A89D601291E1005178CA3EA54A7C5D8_RuntimeMethod_var);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalUpdateCullingGroupSystem.cs:23>
|
|
NativeArray_1_tA833EB7E3E1C9AF82C37976AD964B8D4BAC38B2C* L_3 = (NativeArray_1_tA833EB7E3E1C9AF82C37976AD964B8D4BAC38B2C*)(&__this->___visibleDecalIndices);
|
|
int32_t L_4 = ___0_entityIndex;
|
|
int32_t L_5;
|
|
L_5 = DecalChunk_get_count_mEF67D584A3FF77C4A87A916D5F464D91D47C4B17_inline(__this, NULL);
|
|
DecalChunk_RemoveAtSwapBack_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_m79F67135CEB14F4F697474A409493E057B89D759(__this, L_3, L_4, L_5, DecalChunk_RemoveAtSwapBack_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_m79F67135CEB14F4F697474A409493E057B89D759_RuntimeMethod_var);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalUpdateCullingGroupSystem.cs:24>
|
|
int32_t L_6;
|
|
L_6 = DecalChunk_get_count_mEF67D584A3FF77C4A87A916D5F464D91D47C4B17_inline(__this, NULL);
|
|
V_0 = L_6;
|
|
int32_t L_7 = V_0;
|
|
DecalChunk_set_count_m55DFD6DAB9893215E6FB8E81AB00257C21488EC8_inline(__this, ((int32_t)il2cpp_codegen_subtract(L_7, 1)), NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalUpdateCullingGroupSystem.cs:25>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 33219
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DecalCulledChunk_SetCapacity_m95AED739ED49EBDC8121B37BDF9CA87222D9BB1F (DecalCulledChunk_tFD4472F0ADDD173C7B13E8B0529983E745F12ED3* __this, int32_t ___0_newCapacity, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ArrayExtensions_ResizeArray_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_mCC1C29FFBD5857EE8A9D2DD4EECE68A25390D347_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ArrayExtensions_ResizeArray_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_mFFAD26B2501568E203F55AC9971F07ECF103B4BB_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CullingGroup_t0732D3CC044BAE2BE39748CBF5D96DDB6DBF62E7_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalUpdateCullingGroupSystem.cs:29>
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C** L_0 = (Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C**)(&__this->___visibleDecalIndexArray);
|
|
int32_t L_1 = ___0_newCapacity;
|
|
ArrayExtensions_ResizeArray_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_mFFAD26B2501568E203F55AC9971F07ECF103B4BB(L_0, L_1, ArrayExtensions_ResizeArray_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_mFFAD26B2501568E203F55AC9971F07ECF103B4BB_RuntimeMethod_var);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalUpdateCullingGroupSystem.cs:30>
|
|
NativeArray_1_tA833EB7E3E1C9AF82C37976AD964B8D4BAC38B2C* L_2 = (NativeArray_1_tA833EB7E3E1C9AF82C37976AD964B8D4BAC38B2C*)(&__this->___visibleDecalIndices);
|
|
int32_t L_3 = ___0_newCapacity;
|
|
ArrayExtensions_ResizeArray_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_mCC1C29FFBD5857EE8A9D2DD4EECE68A25390D347(L_2, L_3, ArrayExtensions_ResizeArray_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_mCC1C29FFBD5857EE8A9D2DD4EECE68A25390D347_RuntimeMethod_var);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalUpdateCullingGroupSystem.cs:31>
|
|
CullingGroup_t0732D3CC044BAE2BE39748CBF5D96DDB6DBF62E7* L_4 = __this->___cullingGroups;
|
|
if (L_4)
|
|
{
|
|
goto IL_002b;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalUpdateCullingGroupSystem.cs:32>
|
|
CullingGroup_t0732D3CC044BAE2BE39748CBF5D96DDB6DBF62E7* L_5 = (CullingGroup_t0732D3CC044BAE2BE39748CBF5D96DDB6DBF62E7*)il2cpp_codegen_object_new(CullingGroup_t0732D3CC044BAE2BE39748CBF5D96DDB6DBF62E7_il2cpp_TypeInfo_var);
|
|
CullingGroup__ctor_mDCD3471B009FDF42FF9F7A735E5AF009C5C890A4(L_5, NULL);
|
|
__this->___cullingGroups = L_5;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___cullingGroups), (void*)L_5);
|
|
}
|
|
|
|
IL_002b:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalUpdateCullingGroupSystem.cs:33>
|
|
int32_t L_6 = ___0_newCapacity;
|
|
DecalChunk_set_capacity_mB9107E4EB6FFDDEAD9D6DED6B83E65AC10E4E490_inline(__this, L_6, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalUpdateCullingGroupSystem.cs:34>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 33220
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DecalCulledChunk_Dispose_m792A6EA4EC3BDBD7A9E9E68529F698FB5236D359 (DecalCulledChunk_tFD4472F0ADDD173C7B13E8B0529983E745F12ED3* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NativeArray_1_Dispose_m05C674E687B921C37722A6A1FF938FD56574642E_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalUpdateCullingGroupSystem.cs:38>
|
|
int32_t L_0;
|
|
L_0 = DecalChunk_get_capacity_m70E0A37FAAF474D0AC7277BCD11673777BA0C15A_inline(__this, NULL);
|
|
if (L_0)
|
|
{
|
|
goto IL_0009;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalUpdateCullingGroupSystem.cs:39>
|
|
return;
|
|
}
|
|
|
|
IL_0009:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalUpdateCullingGroupSystem.cs:41>
|
|
NativeArray_1_tA833EB7E3E1C9AF82C37976AD964B8D4BAC38B2C* L_1 = (NativeArray_1_tA833EB7E3E1C9AF82C37976AD964B8D4BAC38B2C*)(&__this->___visibleDecalIndices);
|
|
NativeArray_1_Dispose_m05C674E687B921C37722A6A1FF938FD56574642E(L_1, NativeArray_1_Dispose_m05C674E687B921C37722A6A1FF938FD56574642E_RuntimeMethod_var);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalUpdateCullingGroupSystem.cs:42>
|
|
__this->___visibleDecalIndexArray = (Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C*)NULL;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___visibleDecalIndexArray), (void*)(Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C*)NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalUpdateCullingGroupSystem.cs:43>
|
|
DecalChunk_set_count_m55DFD6DAB9893215E6FB8E81AB00257C21488EC8_inline(__this, 0, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalUpdateCullingGroupSystem.cs:44>
|
|
DecalChunk_set_capacity_mB9107E4EB6FFDDEAD9D6DED6B83E65AC10E4E490_inline(__this, 0, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalUpdateCullingGroupSystem.cs:45>
|
|
CullingGroup_t0732D3CC044BAE2BE39748CBF5D96DDB6DBF62E7* L_2 = __this->___cullingGroups;
|
|
NullCheck(L_2);
|
|
CullingGroup_Dispose_m81E5AC1FB79D0D867B88E66C76821BB8A9EAA3AE(L_2, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalUpdateCullingGroupSystem.cs:46>
|
|
__this->___cullingGroups = (CullingGroup_t0732D3CC044BAE2BE39748CBF5D96DDB6DBF62E7*)NULL;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___cullingGroups), (void*)(CullingGroup_t0732D3CC044BAE2BE39748CBF5D96DDB6DBF62E7*)NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalUpdateCullingGroupSystem.cs:47>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 33221
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DecalCulledChunk__ctor_mCACB1A26B40BDE5EC3D4026081B50CAFCDFB721F (DecalCulledChunk_tFD4472F0ADDD173C7B13E8B0529983E745F12ED3* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
DecalChunk__ctor_m948088C98FD016DE3F70B7312E3398BE8D9F1DF1(__this, NULL);
|
|
return;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// Method Definition Index: 33222
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float DecalUpdateCullingGroupSystem_get_boundingDistance_m0A13C79023479FDC4DA6DF3C7B7D3154A795EA4B (DecalUpdateCullingGroupSystem_t73FB1167667D8FAED3C38AF3E308A1E717E2C7D2* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalUpdateCullingGroupSystem.cs:60>
|
|
SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C* L_0 = __this->___m_BoundingDistance;
|
|
NullCheck(L_0);
|
|
int32_t L_1 = 0;
|
|
float L_2 = (L_0)->GetAt(static_cast<il2cpp_array_size_t>(L_1));
|
|
return L_2;
|
|
}
|
|
}
|
|
// Method Definition Index: 33223
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DecalUpdateCullingGroupSystem_set_boundingDistance_m0CFD3967035CC859264CDA31CA9AC92FD818FC5F (DecalUpdateCullingGroupSystem_t73FB1167667D8FAED3C38AF3E308A1E717E2C7D2* __this, float ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalUpdateCullingGroupSystem.cs:61>
|
|
SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C* L_0 = __this->___m_BoundingDistance;
|
|
float L_1 = ___0_value;
|
|
NullCheck(L_0);
|
|
(L_0)->SetAt(static_cast<il2cpp_array_size_t>(0), (float)L_1);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalUpdateCullingGroupSystem.cs:61>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 33224
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DecalUpdateCullingGroupSystem__ctor_m1EAE8569022784AA1DAB67E6930542ABB8D36D75 (DecalUpdateCullingGroupSystem_t73FB1167667D8FAED3C38AF3E308A1E717E2C7D2* __this, DecalEntityManager_tDA689202786946588782A67EF3F0B0D9121C294A* ___0_entityManager, float ___1_drawDistance, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ProfilingSampler_t420D4672EDB44E0EF980B31ADFD9E5747200FECE_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralFAD8CAE847D85602DD18CCD9CAC7FFA48961D64B);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalUpdateCullingGroupSystem.cs:64>
|
|
SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C* L_0 = (SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C*)(SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C*)SZArrayNew(SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C_il2cpp_TypeInfo_var, (uint32_t)1);
|
|
__this->___m_BoundingDistance = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_BoundingDistance), (void*)L_0);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalUpdateCullingGroupSystem.cs:69>
|
|
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalUpdateCullingGroupSystem.cs:71>
|
|
DecalEntityManager_tDA689202786946588782A67EF3F0B0D9121C294A* L_1 = ___0_entityManager;
|
|
__this->___m_EntityManager = L_1;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_EntityManager), (void*)L_1);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalUpdateCullingGroupSystem.cs:72>
|
|
SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C* L_2 = __this->___m_BoundingDistance;
|
|
float L_3 = ___1_drawDistance;
|
|
NullCheck(L_2);
|
|
(L_2)->SetAt(static_cast<il2cpp_array_size_t>(0), (float)L_3);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalUpdateCullingGroupSystem.cs:73>
|
|
ProfilingSampler_t420D4672EDB44E0EF980B31ADFD9E5747200FECE* L_4 = (ProfilingSampler_t420D4672EDB44E0EF980B31ADFD9E5747200FECE*)il2cpp_codegen_object_new(ProfilingSampler_t420D4672EDB44E0EF980B31ADFD9E5747200FECE_il2cpp_TypeInfo_var);
|
|
ProfilingSampler__ctor_m26500989FCDB07FA33C9A3BB7F215CBD892F5BB7(L_4, _stringLiteralFAD8CAE847D85602DD18CCD9CAC7FFA48961D64B, NULL);
|
|
__this->___m_Sampler = L_4;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_Sampler), (void*)L_4);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalUpdateCullingGroupSystem.cs:74>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 33225
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DecalUpdateCullingGroupSystem_Execute_m32F1635D3DB3CCEF80270C2FD0721BD5E5ECA965 (DecalUpdateCullingGroupSystem_t73FB1167667D8FAED3C38AF3E308A1E717E2C7D2* __this, Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184* ___0_camera, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Item_m1678465F50522CE2FAF1BB8EA6969B91268E5FA3_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Item_mF1A0B8107AFE027BCC67DA021B857B6495FA1A90_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
ProfilingScope_t57898BA31E8EF8F083EF84E0DA2737AC61CBC5BD V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
int32_t V_1 = 0;
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalUpdateCullingGroupSystem.cs:78>
|
|
ProfilingSampler_t420D4672EDB44E0EF980B31ADFD9E5747200FECE* L_0 = __this->___m_Sampler;
|
|
ProfilingScope__ctor_m4B73587A2295443A73B64DDD3D484D8EAECC0D65((&V_0), L_0, NULL);
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_006a:
|
|
{
|
|
ProfilingScope_Dispose_m4231A2ACA1F8E345BB0078310A9F7601704C8BE4((&V_0), NULL);
|
|
return;
|
|
}
|
|
});
|
|
try
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalUpdateCullingGroupSystem.cs:80>
|
|
Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184* L_1 = ___0_camera;
|
|
__this->___m_Camera = L_1;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_Camera), (void*)L_1);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalUpdateCullingGroupSystem.cs:81>
|
|
V_1 = 0;
|
|
goto IL_005a_1;
|
|
}
|
|
|
|
IL_0018_1:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalUpdateCullingGroupSystem.cs:82>
|
|
DecalEntityManager_tDA689202786946588782A67EF3F0B0D9121C294A* L_2 = __this->___m_EntityManager;
|
|
NullCheck(L_2);
|
|
List_1_t1A9527CB44249AD17D081A2D7A468343FC2D0720* L_3 = L_2->___cachedChunks;
|
|
int32_t L_4 = V_1;
|
|
NullCheck(L_3);
|
|
DecalCachedChunk_tDEF493C8A3A1F442BDEC1794BDDA0996B32DCACE* L_5;
|
|
L_5 = List_1_get_Item_mF1A0B8107AFE027BCC67DA021B857B6495FA1A90(L_3, L_4, List_1_get_Item_mF1A0B8107AFE027BCC67DA021B857B6495FA1A90_RuntimeMethod_var);
|
|
DecalEntityManager_tDA689202786946588782A67EF3F0B0D9121C294A* L_6 = __this->___m_EntityManager;
|
|
NullCheck(L_6);
|
|
List_1_t2E25D2E682EF62FB0FC538A4C88B3D49616A03DC* L_7 = L_6->___culledChunks;
|
|
int32_t L_8 = V_1;
|
|
NullCheck(L_7);
|
|
DecalCulledChunk_tFD4472F0ADDD173C7B13E8B0529983E745F12ED3* L_9;
|
|
L_9 = List_1_get_Item_m1678465F50522CE2FAF1BB8EA6969B91268E5FA3(L_7, L_8, List_1_get_Item_m1678465F50522CE2FAF1BB8EA6969B91268E5FA3_RuntimeMethod_var);
|
|
DecalEntityManager_tDA689202786946588782A67EF3F0B0D9121C294A* L_10 = __this->___m_EntityManager;
|
|
NullCheck(L_10);
|
|
List_1_t2E25D2E682EF62FB0FC538A4C88B3D49616A03DC* L_11 = L_10->___culledChunks;
|
|
int32_t L_12 = V_1;
|
|
NullCheck(L_11);
|
|
DecalCulledChunk_tFD4472F0ADDD173C7B13E8B0529983E745F12ED3* L_13;
|
|
L_13 = List_1_get_Item_m1678465F50522CE2FAF1BB8EA6969B91268E5FA3(L_11, L_12, List_1_get_Item_m1678465F50522CE2FAF1BB8EA6969B91268E5FA3_RuntimeMethod_var);
|
|
NullCheck(L_13);
|
|
int32_t L_14;
|
|
L_14 = DecalChunk_get_count_mEF67D584A3FF77C4A87A916D5F464D91D47C4B17_inline(L_13, NULL);
|
|
DecalUpdateCullingGroupSystem_Execute_mB75AB35C1D44132A1B1D8C475D0D7DB548D11E84(__this, L_5, L_9, L_14, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalUpdateCullingGroupSystem.cs:81>
|
|
int32_t L_15 = V_1;
|
|
V_1 = ((int32_t)il2cpp_codegen_add(L_15, 1));
|
|
}
|
|
|
|
IL_005a_1:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalUpdateCullingGroupSystem.cs:81>
|
|
int32_t L_16 = V_1;
|
|
DecalEntityManager_tDA689202786946588782A67EF3F0B0D9121C294A* L_17 = __this->___m_EntityManager;
|
|
NullCheck(L_17);
|
|
int32_t L_18 = L_17->___chunkCount;
|
|
if ((((int32_t)L_16) < ((int32_t)L_18)))
|
|
{
|
|
goto IL_0018_1;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalUpdateCullingGroupSystem.cs:83>
|
|
goto IL_0078;
|
|
}
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_0078:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalUpdateCullingGroupSystem.cs:84>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 33226
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DecalUpdateCullingGroupSystem_Execute_mB75AB35C1D44132A1B1D8C475D0D7DB548D11E84 (DecalUpdateCullingGroupSystem_t73FB1167667D8FAED3C38AF3E308A1E717E2C7D2* __this, DecalCachedChunk_tDEF493C8A3A1F442BDEC1794BDDA0996B32DCACE* ___0_cachedChunk, DecalCulledChunk_tFD4472F0ADDD173C7B13E8B0529983E745F12ED3* ___1_culledChunk, int32_t ___2_count, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NativeArray_1_CopyTo_mC4570E3EE4DEA62A1F990BDC926014F7773CB6C7_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
JobHandle_t5DF5F99902FED3C801A81C05205CEA6CE039EF08 V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalUpdateCullingGroupSystem.cs:88>
|
|
DecalCachedChunk_tDEF493C8A3A1F442BDEC1794BDDA0996B32DCACE* L_0 = ___0_cachedChunk;
|
|
NullCheck(L_0);
|
|
JobHandle_t5DF5F99902FED3C801A81C05205CEA6CE039EF08 L_1;
|
|
L_1 = DecalChunk_get_currentJobHandle_m0EBD28118EB20E5BBC3BE831171CD2CDC745AAD4_inline(L_0, NULL);
|
|
V_0 = L_1;
|
|
JobHandle_Complete_mDCED35A125AAB37EDDAB2E31C805B4904B614A4A((&V_0), NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalUpdateCullingGroupSystem.cs:90>
|
|
DecalCulledChunk_tFD4472F0ADDD173C7B13E8B0529983E745F12ED3* L_2 = ___1_culledChunk;
|
|
NullCheck(L_2);
|
|
CullingGroup_t0732D3CC044BAE2BE39748CBF5D96DDB6DBF62E7* L_3 = L_2->___cullingGroups;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalUpdateCullingGroupSystem.cs:91>
|
|
CullingGroup_t0732D3CC044BAE2BE39748CBF5D96DDB6DBF62E7* L_4 = L_3;
|
|
Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184* L_5 = __this->___m_Camera;
|
|
NullCheck(L_4);
|
|
CullingGroup_set_targetCamera_m98885EABBA6E5C0EF1EEA95D4EFA66D124D9A558(L_4, L_5, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalUpdateCullingGroupSystem.cs:92>
|
|
CullingGroup_t0732D3CC044BAE2BE39748CBF5D96DDB6DBF62E7* L_6 = L_4;
|
|
Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184* L_7 = __this->___m_Camera;
|
|
NullCheck(L_7);
|
|
Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1* L_8;
|
|
L_8 = Component_get_transform_m2919A1D81931E6932C7F06D4C2F0AB8DDA9A5371(L_7, NULL);
|
|
NullCheck(L_8);
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_9;
|
|
L_9 = Transform_get_position_m69CD5FA214FDAE7BB701552943674846C220FDE1(L_8, NULL);
|
|
NullCheck(L_6);
|
|
CullingGroup_SetDistanceReferencePoint_mDC369C67297A4350739CFF01740ADF89E866692E(L_6, L_9, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalUpdateCullingGroupSystem.cs:93>
|
|
CullingGroup_t0732D3CC044BAE2BE39748CBF5D96DDB6DBF62E7* L_10 = L_6;
|
|
SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C* L_11 = __this->___m_BoundingDistance;
|
|
NullCheck(L_10);
|
|
CullingGroup_SetBoundingDistances_mBC99B7BF56D85B34C0BBFF638686B75288D1011F(L_10, L_11, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalUpdateCullingGroupSystem.cs:94>
|
|
DecalCachedChunk_tDEF493C8A3A1F442BDEC1794BDDA0996B32DCACE* L_12 = ___0_cachedChunk;
|
|
NullCheck(L_12);
|
|
NativeArray_1_t3D8121943984EEED49DC98DED560DCC6638111B6* L_13 = (NativeArray_1_t3D8121943984EEED49DC98DED560DCC6638111B6*)(&L_12->___boundingSpheres);
|
|
DecalCachedChunk_tDEF493C8A3A1F442BDEC1794BDDA0996B32DCACE* L_14 = ___0_cachedChunk;
|
|
NullCheck(L_14);
|
|
BoundingSphereU5BU5D_tD7485B1D5D5A0EE26537B093423FC3AC149BEA47* L_15 = L_14->___boundingSphereArray;
|
|
NativeArray_1_CopyTo_mC4570E3EE4DEA62A1F990BDC926014F7773CB6C7(L_13, L_15, NativeArray_1_CopyTo_mC4570E3EE4DEA62A1F990BDC926014F7773CB6C7_RuntimeMethod_var);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalUpdateCullingGroupSystem.cs:95>
|
|
CullingGroup_t0732D3CC044BAE2BE39748CBF5D96DDB6DBF62E7* L_16 = L_10;
|
|
DecalCachedChunk_tDEF493C8A3A1F442BDEC1794BDDA0996B32DCACE* L_17 = ___0_cachedChunk;
|
|
NullCheck(L_17);
|
|
BoundingSphereU5BU5D_tD7485B1D5D5A0EE26537B093423FC3AC149BEA47* L_18 = L_17->___boundingSphereArray;
|
|
NullCheck(L_16);
|
|
CullingGroup_SetBoundingSpheres_mCB50B6A6A538FC4377213D4C6F85ABEB55ACCB01(L_16, L_18, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalUpdateCullingGroupSystem.cs:96>
|
|
int32_t L_19 = ___2_count;
|
|
NullCheck(L_16);
|
|
CullingGroup_SetBoundingSphereCount_mDA5DFA9EEEE2BA45F15A52AF6C3C7B8D8F05FE2F(L_16, L_19, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalUpdateCullingGroupSystem.cs:98>
|
|
DecalCulledChunk_tFD4472F0ADDD173C7B13E8B0529983E745F12ED3* L_20 = ___1_culledChunk;
|
|
Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184* L_21 = __this->___m_Camera;
|
|
NullCheck(L_21);
|
|
Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1* L_22;
|
|
L_22 = Component_get_transform_m2919A1D81931E6932C7F06D4C2F0AB8DDA9A5371(L_21, NULL);
|
|
NullCheck(L_22);
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_23;
|
|
L_23 = Transform_get_position_m69CD5FA214FDAE7BB701552943674846C220FDE1(L_22, NULL);
|
|
NullCheck(L_20);
|
|
L_20->___cameraPosition = L_23;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalUpdateCullingGroupSystem.cs:99>
|
|
DecalCulledChunk_tFD4472F0ADDD173C7B13E8B0529983E745F12ED3* L_24 = ___1_culledChunk;
|
|
Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184* L_25 = __this->___m_Camera;
|
|
NullCheck(L_25);
|
|
int32_t L_26;
|
|
L_26 = Camera_get_cullingMask_m6F5AFF8FB522F876D99E839BF77D8F27F26A1EF8(L_25, NULL);
|
|
NullCheck(L_24);
|
|
L_24->___cullingMask = L_26;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalUpdateCullingGroupSystem.cs:103>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 33227
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t DecalUpdateCullingGroupSystem_GetSceneCullingMaskFromCamera_m0699B2FEDEEBB89881277623D1C04727FDC51676 (Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184* ___0_camera, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalUpdateCullingGroupSystem.cs:122>
|
|
return ((int64_t)0);
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// Method Definition Index: 33228
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DecalDrawGBufferSystem__ctor_mE0079617EEA532B331E3F4B03B638CE4F45B36DD (DecalDrawGBufferSystem_t4520A37A2689CDF89893A02977EEC7F0701F796D* __this, DecalEntityManager_tDA689202786946588782A67EF3F0B0D9121C294A* ___0_entityManager, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DecalDrawSystem_t87ECA1A8D2D9C3A73A12F81D8CCA0F79029C0BFE_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralDC5888CD5FFB117698CFDBBC1B2CA00232CC8C2F);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/ScreenSpace/DecalGBufferRenderPass.cs:11>
|
|
DecalEntityManager_tDA689202786946588782A67EF3F0B0D9121C294A* L_0 = ___0_entityManager;
|
|
il2cpp_codegen_runtime_class_init_inline(DecalDrawSystem_t87ECA1A8D2D9C3A73A12F81D8CCA0F79029C0BFE_il2cpp_TypeInfo_var);
|
|
DecalDrawSystem__ctor_m2F13DA6696D08715AC3C3BE7B73AA680945620A5(__this, _stringLiteralDC5888CD5FFB117698CFDBBC1B2CA00232CC8C2F, L_0, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/ScreenSpace/DecalGBufferRenderPass.cs:11>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 33229
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t DecalDrawGBufferSystem_GetPassIndex_mE9EEFF8FD1848E771D2576A85B7381746C71A89B (DecalDrawGBufferSystem_t4520A37A2689CDF89893A02977EEC7F0701F796D* __this, DecalCachedChunk_tDEF493C8A3A1F442BDEC1794BDDA0996B32DCACE* ___0_decalCachedChunk, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/ScreenSpace/DecalGBufferRenderPass.cs:12>
|
|
DecalCachedChunk_tDEF493C8A3A1F442BDEC1794BDDA0996B32DCACE* L_0 = ___0_decalCachedChunk;
|
|
NullCheck(L_0);
|
|
int32_t L_1 = L_0->___passIndexGBuffer;
|
|
return L_1;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// Method Definition Index: 33230
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DecalGBufferRenderPass__ctor_mD99109D7C7FD2566FA695EAD62F444CFA1EA44C0 (DecalGBufferRenderPass_tF9AE5E097AC2B82F540580ECA6E502C1B885ECA4* __this, DecalScreenSpaceSettings_tD94FE1202A789534D40E4DD61AD7DE9E55F1ADD3* ___0_settings, DecalDrawGBufferSystem_t4520A37A2689CDF89893A02977EEC7F0701F796D* ___1_drawSystem, bool ___2_decalLayers, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Add_m999CAB0903219BD2CF988827287D44B0B44D69FE_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1__ctor_m21A3AD10EC2C165E8A6A3A533380D5D8BE162787_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_t4673975A297A80D4D4A65EB5A2BE3B6BD1EED9AF_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1__ctor_mC09CE20B08C6A7188EE04F52B6A2E598657A0204_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PassData_t4396B080377CC62E6B81D42D8103F58BF0CC9451_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ProfilingSampler_t420D4672EDB44E0EF980B31ADFD9E5747200FECE_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RTHandleU5BU5D_tE4B403B060D159B839BF74E8B59F8DCD52CF97DF_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RenderQueueRange_t7518252AA6426B1EA45D3D9B394F304EEF784D71_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral25B382C4D9A39B80646AC80AEE390ED44DAC68AE);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralD4CD417E1A72493EB1F413494479950631318DD5);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralF2125C79F260FE911C7939C37E6B2A6A6034B1CB);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/ScreenSpace/DecalGBufferRenderPass.cs:26>
|
|
il2cpp_codegen_runtime_class_init_inline(ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0_il2cpp_TypeInfo_var);
|
|
ScriptableRenderPass__ctor_mE49D4FF8E68A854367A4081E664B8DBA74E6B752(__this, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/ScreenSpace/DecalGBufferRenderPass.cs:28>
|
|
ScriptableRenderPass_set_renderPassEvent_m63FA581FFDE1C69C2E1358BD0B8DB30275334960_inline(__this, ((int32_t)220), NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/ScreenSpace/DecalGBufferRenderPass.cs:30>
|
|
DecalDrawGBufferSystem_t4520A37A2689CDF89893A02977EEC7F0701F796D* L_0 = ___1_drawSystem;
|
|
__this->___m_DrawSystem = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_DrawSystem), (void*)L_0);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/ScreenSpace/DecalGBufferRenderPass.cs:31>
|
|
DecalScreenSpaceSettings_tD94FE1202A789534D40E4DD61AD7DE9E55F1ADD3* L_1 = ___0_settings;
|
|
__this->___m_Settings = L_1;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_Settings), (void*)L_1);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/ScreenSpace/DecalGBufferRenderPass.cs:32>
|
|
ProfilingSampler_t420D4672EDB44E0EF980B31ADFD9E5747200FECE* L_2 = (ProfilingSampler_t420D4672EDB44E0EF980B31ADFD9E5747200FECE*)il2cpp_codegen_object_new(ProfilingSampler_t420D4672EDB44E0EF980B31ADFD9E5747200FECE_il2cpp_TypeInfo_var);
|
|
ProfilingSampler__ctor_m26500989FCDB07FA33C9A3BB7F215CBD892F5BB7(L_2, _stringLiteral25B382C4D9A39B80646AC80AEE390ED44DAC68AE, NULL);
|
|
ScriptableRenderPass_set_profilingSampler_mFD238B85B68DED586BA8C678141BEEAF229FBF2D(__this, L_2, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/ScreenSpace/DecalGBufferRenderPass.cs:33>
|
|
il2cpp_codegen_runtime_class_init_inline(RenderQueueRange_t7518252AA6426B1EA45D3D9B394F304EEF784D71_il2cpp_TypeInfo_var);
|
|
RenderQueueRange_t7518252AA6426B1EA45D3D9B394F304EEF784D71 L_3;
|
|
L_3 = RenderQueueRange_get_opaque_m197DF3E6CC12F21B15F3F603EFD640806FCB65D9(NULL);
|
|
Nullable_1_t7D98773CC20A842A0846271D1181ECBB0D95926C L_4;
|
|
memset((&L_4), 0, sizeof(L_4));
|
|
Nullable_1__ctor_mC09CE20B08C6A7188EE04F52B6A2E598657A0204((&L_4), L_3, Nullable_1__ctor_mC09CE20B08C6A7188EE04F52B6A2E598657A0204_RuntimeMethod_var);
|
|
FilteringSettings_t75860B12A7BCF9A0E2F13CB2C2E5DCD9E1EEAD9F L_5;
|
|
memset((&L_5), 0, sizeof(L_5));
|
|
FilteringSettings__ctor_m2A2242373FC7D053CFBBC6814D02AAC73C7B3AE7((&L_5), L_4, (-1), (-1), 0, NULL);
|
|
__this->___m_FilteringSettings = L_5;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/ScreenSpace/DecalGBufferRenderPass.cs:34>
|
|
bool L_6 = ___2_decalLayers;
|
|
__this->___m_DecalLayers = L_6;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/ScreenSpace/DecalGBufferRenderPass.cs:36>
|
|
List_1_t4673975A297A80D4D4A65EB5A2BE3B6BD1EED9AF* L_7 = (List_1_t4673975A297A80D4D4A65EB5A2BE3B6BD1EED9AF*)il2cpp_codegen_object_new(List_1_t4673975A297A80D4D4A65EB5A2BE3B6BD1EED9AF_il2cpp_TypeInfo_var);
|
|
List_1__ctor_m21A3AD10EC2C165E8A6A3A533380D5D8BE162787(L_7, List_1__ctor_m21A3AD10EC2C165E8A6A3A533380D5D8BE162787_RuntimeMethod_var);
|
|
__this->___m_ShaderTagIdList = L_7;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_ShaderTagIdList), (void*)L_7);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/ScreenSpace/DecalGBufferRenderPass.cs:37>
|
|
DecalDrawGBufferSystem_t4520A37A2689CDF89893A02977EEC7F0701F796D* L_8 = ___1_drawSystem;
|
|
if (L_8)
|
|
{
|
|
goto IL_0073;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/ScreenSpace/DecalGBufferRenderPass.cs:38>
|
|
List_1_t4673975A297A80D4D4A65EB5A2BE3B6BD1EED9AF* L_9 = __this->___m_ShaderTagIdList;
|
|
ShaderTagId_t453E2085B5EE9448FF75E550CAB111EFF690ECB0 L_10;
|
|
memset((&L_10), 0, sizeof(L_10));
|
|
ShaderTagId__ctor_m4191968F1D2CE19F9092253EC10F83734A9CFF5B((&L_10), _stringLiteralD4CD417E1A72493EB1F413494479950631318DD5, NULL);
|
|
NullCheck(L_9);
|
|
List_1_Add_m999CAB0903219BD2CF988827287D44B0B44D69FE_inline(L_9, L_10, List_1_Add_m999CAB0903219BD2CF988827287D44B0B44D69FE_RuntimeMethod_var);
|
|
goto IL_0088;
|
|
}
|
|
|
|
IL_0073:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/ScreenSpace/DecalGBufferRenderPass.cs:40>
|
|
List_1_t4673975A297A80D4D4A65EB5A2BE3B6BD1EED9AF* L_11 = __this->___m_ShaderTagIdList;
|
|
ShaderTagId_t453E2085B5EE9448FF75E550CAB111EFF690ECB0 L_12;
|
|
memset((&L_12), 0, sizeof(L_12));
|
|
ShaderTagId__ctor_m4191968F1D2CE19F9092253EC10F83734A9CFF5B((&L_12), _stringLiteralF2125C79F260FE911C7939C37E6B2A6A6034B1CB, NULL);
|
|
NullCheck(L_11);
|
|
List_1_Add_m999CAB0903219BD2CF988827287D44B0B44D69FE_inline(L_11, L_12, List_1_Add_m999CAB0903219BD2CF988827287D44B0B44D69FE_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_0088:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/ScreenSpace/DecalGBufferRenderPass.cs:42>
|
|
PassData_t4396B080377CC62E6B81D42D8103F58BF0CC9451* L_13 = (PassData_t4396B080377CC62E6B81D42D8103F58BF0CC9451*)il2cpp_codegen_object_new(PassData_t4396B080377CC62E6B81D42D8103F58BF0CC9451_il2cpp_TypeInfo_var);
|
|
PassData__ctor_m026A8010E17A93921E2BF87E12B4384114F0819E(L_13, NULL);
|
|
__this->___m_PassData = L_13;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_PassData), (void*)L_13);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/ScreenSpace/DecalGBufferRenderPass.cs:43>
|
|
RTHandleU5BU5D_tE4B403B060D159B839BF74E8B59F8DCD52CF97DF* L_14 = (RTHandleU5BU5D_tE4B403B060D159B839BF74E8B59F8DCD52CF97DF*)(RTHandleU5BU5D_tE4B403B060D159B839BF74E8B59F8DCD52CF97DF*)SZArrayNew(RTHandleU5BU5D_tE4B403B060D159B839BF74E8B59F8DCD52CF97DF_il2cpp_TypeInfo_var, (uint32_t)4);
|
|
__this->___m_GbufferAttachments = L_14;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_GbufferAttachments), (void*)L_14);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/ScreenSpace/DecalGBufferRenderPass.cs:44>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 33231
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DecalGBufferRenderPass_Setup_m9394FE80F88C9A5DBB5E1901D5B98344C668D081 (DecalGBufferRenderPass_tF9AE5E097AC2B82F540580ECA6E502C1B885ECA4* __this, DeferredLights_t8A3C2AC9C4AF92CF3411F722D8A094EA07DA14AC* ___0_deferredLights, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/ScreenSpace/DecalGBufferRenderPass.cs:48>
|
|
DeferredLights_t8A3C2AC9C4AF92CF3411F722D8A094EA07DA14AC* L_0 = ___0_deferredLights;
|
|
__this->___m_DeferredLights = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_DeferredLights), (void*)L_0);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/ScreenSpace/DecalGBufferRenderPass.cs:49>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 33232
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DecalGBufferRenderPass_Configure_m83E1843A69D561C1FA63393D93E80F65B71060E9 (DecalGBufferRenderPass_tF9AE5E097AC2B82F540580ECA6E502C1B885ECA4* __this, CommandBuffer_tB56007DC84EF56296C325EC32DD12AC1E3DC91F7* ___0_cmd, RenderTextureDescriptor_t69845881CE6437E4E61F92074F2F84079F23FA46 ___1_cameraTextureDescriptor, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RTHandleU5BU5D_tE4B403B060D159B839BF74E8B59F8DCD52CF97DF_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
RTHandleU5BU5D_tE4B403B060D159B839BF74E8B59F8DCD52CF97DF* V_0 = NULL;
|
|
BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* V_1 = NULL;
|
|
RTHandleU5BU5D_tE4B403B060D159B839BF74E8B59F8DCD52CF97DF* V_2 = NULL;
|
|
BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* V_3 = NULL;
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/ScreenSpace/DecalGBufferRenderPass.cs:54>
|
|
DeferredLights_t8A3C2AC9C4AF92CF3411F722D8A094EA07DA14AC* L_0 = __this->___m_DeferredLights;
|
|
NullCheck(L_0);
|
|
bool L_1;
|
|
L_1 = DeferredLights_get_UseFramebufferFetch_mCA48571D2CF82D0FA8854DEA9831D5EEB2E96891_inline(L_0, NULL);
|
|
if (!L_1)
|
|
{
|
|
goto IL_00f5;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/ScreenSpace/DecalGBufferRenderPass.cs:56>
|
|
RTHandleU5BU5D_tE4B403B060D159B839BF74E8B59F8DCD52CF97DF* L_2 = __this->___m_GbufferAttachments;
|
|
DeferredLights_t8A3C2AC9C4AF92CF3411F722D8A094EA07DA14AC* L_3 = __this->___m_DeferredLights;
|
|
NullCheck(L_3);
|
|
RTHandleU5BU5D_tE4B403B060D159B839BF74E8B59F8DCD52CF97DF* L_4;
|
|
L_4 = DeferredLights_get_GbufferAttachments_m93F4186104CA66B40F90FC3421542561D91A52DC_inline(L_3, NULL);
|
|
NullCheck(L_4);
|
|
int32_t L_5 = 0;
|
|
RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B* L_6 = (L_4)->GetAt(static_cast<il2cpp_array_size_t>(L_5));
|
|
NullCheck(L_2);
|
|
ArrayElementTypeCheck (L_2, L_6);
|
|
(L_2)->SetAt(static_cast<il2cpp_array_size_t>(0), (RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B*)L_6);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/ScreenSpace/DecalGBufferRenderPass.cs:57>
|
|
RTHandleU5BU5D_tE4B403B060D159B839BF74E8B59F8DCD52CF97DF* L_7 = __this->___m_GbufferAttachments;
|
|
DeferredLights_t8A3C2AC9C4AF92CF3411F722D8A094EA07DA14AC* L_8 = __this->___m_DeferredLights;
|
|
NullCheck(L_8);
|
|
RTHandleU5BU5D_tE4B403B060D159B839BF74E8B59F8DCD52CF97DF* L_9;
|
|
L_9 = DeferredLights_get_GbufferAttachments_m93F4186104CA66B40F90FC3421542561D91A52DC_inline(L_8, NULL);
|
|
NullCheck(L_9);
|
|
int32_t L_10 = 1;
|
|
RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B* L_11 = (L_9)->GetAt(static_cast<il2cpp_array_size_t>(L_10));
|
|
NullCheck(L_7);
|
|
ArrayElementTypeCheck (L_7, L_11);
|
|
(L_7)->SetAt(static_cast<il2cpp_array_size_t>(1), (RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B*)L_11);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/ScreenSpace/DecalGBufferRenderPass.cs:58>
|
|
RTHandleU5BU5D_tE4B403B060D159B839BF74E8B59F8DCD52CF97DF* L_12 = __this->___m_GbufferAttachments;
|
|
DeferredLights_t8A3C2AC9C4AF92CF3411F722D8A094EA07DA14AC* L_13 = __this->___m_DeferredLights;
|
|
NullCheck(L_13);
|
|
RTHandleU5BU5D_tE4B403B060D159B839BF74E8B59F8DCD52CF97DF* L_14;
|
|
L_14 = DeferredLights_get_GbufferAttachments_m93F4186104CA66B40F90FC3421542561D91A52DC_inline(L_13, NULL);
|
|
NullCheck(L_14);
|
|
int32_t L_15 = 2;
|
|
RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B* L_16 = (L_14)->GetAt(static_cast<il2cpp_array_size_t>(L_15));
|
|
NullCheck(L_12);
|
|
ArrayElementTypeCheck (L_12, L_16);
|
|
(L_12)->SetAt(static_cast<il2cpp_array_size_t>(2), (RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B*)L_16);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/ScreenSpace/DecalGBufferRenderPass.cs:59>
|
|
RTHandleU5BU5D_tE4B403B060D159B839BF74E8B59F8DCD52CF97DF* L_17 = __this->___m_GbufferAttachments;
|
|
DeferredLights_t8A3C2AC9C4AF92CF3411F722D8A094EA07DA14AC* L_18 = __this->___m_DeferredLights;
|
|
NullCheck(L_18);
|
|
RTHandleU5BU5D_tE4B403B060D159B839BF74E8B59F8DCD52CF97DF* L_19;
|
|
L_19 = DeferredLights_get_GbufferAttachments_m93F4186104CA66B40F90FC3421542561D91A52DC_inline(L_18, NULL);
|
|
NullCheck(L_19);
|
|
int32_t L_20 = 3;
|
|
RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B* L_21 = (L_19)->GetAt(static_cast<il2cpp_array_size_t>(L_20));
|
|
NullCheck(L_17);
|
|
ArrayElementTypeCheck (L_17, L_21);
|
|
(L_17)->SetAt(static_cast<il2cpp_array_size_t>(3), (RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B*)L_21);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/ScreenSpace/DecalGBufferRenderPass.cs:61>
|
|
bool L_22 = __this->___m_DecalLayers;
|
|
if (!L_22)
|
|
{
|
|
goto IL_00bf;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/ScreenSpace/DecalGBufferRenderPass.cs:63>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/ScreenSpace/DecalGBufferRenderPass.cs:64>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/ScreenSpace/DecalGBufferRenderPass.cs:65>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/ScreenSpace/DecalGBufferRenderPass.cs:66>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/ScreenSpace/DecalGBufferRenderPass.cs:67>
|
|
RTHandleU5BU5D_tE4B403B060D159B839BF74E8B59F8DCD52CF97DF* L_23 = (RTHandleU5BU5D_tE4B403B060D159B839BF74E8B59F8DCD52CF97DF*)(RTHandleU5BU5D_tE4B403B060D159B839BF74E8B59F8DCD52CF97DF*)SZArrayNew(RTHandleU5BU5D_tE4B403B060D159B839BF74E8B59F8DCD52CF97DF_il2cpp_TypeInfo_var, (uint32_t)2);
|
|
RTHandleU5BU5D_tE4B403B060D159B839BF74E8B59F8DCD52CF97DF* L_24 = L_23;
|
|
DeferredLights_t8A3C2AC9C4AF92CF3411F722D8A094EA07DA14AC* L_25 = __this->___m_DeferredLights;
|
|
NullCheck(L_25);
|
|
RTHandleU5BU5D_tE4B403B060D159B839BF74E8B59F8DCD52CF97DF* L_26;
|
|
L_26 = DeferredLights_get_GbufferAttachments_m93F4186104CA66B40F90FC3421542561D91A52DC_inline(L_25, NULL);
|
|
DeferredLights_t8A3C2AC9C4AF92CF3411F722D8A094EA07DA14AC* L_27 = __this->___m_DeferredLights;
|
|
NullCheck(L_27);
|
|
int32_t L_28;
|
|
L_28 = DeferredLights_get_GbufferDepthIndex_m9474B481FDA2349B6F2D2FED42FB16C5104D0B85(L_27, NULL);
|
|
NullCheck(L_26);
|
|
int32_t L_29 = L_28;
|
|
RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B* L_30 = (L_26)->GetAt(static_cast<il2cpp_array_size_t>(L_29));
|
|
NullCheck(L_24);
|
|
ArrayElementTypeCheck (L_24, L_30);
|
|
(L_24)->SetAt(static_cast<il2cpp_array_size_t>(0), (RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B*)L_30);
|
|
RTHandleU5BU5D_tE4B403B060D159B839BF74E8B59F8DCD52CF97DF* L_31 = L_24;
|
|
DeferredLights_t8A3C2AC9C4AF92CF3411F722D8A094EA07DA14AC* L_32 = __this->___m_DeferredLights;
|
|
NullCheck(L_32);
|
|
RTHandleU5BU5D_tE4B403B060D159B839BF74E8B59F8DCD52CF97DF* L_33;
|
|
L_33 = DeferredLights_get_GbufferAttachments_m93F4186104CA66B40F90FC3421542561D91A52DC_inline(L_32, NULL);
|
|
DeferredLights_t8A3C2AC9C4AF92CF3411F722D8A094EA07DA14AC* L_34 = __this->___m_DeferredLights;
|
|
NullCheck(L_34);
|
|
int32_t L_35;
|
|
L_35 = DeferredLights_get_GBufferRenderingLayers_mC1516964EE0987641196BF0F04AF65A7888DACDA(L_34, NULL);
|
|
NullCheck(L_33);
|
|
int32_t L_36 = L_35;
|
|
RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B* L_37 = (L_33)->GetAt(static_cast<il2cpp_array_size_t>(L_36));
|
|
NullCheck(L_31);
|
|
ArrayElementTypeCheck (L_31, L_37);
|
|
(L_31)->SetAt(static_cast<il2cpp_array_size_t>(1), (RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B*)L_37);
|
|
V_0 = L_31;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/ScreenSpace/DecalGBufferRenderPass.cs:69>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/ScreenSpace/DecalGBufferRenderPass.cs:70>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/ScreenSpace/DecalGBufferRenderPass.cs:71>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/ScreenSpace/DecalGBufferRenderPass.cs:72>
|
|
BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* L_38 = (BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4*)(BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4*)SZArrayNew(BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4_il2cpp_TypeInfo_var, (uint32_t)2);
|
|
BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* L_39 = L_38;
|
|
NullCheck(L_39);
|
|
(L_39)->SetAt(static_cast<il2cpp_array_size_t>(0), (bool)1);
|
|
V_1 = L_39;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/ScreenSpace/DecalGBufferRenderPass.cs:76>
|
|
RTHandleU5BU5D_tE4B403B060D159B839BF74E8B59F8DCD52CF97DF* L_40 = V_0;
|
|
BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* L_41 = V_1;
|
|
ScriptableRenderPass_ConfigureInputAttachments_mAE28A6783E50F928F741A08DAEB95695E6EEE543(__this, L_40, L_41, NULL);
|
|
goto IL_0149;
|
|
}
|
|
|
|
IL_00bf:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/ScreenSpace/DecalGBufferRenderPass.cs:81>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/ScreenSpace/DecalGBufferRenderPass.cs:82>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/ScreenSpace/DecalGBufferRenderPass.cs:83>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/ScreenSpace/DecalGBufferRenderPass.cs:84>
|
|
RTHandleU5BU5D_tE4B403B060D159B839BF74E8B59F8DCD52CF97DF* L_42 = (RTHandleU5BU5D_tE4B403B060D159B839BF74E8B59F8DCD52CF97DF*)(RTHandleU5BU5D_tE4B403B060D159B839BF74E8B59F8DCD52CF97DF*)SZArrayNew(RTHandleU5BU5D_tE4B403B060D159B839BF74E8B59F8DCD52CF97DF_il2cpp_TypeInfo_var, (uint32_t)1);
|
|
RTHandleU5BU5D_tE4B403B060D159B839BF74E8B59F8DCD52CF97DF* L_43 = L_42;
|
|
DeferredLights_t8A3C2AC9C4AF92CF3411F722D8A094EA07DA14AC* L_44 = __this->___m_DeferredLights;
|
|
NullCheck(L_44);
|
|
RTHandleU5BU5D_tE4B403B060D159B839BF74E8B59F8DCD52CF97DF* L_45;
|
|
L_45 = DeferredLights_get_GbufferAttachments_m93F4186104CA66B40F90FC3421542561D91A52DC_inline(L_44, NULL);
|
|
DeferredLights_t8A3C2AC9C4AF92CF3411F722D8A094EA07DA14AC* L_46 = __this->___m_DeferredLights;
|
|
NullCheck(L_46);
|
|
int32_t L_47;
|
|
L_47 = DeferredLights_get_GbufferDepthIndex_m9474B481FDA2349B6F2D2FED42FB16C5104D0B85(L_46, NULL);
|
|
NullCheck(L_45);
|
|
int32_t L_48 = L_47;
|
|
RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B* L_49 = (L_45)->GetAt(static_cast<il2cpp_array_size_t>(L_48));
|
|
NullCheck(L_43);
|
|
ArrayElementTypeCheck (L_43, L_49);
|
|
(L_43)->SetAt(static_cast<il2cpp_array_size_t>(0), (RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B*)L_49);
|
|
V_2 = L_43;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/ScreenSpace/DecalGBufferRenderPass.cs:86>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/ScreenSpace/DecalGBufferRenderPass.cs:87>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/ScreenSpace/DecalGBufferRenderPass.cs:88>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/ScreenSpace/DecalGBufferRenderPass.cs:89>
|
|
BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* L_50 = (BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4*)(BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4*)SZArrayNew(BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4_il2cpp_TypeInfo_var, (uint32_t)1);
|
|
BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* L_51 = L_50;
|
|
NullCheck(L_51);
|
|
(L_51)->SetAt(static_cast<il2cpp_array_size_t>(0), (bool)1);
|
|
V_3 = L_51;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/ScreenSpace/DecalGBufferRenderPass.cs:93>
|
|
RTHandleU5BU5D_tE4B403B060D159B839BF74E8B59F8DCD52CF97DF* L_52 = V_2;
|
|
BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* L_53 = V_3;
|
|
ScriptableRenderPass_ConfigureInputAttachments_mAE28A6783E50F928F741A08DAEB95695E6EEE543(__this, L_52, L_53, NULL);
|
|
goto IL_0149;
|
|
}
|
|
|
|
IL_00f5:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/ScreenSpace/DecalGBufferRenderPass.cs:99>
|
|
RTHandleU5BU5D_tE4B403B060D159B839BF74E8B59F8DCD52CF97DF* L_54 = __this->___m_GbufferAttachments;
|
|
DeferredLights_t8A3C2AC9C4AF92CF3411F722D8A094EA07DA14AC* L_55 = __this->___m_DeferredLights;
|
|
NullCheck(L_55);
|
|
RTHandleU5BU5D_tE4B403B060D159B839BF74E8B59F8DCD52CF97DF* L_56;
|
|
L_56 = DeferredLights_get_GbufferAttachments_m93F4186104CA66B40F90FC3421542561D91A52DC_inline(L_55, NULL);
|
|
NullCheck(L_56);
|
|
int32_t L_57 = 0;
|
|
RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B* L_58 = (L_56)->GetAt(static_cast<il2cpp_array_size_t>(L_57));
|
|
NullCheck(L_54);
|
|
ArrayElementTypeCheck (L_54, L_58);
|
|
(L_54)->SetAt(static_cast<il2cpp_array_size_t>(0), (RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B*)L_58);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/ScreenSpace/DecalGBufferRenderPass.cs:100>
|
|
RTHandleU5BU5D_tE4B403B060D159B839BF74E8B59F8DCD52CF97DF* L_59 = __this->___m_GbufferAttachments;
|
|
DeferredLights_t8A3C2AC9C4AF92CF3411F722D8A094EA07DA14AC* L_60 = __this->___m_DeferredLights;
|
|
NullCheck(L_60);
|
|
RTHandleU5BU5D_tE4B403B060D159B839BF74E8B59F8DCD52CF97DF* L_61;
|
|
L_61 = DeferredLights_get_GbufferAttachments_m93F4186104CA66B40F90FC3421542561D91A52DC_inline(L_60, NULL);
|
|
NullCheck(L_61);
|
|
int32_t L_62 = 1;
|
|
RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B* L_63 = (L_61)->GetAt(static_cast<il2cpp_array_size_t>(L_62));
|
|
NullCheck(L_59);
|
|
ArrayElementTypeCheck (L_59, L_63);
|
|
(L_59)->SetAt(static_cast<il2cpp_array_size_t>(1), (RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B*)L_63);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/ScreenSpace/DecalGBufferRenderPass.cs:101>
|
|
RTHandleU5BU5D_tE4B403B060D159B839BF74E8B59F8DCD52CF97DF* L_64 = __this->___m_GbufferAttachments;
|
|
DeferredLights_t8A3C2AC9C4AF92CF3411F722D8A094EA07DA14AC* L_65 = __this->___m_DeferredLights;
|
|
NullCheck(L_65);
|
|
RTHandleU5BU5D_tE4B403B060D159B839BF74E8B59F8DCD52CF97DF* L_66;
|
|
L_66 = DeferredLights_get_GbufferAttachments_m93F4186104CA66B40F90FC3421542561D91A52DC_inline(L_65, NULL);
|
|
NullCheck(L_66);
|
|
int32_t L_67 = 2;
|
|
RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B* L_68 = (L_66)->GetAt(static_cast<il2cpp_array_size_t>(L_67));
|
|
NullCheck(L_64);
|
|
ArrayElementTypeCheck (L_64, L_68);
|
|
(L_64)->SetAt(static_cast<il2cpp_array_size_t>(2), (RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B*)L_68);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/ScreenSpace/DecalGBufferRenderPass.cs:102>
|
|
RTHandleU5BU5D_tE4B403B060D159B839BF74E8B59F8DCD52CF97DF* L_69 = __this->___m_GbufferAttachments;
|
|
DeferredLights_t8A3C2AC9C4AF92CF3411F722D8A094EA07DA14AC* L_70 = __this->___m_DeferredLights;
|
|
NullCheck(L_70);
|
|
RTHandleU5BU5D_tE4B403B060D159B839BF74E8B59F8DCD52CF97DF* L_71;
|
|
L_71 = DeferredLights_get_GbufferAttachments_m93F4186104CA66B40F90FC3421542561D91A52DC_inline(L_70, NULL);
|
|
NullCheck(L_71);
|
|
int32_t L_72 = 3;
|
|
RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B* L_73 = (L_71)->GetAt(static_cast<il2cpp_array_size_t>(L_72));
|
|
NullCheck(L_69);
|
|
ArrayElementTypeCheck (L_69, L_73);
|
|
(L_69)->SetAt(static_cast<il2cpp_array_size_t>(3), (RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B*)L_73);
|
|
}
|
|
|
|
IL_0149:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/ScreenSpace/DecalGBufferRenderPass.cs:107>
|
|
RTHandleU5BU5D_tE4B403B060D159B839BF74E8B59F8DCD52CF97DF* L_74 = __this->___m_GbufferAttachments;
|
|
DeferredLights_t8A3C2AC9C4AF92CF3411F722D8A094EA07DA14AC* L_75 = __this->___m_DeferredLights;
|
|
NullCheck(L_75);
|
|
RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B* L_76;
|
|
L_76 = DeferredLights_get_DepthAttachmentHandle_m1E86B03F9BE60C0C400DD8FF6957629B81A9EF4D_inline(L_75, NULL);
|
|
ScriptableRenderPass_ConfigureTarget_m95AF62178B8B11980EF5E922FBD15042C2F361E3(__this, L_74, L_76, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/ScreenSpace/DecalGBufferRenderPass.cs:109>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 33233
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DecalGBufferRenderPass_Execute_mAD029F9ADCE264D6B71B70B840794B51D31E7267 (DecalGBufferRenderPass_tF9AE5E097AC2B82F540580ECA6E502C1B885ECA4* __this, ScriptableRenderContext_t5AB09B3602BEB456E0DC3D53926D3A3BDAF08E36 ___0_context, RenderingData_tAAA01190551D6D5954314E3E1E85B58DD45EED71* ___1_renderingData, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CommandBufferHelpers_tB8C09D01D6F0369DF52DEA955F017D6001BC72E5_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ContextContainer_Get_TisUniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7_mE62F7903614384541B770CC0B9A99BD2E608A0F8_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RendererListParams_t13F72282BCE2DC255747FE7694C6BBC3377944B1_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RenderingUtils_t4E40200449A82FA3A172A563C490DF11FADA2BE1_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ScriptableRenderContext_t5AB09B3602BEB456E0DC3D53926D3A3BDAF08E36_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
UniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7* V_0 = NULL;
|
|
int32_t V_1 = 0;
|
|
DrawingSettings_t3B64EB029DB6F94A1F2A9B2D19D2969AE361BB49 V_2;
|
|
memset((&V_2), 0, sizeof(V_2));
|
|
RendererListParams_t13F72282BCE2DC255747FE7694C6BBC3377944B1 V_3;
|
|
memset((&V_3), 0, sizeof(V_3));
|
|
RendererList_t608CE60421616EF4211F5B8AC62E3C36D4BDDF85 V_4;
|
|
memset((&V_4), 0, sizeof(V_4));
|
|
ProfilingScope_t57898BA31E8EF8F083EF84E0DA2737AC61CBC5BD V_5;
|
|
memset((&V_5), 0, sizeof(V_5));
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/ScreenSpace/DecalGBufferRenderPass.cs:114>
|
|
RenderingData_tAAA01190551D6D5954314E3E1E85B58DD45EED71* L_0 = ___1_renderingData;
|
|
ContextContainer_t384E08F63FABEFF6A7F1A753F5EF02699DAD414C* L_1 = L_0->___frameData;
|
|
NullCheck(L_1);
|
|
UniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7* L_2;
|
|
L_2 = ContextContainer_Get_TisUniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7_mE62F7903614384541B770CC0B9A99BD2E608A0F8_inline(L_1, ContextContainer_Get_TisUniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7_mE62F7903614384541B770CC0B9A99BD2E608A0F8_RuntimeMethod_var);
|
|
V_0 = L_2;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/ScreenSpace/DecalGBufferRenderPass.cs:116>
|
|
UniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7* L_3 = V_0;
|
|
PassData_t4396B080377CC62E6B81D42D8103F58BF0CC9451** L_4 = (PassData_t4396B080377CC62E6B81D42D8103F58BF0CC9451**)(&__this->___m_PassData);
|
|
DecalGBufferRenderPass_InitPassData_m036BBAC8AFBF00F3665510AC6AC9D25D767C0ED3(__this, L_3, L_4, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/ScreenSpace/DecalGBufferRenderPass.cs:118>
|
|
RenderingData_tAAA01190551D6D5954314E3E1E85B58DD45EED71* L_5 = ___1_renderingData;
|
|
CameraData_tC27AE109CD20677486A4AC19C0CF014AE0F50C3E* L_6 = (CameraData_tC27AE109CD20677486A4AC19C0CF014AE0F50C3E*)(&L_5->___cameraData);
|
|
int32_t* L_7;
|
|
L_7 = CameraData_get_defaultOpaqueSortFlags_m3B2AD697388D3694F3866E41643EC9FB083468B4(L_6, NULL);
|
|
int32_t L_8 = *((int32_t*)L_7);
|
|
V_1 = L_8;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/ScreenSpace/DecalGBufferRenderPass.cs:119>
|
|
List_1_t4673975A297A80D4D4A65EB5A2BE3B6BD1EED9AF* L_9 = __this->___m_ShaderTagIdList;
|
|
RenderingData_tAAA01190551D6D5954314E3E1E85B58DD45EED71* L_10 = ___1_renderingData;
|
|
int32_t L_11 = V_1;
|
|
il2cpp_codegen_runtime_class_init_inline(RenderingUtils_t4E40200449A82FA3A172A563C490DF11FADA2BE1_il2cpp_TypeInfo_var);
|
|
DrawingSettings_t3B64EB029DB6F94A1F2A9B2D19D2969AE361BB49 L_12;
|
|
L_12 = RenderingUtils_CreateDrawingSettings_mBCE88AD7BDD0C915708EC4E97FB1DB2197EB49EB(L_9, L_10, L_11, NULL);
|
|
V_2 = L_12;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/ScreenSpace/DecalGBufferRenderPass.cs:120>
|
|
RenderingData_tAAA01190551D6D5954314E3E1E85B58DD45EED71* L_13 = ___1_renderingData;
|
|
CullingResults_tD6B7EF20B68D47DFF3A99EB2EA73F47F1D460267* L_14;
|
|
L_14 = RenderingData_get_cullResults_m73BE0DBA4ADE8C2CF49FEE34E4553C491AC7016D(L_13, NULL);
|
|
CullingResults_tD6B7EF20B68D47DFF3A99EB2EA73F47F1D460267 L_15 = (*(CullingResults_tD6B7EF20B68D47DFF3A99EB2EA73F47F1D460267*)L_14);
|
|
DrawingSettings_t3B64EB029DB6F94A1F2A9B2D19D2969AE361BB49 L_16 = V_2;
|
|
FilteringSettings_t75860B12A7BCF9A0E2F13CB2C2E5DCD9E1EEAD9F L_17 = __this->___m_FilteringSettings;
|
|
il2cpp_codegen_runtime_class_init_inline(RendererListParams_t13F72282BCE2DC255747FE7694C6BBC3377944B1_il2cpp_TypeInfo_var);
|
|
RendererListParams__ctor_m46CCE38EA66C6F213878BBAE3E058D7AA995D5F7((&V_3), L_15, L_16, L_17, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/ScreenSpace/DecalGBufferRenderPass.cs:121>
|
|
il2cpp_codegen_runtime_class_init_inline(ScriptableRenderContext_t5AB09B3602BEB456E0DC3D53926D3A3BDAF08E36_il2cpp_TypeInfo_var);
|
|
RendererList_t608CE60421616EF4211F5B8AC62E3C36D4BDDF85 L_18;
|
|
L_18 = ScriptableRenderContext_CreateRendererList_mBF2F8A1EA796B87CBBAAC245133F2961D52A9BFA((&___0_context), (&V_3), NULL);
|
|
V_4 = L_18;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/ScreenSpace/DecalGBufferRenderPass.cs:122>
|
|
RenderingData_tAAA01190551D6D5954314E3E1E85B58DD45EED71* L_19 = ___1_renderingData;
|
|
CommandBuffer_tB56007DC84EF56296C325EC32DD12AC1E3DC91F7** L_20;
|
|
L_20 = RenderingData_get_commandBuffer_m747CD6ABF19DD5BB05F8231CC84A9922D9DC080A(L_19, NULL);
|
|
CommandBuffer_tB56007DC84EF56296C325EC32DD12AC1E3DC91F7* L_21 = *((CommandBuffer_tB56007DC84EF56296C325EC32DD12AC1E3DC91F7**)L_20);
|
|
ProfilingSampler_t420D4672EDB44E0EF980B31ADFD9E5747200FECE* L_22;
|
|
L_22 = ScriptableRenderPass_get_profilingSampler_m627C9BF8A4A08101DCB6F40E0A97145A5A1CDA38(__this, NULL);
|
|
ProfilingScope__ctor_mE15813DF7651C1A3B6AFD6465AD4B973E8F1DBFC((&V_5), L_21, L_22, NULL);
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_0087:
|
|
{
|
|
ProfilingScope_Dispose_m4231A2ACA1F8E345BB0078310A9F7601704C8BE4((&V_5), NULL);
|
|
return;
|
|
}
|
|
});
|
|
try
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/ScreenSpace/DecalGBufferRenderPass.cs:124>
|
|
RenderingData_tAAA01190551D6D5954314E3E1E85B58DD45EED71* L_23 = ___1_renderingData;
|
|
CommandBuffer_tB56007DC84EF56296C325EC32DD12AC1E3DC91F7** L_24;
|
|
L_24 = RenderingData_get_commandBuffer_m747CD6ABF19DD5BB05F8231CC84A9922D9DC080A(L_23, NULL);
|
|
CommandBuffer_tB56007DC84EF56296C325EC32DD12AC1E3DC91F7* L_25 = *((CommandBuffer_tB56007DC84EF56296C325EC32DD12AC1E3DC91F7**)L_24);
|
|
il2cpp_codegen_runtime_class_init_inline(CommandBufferHelpers_tB8C09D01D6F0369DF52DEA955F017D6001BC72E5_il2cpp_TypeInfo_var);
|
|
RasterCommandBuffer_t4300C4F080EA3CF43C7ACFDBD4F94EA633FE98E8* L_26;
|
|
L_26 = CommandBufferHelpers_GetRasterCommandBuffer_m6086D650343F166614B3FB5ED89D63DE8F85C42B_inline(L_25, NULL);
|
|
PassData_t4396B080377CC62E6B81D42D8103F58BF0CC9451* L_27 = __this->___m_PassData;
|
|
RendererList_t608CE60421616EF4211F5B8AC62E3C36D4BDDF85 L_28 = V_4;
|
|
DecalGBufferRenderPass_ExecutePass_m7D3D8E518D0F76AA4195B9D59A4A1D1B6CE51C5F(L_26, L_27, L_28, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/ScreenSpace/DecalGBufferRenderPass.cs:125>
|
|
goto IL_0095;
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_0095:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/ScreenSpace/DecalGBufferRenderPass.cs:126>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 33234
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DecalGBufferRenderPass_InitPassData_m036BBAC8AFBF00F3665510AC6AC9D25D767C0ED3 (DecalGBufferRenderPass_tF9AE5E097AC2B82F540580ECA6E502C1B885ECA4* __this, UniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7* ___0_cameraData, PassData_t4396B080377CC62E6B81D42D8103F58BF0CC9451** ___1_passData, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/ScreenSpace/DecalGBufferRenderPass.cs:140>
|
|
PassData_t4396B080377CC62E6B81D42D8103F58BF0CC9451** L_0 = ___1_passData;
|
|
PassData_t4396B080377CC62E6B81D42D8103F58BF0CC9451* L_1 = *((PassData_t4396B080377CC62E6B81D42D8103F58BF0CC9451**)L_0);
|
|
DecalDrawGBufferSystem_t4520A37A2689CDF89893A02977EEC7F0701F796D* L_2 = __this->___m_DrawSystem;
|
|
NullCheck(L_1);
|
|
L_1->___drawSystem = L_2;
|
|
Il2CppCodeGenWriteBarrier((void**)(&L_1->___drawSystem), (void*)L_2);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/ScreenSpace/DecalGBufferRenderPass.cs:141>
|
|
PassData_t4396B080377CC62E6B81D42D8103F58BF0CC9451** L_3 = ___1_passData;
|
|
PassData_t4396B080377CC62E6B81D42D8103F58BF0CC9451* L_4 = *((PassData_t4396B080377CC62E6B81D42D8103F58BF0CC9451**)L_3);
|
|
DecalScreenSpaceSettings_tD94FE1202A789534D40E4DD61AD7DE9E55F1ADD3* L_5 = __this->___m_Settings;
|
|
NullCheck(L_4);
|
|
L_4->___settings = L_5;
|
|
Il2CppCodeGenWriteBarrier((void**)(&L_4->___settings), (void*)L_5);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/ScreenSpace/DecalGBufferRenderPass.cs:142>
|
|
PassData_t4396B080377CC62E6B81D42D8103F58BF0CC9451** L_6 = ___1_passData;
|
|
PassData_t4396B080377CC62E6B81D42D8103F58BF0CC9451* L_7 = *((PassData_t4396B080377CC62E6B81D42D8103F58BF0CC9451**)L_6);
|
|
bool L_8 = __this->___m_DecalLayers;
|
|
NullCheck(L_7);
|
|
L_7->___decalLayers = L_8;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/ScreenSpace/DecalGBufferRenderPass.cs:143>
|
|
PassData_t4396B080377CC62E6B81D42D8103F58BF0CC9451** L_9 = ___1_passData;
|
|
PassData_t4396B080377CC62E6B81D42D8103F58BF0CC9451* L_10 = *((PassData_t4396B080377CC62E6B81D42D8103F58BF0CC9451**)L_9);
|
|
UniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7* L_11 = ___0_cameraData;
|
|
NullCheck(L_10);
|
|
L_10->___cameraData = L_11;
|
|
Il2CppCodeGenWriteBarrier((void**)(&L_10->___cameraData), (void*)L_11);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/ScreenSpace/DecalGBufferRenderPass.cs:144>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 33235
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DecalGBufferRenderPass_ExecutePass_m7D3D8E518D0F76AA4195B9D59A4A1D1B6CE51C5F (RasterCommandBuffer_t4300C4F080EA3CF43C7ACFDBD4F94EA633FE98E8* ___0_cmd, PassData_t4396B080377CC62E6B81D42D8103F58BF0CC9451* ___1_passData, RendererList_t608CE60421616EF4211F5B8AC62E3C36D4BDDF85 ___2_rendererList, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NormalReconstruction_t692A25FE1AE9EC169043506308E3F42616538324_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ShaderGlobalKeywords_tCD2A8F654428E5D252204D24E379C6725E5A2C91_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
DecalDrawGBufferSystem_t4520A37A2689CDF89893A02977EEC7F0701F796D* G_B2_0 = NULL;
|
|
DecalDrawGBufferSystem_t4520A37A2689CDF89893A02977EEC7F0701F796D* G_B1_0 = NULL;
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/ScreenSpace/DecalGBufferRenderPass.cs:148>
|
|
RasterCommandBuffer_t4300C4F080EA3CF43C7ACFDBD4F94EA633FE98E8* L_0 = ___0_cmd;
|
|
PassData_t4396B080377CC62E6B81D42D8103F58BF0CC9451* L_1 = ___1_passData;
|
|
NullCheck(L_1);
|
|
UniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7** L_2 = (UniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7**)(&L_1->___cameraData);
|
|
il2cpp_codegen_runtime_class_init_inline(NormalReconstruction_t692A25FE1AE9EC169043506308E3F42616538324_il2cpp_TypeInfo_var);
|
|
NormalReconstruction_SetupProperties_m5A027E9D69284D7248CEF2B1F137879BD0DCD576(L_0, L_2, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/ScreenSpace/DecalGBufferRenderPass.cs:150>
|
|
RasterCommandBuffer_t4300C4F080EA3CF43C7ACFDBD4F94EA633FE98E8* L_3 = ___0_cmd;
|
|
PassData_t4396B080377CC62E6B81D42D8103F58BF0CC9451* L_4 = ___1_passData;
|
|
NullCheck(L_4);
|
|
DecalScreenSpaceSettings_tD94FE1202A789534D40E4DD61AD7DE9E55F1ADD3* L_5 = L_4->___settings;
|
|
NullCheck(L_5);
|
|
int32_t L_6 = L_5->___normalBlend;
|
|
NullCheck(L_3);
|
|
RasterCommandBuffer_SetKeyword_m134867C426359E758261AB04E59061F70A69B5C3(L_3, (&((ShaderGlobalKeywords_tCD2A8F654428E5D252204D24E379C6725E5A2C91_StaticFields*)il2cpp_codegen_static_fields_for(ShaderGlobalKeywords_tCD2A8F654428E5D252204D24E379C6725E5A2C91_il2cpp_TypeInfo_var))->___DecalNormalBlendLow), (bool)((((int32_t)L_6) == ((int32_t)0))? 1 : 0), NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/ScreenSpace/DecalGBufferRenderPass.cs:151>
|
|
RasterCommandBuffer_t4300C4F080EA3CF43C7ACFDBD4F94EA633FE98E8* L_7 = ___0_cmd;
|
|
PassData_t4396B080377CC62E6B81D42D8103F58BF0CC9451* L_8 = ___1_passData;
|
|
NullCheck(L_8);
|
|
DecalScreenSpaceSettings_tD94FE1202A789534D40E4DD61AD7DE9E55F1ADD3* L_9 = L_8->___settings;
|
|
NullCheck(L_9);
|
|
int32_t L_10 = L_9->___normalBlend;
|
|
NullCheck(L_7);
|
|
RasterCommandBuffer_SetKeyword_m134867C426359E758261AB04E59061F70A69B5C3(L_7, (&((ShaderGlobalKeywords_tCD2A8F654428E5D252204D24E379C6725E5A2C91_StaticFields*)il2cpp_codegen_static_fields_for(ShaderGlobalKeywords_tCD2A8F654428E5D252204D24E379C6725E5A2C91_il2cpp_TypeInfo_var))->___DecalNormalBlendMedium), (bool)((((int32_t)L_10) == ((int32_t)1))? 1 : 0), NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/ScreenSpace/DecalGBufferRenderPass.cs:152>
|
|
RasterCommandBuffer_t4300C4F080EA3CF43C7ACFDBD4F94EA633FE98E8* L_11 = ___0_cmd;
|
|
PassData_t4396B080377CC62E6B81D42D8103F58BF0CC9451* L_12 = ___1_passData;
|
|
NullCheck(L_12);
|
|
DecalScreenSpaceSettings_tD94FE1202A789534D40E4DD61AD7DE9E55F1ADD3* L_13 = L_12->___settings;
|
|
NullCheck(L_13);
|
|
int32_t L_14 = L_13->___normalBlend;
|
|
NullCheck(L_11);
|
|
RasterCommandBuffer_SetKeyword_m134867C426359E758261AB04E59061F70A69B5C3(L_11, (&((ShaderGlobalKeywords_tCD2A8F654428E5D252204D24E379C6725E5A2C91_StaticFields*)il2cpp_codegen_static_fields_for(ShaderGlobalKeywords_tCD2A8F654428E5D252204D24E379C6725E5A2C91_il2cpp_TypeInfo_var))->___DecalNormalBlendHigh), (bool)((((int32_t)L_14) == ((int32_t)2))? 1 : 0), NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/ScreenSpace/DecalGBufferRenderPass.cs:154>
|
|
RasterCommandBuffer_t4300C4F080EA3CF43C7ACFDBD4F94EA633FE98E8* L_15 = ___0_cmd;
|
|
PassData_t4396B080377CC62E6B81D42D8103F58BF0CC9451* L_16 = ___1_passData;
|
|
NullCheck(L_16);
|
|
bool L_17 = L_16->___decalLayers;
|
|
NullCheck(L_15);
|
|
RasterCommandBuffer_SetKeyword_m134867C426359E758261AB04E59061F70A69B5C3(L_15, (&((ShaderGlobalKeywords_tCD2A8F654428E5D252204D24E379C6725E5A2C91_StaticFields*)il2cpp_codegen_static_fields_for(ShaderGlobalKeywords_tCD2A8F654428E5D252204D24E379C6725E5A2C91_il2cpp_TypeInfo_var))->___DecalLayers), L_17, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/ScreenSpace/DecalGBufferRenderPass.cs:156>
|
|
PassData_t4396B080377CC62E6B81D42D8103F58BF0CC9451* L_18 = ___1_passData;
|
|
NullCheck(L_18);
|
|
DecalDrawGBufferSystem_t4520A37A2689CDF89893A02977EEC7F0701F796D* L_19 = L_18->___drawSystem;
|
|
DecalDrawGBufferSystem_t4520A37A2689CDF89893A02977EEC7F0701F796D* L_20 = L_19;
|
|
if (L_20)
|
|
{
|
|
G_B2_0 = L_20;
|
|
goto IL_0074;
|
|
}
|
|
G_B1_0 = L_20;
|
|
}
|
|
{
|
|
goto IL_007a;
|
|
}
|
|
|
|
IL_0074:
|
|
{
|
|
RasterCommandBuffer_t4300C4F080EA3CF43C7ACFDBD4F94EA633FE98E8* L_21 = ___0_cmd;
|
|
NullCheck(G_B2_0);
|
|
DecalDrawSystem_Execute_mF71C2FD9B2D2D46D509C8D480ABA3D990211E6B8(G_B2_0, L_21, NULL);
|
|
}
|
|
|
|
IL_007a:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/ScreenSpace/DecalGBufferRenderPass.cs:157>
|
|
RasterCommandBuffer_t4300C4F080EA3CF43C7ACFDBD4F94EA633FE98E8* L_22 = ___0_cmd;
|
|
RendererList_t608CE60421616EF4211F5B8AC62E3C36D4BDDF85 L_23 = ___2_rendererList;
|
|
NullCheck(L_22);
|
|
RasterCommandBuffer_DrawRendererList_m6C50C4A5E4CABE3542317969BC91F552B41A427F(L_22, L_23, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/ScreenSpace/DecalGBufferRenderPass.cs:158>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 33236
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DecalGBufferRenderPass_RecordRenderGraph_mEAECBE7A01B7ECD8B7C02ACAA0080B1D3D528E4E (DecalGBufferRenderPass_tF9AE5E097AC2B82F540580ECA6E502C1B885ECA4* __this, RenderGraph_t73ECE03B3CA3D0D17F1448D64AE020E81592AA1E* ___0_renderGraph, ContextContainer_t384E08F63FABEFF6A7F1A753F5EF02699DAD414C* ___1_frameData, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&BaseRenderFunc_2_t8B6F86F4EF8472D6B5D84629A6E35307F19167AE_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ContextContainer_Get_TisUniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7_mE62F7903614384541B770CC0B9A99BD2E608A0F8_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ContextContainer_Get_TisUniversalLightData_tCFFFAB4033CD97BE9F339F0C90BB7F98C06FFBA2_m7D529C251F384985900DEA334BC399BAD36BFC8F_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ContextContainer_Get_TisUniversalRenderingData_t045D13A1E051DF623B170223B7CBF1161DDA94E6_m71849CEFB9C023EDE026A0F38CE6044274505C06_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ContextContainer_Get_TisUniversalResourceData_t1F1DE4101BE122578EAA5E4750D00ACAF1042626_m1CAD9250ED48A65B3DE774336F9221928EB054B4_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IBaseRenderGraphBuilder_tFFF84F72F862F1BE246A789AB6A59F959B490F3D_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IRasterRenderGraphBuilder_SetRenderFunc_TisPassData_t4396B080377CC62E6B81D42D8103F58BF0CC9451_mFD8B4514D5D533960796BB458E8914BE64EDEE73_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IRasterRenderGraphBuilder_t607F94718848D836CFEEF0DE553E4A79CABD9372_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RenderGraph_AddRasterRenderPass_TisPassData_t4396B080377CC62E6B81D42D8103F58BF0CC9451_m13AC6F794A0CA94F5CE1484B8A7B8E93C38EA9A6_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RendererListParams_t13F72282BCE2DC255747FE7694C6BBC3377944B1_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RenderingUtils_t4E40200449A82FA3A172A563C490DF11FADA2BE1_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TextureHandle_t680ABA3F8B50859351BA5DD66220084F87F37388_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec_U3CRecordRenderGraphU3Eb__15_0_m75857FF3B08C8F935437B24499CEEF30DE03E198_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec_tAA26B4D41608EBD4DBF0897F2337AC0EC4D686C3_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral6AE85D4E8752B4BBB61F5991CB94E8B1AB15BA34);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
UniversalResourceData_t1F1DE4101BE122578EAA5E4750D00ACAF1042626* V_0 = NULL;
|
|
TextureHandle_t680ABA3F8B50859351BA5DD66220084F87F37388 V_1;
|
|
memset((&V_1), 0, sizeof(V_1));
|
|
RuntimeObject* V_2 = NULL;
|
|
PassData_t4396B080377CC62E6B81D42D8103F58BF0CC9451* V_3 = NULL;
|
|
UniversalRenderingData_t045D13A1E051DF623B170223B7CBF1161DDA94E6* V_4 = NULL;
|
|
UniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7* V_5 = NULL;
|
|
UniversalLightData_tCFFFAB4033CD97BE9F339F0C90BB7F98C06FFBA2* V_6 = NULL;
|
|
int32_t V_7 = 0;
|
|
DrawingSettings_t3B64EB029DB6F94A1F2A9B2D19D2969AE361BB49 V_8;
|
|
memset((&V_8), 0, sizeof(V_8));
|
|
RendererListParams_t13F72282BCE2DC255747FE7694C6BBC3377944B1 V_9;
|
|
memset((&V_9), 0, sizeof(V_9));
|
|
int32_t V_10 = 0;
|
|
BaseRenderFunc_2_t8B6F86F4EF8472D6B5D84629A6E35307F19167AE* G_B16_0 = NULL;
|
|
RuntimeObject* G_B16_1 = NULL;
|
|
BaseRenderFunc_2_t8B6F86F4EF8472D6B5D84629A6E35307F19167AE* G_B15_0 = NULL;
|
|
RuntimeObject* G_B15_1 = NULL;
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/ScreenSpace/DecalGBufferRenderPass.cs:162>
|
|
ContextContainer_t384E08F63FABEFF6A7F1A753F5EF02699DAD414C* L_0 = ___1_frameData;
|
|
NullCheck(L_0);
|
|
UniversalResourceData_t1F1DE4101BE122578EAA5E4750D00ACAF1042626* L_1;
|
|
L_1 = ContextContainer_Get_TisUniversalResourceData_t1F1DE4101BE122578EAA5E4750D00ACAF1042626_m1CAD9250ED48A65B3DE774336F9221928EB054B4_inline(L_0, ContextContainer_Get_TisUniversalResourceData_t1F1DE4101BE122578EAA5E4750D00ACAF1042626_m1CAD9250ED48A65B3DE774336F9221928EB054B4_RuntimeMethod_var);
|
|
V_0 = L_1;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/ScreenSpace/DecalGBufferRenderPass.cs:163>
|
|
UniversalResourceData_t1F1DE4101BE122578EAA5E4750D00ACAF1042626* L_2 = V_0;
|
|
NullCheck(L_2);
|
|
TextureHandle_t680ABA3F8B50859351BA5DD66220084F87F37388 L_3;
|
|
L_3 = UniversalResourceData_get_cameraDepthTexture_m0823722AD418FDA57ECDC5EBDF79842DA3ED33A4(L_2, NULL);
|
|
V_1 = L_3;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/ScreenSpace/DecalGBufferRenderPass.cs:165>
|
|
RenderGraph_t73ECE03B3CA3D0D17F1448D64AE020E81592AA1E* L_4 = ___0_renderGraph;
|
|
String_t* L_5;
|
|
L_5 = ScriptableRenderPass_get_passName_m838292A44DB6ED7D67E43C1DE58383959B4F1925_inline(__this, NULL);
|
|
ProfilingSampler_t420D4672EDB44E0EF980B31ADFD9E5747200FECE* L_6;
|
|
L_6 = ScriptableRenderPass_get_profilingSampler_m627C9BF8A4A08101DCB6F40E0A97145A5A1CDA38(__this, NULL);
|
|
NullCheck(L_4);
|
|
RuntimeObject* L_7;
|
|
L_7 = RenderGraph_AddRasterRenderPass_TisPassData_t4396B080377CC62E6B81D42D8103F58BF0CC9451_m13AC6F794A0CA94F5CE1484B8A7B8E93C38EA9A6(L_4, L_5, (&V_3), L_6, _stringLiteral6AE85D4E8752B4BBB61F5991CB94E8B1AB15BA34, ((int32_t)165), RenderGraph_AddRasterRenderPass_TisPassData_t4396B080377CC62E6B81D42D8103F58BF0CC9451_m13AC6F794A0CA94F5CE1484B8A7B8E93C38EA9A6_RuntimeMethod_var);
|
|
V_2 = L_7;
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_0196:
|
|
{
|
|
{
|
|
RuntimeObject* L_8 = V_2;
|
|
if (!L_8)
|
|
{
|
|
goto IL_019f;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_9 = V_2;
|
|
NullCheck(L_9);
|
|
InterfaceActionInvoker0::Invoke(0, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, L_9);
|
|
}
|
|
|
|
IL_019f:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
});
|
|
try
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/ScreenSpace/DecalGBufferRenderPass.cs:167>
|
|
ContextContainer_t384E08F63FABEFF6A7F1A753F5EF02699DAD414C* L_10 = ___1_frameData;
|
|
NullCheck(L_10);
|
|
UniversalRenderingData_t045D13A1E051DF623B170223B7CBF1161DDA94E6* L_11;
|
|
L_11 = ContextContainer_Get_TisUniversalRenderingData_t045D13A1E051DF623B170223B7CBF1161DDA94E6_m71849CEFB9C023EDE026A0F38CE6044274505C06_inline(L_10, ContextContainer_Get_TisUniversalRenderingData_t045D13A1E051DF623B170223B7CBF1161DDA94E6_m71849CEFB9C023EDE026A0F38CE6044274505C06_RuntimeMethod_var);
|
|
V_4 = L_11;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/ScreenSpace/DecalGBufferRenderPass.cs:168>
|
|
ContextContainer_t384E08F63FABEFF6A7F1A753F5EF02699DAD414C* L_12 = ___1_frameData;
|
|
NullCheck(L_12);
|
|
UniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7* L_13;
|
|
L_13 = ContextContainer_Get_TisUniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7_mE62F7903614384541B770CC0B9A99BD2E608A0F8_inline(L_12, ContextContainer_Get_TisUniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7_mE62F7903614384541B770CC0B9A99BD2E608A0F8_RuntimeMethod_var);
|
|
V_5 = L_13;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/ScreenSpace/DecalGBufferRenderPass.cs:169>
|
|
ContextContainer_t384E08F63FABEFF6A7F1A753F5EF02699DAD414C* L_14 = ___1_frameData;
|
|
NullCheck(L_14);
|
|
UniversalLightData_tCFFFAB4033CD97BE9F339F0C90BB7F98C06FFBA2* L_15;
|
|
L_15 = ContextContainer_Get_TisUniversalLightData_tCFFFAB4033CD97BE9F339F0C90BB7F98C06FFBA2_m7D529C251F384985900DEA334BC399BAD36BFC8F_inline(L_14, ContextContainer_Get_TisUniversalLightData_tCFFFAB4033CD97BE9F339F0C90BB7F98C06FFBA2_m7D529C251F384985900DEA334BC399BAD36BFC8F_RuntimeMethod_var);
|
|
V_6 = L_15;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/ScreenSpace/DecalGBufferRenderPass.cs:171>
|
|
UniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7* L_16 = V_5;
|
|
DecalGBufferRenderPass_InitPassData_m036BBAC8AFBF00F3665510AC6AC9D25D767C0ED3(__this, L_16, (&V_3), NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/ScreenSpace/DecalGBufferRenderPass.cs:174>
|
|
V_10 = 0;
|
|
goto IL_0084_1;
|
|
}
|
|
|
|
IL_0054_1:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/ScreenSpace/DecalGBufferRenderPass.cs:176>
|
|
UniversalResourceData_t1F1DE4101BE122578EAA5E4750D00ACAF1042626* L_17 = V_0;
|
|
NullCheck(L_17);
|
|
TextureHandleU5BU5D_t544FFA6F5A0E1E5F24EB3C5E5F8547CCE9498BD7* L_18;
|
|
L_18 = UniversalResourceData_get_gBuffer_m8A136731C2349D1F96F57648CF599BDC1982D579(L_17, NULL);
|
|
int32_t L_19 = V_10;
|
|
NullCheck(L_18);
|
|
il2cpp_codegen_runtime_class_init_inline(TextureHandle_t680ABA3F8B50859351BA5DD66220084F87F37388_il2cpp_TypeInfo_var);
|
|
bool L_20;
|
|
L_20 = TextureHandle_IsValid_mECFF64B8BAC6402F0D37B67BB79FFB3AB3C7F3C2_inline(((L_18)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_19))), NULL);
|
|
if (!L_20)
|
|
{
|
|
goto IL_007e_1;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/ScreenSpace/DecalGBufferRenderPass.cs:178>
|
|
RuntimeObject* L_21 = V_2;
|
|
UniversalResourceData_t1F1DE4101BE122578EAA5E4750D00ACAF1042626* L_22 = V_0;
|
|
NullCheck(L_22);
|
|
TextureHandleU5BU5D_t544FFA6F5A0E1E5F24EB3C5E5F8547CCE9498BD7* L_23;
|
|
L_23 = UniversalResourceData_get_gBuffer_m8A136731C2349D1F96F57648CF599BDC1982D579(L_22, NULL);
|
|
int32_t L_24 = V_10;
|
|
NullCheck(L_23);
|
|
int32_t L_25 = L_24;
|
|
TextureHandle_t680ABA3F8B50859351BA5DD66220084F87F37388 L_26 = (L_23)->GetAt(static_cast<il2cpp_array_size_t>(L_25));
|
|
int32_t L_27 = V_10;
|
|
NullCheck(L_21);
|
|
InterfaceActionInvoker3< TextureHandle_t680ABA3F8B50859351BA5DD66220084F87F37388, int32_t, int32_t >::Invoke(0, IRasterRenderGraphBuilder_t607F94718848D836CFEEF0DE553E4A79CABD9372_il2cpp_TypeInfo_var, L_21, L_26, L_27, 2);
|
|
}
|
|
|
|
IL_007e_1:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/ScreenSpace/DecalGBufferRenderPass.cs:174>
|
|
int32_t L_28 = V_10;
|
|
V_10 = ((int32_t)il2cpp_codegen_add(L_28, 1));
|
|
}
|
|
|
|
IL_0084_1:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/ScreenSpace/DecalGBufferRenderPass.cs:174>
|
|
int32_t L_29 = V_10;
|
|
DeferredLights_t8A3C2AC9C4AF92CF3411F722D8A094EA07DA14AC* L_30 = __this->___m_DeferredLights;
|
|
NullCheck(L_30);
|
|
int32_t L_31;
|
|
L_31 = DeferredLights_get_GBufferLightingIndex_mBD9A64655F922428737949BF03FE83498EF388F3(L_30, NULL);
|
|
if ((((int32_t)L_29) <= ((int32_t)L_31)))
|
|
{
|
|
goto IL_0054_1;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/ScreenSpace/DecalGBufferRenderPass.cs:181>
|
|
RuntimeObject* L_32 = V_2;
|
|
UniversalResourceData_t1F1DE4101BE122578EAA5E4750D00ACAF1042626* L_33 = V_0;
|
|
NullCheck(L_33);
|
|
TextureHandle_t680ABA3F8B50859351BA5DD66220084F87F37388 L_34;
|
|
L_34 = UniversalResourceData_get_activeDepthTexture_mCE3930EAEF20F80A0EA1F4CE423E6E406E25F296(L_33, NULL);
|
|
NullCheck(L_32);
|
|
InterfaceActionInvoker2< TextureHandle_t680ABA3F8B50859351BA5DD66220084F87F37388, int32_t >::Invoke(4, IRasterRenderGraphBuilder_t607F94718848D836CFEEF0DE553E4A79CABD9372_il2cpp_TypeInfo_var, L_32, L_34, 1);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/ScreenSpace/DecalGBufferRenderPass.cs:183>
|
|
RenderGraph_t73ECE03B3CA3D0D17F1448D64AE020E81592AA1E* L_35 = ___0_renderGraph;
|
|
NullCheck(L_35);
|
|
bool L_36;
|
|
L_36 = RenderGraph_get_nativeRenderPassesEnabled_m0A6331F029257ABF0232FA1C278E733B097A812D_inline(L_35, NULL);
|
|
if (!L_36)
|
|
{
|
|
goto IL_0100_1;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/ScreenSpace/DecalGBufferRenderPass.cs:185>
|
|
UniversalResourceData_t1F1DE4101BE122578EAA5E4750D00ACAF1042626* L_37 = V_0;
|
|
NullCheck(L_37);
|
|
TextureHandleU5BU5D_t544FFA6F5A0E1E5F24EB3C5E5F8547CCE9498BD7* L_38;
|
|
L_38 = UniversalResourceData_get_gBuffer_m8A136731C2349D1F96F57648CF599BDC1982D579(L_37, NULL);
|
|
NullCheck(L_38);
|
|
il2cpp_codegen_runtime_class_init_inline(TextureHandle_t680ABA3F8B50859351BA5DD66220084F87F37388_il2cpp_TypeInfo_var);
|
|
bool L_39;
|
|
L_39 = TextureHandle_IsValid_mECFF64B8BAC6402F0D37B67BB79FFB3AB3C7F3C2_inline(((L_38)->GetAddressAt(static_cast<il2cpp_array_size_t>(4))), NULL);
|
|
if (!L_39)
|
|
{
|
|
goto IL_00cf_1;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/ScreenSpace/DecalGBufferRenderPass.cs:186>
|
|
RuntimeObject* L_40 = V_2;
|
|
UniversalResourceData_t1F1DE4101BE122578EAA5E4750D00ACAF1042626* L_41 = V_0;
|
|
NullCheck(L_41);
|
|
TextureHandleU5BU5D_t544FFA6F5A0E1E5F24EB3C5E5F8547CCE9498BD7* L_42;
|
|
L_42 = UniversalResourceData_get_gBuffer_m8A136731C2349D1F96F57648CF599BDC1982D579(L_41, NULL);
|
|
NullCheck(L_42);
|
|
int32_t L_43 = 4;
|
|
TextureHandle_t680ABA3F8B50859351BA5DD66220084F87F37388 L_44 = (L_42)->GetAt(static_cast<il2cpp_array_size_t>(L_43));
|
|
NullCheck(L_40);
|
|
InterfaceActionInvoker3< TextureHandle_t680ABA3F8B50859351BA5DD66220084F87F37388, int32_t, int32_t >::Invoke(2, IRasterRenderGraphBuilder_t607F94718848D836CFEEF0DE553E4A79CABD9372_il2cpp_TypeInfo_var, L_40, L_44, 0, 1);
|
|
}
|
|
|
|
IL_00cf_1:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/ScreenSpace/DecalGBufferRenderPass.cs:187>
|
|
bool L_45 = __this->___m_DecalLayers;
|
|
if (!L_45)
|
|
{
|
|
goto IL_0112_1;
|
|
}
|
|
}
|
|
{
|
|
UniversalResourceData_t1F1DE4101BE122578EAA5E4750D00ACAF1042626* L_46 = V_0;
|
|
NullCheck(L_46);
|
|
TextureHandleU5BU5D_t544FFA6F5A0E1E5F24EB3C5E5F8547CCE9498BD7* L_47;
|
|
L_47 = UniversalResourceData_get_gBuffer_m8A136731C2349D1F96F57648CF599BDC1982D579(L_46, NULL);
|
|
NullCheck(L_47);
|
|
il2cpp_codegen_runtime_class_init_inline(TextureHandle_t680ABA3F8B50859351BA5DD66220084F87F37388_il2cpp_TypeInfo_var);
|
|
bool L_48;
|
|
L_48 = TextureHandle_IsValid_mECFF64B8BAC6402F0D37B67BB79FFB3AB3C7F3C2_inline(((L_47)->GetAddressAt(static_cast<il2cpp_array_size_t>(5))), NULL);
|
|
if (!L_48)
|
|
{
|
|
goto IL_0112_1;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/ScreenSpace/DecalGBufferRenderPass.cs:188>
|
|
RuntimeObject* L_49 = V_2;
|
|
UniversalResourceData_t1F1DE4101BE122578EAA5E4750D00ACAF1042626* L_50 = V_0;
|
|
NullCheck(L_50);
|
|
TextureHandleU5BU5D_t544FFA6F5A0E1E5F24EB3C5E5F8547CCE9498BD7* L_51;
|
|
L_51 = UniversalResourceData_get_gBuffer_m8A136731C2349D1F96F57648CF599BDC1982D579(L_50, NULL);
|
|
NullCheck(L_51);
|
|
int32_t L_52 = 5;
|
|
TextureHandle_t680ABA3F8B50859351BA5DD66220084F87F37388 L_53 = (L_51)->GetAt(static_cast<il2cpp_array_size_t>(L_52));
|
|
NullCheck(L_49);
|
|
InterfaceActionInvoker3< TextureHandle_t680ABA3F8B50859351BA5DD66220084F87F37388, int32_t, int32_t >::Invoke(2, IRasterRenderGraphBuilder_t607F94718848D836CFEEF0DE553E4A79CABD9372_il2cpp_TypeInfo_var, L_49, L_53, 1, 1);
|
|
goto IL_0112_1;
|
|
}
|
|
|
|
IL_0100_1:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/ScreenSpace/DecalGBufferRenderPass.cs:190>
|
|
il2cpp_codegen_runtime_class_init_inline(TextureHandle_t680ABA3F8B50859351BA5DD66220084F87F37388_il2cpp_TypeInfo_var);
|
|
bool L_54;
|
|
L_54 = TextureHandle_IsValid_mECFF64B8BAC6402F0D37B67BB79FFB3AB3C7F3C2_inline((&V_1), NULL);
|
|
if (!L_54)
|
|
{
|
|
goto IL_0112_1;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/ScreenSpace/DecalGBufferRenderPass.cs:191>
|
|
RuntimeObject* L_55 = V_2;
|
|
NullCheck(L_55);
|
|
InterfaceActionInvoker2< TextureHandle_t680ABA3F8B50859351BA5DD66220084F87F37388*, int32_t >::Invoke(0, IBaseRenderGraphBuilder_tFFF84F72F862F1BE246A789AB6A59F959B490F3D_il2cpp_TypeInfo_var, L_55, (&V_1), 1);
|
|
}
|
|
|
|
IL_0112_1:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/ScreenSpace/DecalGBufferRenderPass.cs:193>
|
|
PassData_t4396B080377CC62E6B81D42D8103F58BF0CC9451* L_56 = V_3;
|
|
NullCheck(L_56);
|
|
UniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7* L_57 = L_56->___cameraData;
|
|
NullCheck(L_57);
|
|
int32_t L_58 = L_57->___defaultOpaqueSortFlags;
|
|
V_7 = L_58;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/ScreenSpace/DecalGBufferRenderPass.cs:194>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/ScreenSpace/DecalGBufferRenderPass.cs:195>
|
|
List_1_t4673975A297A80D4D4A65EB5A2BE3B6BD1EED9AF* L_59 = __this->___m_ShaderTagIdList;
|
|
UniversalRenderingData_t045D13A1E051DF623B170223B7CBF1161DDA94E6* L_60 = V_4;
|
|
PassData_t4396B080377CC62E6B81D42D8103F58BF0CC9451* L_61 = V_3;
|
|
NullCheck(L_61);
|
|
UniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7* L_62 = L_61->___cameraData;
|
|
UniversalLightData_tCFFFAB4033CD97BE9F339F0C90BB7F98C06FFBA2* L_63 = V_6;
|
|
int32_t L_64 = V_7;
|
|
il2cpp_codegen_runtime_class_init_inline(RenderingUtils_t4E40200449A82FA3A172A563C490DF11FADA2BE1_il2cpp_TypeInfo_var);
|
|
DrawingSettings_t3B64EB029DB6F94A1F2A9B2D19D2969AE361BB49 L_65;
|
|
L_65 = RenderingUtils_CreateDrawingSettings_m3DB61D695B8C38BC10DF00E538DCB622F04189A0(L_59, L_60, L_62, L_63, L_64, NULL);
|
|
V_8 = L_65;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/ScreenSpace/DecalGBufferRenderPass.cs:196>
|
|
UniversalRenderingData_t045D13A1E051DF623B170223B7CBF1161DDA94E6* L_66 = V_4;
|
|
NullCheck(L_66);
|
|
CullingResults_tD6B7EF20B68D47DFF3A99EB2EA73F47F1D460267 L_67 = L_66->___cullResults;
|
|
DrawingSettings_t3B64EB029DB6F94A1F2A9B2D19D2969AE361BB49 L_68 = V_8;
|
|
FilteringSettings_t75860B12A7BCF9A0E2F13CB2C2E5DCD9E1EEAD9F L_69 = __this->___m_FilteringSettings;
|
|
il2cpp_codegen_runtime_class_init_inline(RendererListParams_t13F72282BCE2DC255747FE7694C6BBC3377944B1_il2cpp_TypeInfo_var);
|
|
RendererListParams__ctor_m46CCE38EA66C6F213878BBAE3E058D7AA995D5F7((&V_9), L_67, L_68, L_69, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/ScreenSpace/DecalGBufferRenderPass.cs:197>
|
|
PassData_t4396B080377CC62E6B81D42D8103F58BF0CC9451* L_70 = V_3;
|
|
RenderGraph_t73ECE03B3CA3D0D17F1448D64AE020E81592AA1E* L_71 = ___0_renderGraph;
|
|
NullCheck(L_71);
|
|
RendererListHandle_t2DFC72A560B979AE0BAFBABBD8B9AF5DC1FEFEBA L_72;
|
|
L_72 = RenderGraph_CreateRendererList_m7A5DCFC7F4A8A38BB0FC4E41BAE77FD5590B4F42(L_71, (&V_9), NULL);
|
|
NullCheck(L_70);
|
|
L_70->___rendererList = L_72;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/ScreenSpace/DecalGBufferRenderPass.cs:198>
|
|
RuntimeObject* L_73 = V_2;
|
|
PassData_t4396B080377CC62E6B81D42D8103F58BF0CC9451* L_74 = V_3;
|
|
NullCheck(L_74);
|
|
RendererListHandle_t2DFC72A560B979AE0BAFBABBD8B9AF5DC1FEFEBA* L_75 = (RendererListHandle_t2DFC72A560B979AE0BAFBABBD8B9AF5DC1FEFEBA*)(&L_74->___rendererList);
|
|
NullCheck(L_73);
|
|
InterfaceActionInvoker1< RendererListHandle_t2DFC72A560B979AE0BAFBABBD8B9AF5DC1FEFEBA* >::Invoke(9, IBaseRenderGraphBuilder_tFFF84F72F862F1BE246A789AB6A59F959B490F3D_il2cpp_TypeInfo_var, L_73, L_75);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/ScreenSpace/DecalGBufferRenderPass.cs:200>
|
|
RuntimeObject* L_76 = V_2;
|
|
NullCheck(L_76);
|
|
InterfaceActionInvoker1< bool >::Invoke(12, IBaseRenderGraphBuilder_tFFF84F72F862F1BE246A789AB6A59F959B490F3D_il2cpp_TypeInfo_var, L_76, (bool)1);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/ScreenSpace/DecalGBufferRenderPass.cs:202>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/ScreenSpace/DecalGBufferRenderPass.cs:203>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/ScreenSpace/DecalGBufferRenderPass.cs:204>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/ScreenSpace/DecalGBufferRenderPass.cs:205>
|
|
RuntimeObject* L_77 = V_2;
|
|
il2cpp_codegen_runtime_class_init_inline(U3CU3Ec_tAA26B4D41608EBD4DBF0897F2337AC0EC4D686C3_il2cpp_TypeInfo_var);
|
|
BaseRenderFunc_2_t8B6F86F4EF8472D6B5D84629A6E35307F19167AE* L_78 = ((U3CU3Ec_tAA26B4D41608EBD4DBF0897F2337AC0EC4D686C3_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_tAA26B4D41608EBD4DBF0897F2337AC0EC4D686C3_il2cpp_TypeInfo_var))->___U3CU3E9__15_0;
|
|
BaseRenderFunc_2_t8B6F86F4EF8472D6B5D84629A6E35307F19167AE* L_79 = L_78;
|
|
if (L_79)
|
|
{
|
|
G_B16_0 = L_79;
|
|
G_B16_1 = L_77;
|
|
goto IL_018f_1;
|
|
}
|
|
G_B15_0 = L_79;
|
|
G_B15_1 = L_77;
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(U3CU3Ec_tAA26B4D41608EBD4DBF0897F2337AC0EC4D686C3_il2cpp_TypeInfo_var);
|
|
U3CU3Ec_tAA26B4D41608EBD4DBF0897F2337AC0EC4D686C3* L_80 = ((U3CU3Ec_tAA26B4D41608EBD4DBF0897F2337AC0EC4D686C3_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_tAA26B4D41608EBD4DBF0897F2337AC0EC4D686C3_il2cpp_TypeInfo_var))->___U3CU3E9;
|
|
BaseRenderFunc_2_t8B6F86F4EF8472D6B5D84629A6E35307F19167AE* L_81 = (BaseRenderFunc_2_t8B6F86F4EF8472D6B5D84629A6E35307F19167AE*)il2cpp_codegen_object_new(BaseRenderFunc_2_t8B6F86F4EF8472D6B5D84629A6E35307F19167AE_il2cpp_TypeInfo_var);
|
|
BaseRenderFunc_2__ctor_m42EF02CD8F7F36A203A0BA41463801AA38801DD0(L_81, L_80, (intptr_t)((void*)U3CU3Ec_U3CRecordRenderGraphU3Eb__15_0_m75857FF3B08C8F935437B24499CEEF30DE03E198_RuntimeMethod_var), NULL);
|
|
BaseRenderFunc_2_t8B6F86F4EF8472D6B5D84629A6E35307F19167AE* L_82 = L_81;
|
|
((U3CU3Ec_tAA26B4D41608EBD4DBF0897F2337AC0EC4D686C3_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_tAA26B4D41608EBD4DBF0897F2337AC0EC4D686C3_il2cpp_TypeInfo_var))->___U3CU3E9__15_0 = L_82;
|
|
Il2CppCodeGenWriteBarrier((void**)(&((U3CU3Ec_tAA26B4D41608EBD4DBF0897F2337AC0EC4D686C3_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_tAA26B4D41608EBD4DBF0897F2337AC0EC4D686C3_il2cpp_TypeInfo_var))->___U3CU3E9__15_0), (void*)L_82);
|
|
G_B16_0 = L_82;
|
|
G_B16_1 = G_B15_1;
|
|
}
|
|
|
|
IL_018f_1:
|
|
{
|
|
NullCheck(G_B16_1);
|
|
GenericInterfaceActionInvoker1< BaseRenderFunc_2_t8B6F86F4EF8472D6B5D84629A6E35307F19167AE* >::Invoke(IRasterRenderGraphBuilder_SetRenderFunc_TisPassData_t4396B080377CC62E6B81D42D8103F58BF0CC9451_mFD8B4514D5D533960796BB458E8914BE64EDEE73_RuntimeMethod_var, G_B16_1, G_B16_0);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/ScreenSpace/DecalGBufferRenderPass.cs:206>
|
|
goto IL_01a0;
|
|
}
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_01a0:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/ScreenSpace/DecalGBufferRenderPass.cs:207>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 33237
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DecalGBufferRenderPass_OnCameraCleanup_m838BB749709750BDAAEE47AFB9CB2FEE0EFE2D62 (DecalGBufferRenderPass_tF9AE5E097AC2B82F540580ECA6E502C1B885ECA4* __this, CommandBuffer_tB56007DC84EF56296C325EC32DD12AC1E3DC91F7* ___0_cmd, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ShaderGlobalKeywords_tCD2A8F654428E5D252204D24E379C6725E5A2C91_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/ScreenSpace/DecalGBufferRenderPass.cs:211>
|
|
CommandBuffer_tB56007DC84EF56296C325EC32DD12AC1E3DC91F7* L_0 = ___0_cmd;
|
|
if (L_0)
|
|
{
|
|
goto IL_000e;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/ScreenSpace/DecalGBufferRenderPass.cs:213>
|
|
ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129* L_1 = (ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129_il2cpp_TypeInfo_var)));
|
|
ArgumentNullException__ctor_m444AE141157E333844FC1A9500224C2F9FD24F4B(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral855FED6E03442FBB3AF914FFBFA9DA82813817A1)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&DecalGBufferRenderPass_OnCameraCleanup_m838BB749709750BDAAEE47AFB9CB2FEE0EFE2D62_RuntimeMethod_var)));
|
|
}
|
|
|
|
IL_000e:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/ScreenSpace/DecalGBufferRenderPass.cs:216>
|
|
CommandBuffer_tB56007DC84EF56296C325EC32DD12AC1E3DC91F7* L_2 = ___0_cmd;
|
|
NullCheck(L_2);
|
|
CommandBuffer_SetKeyword_m21015D629787CEC4954ABA00F1211D2F957B2399(L_2, (&((ShaderGlobalKeywords_tCD2A8F654428E5D252204D24E379C6725E5A2C91_StaticFields*)il2cpp_codegen_static_fields_for(ShaderGlobalKeywords_tCD2A8F654428E5D252204D24E379C6725E5A2C91_il2cpp_TypeInfo_var))->___DecalNormalBlendLow), (bool)0, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/ScreenSpace/DecalGBufferRenderPass.cs:217>
|
|
CommandBuffer_tB56007DC84EF56296C325EC32DD12AC1E3DC91F7* L_3 = ___0_cmd;
|
|
NullCheck(L_3);
|
|
CommandBuffer_SetKeyword_m21015D629787CEC4954ABA00F1211D2F957B2399(L_3, (&((ShaderGlobalKeywords_tCD2A8F654428E5D252204D24E379C6725E5A2C91_StaticFields*)il2cpp_codegen_static_fields_for(ShaderGlobalKeywords_tCD2A8F654428E5D252204D24E379C6725E5A2C91_il2cpp_TypeInfo_var))->___DecalNormalBlendMedium), (bool)0, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/ScreenSpace/DecalGBufferRenderPass.cs:218>
|
|
CommandBuffer_tB56007DC84EF56296C325EC32DD12AC1E3DC91F7* L_4 = ___0_cmd;
|
|
NullCheck(L_4);
|
|
CommandBuffer_SetKeyword_m21015D629787CEC4954ABA00F1211D2F957B2399(L_4, (&((ShaderGlobalKeywords_tCD2A8F654428E5D252204D24E379C6725E5A2C91_StaticFields*)il2cpp_codegen_static_fields_for(ShaderGlobalKeywords_tCD2A8F654428E5D252204D24E379C6725E5A2C91_il2cpp_TypeInfo_var))->___DecalNormalBlendHigh), (bool)0, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/ScreenSpace/DecalGBufferRenderPass.cs:219>
|
|
CommandBuffer_tB56007DC84EF56296C325EC32DD12AC1E3DC91F7* L_5 = ___0_cmd;
|
|
NullCheck(L_5);
|
|
CommandBuffer_SetKeyword_m21015D629787CEC4954ABA00F1211D2F957B2399(L_5, (&((ShaderGlobalKeywords_tCD2A8F654428E5D252204D24E379C6725E5A2C91_StaticFields*)il2cpp_codegen_static_fields_for(ShaderGlobalKeywords_tCD2A8F654428E5D252204D24E379C6725E5A2C91_il2cpp_TypeInfo_var))->___DecalLayers), (bool)0, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/ScreenSpace/DecalGBufferRenderPass.cs:220>
|
|
return;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// Method Definition Index: 33238
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PassData__ctor_m026A8010E17A93921E2BF87E12B4384114F0819E (PassData_t4396B080377CC62E6B81D42D8103F58BF0CC9451* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
|
|
return;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// Method Definition Index: 33239
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__cctor_m3568D3099B478664094FC6BDEA42E6C6C793F351 (const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec_tAA26B4D41608EBD4DBF0897F2337AC0EC4D686C3_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
U3CU3Ec_tAA26B4D41608EBD4DBF0897F2337AC0EC4D686C3* L_0 = (U3CU3Ec_tAA26B4D41608EBD4DBF0897F2337AC0EC4D686C3*)il2cpp_codegen_object_new(U3CU3Ec_tAA26B4D41608EBD4DBF0897F2337AC0EC4D686C3_il2cpp_TypeInfo_var);
|
|
U3CU3Ec__ctor_mBC3A00C95FC82A4549C9BFC2D32CE701BB4679C6(L_0, NULL);
|
|
((U3CU3Ec_tAA26B4D41608EBD4DBF0897F2337AC0EC4D686C3_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_tAA26B4D41608EBD4DBF0897F2337AC0EC4D686C3_il2cpp_TypeInfo_var))->___U3CU3E9 = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&((U3CU3Ec_tAA26B4D41608EBD4DBF0897F2337AC0EC4D686C3_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_tAA26B4D41608EBD4DBF0897F2337AC0EC4D686C3_il2cpp_TypeInfo_var))->___U3CU3E9), (void*)L_0);
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 33240
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__ctor_mBC3A00C95FC82A4549C9BFC2D32CE701BB4679C6 (U3CU3Ec_tAA26B4D41608EBD4DBF0897F2337AC0EC4D686C3* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 33241
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec_U3CRecordRenderGraphU3Eb__15_0_m75857FF3B08C8F935437B24499CEEF30DE03E198 (U3CU3Ec_tAA26B4D41608EBD4DBF0897F2337AC0EC4D686C3* __this, PassData_t4396B080377CC62E6B81D42D8103F58BF0CC9451* ___0_data, RasterGraphContext_tC4D3E53FF7131476487751ACB0237D56C8327147 ___1_rgContext, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/ScreenSpace/DecalGBufferRenderPass.cs:204>
|
|
RasterGraphContext_tC4D3E53FF7131476487751ACB0237D56C8327147 L_0 = ___1_rgContext;
|
|
RasterCommandBuffer_t4300C4F080EA3CF43C7ACFDBD4F94EA633FE98E8* L_1 = L_0.___cmd;
|
|
PassData_t4396B080377CC62E6B81D42D8103F58BF0CC9451* L_2 = ___0_data;
|
|
PassData_t4396B080377CC62E6B81D42D8103F58BF0CC9451* L_3 = ___0_data;
|
|
NullCheck(L_3);
|
|
RendererListHandle_t2DFC72A560B979AE0BAFBABBD8B9AF5DC1FEFEBA L_4 = L_3->___rendererList;
|
|
RendererList_t608CE60421616EF4211F5B8AC62E3C36D4BDDF85 L_5;
|
|
L_5 = RendererListHandle_op_Implicit_m23F3E49F9D97B0BABE1044E02A7A70784F05C585(L_4, NULL);
|
|
DecalGBufferRenderPass_ExecutePass_m7D3D8E518D0F76AA4195B9D59A4A1D1B6CE51C5F(L_1, L_2, L_5, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/ScreenSpace/DecalGBufferRenderPass.cs:205>
|
|
return;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// Method Definition Index: 33242
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DecalDrawScreenSpaceSystem__ctor_m5C3A06343E2CBA6098503807B9D7D59AB71D7064 (DecalDrawScreenSpaceSystem_t6851B844B1C2A2DEF28F0D4AE9BDB03C86BCB69E* __this, DecalEntityManager_tDA689202786946588782A67EF3F0B0D9121C294A* ___0_entityManager, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DecalDrawSystem_t87ECA1A8D2D9C3A73A12F81D8CCA0F79029C0BFE_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral9B5EF2C290FCC363F7E2597B9EA0E0B52AADAF3C);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/ScreenSpace/DecalScreenSpaceRenderPass.cs:11>
|
|
DecalEntityManager_tDA689202786946588782A67EF3F0B0D9121C294A* L_0 = ___0_entityManager;
|
|
il2cpp_codegen_runtime_class_init_inline(DecalDrawSystem_t87ECA1A8D2D9C3A73A12F81D8CCA0F79029C0BFE_il2cpp_TypeInfo_var);
|
|
DecalDrawSystem__ctor_m2F13DA6696D08715AC3C3BE7B73AA680945620A5(__this, _stringLiteral9B5EF2C290FCC363F7E2597B9EA0E0B52AADAF3C, L_0, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/ScreenSpace/DecalScreenSpaceRenderPass.cs:11>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 33243
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t DecalDrawScreenSpaceSystem_GetPassIndex_mA742403F6C957EEFF94CA056878DA1174AAD9BFC (DecalDrawScreenSpaceSystem_t6851B844B1C2A2DEF28F0D4AE9BDB03C86BCB69E* __this, DecalCachedChunk_tDEF493C8A3A1F442BDEC1794BDDA0996B32DCACE* ___0_decalCachedChunk, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/ScreenSpace/DecalScreenSpaceRenderPass.cs:12>
|
|
DecalCachedChunk_tDEF493C8A3A1F442BDEC1794BDDA0996B32DCACE* L_0 = ___0_decalCachedChunk;
|
|
NullCheck(L_0);
|
|
int32_t L_1 = L_0->___passIndexScreenSpace;
|
|
return L_1;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// Method Definition Index: 33244
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DecalScreenSpaceRenderPass__ctor_m5A552C55F529DCDC07421224A1D04898B930E087 (DecalScreenSpaceRenderPass_tA23A972765D97DFA9A20665DD1D4E3F4DF339016* __this, DecalScreenSpaceSettings_tD94FE1202A789534D40E4DD61AD7DE9E55F1ADD3* ___0_settings, DecalDrawScreenSpaceSystem_t6851B844B1C2A2DEF28F0D4AE9BDB03C86BCB69E* ___1_drawSystem, bool ___2_decalLayers, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Add_m999CAB0903219BD2CF988827287D44B0B44D69FE_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1__ctor_m21A3AD10EC2C165E8A6A3A533380D5D8BE162787_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_t4673975A297A80D4D4A65EB5A2BE3B6BD1EED9AF_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1__ctor_mC09CE20B08C6A7188EE04F52B6A2E598657A0204_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PassData_tE8DFD4099E5A523D2AA3761A4B9CE793D50AA5F6_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ProfilingSampler_t420D4672EDB44E0EF980B31ADFD9E5747200FECE_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RenderQueueRange_t7518252AA6426B1EA45D3D9B394F304EEF784D71_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral22BB297A3EA6A210F84D6E9BD40BC3E9B40E1471);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralB1D153315B594558BCA690966297728A6BC4353C);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralD565F3F01746A93957C2F52BA872EAFAFDC8A64D);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int32_t V_0 = 0;
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/ScreenSpace/DecalScreenSpaceRenderPass.cs:24>
|
|
il2cpp_codegen_runtime_class_init_inline(ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0_il2cpp_TypeInfo_var);
|
|
ScriptableRenderPass__ctor_mE49D4FF8E68A854367A4081E664B8DBA74E6B752(__this, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/ScreenSpace/DecalScreenSpaceRenderPass.cs:26>
|
|
ScriptableRenderPass_set_renderPassEvent_m63FA581FFDE1C69C2E1358BD0B8DB30275334960_inline(__this, ((int32_t)400), NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/ScreenSpace/DecalScreenSpaceRenderPass.cs:28>
|
|
V_0 = 1;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/ScreenSpace/DecalScreenSpaceRenderPass.cs:29>
|
|
int32_t L_0 = V_0;
|
|
ScriptableRenderPass_ConfigureInput_m15D8C10FC37E33CD358F2E9665ECF5515CB9C687_inline(__this, L_0, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/ScreenSpace/DecalScreenSpaceRenderPass.cs:31>
|
|
DecalDrawScreenSpaceSystem_t6851B844B1C2A2DEF28F0D4AE9BDB03C86BCB69E* L_1 = ___1_drawSystem;
|
|
__this->___m_DrawSystem = L_1;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_DrawSystem), (void*)L_1);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/ScreenSpace/DecalScreenSpaceRenderPass.cs:32>
|
|
DecalScreenSpaceSettings_tD94FE1202A789534D40E4DD61AD7DE9E55F1ADD3* L_2 = ___0_settings;
|
|
__this->___m_Settings = L_2;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_Settings), (void*)L_2);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/ScreenSpace/DecalScreenSpaceRenderPass.cs:33>
|
|
ProfilingSampler_t420D4672EDB44E0EF980B31ADFD9E5747200FECE* L_3 = (ProfilingSampler_t420D4672EDB44E0EF980B31ADFD9E5747200FECE*)il2cpp_codegen_object_new(ProfilingSampler_t420D4672EDB44E0EF980B31ADFD9E5747200FECE_il2cpp_TypeInfo_var);
|
|
ProfilingSampler__ctor_m26500989FCDB07FA33C9A3BB7F215CBD892F5BB7(L_3, _stringLiteralB1D153315B594558BCA690966297728A6BC4353C, NULL);
|
|
ScriptableRenderPass_set_profilingSampler_mFD238B85B68DED586BA8C678141BEEAF229FBF2D(__this, L_3, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/ScreenSpace/DecalScreenSpaceRenderPass.cs:34>
|
|
il2cpp_codegen_runtime_class_init_inline(RenderQueueRange_t7518252AA6426B1EA45D3D9B394F304EEF784D71_il2cpp_TypeInfo_var);
|
|
RenderQueueRange_t7518252AA6426B1EA45D3D9B394F304EEF784D71 L_4;
|
|
L_4 = RenderQueueRange_get_opaque_m197DF3E6CC12F21B15F3F603EFD640806FCB65D9(NULL);
|
|
Nullable_1_t7D98773CC20A842A0846271D1181ECBB0D95926C L_5;
|
|
memset((&L_5), 0, sizeof(L_5));
|
|
Nullable_1__ctor_mC09CE20B08C6A7188EE04F52B6A2E598657A0204((&L_5), L_4, Nullable_1__ctor_mC09CE20B08C6A7188EE04F52B6A2E598657A0204_RuntimeMethod_var);
|
|
FilteringSettings_t75860B12A7BCF9A0E2F13CB2C2E5DCD9E1EEAD9F L_6;
|
|
memset((&L_6), 0, sizeof(L_6));
|
|
FilteringSettings__ctor_m2A2242373FC7D053CFBBC6814D02AAC73C7B3AE7((&L_6), L_5, (-1), (-1), 0, NULL);
|
|
__this->___m_FilteringSettings = L_6;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/ScreenSpace/DecalScreenSpaceRenderPass.cs:35>
|
|
bool L_7 = ___2_decalLayers;
|
|
__this->___m_DecalLayers = L_7;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/ScreenSpace/DecalScreenSpaceRenderPass.cs:37>
|
|
List_1_t4673975A297A80D4D4A65EB5A2BE3B6BD1EED9AF* L_8 = (List_1_t4673975A297A80D4D4A65EB5A2BE3B6BD1EED9AF*)il2cpp_codegen_object_new(List_1_t4673975A297A80D4D4A65EB5A2BE3B6BD1EED9AF_il2cpp_TypeInfo_var);
|
|
List_1__ctor_m21A3AD10EC2C165E8A6A3A533380D5D8BE162787(L_8, List_1__ctor_m21A3AD10EC2C165E8A6A3A533380D5D8BE162787_RuntimeMethod_var);
|
|
__this->___m_ShaderTagIdList = L_8;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_ShaderTagIdList), (void*)L_8);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/ScreenSpace/DecalScreenSpaceRenderPass.cs:39>
|
|
DecalDrawScreenSpaceSystem_t6851B844B1C2A2DEF28F0D4AE9BDB03C86BCB69E* L_9 = __this->___m_DrawSystem;
|
|
if (L_9)
|
|
{
|
|
goto IL_0081;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/ScreenSpace/DecalScreenSpaceRenderPass.cs:40>
|
|
List_1_t4673975A297A80D4D4A65EB5A2BE3B6BD1EED9AF* L_10 = __this->___m_ShaderTagIdList;
|
|
ShaderTagId_t453E2085B5EE9448FF75E550CAB111EFF690ECB0 L_11;
|
|
memset((&L_11), 0, sizeof(L_11));
|
|
ShaderTagId__ctor_m4191968F1D2CE19F9092253EC10F83734A9CFF5B((&L_11), _stringLiteral22BB297A3EA6A210F84D6E9BD40BC3E9B40E1471, NULL);
|
|
NullCheck(L_10);
|
|
List_1_Add_m999CAB0903219BD2CF988827287D44B0B44D69FE_inline(L_10, L_11, List_1_Add_m999CAB0903219BD2CF988827287D44B0B44D69FE_RuntimeMethod_var);
|
|
goto IL_0096;
|
|
}
|
|
|
|
IL_0081:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/ScreenSpace/DecalScreenSpaceRenderPass.cs:42>
|
|
List_1_t4673975A297A80D4D4A65EB5A2BE3B6BD1EED9AF* L_12 = __this->___m_ShaderTagIdList;
|
|
ShaderTagId_t453E2085B5EE9448FF75E550CAB111EFF690ECB0 L_13;
|
|
memset((&L_13), 0, sizeof(L_13));
|
|
ShaderTagId__ctor_m4191968F1D2CE19F9092253EC10F83734A9CFF5B((&L_13), _stringLiteralD565F3F01746A93957C2F52BA872EAFAFDC8A64D, NULL);
|
|
NullCheck(L_12);
|
|
List_1_Add_m999CAB0903219BD2CF988827287D44B0B44D69FE_inline(L_12, L_13, List_1_Add_m999CAB0903219BD2CF988827287D44B0B44D69FE_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_0096:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/ScreenSpace/DecalScreenSpaceRenderPass.cs:44>
|
|
PassData_tE8DFD4099E5A523D2AA3761A4B9CE793D50AA5F6* L_14 = (PassData_tE8DFD4099E5A523D2AA3761A4B9CE793D50AA5F6*)il2cpp_codegen_object_new(PassData_tE8DFD4099E5A523D2AA3761A4B9CE793D50AA5F6_il2cpp_TypeInfo_var);
|
|
PassData__ctor_m29BA26D68AFB0E35149BE7F863ACE6949CE5D022(L_14, NULL);
|
|
__this->___m_PassData = L_14;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_PassData), (void*)L_14);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/ScreenSpace/DecalScreenSpaceRenderPass.cs:45>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 33245
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RendererListParams_t13F72282BCE2DC255747FE7694C6BBC3377944B1 DecalScreenSpaceRenderPass_CreateRenderListParams_m31FDD069D4D2097D56355AA76861C3D3CBDB4549 (DecalScreenSpaceRenderPass_tA23A972765D97DFA9A20665DD1D4E3F4DF339016* __this, UniversalRenderingData_t045D13A1E051DF623B170223B7CBF1161DDA94E6* ___0_renderingData, UniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7* ___1_cameraData, UniversalLightData_tCFFFAB4033CD97BE9F339F0C90BB7F98C06FFBA2* ___2_lightData, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RenderingUtils_t4E40200449A82FA3A172A563C490DF11FADA2BE1_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int32_t V_0 = 0;
|
|
DrawingSettings_t3B64EB029DB6F94A1F2A9B2D19D2969AE361BB49 V_1;
|
|
memset((&V_1), 0, sizeof(V_1));
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/ScreenSpace/DecalScreenSpaceRenderPass.cs:49>
|
|
V_0 = 0;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/ScreenSpace/DecalScreenSpaceRenderPass.cs:50>
|
|
List_1_t4673975A297A80D4D4A65EB5A2BE3B6BD1EED9AF* L_0 = __this->___m_ShaderTagIdList;
|
|
UniversalRenderingData_t045D13A1E051DF623B170223B7CBF1161DDA94E6* L_1 = ___0_renderingData;
|
|
UniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7* L_2 = ___1_cameraData;
|
|
UniversalLightData_tCFFFAB4033CD97BE9F339F0C90BB7F98C06FFBA2* L_3 = ___2_lightData;
|
|
int32_t L_4 = V_0;
|
|
il2cpp_codegen_runtime_class_init_inline(RenderingUtils_t4E40200449A82FA3A172A563C490DF11FADA2BE1_il2cpp_TypeInfo_var);
|
|
DrawingSettings_t3B64EB029DB6F94A1F2A9B2D19D2969AE361BB49 L_5;
|
|
L_5 = RenderingUtils_CreateDrawingSettings_m3DB61D695B8C38BC10DF00E538DCB622F04189A0(L_0, L_1, L_2, L_3, L_4, NULL);
|
|
V_1 = L_5;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/ScreenSpace/DecalScreenSpaceRenderPass.cs:51>
|
|
UniversalRenderingData_t045D13A1E051DF623B170223B7CBF1161DDA94E6* L_6 = ___0_renderingData;
|
|
NullCheck(L_6);
|
|
CullingResults_tD6B7EF20B68D47DFF3A99EB2EA73F47F1D460267 L_7 = L_6->___cullResults;
|
|
DrawingSettings_t3B64EB029DB6F94A1F2A9B2D19D2969AE361BB49 L_8 = V_1;
|
|
FilteringSettings_t75860B12A7BCF9A0E2F13CB2C2E5DCD9E1EEAD9F L_9 = __this->___m_FilteringSettings;
|
|
RendererListParams_t13F72282BCE2DC255747FE7694C6BBC3377944B1 L_10;
|
|
memset((&L_10), 0, sizeof(L_10));
|
|
RendererListParams__ctor_m46CCE38EA66C6F213878BBAE3E058D7AA995D5F7((&L_10), L_7, L_8, L_9, NULL);
|
|
return L_10;
|
|
}
|
|
}
|
|
// Method Definition Index: 33246
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DecalScreenSpaceRenderPass_Execute_m7032A9845A0233E66A5F6747B91F8A63D07D200D (DecalScreenSpaceRenderPass_tA23A972765D97DFA9A20665DD1D4E3F4DF339016* __this, ScriptableRenderContext_t5AB09B3602BEB456E0DC3D53926D3A3BDAF08E36 ___0_context, RenderingData_tAAA01190551D6D5954314E3E1E85B58DD45EED71* ___1_renderingData, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CommandBufferHelpers_tB8C09D01D6F0369DF52DEA955F017D6001BC72E5_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ContextContainer_Get_TisUniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7_mE62F7903614384541B770CC0B9A99BD2E608A0F8_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ContextContainer_Get_TisUniversalLightData_tCFFFAB4033CD97BE9F339F0C90BB7F98C06FFBA2_m7D529C251F384985900DEA334BC399BAD36BFC8F_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ContextContainer_Get_TisUniversalRenderingData_t045D13A1E051DF623B170223B7CBF1161DDA94E6_m71849CEFB9C023EDE026A0F38CE6044274505C06_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RenderingUtils_t4E40200449A82FA3A172A563C490DF11FADA2BE1_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ScriptableRenderContext_t5AB09B3602BEB456E0DC3D53926D3A3BDAF08E36_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
UniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7* V_0 = NULL;
|
|
UniversalRenderingData_t045D13A1E051DF623B170223B7CBF1161DDA94E6* V_1 = NULL;
|
|
UniversalLightData_tCFFFAB4033CD97BE9F339F0C90BB7F98C06FFBA2* V_2 = NULL;
|
|
RendererListParams_t13F72282BCE2DC255747FE7694C6BBC3377944B1 V_3;
|
|
memset((&V_3), 0, sizeof(V_3));
|
|
RendererList_t608CE60421616EF4211F5B8AC62E3C36D4BDDF85 V_4;
|
|
memset((&V_4), 0, sizeof(V_4));
|
|
ProfilingScope_t57898BA31E8EF8F083EF84E0DA2737AC61CBC5BD V_5;
|
|
memset((&V_5), 0, sizeof(V_5));
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/ScreenSpace/DecalScreenSpaceRenderPass.cs:57>
|
|
RenderingData_tAAA01190551D6D5954314E3E1E85B58DD45EED71* L_0 = ___1_renderingData;
|
|
ContextContainer_t384E08F63FABEFF6A7F1A753F5EF02699DAD414C* L_1 = L_0->___frameData;
|
|
NullCheck(L_1);
|
|
UniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7* L_2;
|
|
L_2 = ContextContainer_Get_TisUniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7_mE62F7903614384541B770CC0B9A99BD2E608A0F8_inline(L_1, ContextContainer_Get_TisUniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7_mE62F7903614384541B770CC0B9A99BD2E608A0F8_RuntimeMethod_var);
|
|
V_0 = L_2;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/ScreenSpace/DecalScreenSpaceRenderPass.cs:59>
|
|
UniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7* L_3 = V_0;
|
|
PassData_tE8DFD4099E5A523D2AA3761A4B9CE793D50AA5F6** L_4 = (PassData_tE8DFD4099E5A523D2AA3761A4B9CE793D50AA5F6**)(&__this->___m_PassData);
|
|
DecalScreenSpaceRenderPass_InitPassData_m152AB18218A94C04236550A797803B4AF806A6A3(__this, L_3, L_4, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/ScreenSpace/DecalScreenSpaceRenderPass.cs:60>
|
|
RenderingData_tAAA01190551D6D5954314E3E1E85B58DD45EED71* L_5 = ___1_renderingData;
|
|
CommandBuffer_tB56007DC84EF56296C325EC32DD12AC1E3DC91F7** L_6;
|
|
L_6 = RenderingData_get_commandBuffer_m747CD6ABF19DD5BB05F8231CC84A9922D9DC080A(L_5, NULL);
|
|
CommandBuffer_tB56007DC84EF56296C325EC32DD12AC1E3DC91F7* L_7 = *((CommandBuffer_tB56007DC84EF56296C325EC32DD12AC1E3DC91F7**)L_6);
|
|
il2cpp_codegen_runtime_class_init_inline(CommandBufferHelpers_tB8C09D01D6F0369DF52DEA955F017D6001BC72E5_il2cpp_TypeInfo_var);
|
|
RasterCommandBuffer_t4300C4F080EA3CF43C7ACFDBD4F94EA633FE98E8* L_8;
|
|
L_8 = CommandBufferHelpers_GetRasterCommandBuffer_m6086D650343F166614B3FB5ED89D63DE8F85C42B_inline(L_7, NULL);
|
|
RenderingData_tAAA01190551D6D5954314E3E1E85B58DD45EED71* L_9 = ___1_renderingData;
|
|
il2cpp_codegen_runtime_class_init_inline(RenderingUtils_t4E40200449A82FA3A172A563C490DF11FADA2BE1_il2cpp_TypeInfo_var);
|
|
RenderingUtils_SetScaleBiasRt_m5E60572A103409E116C1EF529D5E9016AA62A572(L_8, L_9, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/ScreenSpace/DecalScreenSpaceRenderPass.cs:61>
|
|
RenderingData_tAAA01190551D6D5954314E3E1E85B58DD45EED71* L_10 = ___1_renderingData;
|
|
ContextContainer_t384E08F63FABEFF6A7F1A753F5EF02699DAD414C* L_11 = L_10->___frameData;
|
|
NullCheck(L_11);
|
|
UniversalRenderingData_t045D13A1E051DF623B170223B7CBF1161DDA94E6* L_12;
|
|
L_12 = ContextContainer_Get_TisUniversalRenderingData_t045D13A1E051DF623B170223B7CBF1161DDA94E6_m71849CEFB9C023EDE026A0F38CE6044274505C06_inline(L_11, ContextContainer_Get_TisUniversalRenderingData_t045D13A1E051DF623B170223B7CBF1161DDA94E6_m71849CEFB9C023EDE026A0F38CE6044274505C06_RuntimeMethod_var);
|
|
V_1 = L_12;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/ScreenSpace/DecalScreenSpaceRenderPass.cs:62>
|
|
RenderingData_tAAA01190551D6D5954314E3E1E85B58DD45EED71* L_13 = ___1_renderingData;
|
|
ContextContainer_t384E08F63FABEFF6A7F1A753F5EF02699DAD414C* L_14 = L_13->___frameData;
|
|
NullCheck(L_14);
|
|
UniversalLightData_tCFFFAB4033CD97BE9F339F0C90BB7F98C06FFBA2* L_15;
|
|
L_15 = ContextContainer_Get_TisUniversalLightData_tCFFFAB4033CD97BE9F339F0C90BB7F98C06FFBA2_m7D529C251F384985900DEA334BC399BAD36BFC8F_inline(L_14, ContextContainer_Get_TisUniversalLightData_tCFFFAB4033CD97BE9F339F0C90BB7F98C06FFBA2_m7D529C251F384985900DEA334BC399BAD36BFC8F_RuntimeMethod_var);
|
|
V_2 = L_15;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/ScreenSpace/DecalScreenSpaceRenderPass.cs:63>
|
|
UniversalRenderingData_t045D13A1E051DF623B170223B7CBF1161DDA94E6* L_16 = V_1;
|
|
UniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7* L_17 = V_0;
|
|
UniversalLightData_tCFFFAB4033CD97BE9F339F0C90BB7F98C06FFBA2* L_18 = V_2;
|
|
RendererListParams_t13F72282BCE2DC255747FE7694C6BBC3377944B1 L_19;
|
|
L_19 = DecalScreenSpaceRenderPass_CreateRenderListParams_m31FDD069D4D2097D56355AA76861C3D3CBDB4549(__this, L_16, L_17, L_18, NULL);
|
|
V_3 = L_19;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/ScreenSpace/DecalScreenSpaceRenderPass.cs:64>
|
|
il2cpp_codegen_runtime_class_init_inline(ScriptableRenderContext_t5AB09B3602BEB456E0DC3D53926D3A3BDAF08E36_il2cpp_TypeInfo_var);
|
|
RendererList_t608CE60421616EF4211F5B8AC62E3C36D4BDDF85 L_20;
|
|
L_20 = ScriptableRenderContext_CreateRendererList_mBF2F8A1EA796B87CBBAAC245133F2961D52A9BFA((&___0_context), (&V_3), NULL);
|
|
V_4 = L_20;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/ScreenSpace/DecalScreenSpaceRenderPass.cs:65>
|
|
RenderingData_tAAA01190551D6D5954314E3E1E85B58DD45EED71* L_21 = ___1_renderingData;
|
|
CommandBuffer_tB56007DC84EF56296C325EC32DD12AC1E3DC91F7** L_22;
|
|
L_22 = RenderingData_get_commandBuffer_m747CD6ABF19DD5BB05F8231CC84A9922D9DC080A(L_21, NULL);
|
|
CommandBuffer_tB56007DC84EF56296C325EC32DD12AC1E3DC91F7* L_23 = *((CommandBuffer_tB56007DC84EF56296C325EC32DD12AC1E3DC91F7**)L_22);
|
|
ProfilingSampler_t420D4672EDB44E0EF980B31ADFD9E5747200FECE* L_24;
|
|
L_24 = ScriptableRenderPass_get_profilingSampler_m627C9BF8A4A08101DCB6F40E0A97145A5A1CDA38(__this, NULL);
|
|
ProfilingScope__ctor_mE15813DF7651C1A3B6AFD6465AD4B973E8F1DBFC((&V_5), L_23, L_24, NULL);
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_0087:
|
|
{
|
|
ProfilingScope_Dispose_m4231A2ACA1F8E345BB0078310A9F7601704C8BE4((&V_5), NULL);
|
|
return;
|
|
}
|
|
});
|
|
try
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/ScreenSpace/DecalScreenSpaceRenderPass.cs:67>
|
|
RenderingData_tAAA01190551D6D5954314E3E1E85B58DD45EED71* L_25 = ___1_renderingData;
|
|
CommandBuffer_tB56007DC84EF56296C325EC32DD12AC1E3DC91F7** L_26;
|
|
L_26 = RenderingData_get_commandBuffer_m747CD6ABF19DD5BB05F8231CC84A9922D9DC080A(L_25, NULL);
|
|
CommandBuffer_tB56007DC84EF56296C325EC32DD12AC1E3DC91F7* L_27 = *((CommandBuffer_tB56007DC84EF56296C325EC32DD12AC1E3DC91F7**)L_26);
|
|
il2cpp_codegen_runtime_class_init_inline(CommandBufferHelpers_tB8C09D01D6F0369DF52DEA955F017D6001BC72E5_il2cpp_TypeInfo_var);
|
|
RasterCommandBuffer_t4300C4F080EA3CF43C7ACFDBD4F94EA633FE98E8* L_28;
|
|
L_28 = CommandBufferHelpers_GetRasterCommandBuffer_m6086D650343F166614B3FB5ED89D63DE8F85C42B_inline(L_27, NULL);
|
|
PassData_tE8DFD4099E5A523D2AA3761A4B9CE793D50AA5F6* L_29 = __this->___m_PassData;
|
|
RendererList_t608CE60421616EF4211F5B8AC62E3C36D4BDDF85 L_30 = V_4;
|
|
DecalScreenSpaceRenderPass_ExecutePass_m2989BD2B5F45D64DC5938018759B4D0F75A1205C(L_28, L_29, L_30, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/ScreenSpace/DecalScreenSpaceRenderPass.cs:68>
|
|
goto IL_0095;
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_0095:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/ScreenSpace/DecalScreenSpaceRenderPass.cs:69>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 33247
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DecalScreenSpaceRenderPass_InitPassData_m152AB18218A94C04236550A797803B4AF806A6A3 (DecalScreenSpaceRenderPass_tA23A972765D97DFA9A20665DD1D4E3F4DF339016* __this, UniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7* ___0_cameraData, PassData_tE8DFD4099E5A523D2AA3761A4B9CE793D50AA5F6** ___1_passData, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DecalRendererFeature_t60FD3C8045A8E32C2DF6FA12C247020274E76B7F_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/ScreenSpace/DecalScreenSpaceRenderPass.cs:85>
|
|
PassData_tE8DFD4099E5A523D2AA3761A4B9CE793D50AA5F6** L_0 = ___1_passData;
|
|
PassData_tE8DFD4099E5A523D2AA3761A4B9CE793D50AA5F6* L_1 = *((PassData_tE8DFD4099E5A523D2AA3761A4B9CE793D50AA5F6**)L_0);
|
|
DecalDrawScreenSpaceSystem_t6851B844B1C2A2DEF28F0D4AE9BDB03C86BCB69E* L_2 = __this->___m_DrawSystem;
|
|
NullCheck(L_1);
|
|
L_1->___drawSystem = L_2;
|
|
Il2CppCodeGenWriteBarrier((void**)(&L_1->___drawSystem), (void*)L_2);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/ScreenSpace/DecalScreenSpaceRenderPass.cs:86>
|
|
PassData_tE8DFD4099E5A523D2AA3761A4B9CE793D50AA5F6** L_3 = ___1_passData;
|
|
PassData_tE8DFD4099E5A523D2AA3761A4B9CE793D50AA5F6* L_4 = *((PassData_tE8DFD4099E5A523D2AA3761A4B9CE793D50AA5F6**)L_3);
|
|
DecalScreenSpaceSettings_tD94FE1202A789534D40E4DD61AD7DE9E55F1ADD3* L_5 = __this->___m_Settings;
|
|
NullCheck(L_4);
|
|
L_4->___settings = L_5;
|
|
Il2CppCodeGenWriteBarrier((void**)(&L_4->___settings), (void*)L_5);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/ScreenSpace/DecalScreenSpaceRenderPass.cs:87>
|
|
PassData_tE8DFD4099E5A523D2AA3761A4B9CE793D50AA5F6** L_6 = ___1_passData;
|
|
PassData_tE8DFD4099E5A523D2AA3761A4B9CE793D50AA5F6* L_7 = *((PassData_tE8DFD4099E5A523D2AA3761A4B9CE793D50AA5F6**)L_6);
|
|
bool L_8 = __this->___m_DecalLayers;
|
|
NullCheck(L_7);
|
|
L_7->___decalLayers = L_8;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/ScreenSpace/DecalScreenSpaceRenderPass.cs:88>
|
|
PassData_tE8DFD4099E5A523D2AA3761A4B9CE793D50AA5F6** L_9 = ___1_passData;
|
|
PassData_tE8DFD4099E5A523D2AA3761A4B9CE793D50AA5F6* L_10 = *((PassData_tE8DFD4099E5A523D2AA3761A4B9CE793D50AA5F6**)L_9);
|
|
il2cpp_codegen_runtime_class_init_inline(DecalRendererFeature_t60FD3C8045A8E32C2DF6FA12C247020274E76B7F_il2cpp_TypeInfo_var);
|
|
bool L_11;
|
|
L_11 = DecalRendererFeature_get_isGLDevice_mAB005FBB84E6230BFD7C8DE6672559C5152BD308(NULL);
|
|
NullCheck(L_10);
|
|
L_10->___isGLDevice = L_11;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/ScreenSpace/DecalScreenSpaceRenderPass.cs:89>
|
|
PassData_tE8DFD4099E5A523D2AA3761A4B9CE793D50AA5F6** L_12 = ___1_passData;
|
|
PassData_tE8DFD4099E5A523D2AA3761A4B9CE793D50AA5F6* L_13 = *((PassData_tE8DFD4099E5A523D2AA3761A4B9CE793D50AA5F6**)L_12);
|
|
UniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7* L_14 = ___0_cameraData;
|
|
NullCheck(L_13);
|
|
L_13->___cameraData = L_14;
|
|
Il2CppCodeGenWriteBarrier((void**)(&L_13->___cameraData), (void*)L_14);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/ScreenSpace/DecalScreenSpaceRenderPass.cs:90>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 33248
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DecalScreenSpaceRenderPass_ExecutePass_m2989BD2B5F45D64DC5938018759B4D0F75A1205C (RasterCommandBuffer_t4300C4F080EA3CF43C7ACFDBD4F94EA633FE98E8* ___0_cmd, PassData_tE8DFD4099E5A523D2AA3761A4B9CE793D50AA5F6* ___1_passData, RendererList_t608CE60421616EF4211F5B8AC62E3C36D4BDDF85 ___2_rendererList, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NormalReconstruction_t692A25FE1AE9EC169043506308E3F42616538324_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ShaderGlobalKeywords_tCD2A8F654428E5D252204D24E379C6725E5A2C91_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
DecalDrawScreenSpaceSystem_t6851B844B1C2A2DEF28F0D4AE9BDB03C86BCB69E* G_B4_0 = NULL;
|
|
DecalDrawScreenSpaceSystem_t6851B844B1C2A2DEF28F0D4AE9BDB03C86BCB69E* G_B3_0 = NULL;
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/ScreenSpace/DecalScreenSpaceRenderPass.cs:94>
|
|
RasterCommandBuffer_t4300C4F080EA3CF43C7ACFDBD4F94EA633FE98E8* L_0 = ___0_cmd;
|
|
PassData_tE8DFD4099E5A523D2AA3761A4B9CE793D50AA5F6* L_1 = ___1_passData;
|
|
NullCheck(L_1);
|
|
UniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7** L_2 = (UniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7**)(&L_1->___cameraData);
|
|
il2cpp_codegen_runtime_class_init_inline(NormalReconstruction_t692A25FE1AE9EC169043506308E3F42616538324_il2cpp_TypeInfo_var);
|
|
NormalReconstruction_SetupProperties_m5A027E9D69284D7248CEF2B1F137879BD0DCD576(L_0, L_2, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/ScreenSpace/DecalScreenSpaceRenderPass.cs:96>
|
|
RasterCommandBuffer_t4300C4F080EA3CF43C7ACFDBD4F94EA633FE98E8* L_3 = ___0_cmd;
|
|
PassData_tE8DFD4099E5A523D2AA3761A4B9CE793D50AA5F6* L_4 = ___1_passData;
|
|
NullCheck(L_4);
|
|
DecalScreenSpaceSettings_tD94FE1202A789534D40E4DD61AD7DE9E55F1ADD3* L_5 = L_4->___settings;
|
|
NullCheck(L_5);
|
|
int32_t L_6 = L_5->___normalBlend;
|
|
NullCheck(L_3);
|
|
RasterCommandBuffer_SetKeyword_m134867C426359E758261AB04E59061F70A69B5C3(L_3, (&((ShaderGlobalKeywords_tCD2A8F654428E5D252204D24E379C6725E5A2C91_StaticFields*)il2cpp_codegen_static_fields_for(ShaderGlobalKeywords_tCD2A8F654428E5D252204D24E379C6725E5A2C91_il2cpp_TypeInfo_var))->___DecalNormalBlendLow), (bool)((((int32_t)L_6) == ((int32_t)0))? 1 : 0), NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/ScreenSpace/DecalScreenSpaceRenderPass.cs:97>
|
|
RasterCommandBuffer_t4300C4F080EA3CF43C7ACFDBD4F94EA633FE98E8* L_7 = ___0_cmd;
|
|
PassData_tE8DFD4099E5A523D2AA3761A4B9CE793D50AA5F6* L_8 = ___1_passData;
|
|
NullCheck(L_8);
|
|
DecalScreenSpaceSettings_tD94FE1202A789534D40E4DD61AD7DE9E55F1ADD3* L_9 = L_8->___settings;
|
|
NullCheck(L_9);
|
|
int32_t L_10 = L_9->___normalBlend;
|
|
NullCheck(L_7);
|
|
RasterCommandBuffer_SetKeyword_m134867C426359E758261AB04E59061F70A69B5C3(L_7, (&((ShaderGlobalKeywords_tCD2A8F654428E5D252204D24E379C6725E5A2C91_StaticFields*)il2cpp_codegen_static_fields_for(ShaderGlobalKeywords_tCD2A8F654428E5D252204D24E379C6725E5A2C91_il2cpp_TypeInfo_var))->___DecalNormalBlendMedium), (bool)((((int32_t)L_10) == ((int32_t)1))? 1 : 0), NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/ScreenSpace/DecalScreenSpaceRenderPass.cs:98>
|
|
RasterCommandBuffer_t4300C4F080EA3CF43C7ACFDBD4F94EA633FE98E8* L_11 = ___0_cmd;
|
|
PassData_tE8DFD4099E5A523D2AA3761A4B9CE793D50AA5F6* L_12 = ___1_passData;
|
|
NullCheck(L_12);
|
|
DecalScreenSpaceSettings_tD94FE1202A789534D40E4DD61AD7DE9E55F1ADD3* L_13 = L_12->___settings;
|
|
NullCheck(L_13);
|
|
int32_t L_14 = L_13->___normalBlend;
|
|
NullCheck(L_11);
|
|
RasterCommandBuffer_SetKeyword_m134867C426359E758261AB04E59061F70A69B5C3(L_11, (&((ShaderGlobalKeywords_tCD2A8F654428E5D252204D24E379C6725E5A2C91_StaticFields*)il2cpp_codegen_static_fields_for(ShaderGlobalKeywords_tCD2A8F654428E5D252204D24E379C6725E5A2C91_il2cpp_TypeInfo_var))->___DecalNormalBlendHigh), (bool)((((int32_t)L_14) == ((int32_t)2))? 1 : 0), NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/ScreenSpace/DecalScreenSpaceRenderPass.cs:100>
|
|
PassData_tE8DFD4099E5A523D2AA3761A4B9CE793D50AA5F6* L_15 = ___1_passData;
|
|
NullCheck(L_15);
|
|
bool L_16 = L_15->___isGLDevice;
|
|
if (L_16)
|
|
{
|
|
goto IL_0070;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/ScreenSpace/DecalScreenSpaceRenderPass.cs:101>
|
|
RasterCommandBuffer_t4300C4F080EA3CF43C7ACFDBD4F94EA633FE98E8* L_17 = ___0_cmd;
|
|
PassData_tE8DFD4099E5A523D2AA3761A4B9CE793D50AA5F6* L_18 = ___1_passData;
|
|
NullCheck(L_18);
|
|
bool L_19 = L_18->___decalLayers;
|
|
NullCheck(L_17);
|
|
RasterCommandBuffer_SetKeyword_m134867C426359E758261AB04E59061F70A69B5C3(L_17, (&((ShaderGlobalKeywords_tCD2A8F654428E5D252204D24E379C6725E5A2C91_StaticFields*)il2cpp_codegen_static_fields_for(ShaderGlobalKeywords_tCD2A8F654428E5D252204D24E379C6725E5A2C91_il2cpp_TypeInfo_var))->___DecalLayers), L_19, NULL);
|
|
}
|
|
|
|
IL_0070:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/ScreenSpace/DecalScreenSpaceRenderPass.cs:103>
|
|
PassData_tE8DFD4099E5A523D2AA3761A4B9CE793D50AA5F6* L_20 = ___1_passData;
|
|
NullCheck(L_20);
|
|
DecalDrawScreenSpaceSystem_t6851B844B1C2A2DEF28F0D4AE9BDB03C86BCB69E* L_21 = L_20->___drawSystem;
|
|
DecalDrawScreenSpaceSystem_t6851B844B1C2A2DEF28F0D4AE9BDB03C86BCB69E* L_22 = L_21;
|
|
if (L_22)
|
|
{
|
|
G_B4_0 = L_22;
|
|
goto IL_007c;
|
|
}
|
|
G_B3_0 = L_22;
|
|
}
|
|
{
|
|
goto IL_0082;
|
|
}
|
|
|
|
IL_007c:
|
|
{
|
|
RasterCommandBuffer_t4300C4F080EA3CF43C7ACFDBD4F94EA633FE98E8* L_23 = ___0_cmd;
|
|
NullCheck(G_B4_0);
|
|
DecalDrawSystem_Execute_mF71C2FD9B2D2D46D509C8D480ABA3D990211E6B8(G_B4_0, L_23, NULL);
|
|
}
|
|
|
|
IL_0082:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/ScreenSpace/DecalScreenSpaceRenderPass.cs:104>
|
|
RasterCommandBuffer_t4300C4F080EA3CF43C7ACFDBD4F94EA633FE98E8* L_24 = ___0_cmd;
|
|
RendererList_t608CE60421616EF4211F5B8AC62E3C36D4BDDF85 L_25 = ___2_rendererList;
|
|
NullCheck(L_24);
|
|
RasterCommandBuffer_DrawRendererList_m6C50C4A5E4CABE3542317969BC91F552B41A427F(L_24, L_25, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/ScreenSpace/DecalScreenSpaceRenderPass.cs:105>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 33249
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DecalScreenSpaceRenderPass_RecordRenderGraph_m9465932579A5356777BBCE89627AF02886CA992A (DecalScreenSpaceRenderPass_tA23A972765D97DFA9A20665DD1D4E3F4DF339016* __this, RenderGraph_t73ECE03B3CA3D0D17F1448D64AE020E81592AA1E* ___0_renderGraph, ContextContainer_t384E08F63FABEFF6A7F1A753F5EF02699DAD414C* ___1_frameData, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&BaseRenderFunc_2_tC164CC802D091B68B6A0497F4C6AEF80D564AB57_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ContextContainer_Get_TisUniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7_mE62F7903614384541B770CC0B9A99BD2E608A0F8_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ContextContainer_Get_TisUniversalLightData_tCFFFAB4033CD97BE9F339F0C90BB7F98C06FFBA2_m7D529C251F384985900DEA334BC399BAD36BFC8F_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ContextContainer_Get_TisUniversalRenderingData_t045D13A1E051DF623B170223B7CBF1161DDA94E6_m71849CEFB9C023EDE026A0F38CE6044274505C06_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ContextContainer_Get_TisUniversalResourceData_t1F1DE4101BE122578EAA5E4750D00ACAF1042626_m1CAD9250ED48A65B3DE774336F9221928EB054B4_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IBaseRenderGraphBuilder_tFFF84F72F862F1BE246A789AB6A59F959B490F3D_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IRasterRenderGraphBuilder_SetRenderFunc_TisPassData_tE8DFD4099E5A523D2AA3761A4B9CE793D50AA5F6_mA6E37DAB9026BC403FCF9FB24A7E84911BC642D7_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IRasterRenderGraphBuilder_t607F94718848D836CFEEF0DE553E4A79CABD9372_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RenderGraph_AddRasterRenderPass_TisPassData_tE8DFD4099E5A523D2AA3761A4B9CE793D50AA5F6_m8DC459169A454257F35AA0E777111DE92BB64140_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TextureHandle_t680ABA3F8B50859351BA5DD66220084F87F37388_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec_U3CRecordRenderGraphU3Eb__12_0_m8D2BDC9EEECBCE8EB1CDEFF84EF5CBA5DDDCAA0B_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec_t15B0AFDB480CE815F26375C7F569551639E65A2B_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralFA6E8DFCF5EDAAA00F3C1355246ABB80846E88DE);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
UniversalResourceData_t1F1DE4101BE122578EAA5E4750D00ACAF1042626* V_0 = NULL;
|
|
TextureHandle_t680ABA3F8B50859351BA5DD66220084F87F37388 V_1;
|
|
memset((&V_1), 0, sizeof(V_1));
|
|
RuntimeObject* V_2 = NULL;
|
|
PassData_tE8DFD4099E5A523D2AA3761A4B9CE793D50AA5F6* V_3 = NULL;
|
|
UniversalRenderingData_t045D13A1E051DF623B170223B7CBF1161DDA94E6* V_4 = NULL;
|
|
UniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7* V_5 = NULL;
|
|
UniversalLightData_tCFFFAB4033CD97BE9F339F0C90BB7F98C06FFBA2* V_6 = NULL;
|
|
RendererListParams_t13F72282BCE2DC255747FE7694C6BBC3377944B1 V_7;
|
|
memset((&V_7), 0, sizeof(V_7));
|
|
BaseRenderFunc_2_tC164CC802D091B68B6A0497F4C6AEF80D564AB57* G_B5_0 = NULL;
|
|
RuntimeObject* G_B5_1 = NULL;
|
|
BaseRenderFunc_2_tC164CC802D091B68B6A0497F4C6AEF80D564AB57* G_B4_0 = NULL;
|
|
RuntimeObject* G_B4_1 = NULL;
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/ScreenSpace/DecalScreenSpaceRenderPass.cs:109>
|
|
ContextContainer_t384E08F63FABEFF6A7F1A753F5EF02699DAD414C* L_0 = ___1_frameData;
|
|
NullCheck(L_0);
|
|
UniversalResourceData_t1F1DE4101BE122578EAA5E4750D00ACAF1042626* L_1;
|
|
L_1 = ContextContainer_Get_TisUniversalResourceData_t1F1DE4101BE122578EAA5E4750D00ACAF1042626_m1CAD9250ED48A65B3DE774336F9221928EB054B4_inline(L_0, ContextContainer_Get_TisUniversalResourceData_t1F1DE4101BE122578EAA5E4750D00ACAF1042626_m1CAD9250ED48A65B3DE774336F9221928EB054B4_RuntimeMethod_var);
|
|
V_0 = L_1;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/ScreenSpace/DecalScreenSpaceRenderPass.cs:111>
|
|
UniversalResourceData_t1F1DE4101BE122578EAA5E4750D00ACAF1042626* L_2 = V_0;
|
|
NullCheck(L_2);
|
|
TextureHandle_t680ABA3F8B50859351BA5DD66220084F87F37388 L_3;
|
|
L_3 = UniversalResourceData_get_cameraDepthTexture_m0823722AD418FDA57ECDC5EBDF79842DA3ED33A4(L_2, NULL);
|
|
V_1 = L_3;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/ScreenSpace/DecalScreenSpaceRenderPass.cs:113>
|
|
RenderGraph_t73ECE03B3CA3D0D17F1448D64AE020E81592AA1E* L_4 = ___0_renderGraph;
|
|
String_t* L_5;
|
|
L_5 = ScriptableRenderPass_get_passName_m838292A44DB6ED7D67E43C1DE58383959B4F1925_inline(__this, NULL);
|
|
ProfilingSampler_t420D4672EDB44E0EF980B31ADFD9E5747200FECE* L_6;
|
|
L_6 = ScriptableRenderPass_get_profilingSampler_m627C9BF8A4A08101DCB6F40E0A97145A5A1CDA38(__this, NULL);
|
|
NullCheck(L_4);
|
|
RuntimeObject* L_7;
|
|
L_7 = RenderGraph_AddRasterRenderPass_TisPassData_tE8DFD4099E5A523D2AA3761A4B9CE793D50AA5F6_m8DC459169A454257F35AA0E777111DE92BB64140(L_4, L_5, (&V_3), L_6, _stringLiteralFA6E8DFCF5EDAAA00F3C1355246ABB80846E88DE, ((int32_t)113), RenderGraph_AddRasterRenderPass_TisPassData_tE8DFD4099E5A523D2AA3761A4B9CE793D50AA5F6_m8DC459169A454257F35AA0E777111DE92BB64140_RuntimeMethod_var);
|
|
V_2 = L_7;
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_00df:
|
|
{
|
|
{
|
|
RuntimeObject* L_8 = V_2;
|
|
if (!L_8)
|
|
{
|
|
goto IL_00e8;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_9 = V_2;
|
|
NullCheck(L_9);
|
|
InterfaceActionInvoker0::Invoke(0, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, L_9);
|
|
}
|
|
|
|
IL_00e8:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
});
|
|
try
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/ScreenSpace/DecalScreenSpaceRenderPass.cs:115>
|
|
ContextContainer_t384E08F63FABEFF6A7F1A753F5EF02699DAD414C* L_10 = ___1_frameData;
|
|
NullCheck(L_10);
|
|
UniversalRenderingData_t045D13A1E051DF623B170223B7CBF1161DDA94E6* L_11;
|
|
L_11 = ContextContainer_Get_TisUniversalRenderingData_t045D13A1E051DF623B170223B7CBF1161DDA94E6_m71849CEFB9C023EDE026A0F38CE6044274505C06_inline(L_10, ContextContainer_Get_TisUniversalRenderingData_t045D13A1E051DF623B170223B7CBF1161DDA94E6_m71849CEFB9C023EDE026A0F38CE6044274505C06_RuntimeMethod_var);
|
|
V_4 = L_11;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/ScreenSpace/DecalScreenSpaceRenderPass.cs:116>
|
|
ContextContainer_t384E08F63FABEFF6A7F1A753F5EF02699DAD414C* L_12 = ___1_frameData;
|
|
NullCheck(L_12);
|
|
UniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7* L_13;
|
|
L_13 = ContextContainer_Get_TisUniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7_mE62F7903614384541B770CC0B9A99BD2E608A0F8_inline(L_12, ContextContainer_Get_TisUniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7_mE62F7903614384541B770CC0B9A99BD2E608A0F8_RuntimeMethod_var);
|
|
V_5 = L_13;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/ScreenSpace/DecalScreenSpaceRenderPass.cs:117>
|
|
ContextContainer_t384E08F63FABEFF6A7F1A753F5EF02699DAD414C* L_14 = ___1_frameData;
|
|
NullCheck(L_14);
|
|
UniversalLightData_tCFFFAB4033CD97BE9F339F0C90BB7F98C06FFBA2* L_15;
|
|
L_15 = ContextContainer_Get_TisUniversalLightData_tCFFFAB4033CD97BE9F339F0C90BB7F98C06FFBA2_m7D529C251F384985900DEA334BC399BAD36BFC8F_inline(L_14, ContextContainer_Get_TisUniversalLightData_tCFFFAB4033CD97BE9F339F0C90BB7F98C06FFBA2_m7D529C251F384985900DEA334BC399BAD36BFC8F_RuntimeMethod_var);
|
|
V_6 = L_15;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/ScreenSpace/DecalScreenSpaceRenderPass.cs:119>
|
|
UniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7* L_16 = V_5;
|
|
DecalScreenSpaceRenderPass_InitPassData_m152AB18218A94C04236550A797803B4AF806A6A3(__this, L_16, (&V_3), NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/ScreenSpace/DecalScreenSpaceRenderPass.cs:120>
|
|
PassData_tE8DFD4099E5A523D2AA3761A4B9CE793D50AA5F6* L_17 = V_3;
|
|
UniversalResourceData_t1F1DE4101BE122578EAA5E4750D00ACAF1042626* L_18 = V_0;
|
|
NullCheck(L_18);
|
|
TextureHandle_t680ABA3F8B50859351BA5DD66220084F87F37388 L_19;
|
|
L_19 = UniversalResourceData_get_cameraColor_mED6D8FE90EA44FF9D9975D24B29230B180C77CFC(L_18, NULL);
|
|
NullCheck(L_17);
|
|
L_17->___colorTarget = L_19;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/ScreenSpace/DecalScreenSpaceRenderPass.cs:121>
|
|
RuntimeObject* L_20 = V_2;
|
|
UniversalResourceData_t1F1DE4101BE122578EAA5E4750D00ACAF1042626* L_21 = V_0;
|
|
NullCheck(L_21);
|
|
TextureHandle_t680ABA3F8B50859351BA5DD66220084F87F37388 L_22;
|
|
L_22 = UniversalResourceData_get_activeColorTexture_m1B7A0CE5B0282F05AEAE46AC7B45478199DF9188(L_21, NULL);
|
|
NullCheck(L_20);
|
|
InterfaceActionInvoker3< TextureHandle_t680ABA3F8B50859351BA5DD66220084F87F37388, int32_t, int32_t >::Invoke(0, IRasterRenderGraphBuilder_t607F94718848D836CFEEF0DE553E4A79CABD9372_il2cpp_TypeInfo_var, L_20, L_22, 0, 2);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/ScreenSpace/DecalScreenSpaceRenderPass.cs:122>
|
|
RuntimeObject* L_23 = V_2;
|
|
UniversalResourceData_t1F1DE4101BE122578EAA5E4750D00ACAF1042626* L_24 = V_0;
|
|
NullCheck(L_24);
|
|
TextureHandle_t680ABA3F8B50859351BA5DD66220084F87F37388 L_25;
|
|
L_25 = UniversalResourceData_get_activeDepthTexture_mCE3930EAEF20F80A0EA1F4CE423E6E406E25F296(L_24, NULL);
|
|
NullCheck(L_23);
|
|
InterfaceActionInvoker2< TextureHandle_t680ABA3F8B50859351BA5DD66220084F87F37388, int32_t >::Invoke(4, IRasterRenderGraphBuilder_t607F94718848D836CFEEF0DE553E4A79CABD9372_il2cpp_TypeInfo_var, L_23, L_25, 1);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/ScreenSpace/DecalScreenSpaceRenderPass.cs:125>
|
|
UniversalRenderingData_t045D13A1E051DF623B170223B7CBF1161DDA94E6* L_26 = V_4;
|
|
PassData_tE8DFD4099E5A523D2AA3761A4B9CE793D50AA5F6* L_27 = V_3;
|
|
NullCheck(L_27);
|
|
UniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7* L_28 = L_27->___cameraData;
|
|
UniversalLightData_tCFFFAB4033CD97BE9F339F0C90BB7F98C06FFBA2* L_29 = V_6;
|
|
RendererListParams_t13F72282BCE2DC255747FE7694C6BBC3377944B1 L_30;
|
|
L_30 = DecalScreenSpaceRenderPass_CreateRenderListParams_m31FDD069D4D2097D56355AA76861C3D3CBDB4549(__this, L_26, L_28, L_29, NULL);
|
|
V_7 = L_30;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/ScreenSpace/DecalScreenSpaceRenderPass.cs:126>
|
|
PassData_tE8DFD4099E5A523D2AA3761A4B9CE793D50AA5F6* L_31 = V_3;
|
|
RenderGraph_t73ECE03B3CA3D0D17F1448D64AE020E81592AA1E* L_32 = ___0_renderGraph;
|
|
NullCheck(L_32);
|
|
RendererListHandle_t2DFC72A560B979AE0BAFBABBD8B9AF5DC1FEFEBA L_33;
|
|
L_33 = RenderGraph_CreateRendererList_m7A5DCFC7F4A8A38BB0FC4E41BAE77FD5590B4F42(L_32, (&V_7), NULL);
|
|
NullCheck(L_31);
|
|
L_31->___rendererList = L_33;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/ScreenSpace/DecalScreenSpaceRenderPass.cs:127>
|
|
RuntimeObject* L_34 = V_2;
|
|
PassData_tE8DFD4099E5A523D2AA3761A4B9CE793D50AA5F6* L_35 = V_3;
|
|
NullCheck(L_35);
|
|
RendererListHandle_t2DFC72A560B979AE0BAFBABBD8B9AF5DC1FEFEBA* L_36 = (RendererListHandle_t2DFC72A560B979AE0BAFBABBD8B9AF5DC1FEFEBA*)(&L_35->___rendererList);
|
|
NullCheck(L_34);
|
|
InterfaceActionInvoker1< RendererListHandle_t2DFC72A560B979AE0BAFBABBD8B9AF5DC1FEFEBA* >::Invoke(9, IBaseRenderGraphBuilder_tFFF84F72F862F1BE246A789AB6A59F959B490F3D_il2cpp_TypeInfo_var, L_34, L_36);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/ScreenSpace/DecalScreenSpaceRenderPass.cs:129>
|
|
il2cpp_codegen_runtime_class_init_inline(TextureHandle_t680ABA3F8B50859351BA5DD66220084F87F37388_il2cpp_TypeInfo_var);
|
|
bool L_37;
|
|
L_37 = TextureHandle_IsValid_mECFF64B8BAC6402F0D37B67BB79FFB3AB3C7F3C2_inline((&V_1), NULL);
|
|
if (!L_37)
|
|
{
|
|
goto IL_00b1_1;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/ScreenSpace/DecalScreenSpaceRenderPass.cs:130>
|
|
RuntimeObject* L_38 = V_2;
|
|
NullCheck(L_38);
|
|
InterfaceActionInvoker2< TextureHandle_t680ABA3F8B50859351BA5DD66220084F87F37388*, int32_t >::Invoke(0, IBaseRenderGraphBuilder_tFFF84F72F862F1BE246A789AB6A59F959B490F3D_il2cpp_TypeInfo_var, L_38, (&V_1), 1);
|
|
}
|
|
|
|
IL_00b1_1:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/ScreenSpace/DecalScreenSpaceRenderPass.cs:132>
|
|
RuntimeObject* L_39 = V_2;
|
|
NullCheck(L_39);
|
|
InterfaceActionInvoker1< bool >::Invoke(12, IBaseRenderGraphBuilder_tFFF84F72F862F1BE246A789AB6A59F959B490F3D_il2cpp_TypeInfo_var, L_39, (bool)1);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/ScreenSpace/DecalScreenSpaceRenderPass.cs:134>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/ScreenSpace/DecalScreenSpaceRenderPass.cs:135>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/ScreenSpace/DecalScreenSpaceRenderPass.cs:136>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/ScreenSpace/DecalScreenSpaceRenderPass.cs:137>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/ScreenSpace/DecalScreenSpaceRenderPass.cs:138>
|
|
RuntimeObject* L_40 = V_2;
|
|
il2cpp_codegen_runtime_class_init_inline(U3CU3Ec_t15B0AFDB480CE815F26375C7F569551639E65A2B_il2cpp_TypeInfo_var);
|
|
BaseRenderFunc_2_tC164CC802D091B68B6A0497F4C6AEF80D564AB57* L_41 = ((U3CU3Ec_t15B0AFDB480CE815F26375C7F569551639E65A2B_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t15B0AFDB480CE815F26375C7F569551639E65A2B_il2cpp_TypeInfo_var))->___U3CU3E9__12_0;
|
|
BaseRenderFunc_2_tC164CC802D091B68B6A0497F4C6AEF80D564AB57* L_42 = L_41;
|
|
if (L_42)
|
|
{
|
|
G_B5_0 = L_42;
|
|
G_B5_1 = L_40;
|
|
goto IL_00d8_1;
|
|
}
|
|
G_B4_0 = L_42;
|
|
G_B4_1 = L_40;
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(U3CU3Ec_t15B0AFDB480CE815F26375C7F569551639E65A2B_il2cpp_TypeInfo_var);
|
|
U3CU3Ec_t15B0AFDB480CE815F26375C7F569551639E65A2B* L_43 = ((U3CU3Ec_t15B0AFDB480CE815F26375C7F569551639E65A2B_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t15B0AFDB480CE815F26375C7F569551639E65A2B_il2cpp_TypeInfo_var))->___U3CU3E9;
|
|
BaseRenderFunc_2_tC164CC802D091B68B6A0497F4C6AEF80D564AB57* L_44 = (BaseRenderFunc_2_tC164CC802D091B68B6A0497F4C6AEF80D564AB57*)il2cpp_codegen_object_new(BaseRenderFunc_2_tC164CC802D091B68B6A0497F4C6AEF80D564AB57_il2cpp_TypeInfo_var);
|
|
BaseRenderFunc_2__ctor_m0BFCC9AFAA12AEF51BEDEC807B8DF28F1B68F547(L_44, L_43, (intptr_t)((void*)U3CU3Ec_U3CRecordRenderGraphU3Eb__12_0_m8D2BDC9EEECBCE8EB1CDEFF84EF5CBA5DDDCAA0B_RuntimeMethod_var), NULL);
|
|
BaseRenderFunc_2_tC164CC802D091B68B6A0497F4C6AEF80D564AB57* L_45 = L_44;
|
|
((U3CU3Ec_t15B0AFDB480CE815F26375C7F569551639E65A2B_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t15B0AFDB480CE815F26375C7F569551639E65A2B_il2cpp_TypeInfo_var))->___U3CU3E9__12_0 = L_45;
|
|
Il2CppCodeGenWriteBarrier((void**)(&((U3CU3Ec_t15B0AFDB480CE815F26375C7F569551639E65A2B_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t15B0AFDB480CE815F26375C7F569551639E65A2B_il2cpp_TypeInfo_var))->___U3CU3E9__12_0), (void*)L_45);
|
|
G_B5_0 = L_45;
|
|
G_B5_1 = G_B4_1;
|
|
}
|
|
|
|
IL_00d8_1:
|
|
{
|
|
NullCheck(G_B5_1);
|
|
GenericInterfaceActionInvoker1< BaseRenderFunc_2_tC164CC802D091B68B6A0497F4C6AEF80D564AB57* >::Invoke(IRasterRenderGraphBuilder_SetRenderFunc_TisPassData_tE8DFD4099E5A523D2AA3761A4B9CE793D50AA5F6_mA6E37DAB9026BC403FCF9FB24A7E84911BC642D7_RuntimeMethod_var, G_B5_1, G_B5_0);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/ScreenSpace/DecalScreenSpaceRenderPass.cs:139>
|
|
goto IL_00e9;
|
|
}
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_00e9:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/ScreenSpace/DecalScreenSpaceRenderPass.cs:140>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 33250
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DecalScreenSpaceRenderPass_OnCameraCleanup_mB181D9DDBEF07D6FC9CEF13465925969A85ABAE1 (DecalScreenSpaceRenderPass_tA23A972765D97DFA9A20665DD1D4E3F4DF339016* __this, CommandBuffer_tB56007DC84EF56296C325EC32DD12AC1E3DC91F7* ___0_cmd, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ShaderGlobalKeywords_tCD2A8F654428E5D252204D24E379C6725E5A2C91_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/ScreenSpace/DecalScreenSpaceRenderPass.cs:144>
|
|
CommandBuffer_tB56007DC84EF56296C325EC32DD12AC1E3DC91F7* L_0 = ___0_cmd;
|
|
if (L_0)
|
|
{
|
|
goto IL_000e;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/ScreenSpace/DecalScreenSpaceRenderPass.cs:146>
|
|
ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129* L_1 = (ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129_il2cpp_TypeInfo_var)));
|
|
ArgumentNullException__ctor_m444AE141157E333844FC1A9500224C2F9FD24F4B(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral855FED6E03442FBB3AF914FFBFA9DA82813817A1)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&DecalScreenSpaceRenderPass_OnCameraCleanup_mB181D9DDBEF07D6FC9CEF13465925969A85ABAE1_RuntimeMethod_var)));
|
|
}
|
|
|
|
IL_000e:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/ScreenSpace/DecalScreenSpaceRenderPass.cs:149>
|
|
CommandBuffer_tB56007DC84EF56296C325EC32DD12AC1E3DC91F7* L_2 = ___0_cmd;
|
|
NullCheck(L_2);
|
|
CommandBuffer_SetKeyword_m21015D629787CEC4954ABA00F1211D2F957B2399(L_2, (&((ShaderGlobalKeywords_tCD2A8F654428E5D252204D24E379C6725E5A2C91_StaticFields*)il2cpp_codegen_static_fields_for(ShaderGlobalKeywords_tCD2A8F654428E5D252204D24E379C6725E5A2C91_il2cpp_TypeInfo_var))->___DecalNormalBlendLow), (bool)0, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/ScreenSpace/DecalScreenSpaceRenderPass.cs:150>
|
|
CommandBuffer_tB56007DC84EF56296C325EC32DD12AC1E3DC91F7* L_3 = ___0_cmd;
|
|
NullCheck(L_3);
|
|
CommandBuffer_SetKeyword_m21015D629787CEC4954ABA00F1211D2F957B2399(L_3, (&((ShaderGlobalKeywords_tCD2A8F654428E5D252204D24E379C6725E5A2C91_StaticFields*)il2cpp_codegen_static_fields_for(ShaderGlobalKeywords_tCD2A8F654428E5D252204D24E379C6725E5A2C91_il2cpp_TypeInfo_var))->___DecalNormalBlendMedium), (bool)0, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/ScreenSpace/DecalScreenSpaceRenderPass.cs:151>
|
|
CommandBuffer_tB56007DC84EF56296C325EC32DD12AC1E3DC91F7* L_4 = ___0_cmd;
|
|
NullCheck(L_4);
|
|
CommandBuffer_SetKeyword_m21015D629787CEC4954ABA00F1211D2F957B2399(L_4, (&((ShaderGlobalKeywords_tCD2A8F654428E5D252204D24E379C6725E5A2C91_StaticFields*)il2cpp_codegen_static_fields_for(ShaderGlobalKeywords_tCD2A8F654428E5D252204D24E379C6725E5A2C91_il2cpp_TypeInfo_var))->___DecalNormalBlendHigh), (bool)0, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/ScreenSpace/DecalScreenSpaceRenderPass.cs:152>
|
|
CommandBuffer_tB56007DC84EF56296C325EC32DD12AC1E3DC91F7* L_5 = ___0_cmd;
|
|
NullCheck(L_5);
|
|
CommandBuffer_SetKeyword_m21015D629787CEC4954ABA00F1211D2F957B2399(L_5, (&((ShaderGlobalKeywords_tCD2A8F654428E5D252204D24E379C6725E5A2C91_StaticFields*)il2cpp_codegen_static_fields_for(ShaderGlobalKeywords_tCD2A8F654428E5D252204D24E379C6725E5A2C91_il2cpp_TypeInfo_var))->___DecalLayers), (bool)0, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/ScreenSpace/DecalScreenSpaceRenderPass.cs:154>
|
|
return;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// Method Definition Index: 33251
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PassData__ctor_m29BA26D68AFB0E35149BE7F863ACE6949CE5D022 (PassData_tE8DFD4099E5A523D2AA3761A4B9CE793D50AA5F6* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
|
|
return;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// Method Definition Index: 33252
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__cctor_m205685307D13F72781CED7A5DFCD5EAFA747A98D (const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec_t15B0AFDB480CE815F26375C7F569551639E65A2B_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
U3CU3Ec_t15B0AFDB480CE815F26375C7F569551639E65A2B* L_0 = (U3CU3Ec_t15B0AFDB480CE815F26375C7F569551639E65A2B*)il2cpp_codegen_object_new(U3CU3Ec_t15B0AFDB480CE815F26375C7F569551639E65A2B_il2cpp_TypeInfo_var);
|
|
U3CU3Ec__ctor_m9D3D00CBCC4CEF5A314CB3CD100DD6543107F0CB(L_0, NULL);
|
|
((U3CU3Ec_t15B0AFDB480CE815F26375C7F569551639E65A2B_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t15B0AFDB480CE815F26375C7F569551639E65A2B_il2cpp_TypeInfo_var))->___U3CU3E9 = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&((U3CU3Ec_t15B0AFDB480CE815F26375C7F569551639E65A2B_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t15B0AFDB480CE815F26375C7F569551639E65A2B_il2cpp_TypeInfo_var))->___U3CU3E9), (void*)L_0);
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 33253
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__ctor_m9D3D00CBCC4CEF5A314CB3CD100DD6543107F0CB (U3CU3Ec_t15B0AFDB480CE815F26375C7F569551639E65A2B* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 33254
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec_U3CRecordRenderGraphU3Eb__12_0_m8D2BDC9EEECBCE8EB1CDEFF84EF5CBA5DDDCAA0B (U3CU3Ec_t15B0AFDB480CE815F26375C7F569551639E65A2B* __this, PassData_tE8DFD4099E5A523D2AA3761A4B9CE793D50AA5F6* ___0_data, RasterGraphContext_tC4D3E53FF7131476487751ACB0237D56C8327147 ___1_rgContext, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RenderingUtils_t4E40200449A82FA3A172A563C490DF11FADA2BE1_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TextureHandle_t680ABA3F8B50859351BA5DD66220084F87F37388_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/ScreenSpace/DecalScreenSpaceRenderPass.cs:136>
|
|
RasterGraphContext_tC4D3E53FF7131476487751ACB0237D56C8327147 L_0 = ___1_rgContext;
|
|
RasterCommandBuffer_t4300C4F080EA3CF43C7ACFDBD4F94EA633FE98E8* L_1 = L_0.___cmd;
|
|
PassData_tE8DFD4099E5A523D2AA3761A4B9CE793D50AA5F6* L_2 = ___0_data;
|
|
NullCheck(L_2);
|
|
UniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7** L_3 = (UniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7**)(&L_2->___cameraData);
|
|
PassData_tE8DFD4099E5A523D2AA3761A4B9CE793D50AA5F6* L_4 = ___0_data;
|
|
NullCheck(L_4);
|
|
TextureHandle_t680ABA3F8B50859351BA5DD66220084F87F37388 L_5 = L_4->___colorTarget;
|
|
il2cpp_codegen_runtime_class_init_inline(TextureHandle_t680ABA3F8B50859351BA5DD66220084F87F37388_il2cpp_TypeInfo_var);
|
|
RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B* L_6;
|
|
L_6 = TextureHandle_op_Implicit_m5B88526114B640AE422305CC950C0887E576CE25(L_5, NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(RenderingUtils_t4E40200449A82FA3A172A563C490DF11FADA2BE1_il2cpp_TypeInfo_var);
|
|
RenderingUtils_SetScaleBiasRt_m553EDC7467A3604FD35366A173F1EF8813B45FEE(L_1, L_3, L_6, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/ScreenSpace/DecalScreenSpaceRenderPass.cs:137>
|
|
RasterGraphContext_tC4D3E53FF7131476487751ACB0237D56C8327147 L_7 = ___1_rgContext;
|
|
RasterCommandBuffer_t4300C4F080EA3CF43C7ACFDBD4F94EA633FE98E8* L_8 = L_7.___cmd;
|
|
PassData_tE8DFD4099E5A523D2AA3761A4B9CE793D50AA5F6* L_9 = ___0_data;
|
|
PassData_tE8DFD4099E5A523D2AA3761A4B9CE793D50AA5F6* L_10 = ___0_data;
|
|
NullCheck(L_10);
|
|
RendererListHandle_t2DFC72A560B979AE0BAFBABBD8B9AF5DC1FEFEBA L_11 = L_10->___rendererList;
|
|
RendererList_t608CE60421616EF4211F5B8AC62E3C36D4BDDF85 L_12;
|
|
L_12 = RendererListHandle_op_Implicit_m23F3E49F9D97B0BABE1044E02A7A70784F05C585(L_11, NULL);
|
|
DecalScreenSpaceRenderPass_ExecutePass_m2989BD2B5F45D64DC5938018759B4D0F75A1205C(L_8, L_9, L_12, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/ScreenSpace/DecalScreenSpaceRenderPass.cs:138>
|
|
return;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// Method Definition Index: 33255
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ScriptableRenderPass_FrameCleanup_m9DA9FA0F49BBA3C1BD6589F076FD5CCF917A8092 (ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* __this, CommandBuffer_tB56007DC84EF56296C325EC32DD12AC1E3DC91F7* ___0_cmd, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Deprecated.cs:19>
|
|
CommandBuffer_tB56007DC84EF56296C325EC32DD12AC1E3DC91F7* L_0 = ___0_cmd;
|
|
VirtualActionInvoker1< CommandBuffer_tB56007DC84EF56296C325EC32DD12AC1E3DC91F7* >::Invoke(8, __this, L_0);
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 33256
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ScriptableRenderPass_get_renderPassEvent_mD7ED1EFBF050FE1F86D598FA9A1A987CFEAD1AEE (ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Passes/ScriptableRenderPass.cs:216>
|
|
int32_t L_0 = __this->___U3CrenderPassEventU3Ek__BackingField;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 33257
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ScriptableRenderPass_set_renderPassEvent_m63FA581FFDE1C69C2E1358BD0B8DB30275334960 (ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* __this, int32_t ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Passes/ScriptableRenderPass.cs:216>
|
|
int32_t L_0 = ___0_value;
|
|
__this->___U3CrenderPassEventU3Ek__BackingField = L_0;
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 33258
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RenderTargetIdentifierU5BU5D_t179798C153B7CE381B41C57863F98CB24023C4CE* ScriptableRenderPass_get_colorAttachments_m750642276649E4B68F7D0951E3B08F99755C9D5C (ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Passes/ScriptableRenderPass.cs:223>
|
|
NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A* L_0 = (NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A_il2cpp_TypeInfo_var)));
|
|
NotSupportedException__ctor_mE174750CF0247BBB47544FFD71D66BB89630945B(L_0, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral3D2A612A58708E32F4B88A76C6B4A0CF0E202222)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ScriptableRenderPass_get_colorAttachments_m750642276649E4B68F7D0951E3B08F99755C9D5C_RuntimeMethod_var)));
|
|
}
|
|
}
|
|
// Method Definition Index: 33259
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RenderTargetIdentifierU5BU5D_t179798C153B7CE381B41C57863F98CB24023C4CE* ScriptableRenderPass_get_colorAttachment_mBE729A244C6389C581A6DB4C6742CC9D6E29C059 (ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Passes/ScriptableRenderPass.cs:230>
|
|
NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A* L_0 = (NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A_il2cpp_TypeInfo_var)));
|
|
NotSupportedException__ctor_mE174750CF0247BBB47544FFD71D66BB89630945B(L_0, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralA2CABF6B75078412D311586DD1DDAF2D06F0DCFE)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ScriptableRenderPass_get_colorAttachment_mBE729A244C6389C581A6DB4C6742CC9D6E29C059_RuntimeMethod_var)));
|
|
}
|
|
}
|
|
// Method Definition Index: 33260
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RenderTargetIdentifier_tA528663AC6EB3911D8E91AA40F7070FA5455442B ScriptableRenderPass_get_depthAttachment_m22B1F7DFC6D96D1419EBA02D9EB06D61D9E997A6 (ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* __this, const RuntimeMethod* method)
|
|
{
|
|
RenderTargetIdentifier_tA528663AC6EB3911D8E91AA40F7070FA5455442B V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Passes/ScriptableRenderPass.cs:237>
|
|
NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A* L_0 = (NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A_il2cpp_TypeInfo_var)));
|
|
NotSupportedException__ctor_mE174750CF0247BBB47544FFD71D66BB89630945B(L_0, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral5229F711FECB77FB370DADF3B1FC2B1542162AFC)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ScriptableRenderPass_get_depthAttachment_m22B1F7DFC6D96D1419EBA02D9EB06D61D9E997A6_RuntimeMethod_var)));
|
|
}
|
|
}
|
|
// Method Definition Index: 33261
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RTHandleU5BU5D_tE4B403B060D159B839BF74E8B59F8DCD52CF97DF* ScriptableRenderPass_get_colorAttachmentHandles_m52C72D6C6F0E7A66FE8FEC5ECFDDE5407FBF8897 (ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Passes/ScriptableRenderPass.cs:242>
|
|
RTHandleU5BU5D_tE4B403B060D159B839BF74E8B59F8DCD52CF97DF* L_0 = __this->___m_ColorAttachments;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 33262
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B* ScriptableRenderPass_get_colorAttachmentHandle_m9F25A09AF063ECC69EBDF7680D11FA1E5D38AC7A (ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Passes/ScriptableRenderPass.cs:247>
|
|
RTHandleU5BU5D_tE4B403B060D159B839BF74E8B59F8DCD52CF97DF* L_0 = __this->___m_ColorAttachments;
|
|
NullCheck(L_0);
|
|
int32_t L_1 = 0;
|
|
RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B* L_2 = (L_0)->GetAt(static_cast<il2cpp_array_size_t>(L_1));
|
|
return L_2;
|
|
}
|
|
}
|
|
// Method Definition Index: 33263
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B* ScriptableRenderPass_get_depthAttachmentHandle_m3AA7953B201494DEF4FD2061660B94663EF63465 (ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Passes/ScriptableRenderPass.cs:252>
|
|
RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B* L_0 = __this->___m_DepthAttachment;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 33264
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RenderBufferStoreActionU5BU5D_tFEA8F5DD460573EA9F35FBEC5727D1804C5DCBF5* ScriptableRenderPass_get_colorStoreActions_m8512840B6D3802C9C09D357894358BAF8FE907D7 (ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Passes/ScriptableRenderPass.cs:257>
|
|
RenderBufferStoreActionU5BU5D_tFEA8F5DD460573EA9F35FBEC5727D1804C5DCBF5* L_0 = __this->___m_ColorStoreActions;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 33265
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ScriptableRenderPass_get_depthStoreAction_m3DCEBE1FEEE5ABD1AF0EC3656296E08C56704845 (ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Passes/ScriptableRenderPass.cs:262>
|
|
int32_t L_0 = __this->___m_DepthStoreAction;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 33266
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* ScriptableRenderPass_get_overriddenColorStoreActions_m7C286926155F30C6B51B97A3B494343597077A93 (ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Passes/ScriptableRenderPass.cs:264>
|
|
BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* L_0 = __this->___m_OverriddenColorStoreActions;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 33267
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ScriptableRenderPass_get_overriddenDepthStoreAction_m057C906C81594CF263C433DBC279F6C61FD45D19 (ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Passes/ScriptableRenderPass.cs:266>
|
|
bool L_0 = __this->___m_OverriddenDepthStoreAction;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 33268
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ScriptableRenderPass_get_input_mE5213812C63FCA94FEB41F7505F03CBF95363BE5 (ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Passes/ScriptableRenderPass.cs:272>
|
|
int32_t L_0 = __this->___m_Input;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 33269
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ScriptableRenderPass_get_clearFlag_m74FAFCDC3CD75DC4201B398DFD25E028D7D800DB (ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Passes/ScriptableRenderPass.cs:278>
|
|
int32_t L_0 = __this->___m_ClearFlag;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 33270
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Color_tD001788D726C3A7F1379BEED0260B9591F440C1F ScriptableRenderPass_get_clearColor_mAEC581D756087BF3617FE243D569717FBC2E5DB1 (ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Passes/ScriptableRenderPass.cs:283>
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F L_0 = __this->___m_ClearColor;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 33271
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ScriptableRenderPass_get_requiresIntermediateTexture_m18B18B1A947A035EE346EEEB7E0355CFFB63B012 (ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Passes/ScriptableRenderPass.cs:291>
|
|
bool L_0 = __this->___U3CrequiresIntermediateTextureU3Ek__BackingField;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 33272
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ScriptableRenderPass_set_requiresIntermediateTexture_m148E04B5EED5457E979C6EFAA710E683A56FDF8E (ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* __this, bool ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Passes/ScriptableRenderPass.cs:291>
|
|
bool L_0 = ___0_value;
|
|
__this->___U3CrequiresIntermediateTextureU3Ek__BackingField = L_0;
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 33273
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ProfilingSampler_t420D4672EDB44E0EF980B31ADFD9E5747200FECE* ScriptableRenderPass_get_profilingSampler_m627C9BF8A4A08101DCB6F40E0A97145A5A1CDA38 (ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&GraphicsSettings_GetRenderPipelineSettings_TisRenderGraphSettings_tC3A05CA5C042545DB58E32841FF2FEA9E260A130_m056A6DF99F51AC9AF02BB64BE4677C83E02946F7_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&GraphicsSettings_t01785CE5CB5C5105CB527619AF4D74BEF417EF1A_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Passes/ScriptableRenderPass.cs:313>
|
|
RenderGraphSettings_tC3A05CA5C042545DB58E32841FF2FEA9E260A130* L_0 = __this->___m_RenderGraphSettings;
|
|
if (L_0)
|
|
{
|
|
goto IL_0013;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Passes/ScriptableRenderPass.cs:315>
|
|
il2cpp_codegen_runtime_class_init_inline(GraphicsSettings_t01785CE5CB5C5105CB527619AF4D74BEF417EF1A_il2cpp_TypeInfo_var);
|
|
RenderGraphSettings_tC3A05CA5C042545DB58E32841FF2FEA9E260A130* L_1;
|
|
L_1 = GraphicsSettings_GetRenderPipelineSettings_TisRenderGraphSettings_tC3A05CA5C042545DB58E32841FF2FEA9E260A130_m056A6DF99F51AC9AF02BB64BE4677C83E02946F7(GraphicsSettings_GetRenderPipelineSettings_TisRenderGraphSettings_tC3A05CA5C042545DB58E32841FF2FEA9E260A130_m056A6DF99F51AC9AF02BB64BE4677C83E02946F7_RuntimeMethod_var);
|
|
__this->___m_RenderGraphSettings = L_1;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_RenderGraphSettings), (void*)L_1);
|
|
}
|
|
|
|
IL_0013:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Passes/ScriptableRenderPass.cs:322>
|
|
RenderGraphSettings_tC3A05CA5C042545DB58E32841FF2FEA9E260A130* L_2 = __this->___m_RenderGraphSettings;
|
|
NullCheck(L_2);
|
|
bool L_3;
|
|
L_3 = RenderGraphSettings_get_enableRenderCompatibilityMode_mF6C49F988080B5096D3FC5870B456442DB0869DB(L_2, NULL);
|
|
if (L_3)
|
|
{
|
|
goto IL_0022;
|
|
}
|
|
}
|
|
{
|
|
return (ProfilingSampler_t420D4672EDB44E0EF980B31ADFD9E5747200FECE*)NULL;
|
|
}
|
|
|
|
IL_0022:
|
|
{
|
|
ProfilingSampler_t420D4672EDB44E0EF980B31ADFD9E5747200FECE* L_4 = __this->___m_ProfingSampler;
|
|
return L_4;
|
|
}
|
|
}
|
|
// Method Definition Index: 33274
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ScriptableRenderPass_set_profilingSampler_mFD238B85B68DED586BA8C678141BEEAF229FBF2D (ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* __this, ProfilingSampler_t420D4672EDB44E0EF980B31ADFD9E5747200FECE* ___0_value, const RuntimeMethod* method)
|
|
{
|
|
ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* G_B2_0 = NULL;
|
|
ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* G_B1_0 = NULL;
|
|
String_t* G_B3_0 = NULL;
|
|
ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* G_B3_1 = NULL;
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Passes/ScriptableRenderPass.cs:327>
|
|
ProfilingSampler_t420D4672EDB44E0EF980B31ADFD9E5747200FECE* L_0 = ___0_value;
|
|
__this->___m_ProfingSampler = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_ProfingSampler), (void*)L_0);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Passes/ScriptableRenderPass.cs:328>
|
|
ProfilingSampler_t420D4672EDB44E0EF980B31ADFD9E5747200FECE* L_1 = ___0_value;
|
|
if (L_1)
|
|
{
|
|
G_B2_0 = __this;
|
|
goto IL_0018;
|
|
}
|
|
G_B1_0 = __this;
|
|
}
|
|
{
|
|
Type_t* L_2;
|
|
L_2 = Object_GetType_mE10A8FC1E57F3DF29972CCBC026C2DC3942263B3(__this, NULL);
|
|
NullCheck(L_2);
|
|
String_t* L_3;
|
|
L_3 = VirtualFuncInvoker0< String_t* >::Invoke(7, L_2);
|
|
G_B3_0 = L_3;
|
|
G_B3_1 = G_B1_0;
|
|
goto IL_001e;
|
|
}
|
|
|
|
IL_0018:
|
|
{
|
|
ProfilingSampler_t420D4672EDB44E0EF980B31ADFD9E5747200FECE* L_4 = ___0_value;
|
|
NullCheck(L_4);
|
|
String_t* L_5;
|
|
L_5 = ProfilingSampler_get_name_mF1C3E7B9540171DD93186A4DFEF33CE331E92D79_inline(L_4, NULL);
|
|
G_B3_0 = L_5;
|
|
G_B3_1 = G_B2_0;
|
|
}
|
|
|
|
IL_001e:
|
|
{
|
|
NullCheck(G_B3_1);
|
|
G_B3_1->___m_PassName = G_B3_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&G_B3_1->___m_PassName), (void*)G_B3_0);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Passes/ScriptableRenderPass.cs:329>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 33275
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* ScriptableRenderPass_get_passName_m838292A44DB6ED7D67E43C1DE58383959B4F1925 (ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Passes/ScriptableRenderPass.cs:337>
|
|
String_t* L_0 = __this->___m_PassName;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 33276
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ScriptableRenderPass_get_overrideCameraTarget_m343BA9235CD254354013E3CFD6EC519958597128 (ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Passes/ScriptableRenderPass.cs:339>
|
|
bool L_0 = __this->___U3CoverrideCameraTargetU3Ek__BackingField;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 33277
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ScriptableRenderPass_set_overrideCameraTarget_mC7A5FB7FB9D32C88226E81992DAD058174C99D95 (ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* __this, bool ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Passes/ScriptableRenderPass.cs:339>
|
|
bool L_0 = ___0_value;
|
|
__this->___U3CoverrideCameraTargetU3Ek__BackingField = L_0;
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 33278
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ScriptableRenderPass_get_isBlitRenderPass_m02021F22BC313FA37049DA63BE3CA360CEDA1349 (ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Passes/ScriptableRenderPass.cs:340>
|
|
bool L_0 = __this->___U3CisBlitRenderPassU3Ek__BackingField;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 33279
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ScriptableRenderPass_set_isBlitRenderPass_m563EACE500D80556F75FD1BB240C0BEBCA7933C3 (ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* __this, bool ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Passes/ScriptableRenderPass.cs:340>
|
|
bool L_0 = ___0_value;
|
|
__this->___U3CisBlitRenderPassU3Ek__BackingField = L_0;
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 33280
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ScriptableRenderPass_get_useNativeRenderPass_mB8008DC999D63A3EDBD066CF07F7A4824812E4E9 (ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Passes/ScriptableRenderPass.cs:342>
|
|
bool L_0 = __this->___U3CuseNativeRenderPassU3Ek__BackingField;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 33281
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ScriptableRenderPass_set_useNativeRenderPass_m1D60C30BB1CF1B4D383FFCABC1F57EA755626895 (ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* __this, bool ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Passes/ScriptableRenderPass.cs:342>
|
|
bool L_0 = ___0_value;
|
|
__this->___U3CuseNativeRenderPassU3Ek__BackingField = L_0;
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 33282
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ScriptableRenderPass_get_renderPassQueueIndex_mDA630CF31CA4371C2E4BE76B367C4A013C35AB85 (ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Passes/ScriptableRenderPass.cs:345>
|
|
int32_t L_0 = __this->___U3CrenderPassQueueIndexU3Ek__BackingField;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 33283
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ScriptableRenderPass_set_renderPassQueueIndex_m102EDED778C0A087DF2E7E1C91351EB99AD827FB (ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* __this, int32_t ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Passes/ScriptableRenderPass.cs:345>
|
|
int32_t L_0 = ___0_value;
|
|
__this->___U3CrenderPassQueueIndexU3Ek__BackingField = L_0;
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 33284
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR GraphicsFormatU5BU5D_tF6A3D90C430FA3F548B77E5D58D25D71F154E6C5* ScriptableRenderPass_get_renderTargetFormat_m7B211E4B10D23A760D3906426BA9C4562DF951CC (ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Passes/ScriptableRenderPass.cs:350>
|
|
GraphicsFormatU5BU5D_tF6A3D90C430FA3F548B77E5D58D25D71F154E6C5* L_0 = __this->___U3CrenderTargetFormatU3Ek__BackingField;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 33285
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ScriptableRenderPass_set_renderTargetFormat_m35B7A4F02CA819EA819D3A058E4A379EF498FA01 (ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* __this, GraphicsFormatU5BU5D_tF6A3D90C430FA3F548B77E5D58D25D71F154E6C5* ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Passes/ScriptableRenderPass.cs:350>
|
|
GraphicsFormatU5BU5D_tF6A3D90C430FA3F548B77E5D58D25D71F154E6C5* L_0 = ___0_value;
|
|
__this->___U3CrenderTargetFormatU3Ek__BackingField = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CrenderTargetFormatU3Ek__BackingField), (void*)L_0);
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 33286
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DebugHandler_t3A09E2CFD1CA6F5C192968A6FF19EE4863F44DA4* ScriptableRenderPass_GetActiveDebugHandler_m2787C3C1EEC1632A4E7E2A5C35C7D9216ACF4343 (UniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7* ___0_cameraData, const RuntimeMethod* method)
|
|
{
|
|
DebugHandler_t3A09E2CFD1CA6F5C192968A6FF19EE4863F44DA4* V_0 = NULL;
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Passes/ScriptableRenderPass.cs:363>
|
|
UniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7* L_0 = ___0_cameraData;
|
|
NullCheck(L_0);
|
|
ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892* L_1 = L_0->___renderer;
|
|
NullCheck(L_1);
|
|
DebugHandler_t3A09E2CFD1CA6F5C192968A6FF19EE4863F44DA4* L_2;
|
|
L_2 = ScriptableRenderer_get_DebugHandler_mF10EC7F8F42F5087507DCDB7CD21338F2766DD6F_inline(L_1, NULL);
|
|
V_0 = L_2;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Passes/ScriptableRenderPass.cs:364>
|
|
DebugHandler_t3A09E2CFD1CA6F5C192968A6FF19EE4863F44DA4* L_3 = V_0;
|
|
if (!L_3)
|
|
{
|
|
goto IL_001f;
|
|
}
|
|
}
|
|
{
|
|
DebugHandler_t3A09E2CFD1CA6F5C192968A6FF19EE4863F44DA4* L_4 = V_0;
|
|
UniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7* L_5 = ___0_cameraData;
|
|
NullCheck(L_5);
|
|
bool L_6;
|
|
L_6 = UniversalCameraData_get_isPreviewCamera_m805B3ED7E0D54B8054BFFD3166489E2B1B3BDC51(L_5, NULL);
|
|
NullCheck(L_4);
|
|
bool L_7;
|
|
L_7 = DebugHandler_IsActiveForCamera_mAAAF88FA94FF91A19A7CE1898EB0295997045077(L_4, L_6, NULL);
|
|
if (!L_7)
|
|
{
|
|
goto IL_001f;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Passes/ScriptableRenderPass.cs:365>
|
|
DebugHandler_t3A09E2CFD1CA6F5C192968A6FF19EE4863F44DA4* L_8 = V_0;
|
|
return L_8;
|
|
}
|
|
|
|
IL_001f:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Passes/ScriptableRenderPass.cs:366>
|
|
return (DebugHandler_t3A09E2CFD1CA6F5C192968A6FF19EE4863F44DA4*)NULL;
|
|
}
|
|
}
|
|
// Method Definition Index: 33287
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ScriptableRenderPass__ctor_mE49D4FF8E68A854367A4081E664B8DBA74E6B752 (ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&GraphicsFormatU5BU5D_tF6A3D90C430FA3F548B77E5D58D25D71F154E6C5_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ProfilingSampler_t420D4672EDB44E0EF980B31ADFD9E5747200FECE_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RTHandleU5BU5D_tE4B403B060D159B839BF74E8B59F8DCD52CF97DF_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RenderBufferStoreActionU5BU5D_tFEA8F5DD460573EA9F35FBEC5727D1804C5DCBF5_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Passes/ScriptableRenderPass.cs:285>
|
|
RenderBufferStoreActionU5BU5D_tFEA8F5DD460573EA9F35FBEC5727D1804C5DCBF5* L_0 = (RenderBufferStoreActionU5BU5D_tFEA8F5DD460573EA9F35FBEC5727D1804C5DCBF5*)(RenderBufferStoreActionU5BU5D_tFEA8F5DD460573EA9F35FBEC5727D1804C5DCBF5*)SZArrayNew(RenderBufferStoreActionU5BU5D_tFEA8F5DD460573EA9F35FBEC5727D1804C5DCBF5_il2cpp_TypeInfo_var, (uint32_t)1);
|
|
__this->___m_ColorStoreActions = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_ColorStoreActions), (void*)L_0);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Passes/ScriptableRenderPass.cs:295>
|
|
BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* L_1 = (BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4*)(BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4*)SZArrayNew(BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4_il2cpp_TypeInfo_var, (uint32_t)1);
|
|
__this->___m_OverriddenColorStoreActions = L_1;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_OverriddenColorStoreActions), (void*)L_1);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Passes/ScriptableRenderPass.cs:353>
|
|
RTHandleU5BU5D_tE4B403B060D159B839BF74E8B59F8DCD52CF97DF* L_2 = (RTHandleU5BU5D_tE4B403B060D159B839BF74E8B59F8DCD52CF97DF*)(RTHandleU5BU5D_tE4B403B060D159B839BF74E8B59F8DCD52CF97DF*)SZArrayNew(RTHandleU5BU5D_tE4B403B060D159B839BF74E8B59F8DCD52CF97DF_il2cpp_TypeInfo_var, (uint32_t)8);
|
|
__this->___m_InputAttachments = L_2;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_InputAttachments), (void*)L_2);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Passes/ScriptableRenderPass.cs:354>
|
|
BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* L_3 = (BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4*)(BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4*)SZArrayNew(BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4_il2cpp_TypeInfo_var, (uint32_t)8);
|
|
__this->___m_InputAttachmentIsTransient = L_3;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_InputAttachmentIsTransient), (void*)L_3);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Passes/ScriptableRenderPass.cs:359>
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F L_4;
|
|
L_4 = Color_get_black_mB50217951591A045844C61E7FF31EEE3FEF16737_inline(NULL);
|
|
__this->___m_ClearColor = L_4;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Passes/ScriptableRenderPass.cs:372>
|
|
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Passes/ScriptableRenderPass.cs:374>
|
|
ScriptableRenderPass_set_renderPassEvent_m63FA581FFDE1C69C2E1358BD0B8DB30275334960_inline(__this, ((int32_t)300), NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Passes/ScriptableRenderPass.cs:377>
|
|
RTHandleU5BU5D_tE4B403B060D159B839BF74E8B59F8DCD52CF97DF* L_5 = (RTHandleU5BU5D_tE4B403B060D159B839BF74E8B59F8DCD52CF97DF*)(RTHandleU5BU5D_tE4B403B060D159B839BF74E8B59F8DCD52CF97DF*)SZArrayNew(RTHandleU5BU5D_tE4B403B060D159B839BF74E8B59F8DCD52CF97DF_il2cpp_TypeInfo_var, (uint32_t)8);
|
|
RTHandleU5BU5D_tE4B403B060D159B839BF74E8B59F8DCD52CF97DF* L_6 = L_5;
|
|
il2cpp_codegen_runtime_class_init_inline(ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0_il2cpp_TypeInfo_var);
|
|
RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B* L_7 = ((ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0_StaticFields*)il2cpp_codegen_static_fields_for(ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0_il2cpp_TypeInfo_var))->___k_CameraTarget;
|
|
NullCheck(L_6);
|
|
ArrayElementTypeCheck (L_6, L_7);
|
|
(L_6)->SetAt(static_cast<il2cpp_array_size_t>(0), (RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B*)L_7);
|
|
__this->___m_ColorAttachments = L_6;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_ColorAttachments), (void*)L_6);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Passes/ScriptableRenderPass.cs:378>
|
|
RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B* L_8 = ((ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0_StaticFields*)il2cpp_codegen_static_fields_for(ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0_il2cpp_TypeInfo_var))->___k_CameraTarget;
|
|
__this->___m_DepthAttachment = L_8;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_DepthAttachment), (void*)L_8);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Passes/ScriptableRenderPass.cs:380>
|
|
RTHandleU5BU5D_tE4B403B060D159B839BF74E8B59F8DCD52CF97DF* L_9 = (RTHandleU5BU5D_tE4B403B060D159B839BF74E8B59F8DCD52CF97DF*)(RTHandleU5BU5D_tE4B403B060D159B839BF74E8B59F8DCD52CF97DF*)SZArrayNew(RTHandleU5BU5D_tE4B403B060D159B839BF74E8B59F8DCD52CF97DF_il2cpp_TypeInfo_var, (uint32_t)8);
|
|
__this->___m_InputAttachments = L_9;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_InputAttachments), (void*)L_9);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Passes/ScriptableRenderPass.cs:381>
|
|
BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* L_10 = (BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4*)(BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4*)SZArrayNew(BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4_il2cpp_TypeInfo_var, (uint32_t)8);
|
|
__this->___m_InputAttachmentIsTransient = L_10;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_InputAttachmentIsTransient), (void*)L_10);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Passes/ScriptableRenderPass.cs:382>
|
|
RenderBufferStoreActionU5BU5D_tFEA8F5DD460573EA9F35FBEC5727D1804C5DCBF5* L_11 = (RenderBufferStoreActionU5BU5D_tFEA8F5DD460573EA9F35FBEC5727D1804C5DCBF5*)(RenderBufferStoreActionU5BU5D_tFEA8F5DD460573EA9F35FBEC5727D1804C5DCBF5*)SZArrayNew(RenderBufferStoreActionU5BU5D_tFEA8F5DD460573EA9F35FBEC5727D1804C5DCBF5_il2cpp_TypeInfo_var, (uint32_t)8);
|
|
__this->___m_ColorStoreActions = L_11;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_ColorStoreActions), (void*)L_11);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Passes/ScriptableRenderPass.cs:383>
|
|
__this->___m_DepthStoreAction = 0;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Passes/ScriptableRenderPass.cs:384>
|
|
BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* L_12 = (BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4*)(BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4*)SZArrayNew(BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4_il2cpp_TypeInfo_var, (uint32_t)8);
|
|
__this->___m_OverriddenColorStoreActions = L_12;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_OverriddenColorStoreActions), (void*)L_12);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Passes/ScriptableRenderPass.cs:385>
|
|
__this->___m_OverriddenDepthStoreAction = (bool)0;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Passes/ScriptableRenderPass.cs:386>
|
|
__this->___m_ClearFlag = 0;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Passes/ScriptableRenderPass.cs:387>
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F L_13;
|
|
L_13 = Color_get_black_mB50217951591A045844C61E7FF31EEE3FEF16737_inline(NULL);
|
|
__this->___m_ClearColor = L_13;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Passes/ScriptableRenderPass.cs:388>
|
|
ScriptableRenderPass_set_overrideCameraTarget_mC7A5FB7FB9D32C88226E81992DAD058174C99D95_inline(__this, (bool)0, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Passes/ScriptableRenderPass.cs:389>
|
|
ScriptableRenderPass_set_isBlitRenderPass_m563EACE500D80556F75FD1BB240C0BEBCA7933C3_inline(__this, (bool)0, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Passes/ScriptableRenderPass.cs:390>
|
|
ScriptableRenderPass_set_useNativeRenderPass_m1D60C30BB1CF1B4D383FFCABC1F57EA755626895_inline(__this, (bool)1, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Passes/ScriptableRenderPass.cs:391>
|
|
ScriptableRenderPass_set_renderPassQueueIndex_m102EDED778C0A087DF2E7E1C91351EB99AD827FB_inline(__this, (-1), NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Passes/ScriptableRenderPass.cs:392>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Passes/ScriptableRenderPass.cs:393>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Passes/ScriptableRenderPass.cs:394>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Passes/ScriptableRenderPass.cs:395>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Passes/ScriptableRenderPass.cs:396>
|
|
GraphicsFormatU5BU5D_tF6A3D90C430FA3F548B77E5D58D25D71F154E6C5* L_14 = (GraphicsFormatU5BU5D_tF6A3D90C430FA3F548B77E5D58D25D71F154E6C5*)(GraphicsFormatU5BU5D_tF6A3D90C430FA3F548B77E5D58D25D71F154E6C5*)SZArrayNew(GraphicsFormatU5BU5D_tF6A3D90C430FA3F548B77E5D58D25D71F154E6C5_il2cpp_TypeInfo_var, (uint32_t)8);
|
|
ScriptableRenderPass_set_renderTargetFormat_m35B7A4F02CA819EA819D3A058E4A379EF498FA01_inline(__this, L_14, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Passes/ScriptableRenderPass.cs:398>
|
|
Type_t* L_15;
|
|
L_15 = Object_GetType_mE10A8FC1E57F3DF29972CCBC026C2DC3942263B3(__this, NULL);
|
|
NullCheck(L_15);
|
|
String_t* L_16;
|
|
L_16 = VirtualFuncInvoker0< String_t* >::Invoke(7, L_15);
|
|
ProfilingSampler_t420D4672EDB44E0EF980B31ADFD9E5747200FECE* L_17 = (ProfilingSampler_t420D4672EDB44E0EF980B31ADFD9E5747200FECE*)il2cpp_codegen_object_new(ProfilingSampler_t420D4672EDB44E0EF980B31ADFD9E5747200FECE_il2cpp_TypeInfo_var);
|
|
ProfilingSampler__ctor_m26500989FCDB07FA33C9A3BB7F215CBD892F5BB7(L_17, L_16, NULL);
|
|
ScriptableRenderPass_set_profilingSampler_mFD238B85B68DED586BA8C678141BEEAF229FBF2D(__this, L_17, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Passes/ScriptableRenderPass.cs:399>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 33288
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ScriptableRenderPass_ConfigureInput_m15D8C10FC37E33CD358F2E9665ECF5515CB9C687 (ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* __this, int32_t ___0_passInput, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Passes/ScriptableRenderPass.cs:409>
|
|
int32_t L_0 = ___0_passInput;
|
|
__this->___m_Input = L_0;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Passes/ScriptableRenderPass.cs:410>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 33289
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ScriptableRenderPass_ConfigureColorStoreAction_m72073E57F258E9ACD7DEDB8005F7A517C0BFC25E (ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* __this, int32_t ___0_storeAction, uint32_t ___1_attachmentIndex, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Passes/ScriptableRenderPass.cs:420>
|
|
RenderBufferStoreActionU5BU5D_tFEA8F5DD460573EA9F35FBEC5727D1804C5DCBF5* L_0 = __this->___m_ColorStoreActions;
|
|
uint32_t L_1 = ___1_attachmentIndex;
|
|
int32_t L_2 = ___0_storeAction;
|
|
NullCheck(L_0);
|
|
(L_0)->SetAt(static_cast<il2cpp_array_size_t>(L_1), (int32_t)L_2);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Passes/ScriptableRenderPass.cs:421>
|
|
BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* L_3 = __this->___m_OverriddenColorStoreActions;
|
|
uint32_t L_4 = ___1_attachmentIndex;
|
|
NullCheck(L_3);
|
|
(L_3)->SetAt(static_cast<il2cpp_array_size_t>(L_4), (bool)1);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Passes/ScriptableRenderPass.cs:422>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 33290
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ScriptableRenderPass_ConfigureColorStoreActions_m188E920BDEFCE022CC55E318810ABB1476C14E29 (ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* __this, RenderBufferStoreActionU5BU5D_tFEA8F5DD460573EA9F35FBEC5727D1804C5DCBF5* ___0_storeActions, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Math_tEB65DE7CA8B083C412C969C92981C030865486CE_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int32_t V_0 = 0;
|
|
uint32_t V_1 = 0;
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Passes/ScriptableRenderPass.cs:431>
|
|
RenderBufferStoreActionU5BU5D_tFEA8F5DD460573EA9F35FBEC5727D1804C5DCBF5* L_0 = ___0_storeActions;
|
|
NullCheck(L_0);
|
|
RenderBufferStoreActionU5BU5D_tFEA8F5DD460573EA9F35FBEC5727D1804C5DCBF5* L_1 = __this->___m_ColorStoreActions;
|
|
NullCheck(L_1);
|
|
il2cpp_codegen_runtime_class_init_inline(Math_tEB65DE7CA8B083C412C969C92981C030865486CE_il2cpp_TypeInfo_var);
|
|
int32_t L_2;
|
|
L_2 = Math_Min_m53C488772A34D53917BCA2A491E79A0A5356ED52(((int32_t)(((RuntimeArray*)L_0)->max_length)), ((int32_t)(((RuntimeArray*)L_1)->max_length)), NULL);
|
|
V_0 = L_2;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Passes/ScriptableRenderPass.cs:432>
|
|
V_1 = 0;
|
|
goto IL_002d;
|
|
}
|
|
|
|
IL_0015:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Passes/ScriptableRenderPass.cs:434>
|
|
RenderBufferStoreActionU5BU5D_tFEA8F5DD460573EA9F35FBEC5727D1804C5DCBF5* L_3 = __this->___m_ColorStoreActions;
|
|
uint32_t L_4 = V_1;
|
|
RenderBufferStoreActionU5BU5D_tFEA8F5DD460573EA9F35FBEC5727D1804C5DCBF5* L_5 = ___0_storeActions;
|
|
uint32_t L_6 = V_1;
|
|
NullCheck(L_5);
|
|
uint32_t L_7 = L_6;
|
|
int32_t L_8 = (int32_t)(L_5)->GetAt(static_cast<il2cpp_array_size_t>(L_7));
|
|
NullCheck(L_3);
|
|
(L_3)->SetAt(static_cast<il2cpp_array_size_t>(L_4), (int32_t)L_8);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Passes/ScriptableRenderPass.cs:435>
|
|
BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* L_9 = __this->___m_OverriddenColorStoreActions;
|
|
uint32_t L_10 = V_1;
|
|
NullCheck(L_9);
|
|
(L_9)->SetAt(static_cast<il2cpp_array_size_t>(L_10), (bool)1);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Passes/ScriptableRenderPass.cs:432>
|
|
uint32_t L_11 = V_1;
|
|
V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_11, 1));
|
|
}
|
|
|
|
IL_002d:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Passes/ScriptableRenderPass.cs:432>
|
|
uint32_t L_12 = V_1;
|
|
int32_t L_13 = V_0;
|
|
if ((((int64_t)((int64_t)(uint64_t)((uint32_t)L_12))) < ((int64_t)((int64_t)L_13))))
|
|
{
|
|
goto IL_0015;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Passes/ScriptableRenderPass.cs:437>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 33291
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ScriptableRenderPass_ConfigureDepthStoreAction_mBA71A6E08D2D350F52AAA85B99BD2C196D4D9427 (ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* __this, int32_t ___0_storeAction, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Passes/ScriptableRenderPass.cs:446>
|
|
int32_t L_0 = ___0_storeAction;
|
|
__this->___m_DepthStoreAction = L_0;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Passes/ScriptableRenderPass.cs:447>
|
|
__this->___m_OverriddenDepthStoreAction = (bool)1;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Passes/ScriptableRenderPass.cs:448>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 33292
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ScriptableRenderPass_ConfigureInputAttachments_m3737A9690F3EEC2FE3A544DE1EBF6A1758E1CA0A (ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* __this, RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B* ___0_input, bool ___1_isTransient, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Passes/ScriptableRenderPass.cs:453>
|
|
RTHandleU5BU5D_tE4B403B060D159B839BF74E8B59F8DCD52CF97DF* L_0 = __this->___m_InputAttachments;
|
|
RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B* L_1 = ___0_input;
|
|
NullCheck(L_0);
|
|
ArrayElementTypeCheck (L_0, L_1);
|
|
(L_0)->SetAt(static_cast<il2cpp_array_size_t>(0), (RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B*)L_1);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Passes/ScriptableRenderPass.cs:454>
|
|
BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* L_2 = __this->___m_InputAttachmentIsTransient;
|
|
bool L_3 = ___1_isTransient;
|
|
NullCheck(L_2);
|
|
(L_2)->SetAt(static_cast<il2cpp_array_size_t>(0), (bool)L_3);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Passes/ScriptableRenderPass.cs:455>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 33293
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ScriptableRenderPass_ConfigureInputAttachments_mEE7F33D93B15335CB7EA5FE8C34C9C76BD8CC805 (ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* __this, RTHandleU5BU5D_tE4B403B060D159B839BF74E8B59F8DCD52CF97DF* ___0_inputs, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Passes/ScriptableRenderPass.cs:460>
|
|
RTHandleU5BU5D_tE4B403B060D159B839BF74E8B59F8DCD52CF97DF* L_0 = ___0_inputs;
|
|
__this->___m_InputAttachments = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_InputAttachments), (void*)L_0);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Passes/ScriptableRenderPass.cs:461>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 33294
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ScriptableRenderPass_ConfigureInputAttachments_mAE28A6783E50F928F741A08DAEB95695E6EEE543 (ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* __this, RTHandleU5BU5D_tE4B403B060D159B839BF74E8B59F8DCD52CF97DF* ___0_inputs, BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* ___1_isTransient, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Passes/ScriptableRenderPass.cs:468>
|
|
RTHandleU5BU5D_tE4B403B060D159B839BF74E8B59F8DCD52CF97DF* L_0 = ___0_inputs;
|
|
ScriptableRenderPass_ConfigureInputAttachments_mEE7F33D93B15335CB7EA5FE8C34C9C76BD8CC805_inline(__this, L_0, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Passes/ScriptableRenderPass.cs:471>
|
|
BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* L_1 = ___1_isTransient;
|
|
__this->___m_InputAttachmentIsTransient = L_1;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_InputAttachmentIsTransient), (void*)L_1);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Passes/ScriptableRenderPass.cs:472>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 33295
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ScriptableRenderPass_SetInputAttachmentTransient_m7DC19E1373BC73CA4FF1C3E5308E3E7D565B4149 (ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* __this, int32_t ___0_idx, bool ___1_isTransient, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Passes/ScriptableRenderPass.cs:477>
|
|
BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* L_0 = __this->___m_InputAttachmentIsTransient;
|
|
int32_t L_1 = ___0_idx;
|
|
bool L_2 = ___1_isTransient;
|
|
NullCheck(L_0);
|
|
(L_0)->SetAt(static_cast<il2cpp_array_size_t>(L_1), (bool)L_2);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Passes/ScriptableRenderPass.cs:478>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 33296
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ScriptableRenderPass_IsInputAttachmentTransient_m2FB2DD892C4642FDE4EF0031EC623040A3633029 (ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* __this, int32_t ___0_idx, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Passes/ScriptableRenderPass.cs:483>
|
|
BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* L_0 = __this->___m_InputAttachmentIsTransient;
|
|
int32_t L_1 = ___0_idx;
|
|
NullCheck(L_0);
|
|
int32_t L_2 = L_1;
|
|
uint8_t L_3 = (uint8_t)(L_0)->GetAt(static_cast<il2cpp_array_size_t>(L_2));
|
|
return (bool)L_3;
|
|
}
|
|
}
|
|
// Method Definition Index: 33297
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ScriptableRenderPass_ResetTarget_m72FDC62EA0D61FC897421DC931E1FC5C14CC4B5C (ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* __this, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Passes/ScriptableRenderPass.cs:494>
|
|
ScriptableRenderPass_set_overrideCameraTarget_mC7A5FB7FB9D32C88226E81992DAD058174C99D95_inline(__this, (bool)0, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Passes/ScriptableRenderPass.cs:497>
|
|
__this->___m_DepthAttachment = (RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B*)NULL;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_DepthAttachment), (void*)(RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B*)NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Passes/ScriptableRenderPass.cs:500>
|
|
RTHandleU5BU5D_tE4B403B060D159B839BF74E8B59F8DCD52CF97DF* L_0 = __this->___m_ColorAttachments;
|
|
NullCheck(L_0);
|
|
ArrayElementTypeCheck (L_0, NULL);
|
|
(L_0)->SetAt(static_cast<il2cpp_array_size_t>(0), (RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B*)NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Passes/ScriptableRenderPass.cs:501>
|
|
V_0 = 1;
|
|
goto IL_0028;
|
|
}
|
|
|
|
IL_001b:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Passes/ScriptableRenderPass.cs:503>
|
|
RTHandleU5BU5D_tE4B403B060D159B839BF74E8B59F8DCD52CF97DF* L_1 = __this->___m_ColorAttachments;
|
|
int32_t L_2 = V_0;
|
|
NullCheck(L_1);
|
|
ArrayElementTypeCheck (L_1, NULL);
|
|
(L_1)->SetAt(static_cast<il2cpp_array_size_t>(L_2), (RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B*)NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Passes/ScriptableRenderPass.cs:501>
|
|
int32_t L_3 = V_0;
|
|
V_0 = ((int32_t)il2cpp_codegen_add(L_3, 1));
|
|
}
|
|
|
|
IL_0028:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Passes/ScriptableRenderPass.cs:501>
|
|
int32_t L_4 = V_0;
|
|
RTHandleU5BU5D_tE4B403B060D159B839BF74E8B59F8DCD52CF97DF* L_5 = __this->___m_ColorAttachments;
|
|
NullCheck(L_5);
|
|
if ((((int32_t)L_4) < ((int32_t)((int32_t)(((RuntimeArray*)L_5)->max_length)))))
|
|
{
|
|
goto IL_001b;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Passes/ScriptableRenderPass.cs:505>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 33298
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ScriptableRenderPass_ConfigureTarget_m2DC2D1A171DC20D7873D59129C5B3C543C3C28FE (ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* __this, RenderTargetIdentifier_tA528663AC6EB3911D8E91AA40F7070FA5455442B ___0_colorAttachment, RenderTargetIdentifier_tA528663AC6EB3911D8E91AA40F7070FA5455442B ___1_depthAttachment, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Passes/ScriptableRenderPass.cs:517>
|
|
NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A* L_0 = (NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A_il2cpp_TypeInfo_var)));
|
|
NotSupportedException__ctor_mE174750CF0247BBB47544FFD71D66BB89630945B(L_0, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralA6D5272F137202EBA134BF01F413879348836D49)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ScriptableRenderPass_ConfigureTarget_m2DC2D1A171DC20D7873D59129C5B3C543C3C28FE_RuntimeMethod_var)));
|
|
}
|
|
}
|
|
// Method Definition Index: 33299
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ScriptableRenderPass_ConfigureTarget_mDC20EFA30782A4E2D734590184A90E338953F36B (ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* __this, RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B* ___0_colorAttachment, RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B* ___1_depthAttachment, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Passes/ScriptableRenderPass.cs:530>
|
|
ScriptableRenderPass_set_overrideCameraTarget_mC7A5FB7FB9D32C88226E81992DAD058174C99D95_inline(__this, (bool)1, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Passes/ScriptableRenderPass.cs:532>
|
|
RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B* L_0 = ___1_depthAttachment;
|
|
__this->___m_DepthAttachment = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_DepthAttachment), (void*)L_0);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Passes/ScriptableRenderPass.cs:533>
|
|
RTHandleU5BU5D_tE4B403B060D159B839BF74E8B59F8DCD52CF97DF* L_1 = __this->___m_ColorAttachments;
|
|
RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B* L_2 = ___0_colorAttachment;
|
|
NullCheck(L_1);
|
|
ArrayElementTypeCheck (L_1, L_2);
|
|
(L_1)->SetAt(static_cast<il2cpp_array_size_t>(0), (RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B*)L_2);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Passes/ScriptableRenderPass.cs:534>
|
|
V_0 = 1;
|
|
goto IL_0028;
|
|
}
|
|
|
|
IL_001b:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Passes/ScriptableRenderPass.cs:536>
|
|
RTHandleU5BU5D_tE4B403B060D159B839BF74E8B59F8DCD52CF97DF* L_3 = __this->___m_ColorAttachments;
|
|
int32_t L_4 = V_0;
|
|
NullCheck(L_3);
|
|
ArrayElementTypeCheck (L_3, NULL);
|
|
(L_3)->SetAt(static_cast<il2cpp_array_size_t>(L_4), (RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B*)NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Passes/ScriptableRenderPass.cs:534>
|
|
int32_t L_5 = V_0;
|
|
V_0 = ((int32_t)il2cpp_codegen_add(L_5, 1));
|
|
}
|
|
|
|
IL_0028:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Passes/ScriptableRenderPass.cs:534>
|
|
int32_t L_6 = V_0;
|
|
RTHandleU5BU5D_tE4B403B060D159B839BF74E8B59F8DCD52CF97DF* L_7 = __this->___m_ColorAttachments;
|
|
NullCheck(L_7);
|
|
if ((((int32_t)L_6) < ((int32_t)((int32_t)(((RuntimeArray*)L_7)->max_length)))))
|
|
{
|
|
goto IL_001b;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Passes/ScriptableRenderPass.cs:538>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 33300
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ScriptableRenderPass_ConfigureTarget_m06333BFDD3AA853377249E93601B06F03DDFD11B (ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* __this, RenderTargetIdentifierU5BU5D_t179798C153B7CE381B41C57863F98CB24023C4CE* ___0_colorAttachments, RenderTargetIdentifier_tA528663AC6EB3911D8E91AA40F7070FA5455442B ___1_depthAttachment, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Passes/ScriptableRenderPass.cs:550>
|
|
NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A* L_0 = (NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A_il2cpp_TypeInfo_var)));
|
|
NotSupportedException__ctor_mE174750CF0247BBB47544FFD71D66BB89630945B(L_0, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralEBF2B59923C9C898155D4B3B58820067AC5B7CCE)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ScriptableRenderPass_ConfigureTarget_m06333BFDD3AA853377249E93601B06F03DDFD11B_RuntimeMethod_var)));
|
|
}
|
|
}
|
|
// Method Definition Index: 33301
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ScriptableRenderPass_ConfigureTarget_m95AF62178B8B11980EF5E922FBD15042C2F361E3 (ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* __this, RTHandleU5BU5D_tE4B403B060D159B839BF74E8B59F8DCD52CF97DF* ___0_colorAttachments, RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B* ___1_depthAttachment, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Debug_t8394C7EEAECA3689C2C9B9DE9C7166D73596276F_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RenderingUtils_t4E40200449A82FA3A172A563C490DF11FADA2BE1_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralBC76875C4792C4CAB6A8B4FE2CCA011647E3E853);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralCE4B297313A965CC962632A674D87E40358F7B5C);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralE1F608508E2DE393FE42339EB381AF5125F9F293);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
uint32_t V_0 = 0;
|
|
int32_t V_1 = 0;
|
|
int32_t V_2 = 0;
|
|
int32_t V_3 = 0;
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Passes/ScriptableRenderPass.cs:563>
|
|
ScriptableRenderPass_set_overrideCameraTarget_mC7A5FB7FB9D32C88226E81992DAD058174C99D95_inline(__this, (bool)1, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Passes/ScriptableRenderPass.cs:565>
|
|
RTHandleU5BU5D_tE4B403B060D159B839BF74E8B59F8DCD52CF97DF* L_0 = ___0_colorAttachments;
|
|
il2cpp_codegen_runtime_class_init_inline(RenderingUtils_t4E40200449A82FA3A172A563C490DF11FADA2BE1_il2cpp_TypeInfo_var);
|
|
uint32_t L_1;
|
|
L_1 = RenderingUtils_GetValidColorBufferCount_m99C1CCF85D3EFCA3950A11D106E801E4DF3A31B6(L_0, NULL);
|
|
V_0 = L_1;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Passes/ScriptableRenderPass.cs:566>
|
|
uint32_t L_2 = V_0;
|
|
int32_t L_3;
|
|
L_3 = SystemInfo_get_supportedRenderTargetCount_mA8696B2D9AB343F9D04B0F4F14A4A1F7098DBC34(NULL);
|
|
if ((((int64_t)((int64_t)(uint64_t)((uint32_t)L_2))) <= ((int64_t)((int64_t)L_3))))
|
|
{
|
|
goto IL_0040;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Passes/ScriptableRenderPass.cs:567>
|
|
String_t* L_4;
|
|
L_4 = UInt32_ToString_mB6FA6D2459C82ADCF285C55363491D9669A80154((&V_0), NULL);
|
|
int32_t L_5;
|
|
L_5 = SystemInfo_get_supportedRenderTargetCount_mA8696B2D9AB343F9D04B0F4F14A4A1F7098DBC34(NULL);
|
|
V_1 = L_5;
|
|
String_t* L_6;
|
|
L_6 = Int32_ToString_m030E01C24E294D6762FB0B6F37CB541581F55CA5((&V_1), NULL);
|
|
String_t* L_7;
|
|
L_7 = String_Concat_m093934F71A9B351911EE46311674ED463B180006(_stringLiteralE1F608508E2DE393FE42339EB381AF5125F9F293, L_4, _stringLiteralCE4B297313A965CC962632A674D87E40358F7B5C, L_6, NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(Debug_t8394C7EEAECA3689C2C9B9DE9C7166D73596276F_il2cpp_TypeInfo_var);
|
|
Debug_LogError_mB00B2B4468EF3CAF041B038D840820FB84C924B2(L_7, NULL);
|
|
}
|
|
|
|
IL_0040:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Passes/ScriptableRenderPass.cs:569>
|
|
RTHandleU5BU5D_tE4B403B060D159B839BF74E8B59F8DCD52CF97DF* L_8 = ___0_colorAttachments;
|
|
NullCheck(L_8);
|
|
RTHandleU5BU5D_tE4B403B060D159B839BF74E8B59F8DCD52CF97DF* L_9 = __this->___m_ColorAttachments;
|
|
NullCheck(L_9);
|
|
if ((((int32_t)((int32_t)(((RuntimeArray*)L_8)->max_length))) <= ((int32_t)((int32_t)(((RuntimeArray*)L_9)->max_length)))))
|
|
{
|
|
goto IL_007c;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Passes/ScriptableRenderPass.cs:570>
|
|
RTHandleU5BU5D_tE4B403B060D159B839BF74E8B59F8DCD52CF97DF* L_10 = ___0_colorAttachments;
|
|
NullCheck(L_10);
|
|
V_1 = ((int32_t)(((RuntimeArray*)L_10)->max_length));
|
|
String_t* L_11;
|
|
L_11 = Int32_ToString_m030E01C24E294D6762FB0B6F37CB541581F55CA5((&V_1), NULL);
|
|
RTHandleU5BU5D_tE4B403B060D159B839BF74E8B59F8DCD52CF97DF* L_12 = __this->___m_ColorAttachments;
|
|
NullCheck(L_12);
|
|
V_1 = ((int32_t)(((RuntimeArray*)L_12)->max_length));
|
|
String_t* L_13;
|
|
L_13 = Int32_ToString_m030E01C24E294D6762FB0B6F37CB541581F55CA5((&V_1), NULL);
|
|
String_t* L_14;
|
|
L_14 = String_Concat_m093934F71A9B351911EE46311674ED463B180006(_stringLiteralE1F608508E2DE393FE42339EB381AF5125F9F293, L_11, _stringLiteralBC76875C4792C4CAB6A8B4FE2CCA011647E3E853, L_13, NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(Debug_t8394C7EEAECA3689C2C9B9DE9C7166D73596276F_il2cpp_TypeInfo_var);
|
|
Debug_LogError_mB00B2B4468EF3CAF041B038D840820FB84C924B2(L_14, NULL);
|
|
}
|
|
|
|
IL_007c:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Passes/ScriptableRenderPass.cs:572>
|
|
V_2 = 0;
|
|
goto IL_008f;
|
|
}
|
|
|
|
IL_0080:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Passes/ScriptableRenderPass.cs:574>
|
|
RTHandleU5BU5D_tE4B403B060D159B839BF74E8B59F8DCD52CF97DF* L_15 = __this->___m_ColorAttachments;
|
|
int32_t L_16 = V_2;
|
|
RTHandleU5BU5D_tE4B403B060D159B839BF74E8B59F8DCD52CF97DF* L_17 = ___0_colorAttachments;
|
|
int32_t L_18 = V_2;
|
|
NullCheck(L_17);
|
|
int32_t L_19 = L_18;
|
|
RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B* L_20 = (L_17)->GetAt(static_cast<il2cpp_array_size_t>(L_19));
|
|
NullCheck(L_15);
|
|
ArrayElementTypeCheck (L_15, L_20);
|
|
(L_15)->SetAt(static_cast<il2cpp_array_size_t>(L_16), (RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B*)L_20);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Passes/ScriptableRenderPass.cs:572>
|
|
int32_t L_21 = V_2;
|
|
V_2 = ((int32_t)il2cpp_codegen_add(L_21, 1));
|
|
}
|
|
|
|
IL_008f:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Passes/ScriptableRenderPass.cs:572>
|
|
int32_t L_22 = V_2;
|
|
RTHandleU5BU5D_tE4B403B060D159B839BF74E8B59F8DCD52CF97DF* L_23 = ___0_colorAttachments;
|
|
NullCheck(L_23);
|
|
if ((((int32_t)L_22) < ((int32_t)((int32_t)(((RuntimeArray*)L_23)->max_length)))))
|
|
{
|
|
goto IL_0080;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Passes/ScriptableRenderPass.cs:577>
|
|
RTHandleU5BU5D_tE4B403B060D159B839BF74E8B59F8DCD52CF97DF* L_24 = ___0_colorAttachments;
|
|
NullCheck(L_24);
|
|
V_3 = ((int32_t)(((RuntimeArray*)L_24)->max_length));
|
|
goto IL_00a8;
|
|
}
|
|
|
|
IL_009b:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Passes/ScriptableRenderPass.cs:579>
|
|
RTHandleU5BU5D_tE4B403B060D159B839BF74E8B59F8DCD52CF97DF* L_25 = __this->___m_ColorAttachments;
|
|
int32_t L_26 = V_3;
|
|
NullCheck(L_25);
|
|
ArrayElementTypeCheck (L_25, NULL);
|
|
(L_25)->SetAt(static_cast<il2cpp_array_size_t>(L_26), (RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B*)NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Passes/ScriptableRenderPass.cs:577>
|
|
int32_t L_27 = V_3;
|
|
V_3 = ((int32_t)il2cpp_codegen_add(L_27, 1));
|
|
}
|
|
|
|
IL_00a8:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Passes/ScriptableRenderPass.cs:577>
|
|
int32_t L_28 = V_3;
|
|
RTHandleU5BU5D_tE4B403B060D159B839BF74E8B59F8DCD52CF97DF* L_29 = __this->___m_ColorAttachments;
|
|
NullCheck(L_29);
|
|
if ((((int32_t)L_28) < ((int32_t)((int32_t)(((RuntimeArray*)L_29)->max_length)))))
|
|
{
|
|
goto IL_009b;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Passes/ScriptableRenderPass.cs:582>
|
|
RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B* L_30 = ___1_depthAttachment;
|
|
__this->___m_DepthAttachment = L_30;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_DepthAttachment), (void*)L_30);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Passes/ScriptableRenderPass.cs:583>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 33302
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ScriptableRenderPass_ConfigureTarget_mD8E74F2C1E5F1D64309C7C53875D10968082AF65 (ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* __this, RTHandleU5BU5D_tE4B403B060D159B839BF74E8B59F8DCD52CF97DF* ___0_colorAttachments, RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B* ___1_depthAttachment, GraphicsFormatU5BU5D_tF6A3D90C430FA3F548B77E5D58D25D71F154E6C5* ___2_formats, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Passes/ScriptableRenderPass.cs:590>
|
|
RTHandleU5BU5D_tE4B403B060D159B839BF74E8B59F8DCD52CF97DF* L_0 = ___0_colorAttachments;
|
|
RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B* L_1 = ___1_depthAttachment;
|
|
ScriptableRenderPass_ConfigureTarget_m95AF62178B8B11980EF5E922FBD15042C2F361E3(__this, L_0, L_1, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Passes/ScriptableRenderPass.cs:593>
|
|
V_0 = 0;
|
|
goto IL_001b;
|
|
}
|
|
|
|
IL_000c:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Passes/ScriptableRenderPass.cs:594>
|
|
GraphicsFormatU5BU5D_tF6A3D90C430FA3F548B77E5D58D25D71F154E6C5* L_2;
|
|
L_2 = ScriptableRenderPass_get_renderTargetFormat_m7B211E4B10D23A760D3906426BA9C4562DF951CC_inline(__this, NULL);
|
|
int32_t L_3 = V_0;
|
|
GraphicsFormatU5BU5D_tF6A3D90C430FA3F548B77E5D58D25D71F154E6C5* L_4 = ___2_formats;
|
|
int32_t L_5 = V_0;
|
|
NullCheck(L_4);
|
|
int32_t L_6 = L_5;
|
|
int32_t L_7 = (int32_t)(L_4)->GetAt(static_cast<il2cpp_array_size_t>(L_6));
|
|
NullCheck(L_2);
|
|
(L_2)->SetAt(static_cast<il2cpp_array_size_t>(L_3), (int32_t)L_7);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Passes/ScriptableRenderPass.cs:593>
|
|
int32_t L_8 = V_0;
|
|
V_0 = ((int32_t)il2cpp_codegen_add(L_8, 1));
|
|
}
|
|
|
|
IL_001b:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Passes/ScriptableRenderPass.cs:593>
|
|
int32_t L_9 = V_0;
|
|
GraphicsFormatU5BU5D_tF6A3D90C430FA3F548B77E5D58D25D71F154E6C5* L_10 = ___2_formats;
|
|
NullCheck(L_10);
|
|
if ((((int32_t)L_9) < ((int32_t)((int32_t)(((RuntimeArray*)L_10)->max_length)))))
|
|
{
|
|
goto IL_000c;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Passes/ScriptableRenderPass.cs:595>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 33303
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ScriptableRenderPass_ConfigureTarget_m6D5152700A43B1468E44A56F074285FE556BFB10 (ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* __this, RenderTargetIdentifier_tA528663AC6EB3911D8E91AA40F7070FA5455442B ___0_colorAttachment, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Passes/ScriptableRenderPass.cs:606>
|
|
NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A* L_0 = (NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A_il2cpp_TypeInfo_var)));
|
|
NotSupportedException__ctor_mE174750CF0247BBB47544FFD71D66BB89630945B(L_0, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralEBF2B59923C9C898155D4B3B58820067AC5B7CCE)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ScriptableRenderPass_ConfigureTarget_m6D5152700A43B1468E44A56F074285FE556BFB10_RuntimeMethod_var)));
|
|
}
|
|
}
|
|
// Method Definition Index: 33304
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ScriptableRenderPass_ConfigureTarget_m6767C5E94D51F989348F415771B770DE844FD4A6 (ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* __this, RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B* ___0_colorAttachment, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Passes/ScriptableRenderPass.cs:620>
|
|
RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B* L_0 = ___0_colorAttachment;
|
|
il2cpp_codegen_runtime_class_init_inline(ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0_il2cpp_TypeInfo_var);
|
|
RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B* L_1 = ((ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0_StaticFields*)il2cpp_codegen_static_fields_for(ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0_il2cpp_TypeInfo_var))->___k_CameraTarget;
|
|
ScriptableRenderPass_ConfigureTarget_mDC20EFA30782A4E2D734590184A90E338953F36B(__this, L_0, L_1, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Passes/ScriptableRenderPass.cs:622>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 33305
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ScriptableRenderPass_ConfigureTarget_m887333CF9E280F835B07563DB897ED50D1E863A5 (ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* __this, RenderTargetIdentifierU5BU5D_t179798C153B7CE381B41C57863F98CB24023C4CE* ___0_colorAttachments, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Passes/ScriptableRenderPass.cs:633>
|
|
NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A* L_0 = (NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A_il2cpp_TypeInfo_var)));
|
|
NotSupportedException__ctor_mE174750CF0247BBB47544FFD71D66BB89630945B(L_0, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralEBF2B59923C9C898155D4B3B58820067AC5B7CCE)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ScriptableRenderPass_ConfigureTarget_m887333CF9E280F835B07563DB897ED50D1E863A5_RuntimeMethod_var)));
|
|
}
|
|
}
|
|
// Method Definition Index: 33306
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ScriptableRenderPass_ConfigureTarget_mA0986AA7CA1561E73B799D1B40E7FABF8B022AE3 (ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* __this, RTHandleU5BU5D_tE4B403B060D159B839BF74E8B59F8DCD52CF97DF* ___0_colorAttachments, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Passes/ScriptableRenderPass.cs:647>
|
|
RTHandleU5BU5D_tE4B403B060D159B839BF74E8B59F8DCD52CF97DF* L_0 = ___0_colorAttachments;
|
|
il2cpp_codegen_runtime_class_init_inline(ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0_il2cpp_TypeInfo_var);
|
|
RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B* L_1 = ((ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0_StaticFields*)il2cpp_codegen_static_fields_for(ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0_il2cpp_TypeInfo_var))->___k_CameraTarget;
|
|
ScriptableRenderPass_ConfigureTarget_m95AF62178B8B11980EF5E922FBD15042C2F361E3(__this, L_0, L_1, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Passes/ScriptableRenderPass.cs:649>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 33307
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ScriptableRenderPass_ConfigureClear_m5C82128C3ABDD63621501DC012ED91F392ABF123 (ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* __this, int32_t ___0_clearFlag, Color_tD001788D726C3A7F1379BEED0260B9591F440C1F ___1_clearColor, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Passes/ScriptableRenderPass.cs:660>
|
|
int32_t L_0 = ___0_clearFlag;
|
|
__this->___m_ClearFlag = L_0;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Passes/ScriptableRenderPass.cs:661>
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F L_1 = ___1_clearColor;
|
|
__this->___m_ClearColor = L_1;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Passes/ScriptableRenderPass.cs:662>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 33308
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ScriptableRenderPass_OnCameraSetup_m447CD89B4783B328F32CB97C78515BE7C4D88685 (ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* __this, CommandBuffer_tB56007DC84EF56296C325EC32DD12AC1E3DC91F7* ___0_cmd, RenderingData_tAAA01190551D6D5954314E3E1E85B58DD45EED71* ___1_renderingData, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Passes/ScriptableRenderPass.cs:676>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 33309
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ScriptableRenderPass_Configure_m40B352B4736CBB2C5881ABF6DE9F7ACFB6163A14 (ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* __this, CommandBuffer_tB56007DC84EF56296C325EC32DD12AC1E3DC91F7* ___0_cmd, RenderTextureDescriptor_t69845881CE6437E4E61F92074F2F84079F23FA46 ___1_cameraTextureDescriptor, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Passes/ScriptableRenderPass.cs:690>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 33310
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ScriptableRenderPass_OnCameraCleanup_mB0DD91F1AF1BE153210CB20F7AAB3589C5851043 (ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* __this, CommandBuffer_tB56007DC84EF56296C325EC32DD12AC1E3DC91F7* ___0_cmd, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Passes/ScriptableRenderPass.cs:702>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 33311
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ScriptableRenderPass_OnFinishCameraStackRendering_m8A602AC08A01630668337350BDA5CDC48DA186CB (ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* __this, CommandBuffer_tB56007DC84EF56296C325EC32DD12AC1E3DC91F7* ___0_cmd, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Passes/ScriptableRenderPass.cs:714>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 33312
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ScriptableRenderPass_Execute_m760BA02BC0D46FFE1B097F7A67DDB6DC8EBAF761 (ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* __this, ScriptableRenderContext_t5AB09B3602BEB456E0DC3D53926D3A3BDAF08E36 ___0_context, RenderingData_tAAA01190551D6D5954314E3E1E85B58DD45EED71* ___1_renderingData, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Debug_t8394C7EEAECA3689C2C9B9DE9C7166D73596276F_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralCA31B9730334EC149858A6CB455BCD4D45EF2B07);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralFC606F7FCB0B5C03B472CA15470B6EC069B45FAB);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Passes/ScriptableRenderPass.cs:724>
|
|
String_t* L_0;
|
|
L_0 = VirtualFuncInvoker0< String_t* >::Invoke(3, __this);
|
|
String_t* L_1;
|
|
L_1 = String_Concat_m8855A6DE10F84DA7F4EC113CADDB59873A25573B(_stringLiteralCA31B9730334EC149858A6CB455BCD4D45EF2B07, L_0, _stringLiteralFC606F7FCB0B5C03B472CA15470B6EC069B45FAB, NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(Debug_t8394C7EEAECA3689C2C9B9DE9C7166D73596276F_il2cpp_TypeInfo_var);
|
|
Debug_LogWarning_m33EF1B897E0C7C6FF538989610BFAFFEF4628CA9(L_1, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Passes/ScriptableRenderPass.cs:725>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 33313
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ScriptableRenderPass_RecordRenderGraph_m05B5A56D52005592513CF21D8E0C707295515F8C (ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* __this, RenderGraph_t73ECE03B3CA3D0D17F1448D64AE020E81592AA1E* ___0_renderGraph, ContextContainer_t384E08F63FABEFF6A7F1A753F5EF02699DAD414C* ___1_frameData, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Debug_t8394C7EEAECA3689C2C9B9DE9C7166D73596276F_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral159D1EE011F5E5F12BC1DD2637581CDE02EB8A0D);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral1F77ABDDABECE2715EDD31890827B3CDBA241D0C);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Passes/ScriptableRenderPass.cs:730>
|
|
String_t* L_0;
|
|
L_0 = VirtualFuncInvoker0< String_t* >::Invoke(3, __this);
|
|
String_t* L_1;
|
|
L_1 = String_Concat_m8855A6DE10F84DA7F4EC113CADDB59873A25573B(_stringLiteral159D1EE011F5E5F12BC1DD2637581CDE02EB8A0D, L_0, _stringLiteral1F77ABDDABECE2715EDD31890827B3CDBA241D0C, NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(Debug_t8394C7EEAECA3689C2C9B9DE9C7166D73596276F_il2cpp_TypeInfo_var);
|
|
Debug_LogWarning_m33EF1B897E0C7C6FF538989610BFAFFEF4628CA9(L_1, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Passes/ScriptableRenderPass.cs:731>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 33314
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ScriptableRenderPass_Blit_m51EFEA549568C64221EFC6FFF66EC9078B290BEF (ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* __this, CommandBuffer_tB56007DC84EF56296C325EC32DD12AC1E3DC91F7* ___0_cmd, RenderTargetIdentifier_tA528663AC6EB3911D8E91AA40F7070FA5455442B ___1_source, RenderTargetIdentifier_tA528663AC6EB3911D8E91AA40F7070FA5455442B ___2_destination, Material_t18053F08F347D0DCA5E1140EC7EC4533DD8A14E3* ___3_material, int32_t ___4_passIndex, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Passes/ScriptableRenderPass.cs:746>
|
|
NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A* L_0 = (NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A_il2cpp_TypeInfo_var)));
|
|
NotSupportedException__ctor_mE174750CF0247BBB47544FFD71D66BB89630945B(L_0, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral750C829FC212789E82E1D66A66AB0DE4DA3CBFEA)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ScriptableRenderPass_Blit_m51EFEA549568C64221EFC6FFF66EC9078B290BEF_RuntimeMethod_var)));
|
|
}
|
|
}
|
|
// Method Definition Index: 33315
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ScriptableRenderPass_Blit_m09FB15CC5B861AE5403E51B0232A390EF92BF8B0 (ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* __this, CommandBuffer_tB56007DC84EF56296C325EC32DD12AC1E3DC91F7* ___0_cmd, RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B* ___1_source, RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B* ___2_destination, Material_t18053F08F347D0DCA5E1140EC7EC4533DD8A14E3* ___3_material, int32_t ___4_passIndex, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Blitter_t33DF283FBD19A8EE25C460B6D9B3087648A456A7_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Passes/ScriptableRenderPass.cs:762>
|
|
Material_t18053F08F347D0DCA5E1140EC7EC4533DD8A14E3* L_0 = ___3_material;
|
|
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
bool L_1;
|
|
L_1 = Object_op_Equality_mB6120F782D83091EF56A198FCEBCF066DB4A9605(L_0, (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C*)NULL, NULL);
|
|
if (!L_1)
|
|
{
|
|
goto IL_0026;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Passes/ScriptableRenderPass.cs:763>
|
|
CommandBuffer_tB56007DC84EF56296C325EC32DD12AC1E3DC91F7* L_2 = ___0_cmd;
|
|
RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B* L_3 = ___1_source;
|
|
RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B* L_4 = ___2_destination;
|
|
RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B* L_5 = ___1_source;
|
|
NullCheck(L_5);
|
|
RenderTexture_tBA90C4C3AD9EECCFDDCC632D97C29FAB80D60D27* L_6;
|
|
L_6 = RTHandle_get_rt_m593F2799E2E6C97979D3B4CD9E992D305922BBE9_inline(L_5, NULL);
|
|
NullCheck(L_6);
|
|
int32_t L_7;
|
|
L_7 = Texture_get_filterMode_mFEF0AEA29E8468450EF85533965DCEBE66D02A45(L_6, NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(Blitter_t33DF283FBD19A8EE25C460B6D9B3087648A456A7_il2cpp_TypeInfo_var);
|
|
Blitter_BlitCameraTexture_m06500CC676A52761E986039557FC01E30EBA8F8F(L_2, L_3, L_4, (0.0f), (bool)((((int32_t)L_7) == ((int32_t)1))? 1 : 0), NULL);
|
|
return;
|
|
}
|
|
|
|
IL_0026:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Passes/ScriptableRenderPass.cs:765>
|
|
CommandBuffer_tB56007DC84EF56296C325EC32DD12AC1E3DC91F7* L_8 = ___0_cmd;
|
|
RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B* L_9 = ___1_source;
|
|
RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B* L_10 = ___2_destination;
|
|
Material_t18053F08F347D0DCA5E1140EC7EC4533DD8A14E3* L_11 = ___3_material;
|
|
int32_t L_12 = ___4_passIndex;
|
|
il2cpp_codegen_runtime_class_init_inline(Blitter_t33DF283FBD19A8EE25C460B6D9B3087648A456A7_il2cpp_TypeInfo_var);
|
|
Blitter_BlitCameraTexture_mD7AEA91C0BF9E886799FF75A28CCD4167F9FEB3E(L_8, L_9, L_10, L_11, L_12, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Passes/ScriptableRenderPass.cs:766>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 33316
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ScriptableRenderPass_Blit_mB5BCB66855DA15B8A0EABE83982C16E23004B319 (ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* __this, CommandBuffer_tB56007DC84EF56296C325EC32DD12AC1E3DC91F7* ___0_cmd, RenderingData_tAAA01190551D6D5954314E3E1E85B58DD45EED71* ___1_data, Material_t18053F08F347D0DCA5E1140EC7EC4533DD8A14E3* ___2_material, int32_t ___3_passIndex, const RuntimeMethod* method)
|
|
{
|
|
ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892* V_0 = NULL;
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Passes/ScriptableRenderPass.cs:778>
|
|
RenderingData_tAAA01190551D6D5954314E3E1E85B58DD45EED71* L_0 = ___1_data;
|
|
CameraData_tC27AE109CD20677486A4AC19C0CF014AE0F50C3E* L_1 = (CameraData_tC27AE109CD20677486A4AC19C0CF014AE0F50C3E*)(&L_0->___cameraData);
|
|
ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892** L_2;
|
|
L_2 = CameraData_get_renderer_mF3602679D5E3E14C185ADF3EFD3C1CB996F7B36A(L_1, NULL);
|
|
ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892* L_3 = *((ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892**)L_2);
|
|
V_0 = L_3;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Passes/ScriptableRenderPass.cs:780>
|
|
CommandBuffer_tB56007DC84EF56296C325EC32DD12AC1E3DC91F7* L_4 = ___0_cmd;
|
|
ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892* L_5 = V_0;
|
|
NullCheck(L_5);
|
|
RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B* L_6;
|
|
L_6 = ScriptableRenderer_get_cameraColorTargetHandle_mB0B32CF50F711E4B41822F4F6BBCE2091C608A6D(L_5, NULL);
|
|
ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892* L_7 = V_0;
|
|
CommandBuffer_tB56007DC84EF56296C325EC32DD12AC1E3DC91F7* L_8 = ___0_cmd;
|
|
NullCheck(L_7);
|
|
RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B* L_9;
|
|
L_9 = VirtualFuncInvoker1< RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B*, CommandBuffer_tB56007DC84EF56296C325EC32DD12AC1E3DC91F7* >::Invoke(9, L_7, L_8);
|
|
Material_t18053F08F347D0DCA5E1140EC7EC4533DD8A14E3* L_10 = ___2_material;
|
|
int32_t L_11 = ___3_passIndex;
|
|
ScriptableRenderPass_Blit_m09FB15CC5B861AE5403E51B0232A390EF92BF8B0(__this, L_4, L_6, L_9, L_10, L_11, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Passes/ScriptableRenderPass.cs:781>
|
|
ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892* L_12 = V_0;
|
|
CommandBuffer_tB56007DC84EF56296C325EC32DD12AC1E3DC91F7* L_13 = ___0_cmd;
|
|
NullCheck(L_12);
|
|
VirtualActionInvoker1< CommandBuffer_tB56007DC84EF56296C325EC32DD12AC1E3DC91F7* >::Invoke(21, L_12, L_13);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Passes/ScriptableRenderPass.cs:782>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 33317
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ScriptableRenderPass_Blit_mB28DA7D49C46FF47B893D87CE1A164D4C713F434 (ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* __this, CommandBuffer_tB56007DC84EF56296C325EC32DD12AC1E3DC91F7* ___0_cmd, RenderingData_tAAA01190551D6D5954314E3E1E85B58DD45EED71* ___1_data, RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B* ___2_source, Material_t18053F08F347D0DCA5E1140EC7EC4533DD8A14E3* ___3_material, int32_t ___4_passIndex, const RuntimeMethod* method)
|
|
{
|
|
ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892* V_0 = NULL;
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Passes/ScriptableRenderPass.cs:795>
|
|
RenderingData_tAAA01190551D6D5954314E3E1E85B58DD45EED71* L_0 = ___1_data;
|
|
CameraData_tC27AE109CD20677486A4AC19C0CF014AE0F50C3E* L_1 = (CameraData_tC27AE109CD20677486A4AC19C0CF014AE0F50C3E*)(&L_0->___cameraData);
|
|
ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892** L_2;
|
|
L_2 = CameraData_get_renderer_mF3602679D5E3E14C185ADF3EFD3C1CB996F7B36A(L_1, NULL);
|
|
ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892* L_3 = *((ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892**)L_2);
|
|
V_0 = L_3;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Passes/ScriptableRenderPass.cs:796>
|
|
CommandBuffer_tB56007DC84EF56296C325EC32DD12AC1E3DC91F7* L_4 = ___0_cmd;
|
|
RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B* L_5 = ___2_source;
|
|
ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892* L_6 = V_0;
|
|
NullCheck(L_6);
|
|
RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B* L_7;
|
|
L_7 = ScriptableRenderer_get_cameraColorTargetHandle_mB0B32CF50F711E4B41822F4F6BBCE2091C608A6D(L_6, NULL);
|
|
Material_t18053F08F347D0DCA5E1140EC7EC4533DD8A14E3* L_8 = ___3_material;
|
|
int32_t L_9 = ___4_passIndex;
|
|
ScriptableRenderPass_Blit_m09FB15CC5B861AE5403E51B0232A390EF92BF8B0(__this, L_4, L_5, L_7, L_8, L_9, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Passes/ScriptableRenderPass.cs:797>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 33318
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DrawingSettings_t3B64EB029DB6F94A1F2A9B2D19D2969AE361BB49 ScriptableRenderPass_CreateDrawingSettings_mFB778BFA5DBC3B55AF8085487EE029C2DBA8A928 (ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* __this, ShaderTagId_t453E2085B5EE9448FF75E550CAB111EFF690ECB0 ___0_shaderTagId, RenderingData_tAAA01190551D6D5954314E3E1E85B58DD45EED71* ___1_renderingData, int32_t ___2_sortingCriteria, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ContextContainer_Get_TisUniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7_mE62F7903614384541B770CC0B9A99BD2E608A0F8_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ContextContainer_Get_TisUniversalLightData_tCFFFAB4033CD97BE9F339F0C90BB7F98C06FFBA2_m7D529C251F384985900DEA334BC399BAD36BFC8F_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ContextContainer_Get_TisUniversalRenderingData_t045D13A1E051DF623B170223B7CBF1161DDA94E6_m71849CEFB9C023EDE026A0F38CE6044274505C06_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RenderingUtils_t4E40200449A82FA3A172A563C490DF11FADA2BE1_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
UniversalRenderingData_t045D13A1E051DF623B170223B7CBF1161DDA94E6* V_0 = NULL;
|
|
UniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7* V_1 = NULL;
|
|
UniversalLightData_tCFFFAB4033CD97BE9F339F0C90BB7F98C06FFBA2* V_2 = NULL;
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Passes/ScriptableRenderPass.cs:809>
|
|
RenderingData_tAAA01190551D6D5954314E3E1E85B58DD45EED71* L_0 = ___1_renderingData;
|
|
ContextContainer_t384E08F63FABEFF6A7F1A753F5EF02699DAD414C* L_1 = L_0->___frameData;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Passes/ScriptableRenderPass.cs:810>
|
|
ContextContainer_t384E08F63FABEFF6A7F1A753F5EF02699DAD414C* L_2 = L_1;
|
|
NullCheck(L_2);
|
|
UniversalRenderingData_t045D13A1E051DF623B170223B7CBF1161DDA94E6* L_3;
|
|
L_3 = ContextContainer_Get_TisUniversalRenderingData_t045D13A1E051DF623B170223B7CBF1161DDA94E6_m71849CEFB9C023EDE026A0F38CE6044274505C06_inline(L_2, ContextContainer_Get_TisUniversalRenderingData_t045D13A1E051DF623B170223B7CBF1161DDA94E6_m71849CEFB9C023EDE026A0F38CE6044274505C06_RuntimeMethod_var);
|
|
V_0 = L_3;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Passes/ScriptableRenderPass.cs:811>
|
|
ContextContainer_t384E08F63FABEFF6A7F1A753F5EF02699DAD414C* L_4 = L_2;
|
|
NullCheck(L_4);
|
|
UniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7* L_5;
|
|
L_5 = ContextContainer_Get_TisUniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7_mE62F7903614384541B770CC0B9A99BD2E608A0F8_inline(L_4, ContextContainer_Get_TisUniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7_mE62F7903614384541B770CC0B9A99BD2E608A0F8_RuntimeMethod_var);
|
|
V_1 = L_5;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Passes/ScriptableRenderPass.cs:812>
|
|
NullCheck(L_4);
|
|
UniversalLightData_tCFFFAB4033CD97BE9F339F0C90BB7F98C06FFBA2* L_6;
|
|
L_6 = ContextContainer_Get_TisUniversalLightData_tCFFFAB4033CD97BE9F339F0C90BB7F98C06FFBA2_m7D529C251F384985900DEA334BC399BAD36BFC8F_inline(L_4, ContextContainer_Get_TisUniversalLightData_tCFFFAB4033CD97BE9F339F0C90BB7F98C06FFBA2_m7D529C251F384985900DEA334BC399BAD36BFC8F_RuntimeMethod_var);
|
|
V_2 = L_6;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Passes/ScriptableRenderPass.cs:814>
|
|
ShaderTagId_t453E2085B5EE9448FF75E550CAB111EFF690ECB0 L_7 = ___0_shaderTagId;
|
|
UniversalRenderingData_t045D13A1E051DF623B170223B7CBF1161DDA94E6* L_8 = V_0;
|
|
UniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7* L_9 = V_1;
|
|
UniversalLightData_tCFFFAB4033CD97BE9F339F0C90BB7F98C06FFBA2* L_10 = V_2;
|
|
int32_t L_11 = ___2_sortingCriteria;
|
|
il2cpp_codegen_runtime_class_init_inline(RenderingUtils_t4E40200449A82FA3A172A563C490DF11FADA2BE1_il2cpp_TypeInfo_var);
|
|
DrawingSettings_t3B64EB029DB6F94A1F2A9B2D19D2969AE361BB49 L_12;
|
|
L_12 = RenderingUtils_CreateDrawingSettings_m19A73A2AF8EE033A231EA599398122F0AEE68928(L_7, L_8, L_9, L_10, L_11, NULL);
|
|
return L_12;
|
|
}
|
|
}
|
|
// Method Definition Index: 33319
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DrawingSettings_t3B64EB029DB6F94A1F2A9B2D19D2969AE361BB49 ScriptableRenderPass_CreateDrawingSettings_m0F3B7985617514ACCF1619A1EE250428C7748B8F (ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* __this, ShaderTagId_t453E2085B5EE9448FF75E550CAB111EFF690ECB0 ___0_shaderTagId, UniversalRenderingData_t045D13A1E051DF623B170223B7CBF1161DDA94E6* ___1_renderingData, UniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7* ___2_cameraData, UniversalLightData_tCFFFAB4033CD97BE9F339F0C90BB7F98C06FFBA2* ___3_lightData, int32_t ___4_sortingCriteria, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RenderingUtils_t4E40200449A82FA3A172A563C490DF11FADA2BE1_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Passes/ScriptableRenderPass.cs:830>
|
|
ShaderTagId_t453E2085B5EE9448FF75E550CAB111EFF690ECB0 L_0 = ___0_shaderTagId;
|
|
UniversalRenderingData_t045D13A1E051DF623B170223B7CBF1161DDA94E6* L_1 = ___1_renderingData;
|
|
UniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7* L_2 = ___2_cameraData;
|
|
UniversalLightData_tCFFFAB4033CD97BE9F339F0C90BB7F98C06FFBA2* L_3 = ___3_lightData;
|
|
int32_t L_4 = ___4_sortingCriteria;
|
|
il2cpp_codegen_runtime_class_init_inline(RenderingUtils_t4E40200449A82FA3A172A563C490DF11FADA2BE1_il2cpp_TypeInfo_var);
|
|
DrawingSettings_t3B64EB029DB6F94A1F2A9B2D19D2969AE361BB49 L_5;
|
|
L_5 = RenderingUtils_CreateDrawingSettings_m19A73A2AF8EE033A231EA599398122F0AEE68928(L_0, L_1, L_2, L_3, L_4, NULL);
|
|
return L_5;
|
|
}
|
|
}
|
|
// Method Definition Index: 33320
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DrawingSettings_t3B64EB029DB6F94A1F2A9B2D19D2969AE361BB49 ScriptableRenderPass_CreateDrawingSettings_mF4CA6CC1400DBB22AE3493C8ADD1A380D67F7109 (ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* __this, List_1_t4673975A297A80D4D4A65EB5A2BE3B6BD1EED9AF* ___0_shaderTagIdList, RenderingData_tAAA01190551D6D5954314E3E1E85B58DD45EED71* ___1_renderingData, int32_t ___2_sortingCriteria, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ContextContainer_Get_TisUniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7_mE62F7903614384541B770CC0B9A99BD2E608A0F8_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ContextContainer_Get_TisUniversalLightData_tCFFFAB4033CD97BE9F339F0C90BB7F98C06FFBA2_m7D529C251F384985900DEA334BC399BAD36BFC8F_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ContextContainer_Get_TisUniversalRenderingData_t045D13A1E051DF623B170223B7CBF1161DDA94E6_m71849CEFB9C023EDE026A0F38CE6044274505C06_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RenderingUtils_t4E40200449A82FA3A172A563C490DF11FADA2BE1_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
UniversalRenderingData_t045D13A1E051DF623B170223B7CBF1161DDA94E6* V_0 = NULL;
|
|
UniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7* V_1 = NULL;
|
|
UniversalLightData_tCFFFAB4033CD97BE9F339F0C90BB7F98C06FFBA2* V_2 = NULL;
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Passes/ScriptableRenderPass.cs:844>
|
|
RenderingData_tAAA01190551D6D5954314E3E1E85B58DD45EED71* L_0 = ___1_renderingData;
|
|
ContextContainer_t384E08F63FABEFF6A7F1A753F5EF02699DAD414C* L_1 = L_0->___frameData;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Passes/ScriptableRenderPass.cs:845>
|
|
ContextContainer_t384E08F63FABEFF6A7F1A753F5EF02699DAD414C* L_2 = L_1;
|
|
NullCheck(L_2);
|
|
UniversalRenderingData_t045D13A1E051DF623B170223B7CBF1161DDA94E6* L_3;
|
|
L_3 = ContextContainer_Get_TisUniversalRenderingData_t045D13A1E051DF623B170223B7CBF1161DDA94E6_m71849CEFB9C023EDE026A0F38CE6044274505C06_inline(L_2, ContextContainer_Get_TisUniversalRenderingData_t045D13A1E051DF623B170223B7CBF1161DDA94E6_m71849CEFB9C023EDE026A0F38CE6044274505C06_RuntimeMethod_var);
|
|
V_0 = L_3;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Passes/ScriptableRenderPass.cs:846>
|
|
ContextContainer_t384E08F63FABEFF6A7F1A753F5EF02699DAD414C* L_4 = L_2;
|
|
NullCheck(L_4);
|
|
UniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7* L_5;
|
|
L_5 = ContextContainer_Get_TisUniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7_mE62F7903614384541B770CC0B9A99BD2E608A0F8_inline(L_4, ContextContainer_Get_TisUniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7_mE62F7903614384541B770CC0B9A99BD2E608A0F8_RuntimeMethod_var);
|
|
V_1 = L_5;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Passes/ScriptableRenderPass.cs:847>
|
|
NullCheck(L_4);
|
|
UniversalLightData_tCFFFAB4033CD97BE9F339F0C90BB7F98C06FFBA2* L_6;
|
|
L_6 = ContextContainer_Get_TisUniversalLightData_tCFFFAB4033CD97BE9F339F0C90BB7F98C06FFBA2_m7D529C251F384985900DEA334BC399BAD36BFC8F_inline(L_4, ContextContainer_Get_TisUniversalLightData_tCFFFAB4033CD97BE9F339F0C90BB7F98C06FFBA2_m7D529C251F384985900DEA334BC399BAD36BFC8F_RuntimeMethod_var);
|
|
V_2 = L_6;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Passes/ScriptableRenderPass.cs:849>
|
|
List_1_t4673975A297A80D4D4A65EB5A2BE3B6BD1EED9AF* L_7 = ___0_shaderTagIdList;
|
|
UniversalRenderingData_t045D13A1E051DF623B170223B7CBF1161DDA94E6* L_8 = V_0;
|
|
UniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7* L_9 = V_1;
|
|
UniversalLightData_tCFFFAB4033CD97BE9F339F0C90BB7F98C06FFBA2* L_10 = V_2;
|
|
int32_t L_11 = ___2_sortingCriteria;
|
|
il2cpp_codegen_runtime_class_init_inline(RenderingUtils_t4E40200449A82FA3A172A563C490DF11FADA2BE1_il2cpp_TypeInfo_var);
|
|
DrawingSettings_t3B64EB029DB6F94A1F2A9B2D19D2969AE361BB49 L_12;
|
|
L_12 = RenderingUtils_CreateDrawingSettings_m3DB61D695B8C38BC10DF00E538DCB622F04189A0(L_7, L_8, L_9, L_10, L_11, NULL);
|
|
return L_12;
|
|
}
|
|
}
|
|
// Method Definition Index: 33321
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DrawingSettings_t3B64EB029DB6F94A1F2A9B2D19D2969AE361BB49 ScriptableRenderPass_CreateDrawingSettings_m4E8171588D0C751964902CC236D699DEE59F9515 (ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* __this, List_1_t4673975A297A80D4D4A65EB5A2BE3B6BD1EED9AF* ___0_shaderTagIdList, UniversalRenderingData_t045D13A1E051DF623B170223B7CBF1161DDA94E6* ___1_renderingData, UniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7* ___2_cameraData, UniversalLightData_tCFFFAB4033CD97BE9F339F0C90BB7F98C06FFBA2* ___3_lightData, int32_t ___4_sortingCriteria, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RenderingUtils_t4E40200449A82FA3A172A563C490DF11FADA2BE1_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Passes/ScriptableRenderPass.cs:866>
|
|
List_1_t4673975A297A80D4D4A65EB5A2BE3B6BD1EED9AF* L_0 = ___0_shaderTagIdList;
|
|
UniversalRenderingData_t045D13A1E051DF623B170223B7CBF1161DDA94E6* L_1 = ___1_renderingData;
|
|
UniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7* L_2 = ___2_cameraData;
|
|
UniversalLightData_tCFFFAB4033CD97BE9F339F0C90BB7F98C06FFBA2* L_3 = ___3_lightData;
|
|
int32_t L_4 = ___4_sortingCriteria;
|
|
il2cpp_codegen_runtime_class_init_inline(RenderingUtils_t4E40200449A82FA3A172A563C490DF11FADA2BE1_il2cpp_TypeInfo_var);
|
|
DrawingSettings_t3B64EB029DB6F94A1F2A9B2D19D2969AE361BB49 L_5;
|
|
L_5 = RenderingUtils_CreateDrawingSettings_m3DB61D695B8C38BC10DF00E538DCB622F04189A0(L_0, L_1, L_2, L_3, L_4, NULL);
|
|
return L_5;
|
|
}
|
|
}
|
|
// Method Definition Index: 33322
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ScriptableRenderPass_op_LessThan_m966D3E63781FD503FE98E73D49902B67294BA1C4 (ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* ___0_lhs, ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* ___1_rhs, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Passes/ScriptableRenderPass.cs:877>
|
|
ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* L_0 = ___0_lhs;
|
|
NullCheck(L_0);
|
|
int32_t L_1;
|
|
L_1 = ScriptableRenderPass_get_renderPassEvent_mD7ED1EFBF050FE1F86D598FA9A1A987CFEAD1AEE_inline(L_0, NULL);
|
|
ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* L_2 = ___1_rhs;
|
|
NullCheck(L_2);
|
|
int32_t L_3;
|
|
L_3 = ScriptableRenderPass_get_renderPassEvent_mD7ED1EFBF050FE1F86D598FA9A1A987CFEAD1AEE_inline(L_2, NULL);
|
|
return (bool)((((int32_t)L_1) < ((int32_t)L_3))? 1 : 0);
|
|
}
|
|
}
|
|
// Method Definition Index: 33323
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ScriptableRenderPass_op_GreaterThan_mF57BE5CA09898E0F5B57E240D3159DAC8E536DED (ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* ___0_lhs, ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* ___1_rhs, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Passes/ScriptableRenderPass.cs:888>
|
|
ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* L_0 = ___0_lhs;
|
|
NullCheck(L_0);
|
|
int32_t L_1;
|
|
L_1 = ScriptableRenderPass_get_renderPassEvent_mD7ED1EFBF050FE1F86D598FA9A1A987CFEAD1AEE_inline(L_0, NULL);
|
|
ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* L_2 = ___1_rhs;
|
|
NullCheck(L_2);
|
|
int32_t L_3;
|
|
L_3 = ScriptableRenderPass_get_renderPassEvent_mD7ED1EFBF050FE1F86D598FA9A1A987CFEAD1AEE_inline(L_2, NULL);
|
|
return (bool)((((int32_t)L_1) > ((int32_t)L_3))? 1 : 0);
|
|
}
|
|
}
|
|
// Method Definition Index: 33324
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ScriptableRenderPass_GetRenderPassEventRange_mF12257DB57D18DF179F2581C18A85E68997CB1E9 (int32_t ___0_renderPassEvent, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Debug_t8394C7EEAECA3689C2C9B9DE9C7166D73596276F_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RenderPassEventsEnumValues_tE8866513A09C4EDD3D96842CA57C7C20E2EA47E8_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralBA7C687804C1EF11072FBC5307A8BF964063B68F);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int32_t V_0 = 0;
|
|
int32_t V_1 = 0;
|
|
int32_t V_2 = 0;
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Passes/ScriptableRenderPass.cs:893>
|
|
il2cpp_codegen_runtime_class_init_inline(RenderPassEventsEnumValues_tE8866513A09C4EDD3D96842CA57C7C20E2EA47E8_il2cpp_TypeInfo_var);
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_0 = ((RenderPassEventsEnumValues_tE8866513A09C4EDD3D96842CA57C7C20E2EA47E8_StaticFields*)il2cpp_codegen_static_fields_for(RenderPassEventsEnumValues_tE8866513A09C4EDD3D96842CA57C7C20E2EA47E8_il2cpp_TypeInfo_var))->___values;
|
|
NullCheck(L_0);
|
|
V_0 = ((int32_t)(((RuntimeArray*)L_0)->max_length));
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Passes/ScriptableRenderPass.cs:894>
|
|
V_1 = 0;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Passes/ScriptableRenderPass.cs:897>
|
|
V_2 = 0;
|
|
goto IL_0020;
|
|
}
|
|
|
|
IL_000e:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Passes/ScriptableRenderPass.cs:899>
|
|
il2cpp_codegen_runtime_class_init_inline(RenderPassEventsEnumValues_tE8866513A09C4EDD3D96842CA57C7C20E2EA47E8_il2cpp_TypeInfo_var);
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_1 = ((RenderPassEventsEnumValues_tE8866513A09C4EDD3D96842CA57C7C20E2EA47E8_StaticFields*)il2cpp_codegen_static_fields_for(RenderPassEventsEnumValues_tE8866513A09C4EDD3D96842CA57C7C20E2EA47E8_il2cpp_TypeInfo_var))->___values;
|
|
int32_t L_2 = V_1;
|
|
NullCheck(L_1);
|
|
int32_t L_3 = L_2;
|
|
int32_t L_4 = (L_1)->GetAt(static_cast<il2cpp_array_size_t>(L_3));
|
|
int32_t L_5 = ___0_renderPassEvent;
|
|
if ((((int32_t)L_4) == ((int32_t)L_5)))
|
|
{
|
|
goto IL_0024;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Passes/ScriptableRenderPass.cs:902>
|
|
int32_t L_6 = V_1;
|
|
V_1 = ((int32_t)il2cpp_codegen_add(L_6, 1));
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Passes/ScriptableRenderPass.cs:897>
|
|
int32_t L_7 = V_2;
|
|
V_2 = ((int32_t)il2cpp_codegen_add(L_7, 1));
|
|
}
|
|
|
|
IL_0020:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Passes/ScriptableRenderPass.cs:897>
|
|
int32_t L_8 = V_2;
|
|
int32_t L_9 = V_0;
|
|
if ((((int32_t)L_8) < ((int32_t)L_9)))
|
|
{
|
|
goto IL_000e;
|
|
}
|
|
}
|
|
|
|
IL_0024:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Passes/ScriptableRenderPass.cs:905>
|
|
int32_t L_10 = V_1;
|
|
int32_t L_11 = V_0;
|
|
if ((((int32_t)L_10) < ((int32_t)L_11)))
|
|
{
|
|
goto IL_0034;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Passes/ScriptableRenderPass.cs:907>
|
|
il2cpp_codegen_runtime_class_init_inline(Debug_t8394C7EEAECA3689C2C9B9DE9C7166D73596276F_il2cpp_TypeInfo_var);
|
|
Debug_LogError_mB00B2B4468EF3CAF041B038D840820FB84C924B2(_stringLiteralBA7C687804C1EF11072FBC5307A8BF964063B68F, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Passes/ScriptableRenderPass.cs:908>
|
|
return 0;
|
|
}
|
|
|
|
IL_0034:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Passes/ScriptableRenderPass.cs:911>
|
|
int32_t L_12 = V_1;
|
|
int32_t L_13 = V_0;
|
|
if ((((int32_t)((int32_t)il2cpp_codegen_add(L_12, 1))) < ((int32_t)L_13)))
|
|
{
|
|
goto IL_003d;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Passes/ScriptableRenderPass.cs:912>
|
|
return ((int32_t)50);
|
|
}
|
|
|
|
IL_003d:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Passes/ScriptableRenderPass.cs:914>
|
|
il2cpp_codegen_runtime_class_init_inline(RenderPassEventsEnumValues_tE8866513A09C4EDD3D96842CA57C7C20E2EA47E8_il2cpp_TypeInfo_var);
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_14 = ((RenderPassEventsEnumValues_tE8866513A09C4EDD3D96842CA57C7C20E2EA47E8_StaticFields*)il2cpp_codegen_static_fields_for(RenderPassEventsEnumValues_tE8866513A09C4EDD3D96842CA57C7C20E2EA47E8_il2cpp_TypeInfo_var))->___values;
|
|
int32_t L_15 = V_1;
|
|
NullCheck(L_14);
|
|
int32_t L_16 = ((int32_t)il2cpp_codegen_add(L_15, 1));
|
|
int32_t L_17 = (L_14)->GetAt(static_cast<il2cpp_array_size_t>(L_16));
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Passes/ScriptableRenderPass.cs:916>
|
|
int32_t L_18 = ___0_renderPassEvent;
|
|
return ((int32_t)il2cpp_codegen_subtract(L_17, (int32_t)L_18));
|
|
}
|
|
}
|
|
// Method Definition Index: 33325
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ScriptableRenderPass__cctor_m465560E61068A4DE33DAA7F6B066985E3A6FCD7B (const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RTHandles_t84D932A74064E591F31E9813FBED5D64F5CC888C_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RenderTargetIdentifier_tA528663AC6EB3911D8E91AA40F7070FA5455442B_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Passes/ScriptableRenderPass.cs:211>
|
|
il2cpp_codegen_runtime_class_init_inline(RenderTargetIdentifier_tA528663AC6EB3911D8E91AA40F7070FA5455442B_il2cpp_TypeInfo_var);
|
|
RenderTargetIdentifier_tA528663AC6EB3911D8E91AA40F7070FA5455442B L_0;
|
|
L_0 = RenderTargetIdentifier_op_Implicit_m3E2366E36F14173DBEED75591978EBE1F01A1325(2, NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(RTHandles_t84D932A74064E591F31E9813FBED5D64F5CC888C_il2cpp_TypeInfo_var);
|
|
RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B* L_1;
|
|
L_1 = RTHandles_Alloc_m7EC88962CADCEAB38EAE8D792039466E20874304(L_0, NULL);
|
|
((ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0_StaticFields*)il2cpp_codegen_static_fields_for(ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0_il2cpp_TypeInfo_var))->___k_CameraTarget = L_1;
|
|
Il2CppCodeGenWriteBarrier((void**)(&((ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0_StaticFields*)il2cpp_codegen_static_fields_for(ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0_il2cpp_TypeInfo_var))->___k_CameraTarget), (void*)L_1);
|
|
return;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// Method Definition Index: 33326
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RenderTargetIdentifier_tA528663AC6EB3911D8E91AA40F7070FA5455442B ScriptableRenderer_get_cameraDepth_m94E62D17C40B14BA2EBCCECABE8DE17FAADDCF30 (ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Deprecated.cs:208>
|
|
RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B* L_0 = __this->___m_CameraDepthTarget;
|
|
NullCheck(L_0);
|
|
RenderTargetIdentifier_tA528663AC6EB3911D8E91AA40F7070FA5455442B L_1;
|
|
L_1 = RTHandle_get_nameID_m30AF2567853494DB845D83A8B37D0FB523DA76E9_inline(L_0, NULL);
|
|
return L_1;
|
|
}
|
|
}
|
|
// Method Definition Index: 33327
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ScriptableRenderer_ResetNativeRenderPassFrameData_m5F97E74C153E46C6DC32BF2E0A3F468230DB4C5A (ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int32U5BU5DU5BU5D_t179D865D5B30EFCBC50F82C9774329C15943466E_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int32_t V_0 = 0;
|
|
int32_t V_1 = 0;
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:70>
|
|
Int32U5BU5DU5BU5D_t179D865D5B30EFCBC50F82C9774329C15943466E* L_0 = __this->___m_MergeableRenderPassesMapArrays;
|
|
if (L_0)
|
|
{
|
|
goto IL_0015;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:71>
|
|
Int32U5BU5DU5BU5D_t179D865D5B30EFCBC50F82C9774329C15943466E* L_1 = (Int32U5BU5DU5BU5D_t179D865D5B30EFCBC50F82C9774329C15943466E*)(Int32U5BU5DU5BU5D_t179D865D5B30EFCBC50F82C9774329C15943466E*)SZArrayNew(Int32U5BU5DU5BU5D_t179D865D5B30EFCBC50F82C9774329C15943466E_il2cpp_TypeInfo_var, (uint32_t)((int32_t)10));
|
|
__this->___m_MergeableRenderPassesMapArrays = L_1;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_MergeableRenderPassesMapArrays), (void*)L_1);
|
|
}
|
|
|
|
IL_0015:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:73>
|
|
V_0 = 0;
|
|
goto IL_004e;
|
|
}
|
|
|
|
IL_0019:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:75>
|
|
Int32U5BU5DU5BU5D_t179D865D5B30EFCBC50F82C9774329C15943466E* L_2 = __this->___m_MergeableRenderPassesMapArrays;
|
|
int32_t L_3 = V_0;
|
|
NullCheck(L_2);
|
|
int32_t L_4 = L_3;
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_5 = (L_2)->GetAt(static_cast<il2cpp_array_size_t>(L_4));
|
|
if (L_5)
|
|
{
|
|
goto IL_0032;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:76>
|
|
Int32U5BU5DU5BU5D_t179D865D5B30EFCBC50F82C9774329C15943466E* L_6 = __this->___m_MergeableRenderPassesMapArrays;
|
|
int32_t L_7 = V_0;
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_8 = (Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C*)(Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C*)SZArrayNew(Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C_il2cpp_TypeInfo_var, (uint32_t)((int32_t)20));
|
|
NullCheck(L_6);
|
|
(L_6)->SetAt(static_cast<il2cpp_array_size_t>(L_7), (Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C*)L_8);
|
|
}
|
|
|
|
IL_0032:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:78>
|
|
V_1 = 0;
|
|
goto IL_0045;
|
|
}
|
|
|
|
IL_0036:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:80>
|
|
Int32U5BU5DU5BU5D_t179D865D5B30EFCBC50F82C9774329C15943466E* L_9 = __this->___m_MergeableRenderPassesMapArrays;
|
|
int32_t L_10 = V_0;
|
|
NullCheck(L_9);
|
|
int32_t L_11 = L_10;
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_12 = (L_9)->GetAt(static_cast<il2cpp_array_size_t>(L_11));
|
|
int32_t L_13 = V_1;
|
|
NullCheck(L_12);
|
|
(L_12)->SetAt(static_cast<il2cpp_array_size_t>(L_13), (int32_t)(-1));
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:78>
|
|
int32_t L_14 = V_1;
|
|
V_1 = ((int32_t)il2cpp_codegen_add(L_14, 1));
|
|
}
|
|
|
|
IL_0045:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:78>
|
|
int32_t L_15 = V_1;
|
|
if ((((int32_t)L_15) < ((int32_t)((int32_t)20))))
|
|
{
|
|
goto IL_0036;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:73>
|
|
int32_t L_16 = V_0;
|
|
V_0 = ((int32_t)il2cpp_codegen_add(L_16, 1));
|
|
}
|
|
|
|
IL_004e:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:73>
|
|
int32_t L_17 = V_0;
|
|
if ((((int32_t)L_17) < ((int32_t)((int32_t)10))))
|
|
{
|
|
goto IL_0019;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:84>
|
|
__this->___m_firstPassIndexOfLastMergeableGroup = 0;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:85>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 33328
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ScriptableRenderer_SetupNativeRenderPassFrameData_m7900DE2C595DDB465564A410595B3CDAA13CAF51 (ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892* __this, UniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7* ___0_cameraData, bool ___1_isRenderPassEnabled, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Debug_t8394C7EEAECA3689C2C9B9DE9C7166D73596276F_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_Add_m31B58F13ADA6D08C1CC6E191031B840006313562_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_Add_m8FFD29D21BD0C02508E87C664C42869EA125EC92_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_Clear_m4BE2EA63EDA7838BC522E8BFE24EBDBCA0E98482_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_Clear_mB11ECB26BB643F5FFF3BD0291E7328DFC6A2712B_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_ContainsKey_mB39B89C4FB0361792450F10D25B8201B4301F28C_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_get_Count_m6A86480525D2034B01C263B792951888765560DC_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_get_Item_m88A84F3C4F3B87068DF58800EC51E4BAE278F826_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Count_mE6D3D9D20C29AB0625389FEF206BBFF202CD5293_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Item_mBC42042D4082F4C6237FEA3435D58D570436268F_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NativeArray_1__ctor_mB7BB23924A114599D399A5EC6C00B2B6407CF66D_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Profiling_t1148A935DE86EC9E67DA54238721B4178A744AD3_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral556B234B7781948D45A2C65D7313B6D6367B5528);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
ProfilingScope_t57898BA31E8EF8F083EF84E0DA2737AC61CBC5BD V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
uint32_t V_1 = 0;
|
|
int32_t V_2 = 0;
|
|
ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* V_3 = NULL;
|
|
RenderPassDescriptor_t69F0595A52DBEEBFE5A491D3E8E27D530069B0C5 V_4;
|
|
memset((&V_4), 0, sizeof(V_4));
|
|
Hash128_t93367F504B687578F893CDBCD13FB95AC8A87A40 V_5;
|
|
memset((&V_5), 0, sizeof(V_5));
|
|
int32_t V_6 = 0;
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:94>
|
|
il2cpp_codegen_runtime_class_init_inline(Profiling_t1148A935DE86EC9E67DA54238721B4178A744AD3_il2cpp_TypeInfo_var);
|
|
ProfilingSampler_t420D4672EDB44E0EF980B31ADFD9E5747200FECE* L_0 = ((Profiling_t1148A935DE86EC9E67DA54238721B4178A744AD3_StaticFields*)il2cpp_codegen_static_fields_for(Profiling_t1148A935DE86EC9E67DA54238721B4178A744AD3_il2cpp_TypeInfo_var))->___setupFrameData;
|
|
ProfilingScope__ctor_m4B73587A2295443A73B64DDD3D484D8EAECC0D65((&V_0), L_0, NULL);
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_01db:
|
|
{
|
|
ProfilingScope_Dispose_m4231A2ACA1F8E345BB0078310A9F7601704C8BE4((&V_0), NULL);
|
|
return;
|
|
}
|
|
});
|
|
try
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:96>
|
|
List_1_t2E485E650BF1E41358CE56A69323E183C5A89CB6* L_1 = __this->___m_ActiveRenderPassQueue;
|
|
NullCheck(L_1);
|
|
int32_t L_2;
|
|
L_2 = List_1_get_Count_mE6D3D9D20C29AB0625389FEF206BBFF202CD5293_inline(L_1, List_1_get_Count_mE6D3D9D20C29AB0625389FEF206BBFF202CD5293_RuntimeMethod_var);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:99>
|
|
Dictionary_2_tCB9019887EB0254D4745B0724BC12327C5B63792* L_3 = __this->___m_MergeableRenderPassesMap;
|
|
NullCheck(L_3);
|
|
Dictionary_2_Clear_m4BE2EA63EDA7838BC522E8BFE24EBDBCA0E98482(L_3, Dictionary_2_Clear_m4BE2EA63EDA7838BC522E8BFE24EBDBCA0E98482_RuntimeMethod_var);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:100>
|
|
Dictionary_2_tB41FAC88F07BAB98D6D373F7C94FB0496D1BDA32* L_4 = __this->___m_RenderPassesAttachmentCount;
|
|
NullCheck(L_4);
|
|
Dictionary_2_Clear_mB11ECB26BB643F5FFF3BD0291E7328DFC6A2712B(L_4, Dictionary_2_Clear_mB11ECB26BB643F5FFF3BD0291E7328DFC6A2712B_RuntimeMethod_var);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:101>
|
|
V_1 = 0;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:103>
|
|
V_2 = 0;
|
|
goto IL_017a_1;
|
|
}
|
|
|
|
IL_0037_1:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:105>
|
|
List_1_t2E485E650BF1E41358CE56A69323E183C5A89CB6* L_5 = __this->___m_ActiveRenderPassQueue;
|
|
int32_t L_6 = V_2;
|
|
NullCheck(L_5);
|
|
ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* L_7;
|
|
L_7 = List_1_get_Item_mBC42042D4082F4C6237FEA3435D58D570436268F(L_5, L_6, List_1_get_Item_mBC42042D4082F4C6237FEA3435D58D570436268F_RuntimeMethod_var);
|
|
V_3 = L_7;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:109>
|
|
ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* L_8 = V_3;
|
|
bool L_9;
|
|
L_9 = ScriptableRenderer_IsRenderPassEnabled_m62F183DF3911C7360F8C812DA5E976D08D9ADB7B(__this, L_8, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:111>
|
|
if (!L_9)
|
|
{
|
|
goto IL_0176_1;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:115>
|
|
int32_t L_10 = V_2;
|
|
if ((((int32_t)L_10) < ((int32_t)((int32_t)20))))
|
|
{
|
|
goto IL_0070_1;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:117>
|
|
int32_t L_11 = ((int32_t)20);
|
|
RuntimeObject* L_12 = Box(il2cpp_defaults.int32_class, &L_11);
|
|
String_t* L_13;
|
|
L_13 = String_Format_mA8DBB4C2516B9723C5A41E6CB1E2FAF4BBE96DD8(_stringLiteral556B234B7781948D45A2C65D7313B6D6367B5528, L_12, NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(Debug_t8394C7EEAECA3689C2C9B9DE9C7166D73596276F_il2cpp_TypeInfo_var);
|
|
Debug_LogError_mB00B2B4468EF3CAF041B038D840820FB84C924B2(L_13, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:118>
|
|
goto IL_01e9;
|
|
}
|
|
|
|
IL_0070_1:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:121>
|
|
ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* L_14 = V_3;
|
|
int32_t L_15 = V_2;
|
|
NullCheck(L_14);
|
|
ScriptableRenderPass_set_renderPassQueueIndex_m102EDED778C0A087DF2E7E1C91351EB99AD827FB_inline(L_14, L_15, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:123>
|
|
UniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7* L_16 = ___0_cameraData;
|
|
ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* L_17 = V_3;
|
|
RenderPassDescriptor_t69F0595A52DBEEBFE5A491D3E8E27D530069B0C5 L_18;
|
|
L_18 = ScriptableRenderer_InitializeRenderPassDescriptor_mA2BED336FF2583DEE2FF881D5FC09673DEB74121(__this, L_16, L_17, NULL);
|
|
V_4 = L_18;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:125>
|
|
RenderPassDescriptor_t69F0595A52DBEEBFE5A491D3E8E27D530069B0C5 L_19 = V_4;
|
|
uint32_t L_20 = V_1;
|
|
il2cpp_codegen_runtime_class_init_inline(ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892_il2cpp_TypeInfo_var);
|
|
Hash128_t93367F504B687578F893CDBCD13FB95AC8A87A40 L_21;
|
|
L_21 = ScriptableRenderer_CreateRenderPassHash_m57E9275A76DCFAF3E0FF51E184451B1052567585(L_19, L_20, NULL);
|
|
V_5 = L_21;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:127>
|
|
Hash128U5BU5D_tB104E7247B842648E447B7FCF4748077DC1F8C98* L_22 = __this->___m_PassIndexToPassHash;
|
|
int32_t L_23 = V_2;
|
|
Hash128_t93367F504B687578F893CDBCD13FB95AC8A87A40 L_24 = V_5;
|
|
NullCheck(L_22);
|
|
(L_22)->SetAt(static_cast<il2cpp_array_size_t>(L_23), (Hash128_t93367F504B687578F893CDBCD13FB95AC8A87A40)L_24);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:129>
|
|
Dictionary_2_tCB9019887EB0254D4745B0724BC12327C5B63792* L_25 = __this->___m_MergeableRenderPassesMap;
|
|
Hash128_t93367F504B687578F893CDBCD13FB95AC8A87A40 L_26 = V_5;
|
|
NullCheck(L_25);
|
|
bool L_27;
|
|
L_27 = Dictionary_2_ContainsKey_mB39B89C4FB0361792450F10D25B8201B4301F28C(L_25, L_26, Dictionary_2_ContainsKey_mB39B89C4FB0361792450F10D25B8201B4301F28C_RuntimeMethod_var);
|
|
if (L_27)
|
|
{
|
|
goto IL_00de_1;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:131>
|
|
Dictionary_2_tCB9019887EB0254D4745B0724BC12327C5B63792* L_28 = __this->___m_MergeableRenderPassesMap;
|
|
Hash128_t93367F504B687578F893CDBCD13FB95AC8A87A40 L_29 = V_5;
|
|
Int32U5BU5DU5BU5D_t179D865D5B30EFCBC50F82C9774329C15943466E* L_30 = __this->___m_MergeableRenderPassesMapArrays;
|
|
Dictionary_2_tCB9019887EB0254D4745B0724BC12327C5B63792* L_31 = __this->___m_MergeableRenderPassesMap;
|
|
NullCheck(L_31);
|
|
int32_t L_32;
|
|
L_32 = Dictionary_2_get_Count_m6A86480525D2034B01C263B792951888765560DC(L_31, Dictionary_2_get_Count_m6A86480525D2034B01C263B792951888765560DC_RuntimeMethod_var);
|
|
NullCheck(L_30);
|
|
int32_t L_33 = L_32;
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_34 = (L_30)->GetAt(static_cast<il2cpp_array_size_t>(L_33));
|
|
NullCheck(L_28);
|
|
Dictionary_2_Add_m8FFD29D21BD0C02508E87C664C42869EA125EC92(L_28, L_29, L_34, Dictionary_2_Add_m8FFD29D21BD0C02508E87C664C42869EA125EC92_RuntimeMethod_var);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:132>
|
|
Dictionary_2_tB41FAC88F07BAB98D6D373F7C94FB0496D1BDA32* L_35 = __this->___m_RenderPassesAttachmentCount;
|
|
Hash128_t93367F504B687578F893CDBCD13FB95AC8A87A40 L_36 = V_5;
|
|
NullCheck(L_35);
|
|
Dictionary_2_Add_m31B58F13ADA6D08C1CC6E191031B840006313562(L_35, L_36, 0, Dictionary_2_Add_m31B58F13ADA6D08C1CC6E191031B840006313562_RuntimeMethod_var);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:133>
|
|
int32_t L_37 = V_2;
|
|
__this->___m_firstPassIndexOfLastMergeableGroup = L_37;
|
|
goto IL_0155_1;
|
|
}
|
|
|
|
IL_00de_1:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:135>
|
|
Dictionary_2_tCB9019887EB0254D4745B0724BC12327C5B63792* L_38 = __this->___m_MergeableRenderPassesMap;
|
|
Hash128_t93367F504B687578F893CDBCD13FB95AC8A87A40 L_39 = V_5;
|
|
NullCheck(L_38);
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_40;
|
|
L_40 = Dictionary_2_get_Item_m88A84F3C4F3B87068DF58800EC51E4BAE278F826(L_38, L_39, Dictionary_2_get_Item_m88A84F3C4F3B87068DF58800EC51E4BAE278F826_RuntimeMethod_var);
|
|
Dictionary_2_tCB9019887EB0254D4745B0724BC12327C5B63792* L_41 = __this->___m_MergeableRenderPassesMap;
|
|
Hash128_t93367F504B687578F893CDBCD13FB95AC8A87A40 L_42 = V_5;
|
|
NullCheck(L_41);
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_43;
|
|
L_43 = Dictionary_2_get_Item_m88A84F3C4F3B87068DF58800EC51E4BAE278F826(L_41, L_42, Dictionary_2_get_Item_m88A84F3C4F3B87068DF58800EC51E4BAE278F826_RuntimeMethod_var);
|
|
il2cpp_codegen_runtime_class_init_inline(ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892_il2cpp_TypeInfo_var);
|
|
int32_t L_44;
|
|
L_44 = ScriptableRenderer_GetValidPassIndexCount_m279EDCB7B38DE3813CB7AC0AF7F204A1D9FDD9F8(L_43, NULL);
|
|
NullCheck(L_40);
|
|
int32_t L_45 = ((int32_t)il2cpp_codegen_subtract(L_44, 1));
|
|
int32_t L_46 = (L_40)->GetAt(static_cast<il2cpp_array_size_t>(L_45));
|
|
int32_t L_47 = V_2;
|
|
if ((((int32_t)L_46) == ((int32_t)((int32_t)il2cpp_codegen_subtract(L_47, 1)))))
|
|
{
|
|
goto IL_0155_1;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:138>
|
|
uint32_t L_48 = V_1;
|
|
V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_48, 1));
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:139>
|
|
RenderPassDescriptor_t69F0595A52DBEEBFE5A491D3E8E27D530069B0C5 L_49 = V_4;
|
|
uint32_t L_50 = V_1;
|
|
il2cpp_codegen_runtime_class_init_inline(ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892_il2cpp_TypeInfo_var);
|
|
Hash128_t93367F504B687578F893CDBCD13FB95AC8A87A40 L_51;
|
|
L_51 = ScriptableRenderer_CreateRenderPassHash_m57E9275A76DCFAF3E0FF51E184451B1052567585(L_49, L_50, NULL);
|
|
V_5 = L_51;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:140>
|
|
Hash128U5BU5D_tB104E7247B842648E447B7FCF4748077DC1F8C98* L_52 = __this->___m_PassIndexToPassHash;
|
|
int32_t L_53 = V_2;
|
|
Hash128_t93367F504B687578F893CDBCD13FB95AC8A87A40 L_54 = V_5;
|
|
NullCheck(L_52);
|
|
(L_52)->SetAt(static_cast<il2cpp_array_size_t>(L_53), (Hash128_t93367F504B687578F893CDBCD13FB95AC8A87A40)L_54);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:142>
|
|
Dictionary_2_tCB9019887EB0254D4745B0724BC12327C5B63792* L_55 = __this->___m_MergeableRenderPassesMap;
|
|
Hash128_t93367F504B687578F893CDBCD13FB95AC8A87A40 L_56 = V_5;
|
|
Int32U5BU5DU5BU5D_t179D865D5B30EFCBC50F82C9774329C15943466E* L_57 = __this->___m_MergeableRenderPassesMapArrays;
|
|
Dictionary_2_tCB9019887EB0254D4745B0724BC12327C5B63792* L_58 = __this->___m_MergeableRenderPassesMap;
|
|
NullCheck(L_58);
|
|
int32_t L_59;
|
|
L_59 = Dictionary_2_get_Count_m6A86480525D2034B01C263B792951888765560DC(L_58, Dictionary_2_get_Count_m6A86480525D2034B01C263B792951888765560DC_RuntimeMethod_var);
|
|
NullCheck(L_57);
|
|
int32_t L_60 = L_59;
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_61 = (L_57)->GetAt(static_cast<il2cpp_array_size_t>(L_60));
|
|
NullCheck(L_55);
|
|
Dictionary_2_Add_m8FFD29D21BD0C02508E87C664C42869EA125EC92(L_55, L_56, L_61, Dictionary_2_Add_m8FFD29D21BD0C02508E87C664C42869EA125EC92_RuntimeMethod_var);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:143>
|
|
Dictionary_2_tB41FAC88F07BAB98D6D373F7C94FB0496D1BDA32* L_62 = __this->___m_RenderPassesAttachmentCount;
|
|
Hash128_t93367F504B687578F893CDBCD13FB95AC8A87A40 L_63 = V_5;
|
|
NullCheck(L_62);
|
|
Dictionary_2_Add_m31B58F13ADA6D08C1CC6E191031B840006313562(L_62, L_63, 0, Dictionary_2_Add_m31B58F13ADA6D08C1CC6E191031B840006313562_RuntimeMethod_var);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:144>
|
|
int32_t L_64 = V_2;
|
|
__this->___m_firstPassIndexOfLastMergeableGroup = L_64;
|
|
}
|
|
|
|
IL_0155_1:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:147>
|
|
Dictionary_2_tCB9019887EB0254D4745B0724BC12327C5B63792* L_65 = __this->___m_MergeableRenderPassesMap;
|
|
Hash128_t93367F504B687578F893CDBCD13FB95AC8A87A40 L_66 = V_5;
|
|
NullCheck(L_65);
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_67;
|
|
L_67 = Dictionary_2_get_Item_m88A84F3C4F3B87068DF58800EC51E4BAE278F826(L_65, L_66, Dictionary_2_get_Item_m88A84F3C4F3B87068DF58800EC51E4BAE278F826_RuntimeMethod_var);
|
|
Dictionary_2_tCB9019887EB0254D4745B0724BC12327C5B63792* L_68 = __this->___m_MergeableRenderPassesMap;
|
|
Hash128_t93367F504B687578F893CDBCD13FB95AC8A87A40 L_69 = V_5;
|
|
NullCheck(L_68);
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_70;
|
|
L_70 = Dictionary_2_get_Item_m88A84F3C4F3B87068DF58800EC51E4BAE278F826(L_68, L_69, Dictionary_2_get_Item_m88A84F3C4F3B87068DF58800EC51E4BAE278F826_RuntimeMethod_var);
|
|
il2cpp_codegen_runtime_class_init_inline(ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892_il2cpp_TypeInfo_var);
|
|
int32_t L_71;
|
|
L_71 = ScriptableRenderer_GetValidPassIndexCount_m279EDCB7B38DE3813CB7AC0AF7F204A1D9FDD9F8(L_70, NULL);
|
|
int32_t L_72 = V_2;
|
|
NullCheck(L_67);
|
|
(L_67)->SetAt(static_cast<il2cpp_array_size_t>(L_71), (int32_t)L_72);
|
|
}
|
|
|
|
IL_0176_1:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:103>
|
|
int32_t L_73 = V_2;
|
|
V_2 = ((int32_t)il2cpp_codegen_add(L_73, 1));
|
|
}
|
|
|
|
IL_017a_1:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:103>
|
|
int32_t L_74 = V_2;
|
|
List_1_t2E485E650BF1E41358CE56A69323E183C5A89CB6* L_75 = __this->___m_ActiveRenderPassQueue;
|
|
NullCheck(L_75);
|
|
int32_t L_76;
|
|
L_76 = List_1_get_Count_mE6D3D9D20C29AB0625389FEF206BBFF202CD5293_inline(L_75, List_1_get_Count_mE6D3D9D20C29AB0625389FEF206BBFF202CD5293_RuntimeMethod_var);
|
|
if ((((int32_t)L_74) < ((int32_t)L_76)))
|
|
{
|
|
goto IL_0037_1;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:150>
|
|
V_6 = 0;
|
|
goto IL_01ca_1;
|
|
}
|
|
|
|
IL_0190_1:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:152>
|
|
List_1_t2E485E650BF1E41358CE56A69323E183C5A89CB6* L_77 = __this->___m_ActiveRenderPassQueue;
|
|
int32_t L_78 = V_6;
|
|
NullCheck(L_77);
|
|
ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* L_79;
|
|
L_79 = List_1_get_Item_mBC42042D4082F4C6237FEA3435D58D570436268F(L_77, L_78, List_1_get_Item_mBC42042D4082F4C6237FEA3435D58D570436268F_RuntimeMethod_var);
|
|
NativeArray_1_tA833EB7E3E1C9AF82C37976AD964B8D4BAC38B2C L_80;
|
|
memset((&L_80), 0, sizeof(L_80));
|
|
NativeArray_1__ctor_mB7BB23924A114599D399A5EC6C00B2B6407CF66D((&L_80), 8, 2, 1, NativeArray_1__ctor_mB7BB23924A114599D399A5EC6C00B2B6407CF66D_RuntimeMethod_var);
|
|
NullCheck(L_79);
|
|
L_79->___m_ColorAttachmentIndices = L_80;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:153>
|
|
List_1_t2E485E650BF1E41358CE56A69323E183C5A89CB6* L_81 = __this->___m_ActiveRenderPassQueue;
|
|
int32_t L_82 = V_6;
|
|
NullCheck(L_81);
|
|
ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* L_83;
|
|
L_83 = List_1_get_Item_mBC42042D4082F4C6237FEA3435D58D570436268F(L_81, L_82, List_1_get_Item_mBC42042D4082F4C6237FEA3435D58D570436268F_RuntimeMethod_var);
|
|
NativeArray_1_tA833EB7E3E1C9AF82C37976AD964B8D4BAC38B2C L_84;
|
|
memset((&L_84), 0, sizeof(L_84));
|
|
NativeArray_1__ctor_mB7BB23924A114599D399A5EC6C00B2B6407CF66D((&L_84), 8, 2, 1, NativeArray_1__ctor_mB7BB23924A114599D399A5EC6C00B2B6407CF66D_RuntimeMethod_var);
|
|
NullCheck(L_83);
|
|
L_83->___m_InputAttachmentIndices = L_84;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:150>
|
|
int32_t L_85 = V_6;
|
|
V_6 = ((int32_t)il2cpp_codegen_add(L_85, 1));
|
|
}
|
|
|
|
IL_01ca_1:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:150>
|
|
int32_t L_86 = V_6;
|
|
List_1_t2E485E650BF1E41358CE56A69323E183C5A89CB6* L_87 = __this->___m_ActiveRenderPassQueue;
|
|
NullCheck(L_87);
|
|
int32_t L_88;
|
|
L_88 = List_1_get_Count_mE6D3D9D20C29AB0625389FEF206BBFF202CD5293_inline(L_87, List_1_get_Count_mE6D3D9D20C29AB0625389FEF206BBFF202CD5293_RuntimeMethod_var);
|
|
if ((((int32_t)L_86) < ((int32_t)L_88)))
|
|
{
|
|
goto IL_0190_1;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:155>
|
|
goto IL_01e9;
|
|
}
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_01e9:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:156>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 33329
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ScriptableRenderer_UpdateFinalStoreActions_m135A9C4E66BE5FF0EE2ED10781CB316313986152 (ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892* __this, Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ___0_currentMergeablePasses, UniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7* ___1_cameraData, bool ___2_isLastMergeableGroup, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Item_mBC42042D4082F4C6237FEA3435D58D570436268F_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int32_t V_0 = 0;
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* V_1 = NULL;
|
|
int32_t V_2 = 0;
|
|
int32_t V_3 = 0;
|
|
ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* V_4 = NULL;
|
|
int32_t V_5 = 0;
|
|
bool V_6 = false;
|
|
RenderTextureDescriptor_t69845881CE6437E4E61F92074F2F84079F23FA46 V_7;
|
|
memset((&V_7), 0, sizeof(V_7));
|
|
int32_t V_8 = 0;
|
|
int32_t G_B11_0 = 0;
|
|
int32_t G_B14_0 = 0;
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:160>
|
|
V_0 = 0;
|
|
goto IL_0011;
|
|
}
|
|
|
|
IL_0004:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:161>
|
|
RenderBufferStoreActionU5BU5D_tFEA8F5DD460573EA9F35FBEC5727D1804C5DCBF5* L_0 = __this->___m_FinalColorStoreAction;
|
|
int32_t L_1 = V_0;
|
|
NullCheck(L_0);
|
|
(L_0)->SetAt(static_cast<il2cpp_array_size_t>(L_1), (int32_t)0);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:160>
|
|
int32_t L_2 = V_0;
|
|
V_0 = ((int32_t)il2cpp_codegen_add(L_2, 1));
|
|
}
|
|
|
|
IL_0011:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:160>
|
|
int32_t L_3 = V_0;
|
|
RenderBufferStoreActionU5BU5D_tFEA8F5DD460573EA9F35FBEC5727D1804C5DCBF5* L_4 = __this->___m_FinalColorStoreAction;
|
|
NullCheck(L_4);
|
|
if ((((int32_t)L_3) < ((int32_t)((int32_t)(((RuntimeArray*)L_4)->max_length)))))
|
|
{
|
|
goto IL_0004;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:162>
|
|
__this->___m_FinalDepthStoreAction = 0;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:164>
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_5 = ___0_currentMergeablePasses;
|
|
V_1 = L_5;
|
|
V_2 = 0;
|
|
goto IL_01ab;
|
|
}
|
|
|
|
IL_002c:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:164>
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_6 = V_1;
|
|
int32_t L_7 = V_2;
|
|
NullCheck(L_6);
|
|
int32_t L_8 = L_7;
|
|
int32_t L_9 = (L_6)->GetAt(static_cast<il2cpp_array_size_t>(L_8));
|
|
V_3 = L_9;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:166>
|
|
il2cpp_codegen_runtime_class_init_inline(ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892_il2cpp_TypeInfo_var);
|
|
bool L_10 = ((ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892_StaticFields*)il2cpp_codegen_static_fields_for(ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892_il2cpp_TypeInfo_var))->___m_UseOptimizedStoreActions;
|
|
if (!L_10)
|
|
{
|
|
goto IL_01b4;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:169>
|
|
int32_t L_11 = V_3;
|
|
if ((((int32_t)L_11) == ((int32_t)(-1))))
|
|
{
|
|
goto IL_01b4;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:172>
|
|
List_1_t2E485E650BF1E41358CE56A69323E183C5A89CB6* L_12 = __this->___m_ActiveRenderPassQueue;
|
|
int32_t L_13 = V_3;
|
|
NullCheck(L_12);
|
|
ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* L_14;
|
|
L_14 = List_1_get_Item_mBC42042D4082F4C6237FEA3435D58D570436268F(L_12, L_13, List_1_get_Item_mBC42042D4082F4C6237FEA3435D58D570436268F_RuntimeMethod_var);
|
|
V_4 = L_14;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:174>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:175>
|
|
ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* L_15 = V_4;
|
|
NullCheck(L_15);
|
|
bool L_16;
|
|
L_16 = ScriptableRenderPass_get_overrideCameraTarget_m343BA9235CD254354013E3CFD6EC519958597128_inline(L_15, NULL);
|
|
if (L_16)
|
|
{
|
|
goto IL_0089;
|
|
}
|
|
}
|
|
{
|
|
UniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7* L_17 = ___1_cameraData;
|
|
NullCheck(L_17);
|
|
RenderTexture_tBA90C4C3AD9EECCFDDCC632D97C29FAB80D60D27* L_18 = L_17->___targetTexture;
|
|
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
bool L_19;
|
|
L_19 = Object_op_Inequality_mD0BE578448EAA61948F25C32F8DD55AB1F778602(L_18, (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C*)NULL, NULL);
|
|
if (L_19)
|
|
{
|
|
goto IL_0073;
|
|
}
|
|
}
|
|
{
|
|
UniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7* L_20 = ___1_cameraData;
|
|
NullCheck(L_20);
|
|
RenderTextureDescriptor_t69845881CE6437E4E61F92074F2F84079F23FA46* L_21 = (RenderTextureDescriptor_t69845881CE6437E4E61F92074F2F84079F23FA46*)(&L_20->___cameraTargetDescriptor);
|
|
int32_t L_22;
|
|
L_22 = RenderTextureDescriptor_get_msaaSamples_mFCC33643AFF2265C8305DCFD79ED8774A1A8FA22_inline(L_21, NULL);
|
|
G_B11_0 = L_22;
|
|
goto IL_00a3;
|
|
}
|
|
|
|
IL_0073:
|
|
{
|
|
UniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7* L_23 = ___1_cameraData;
|
|
NullCheck(L_23);
|
|
RenderTexture_tBA90C4C3AD9EECCFDDCC632D97C29FAB80D60D27* L_24 = L_23->___targetTexture;
|
|
NullCheck(L_24);
|
|
RenderTextureDescriptor_t69845881CE6437E4E61F92074F2F84079F23FA46 L_25;
|
|
L_25 = RenderTexture_get_descriptor_m2FABD5CF6CCF410D1311FCBC7C9D9ECDEE9C7CC2(L_24, NULL);
|
|
V_7 = L_25;
|
|
int32_t L_26;
|
|
L_26 = RenderTextureDescriptor_get_msaaSamples_mFCC33643AFF2265C8305DCFD79ED8774A1A8FA22_inline((&V_7), NULL);
|
|
G_B11_0 = L_26;
|
|
goto IL_00a3;
|
|
}
|
|
|
|
IL_0089:
|
|
{
|
|
ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* L_27 = V_4;
|
|
il2cpp_codegen_runtime_class_init_inline(ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892_il2cpp_TypeInfo_var);
|
|
RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B* L_28;
|
|
L_28 = ScriptableRenderer_GetFirstAllocatedRTHandle_mA7E143CC52CBD682A3355221BB216C2D3691130A(L_27, NULL);
|
|
NullCheck(L_28);
|
|
RenderTexture_tBA90C4C3AD9EECCFDDCC632D97C29FAB80D60D27* L_29;
|
|
L_29 = RTHandle_get_rt_m593F2799E2E6C97979D3B4CD9E992D305922BBE9_inline(L_28, NULL);
|
|
NullCheck(L_29);
|
|
RenderTextureDescriptor_t69845881CE6437E4E61F92074F2F84079F23FA46 L_30;
|
|
L_30 = RenderTexture_get_descriptor_m2FABD5CF6CCF410D1311FCBC7C9D9ECDEE9C7CC2(L_29, NULL);
|
|
V_7 = L_30;
|
|
int32_t L_31;
|
|
L_31 = RenderTextureDescriptor_get_msaaSamples_mFCC33643AFF2265C8305DCFD79ED8774A1A8FA22_inline((&V_7), NULL);
|
|
G_B11_0 = L_31;
|
|
}
|
|
|
|
IL_00a3:
|
|
{
|
|
V_5 = G_B11_0;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:177>
|
|
UniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7* L_32 = ___1_cameraData;
|
|
NullCheck(L_32);
|
|
ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892* L_33 = L_32->___renderer;
|
|
if (!L_33)
|
|
{
|
|
goto IL_00bf;
|
|
}
|
|
}
|
|
{
|
|
UniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7* L_34 = ___1_cameraData;
|
|
NullCheck(L_34);
|
|
ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892* L_35 = L_34->___renderer;
|
|
NullCheck(L_35);
|
|
RenderingFeatures_t31044CBDCDC2F05194BFA2A2122FBD937D78A371* L_36;
|
|
L_36 = ScriptableRenderer_get_supportedRenderingFeatures_m8866E002AF2D9D7C3E70946193B656850A4FC56F_inline(L_35, NULL);
|
|
NullCheck(L_36);
|
|
bool L_37;
|
|
L_37 = RenderingFeatures_get_msaa_m7DB8FFB8E541A7444D1FB96BC86AFE390B776C36_inline(L_36, NULL);
|
|
G_B14_0 = ((int32_t)(L_37));
|
|
goto IL_00c0;
|
|
}
|
|
|
|
IL_00bf:
|
|
{
|
|
G_B14_0 = 0;
|
|
}
|
|
|
|
IL_00c0:
|
|
{
|
|
V_6 = (bool)G_B14_0;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:178>
|
|
UniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7* L_38 = ___1_cameraData;
|
|
NullCheck(L_38);
|
|
Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184* L_39 = L_38->___camera;
|
|
NullCheck(L_39);
|
|
bool L_40;
|
|
L_40 = Camera_get_allowMSAA_mC316155B22B679709F85BA9AE3F7931C30EE7AF4(L_39, NULL);
|
|
if (!L_40)
|
|
{
|
|
goto IL_00d3;
|
|
}
|
|
}
|
|
{
|
|
bool L_41 = V_6;
|
|
if (L_41)
|
|
{
|
|
goto IL_00d6;
|
|
}
|
|
}
|
|
|
|
IL_00d3:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:179>
|
|
V_5 = 1;
|
|
}
|
|
|
|
IL_00d6:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:182>
|
|
V_8 = 0;
|
|
goto IL_0167;
|
|
}
|
|
|
|
IL_00de:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:184>
|
|
RenderBufferStoreActionU5BU5D_tFEA8F5DD460573EA9F35FBEC5727D1804C5DCBF5* L_42 = __this->___m_FinalColorStoreAction;
|
|
int32_t L_43 = V_8;
|
|
NullCheck(L_42);
|
|
int32_t L_44 = L_43;
|
|
int32_t L_45 = (int32_t)(L_42)->GetAt(static_cast<il2cpp_array_size_t>(L_44));
|
|
if (!L_45)
|
|
{
|
|
goto IL_0101;
|
|
}
|
|
}
|
|
{
|
|
RenderBufferStoreActionU5BU5D_tFEA8F5DD460573EA9F35FBEC5727D1804C5DCBF5* L_46 = __this->___m_FinalColorStoreAction;
|
|
int32_t L_47 = V_8;
|
|
NullCheck(L_46);
|
|
int32_t L_48 = L_47;
|
|
int32_t L_49 = (int32_t)(L_46)->GetAt(static_cast<il2cpp_array_size_t>(L_48));
|
|
if ((((int32_t)L_49) == ((int32_t)2)))
|
|
{
|
|
goto IL_0101;
|
|
}
|
|
}
|
|
{
|
|
ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* L_50 = V_4;
|
|
NullCheck(L_50);
|
|
BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* L_51;
|
|
L_51 = ScriptableRenderPass_get_overriddenColorStoreActions_m7C286926155F30C6B51B97A3B494343597077A93_inline(L_50, NULL);
|
|
int32_t L_52 = V_8;
|
|
NullCheck(L_51);
|
|
int32_t L_53 = L_52;
|
|
uint8_t L_54 = (uint8_t)(L_51)->GetAt(static_cast<il2cpp_array_size_t>(L_53));
|
|
if (!L_54)
|
|
{
|
|
goto IL_0114;
|
|
}
|
|
}
|
|
|
|
IL_0101:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:185>
|
|
RenderBufferStoreActionU5BU5D_tFEA8F5DD460573EA9F35FBEC5727D1804C5DCBF5* L_55 = __this->___m_FinalColorStoreAction;
|
|
int32_t L_56 = V_8;
|
|
ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* L_57 = V_4;
|
|
NullCheck(L_57);
|
|
RenderBufferStoreActionU5BU5D_tFEA8F5DD460573EA9F35FBEC5727D1804C5DCBF5* L_58;
|
|
L_58 = ScriptableRenderPass_get_colorStoreActions_m8512840B6D3802C9C09D357894358BAF8FE907D7_inline(L_57, NULL);
|
|
int32_t L_59 = V_8;
|
|
NullCheck(L_58);
|
|
int32_t L_60 = L_59;
|
|
int32_t L_61 = (int32_t)(L_58)->GetAt(static_cast<il2cpp_array_size_t>(L_60));
|
|
NullCheck(L_55);
|
|
(L_55)->SetAt(static_cast<il2cpp_array_size_t>(L_56), (int32_t)L_61);
|
|
}
|
|
|
|
IL_0114:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:187>
|
|
int32_t L_62 = V_5;
|
|
if ((((int32_t)L_62) <= ((int32_t)1)))
|
|
{
|
|
goto IL_0161;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:189>
|
|
RenderBufferStoreActionU5BU5D_tFEA8F5DD460573EA9F35FBEC5727D1804C5DCBF5* L_63 = __this->___m_FinalColorStoreAction;
|
|
int32_t L_64 = V_8;
|
|
NullCheck(L_63);
|
|
int32_t L_65 = L_64;
|
|
int32_t L_66 = (int32_t)(L_63)->GetAt(static_cast<il2cpp_array_size_t>(L_65));
|
|
if (L_66)
|
|
{
|
|
goto IL_0130;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:190>
|
|
RenderBufferStoreActionU5BU5D_tFEA8F5DD460573EA9F35FBEC5727D1804C5DCBF5* L_67 = __this->___m_FinalColorStoreAction;
|
|
int32_t L_68 = V_8;
|
|
NullCheck(L_67);
|
|
(L_67)->SetAt(static_cast<il2cpp_array_size_t>(L_68), (int32_t)2);
|
|
goto IL_0161;
|
|
}
|
|
|
|
IL_0130:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:191>
|
|
RenderBufferStoreActionU5BU5D_tFEA8F5DD460573EA9F35FBEC5727D1804C5DCBF5* L_69 = __this->___m_FinalColorStoreAction;
|
|
int32_t L_70 = V_8;
|
|
NullCheck(L_69);
|
|
int32_t L_71 = L_70;
|
|
int32_t L_72 = (int32_t)(L_69)->GetAt(static_cast<il2cpp_array_size_t>(L_71));
|
|
if ((!(((uint32_t)L_72) == ((uint32_t)3))))
|
|
{
|
|
goto IL_0148;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:192>
|
|
RenderBufferStoreActionU5BU5D_tFEA8F5DD460573EA9F35FBEC5727D1804C5DCBF5* L_73 = __this->___m_FinalColorStoreAction;
|
|
int32_t L_74 = V_8;
|
|
NullCheck(L_73);
|
|
(L_73)->SetAt(static_cast<il2cpp_array_size_t>(L_74), (int32_t)1);
|
|
goto IL_0161;
|
|
}
|
|
|
|
IL_0148:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:193>
|
|
bool L_75 = ___2_isLastMergeableGroup;
|
|
if (!L_75)
|
|
{
|
|
goto IL_0161;
|
|
}
|
|
}
|
|
{
|
|
RenderBufferStoreActionU5BU5D_tFEA8F5DD460573EA9F35FBEC5727D1804C5DCBF5* L_76 = __this->___m_FinalColorStoreAction;
|
|
int32_t L_77 = V_8;
|
|
NullCheck(L_76);
|
|
int32_t L_78 = L_77;
|
|
int32_t L_79 = (int32_t)(L_76)->GetAt(static_cast<il2cpp_array_size_t>(L_78));
|
|
if ((!(((uint32_t)L_79) == ((uint32_t)1))))
|
|
{
|
|
goto IL_0161;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:194>
|
|
RenderBufferStoreActionU5BU5D_tFEA8F5DD460573EA9F35FBEC5727D1804C5DCBF5* L_80 = __this->___m_FinalColorStoreAction;
|
|
int32_t L_81 = V_8;
|
|
NullCheck(L_80);
|
|
(L_80)->SetAt(static_cast<il2cpp_array_size_t>(L_81), (int32_t)2);
|
|
}
|
|
|
|
IL_0161:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:182>
|
|
int32_t L_82 = V_8;
|
|
V_8 = ((int32_t)il2cpp_codegen_add(L_82, 1));
|
|
}
|
|
|
|
IL_0167:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:182>
|
|
int32_t L_83 = V_8;
|
|
RenderBufferStoreActionU5BU5D_tFEA8F5DD460573EA9F35FBEC5727D1804C5DCBF5* L_84 = __this->___m_FinalColorStoreAction;
|
|
NullCheck(L_84);
|
|
if ((((int32_t)L_83) < ((int32_t)((int32_t)(((RuntimeArray*)L_84)->max_length)))))
|
|
{
|
|
goto IL_00de;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:199>
|
|
int32_t L_85 = __this->___m_FinalDepthStoreAction;
|
|
if (!L_85)
|
|
{
|
|
goto IL_019a;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_86 = __this->___m_FinalDepthStoreAction;
|
|
if ((!(((uint32_t)L_86) == ((uint32_t)2))))
|
|
{
|
|
goto IL_0191;
|
|
}
|
|
}
|
|
{
|
|
ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* L_87 = V_4;
|
|
NullCheck(L_87);
|
|
int32_t L_88;
|
|
L_88 = ScriptableRenderPass_get_depthStoreAction_m3DCEBE1FEEE5ABD1AF0EC3656296E08C56704845_inline(L_87, NULL);
|
|
if ((((int32_t)L_88) == ((int32_t)1)))
|
|
{
|
|
goto IL_019a;
|
|
}
|
|
}
|
|
|
|
IL_0191:
|
|
{
|
|
ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* L_89 = V_4;
|
|
NullCheck(L_89);
|
|
bool L_90;
|
|
L_90 = ScriptableRenderPass_get_overriddenDepthStoreAction_m057C906C81594CF263C433DBC279F6C61FD45D19_inline(L_89, NULL);
|
|
if (!L_90)
|
|
{
|
|
goto IL_01a7;
|
|
}
|
|
}
|
|
|
|
IL_019a:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:200>
|
|
ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* L_91 = V_4;
|
|
NullCheck(L_91);
|
|
int32_t L_92;
|
|
L_92 = ScriptableRenderPass_get_depthStoreAction_m3DCEBE1FEEE5ABD1AF0EC3656296E08C56704845_inline(L_91, NULL);
|
|
__this->___m_FinalDepthStoreAction = L_92;
|
|
}
|
|
|
|
IL_01a7:
|
|
{
|
|
int32_t L_93 = V_2;
|
|
V_2 = ((int32_t)il2cpp_codegen_add(L_93, 1));
|
|
}
|
|
|
|
IL_01ab:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:164>
|
|
int32_t L_94 = V_2;
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_95 = V_1;
|
|
NullCheck(L_95);
|
|
if ((((int32_t)L_94) < ((int32_t)((int32_t)(((RuntimeArray*)L_95)->max_length)))))
|
|
{
|
|
goto IL_002c;
|
|
}
|
|
}
|
|
|
|
IL_01b4:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:202>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 33330
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ScriptableRenderer_SetNativeRenderPassMRTAttachmentList_m4B6A8C3E5D06EC581872993BA511A45029CD7815 (ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892* __this, ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* ___0_renderPass, UniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7* ___1_cameraData, bool ___2_needCustomCameraColorClear, int32_t ___3_cameraClearFlag, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CoreUtils_tEE57AB2B0DAE9561F4954B08800A8F957850B038_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_get_Item_m5A9D1816E2F401909438646463C34D043E421045_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_get_Item_m88A84F3C4F3B87068DF58800EC51E4BAE278F826_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_set_Item_mFB50A5ABA450F464BCF08AEB35E14D26BB582C78_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerable_First_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_m665FD6DD7E983D1E8938E44617925C04CD612DE7_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Graphics_t99CD970FFEA58171C70F54DF0C06D315BD452F2C_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Item_mBC42042D4082F4C6237FEA3435D58D570436268F_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Profiling_t1148A935DE86EC9E67DA54238721B4178A744AD3_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RenderTargetIdentifier_tA528663AC6EB3911D8E91AA40F7070FA5455442B_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RenderingUtils_t4E40200449A82FA3A172A563C490DF11FADA2BE1_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UniversalRenderPipeline_t54B4737DC500C08628C5BE283D8C583C14DED98F_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
ProfilingScope_t57898BA31E8EF8F083EF84E0DA2737AC61CBC5BD V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
int32_t V_1 = 0;
|
|
Hash128_t93367F504B687578F893CDBCD13FB95AC8A87A40 V_2;
|
|
memset((&V_2), 0, sizeof(V_2));
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* V_3 = NULL;
|
|
int32_t V_4 = 0;
|
|
bool V_5 = false;
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* V_6 = NULL;
|
|
int32_t V_7 = 0;
|
|
int32_t V_8 = 0;
|
|
ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* V_9 = NULL;
|
|
uint32_t V_10 = 0;
|
|
bool V_11 = false;
|
|
int32_t V_12 = 0;
|
|
int32_t V_13 = 0;
|
|
int32_t V_14 = 0;
|
|
AttachmentDescriptor_tBAC9B26B50BB0838C5C0CC22BB296F9DFF41276E V_15;
|
|
memset((&V_15), 0, sizeof(V_15));
|
|
RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B* V_16 = NULL;
|
|
int32_t V_17 = 0;
|
|
bool V_18 = false;
|
|
Hash128_t93367F504B687578F893CDBCD13FB95AC8A87A40 V_19;
|
|
memset((&V_19), 0, sizeof(V_19));
|
|
int32_t V_20 = 0;
|
|
AttachmentDescriptor_tBAC9B26B50BB0838C5C0CC22BB296F9DFF41276E* G_B14_0 = NULL;
|
|
AttachmentDescriptor_tBAC9B26B50BB0838C5C0CC22BB296F9DFF41276E* G_B13_0 = NULL;
|
|
int32_t G_B15_0 = 0;
|
|
AttachmentDescriptor_tBAC9B26B50BB0838C5C0CC22BB296F9DFF41276E* G_B15_1 = NULL;
|
|
RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B* G_B18_0 = NULL;
|
|
AttachmentDescriptor_tBAC9B26B50BB0838C5C0CC22BB296F9DFF41276E* G_B34_0 = NULL;
|
|
AttachmentDescriptor_tBAC9B26B50BB0838C5C0CC22BB296F9DFF41276E* G_B33_0 = NULL;
|
|
RenderTargetIdentifier_tA528663AC6EB3911D8E91AA40F7070FA5455442B G_B35_0;
|
|
memset((&G_B35_0), 0, sizeof(G_B35_0));
|
|
AttachmentDescriptor_tBAC9B26B50BB0838C5C0CC22BB296F9DFF41276E* G_B35_1 = NULL;
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:206>
|
|
il2cpp_codegen_runtime_class_init_inline(Profiling_t1148A935DE86EC9E67DA54238721B4178A744AD3_il2cpp_TypeInfo_var);
|
|
ProfilingSampler_t420D4672EDB44E0EF980B31ADFD9E5747200FECE* L_0 = ((Profiling_t1148A935DE86EC9E67DA54238721B4178A744AD3_StaticFields*)il2cpp_codegen_static_fields_for(Profiling_t1148A935DE86EC9E67DA54238721B4178A744AD3_il2cpp_TypeInfo_var))->___setMRTAttachmentsList;
|
|
ProfilingScope__ctor_m4B73587A2295443A73B64DDD3D484D8EAECC0D65((&V_0), L_0, NULL);
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_0337:
|
|
{
|
|
ProfilingScope_Dispose_m4231A2ACA1F8E345BB0078310A9F7601704C8BE4((&V_0), NULL);
|
|
return;
|
|
}
|
|
});
|
|
try
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:208>
|
|
ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* L_1 = ___0_renderPass;
|
|
NullCheck(L_1);
|
|
int32_t L_2;
|
|
L_2 = ScriptableRenderPass_get_renderPassQueueIndex_mDA630CF31CA4371C2E4BE76B367C4A013C35AB85_inline(L_1, NULL);
|
|
V_1 = L_2;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:209>
|
|
Hash128U5BU5D_tB104E7247B842648E447B7FCF4748077DC1F8C98* L_3 = __this->___m_PassIndexToPassHash;
|
|
int32_t L_4 = V_1;
|
|
NullCheck(L_3);
|
|
int32_t L_5 = L_4;
|
|
Hash128_t93367F504B687578F893CDBCD13FB95AC8A87A40 L_6 = (L_3)->GetAt(static_cast<il2cpp_array_size_t>(L_5));
|
|
V_2 = L_6;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:210>
|
|
Dictionary_2_tCB9019887EB0254D4745B0724BC12327C5B63792* L_7 = __this->___m_MergeableRenderPassesMap;
|
|
Hash128_t93367F504B687578F893CDBCD13FB95AC8A87A40 L_8 = V_2;
|
|
NullCheck(L_7);
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_9;
|
|
L_9 = Dictionary_2_get_Item_m88A84F3C4F3B87068DF58800EC51E4BAE278F826(L_7, L_8, Dictionary_2_get_Item_m88A84F3C4F3B87068DF58800EC51E4BAE278F826_RuntimeMethod_var);
|
|
V_3 = L_9;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:213>
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_10 = V_3;
|
|
int32_t L_11;
|
|
L_11 = Enumerable_First_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_m665FD6DD7E983D1E8938E44617925C04CD612DE7((RuntimeObject*)L_10, Enumerable_First_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_m665FD6DD7E983D1E8938E44617925C04CD612DE7_RuntimeMethod_var);
|
|
int32_t L_12 = V_1;
|
|
if ((((int32_t)L_11) == ((int32_t)L_12)))
|
|
{
|
|
goto IL_003b_1;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:214>
|
|
goto IL_0345;
|
|
}
|
|
|
|
IL_003b_1:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:216>
|
|
Dictionary_2_tB41FAC88F07BAB98D6D373F7C94FB0496D1BDA32* L_13 = __this->___m_RenderPassesAttachmentCount;
|
|
Hash128_t93367F504B687578F893CDBCD13FB95AC8A87A40 L_14 = V_2;
|
|
NullCheck(L_13);
|
|
Dictionary_2_set_Item_mFB50A5ABA450F464BCF08AEB35E14D26BB582C78(L_13, L_14, 0, Dictionary_2_set_Item_mFB50A5ABA450F464BCF08AEB35E14D26BB582C78_RuntimeMethod_var);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:218>
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_15 = V_3;
|
|
UniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7* L_16 = ___1_cameraData;
|
|
int32_t L_17 = V_1;
|
|
int32_t L_18 = __this->___m_firstPassIndexOfLastMergeableGroup;
|
|
ScriptableRenderer_UpdateFinalStoreActions_m135A9C4E66BE5FF0EE2ED10781CB316313986152(__this, L_15, L_16, (bool)((((int32_t)L_17) == ((int32_t)L_18))? 1 : 0), NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:220>
|
|
V_4 = 0;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:221>
|
|
V_5 = (bool)0;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:222>
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_19 = V_3;
|
|
V_6 = L_19;
|
|
V_7 = 0;
|
|
goto IL_0314_1;
|
|
}
|
|
|
|
IL_006a_1:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:222>
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_20 = V_6;
|
|
int32_t L_21 = V_7;
|
|
NullCheck(L_20);
|
|
int32_t L_22 = L_21;
|
|
int32_t L_23 = (L_20)->GetAt(static_cast<il2cpp_array_size_t>(L_22));
|
|
V_8 = L_23;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:224>
|
|
int32_t L_24 = V_8;
|
|
if ((((int32_t)L_24) == ((int32_t)(-1))))
|
|
{
|
|
goto IL_031f_1;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:226>
|
|
List_1_t2E485E650BF1E41358CE56A69323E183C5A89CB6* L_25 = __this->___m_ActiveRenderPassQueue;
|
|
int32_t L_26 = V_8;
|
|
NullCheck(L_25);
|
|
ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* L_27;
|
|
L_27 = List_1_get_Item_mBC42042D4082F4C6237FEA3435D58D570436268F(L_25, L_26, List_1_get_Item_mBC42042D4082F4C6237FEA3435D58D570436268F_RuntimeMethod_var);
|
|
V_9 = L_27;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:228>
|
|
V_12 = 0;
|
|
goto IL_00a2_1;
|
|
}
|
|
|
|
IL_008d_1:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:229>
|
|
ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* L_28 = V_9;
|
|
NullCheck(L_28);
|
|
NativeArray_1_tA833EB7E3E1C9AF82C37976AD964B8D4BAC38B2C* L_29 = (NativeArray_1_tA833EB7E3E1C9AF82C37976AD964B8D4BAC38B2C*)(&L_28->___m_ColorAttachmentIndices);
|
|
int32_t L_30 = V_12;
|
|
IL2CPP_NATIVEARRAY_SET_ITEM(int32_t, (L_29)->___m_Buffer, L_30, ((-1)));
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:228>
|
|
int32_t L_31 = V_12;
|
|
V_12 = ((int32_t)il2cpp_codegen_add(L_31, 1));
|
|
}
|
|
|
|
IL_00a2_1:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:228>
|
|
int32_t L_32 = V_12;
|
|
ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* L_33 = V_9;
|
|
NullCheck(L_33);
|
|
NativeArray_1_tA833EB7E3E1C9AF82C37976AD964B8D4BAC38B2C* L_34 = (NativeArray_1_tA833EB7E3E1C9AF82C37976AD964B8D4BAC38B2C*)(&L_33->___m_ColorAttachmentIndices);
|
|
int32_t L_35;
|
|
L_35 = IL2CPP_NATIVEARRAY_GET_LENGTH((L_34)->___m_Length);
|
|
if ((((int32_t)L_32) < ((int32_t)L_35)))
|
|
{
|
|
goto IL_008d_1;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:231>
|
|
V_13 = 0;
|
|
goto IL_00cc_1;
|
|
}
|
|
|
|
IL_00b7_1:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:232>
|
|
ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* L_36 = V_9;
|
|
NullCheck(L_36);
|
|
NativeArray_1_tA833EB7E3E1C9AF82C37976AD964B8D4BAC38B2C* L_37 = (NativeArray_1_tA833EB7E3E1C9AF82C37976AD964B8D4BAC38B2C*)(&L_36->___m_InputAttachmentIndices);
|
|
int32_t L_38 = V_13;
|
|
IL2CPP_NATIVEARRAY_SET_ITEM(int32_t, (L_37)->___m_Buffer, L_38, ((-1)));
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:231>
|
|
int32_t L_39 = V_13;
|
|
V_13 = ((int32_t)il2cpp_codegen_add(L_39, 1));
|
|
}
|
|
|
|
IL_00cc_1:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:231>
|
|
int32_t L_40 = V_13;
|
|
ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* L_41 = V_9;
|
|
NullCheck(L_41);
|
|
NativeArray_1_tA833EB7E3E1C9AF82C37976AD964B8D4BAC38B2C* L_42 = (NativeArray_1_tA833EB7E3E1C9AF82C37976AD964B8D4BAC38B2C*)(&L_41->___m_InputAttachmentIndices);
|
|
int32_t L_43;
|
|
L_43 = IL2CPP_NATIVEARRAY_GET_LENGTH((L_42)->___m_Length);
|
|
if ((((int32_t)L_40) < ((int32_t)L_43)))
|
|
{
|
|
goto IL_00b7_1;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:234>
|
|
ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* L_44 = V_9;
|
|
NullCheck(L_44);
|
|
RTHandleU5BU5D_tE4B403B060D159B839BF74E8B59F8DCD52CF97DF* L_45;
|
|
L_45 = ScriptableRenderPass_get_colorAttachmentHandles_m52C72D6C6F0E7A66FE8FEC5ECFDDE5407FBF8897_inline(L_44, NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(RenderingUtils_t4E40200449A82FA3A172A563C490DF11FADA2BE1_il2cpp_TypeInfo_var);
|
|
uint32_t L_46;
|
|
L_46 = RenderingUtils_GetValidColorBufferCount_m99C1CCF85D3EFCA3950A11D106E801E4DF3A31B6(L_45, NULL);
|
|
V_10 = L_46;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:236>
|
|
V_14 = 0;
|
|
goto IL_0270_1;
|
|
}
|
|
|
|
IL_00f2_1:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:238>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:239>
|
|
ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* L_47 = V_9;
|
|
NullCheck(L_47);
|
|
GraphicsFormatU5BU5D_tF6A3D90C430FA3F548B77E5D58D25D71F154E6C5* L_48;
|
|
L_48 = ScriptableRenderPass_get_renderTargetFormat_m7B211E4B10D23A760D3906426BA9C4562DF951CC_inline(L_47, NULL);
|
|
int32_t L_49 = V_14;
|
|
NullCheck(L_48);
|
|
int32_t L_50 = L_49;
|
|
int32_t L_51 = (int32_t)(L_48)->GetAt(static_cast<il2cpp_array_size_t>(L_50));
|
|
if (L_51)
|
|
{
|
|
G_B14_0 = (&V_15);
|
|
goto IL_0118_1;
|
|
}
|
|
G_B13_0 = (&V_15);
|
|
}
|
|
{
|
|
UniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7* L_52 = ___1_cameraData;
|
|
NullCheck(L_52);
|
|
bool L_53 = L_52->___isHdrEnabled;
|
|
UniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7* L_54 = ___1_cameraData;
|
|
NullCheck(L_54);
|
|
int32_t L_55 = L_54->___hdrColorBufferPrecision;
|
|
il2cpp_codegen_runtime_class_init_inline(Graphics_t99CD970FFEA58171C70F54DF0C06D315BD452F2C_il2cpp_TypeInfo_var);
|
|
bool L_56;
|
|
L_56 = Graphics_get_preserveFramebufferAlpha_mCB9E42855D0544B90D7CBB454DBAE09DDD1D5E5A(NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(UniversalRenderPipeline_t54B4737DC500C08628C5BE283D8C583C14DED98F_il2cpp_TypeInfo_var);
|
|
int32_t L_57;
|
|
L_57 = UniversalRenderPipeline_MakeRenderTextureGraphicsFormat_m386F1D4BCAD4537F62E4096D9264554312E11B5D(L_53, L_55, L_56, NULL);
|
|
G_B15_0 = ((int32_t)(L_57));
|
|
G_B15_1 = G_B13_0;
|
|
goto IL_0122_1;
|
|
}
|
|
|
|
IL_0118_1:
|
|
{
|
|
ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* L_58 = V_9;
|
|
NullCheck(L_58);
|
|
GraphicsFormatU5BU5D_tF6A3D90C430FA3F548B77E5D58D25D71F154E6C5* L_59;
|
|
L_59 = ScriptableRenderPass_get_renderTargetFormat_m7B211E4B10D23A760D3906426BA9C4562DF951CC_inline(L_58, NULL);
|
|
int32_t L_60 = V_14;
|
|
NullCheck(L_59);
|
|
int32_t L_61 = L_60;
|
|
int32_t L_62 = (int32_t)(L_59)->GetAt(static_cast<il2cpp_array_size_t>(L_61));
|
|
G_B15_0 = L_62;
|
|
G_B15_1 = G_B14_0;
|
|
}
|
|
|
|
IL_0122_1:
|
|
{
|
|
AttachmentDescriptor__ctor_m88C496B5B9F52F912AF1B3D2FD13E5DCD57748F4(G_B15_1, G_B15_0, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:241>
|
|
ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* L_63 = V_9;
|
|
NullCheck(L_63);
|
|
bool L_64;
|
|
L_64 = ScriptableRenderPass_get_overrideCameraTarget_m343BA9235CD254354013E3CFD6EC519958597128_inline(L_63, NULL);
|
|
if (L_64)
|
|
{
|
|
goto IL_0138_1;
|
|
}
|
|
}
|
|
{
|
|
RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B* L_65 = __this->___m_CameraColorTarget;
|
|
G_B18_0 = L_65;
|
|
goto IL_0142_1;
|
|
}
|
|
|
|
IL_0138_1:
|
|
{
|
|
ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* L_66 = V_9;
|
|
NullCheck(L_66);
|
|
RTHandleU5BU5D_tE4B403B060D159B839BF74E8B59F8DCD52CF97DF* L_67;
|
|
L_67 = ScriptableRenderPass_get_colorAttachmentHandles_m52C72D6C6F0E7A66FE8FEC5ECFDDE5407FBF8897_inline(L_66, NULL);
|
|
int32_t L_68 = V_14;
|
|
NullCheck(L_67);
|
|
int32_t L_69 = L_68;
|
|
RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B* L_70 = (L_67)->GetAt(static_cast<il2cpp_array_size_t>(L_69));
|
|
G_B18_0 = L_70;
|
|
}
|
|
|
|
IL_0142_1:
|
|
{
|
|
V_16 = G_B18_0;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:243>
|
|
RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B* L_71 = V_16;
|
|
NullCheck(L_71);
|
|
RenderTargetIdentifier_tA528663AC6EB3911D8E91AA40F7070FA5455442B L_72;
|
|
L_72 = RTHandle_get_nameID_m30AF2567853494DB845D83A8B37D0FB523DA76E9_inline(L_71, NULL);
|
|
AttachmentDescriptorU5BU5D_tC70107EBD955FE94BA31C7FDC146069EF9C547C1* L_73 = __this->___m_ActiveColorAttachmentDescriptors;
|
|
il2cpp_codegen_runtime_class_init_inline(ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892_il2cpp_TypeInfo_var);
|
|
int32_t L_74;
|
|
L_74 = ScriptableRenderer_FindAttachmentDescriptorIndexInList_m1DD16FAFA007FC1648DFD24623F46865AAFB5CDB(L_72, L_73, NULL);
|
|
V_17 = L_74;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:245>
|
|
bool L_75 = ((ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892_StaticFields*)il2cpp_codegen_static_fields_for(ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892_il2cpp_TypeInfo_var))->___m_UseOptimizedStoreActions;
|
|
if (!L_75)
|
|
{
|
|
goto IL_016f_1;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:246>
|
|
RenderBufferStoreActionU5BU5D_tFEA8F5DD460573EA9F35FBEC5727D1804C5DCBF5* L_76 = __this->___m_FinalColorStoreAction;
|
|
int32_t L_77 = V_14;
|
|
NullCheck(L_76);
|
|
int32_t L_78 = L_77;
|
|
int32_t L_79 = (int32_t)(L_76)->GetAt(static_cast<il2cpp_array_size_t>(L_78));
|
|
AttachmentDescriptor_set_storeAction_m301B420FC8A154DCB629A00523EE2EC41033C25A((&V_15), L_79, NULL);
|
|
}
|
|
|
|
IL_016f_1:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:248>
|
|
int32_t L_80 = V_17;
|
|
if ((!(((uint32_t)L_80) == ((uint32_t)(-1)))))
|
|
{
|
|
goto IL_025a_1;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:251>
|
|
AttachmentDescriptorU5BU5D_tC70107EBD955FE94BA31C7FDC146069EF9C547C1* L_81 = __this->___m_ActiveColorAttachmentDescriptors;
|
|
int32_t L_82 = V_4;
|
|
AttachmentDescriptor_tBAC9B26B50BB0838C5C0CC22BB296F9DFF41276E L_83 = V_15;
|
|
NullCheck(L_81);
|
|
(L_81)->SetAt(static_cast<il2cpp_array_size_t>(L_82), (AttachmentDescriptor_tBAC9B26B50BB0838C5C0CC22BB296F9DFF41276E)L_83);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:252>
|
|
ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* L_84 = V_9;
|
|
NullCheck(L_84);
|
|
int32_t L_85;
|
|
L_85 = ScriptableRenderPass_get_clearFlag_m74FAFCDC3CD75DC4201B398DFD25E028D7D800DB_inline(L_84, NULL);
|
|
V_18 = (bool)((!(((uint32_t)((int32_t)((int32_t)L_85&1))) <= ((uint32_t)0)))? 1 : 0);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:253>
|
|
AttachmentDescriptorU5BU5D_tC70107EBD955FE94BA31C7FDC146069EF9C547C1* L_86 = __this->___m_ActiveColorAttachmentDescriptors;
|
|
int32_t L_87 = V_4;
|
|
NullCheck(L_86);
|
|
RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B* L_88 = V_16;
|
|
NullCheck(L_88);
|
|
RenderTargetIdentifier_tA528663AC6EB3911D8E91AA40F7070FA5455442B L_89;
|
|
L_89 = RTHandle_get_nameID_m30AF2567853494DB845D83A8B37D0FB523DA76E9_inline(L_88, NULL);
|
|
bool L_90 = V_18;
|
|
AttachmentDescriptor_ConfigureTarget_m0F7D48AB1C1005A8C31F597CD69B1F0E3E8C037D(((L_86)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_87))), L_89, (bool)((((int32_t)L_90) == ((int32_t)0))? 1 : 0), (bool)1, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:255>
|
|
ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* L_91 = V_9;
|
|
NullCheck(L_91);
|
|
RTHandleU5BU5D_tE4B403B060D159B839BF74E8B59F8DCD52CF97DF* L_92;
|
|
L_92 = ScriptableRenderPass_get_colorAttachmentHandles_m52C72D6C6F0E7A66FE8FEC5ECFDDE5407FBF8897_inline(L_91, NULL);
|
|
int32_t L_93 = V_14;
|
|
NullCheck(L_92);
|
|
int32_t L_94 = L_93;
|
|
RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B* L_95 = (L_92)->GetAt(static_cast<il2cpp_array_size_t>(L_94));
|
|
NullCheck(L_95);
|
|
RenderTargetIdentifier_tA528663AC6EB3911D8E91AA40F7070FA5455442B L_96;
|
|
L_96 = RTHandle_get_nameID_m30AF2567853494DB845D83A8B37D0FB523DA76E9_inline(L_95, NULL);
|
|
RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B* L_97 = __this->___m_CameraColorTarget;
|
|
NullCheck(L_97);
|
|
RenderTargetIdentifier_tA528663AC6EB3911D8E91AA40F7070FA5455442B L_98;
|
|
L_98 = RTHandle_get_nameID_m30AF2567853494DB845D83A8B37D0FB523DA76E9_inline(L_97, NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(RenderTargetIdentifier_tA528663AC6EB3911D8E91AA40F7070FA5455442B_il2cpp_TypeInfo_var);
|
|
bool L_99;
|
|
L_99 = RenderTargetIdentifier_op_Equality_mD9FD6667F4C385F2379E9DEAAA8F91B7A1D50A1F(L_96, L_98, NULL);
|
|
bool L_100 = ___2_needCustomCameraColorClear;
|
|
if (!((int32_t)((int32_t)L_99&(int32_t)L_100)))
|
|
{
|
|
goto IL_01fc_1;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_101 = ___3_cameraClearFlag;
|
|
if (!((int32_t)((int32_t)L_101&1)))
|
|
{
|
|
goto IL_01fc_1;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:256>
|
|
AttachmentDescriptorU5BU5D_tC70107EBD955FE94BA31C7FDC146069EF9C547C1* L_102 = __this->___m_ActiveColorAttachmentDescriptors;
|
|
int32_t L_103 = V_4;
|
|
NullCheck(L_102);
|
|
UniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7* L_104 = ___1_cameraData;
|
|
NullCheck(L_104);
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F L_105 = L_104->___backgroundColor;
|
|
AttachmentDescriptor_ConfigureClear_m0C4A2481B28180B777F0C46E0FA5BC009FDC0886(((L_102)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_103))), L_105, (1.0f), 0, NULL);
|
|
goto IL_0224_1;
|
|
}
|
|
|
|
IL_01fc_1:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:257>
|
|
bool L_106 = V_18;
|
|
if (!L_106)
|
|
{
|
|
goto IL_0224_1;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:258>
|
|
AttachmentDescriptorU5BU5D_tC70107EBD955FE94BA31C7FDC146069EF9C547C1* L_107 = __this->___m_ActiveColorAttachmentDescriptors;
|
|
int32_t L_108 = V_4;
|
|
NullCheck(L_107);
|
|
ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* L_109 = V_9;
|
|
NullCheck(L_109);
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F L_110;
|
|
L_110 = ScriptableRenderPass_get_clearColor_mAEC581D756087BF3617FE243D569717FBC2E5DB1_inline(L_109, NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(CoreUtils_tEE57AB2B0DAE9561F4954B08800A8F957850B038_il2cpp_TypeInfo_var);
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F L_111;
|
|
L_111 = CoreUtils_ConvertSRGBToActiveColorSpace_mFAC0FDF001398AD8C45D7070A6DAEA9A381A17A2(L_110, NULL);
|
|
AttachmentDescriptor_ConfigureClear_m0C4A2481B28180B777F0C46E0FA5BC009FDC0886(((L_107)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_108))), L_111, (1.0f), 0, NULL);
|
|
}
|
|
|
|
IL_0224_1:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:260>
|
|
ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* L_112 = V_9;
|
|
NullCheck(L_112);
|
|
NativeArray_1_tA833EB7E3E1C9AF82C37976AD964B8D4BAC38B2C* L_113 = (NativeArray_1_tA833EB7E3E1C9AF82C37976AD964B8D4BAC38B2C*)(&L_112->___m_ColorAttachmentIndices);
|
|
int32_t L_114 = V_14;
|
|
int32_t L_115 = V_4;
|
|
IL2CPP_NATIVEARRAY_SET_ITEM(int32_t, (L_113)->___m_Buffer, L_114, (L_115));
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:261>
|
|
int32_t L_116 = V_4;
|
|
V_4 = ((int32_t)il2cpp_codegen_add(L_116, 1));
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:262>
|
|
Dictionary_2_tB41FAC88F07BAB98D6D373F7C94FB0496D1BDA32* L_117 = __this->___m_RenderPassesAttachmentCount;
|
|
Hash128_t93367F504B687578F893CDBCD13FB95AC8A87A40 L_118 = V_2;
|
|
V_19 = L_118;
|
|
Dictionary_2_tB41FAC88F07BAB98D6D373F7C94FB0496D1BDA32* L_119 = L_117;
|
|
Hash128_t93367F504B687578F893CDBCD13FB95AC8A87A40 L_120 = V_19;
|
|
NullCheck(L_119);
|
|
int32_t L_121;
|
|
L_121 = Dictionary_2_get_Item_m5A9D1816E2F401909438646463C34D043E421045(L_119, L_120, Dictionary_2_get_Item_m5A9D1816E2F401909438646463C34D043E421045_RuntimeMethod_var);
|
|
V_20 = L_121;
|
|
Hash128_t93367F504B687578F893CDBCD13FB95AC8A87A40 L_122 = V_19;
|
|
int32_t L_123 = V_20;
|
|
NullCheck(L_119);
|
|
Dictionary_2_set_Item_mFB50A5ABA450F464BCF08AEB35E14D26BB582C78(L_119, L_122, ((int32_t)il2cpp_codegen_add(L_123, 1)), Dictionary_2_set_Item_mFB50A5ABA450F464BCF08AEB35E14D26BB582C78_RuntimeMethod_var);
|
|
goto IL_026a_1;
|
|
}
|
|
|
|
IL_025a_1:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:267>
|
|
ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* L_124 = V_9;
|
|
NullCheck(L_124);
|
|
NativeArray_1_tA833EB7E3E1C9AF82C37976AD964B8D4BAC38B2C* L_125 = (NativeArray_1_tA833EB7E3E1C9AF82C37976AD964B8D4BAC38B2C*)(&L_124->___m_ColorAttachmentIndices);
|
|
int32_t L_126 = V_14;
|
|
int32_t L_127 = V_17;
|
|
IL2CPP_NATIVEARRAY_SET_ITEM(int32_t, (L_125)->___m_Buffer, L_126, (L_127));
|
|
}
|
|
|
|
IL_026a_1:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:236>
|
|
int32_t L_128 = V_14;
|
|
V_14 = ((int32_t)il2cpp_codegen_add(L_128, 1));
|
|
}
|
|
|
|
IL_0270_1:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:236>
|
|
int32_t L_129 = V_14;
|
|
uint32_t L_130 = V_10;
|
|
if ((((int64_t)((int64_t)L_129)) < ((int64_t)((int64_t)(uint64_t)((uint32_t)L_130)))))
|
|
{
|
|
goto IL_00f2_1;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:271>
|
|
ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* L_131 = V_9;
|
|
il2cpp_codegen_runtime_class_init_inline(ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892_il2cpp_TypeInfo_var);
|
|
bool L_132;
|
|
L_132 = ScriptableRenderer_PassHasInputAttachments_m26CD6A09B8A3ACB14DEC0A65B730D48FE4F6C1D7(L_131, NULL);
|
|
if (!L_132)
|
|
{
|
|
goto IL_028f_1;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:273>
|
|
V_5 = (bool)1;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:274>
|
|
ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* L_133 = V_9;
|
|
ScriptableRenderer_SetupInputAttachmentIndices_m372065B367FFEA0F21A915E683A9338F560F4648(__this, L_133, NULL);
|
|
}
|
|
|
|
IL_028f_1:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:278>
|
|
int32_t L_134;
|
|
L_134 = SystemInfo_GetGraphicsFormat_mF4A09D38BA91B8F783C9189B5D744BA943292E0E(2, NULL);
|
|
AttachmentDescriptor_tBAC9B26B50BB0838C5C0CC22BB296F9DFF41276E L_135;
|
|
memset((&L_135), 0, sizeof(L_135));
|
|
AttachmentDescriptor__ctor_m88C496B5B9F52F912AF1B3D2FD13E5DCD57748F4((&L_135), L_134, NULL);
|
|
__this->___m_ActiveDepthAttachmentDescriptor = L_135;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:279>
|
|
int32_t L_136 = ___3_cameraClearFlag;
|
|
V_11 = (bool)((!(((uint32_t)((int32_t)((int32_t)L_136&6))) <= ((uint32_t)0)))? 1 : 0);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:280>
|
|
AttachmentDescriptor_tBAC9B26B50BB0838C5C0CC22BB296F9DFF41276E* L_137 = (AttachmentDescriptor_tBAC9B26B50BB0838C5C0CC22BB296F9DFF41276E*)(&__this->___m_ActiveDepthAttachmentDescriptor);
|
|
ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* L_138 = V_9;
|
|
NullCheck(L_138);
|
|
bool L_139;
|
|
L_139 = ScriptableRenderPass_get_overrideCameraTarget_m343BA9235CD254354013E3CFD6EC519958597128_inline(L_138, NULL);
|
|
if (L_139)
|
|
{
|
|
G_B34_0 = L_137;
|
|
goto IL_02c5_1;
|
|
}
|
|
G_B33_0 = L_137;
|
|
}
|
|
{
|
|
RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B* L_140 = __this->___m_CameraDepthTarget;
|
|
NullCheck(L_140);
|
|
RenderTargetIdentifier_tA528663AC6EB3911D8E91AA40F7070FA5455442B L_141;
|
|
L_141 = RTHandle_get_nameID_m30AF2567853494DB845D83A8B37D0FB523DA76E9_inline(L_140, NULL);
|
|
G_B35_0 = L_141;
|
|
G_B35_1 = G_B33_0;
|
|
goto IL_02d1_1;
|
|
}
|
|
|
|
IL_02c5_1:
|
|
{
|
|
ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* L_142 = V_9;
|
|
NullCheck(L_142);
|
|
RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B* L_143;
|
|
L_143 = ScriptableRenderPass_get_depthAttachmentHandle_m3AA7953B201494DEF4FD2061660B94663EF63465_inline(L_142, NULL);
|
|
NullCheck(L_143);
|
|
RenderTargetIdentifier_tA528663AC6EB3911D8E91AA40F7070FA5455442B L_144;
|
|
L_144 = RTHandle_get_nameID_m30AF2567853494DB845D83A8B37D0FB523DA76E9_inline(L_143, NULL);
|
|
G_B35_0 = L_144;
|
|
G_B35_1 = G_B34_0;
|
|
}
|
|
|
|
IL_02d1_1:
|
|
{
|
|
bool L_145 = V_11;
|
|
AttachmentDescriptor_ConfigureTarget_m0F7D48AB1C1005A8C31F597CD69B1F0E3E8C037D(G_B35_1, G_B35_0, (bool)((((int32_t)L_145) == ((int32_t)0))? 1 : 0), (bool)1, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:282>
|
|
bool L_146 = V_11;
|
|
if (!L_146)
|
|
{
|
|
goto IL_02f6_1;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:283>
|
|
AttachmentDescriptor_tBAC9B26B50BB0838C5C0CC22BB296F9DFF41276E* L_147 = (AttachmentDescriptor_tBAC9B26B50BB0838C5C0CC22BB296F9DFF41276E*)(&__this->___m_ActiveDepthAttachmentDescriptor);
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F L_148;
|
|
L_148 = Color_get_black_mB50217951591A045844C61E7FF31EEE3FEF16737_inline(NULL);
|
|
AttachmentDescriptor_ConfigureClear_m0C4A2481B28180B777F0C46E0FA5BC009FDC0886(L_147, L_148, (1.0f), 0, NULL);
|
|
}
|
|
|
|
IL_02f6_1:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:285>
|
|
il2cpp_codegen_runtime_class_init_inline(ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892_il2cpp_TypeInfo_var);
|
|
bool L_149 = ((ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892_StaticFields*)il2cpp_codegen_static_fields_for(ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892_il2cpp_TypeInfo_var))->___m_UseOptimizedStoreActions;
|
|
if (!L_149)
|
|
{
|
|
goto IL_030e_1;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:286>
|
|
AttachmentDescriptor_tBAC9B26B50BB0838C5C0CC22BB296F9DFF41276E* L_150 = (AttachmentDescriptor_tBAC9B26B50BB0838C5C0CC22BB296F9DFF41276E*)(&__this->___m_ActiveDepthAttachmentDescriptor);
|
|
int32_t L_151 = __this->___m_FinalDepthStoreAction;
|
|
AttachmentDescriptor_set_storeAction_m301B420FC8A154DCB629A00523EE2EC41033C25A(L_150, L_151, NULL);
|
|
}
|
|
|
|
IL_030e_1:
|
|
{
|
|
int32_t L_152 = V_7;
|
|
V_7 = ((int32_t)il2cpp_codegen_add(L_152, 1));
|
|
}
|
|
|
|
IL_0314_1:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:222>
|
|
int32_t L_153 = V_7;
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_154 = V_6;
|
|
NullCheck(L_154);
|
|
if ((((int32_t)L_153) < ((int32_t)((int32_t)(((RuntimeArray*)L_154)->max_length)))))
|
|
{
|
|
goto IL_006a_1;
|
|
}
|
|
}
|
|
|
|
IL_031f_1:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:289>
|
|
bool L_155 = V_5;
|
|
if (!L_155)
|
|
{
|
|
goto IL_0335_1;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:290>
|
|
Dictionary_2_tB41FAC88F07BAB98D6D373F7C94FB0496D1BDA32* L_156 = __this->___m_RenderPassesAttachmentCount;
|
|
Hash128_t93367F504B687578F893CDBCD13FB95AC8A87A40 L_157 = V_2;
|
|
NullCheck(L_156);
|
|
int32_t L_158;
|
|
L_158 = Dictionary_2_get_Item_m5A9D1816E2F401909438646463C34D043E421045(L_156, L_157, Dictionary_2_get_Item_m5A9D1816E2F401909438646463C34D043E421045_RuntimeMethod_var);
|
|
ScriptableRenderer_SetupTransientInputAttachments_m5190F553CCBD5228C578900F3B00789993F8836D(__this, L_158, NULL);
|
|
}
|
|
|
|
IL_0335_1:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:291>
|
|
goto IL_0345;
|
|
}
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_0345:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:292>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 33331
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ScriptableRenderer_IsDepthOnlyRenderTexture_mFF5E987762C786DEBB831975AA953A5E3DA9DF6A (ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892* __this, RenderTexture_tBA90C4C3AD9EECCFDDCC632D97C29FAB80D60D27* ___0_t, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:296>
|
|
RenderTexture_tBA90C4C3AD9EECCFDDCC632D97C29FAB80D60D27* L_0 = ___0_t;
|
|
NullCheck(L_0);
|
|
int32_t L_1;
|
|
L_1 = RenderTexture_get_graphicsFormat_m615EA91709BD404765C0C85425CE5F3575F90302(L_0, NULL);
|
|
if (L_1)
|
|
{
|
|
goto IL_000a;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:297>
|
|
return (bool)1;
|
|
}
|
|
|
|
IL_000a:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:298>
|
|
return (bool)0;
|
|
}
|
|
}
|
|
// Method Definition Index: 33332
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ScriptableRenderer_SetNativeRenderPassAttachmentList_mA63C41DE0D22482BB9FC708CDE911E8171356B27 (ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892* __this, ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* ___0_renderPass, UniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7* ___1_cameraData, RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B* ___2_passColorAttachment, RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B* ___3_passDepthAttachment, int32_t ___4_finalClearFlag, Color_tD001788D726C3A7F1379BEED0260B9591F440C1F ___5_finalClearColor, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_get_Item_m5A9D1816E2F401909438646463C34D043E421045_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_get_Item_m88A84F3C4F3B87068DF58800EC51E4BAE278F826_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_set_Item_mFB50A5ABA450F464BCF08AEB35E14D26BB582C78_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerable_First_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_m665FD6DD7E983D1E8938E44617925C04CD612DE7_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Graphics_t99CD970FFEA58171C70F54DF0C06D315BD452F2C_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Item_mBC42042D4082F4C6237FEA3435D58D570436268F_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Profiling_t1148A935DE86EC9E67DA54238721B4178A744AD3_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RenderTargetIdentifier_tA528663AC6EB3911D8E91AA40F7070FA5455442B_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RenderingUtils_t4E40200449A82FA3A172A563C490DF11FADA2BE1_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UniversalRenderPipeline_t54B4737DC500C08628C5BE283D8C583C14DED98F_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
ProfilingScope_t57898BA31E8EF8F083EF84E0DA2737AC61CBC5BD V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
int32_t V_1 = 0;
|
|
Hash128_t93367F504B687578F893CDBCD13FB95AC8A87A40 V_2;
|
|
memset((&V_2), 0, sizeof(V_2));
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* V_3 = NULL;
|
|
int32_t V_4 = 0;
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* V_5 = NULL;
|
|
int32_t V_6 = 0;
|
|
int32_t V_7 = 0;
|
|
ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* V_8 = NULL;
|
|
AttachmentDescriptor_tBAC9B26B50BB0838C5C0CC22BB296F9DFF41276E V_9;
|
|
memset((&V_9), 0, sizeof(V_9));
|
|
bool V_10 = false;
|
|
bool V_11 = false;
|
|
int32_t V_12 = 0;
|
|
RenderTargetIdentifier_tA528663AC6EB3911D8E91AA40F7070FA5455442B V_13;
|
|
memset((&V_13), 0, sizeof(V_13));
|
|
int32_t V_14 = 0;
|
|
int32_t V_15 = 0;
|
|
RenderTextureDescriptor_t69845881CE6437E4E61F92074F2F84079F23FA46 V_16;
|
|
memset((&V_16), 0, sizeof(V_16));
|
|
Hash128_t93367F504B687578F893CDBCD13FB95AC8A87A40 V_17;
|
|
memset((&V_17), 0, sizeof(V_17));
|
|
int32_t V_18 = 0;
|
|
int32_t G_B15_0 = 0;
|
|
AttachmentDescriptor_tBAC9B26B50BB0838C5C0CC22BB296F9DFF41276E* G_B18_0 = NULL;
|
|
AttachmentDescriptor_tBAC9B26B50BB0838C5C0CC22BB296F9DFF41276E* G_B17_0 = NULL;
|
|
int32_t G_B19_0 = 0;
|
|
AttachmentDescriptor_tBAC9B26B50BB0838C5C0CC22BB296F9DFF41276E* G_B19_1 = NULL;
|
|
AttachmentDescriptor_tBAC9B26B50BB0838C5C0CC22BB296F9DFF41276E* G_B22_0 = NULL;
|
|
AttachmentDescriptor_tBAC9B26B50BB0838C5C0CC22BB296F9DFF41276E* G_B21_0 = NULL;
|
|
int32_t G_B23_0 = 0;
|
|
AttachmentDescriptor_tBAC9B26B50BB0838C5C0CC22BB296F9DFF41276E* G_B23_1 = NULL;
|
|
RenderTargetIdentifier_tA528663AC6EB3911D8E91AA40F7070FA5455442B G_B26_0;
|
|
memset((&G_B26_0), 0, sizeof(G_B26_0));
|
|
AttachmentDescriptor_tBAC9B26B50BB0838C5C0CC22BB296F9DFF41276E* G_B33_0 = NULL;
|
|
AttachmentDescriptor_tBAC9B26B50BB0838C5C0CC22BB296F9DFF41276E* G_B30_0 = NULL;
|
|
AttachmentDescriptor_tBAC9B26B50BB0838C5C0CC22BB296F9DFF41276E* G_B32_0 = NULL;
|
|
AttachmentDescriptor_tBAC9B26B50BB0838C5C0CC22BB296F9DFF41276E* G_B31_0 = NULL;
|
|
RenderTargetIdentifier_tA528663AC6EB3911D8E91AA40F7070FA5455442B G_B34_0;
|
|
memset((&G_B34_0), 0, sizeof(G_B34_0));
|
|
AttachmentDescriptor_tBAC9B26B50BB0838C5C0CC22BB296F9DFF41276E* G_B34_1 = NULL;
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:303>
|
|
il2cpp_codegen_runtime_class_init_inline(Profiling_t1148A935DE86EC9E67DA54238721B4178A744AD3_il2cpp_TypeInfo_var);
|
|
ProfilingSampler_t420D4672EDB44E0EF980B31ADFD9E5747200FECE* L_0 = ((Profiling_t1148A935DE86EC9E67DA54238721B4178A744AD3_StaticFields*)il2cpp_codegen_static_fields_for(Profiling_t1148A935DE86EC9E67DA54238721B4178A744AD3_il2cpp_TypeInfo_var))->___setAttachmentList;
|
|
ProfilingScope__ctor_m4B73587A2295443A73B64DDD3D484D8EAECC0D65((&V_0), L_0, NULL);
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_035a:
|
|
{
|
|
ProfilingScope_Dispose_m4231A2ACA1F8E345BB0078310A9F7601704C8BE4((&V_0), NULL);
|
|
return;
|
|
}
|
|
});
|
|
try
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:305>
|
|
ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* L_1 = ___0_renderPass;
|
|
NullCheck(L_1);
|
|
int32_t L_2;
|
|
L_2 = ScriptableRenderPass_get_renderPassQueueIndex_mDA630CF31CA4371C2E4BE76B367C4A013C35AB85_inline(L_1, NULL);
|
|
V_1 = L_2;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:306>
|
|
Hash128U5BU5D_tB104E7247B842648E447B7FCF4748077DC1F8C98* L_3 = __this->___m_PassIndexToPassHash;
|
|
int32_t L_4 = V_1;
|
|
NullCheck(L_3);
|
|
int32_t L_5 = L_4;
|
|
Hash128_t93367F504B687578F893CDBCD13FB95AC8A87A40 L_6 = (L_3)->GetAt(static_cast<il2cpp_array_size_t>(L_5));
|
|
V_2 = L_6;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:307>
|
|
Dictionary_2_tCB9019887EB0254D4745B0724BC12327C5B63792* L_7 = __this->___m_MergeableRenderPassesMap;
|
|
Hash128_t93367F504B687578F893CDBCD13FB95AC8A87A40 L_8 = V_2;
|
|
NullCheck(L_7);
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_9;
|
|
L_9 = Dictionary_2_get_Item_m88A84F3C4F3B87068DF58800EC51E4BAE278F826(L_7, L_8, Dictionary_2_get_Item_m88A84F3C4F3B87068DF58800EC51E4BAE278F826_RuntimeMethod_var);
|
|
V_3 = L_9;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:310>
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_10 = V_3;
|
|
int32_t L_11;
|
|
L_11 = Enumerable_First_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_m665FD6DD7E983D1E8938E44617925C04CD612DE7((RuntimeObject*)L_10, Enumerable_First_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_m665FD6DD7E983D1E8938E44617925C04CD612DE7_RuntimeMethod_var);
|
|
int32_t L_12 = V_1;
|
|
if ((((int32_t)L_11) == ((int32_t)L_12)))
|
|
{
|
|
goto IL_003b_1;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:311>
|
|
goto IL_0368;
|
|
}
|
|
|
|
IL_003b_1:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:313>
|
|
Dictionary_2_tB41FAC88F07BAB98D6D373F7C94FB0496D1BDA32* L_13 = __this->___m_RenderPassesAttachmentCount;
|
|
Hash128_t93367F504B687578F893CDBCD13FB95AC8A87A40 L_14 = V_2;
|
|
NullCheck(L_13);
|
|
Dictionary_2_set_Item_mFB50A5ABA450F464BCF08AEB35E14D26BB582C78(L_13, L_14, 0, Dictionary_2_set_Item_mFB50A5ABA450F464BCF08AEB35E14D26BB582C78_RuntimeMethod_var);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:315>
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_15 = V_3;
|
|
UniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7* L_16 = ___1_cameraData;
|
|
int32_t L_17 = V_1;
|
|
int32_t L_18 = __this->___m_firstPassIndexOfLastMergeableGroup;
|
|
ScriptableRenderer_UpdateFinalStoreActions_m135A9C4E66BE5FF0EE2ED10781CB316313986152(__this, L_15, L_16, (bool)((((int32_t)L_17) == ((int32_t)L_18))? 1 : 0), NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:317>
|
|
V_4 = 0;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:318>
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_19 = V_3;
|
|
V_5 = L_19;
|
|
V_6 = 0;
|
|
goto IL_034d_1;
|
|
}
|
|
|
|
IL_0067_1:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:318>
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_20 = V_5;
|
|
int32_t L_21 = V_6;
|
|
NullCheck(L_20);
|
|
int32_t L_22 = L_21;
|
|
int32_t L_23 = (L_20)->GetAt(static_cast<il2cpp_array_size_t>(L_22));
|
|
V_7 = L_23;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:320>
|
|
int32_t L_24 = V_7;
|
|
if ((!(((uint32_t)L_24) == ((uint32_t)(-1)))))
|
|
{
|
|
goto IL_0078_1;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:321>
|
|
goto IL_0368;
|
|
}
|
|
|
|
IL_0078_1:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:322>
|
|
List_1_t2E485E650BF1E41358CE56A69323E183C5A89CB6* L_25 = __this->___m_ActiveRenderPassQueue;
|
|
int32_t L_26 = V_7;
|
|
NullCheck(L_25);
|
|
ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* L_27;
|
|
L_27 = List_1_get_Item_mBC42042D4082F4C6237FEA3435D58D570436268F(L_25, L_26, List_1_get_Item_mBC42042D4082F4C6237FEA3435D58D570436268F_RuntimeMethod_var);
|
|
V_8 = L_27;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:324>
|
|
V_15 = 0;
|
|
goto IL_00a1_1;
|
|
}
|
|
|
|
IL_008c_1:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:325>
|
|
ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* L_28 = V_8;
|
|
NullCheck(L_28);
|
|
NativeArray_1_tA833EB7E3E1C9AF82C37976AD964B8D4BAC38B2C* L_29 = (NativeArray_1_tA833EB7E3E1C9AF82C37976AD964B8D4BAC38B2C*)(&L_28->___m_ColorAttachmentIndices);
|
|
int32_t L_30 = V_15;
|
|
IL2CPP_NATIVEARRAY_SET_ITEM(int32_t, (L_29)->___m_Buffer, L_30, ((-1)));
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:324>
|
|
int32_t L_31 = V_15;
|
|
V_15 = ((int32_t)il2cpp_codegen_add(L_31, 1));
|
|
}
|
|
|
|
IL_00a1_1:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:324>
|
|
int32_t L_32 = V_15;
|
|
ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* L_33 = V_8;
|
|
NullCheck(L_33);
|
|
NativeArray_1_tA833EB7E3E1C9AF82C37976AD964B8D4BAC38B2C* L_34 = (NativeArray_1_tA833EB7E3E1C9AF82C37976AD964B8D4BAC38B2C*)(&L_33->___m_ColorAttachmentIndices);
|
|
int32_t L_35;
|
|
L_35 = IL2CPP_NATIVEARRAY_GET_LENGTH((L_34)->___m_Length);
|
|
if ((((int32_t)L_32) < ((int32_t)L_35)))
|
|
{
|
|
goto IL_008c_1;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:328>
|
|
UniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7* L_36 = ___1_cameraData;
|
|
NullCheck(L_36);
|
|
RenderTexture_tBA90C4C3AD9EECCFDDCC632D97C29FAB80D60D27* L_37 = L_36->___targetTexture;
|
|
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
bool L_38;
|
|
L_38 = Object_op_Inequality_mD0BE578448EAA61948F25C32F8DD55AB1F778602(L_37, (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C*)NULL, NULL);
|
|
V_10 = L_38;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:329>
|
|
ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* L_39 = V_8;
|
|
NullCheck(L_39);
|
|
RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B* L_40;
|
|
L_40 = ScriptableRenderPass_get_colorAttachmentHandle_m9F25A09AF063ECC69EBDF7680D11FA1E5D38AC7A(L_39, NULL);
|
|
NullCheck(L_40);
|
|
RenderTexture_tBA90C4C3AD9EECCFDDCC632D97C29FAB80D60D27* L_41;
|
|
L_41 = RTHandle_get_rt_m593F2799E2E6C97979D3B4CD9E992D305922BBE9_inline(L_40, NULL);
|
|
bool L_42;
|
|
L_42 = Object_op_Inequality_mD0BE578448EAA61948F25C32F8DD55AB1F778602(L_41, (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C*)NULL, NULL);
|
|
if (!L_42)
|
|
{
|
|
goto IL_00e7_1;
|
|
}
|
|
}
|
|
{
|
|
ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* L_43 = V_8;
|
|
NullCheck(L_43);
|
|
RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B* L_44;
|
|
L_44 = ScriptableRenderPass_get_colorAttachmentHandle_m9F25A09AF063ECC69EBDF7680D11FA1E5D38AC7A(L_43, NULL);
|
|
NullCheck(L_44);
|
|
RenderTexture_tBA90C4C3AD9EECCFDDCC632D97C29FAB80D60D27* L_45;
|
|
L_45 = RTHandle_get_rt_m593F2799E2E6C97979D3B4CD9E992D305922BBE9_inline(L_44, NULL);
|
|
bool L_46;
|
|
L_46 = ScriptableRenderer_IsDepthOnlyRenderTexture_mFF5E987762C786DEBB831975AA953A5E3DA9DF6A(__this, L_45, NULL);
|
|
if (L_46)
|
|
{
|
|
goto IL_00fc_1;
|
|
}
|
|
}
|
|
|
|
IL_00e7_1:
|
|
{
|
|
bool L_47 = V_10;
|
|
if (!L_47)
|
|
{
|
|
goto IL_00f9_1;
|
|
}
|
|
}
|
|
{
|
|
UniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7* L_48 = ___1_cameraData;
|
|
NullCheck(L_48);
|
|
RenderTexture_tBA90C4C3AD9EECCFDDCC632D97C29FAB80D60D27* L_49 = L_48->___targetTexture;
|
|
bool L_50;
|
|
L_50 = ScriptableRenderer_IsDepthOnlyRenderTexture_mFF5E987762C786DEBB831975AA953A5E3DA9DF6A(__this, L_49, NULL);
|
|
G_B15_0 = ((int32_t)(L_50));
|
|
goto IL_00fd_1;
|
|
}
|
|
|
|
IL_00f9_1:
|
|
{
|
|
G_B15_0 = 0;
|
|
goto IL_00fd_1;
|
|
}
|
|
|
|
IL_00fc_1:
|
|
{
|
|
G_B15_0 = 1;
|
|
}
|
|
|
|
IL_00fd_1:
|
|
{
|
|
V_11 = (bool)G_B15_0;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:335>
|
|
RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B* L_51 = ___2_passColorAttachment;
|
|
NullCheck(L_51);
|
|
RenderTargetIdentifier_tA528663AC6EB3911D8E91AA40F7070FA5455442B L_52;
|
|
L_52 = RTHandle_get_nameID_m30AF2567853494DB845D83A8B37D0FB523DA76E9_inline(L_51, NULL);
|
|
RenderTargetIdentifier_tA528663AC6EB3911D8E91AA40F7070FA5455442B L_53;
|
|
memset((&L_53), 0, sizeof(L_53));
|
|
RenderTargetIdentifier__ctor_m79A7348AF351A912E617BF9C8A44A766648C80FB((&L_53), L_52, 0, (-1), 0, NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(RenderTargetIdentifier_tA528663AC6EB3911D8E91AA40F7070FA5455442B_il2cpp_TypeInfo_var);
|
|
RenderTargetIdentifier_tA528663AC6EB3911D8E91AA40F7070FA5455442B L_54;
|
|
L_54 = RenderTargetIdentifier_op_Implicit_m3E2366E36F14173DBEED75591978EBE1F01A1325(2, NULL);
|
|
bool L_55;
|
|
L_55 = RenderTargetIdentifier_op_Inequality_m255136CF7E1B63A8D5A1F9FF03B992B656AB42DF(L_53, L_54, NULL);
|
|
if (!L_55)
|
|
{
|
|
goto IL_016f_1;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:337>
|
|
bool L_56 = V_11;
|
|
if (L_56)
|
|
{
|
|
G_B18_0 = (&V_9);
|
|
goto IL_0136_1;
|
|
}
|
|
G_B17_0 = (&V_9);
|
|
}
|
|
{
|
|
RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B* L_57 = ___2_passColorAttachment;
|
|
NullCheck(L_57);
|
|
RenderTexture_tBA90C4C3AD9EECCFDDCC632D97C29FAB80D60D27* L_58;
|
|
L_58 = RTHandle_get_rt_m593F2799E2E6C97979D3B4CD9E992D305922BBE9_inline(L_57, NULL);
|
|
NullCheck(L_58);
|
|
RenderTextureDescriptor_t69845881CE6437E4E61F92074F2F84079F23FA46 L_59;
|
|
L_59 = RenderTexture_get_descriptor_m2FABD5CF6CCF410D1311FCBC7C9D9ECDEE9C7CC2(L_58, NULL);
|
|
V_16 = L_59;
|
|
int32_t L_60;
|
|
L_60 = RenderTextureDescriptor_get_graphicsFormat_m50F25A4F179EA318C8D3B0D8685F9C5F59F7DEC0((&V_16), NULL);
|
|
G_B19_0 = L_60;
|
|
G_B19_1 = G_B17_0;
|
|
goto IL_014a_1;
|
|
}
|
|
|
|
IL_0136_1:
|
|
{
|
|
RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B* L_61 = ___2_passColorAttachment;
|
|
NullCheck(L_61);
|
|
RenderTexture_tBA90C4C3AD9EECCFDDCC632D97C29FAB80D60D27* L_62;
|
|
L_62 = RTHandle_get_rt_m593F2799E2E6C97979D3B4CD9E992D305922BBE9_inline(L_61, NULL);
|
|
NullCheck(L_62);
|
|
RenderTextureDescriptor_t69845881CE6437E4E61F92074F2F84079F23FA46 L_63;
|
|
L_63 = RenderTexture_get_descriptor_m2FABD5CF6CCF410D1311FCBC7C9D9ECDEE9C7CC2(L_62, NULL);
|
|
V_16 = L_63;
|
|
int32_t L_64;
|
|
L_64 = RenderTextureDescriptor_get_depthStencilFormat_m360929BE5BD10E9C3D8C936AA6B44B1D11C119CB_inline((&V_16), NULL);
|
|
G_B19_0 = L_64;
|
|
G_B19_1 = G_B18_0;
|
|
}
|
|
|
|
IL_014a_1:
|
|
{
|
|
AttachmentDescriptor__ctor_m88C496B5B9F52F912AF1B3D2FD13E5DCD57748F4(G_B19_1, G_B19_0, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:338>
|
|
RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B* L_65 = ___2_passColorAttachment;
|
|
NullCheck(L_65);
|
|
RenderTexture_tBA90C4C3AD9EECCFDDCC632D97C29FAB80D60D27* L_66;
|
|
L_66 = RTHandle_get_rt_m593F2799E2E6C97979D3B4CD9E992D305922BBE9_inline(L_65, NULL);
|
|
NullCheck(L_66);
|
|
RenderTextureDescriptor_t69845881CE6437E4E61F92074F2F84079F23FA46 L_67;
|
|
L_67 = RenderTexture_get_descriptor_m2FABD5CF6CCF410D1311FCBC7C9D9ECDEE9C7CC2(L_66, NULL);
|
|
V_16 = L_67;
|
|
int32_t L_68;
|
|
L_68 = RenderTextureDescriptor_get_msaaSamples_mFCC33643AFF2265C8305DCFD79ED8774A1A8FA22_inline((&V_16), NULL);
|
|
V_12 = L_68;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:339>
|
|
RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B* L_69 = ___2_passColorAttachment;
|
|
NullCheck(L_69);
|
|
RenderTargetIdentifier_tA528663AC6EB3911D8E91AA40F7070FA5455442B L_70;
|
|
L_70 = RTHandle_get_nameID_m30AF2567853494DB845D83A8B37D0FB523DA76E9_inline(L_69, NULL);
|
|
V_13 = L_70;
|
|
goto IL_01c8_1;
|
|
}
|
|
|
|
IL_016f_1:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:343>
|
|
ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* L_71 = V_8;
|
|
NullCheck(L_71);
|
|
GraphicsFormatU5BU5D_tF6A3D90C430FA3F548B77E5D58D25D71F154E6C5* L_72;
|
|
L_72 = ScriptableRenderPass_get_renderTargetFormat_m7B211E4B10D23A760D3906426BA9C4562DF951CC_inline(L_71, NULL);
|
|
NullCheck(L_72);
|
|
int32_t L_73 = 0;
|
|
int32_t L_74 = (int32_t)(L_72)->GetAt(static_cast<il2cpp_array_size_t>(L_73));
|
|
if (L_74)
|
|
{
|
|
G_B22_0 = (&V_9);
|
|
goto IL_0194_1;
|
|
}
|
|
G_B21_0 = (&V_9);
|
|
}
|
|
{
|
|
UniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7* L_75 = ___1_cameraData;
|
|
NullCheck(L_75);
|
|
bool L_76 = L_75->___isHdrEnabled;
|
|
UniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7* L_77 = ___1_cameraData;
|
|
NullCheck(L_77);
|
|
int32_t L_78 = L_77->___hdrColorBufferPrecision;
|
|
il2cpp_codegen_runtime_class_init_inline(Graphics_t99CD970FFEA58171C70F54DF0C06D315BD452F2C_il2cpp_TypeInfo_var);
|
|
bool L_79;
|
|
L_79 = Graphics_get_preserveFramebufferAlpha_mCB9E42855D0544B90D7CBB454DBAE09DDD1D5E5A(NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(UniversalRenderPipeline_t54B4737DC500C08628C5BE283D8C583C14DED98F_il2cpp_TypeInfo_var);
|
|
int32_t L_80;
|
|
L_80 = UniversalRenderPipeline_MakeRenderTextureGraphicsFormat_m386F1D4BCAD4537F62E4096D9264554312E11B5D(L_76, L_78, L_79, NULL);
|
|
G_B23_0 = ((int32_t)(L_80));
|
|
G_B23_1 = G_B21_0;
|
|
goto IL_019d_1;
|
|
}
|
|
|
|
IL_0194_1:
|
|
{
|
|
ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* L_81 = V_8;
|
|
NullCheck(L_81);
|
|
GraphicsFormatU5BU5D_tF6A3D90C430FA3F548B77E5D58D25D71F154E6C5* L_82;
|
|
L_82 = ScriptableRenderPass_get_renderTargetFormat_m7B211E4B10D23A760D3906426BA9C4562DF951CC_inline(L_81, NULL);
|
|
NullCheck(L_82);
|
|
int32_t L_83 = 0;
|
|
int32_t L_84 = (int32_t)(L_82)->GetAt(static_cast<il2cpp_array_size_t>(L_83));
|
|
G_B23_0 = L_84;
|
|
G_B23_1 = G_B22_0;
|
|
}
|
|
|
|
IL_019d_1:
|
|
{
|
|
AttachmentDescriptor__ctor_m88C496B5B9F52F912AF1B3D2FD13E5DCD57748F4(G_B23_1, G_B23_0, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:345>
|
|
UniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7* L_85 = ___1_cameraData;
|
|
NullCheck(L_85);
|
|
RenderTextureDescriptor_t69845881CE6437E4E61F92074F2F84079F23FA46* L_86 = (RenderTextureDescriptor_t69845881CE6437E4E61F92074F2F84079F23FA46*)(&L_85->___cameraTargetDescriptor);
|
|
int32_t L_87;
|
|
L_87 = RenderTextureDescriptor_get_msaaSamples_mFCC33643AFF2265C8305DCFD79ED8774A1A8FA22_inline(L_86, NULL);
|
|
V_12 = L_87;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:346>
|
|
bool L_88 = V_10;
|
|
if (L_88)
|
|
{
|
|
goto IL_01bb_1;
|
|
}
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(RenderTargetIdentifier_tA528663AC6EB3911D8E91AA40F7070FA5455442B_il2cpp_TypeInfo_var);
|
|
RenderTargetIdentifier_tA528663AC6EB3911D8E91AA40F7070FA5455442B L_89;
|
|
L_89 = RenderTargetIdentifier_op_Implicit_m3E2366E36F14173DBEED75591978EBE1F01A1325(2, NULL);
|
|
G_B26_0 = L_89;
|
|
goto IL_01c6_1;
|
|
}
|
|
|
|
IL_01bb_1:
|
|
{
|
|
UniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7* L_90 = ___1_cameraData;
|
|
NullCheck(L_90);
|
|
RenderTexture_tBA90C4C3AD9EECCFDDCC632D97C29FAB80D60D27* L_91 = L_90->___targetTexture;
|
|
RenderTargetIdentifier_tA528663AC6EB3911D8E91AA40F7070FA5455442B L_92;
|
|
memset((&L_92), 0, sizeof(L_92));
|
|
RenderTargetIdentifier__ctor_mD6E20FA134EEBCE40A8B5E64C505DE8A0DC96BDF((&L_92), L_91, NULL);
|
|
G_B26_0 = L_92;
|
|
}
|
|
|
|
IL_01c6_1:
|
|
{
|
|
V_13 = G_B26_0;
|
|
}
|
|
|
|
IL_01c8_1:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:349>
|
|
RenderTargetIdentifier_tA528663AC6EB3911D8E91AA40F7070FA5455442B L_93 = V_13;
|
|
int32_t L_94 = ___4_finalClearFlag;
|
|
AttachmentDescriptor_ConfigureTarget_m0F7D48AB1C1005A8C31F597CD69B1F0E3E8C037D((&V_9), L_93, (bool)((((int32_t)((int32_t)((int32_t)L_94&1))) == ((int32_t)0))? 1 : 0), (bool)1, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:351>
|
|
ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* L_95 = V_8;
|
|
il2cpp_codegen_runtime_class_init_inline(ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892_il2cpp_TypeInfo_var);
|
|
bool L_96;
|
|
L_96 = ScriptableRenderer_PassHasInputAttachments_m26CD6A09B8A3ACB14DEC0A65B730D48FE4F6C1D7(L_95, NULL);
|
|
if (!L_96)
|
|
{
|
|
goto IL_01ea_1;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:352>
|
|
ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* L_97 = V_8;
|
|
ScriptableRenderer_SetupInputAttachmentIndices_m372065B367FFEA0F21A915E683A9338F560F4648(__this, L_97, NULL);
|
|
}
|
|
|
|
IL_01ea_1:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:355>
|
|
int32_t L_98;
|
|
L_98 = SystemInfo_GetGraphicsFormat_mF4A09D38BA91B8F783C9189B5D744BA943292E0E(2, NULL);
|
|
AttachmentDescriptor_tBAC9B26B50BB0838C5C0CC22BB296F9DFF41276E L_99;
|
|
memset((&L_99), 0, sizeof(L_99));
|
|
AttachmentDescriptor__ctor_m88C496B5B9F52F912AF1B3D2FD13E5DCD57748F4((&L_99), L_98, NULL);
|
|
__this->___m_ActiveDepthAttachmentDescriptor = L_99;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:356>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:357>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:358>
|
|
AttachmentDescriptor_tBAC9B26B50BB0838C5C0CC22BB296F9DFF41276E* L_100 = (AttachmentDescriptor_tBAC9B26B50BB0838C5C0CC22BB296F9DFF41276E*)(&__this->___m_ActiveDepthAttachmentDescriptor);
|
|
RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B* L_101 = ___3_passDepthAttachment;
|
|
NullCheck(L_101);
|
|
RenderTargetIdentifier_tA528663AC6EB3911D8E91AA40F7070FA5455442B L_102;
|
|
L_102 = RTHandle_get_nameID_m30AF2567853494DB845D83A8B37D0FB523DA76E9_inline(L_101, NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(RenderTargetIdentifier_tA528663AC6EB3911D8E91AA40F7070FA5455442B_il2cpp_TypeInfo_var);
|
|
RenderTargetIdentifier_tA528663AC6EB3911D8E91AA40F7070FA5455442B L_103;
|
|
L_103 = RenderTargetIdentifier_op_Implicit_m3E2366E36F14173DBEED75591978EBE1F01A1325(2, NULL);
|
|
bool L_104;
|
|
L_104 = RenderTargetIdentifier_op_Inequality_m255136CF7E1B63A8D5A1F9FF03B992B656AB42DF(L_102, L_103, NULL);
|
|
if (L_104)
|
|
{
|
|
G_B33_0 = L_100;
|
|
goto IL_0236_1;
|
|
}
|
|
G_B30_0 = L_100;
|
|
}
|
|
{
|
|
bool L_105 = V_10;
|
|
if (L_105)
|
|
{
|
|
G_B32_0 = G_B30_0;
|
|
goto IL_0221_1;
|
|
}
|
|
G_B31_0 = G_B30_0;
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(RenderTargetIdentifier_tA528663AC6EB3911D8E91AA40F7070FA5455442B_il2cpp_TypeInfo_var);
|
|
RenderTargetIdentifier_tA528663AC6EB3911D8E91AA40F7070FA5455442B L_106;
|
|
L_106 = RenderTargetIdentifier_op_Implicit_m3E2366E36F14173DBEED75591978EBE1F01A1325(3, NULL);
|
|
G_B34_0 = L_106;
|
|
G_B34_1 = G_B31_0;
|
|
goto IL_023d_1;
|
|
}
|
|
|
|
IL_0221_1:
|
|
{
|
|
UniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7* L_107 = ___1_cameraData;
|
|
NullCheck(L_107);
|
|
RenderTexture_tBA90C4C3AD9EECCFDDCC632D97C29FAB80D60D27* L_108 = L_107->___targetTexture;
|
|
NullCheck(L_108);
|
|
RenderBuffer_tBE7B342979EF2FA36E24C8A7F9242212F5B89551 L_109;
|
|
L_109 = RenderTexture_get_depthBuffer_mBBDFA14B3AC2AE4796795E89A0BCA59D54B859D5(L_108, NULL);
|
|
RenderTargetIdentifier_tA528663AC6EB3911D8E91AA40F7070FA5455442B L_110;
|
|
memset((&L_110), 0, sizeof(L_110));
|
|
RenderTargetIdentifier__ctor_m3B830AE627991944D4C8D53DEC6D96CC9C70A060((&L_110), L_109, 0, (-1), 0, NULL);
|
|
G_B34_0 = L_110;
|
|
G_B34_1 = G_B32_0;
|
|
goto IL_023d_1;
|
|
}
|
|
|
|
IL_0236_1:
|
|
{
|
|
RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B* L_111 = ___3_passDepthAttachment;
|
|
NullCheck(L_111);
|
|
RenderTargetIdentifier_tA528663AC6EB3911D8E91AA40F7070FA5455442B L_112;
|
|
L_112 = RTHandle_get_nameID_m30AF2567853494DB845D83A8B37D0FB523DA76E9_inline(L_111, NULL);
|
|
G_B34_0 = L_112;
|
|
G_B34_1 = G_B33_0;
|
|
}
|
|
|
|
IL_023d_1:
|
|
{
|
|
int32_t L_113 = ___4_finalClearFlag;
|
|
AttachmentDescriptor_ConfigureTarget_m0F7D48AB1C1005A8C31F597CD69B1F0E3E8C037D(G_B34_1, G_B34_0, (bool)((((int32_t)((int32_t)((int32_t)L_113&2))) == ((int32_t)0))? 1 : 0), (bool)1, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:360>
|
|
int32_t L_114 = ___4_finalClearFlag;
|
|
if (!L_114)
|
|
{
|
|
goto IL_028c_1;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:363>
|
|
UniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7* L_115 = ___1_cameraData;
|
|
NullCheck(L_115);
|
|
int32_t L_116 = L_115->___renderType;
|
|
if ((!(((uint32_t)L_116) == ((uint32_t)1))))
|
|
{
|
|
goto IL_0261_1;
|
|
}
|
|
}
|
|
{
|
|
bool L_117 = V_11;
|
|
if (!L_117)
|
|
{
|
|
goto IL_0270_1;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_118 = ___4_finalClearFlag;
|
|
if (!((int32_t)((int32_t)L_118&1)))
|
|
{
|
|
goto IL_0270_1;
|
|
}
|
|
}
|
|
|
|
IL_0261_1:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:364>
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F L_119 = ___5_finalClearColor;
|
|
AttachmentDescriptor_ConfigureClear_m0C4A2481B28180B777F0C46E0FA5BC009FDC0886((&V_9), L_119, (1.0f), 0, NULL);
|
|
}
|
|
|
|
IL_0270_1:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:365>
|
|
int32_t L_120 = ___4_finalClearFlag;
|
|
if (!((int32_t)((int32_t)L_120&2)))
|
|
{
|
|
goto IL_028c_1;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:366>
|
|
AttachmentDescriptor_tBAC9B26B50BB0838C5C0CC22BB296F9DFF41276E* L_121 = (AttachmentDescriptor_tBAC9B26B50BB0838C5C0CC22BB296F9DFF41276E*)(&__this->___m_ActiveDepthAttachmentDescriptor);
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F L_122;
|
|
L_122 = Color_get_black_mB50217951591A045844C61E7FF31EEE3FEF16737_inline(NULL);
|
|
AttachmentDescriptor_ConfigureClear_m0C4A2481B28180B777F0C46E0FA5BC009FDC0886(L_121, L_122, (1.0f), 0, NULL);
|
|
}
|
|
|
|
IL_028c_1:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:370>
|
|
int32_t L_123 = V_12;
|
|
if ((((int32_t)L_123) <= ((int32_t)1)))
|
|
{
|
|
goto IL_02b7_1;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:372>
|
|
RenderTargetIdentifier_tA528663AC6EB3911D8E91AA40F7070FA5455442B L_124 = V_13;
|
|
AttachmentDescriptor_ConfigureResolveTarget_mCB1AA1AEFD52C3041AD5FFD82FB7A3C55C1D5C58((&V_9), L_124, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:373>
|
|
il2cpp_codegen_runtime_class_init_inline(RenderingUtils_t4E40200449A82FA3A172A563C490DF11FADA2BE1_il2cpp_TypeInfo_var);
|
|
bool L_125;
|
|
L_125 = RenderingUtils_MultisampleDepthResolveSupported_mFF310B1C5B2FF3C0B3A4237D4C248398A9F6E6E6(NULL);
|
|
if (!L_125)
|
|
{
|
|
goto IL_02b7_1;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:374>
|
|
AttachmentDescriptor_tBAC9B26B50BB0838C5C0CC22BB296F9DFF41276E* L_126 = (AttachmentDescriptor_tBAC9B26B50BB0838C5C0CC22BB296F9DFF41276E*)(&__this->___m_ActiveDepthAttachmentDescriptor);
|
|
AttachmentDescriptor_tBAC9B26B50BB0838C5C0CC22BB296F9DFF41276E* L_127 = (AttachmentDescriptor_tBAC9B26B50BB0838C5C0CC22BB296F9DFF41276E*)(&__this->___m_ActiveDepthAttachmentDescriptor);
|
|
RenderTargetIdentifier_tA528663AC6EB3911D8E91AA40F7070FA5455442B L_128;
|
|
L_128 = AttachmentDescriptor_get_loadStoreTarget_m0D018823050E378FE3FE501729C2CEC43CA39603(L_127, NULL);
|
|
AttachmentDescriptor_ConfigureResolveTarget_mCB1AA1AEFD52C3041AD5FFD82FB7A3C55C1D5C58(L_126, L_128, NULL);
|
|
}
|
|
|
|
IL_02b7_1:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:378>
|
|
il2cpp_codegen_runtime_class_init_inline(ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892_il2cpp_TypeInfo_var);
|
|
bool L_129 = ((ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892_StaticFields*)il2cpp_codegen_static_fields_for(ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892_il2cpp_TypeInfo_var))->___m_UseOptimizedStoreActions;
|
|
if (!L_129)
|
|
{
|
|
goto IL_02de_1;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:380>
|
|
RenderBufferStoreActionU5BU5D_tFEA8F5DD460573EA9F35FBEC5727D1804C5DCBF5* L_130 = __this->___m_FinalColorStoreAction;
|
|
NullCheck(L_130);
|
|
int32_t L_131 = 0;
|
|
int32_t L_132 = (int32_t)(L_130)->GetAt(static_cast<il2cpp_array_size_t>(L_131));
|
|
AttachmentDescriptor_set_storeAction_m301B420FC8A154DCB629A00523EE2EC41033C25A((&V_9), L_132, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:381>
|
|
AttachmentDescriptor_tBAC9B26B50BB0838C5C0CC22BB296F9DFF41276E* L_133 = (AttachmentDescriptor_tBAC9B26B50BB0838C5C0CC22BB296F9DFF41276E*)(&__this->___m_ActiveDepthAttachmentDescriptor);
|
|
int32_t L_134 = __this->___m_FinalDepthStoreAction;
|
|
AttachmentDescriptor_set_storeAction_m301B420FC8A154DCB629A00523EE2EC41033C25A(L_133, L_134, NULL);
|
|
}
|
|
|
|
IL_02de_1:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:384>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:385>
|
|
int32_t L_135 = V_4;
|
|
AttachmentDescriptor_tBAC9B26B50BB0838C5C0CC22BB296F9DFF41276E L_136 = V_9;
|
|
AttachmentDescriptorU5BU5D_tC70107EBD955FE94BA31C7FDC146069EF9C547C1* L_137 = __this->___m_ActiveColorAttachmentDescriptors;
|
|
il2cpp_codegen_runtime_class_init_inline(ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892_il2cpp_TypeInfo_var);
|
|
int32_t L_138;
|
|
L_138 = ScriptableRenderer_FindAttachmentDescriptorIndexInList_m1C8C0549F43D2A2AFA119299C7E1ACFB1B81FA9D(L_135, L_136, L_137, NULL);
|
|
V_14 = L_138;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:387>
|
|
int32_t L_139 = V_14;
|
|
if ((!(((uint32_t)L_139) == ((uint32_t)(-1)))))
|
|
{
|
|
goto IL_0338_1;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:390>
|
|
ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* L_140 = V_8;
|
|
NullCheck(L_140);
|
|
NativeArray_1_tA833EB7E3E1C9AF82C37976AD964B8D4BAC38B2C* L_141 = (NativeArray_1_tA833EB7E3E1C9AF82C37976AD964B8D4BAC38B2C*)(&L_140->___m_ColorAttachmentIndices);
|
|
int32_t L_142 = V_4;
|
|
IL2CPP_NATIVEARRAY_SET_ITEM(int32_t, (L_141)->___m_Buffer, 0, (L_142));
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:391>
|
|
AttachmentDescriptorU5BU5D_tC70107EBD955FE94BA31C7FDC146069EF9C547C1* L_143 = __this->___m_ActiveColorAttachmentDescriptors;
|
|
int32_t L_144 = V_4;
|
|
AttachmentDescriptor_tBAC9B26B50BB0838C5C0CC22BB296F9DFF41276E L_145 = V_9;
|
|
NullCheck(L_143);
|
|
(L_143)->SetAt(static_cast<il2cpp_array_size_t>(L_144), (AttachmentDescriptor_tBAC9B26B50BB0838C5C0CC22BB296F9DFF41276E)L_145);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:392>
|
|
int32_t L_146 = V_4;
|
|
V_4 = ((int32_t)il2cpp_codegen_add(L_146, 1));
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:393>
|
|
Dictionary_2_tB41FAC88F07BAB98D6D373F7C94FB0496D1BDA32* L_147 = __this->___m_RenderPassesAttachmentCount;
|
|
Hash128_t93367F504B687578F893CDBCD13FB95AC8A87A40 L_148 = V_2;
|
|
V_17 = L_148;
|
|
Dictionary_2_tB41FAC88F07BAB98D6D373F7C94FB0496D1BDA32* L_149 = L_147;
|
|
Hash128_t93367F504B687578F893CDBCD13FB95AC8A87A40 L_150 = V_17;
|
|
NullCheck(L_149);
|
|
int32_t L_151;
|
|
L_151 = Dictionary_2_get_Item_m5A9D1816E2F401909438646463C34D043E421045(L_149, L_150, Dictionary_2_get_Item_m5A9D1816E2F401909438646463C34D043E421045_RuntimeMethod_var);
|
|
V_18 = L_151;
|
|
Hash128_t93367F504B687578F893CDBCD13FB95AC8A87A40 L_152 = V_17;
|
|
int32_t L_153 = V_18;
|
|
NullCheck(L_149);
|
|
Dictionary_2_set_Item_mFB50A5ABA450F464BCF08AEB35E14D26BB582C78(L_149, L_152, ((int32_t)il2cpp_codegen_add(L_153, 1)), Dictionary_2_set_Item_mFB50A5ABA450F464BCF08AEB35E14D26BB582C78_RuntimeMethod_var);
|
|
goto IL_0347_1;
|
|
}
|
|
|
|
IL_0338_1:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:398>
|
|
ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* L_154 = V_8;
|
|
NullCheck(L_154);
|
|
NativeArray_1_tA833EB7E3E1C9AF82C37976AD964B8D4BAC38B2C* L_155 = (NativeArray_1_tA833EB7E3E1C9AF82C37976AD964B8D4BAC38B2C*)(&L_154->___m_ColorAttachmentIndices);
|
|
int32_t L_156 = V_14;
|
|
IL2CPP_NATIVEARRAY_SET_ITEM(int32_t, (L_155)->___m_Buffer, 0, (L_156));
|
|
}
|
|
|
|
IL_0347_1:
|
|
{
|
|
int32_t L_157 = V_6;
|
|
V_6 = ((int32_t)il2cpp_codegen_add(L_157, 1));
|
|
}
|
|
|
|
IL_034d_1:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:318>
|
|
int32_t L_158 = V_6;
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_159 = V_5;
|
|
NullCheck(L_159);
|
|
if ((((int32_t)L_158) < ((int32_t)((int32_t)(((RuntimeArray*)L_159)->max_length)))))
|
|
{
|
|
goto IL_0067_1;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:401>
|
|
goto IL_0368;
|
|
}
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_0368:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:402>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 33333
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ScriptableRenderer_ExecuteNativeRenderPass_m5F62A02F11AAA72F04BCC35B720D54A8350B789B (ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892* __this, ScriptableRenderContext_t5AB09B3602BEB456E0DC3D53926D3A3BDAF08E36 ___0_context, ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* ___1_renderPass, UniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7* ___2_cameraData, RenderingData_tAAA01190551D6D5954314E3E1E85B58DD45EED71* ___3_renderingData, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Debug_t8394C7EEAECA3689C2C9B9DE9C7166D73596276F_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_get_Item_m5A9D1816E2F401909438646463C34D043E421045_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_get_Item_m88A84F3C4F3B87068DF58800EC51E4BAE278F826_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Item_mBC42042D4082F4C6237FEA3435D58D570436268F_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Math_tEB65DE7CA8B083C412C969C92981C030865486CE_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NativeArray_1_Dispose_m05C674E687B921C37722A6A1FF938FD56574642E_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NativeArray_1_Dispose_mDE23364D98F461C925DB28A6A9D5C8580A56FD39_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NativeArray_1__ctor_m94DB1A0F1293F5BAA65533ED74C41E31D71CA979_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NativeArray_1__ctor_mB7BB23924A114599D399A5EC6C00B2B6407CF66D_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Profiling_t1148A935DE86EC9E67DA54238721B4178A744AD3_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RenderTargetIdentifier_tA528663AC6EB3911D8E91AA40F7070FA5455442B_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RenderingUtils_t4E40200449A82FA3A172A563C490DF11FADA2BE1_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ScriptableRenderContext_t5AB09B3602BEB456E0DC3D53926D3A3BDAF08E36_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral045FC89E4B566C5C0026D3FDABAC59D7FE1C12D0);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
ProfilingScope_t57898BA31E8EF8F083EF84E0DA2737AC61CBC5BD V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
int32_t V_1 = 0;
|
|
Hash128_t93367F504B687578F893CDBCD13FB95AC8A87A40 V_2;
|
|
memset((&V_2), 0, sizeof(V_2));
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* V_3 = NULL;
|
|
int32_t V_4 = 0;
|
|
bool V_5 = false;
|
|
bool V_6 = false;
|
|
NativeArray_1_t39BA841475121E3F8A81F9BCA6646FD6FD6A32A8 V_7;
|
|
memset((&V_7), 0, sizeof(V_7));
|
|
RenderPassDescriptor_t69F0595A52DBEEBFE5A491D3E8E27D530069B0C5 V_8;
|
|
memset((&V_8), 0, sizeof(V_8));
|
|
int32_t V_9 = 0;
|
|
uint32_t V_10 = 0;
|
|
NativeArray_1_tA833EB7E3E1C9AF82C37976AD964B8D4BAC38B2C V_11;
|
|
memset((&V_11), 0, sizeof(V_11));
|
|
int32_t V_12 = 0;
|
|
int32_t V_13 = 0;
|
|
int32_t V_14 = 0;
|
|
int32_t G_B7_0 = 0;
|
|
int32_t G_B14_0 = 0;
|
|
NativeArray_1_t39BA841475121E3F8A81F9BCA6646FD6FD6A32A8* G_B16_0 = NULL;
|
|
NativeArray_1_t39BA841475121E3F8A81F9BCA6646FD6FD6A32A8* G_B15_0 = NULL;
|
|
NativeArray_1_t39BA841475121E3F8A81F9BCA6646FD6FD6A32A8* G_B17_0 = NULL;
|
|
int32_t G_B18_0 = 0;
|
|
NativeArray_1_t39BA841475121E3F8A81F9BCA6646FD6FD6A32A8* G_B18_1 = NULL;
|
|
NativeArray_1_tA833EB7E3E1C9AF82C37976AD964B8D4BAC38B2C* G_B26_0 = NULL;
|
|
NativeArray_1_tA833EB7E3E1C9AF82C37976AD964B8D4BAC38B2C* G_B25_0 = NULL;
|
|
uint32_t G_B27_0 = 0;
|
|
NativeArray_1_tA833EB7E3E1C9AF82C37976AD964B8D4BAC38B2C* G_B27_1 = NULL;
|
|
NativeArray_1_t39BA841475121E3F8A81F9BCA6646FD6FD6A32A8 G_B37_0;
|
|
memset((&G_B37_0), 0, sizeof(G_B37_0));
|
|
int32_t G_B37_1 = 0;
|
|
int32_t G_B37_2 = 0;
|
|
int32_t G_B37_3 = 0;
|
|
ScriptableRenderContext_t5AB09B3602BEB456E0DC3D53926D3A3BDAF08E36* G_B37_4 = NULL;
|
|
NativeArray_1_t39BA841475121E3F8A81F9BCA6646FD6FD6A32A8 G_B36_0;
|
|
memset((&G_B36_0), 0, sizeof(G_B36_0));
|
|
int32_t G_B36_1 = 0;
|
|
int32_t G_B36_2 = 0;
|
|
int32_t G_B36_3 = 0;
|
|
ScriptableRenderContext_t5AB09B3602BEB456E0DC3D53926D3A3BDAF08E36* G_B36_4 = NULL;
|
|
int32_t G_B40_0 = 0;
|
|
NativeArray_1_t39BA841475121E3F8A81F9BCA6646FD6FD6A32A8 G_B40_1;
|
|
memset((&G_B40_1), 0, sizeof(G_B40_1));
|
|
int32_t G_B40_2 = 0;
|
|
int32_t G_B40_3 = 0;
|
|
int32_t G_B40_4 = 0;
|
|
ScriptableRenderContext_t5AB09B3602BEB456E0DC3D53926D3A3BDAF08E36* G_B40_5 = NULL;
|
|
NativeArray_1_t39BA841475121E3F8A81F9BCA6646FD6FD6A32A8 G_B39_0;
|
|
memset((&G_B39_0), 0, sizeof(G_B39_0));
|
|
int32_t G_B39_1 = 0;
|
|
int32_t G_B39_2 = 0;
|
|
int32_t G_B39_3 = 0;
|
|
ScriptableRenderContext_t5AB09B3602BEB456E0DC3D53926D3A3BDAF08E36* G_B39_4 = NULL;
|
|
NativeArray_1_t39BA841475121E3F8A81F9BCA6646FD6FD6A32A8 G_B38_0;
|
|
memset((&G_B38_0), 0, sizeof(G_B38_0));
|
|
int32_t G_B38_1 = 0;
|
|
int32_t G_B38_2 = 0;
|
|
int32_t G_B38_3 = 0;
|
|
ScriptableRenderContext_t5AB09B3602BEB456E0DC3D53926D3A3BDAF08E36* G_B38_4 = NULL;
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:406>
|
|
il2cpp_codegen_runtime_class_init_inline(Profiling_t1148A935DE86EC9E67DA54238721B4178A744AD3_il2cpp_TypeInfo_var);
|
|
ProfilingSampler_t420D4672EDB44E0EF980B31ADFD9E5747200FECE* L_0 = ((Profiling_t1148A935DE86EC9E67DA54238721B4178A744AD3_StaticFields*)il2cpp_codegen_static_fields_for(Profiling_t1148A935DE86EC9E67DA54238721B4178A744AD3_il2cpp_TypeInfo_var))->___execute;
|
|
ProfilingScope__ctor_m4B73587A2295443A73B64DDD3D484D8EAECC0D65((&V_0), L_0, NULL);
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_030e:
|
|
{
|
|
ProfilingScope_Dispose_m4231A2ACA1F8E345BB0078310A9F7601704C8BE4((&V_0), NULL);
|
|
return;
|
|
}
|
|
});
|
|
try
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:408>
|
|
ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* L_1 = ___1_renderPass;
|
|
NullCheck(L_1);
|
|
int32_t L_2;
|
|
L_2 = ScriptableRenderPass_get_renderPassQueueIndex_mDA630CF31CA4371C2E4BE76B367C4A013C35AB85_inline(L_1, NULL);
|
|
V_1 = L_2;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:409>
|
|
Hash128U5BU5D_tB104E7247B842648E447B7FCF4748077DC1F8C98* L_3 = __this->___m_PassIndexToPassHash;
|
|
int32_t L_4 = V_1;
|
|
NullCheck(L_3);
|
|
int32_t L_5 = L_4;
|
|
Hash128_t93367F504B687578F893CDBCD13FB95AC8A87A40 L_6 = (L_3)->GetAt(static_cast<il2cpp_array_size_t>(L_5));
|
|
V_2 = L_6;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:410>
|
|
Dictionary_2_tCB9019887EB0254D4745B0724BC12327C5B63792* L_7 = __this->___m_MergeableRenderPassesMap;
|
|
Hash128_t93367F504B687578F893CDBCD13FB95AC8A87A40 L_8 = V_2;
|
|
NullCheck(L_7);
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_9;
|
|
L_9 = Dictionary_2_get_Item_m88A84F3C4F3B87068DF58800EC51E4BAE278F826(L_7, L_8, Dictionary_2_get_Item_m88A84F3C4F3B87068DF58800EC51E4BAE278F826_RuntimeMethod_var);
|
|
V_3 = L_9;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:412>
|
|
Dictionary_2_tB41FAC88F07BAB98D6D373F7C94FB0496D1BDA32* L_10 = __this->___m_RenderPassesAttachmentCount;
|
|
Hash128_t93367F504B687578F893CDBCD13FB95AC8A87A40 L_11 = V_2;
|
|
NullCheck(L_10);
|
|
int32_t L_12;
|
|
L_12 = Dictionary_2_get_Item_m5A9D1816E2F401909438646463C34D043E421045(L_10, L_11, Dictionary_2_get_Item_m5A9D1816E2F401909438646463C34D043E421045_RuntimeMethod_var);
|
|
V_4 = L_12;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:414>
|
|
ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* L_13 = ___1_renderPass;
|
|
NullCheck(L_13);
|
|
RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B* L_14;
|
|
L_14 = ScriptableRenderPass_get_colorAttachmentHandle_m9F25A09AF063ECC69EBDF7680D11FA1E5D38AC7A(L_13, NULL);
|
|
NullCheck(L_14);
|
|
RenderTexture_tBA90C4C3AD9EECCFDDCC632D97C29FAB80D60D27* L_15;
|
|
L_15 = RTHandle_get_rt_m593F2799E2E6C97979D3B4CD9E992D305922BBE9_inline(L_14, NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
bool L_16;
|
|
L_16 = Object_op_Inequality_mD0BE578448EAA61948F25C32F8DD55AB1F778602(L_15, (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C*)NULL, NULL);
|
|
if (!L_16)
|
|
{
|
|
goto IL_0061_1;
|
|
}
|
|
}
|
|
{
|
|
ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* L_17 = ___1_renderPass;
|
|
NullCheck(L_17);
|
|
RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B* L_18;
|
|
L_18 = ScriptableRenderPass_get_colorAttachmentHandle_m9F25A09AF063ECC69EBDF7680D11FA1E5D38AC7A(L_17, NULL);
|
|
NullCheck(L_18);
|
|
RenderTexture_tBA90C4C3AD9EECCFDDCC632D97C29FAB80D60D27* L_19;
|
|
L_19 = RTHandle_get_rt_m593F2799E2E6C97979D3B4CD9E992D305922BBE9_inline(L_18, NULL);
|
|
bool L_20;
|
|
L_20 = ScriptableRenderer_IsDepthOnlyRenderTexture_mFF5E987762C786DEBB831975AA953A5E3DA9DF6A(__this, L_19, NULL);
|
|
if (L_20)
|
|
{
|
|
goto IL_0080_1;
|
|
}
|
|
}
|
|
|
|
IL_0061_1:
|
|
{
|
|
UniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7* L_21 = ___2_cameraData;
|
|
NullCheck(L_21);
|
|
RenderTexture_tBA90C4C3AD9EECCFDDCC632D97C29FAB80D60D27* L_22 = L_21->___targetTexture;
|
|
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
bool L_23;
|
|
L_23 = Object_op_Inequality_mD0BE578448EAA61948F25C32F8DD55AB1F778602(L_22, (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C*)NULL, NULL);
|
|
if (!L_23)
|
|
{
|
|
goto IL_007d_1;
|
|
}
|
|
}
|
|
{
|
|
UniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7* L_24 = ___2_cameraData;
|
|
NullCheck(L_24);
|
|
RenderTexture_tBA90C4C3AD9EECCFDDCC632D97C29FAB80D60D27* L_25 = L_24->___targetTexture;
|
|
bool L_26;
|
|
L_26 = ScriptableRenderer_IsDepthOnlyRenderTexture_mFF5E987762C786DEBB831975AA953A5E3DA9DF6A(__this, L_25, NULL);
|
|
G_B7_0 = ((int32_t)(L_26));
|
|
goto IL_0081_1;
|
|
}
|
|
|
|
IL_007d_1:
|
|
{
|
|
G_B7_0 = 0;
|
|
goto IL_0081_1;
|
|
}
|
|
|
|
IL_0080_1:
|
|
{
|
|
G_B7_0 = 1;
|
|
}
|
|
|
|
IL_0081_1:
|
|
{
|
|
V_5 = (bool)G_B7_0;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:415>
|
|
bool L_27 = V_5;
|
|
if (L_27)
|
|
{
|
|
goto IL_00b5_1;
|
|
}
|
|
}
|
|
{
|
|
ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* L_28 = ___1_renderPass;
|
|
NullCheck(L_28);
|
|
bool L_29;
|
|
L_29 = ScriptableRenderPass_get_overrideCameraTarget_m343BA9235CD254354013E3CFD6EC519958597128_inline(L_28, NULL);
|
|
if (!L_29)
|
|
{
|
|
goto IL_00b2_1;
|
|
}
|
|
}
|
|
{
|
|
ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* L_30 = ___1_renderPass;
|
|
NullCheck(L_30);
|
|
bool L_31;
|
|
L_31 = ScriptableRenderPass_get_overrideCameraTarget_m343BA9235CD254354013E3CFD6EC519958597128_inline(L_30, NULL);
|
|
if (!L_31)
|
|
{
|
|
goto IL_00af_1;
|
|
}
|
|
}
|
|
{
|
|
ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* L_32 = ___1_renderPass;
|
|
NullCheck(L_32);
|
|
RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B* L_33;
|
|
L_33 = ScriptableRenderPass_get_depthAttachmentHandle_m3AA7953B201494DEF4FD2061660B94663EF63465_inline(L_32, NULL);
|
|
NullCheck(L_33);
|
|
RenderTargetIdentifier_tA528663AC6EB3911D8E91AA40F7070FA5455442B L_34;
|
|
L_34 = RTHandle_get_nameID_m30AF2567853494DB845D83A8B37D0FB523DA76E9_inline(L_33, NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(RenderTargetIdentifier_tA528663AC6EB3911D8E91AA40F7070FA5455442B_il2cpp_TypeInfo_var);
|
|
RenderTargetIdentifier_tA528663AC6EB3911D8E91AA40F7070FA5455442B L_35;
|
|
L_35 = RenderTargetIdentifier_op_Implicit_m3E2366E36F14173DBEED75591978EBE1F01A1325(2, NULL);
|
|
bool L_36;
|
|
L_36 = RenderTargetIdentifier_op_Inequality_m255136CF7E1B63A8D5A1F9FF03B992B656AB42DF(L_34, L_35, NULL);
|
|
G_B14_0 = ((int32_t)(L_36));
|
|
goto IL_00b6_1;
|
|
}
|
|
|
|
IL_00af_1:
|
|
{
|
|
G_B14_0 = 0;
|
|
goto IL_00b6_1;
|
|
}
|
|
|
|
IL_00b2_1:
|
|
{
|
|
G_B14_0 = 1;
|
|
goto IL_00b6_1;
|
|
}
|
|
|
|
IL_00b5_1:
|
|
{
|
|
G_B14_0 = 1;
|
|
}
|
|
|
|
IL_00b6_1:
|
|
{
|
|
V_6 = (bool)G_B14_0;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:417>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:418>
|
|
bool L_37 = V_6;
|
|
if (!L_37)
|
|
{
|
|
G_B16_0 = (&V_7);
|
|
goto IL_00c2_1;
|
|
}
|
|
G_B15_0 = (&V_7);
|
|
}
|
|
{
|
|
bool L_38 = V_5;
|
|
if (!L_38)
|
|
{
|
|
G_B17_0 = G_B15_0;
|
|
goto IL_00c5_1;
|
|
}
|
|
G_B16_0 = G_B15_0;
|
|
}
|
|
|
|
IL_00c2_1:
|
|
{
|
|
G_B18_0 = 1;
|
|
G_B18_1 = G_B16_0;
|
|
goto IL_00c9_1;
|
|
}
|
|
|
|
IL_00c5_1:
|
|
{
|
|
int32_t L_39 = V_4;
|
|
G_B18_0 = ((int32_t)il2cpp_codegen_add(L_39, 1));
|
|
G_B18_1 = G_B17_0;
|
|
}
|
|
|
|
IL_00c9_1:
|
|
{
|
|
NativeArray_1__ctor_m94DB1A0F1293F5BAA65533ED74C41E31D71CA979(G_B18_1, G_B18_0, 2, 1, NativeArray_1__ctor_m94DB1A0F1293F5BAA65533ED74C41E31D71CA979_RuntimeMethod_var);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:420>
|
|
V_12 = 0;
|
|
goto IL_00f1_1;
|
|
}
|
|
|
|
IL_00d5_1:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:421>
|
|
int32_t L_40 = V_12;
|
|
AttachmentDescriptorU5BU5D_tC70107EBD955FE94BA31C7FDC146069EF9C547C1* L_41 = __this->___m_ActiveColorAttachmentDescriptors;
|
|
int32_t L_42 = V_12;
|
|
NullCheck(L_41);
|
|
int32_t L_43 = L_42;
|
|
AttachmentDescriptor_tBAC9B26B50BB0838C5C0CC22BB296F9DFF41276E L_44 = (L_41)->GetAt(static_cast<il2cpp_array_size_t>(L_43));
|
|
IL2CPP_NATIVEARRAY_SET_ITEM(AttachmentDescriptor_tBAC9B26B50BB0838C5C0CC22BB296F9DFF41276E, ((&V_7))->___m_Buffer, L_40, (L_44));
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:420>
|
|
int32_t L_45 = V_12;
|
|
V_12 = ((int32_t)il2cpp_codegen_add(L_45, 1));
|
|
}
|
|
|
|
IL_00f1_1:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:420>
|
|
int32_t L_46 = V_12;
|
|
int32_t L_47 = V_4;
|
|
if ((((int32_t)L_46) < ((int32_t)L_47)))
|
|
{
|
|
goto IL_00d5_1;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:423>
|
|
bool L_48 = V_6;
|
|
if (!L_48)
|
|
{
|
|
goto IL_010e_1;
|
|
}
|
|
}
|
|
{
|
|
bool L_49 = V_5;
|
|
if (L_49)
|
|
{
|
|
goto IL_010e_1;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:424>
|
|
int32_t L_50 = V_4;
|
|
AttachmentDescriptor_tBAC9B26B50BB0838C5C0CC22BB296F9DFF41276E L_51 = __this->___m_ActiveDepthAttachmentDescriptor;
|
|
IL2CPP_NATIVEARRAY_SET_ITEM(AttachmentDescriptor_tBAC9B26B50BB0838C5C0CC22BB296F9DFF41276E, ((&V_7))->___m_Buffer, L_50, (L_51));
|
|
}
|
|
|
|
IL_010e_1:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:426>
|
|
UniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7* L_52 = ___2_cameraData;
|
|
ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* L_53 = ___1_renderPass;
|
|
RenderPassDescriptor_t69F0595A52DBEEBFE5A491D3E8E27D530069B0C5 L_54;
|
|
L_54 = ScriptableRenderer_InitializeRenderPassDescriptor_mA2BED336FF2583DEE2FF881D5FC09673DEB74121(__this, L_52, L_53, NULL);
|
|
V_8 = L_54;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:428>
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_55 = V_3;
|
|
il2cpp_codegen_runtime_class_init_inline(ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892_il2cpp_TypeInfo_var);
|
|
int32_t L_56;
|
|
L_56 = ScriptableRenderer_GetValidPassIndexCount_m279EDCB7B38DE3813CB7AC0AF7F204A1D9FDD9F8(L_55, NULL);
|
|
V_9 = L_56;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:430>
|
|
ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* L_57 = ___1_renderPass;
|
|
uint32_t L_58;
|
|
L_58 = ScriptableRenderer_GetSubPassAttachmentIndicesCount_mBB35E73EFD6E816EA9FA2830081F2206F9C692C8(L_57, NULL);
|
|
V_10 = L_58;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:432>
|
|
bool L_59 = V_5;
|
|
if (!L_59)
|
|
{
|
|
G_B26_0 = (&V_11);
|
|
goto IL_0131_1;
|
|
}
|
|
G_B25_0 = (&V_11);
|
|
}
|
|
{
|
|
G_B27_0 = ((uint32_t)(0));
|
|
G_B27_1 = G_B25_0;
|
|
goto IL_0133_1;
|
|
}
|
|
|
|
IL_0131_1:
|
|
{
|
|
uint32_t L_60 = V_10;
|
|
G_B27_0 = L_60;
|
|
G_B27_1 = G_B26_0;
|
|
}
|
|
|
|
IL_0133_1:
|
|
{
|
|
NativeArray_1__ctor_mB7BB23924A114599D399A5EC6C00B2B6407CF66D(G_B27_1, G_B27_0, 2, 1, NativeArray_1__ctor_mB7BB23924A114599D399A5EC6C00B2B6407CF66D_RuntimeMethod_var);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:433>
|
|
bool L_61 = V_5;
|
|
if (L_61)
|
|
{
|
|
goto IL_0167_1;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:435>
|
|
V_13 = 0;
|
|
goto IL_015f_1;
|
|
}
|
|
|
|
IL_0143_1:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:437>
|
|
int32_t L_62 = V_13;
|
|
ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* L_63 = ___1_renderPass;
|
|
NullCheck(L_63);
|
|
NativeArray_1_tA833EB7E3E1C9AF82C37976AD964B8D4BAC38B2C* L_64 = (NativeArray_1_tA833EB7E3E1C9AF82C37976AD964B8D4BAC38B2C*)(&L_63->___m_ColorAttachmentIndices);
|
|
int32_t L_65 = V_13;
|
|
int32_t L_66;
|
|
L_66 = IL2CPP_NATIVEARRAY_GET_ITEM(int32_t, (L_64)->___m_Buffer, L_65);
|
|
IL2CPP_NATIVEARRAY_SET_ITEM(int32_t, ((&V_11))->___m_Buffer, L_62, (L_66));
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:435>
|
|
int32_t L_67 = V_13;
|
|
V_13 = ((int32_t)il2cpp_codegen_add(L_67, 1));
|
|
}
|
|
|
|
IL_015f_1:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:435>
|
|
int32_t L_68 = V_13;
|
|
uint32_t L_69 = V_10;
|
|
if ((((int64_t)((int64_t)L_68)) < ((int64_t)((int64_t)(uint64_t)((uint32_t)L_69)))))
|
|
{
|
|
goto IL_0143_1;
|
|
}
|
|
}
|
|
|
|
IL_0167_1:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:441>
|
|
int32_t L_70 = V_9;
|
|
if ((((int32_t)L_70) == ((int32_t)1)))
|
|
{
|
|
goto IL_0172_1;
|
|
}
|
|
}
|
|
{
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_71 = V_3;
|
|
NullCheck(L_71);
|
|
int32_t L_72 = 0;
|
|
int32_t L_73 = (L_71)->GetAt(static_cast<il2cpp_array_size_t>(L_72));
|
|
int32_t L_74 = V_1;
|
|
if ((!(((uint32_t)L_73) == ((uint32_t)L_74))))
|
|
{
|
|
goto IL_01d5_1;
|
|
}
|
|
}
|
|
|
|
IL_0172_1:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:443>
|
|
ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* L_75 = ___1_renderPass;
|
|
il2cpp_codegen_runtime_class_init_inline(ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892_il2cpp_TypeInfo_var);
|
|
bool L_76;
|
|
L_76 = ScriptableRenderer_PassHasInputAttachments_m26CD6A09B8A3ACB14DEC0A65B730D48FE4F6C1D7(L_75, NULL);
|
|
if (!L_76)
|
|
{
|
|
goto IL_0184_1;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:444>
|
|
il2cpp_codegen_runtime_class_init_inline(Debug_t8394C7EEAECA3689C2C9B9DE9C7166D73596276F_il2cpp_TypeInfo_var);
|
|
Debug_LogWarning_m33EF1B897E0C7C6FF538989610BFAFFEF4628CA9(_stringLiteral045FC89E4B566C5C0026D3FDABAC59D7FE1C12D0, NULL);
|
|
}
|
|
|
|
IL_0184_1:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:446>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:447>
|
|
RenderPassDescriptor_t69F0595A52DBEEBFE5A491D3E8E27D530069B0C5 L_77 = V_8;
|
|
int32_t L_78 = L_77.___w;
|
|
RenderPassDescriptor_t69F0595A52DBEEBFE5A491D3E8E27D530069B0C5 L_79 = V_8;
|
|
int32_t L_80 = L_79.___h;
|
|
RenderPassDescriptor_t69F0595A52DBEEBFE5A491D3E8E27D530069B0C5 L_81 = V_8;
|
|
int32_t L_82 = L_81.___samples;
|
|
il2cpp_codegen_runtime_class_init_inline(Math_tEB65DE7CA8B083C412C969C92981C030865486CE_il2cpp_TypeInfo_var);
|
|
int32_t L_83;
|
|
L_83 = Math_Max_m530EBA549AFD98CFC2BD29FE86C6376E67DF11CF(L_82, 1, NULL);
|
|
NativeArray_1_t39BA841475121E3F8A81F9BCA6646FD6FD6A32A8 L_84 = V_7;
|
|
bool L_85 = V_6;
|
|
if (L_85)
|
|
{
|
|
G_B37_0 = L_84;
|
|
G_B37_1 = L_83;
|
|
G_B37_2 = L_80;
|
|
G_B37_3 = L_78;
|
|
G_B37_4 = (&___0_context);
|
|
goto IL_01aa_1;
|
|
}
|
|
G_B36_0 = L_84;
|
|
G_B36_1 = L_83;
|
|
G_B36_2 = L_80;
|
|
G_B36_3 = L_78;
|
|
G_B36_4 = (&___0_context);
|
|
}
|
|
{
|
|
G_B40_0 = (-1);
|
|
G_B40_1 = G_B36_0;
|
|
G_B40_2 = G_B36_1;
|
|
G_B40_3 = G_B36_2;
|
|
G_B40_4 = G_B36_3;
|
|
G_B40_5 = G_B36_4;
|
|
goto IL_01b3_1;
|
|
}
|
|
|
|
IL_01aa_1:
|
|
{
|
|
bool L_86 = V_5;
|
|
if (!L_86)
|
|
{
|
|
G_B39_0 = G_B37_0;
|
|
G_B39_1 = G_B37_1;
|
|
G_B39_2 = G_B37_2;
|
|
G_B39_3 = G_B37_3;
|
|
G_B39_4 = G_B37_4;
|
|
goto IL_01b1_1;
|
|
}
|
|
G_B38_0 = G_B37_0;
|
|
G_B38_1 = G_B37_1;
|
|
G_B38_2 = G_B37_2;
|
|
G_B38_3 = G_B37_3;
|
|
G_B38_4 = G_B37_4;
|
|
}
|
|
{
|
|
G_B40_0 = 0;
|
|
G_B40_1 = G_B38_0;
|
|
G_B40_2 = G_B38_1;
|
|
G_B40_3 = G_B38_2;
|
|
G_B40_4 = G_B38_3;
|
|
G_B40_5 = G_B38_4;
|
|
goto IL_01b3_1;
|
|
}
|
|
|
|
IL_01b1_1:
|
|
{
|
|
int32_t L_87 = V_4;
|
|
G_B40_0 = L_87;
|
|
G_B40_1 = G_B39_0;
|
|
G_B40_2 = G_B39_1;
|
|
G_B40_3 = G_B39_2;
|
|
G_B40_4 = G_B39_3;
|
|
G_B40_5 = G_B39_4;
|
|
}
|
|
|
|
IL_01b3_1:
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(ScriptableRenderContext_t5AB09B3602BEB456E0DC3D53926D3A3BDAF08E36_il2cpp_TypeInfo_var);
|
|
ScriptableRenderContext_BeginRenderPass_mC026E069CF6681EA3331972D2D11BC9616C2BBBE(G_B40_5, G_B40_4, G_B40_3, G_B40_2, G_B40_1, G_B40_0, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:448>
|
|
NativeArray_1_Dispose_mDE23364D98F461C925DB28A6A9D5C8580A56FD39((&V_7), NativeArray_1_Dispose_mDE23364D98F461C925DB28A6A9D5C8580A56FD39_RuntimeMethod_var);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:450>
|
|
NativeArray_1_tA833EB7E3E1C9AF82C37976AD964B8D4BAC38B2C L_88 = V_11;
|
|
ScriptableRenderContext_BeginSubPass_m9E1A59EB48A07EDC1FB233CAC1177EDE73B19767((&___0_context), L_88, (bool)0, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:452>
|
|
int32_t L_89 = V_1;
|
|
__this->___m_LastBeginSubpassPassIndex = L_89;
|
|
goto IL_027f_1;
|
|
}
|
|
|
|
IL_01d5_1:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:459>
|
|
List_1_t2E485E650BF1E41358CE56A69323E183C5A89CB6* L_90 = __this->___m_ActiveRenderPassQueue;
|
|
int32_t L_91 = __this->___m_LastBeginSubpassPassIndex;
|
|
NullCheck(L_90);
|
|
ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* L_92;
|
|
L_92 = List_1_get_Item_mBC42042D4082F4C6237FEA3435D58D570436268F(L_90, L_91, List_1_get_Item_mBC42042D4082F4C6237FEA3435D58D570436268F_RuntimeMethod_var);
|
|
List_1_t2E485E650BF1E41358CE56A69323E183C5A89CB6* L_93 = __this->___m_ActiveRenderPassQueue;
|
|
int32_t L_94 = V_1;
|
|
NullCheck(L_93);
|
|
ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* L_95;
|
|
L_95 = List_1_get_Item_mBC42042D4082F4C6237FEA3435D58D570436268F(L_93, L_94, List_1_get_Item_mBC42042D4082F4C6237FEA3435D58D570436268F_RuntimeMethod_var);
|
|
il2cpp_codegen_runtime_class_init_inline(ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892_il2cpp_TypeInfo_var);
|
|
bool L_96;
|
|
L_96 = ScriptableRenderer_AreAttachmentIndicesCompatible_m25775E66ACCF88DAF5CE0004E10549E8CF027F55(L_92, L_95, NULL);
|
|
if (L_96)
|
|
{
|
|
goto IL_0243_1;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:461>
|
|
il2cpp_codegen_runtime_class_init_inline(ScriptableRenderContext_t5AB09B3602BEB456E0DC3D53926D3A3BDAF08E36_il2cpp_TypeInfo_var);
|
|
ScriptableRenderContext_EndSubPass_m9A25C86A96A30590D7D8D9BEE2EE789B4C363602((&___0_context), NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:462>
|
|
List_1_t2E485E650BF1E41358CE56A69323E183C5A89CB6* L_97 = __this->___m_ActiveRenderPassQueue;
|
|
int32_t L_98 = V_1;
|
|
NullCheck(L_97);
|
|
ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* L_99;
|
|
L_99 = List_1_get_Item_mBC42042D4082F4C6237FEA3435D58D570436268F(L_97, L_98, List_1_get_Item_mBC42042D4082F4C6237FEA3435D58D570436268F_RuntimeMethod_var);
|
|
il2cpp_codegen_runtime_class_init_inline(ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892_il2cpp_TypeInfo_var);
|
|
bool L_100;
|
|
L_100 = ScriptableRenderer_PassHasInputAttachments_m26CD6A09B8A3ACB14DEC0A65B730D48FE4F6C1D7(L_99, NULL);
|
|
if (!L_100)
|
|
{
|
|
goto IL_0230_1;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:463>
|
|
NativeArray_1_tA833EB7E3E1C9AF82C37976AD964B8D4BAC38B2C L_101 = V_11;
|
|
List_1_t2E485E650BF1E41358CE56A69323E183C5A89CB6* L_102 = __this->___m_ActiveRenderPassQueue;
|
|
int32_t L_103 = V_1;
|
|
NullCheck(L_102);
|
|
ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* L_104;
|
|
L_104 = List_1_get_Item_mBC42042D4082F4C6237FEA3435D58D570436268F(L_102, L_103, List_1_get_Item_mBC42042D4082F4C6237FEA3435D58D570436268F_RuntimeMethod_var);
|
|
NullCheck(L_104);
|
|
NativeArray_1_tA833EB7E3E1C9AF82C37976AD964B8D4BAC38B2C L_105 = L_104->___m_InputAttachmentIndices;
|
|
il2cpp_codegen_runtime_class_init_inline(ScriptableRenderContext_t5AB09B3602BEB456E0DC3D53926D3A3BDAF08E36_il2cpp_TypeInfo_var);
|
|
ScriptableRenderContext_BeginSubPass_m53AECA447C7DC5E5DBA8A3C3DB93CE091B9E9918((&___0_context), L_101, L_105, (bool)0, NULL);
|
|
goto IL_023a_1;
|
|
}
|
|
|
|
IL_0230_1:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:465>
|
|
NativeArray_1_tA833EB7E3E1C9AF82C37976AD964B8D4BAC38B2C L_106 = V_11;
|
|
il2cpp_codegen_runtime_class_init_inline(ScriptableRenderContext_t5AB09B3602BEB456E0DC3D53926D3A3BDAF08E36_il2cpp_TypeInfo_var);
|
|
ScriptableRenderContext_BeginSubPass_m9E1A59EB48A07EDC1FB233CAC1177EDE73B19767((&___0_context), L_106, (bool)0, NULL);
|
|
}
|
|
|
|
IL_023a_1:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:467>
|
|
int32_t L_107 = V_1;
|
|
__this->___m_LastBeginSubpassPassIndex = L_107;
|
|
goto IL_027f_1;
|
|
}
|
|
|
|
IL_0243_1:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:469>
|
|
List_1_t2E485E650BF1E41358CE56A69323E183C5A89CB6* L_108 = __this->___m_ActiveRenderPassQueue;
|
|
int32_t L_109 = V_1;
|
|
NullCheck(L_108);
|
|
ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* L_110;
|
|
L_110 = List_1_get_Item_mBC42042D4082F4C6237FEA3435D58D570436268F(L_108, L_109, List_1_get_Item_mBC42042D4082F4C6237FEA3435D58D570436268F_RuntimeMethod_var);
|
|
il2cpp_codegen_runtime_class_init_inline(ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892_il2cpp_TypeInfo_var);
|
|
bool L_111;
|
|
L_111 = ScriptableRenderer_PassHasInputAttachments_m26CD6A09B8A3ACB14DEC0A65B730D48FE4F6C1D7(L_110, NULL);
|
|
if (!L_111)
|
|
{
|
|
goto IL_027f_1;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:471>
|
|
il2cpp_codegen_runtime_class_init_inline(ScriptableRenderContext_t5AB09B3602BEB456E0DC3D53926D3A3BDAF08E36_il2cpp_TypeInfo_var);
|
|
ScriptableRenderContext_EndSubPass_m9A25C86A96A30590D7D8D9BEE2EE789B4C363602((&___0_context), NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:472>
|
|
NativeArray_1_tA833EB7E3E1C9AF82C37976AD964B8D4BAC38B2C L_112 = V_11;
|
|
List_1_t2E485E650BF1E41358CE56A69323E183C5A89CB6* L_113 = __this->___m_ActiveRenderPassQueue;
|
|
int32_t L_114 = V_1;
|
|
NullCheck(L_113);
|
|
ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* L_115;
|
|
L_115 = List_1_get_Item_mBC42042D4082F4C6237FEA3435D58D570436268F(L_113, L_114, List_1_get_Item_mBC42042D4082F4C6237FEA3435D58D570436268F_RuntimeMethod_var);
|
|
NullCheck(L_115);
|
|
NativeArray_1_tA833EB7E3E1C9AF82C37976AD964B8D4BAC38B2C L_116 = L_115->___m_InputAttachmentIndices;
|
|
ScriptableRenderContext_BeginSubPass_m53AECA447C7DC5E5DBA8A3C3DB93CE091B9E9918((&___0_context), L_112, L_116, (bool)0, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:474>
|
|
int32_t L_117 = V_1;
|
|
__this->___m_LastBeginSubpassPassIndex = L_117;
|
|
}
|
|
|
|
IL_027f_1:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:478>
|
|
NativeArray_1_Dispose_m05C674E687B921C37722A6A1FF938FD56574642E((&V_11), NativeArray_1_Dispose_m05C674E687B921C37722A6A1FF938FD56574642E_RuntimeMethod_var);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:482>
|
|
ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* L_118 = ___1_renderPass;
|
|
ScriptableRenderContext_t5AB09B3602BEB456E0DC3D53926D3A3BDAF08E36 L_119 = ___0_context;
|
|
RenderingData_tAAA01190551D6D5954314E3E1E85B58DD45EED71* L_120 = ___3_renderingData;
|
|
NullCheck(L_118);
|
|
VirtualActionInvoker2< ScriptableRenderContext_t5AB09B3602BEB456E0DC3D53926D3A3BDAF08E36, RenderingData_tAAA01190551D6D5954314E3E1E85B58DD45EED71* >::Invoke(10, L_118, L_119, L_120);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:486>
|
|
RenderingData_tAAA01190551D6D5954314E3E1E85B58DD45EED71* L_121 = ___3_renderingData;
|
|
CommandBuffer_tB56007DC84EF56296C325EC32DD12AC1E3DC91F7** L_122;
|
|
L_122 = RenderingData_get_commandBuffer_m747CD6ABF19DD5BB05F8231CC84A9922D9DC080A(L_121, NULL);
|
|
CommandBuffer_tB56007DC84EF56296C325EC32DD12AC1E3DC91F7* L_123 = *((CommandBuffer_tB56007DC84EF56296C325EC32DD12AC1E3DC91F7**)L_122);
|
|
il2cpp_codegen_runtime_class_init_inline(ScriptableRenderContext_t5AB09B3602BEB456E0DC3D53926D3A3BDAF08E36_il2cpp_TypeInfo_var);
|
|
ScriptableRenderContext_ExecuteCommandBuffer_mBAE37DFC699B7167A6E2C59012066C44A31E9896((&___0_context), L_123, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:487>
|
|
RenderingData_tAAA01190551D6D5954314E3E1E85B58DD45EED71* L_124 = ___3_renderingData;
|
|
CommandBuffer_tB56007DC84EF56296C325EC32DD12AC1E3DC91F7** L_125;
|
|
L_125 = RenderingData_get_commandBuffer_m747CD6ABF19DD5BB05F8231CC84A9922D9DC080A(L_124, NULL);
|
|
CommandBuffer_tB56007DC84EF56296C325EC32DD12AC1E3DC91F7* L_126 = *((CommandBuffer_tB56007DC84EF56296C325EC32DD12AC1E3DC91F7**)L_125);
|
|
NullCheck(L_126);
|
|
CommandBuffer_Clear_m4E1272BD1A0C162C9C26434E115279F42FA557C7(L_126, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:489>
|
|
int32_t L_127 = V_9;
|
|
if ((((int32_t)L_127) == ((int32_t)1)))
|
|
{
|
|
goto IL_02b9_1;
|
|
}
|
|
}
|
|
{
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_128 = V_3;
|
|
int32_t L_129 = V_9;
|
|
NullCheck(L_128);
|
|
int32_t L_130 = ((int32_t)il2cpp_codegen_subtract(L_129, 1));
|
|
int32_t L_131 = (L_128)->GetAt(static_cast<il2cpp_array_size_t>(L_130));
|
|
int32_t L_132 = V_1;
|
|
if ((!(((uint32_t)L_131) == ((uint32_t)L_132))))
|
|
{
|
|
goto IL_02ce_1;
|
|
}
|
|
}
|
|
|
|
IL_02b9_1:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:491>
|
|
il2cpp_codegen_runtime_class_init_inline(ScriptableRenderContext_t5AB09B3602BEB456E0DC3D53926D3A3BDAF08E36_il2cpp_TypeInfo_var);
|
|
ScriptableRenderContext_EndSubPass_m9A25C86A96A30590D7D8D9BEE2EE789B4C363602((&___0_context), NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:492>
|
|
ScriptableRenderContext_EndRenderPass_mA729C3E803FAEBE9D99B2DD03315CC823E4081DF((&___0_context), NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:494>
|
|
__this->___m_LastBeginSubpassPassIndex = 0;
|
|
}
|
|
|
|
IL_02ce_1:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:497>
|
|
V_14 = 0;
|
|
goto IL_02f5_1;
|
|
}
|
|
|
|
IL_02d3_1:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:499>
|
|
AttachmentDescriptorU5BU5D_tC70107EBD955FE94BA31C7FDC146069EF9C547C1* L_133 = __this->___m_ActiveColorAttachmentDescriptors;
|
|
int32_t L_134 = V_14;
|
|
il2cpp_codegen_runtime_class_init_inline(RenderingUtils_t4E40200449A82FA3A172A563C490DF11FADA2BE1_il2cpp_TypeInfo_var);
|
|
AttachmentDescriptor_tBAC9B26B50BB0838C5C0CC22BB296F9DFF41276E L_135;
|
|
L_135 = RenderingUtils_get_emptyAttachment_m2AF0A5A339A35504D7FA8DD4B3400ACF5F449F38_inline(NULL);
|
|
NullCheck(L_133);
|
|
(L_133)->SetAt(static_cast<il2cpp_array_size_t>(L_134), (AttachmentDescriptor_tBAC9B26B50BB0838C5C0CC22BB296F9DFF41276E)L_135);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:500>
|
|
BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* L_136 = __this->___m_IsActiveColorAttachmentTransient;
|
|
int32_t L_137 = V_14;
|
|
NullCheck(L_136);
|
|
(L_136)->SetAt(static_cast<il2cpp_array_size_t>(L_137), (bool)0);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:497>
|
|
int32_t L_138 = V_14;
|
|
V_14 = ((int32_t)il2cpp_codegen_add(L_138, 1));
|
|
}
|
|
|
|
IL_02f5_1:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:497>
|
|
int32_t L_139 = V_14;
|
|
AttachmentDescriptorU5BU5D_tC70107EBD955FE94BA31C7FDC146069EF9C547C1* L_140 = __this->___m_ActiveColorAttachmentDescriptors;
|
|
NullCheck(L_140);
|
|
if ((((int32_t)L_139) < ((int32_t)((int32_t)(((RuntimeArray*)L_140)->max_length)))))
|
|
{
|
|
goto IL_02d3_1;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:503>
|
|
il2cpp_codegen_runtime_class_init_inline(RenderingUtils_t4E40200449A82FA3A172A563C490DF11FADA2BE1_il2cpp_TypeInfo_var);
|
|
AttachmentDescriptor_tBAC9B26B50BB0838C5C0CC22BB296F9DFF41276E L_141;
|
|
L_141 = RenderingUtils_get_emptyAttachment_m2AF0A5A339A35504D7FA8DD4B3400ACF5F449F38_inline(NULL);
|
|
__this->___m_ActiveDepthAttachmentDescriptor = L_141;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:504>
|
|
goto IL_031c;
|
|
}
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_031c:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:505>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 33334
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ScriptableRenderer_SetupInputAttachmentIndices_m372065B367FFEA0F21A915E683A9338F560F4648 (ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892* __this, ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* ___0_pass, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Debug_t8394C7EEAECA3689C2C9B9DE9C7166D73596276F_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NativeArray_1__ctor_mB7BB23924A114599D399A5EC6C00B2B6407CF66D_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral4271A2AD8D1EE7E2EE69F1E579F480CDAF872BB8);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int32_t V_0 = 0;
|
|
int32_t V_1 = 0;
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:509>
|
|
ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* L_0 = ___0_pass;
|
|
il2cpp_codegen_runtime_class_init_inline(ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892_il2cpp_TypeInfo_var);
|
|
int32_t L_1;
|
|
L_1 = ScriptableRenderer_GetValidInputAttachmentCount_mF6D62B642F6243473A3B76EC214897D0AAB80357(L_0, NULL);
|
|
V_0 = L_1;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:510>
|
|
ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* L_2 = ___0_pass;
|
|
int32_t L_3 = V_0;
|
|
NativeArray_1_tA833EB7E3E1C9AF82C37976AD964B8D4BAC38B2C L_4;
|
|
memset((&L_4), 0, sizeof(L_4));
|
|
NativeArray_1__ctor_mB7BB23924A114599D399A5EC6C00B2B6407CF66D((&L_4), L_3, 2, 1, NativeArray_1__ctor_mB7BB23924A114599D399A5EC6C00B2B6407CF66D_RuntimeMethod_var);
|
|
NullCheck(L_2);
|
|
L_2->___m_InputAttachmentIndices = L_4;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:511>
|
|
V_1 = 0;
|
|
goto IL_008b;
|
|
}
|
|
|
|
IL_0019:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:513>
|
|
ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* L_5 = ___0_pass;
|
|
NullCheck(L_5);
|
|
NativeArray_1_tA833EB7E3E1C9AF82C37976AD964B8D4BAC38B2C* L_6 = (NativeArray_1_tA833EB7E3E1C9AF82C37976AD964B8D4BAC38B2C*)(&L_5->___m_InputAttachmentIndices);
|
|
int32_t L_7 = V_1;
|
|
ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* L_8 = ___0_pass;
|
|
NullCheck(L_8);
|
|
RTHandleU5BU5D_tE4B403B060D159B839BF74E8B59F8DCD52CF97DF* L_9 = L_8->___m_InputAttachments;
|
|
int32_t L_10 = V_1;
|
|
NullCheck(L_9);
|
|
int32_t L_11 = L_10;
|
|
RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B* L_12 = (L_9)->GetAt(static_cast<il2cpp_array_size_t>(L_11));
|
|
RenderTargetIdentifier_tA528663AC6EB3911D8E91AA40F7070FA5455442B L_13;
|
|
L_13 = RTHandle_op_Implicit_m2462183372B0496DE475889924EDCAAAD2011B54(L_12, NULL);
|
|
AttachmentDescriptorU5BU5D_tC70107EBD955FE94BA31C7FDC146069EF9C547C1* L_14 = __this->___m_ActiveColorAttachmentDescriptors;
|
|
il2cpp_codegen_runtime_class_init_inline(ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892_il2cpp_TypeInfo_var);
|
|
int32_t L_15;
|
|
L_15 = ScriptableRenderer_FindAttachmentDescriptorIndexInList_m1DD16FAFA007FC1648DFD24623F46865AAFB5CDB(L_13, L_14, NULL);
|
|
IL2CPP_NATIVEARRAY_SET_ITEM(int32_t, (L_6)->___m_Buffer, L_7, (L_15));
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:514>
|
|
ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* L_16 = ___0_pass;
|
|
NullCheck(L_16);
|
|
NativeArray_1_tA833EB7E3E1C9AF82C37976AD964B8D4BAC38B2C* L_17 = (NativeArray_1_tA833EB7E3E1C9AF82C37976AD964B8D4BAC38B2C*)(&L_16->___m_InputAttachmentIndices);
|
|
int32_t L_18 = V_1;
|
|
int32_t L_19;
|
|
L_19 = IL2CPP_NATIVEARRAY_GET_ITEM(int32_t, (L_17)->___m_Buffer, L_18);
|
|
if ((!(((uint32_t)L_19) == ((uint32_t)(-1)))))
|
|
{
|
|
goto IL_0058;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:516>
|
|
il2cpp_codegen_runtime_class_init_inline(Debug_t8394C7EEAECA3689C2C9B9DE9C7166D73596276F_il2cpp_TypeInfo_var);
|
|
Debug_LogWarning_m33EF1B897E0C7C6FF538989610BFAFFEF4628CA9(_stringLiteral4271A2AD8D1EE7E2EE69F1E579F480CDAF872BB8, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:517>
|
|
goto IL_0087;
|
|
}
|
|
|
|
IL_0058:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:521>
|
|
BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* L_20 = __this->___m_IsActiveColorAttachmentTransient;
|
|
ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* L_21 = ___0_pass;
|
|
NullCheck(L_21);
|
|
NativeArray_1_tA833EB7E3E1C9AF82C37976AD964B8D4BAC38B2C* L_22 = (NativeArray_1_tA833EB7E3E1C9AF82C37976AD964B8D4BAC38B2C*)(&L_21->___m_InputAttachmentIndices);
|
|
int32_t L_23 = V_1;
|
|
int32_t L_24;
|
|
L_24 = IL2CPP_NATIVEARRAY_GET_ITEM(int32_t, (L_22)->___m_Buffer, L_23);
|
|
NullCheck(L_20);
|
|
int32_t L_25 = L_24;
|
|
uint8_t L_26 = (uint8_t)(L_20)->GetAt(static_cast<il2cpp_array_size_t>(L_25));
|
|
if (L_26)
|
|
{
|
|
goto IL_0087;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:525>
|
|
BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* L_27 = __this->___m_IsActiveColorAttachmentTransient;
|
|
ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* L_28 = ___0_pass;
|
|
NullCheck(L_28);
|
|
NativeArray_1_tA833EB7E3E1C9AF82C37976AD964B8D4BAC38B2C* L_29 = (NativeArray_1_tA833EB7E3E1C9AF82C37976AD964B8D4BAC38B2C*)(&L_28->___m_InputAttachmentIndices);
|
|
int32_t L_30 = V_1;
|
|
int32_t L_31;
|
|
L_31 = IL2CPP_NATIVEARRAY_GET_ITEM(int32_t, (L_29)->___m_Buffer, L_30);
|
|
ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* L_32 = ___0_pass;
|
|
int32_t L_33 = V_1;
|
|
NullCheck(L_32);
|
|
bool L_34;
|
|
L_34 = ScriptableRenderPass_IsInputAttachmentTransient_m2FB2DD892C4642FDE4EF0031EC623040A3633029(L_32, L_33, NULL);
|
|
NullCheck(L_27);
|
|
(L_27)->SetAt(static_cast<il2cpp_array_size_t>(L_31), (bool)L_34);
|
|
}
|
|
|
|
IL_0087:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:511>
|
|
int32_t L_35 = V_1;
|
|
V_1 = ((int32_t)il2cpp_codegen_add(L_35, 1));
|
|
}
|
|
|
|
IL_008b:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:511>
|
|
int32_t L_36 = V_1;
|
|
int32_t L_37 = V_0;
|
|
if ((((int32_t)L_36) < ((int32_t)L_37)))
|
|
{
|
|
goto IL_0019;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:529>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 33335
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ScriptableRenderer_SetupTransientInputAttachments_m5190F553CCBD5228C578900F3B00789993F8836D (ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892* __this, int32_t ___0_attachmentCount, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RenderTargetIdentifier_tA528663AC6EB3911D8E91AA40F7070FA5455442B_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int32_t V_0 = 0;
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:533>
|
|
V_0 = 0;
|
|
goto IL_004d;
|
|
}
|
|
|
|
IL_0004:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:535>
|
|
BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* L_0 = __this->___m_IsActiveColorAttachmentTransient;
|
|
int32_t L_1 = V_0;
|
|
NullCheck(L_0);
|
|
int32_t L_2 = L_1;
|
|
uint8_t L_3 = (uint8_t)(L_0)->GetAt(static_cast<il2cpp_array_size_t>(L_2));
|
|
if (!L_3)
|
|
{
|
|
goto IL_0049;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:538>
|
|
AttachmentDescriptorU5BU5D_tC70107EBD955FE94BA31C7FDC146069EF9C547C1* L_4 = __this->___m_ActiveColorAttachmentDescriptors;
|
|
int32_t L_5 = V_0;
|
|
NullCheck(L_4);
|
|
AttachmentDescriptor_set_loadAction_mE9082911CEF05ECB4ADCC1B767CA7AE876D887CB(((L_4)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_5))), 2, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:539>
|
|
AttachmentDescriptorU5BU5D_tC70107EBD955FE94BA31C7FDC146069EF9C547C1* L_6 = __this->___m_ActiveColorAttachmentDescriptors;
|
|
int32_t L_7 = V_0;
|
|
NullCheck(L_6);
|
|
AttachmentDescriptor_set_storeAction_m301B420FC8A154DCB629A00523EE2EC41033C25A(((L_6)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_7))), 3, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:541>
|
|
AttachmentDescriptorU5BU5D_tC70107EBD955FE94BA31C7FDC146069EF9C547C1* L_8 = __this->___m_ActiveColorAttachmentDescriptors;
|
|
int32_t L_9 = V_0;
|
|
NullCheck(L_8);
|
|
il2cpp_codegen_runtime_class_init_inline(RenderTargetIdentifier_tA528663AC6EB3911D8E91AA40F7070FA5455442B_il2cpp_TypeInfo_var);
|
|
RenderTargetIdentifier_tA528663AC6EB3911D8E91AA40F7070FA5455442B L_10;
|
|
L_10 = RenderTargetIdentifier_op_Implicit_m3E2366E36F14173DBEED75591978EBE1F01A1325(0, NULL);
|
|
AttachmentDescriptor_set_loadStoreTarget_m9FF98F42A5FF8BEED8E8F6E4BB50D470A9461D87(((L_8)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_9))), L_10, NULL);
|
|
}
|
|
|
|
IL_0049:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:533>
|
|
int32_t L_11 = V_0;
|
|
V_0 = ((int32_t)il2cpp_codegen_add(L_11, 1));
|
|
}
|
|
|
|
IL_004d:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:533>
|
|
int32_t L_12 = V_0;
|
|
int32_t L_13 = ___0_attachmentCount;
|
|
if ((((int32_t)L_12) < ((int32_t)L_13)))
|
|
{
|
|
goto IL_0004;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:543>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 33336
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t ScriptableRenderer_GetSubPassAttachmentIndicesCount_mBB35E73EFD6E816EA9FA2830081F2206F9C692C8 (ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* ___0_pass, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_Dispose_m76DC8FCCF3E42CD42363AD6C2BAC71ABDA1535C2_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_MoveNext_m62905577B99C79AEA734E15AC569B10365214EDA_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_get_Current_m9615CE722B0B33517472FA29CB73AE60D8E8D522_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NativeArray_1_GetEnumerator_m6E656AE4243351850AD99E832638DDF081239389_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
uint32_t V_0 = 0;
|
|
Enumerator_t7767C5CF41D19BF6C7326C9870C530F1AD3CAC30 V_1;
|
|
memset((&V_1), 0, sizeof(V_1));
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:547>
|
|
V_0 = 0;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:549>
|
|
ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* L_0 = ___0_pass;
|
|
NullCheck(L_0);
|
|
NativeArray_1_tA833EB7E3E1C9AF82C37976AD964B8D4BAC38B2C* L_1 = (NativeArray_1_tA833EB7E3E1C9AF82C37976AD964B8D4BAC38B2C*)(&L_0->___m_ColorAttachmentIndices);
|
|
Enumerator_t7767C5CF41D19BF6C7326C9870C530F1AD3CAC30 L_2;
|
|
L_2 = NativeArray_1_GetEnumerator_m6E656AE4243351850AD99E832638DDF081239389(L_1, NativeArray_1_GetEnumerator_m6E656AE4243351850AD99E832638DDF081239389_RuntimeMethod_var);
|
|
V_1 = L_2;
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_0029:
|
|
{
|
|
Enumerator_Dispose_m76DC8FCCF3E42CD42363AD6C2BAC71ABDA1535C2((&V_1), Enumerator_Dispose_m76DC8FCCF3E42CD42363AD6C2BAC71ABDA1535C2_RuntimeMethod_var);
|
|
return;
|
|
}
|
|
});
|
|
try
|
|
{
|
|
{
|
|
goto IL_001e_1;
|
|
}
|
|
|
|
IL_0010_1:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:549>
|
|
int32_t L_3;
|
|
L_3 = Enumerator_get_Current_m9615CE722B0B33517472FA29CB73AE60D8E8D522_inline((&V_1), Enumerator_get_Current_m9615CE722B0B33517472FA29CB73AE60D8E8D522_RuntimeMethod_var);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:551>
|
|
if ((((int32_t)L_3) < ((int32_t)0)))
|
|
{
|
|
goto IL_001e_1;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:552>
|
|
uint32_t L_4 = V_0;
|
|
V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_4, 1));
|
|
}
|
|
|
|
IL_001e_1:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:549>
|
|
bool L_5;
|
|
L_5 = Enumerator_MoveNext_m62905577B99C79AEA734E15AC569B10365214EDA_inline((&V_1), Enumerator_MoveNext_m62905577B99C79AEA734E15AC569B10365214EDA_RuntimeMethod_var);
|
|
if (L_5)
|
|
{
|
|
goto IL_0010_1;
|
|
}
|
|
}
|
|
{
|
|
goto IL_0037;
|
|
}
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_0037:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:555>
|
|
uint32_t L_6 = V_0;
|
|
return L_6;
|
|
}
|
|
}
|
|
// Method Definition Index: 33337
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ScriptableRenderer_AreAttachmentIndicesCompatible_m25775E66ACCF88DAF5CE0004E10549E8CF027F55 (ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* ___0_lastSubPass, ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* ___1_currentSubPass, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
uint32_t V_0 = 0;
|
|
uint32_t V_1 = 0;
|
|
uint32_t V_2 = 0;
|
|
int32_t V_3 = 0;
|
|
int32_t V_4 = 0;
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:560>
|
|
ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* L_0 = ___0_lastSubPass;
|
|
il2cpp_codegen_runtime_class_init_inline(ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892_il2cpp_TypeInfo_var);
|
|
uint32_t L_1;
|
|
L_1 = ScriptableRenderer_GetSubPassAttachmentIndicesCount_mBB35E73EFD6E816EA9FA2830081F2206F9C692C8(L_0, NULL);
|
|
V_0 = L_1;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:561>
|
|
ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* L_2 = ___1_currentSubPass;
|
|
uint32_t L_3;
|
|
L_3 = ScriptableRenderer_GetSubPassAttachmentIndicesCount_mBB35E73EFD6E816EA9FA2830081F2206F9C692C8(L_2, NULL);
|
|
V_1 = L_3;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:563>
|
|
uint32_t L_4 = V_1;
|
|
uint32_t L_5 = V_0;
|
|
if ((((int32_t)L_4) == ((int32_t)L_5)))
|
|
{
|
|
goto IL_0014;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:564>
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_0014:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:566>
|
|
V_2 = 0;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:567>
|
|
V_3 = 0;
|
|
goto IL_004f;
|
|
}
|
|
|
|
IL_001a:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:569>
|
|
V_4 = 0;
|
|
goto IL_0044;
|
|
}
|
|
|
|
IL_001f:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:571>
|
|
ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* L_6 = ___1_currentSubPass;
|
|
NullCheck(L_6);
|
|
NativeArray_1_tA833EB7E3E1C9AF82C37976AD964B8D4BAC38B2C* L_7 = (NativeArray_1_tA833EB7E3E1C9AF82C37976AD964B8D4BAC38B2C*)(&L_6->___m_ColorAttachmentIndices);
|
|
int32_t L_8 = V_3;
|
|
int32_t L_9;
|
|
L_9 = IL2CPP_NATIVEARRAY_GET_ITEM(int32_t, (L_7)->___m_Buffer, L_8);
|
|
ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* L_10 = ___0_lastSubPass;
|
|
NullCheck(L_10);
|
|
NativeArray_1_tA833EB7E3E1C9AF82C37976AD964B8D4BAC38B2C* L_11 = (NativeArray_1_tA833EB7E3E1C9AF82C37976AD964B8D4BAC38B2C*)(&L_10->___m_ColorAttachmentIndices);
|
|
int32_t L_12 = V_4;
|
|
int32_t L_13;
|
|
L_13 = IL2CPP_NATIVEARRAY_GET_ITEM(int32_t, (L_11)->___m_Buffer, L_12);
|
|
if ((!(((uint32_t)L_9) == ((uint32_t)L_13))))
|
|
{
|
|
goto IL_003e;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:572>
|
|
uint32_t L_14 = V_2;
|
|
V_2 = ((int32_t)il2cpp_codegen_add((int32_t)L_14, 1));
|
|
}
|
|
|
|
IL_003e:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:569>
|
|
int32_t L_15 = V_4;
|
|
V_4 = ((int32_t)il2cpp_codegen_add(L_15, 1));
|
|
}
|
|
|
|
IL_0044:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:569>
|
|
int32_t L_16 = V_4;
|
|
uint32_t L_17 = V_0;
|
|
if ((((int64_t)((int64_t)L_16)) < ((int64_t)((int64_t)(uint64_t)((uint32_t)L_17)))))
|
|
{
|
|
goto IL_001f;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:567>
|
|
int32_t L_18 = V_3;
|
|
V_3 = ((int32_t)il2cpp_codegen_add(L_18, 1));
|
|
}
|
|
|
|
IL_004f:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:567>
|
|
int32_t L_19 = V_3;
|
|
uint32_t L_20 = V_1;
|
|
if ((((int64_t)((int64_t)L_19)) < ((int64_t)((int64_t)(uint64_t)((uint32_t)L_20)))))
|
|
{
|
|
goto IL_001a;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:576>
|
|
uint32_t L_21 = V_2;
|
|
uint32_t L_22 = V_1;
|
|
return (bool)((((int32_t)L_21) == ((int32_t)L_22))? 1 : 0);
|
|
}
|
|
}
|
|
// Method Definition Index: 33338
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t ScriptableRenderer_GetValidColorAttachmentCount_mD828DDE81AC4D5F01AE6352F000D74B0CE53DBBD (AttachmentDescriptorU5BU5D_tC70107EBD955FE94BA31C7FDC146069EF9C547C1* ___0_colorAttachments, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RenderingUtils_t4E40200449A82FA3A172A563C490DF11FADA2BE1_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
uint32_t V_0 = 0;
|
|
AttachmentDescriptorU5BU5D_tC70107EBD955FE94BA31C7FDC146069EF9C547C1* V_1 = NULL;
|
|
int32_t V_2 = 0;
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:581>
|
|
V_0 = 0;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:582>
|
|
AttachmentDescriptorU5BU5D_tC70107EBD955FE94BA31C7FDC146069EF9C547C1* L_0 = ___0_colorAttachments;
|
|
if (!L_0)
|
|
{
|
|
goto IL_002c;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:584>
|
|
AttachmentDescriptorU5BU5D_tC70107EBD955FE94BA31C7FDC146069EF9C547C1* L_1 = ___0_colorAttachments;
|
|
V_1 = L_1;
|
|
V_2 = 0;
|
|
goto IL_0026;
|
|
}
|
|
|
|
IL_000b:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:584>
|
|
AttachmentDescriptorU5BU5D_tC70107EBD955FE94BA31C7FDC146069EF9C547C1* L_2 = V_1;
|
|
int32_t L_3 = V_2;
|
|
NullCheck(L_2);
|
|
int32_t L_4 = L_3;
|
|
AttachmentDescriptor_tBAC9B26B50BB0838C5C0CC22BB296F9DFF41276E L_5 = (L_2)->GetAt(static_cast<il2cpp_array_size_t>(L_4));
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:586>
|
|
il2cpp_codegen_runtime_class_init_inline(RenderingUtils_t4E40200449A82FA3A172A563C490DF11FADA2BE1_il2cpp_TypeInfo_var);
|
|
AttachmentDescriptor_tBAC9B26B50BB0838C5C0CC22BB296F9DFF41276E L_6;
|
|
L_6 = RenderingUtils_get_emptyAttachment_m2AF0A5A339A35504D7FA8DD4B3400ACF5F449F38_inline(NULL);
|
|
bool L_7;
|
|
L_7 = AttachmentDescriptor_op_Inequality_m2E35C1D7BEF8C0DDB519C8940A9E1F804396376D(L_5, L_6, NULL);
|
|
if (!L_7)
|
|
{
|
|
goto IL_0022;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:587>
|
|
uint32_t L_8 = V_0;
|
|
V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_8, 1));
|
|
}
|
|
|
|
IL_0022:
|
|
{
|
|
int32_t L_9 = V_2;
|
|
V_2 = ((int32_t)il2cpp_codegen_add(L_9, 1));
|
|
}
|
|
|
|
IL_0026:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:584>
|
|
int32_t L_10 = V_2;
|
|
AttachmentDescriptorU5BU5D_tC70107EBD955FE94BA31C7FDC146069EF9C547C1* L_11 = V_1;
|
|
NullCheck(L_11);
|
|
if ((((int32_t)L_10) < ((int32_t)((int32_t)(((RuntimeArray*)L_11)->max_length)))))
|
|
{
|
|
goto IL_000b;
|
|
}
|
|
}
|
|
|
|
IL_002c:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:590>
|
|
uint32_t L_12 = V_0;
|
|
return L_12;
|
|
}
|
|
}
|
|
// Method Definition Index: 33339
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ScriptableRenderer_GetValidInputAttachmentCount_mF6D62B642F6243473A3B76EC214897D0AAB80357 (ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* ___0_renderPass, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
int32_t V_1 = 0;
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:595>
|
|
ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* L_0 = ___0_renderPass;
|
|
NullCheck(L_0);
|
|
RTHandleU5BU5D_tE4B403B060D159B839BF74E8B59F8DCD52CF97DF* L_1 = L_0->___m_InputAttachments;
|
|
NullCheck(L_1);
|
|
V_0 = ((int32_t)(((RuntimeArray*)L_1)->max_length));
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:596>
|
|
int32_t L_2 = V_0;
|
|
if ((((int32_t)L_2) == ((int32_t)8)))
|
|
{
|
|
goto IL_000f;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:597>
|
|
int32_t L_3 = V_0;
|
|
return L_3;
|
|
}
|
|
|
|
IL_000f:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:600>
|
|
V_1 = 0;
|
|
goto IL_0023;
|
|
}
|
|
|
|
IL_0013:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:602>
|
|
ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* L_4 = ___0_renderPass;
|
|
NullCheck(L_4);
|
|
RTHandleU5BU5D_tE4B403B060D159B839BF74E8B59F8DCD52CF97DF* L_5 = L_4->___m_InputAttachments;
|
|
int32_t L_6 = V_1;
|
|
NullCheck(L_5);
|
|
int32_t L_7 = L_6;
|
|
RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B* L_8 = (L_5)->GetAt(static_cast<il2cpp_array_size_t>(L_7));
|
|
if (L_8)
|
|
{
|
|
goto IL_001f;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:603>
|
|
int32_t L_9 = V_1;
|
|
return L_9;
|
|
}
|
|
|
|
IL_001f:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:600>
|
|
int32_t L_10 = V_1;
|
|
V_1 = ((int32_t)il2cpp_codegen_add(L_10, 1));
|
|
}
|
|
|
|
IL_0023:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:600>
|
|
int32_t L_11 = V_1;
|
|
int32_t L_12 = V_0;
|
|
if ((((int32_t)L_11) < ((int32_t)L_12)))
|
|
{
|
|
goto IL_0013;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:605>
|
|
int32_t L_13 = V_0;
|
|
return L_13;
|
|
}
|
|
}
|
|
// Method Definition Index: 33340
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ScriptableRenderer_FindAttachmentDescriptorIndexInList_m1C8C0549F43D2A2AFA119299C7E1ACFB1B81FA9D (int32_t ___0_attachmentIdx, AttachmentDescriptor_tBAC9B26B50BB0838C5C0CC22BB296F9DFF41276E ___1_attachmentDescriptor, AttachmentDescriptorU5BU5D_tC70107EBD955FE94BA31C7FDC146069EF9C547C1* ___2_attachmentDescriptors, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RenderTargetIdentifier_tA528663AC6EB3911D8E91AA40F7070FA5455442B_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int32_t V_0 = 0;
|
|
int32_t V_1 = 0;
|
|
AttachmentDescriptor_tBAC9B26B50BB0838C5C0CC22BB296F9DFF41276E V_2;
|
|
memset((&V_2), 0, sizeof(V_2));
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:611>
|
|
V_0 = (-1);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:612>
|
|
V_1 = 0;
|
|
goto IL_003b;
|
|
}
|
|
|
|
IL_0006:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:614>
|
|
AttachmentDescriptorU5BU5D_tC70107EBD955FE94BA31C7FDC146069EF9C547C1* L_0 = ___2_attachmentDescriptors;
|
|
int32_t L_1 = V_1;
|
|
NullCheck(L_0);
|
|
int32_t L_2 = L_1;
|
|
AttachmentDescriptor_tBAC9B26B50BB0838C5C0CC22BB296F9DFF41276E L_3 = (L_0)->GetAt(static_cast<il2cpp_array_size_t>(L_2));
|
|
V_2 = L_3;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:616>
|
|
RenderTargetIdentifier_tA528663AC6EB3911D8E91AA40F7070FA5455442B L_4;
|
|
L_4 = AttachmentDescriptor_get_loadStoreTarget_m0D018823050E378FE3FE501729C2CEC43CA39603((&V_2), NULL);
|
|
RenderTargetIdentifier_tA528663AC6EB3911D8E91AA40F7070FA5455442B L_5;
|
|
L_5 = AttachmentDescriptor_get_loadStoreTarget_m0D018823050E378FE3FE501729C2CEC43CA39603((&___1_attachmentDescriptor), NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(RenderTargetIdentifier_tA528663AC6EB3911D8E91AA40F7070FA5455442B_il2cpp_TypeInfo_var);
|
|
bool L_6;
|
|
L_6 = RenderTargetIdentifier_op_Equality_mD9FD6667F4C385F2379E9DEAAA8F91B7A1D50A1F(L_4, L_5, NULL);
|
|
if (!L_6)
|
|
{
|
|
goto IL_0037;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_7;
|
|
L_7 = AttachmentDescriptor_get_graphicsFormat_mD4C79447C046BFD7348C60D2D1447EA551C7F971((&V_2), NULL);
|
|
int32_t L_8;
|
|
L_8 = AttachmentDescriptor_get_graphicsFormat_mD4C79447C046BFD7348C60D2D1447EA551C7F971((&___1_attachmentDescriptor), NULL);
|
|
if ((!(((uint32_t)L_7) == ((uint32_t)L_8))))
|
|
{
|
|
goto IL_0037;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:618>
|
|
int32_t L_9 = V_1;
|
|
V_0 = L_9;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:619>
|
|
goto IL_003f;
|
|
}
|
|
|
|
IL_0037:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:612>
|
|
int32_t L_10 = V_1;
|
|
V_1 = ((int32_t)il2cpp_codegen_add(L_10, 1));
|
|
}
|
|
|
|
IL_003b:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:612>
|
|
int32_t L_11 = V_1;
|
|
int32_t L_12 = ___0_attachmentIdx;
|
|
if ((((int32_t)L_11) <= ((int32_t)L_12)))
|
|
{
|
|
goto IL_0006;
|
|
}
|
|
}
|
|
|
|
IL_003f:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:623>
|
|
int32_t L_13 = V_0;
|
|
return L_13;
|
|
}
|
|
}
|
|
// Method Definition Index: 33341
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ScriptableRenderer_FindAttachmentDescriptorIndexInList_m1DD16FAFA007FC1648DFD24623F46865AAFB5CDB (RenderTargetIdentifier_tA528663AC6EB3911D8E91AA40F7070FA5455442B ___0_target, AttachmentDescriptorU5BU5D_tC70107EBD955FE94BA31C7FDC146069EF9C547C1* ___1_attachmentDescriptors, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RenderTargetIdentifier_tA528663AC6EB3911D8E91AA40F7070FA5455442B_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int32_t V_0 = 0;
|
|
AttachmentDescriptor_tBAC9B26B50BB0838C5C0CC22BB296F9DFF41276E V_1;
|
|
memset((&V_1), 0, sizeof(V_1));
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:628>
|
|
V_0 = 0;
|
|
goto IL_0021;
|
|
}
|
|
|
|
IL_0004:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:630>
|
|
AttachmentDescriptorU5BU5D_tC70107EBD955FE94BA31C7FDC146069EF9C547C1* L_0 = ___1_attachmentDescriptors;
|
|
int32_t L_1 = V_0;
|
|
NullCheck(L_0);
|
|
int32_t L_2 = L_1;
|
|
AttachmentDescriptor_tBAC9B26B50BB0838C5C0CC22BB296F9DFF41276E L_3 = (L_0)->GetAt(static_cast<il2cpp_array_size_t>(L_2));
|
|
V_1 = L_3;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:631>
|
|
RenderTargetIdentifier_tA528663AC6EB3911D8E91AA40F7070FA5455442B L_4;
|
|
L_4 = AttachmentDescriptor_get_loadStoreTarget_m0D018823050E378FE3FE501729C2CEC43CA39603((&V_1), NULL);
|
|
RenderTargetIdentifier_tA528663AC6EB3911D8E91AA40F7070FA5455442B L_5 = ___0_target;
|
|
il2cpp_codegen_runtime_class_init_inline(RenderTargetIdentifier_tA528663AC6EB3911D8E91AA40F7070FA5455442B_il2cpp_TypeInfo_var);
|
|
bool L_6;
|
|
L_6 = RenderTargetIdentifier_op_Equality_mD9FD6667F4C385F2379E9DEAAA8F91B7A1D50A1F(L_4, L_5, NULL);
|
|
if (!L_6)
|
|
{
|
|
goto IL_001d;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:632>
|
|
int32_t L_7 = V_0;
|
|
return L_7;
|
|
}
|
|
|
|
IL_001d:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:628>
|
|
int32_t L_8 = V_0;
|
|
V_0 = ((int32_t)il2cpp_codegen_add(L_8, 1));
|
|
}
|
|
|
|
IL_0021:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:628>
|
|
int32_t L_9 = V_0;
|
|
AttachmentDescriptorU5BU5D_tC70107EBD955FE94BA31C7FDC146069EF9C547C1* L_10 = ___1_attachmentDescriptors;
|
|
NullCheck(L_10);
|
|
if ((((int32_t)L_9) < ((int32_t)((int32_t)(((RuntimeArray*)L_10)->max_length)))))
|
|
{
|
|
goto IL_0004;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:635>
|
|
return (-1);
|
|
}
|
|
}
|
|
// Method Definition Index: 33342
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ScriptableRenderer_GetValidPassIndexCount_m279EDCB7B38DE3813CB7AC0AF7F204A1D9FDD9F8 (Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ___0_array, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:640>
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_0 = ___0_array;
|
|
if (L_0)
|
|
{
|
|
goto IL_0005;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:641>
|
|
return 0;
|
|
}
|
|
|
|
IL_0005:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:643>
|
|
V_0 = 0;
|
|
goto IL_0015;
|
|
}
|
|
|
|
IL_0009:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:645>
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_1 = ___0_array;
|
|
int32_t L_2 = V_0;
|
|
NullCheck(L_1);
|
|
int32_t L_3 = L_2;
|
|
int32_t L_4 = (L_1)->GetAt(static_cast<il2cpp_array_size_t>(L_3));
|
|
if ((!(((uint32_t)L_4) == ((uint32_t)(-1)))))
|
|
{
|
|
goto IL_0011;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:646>
|
|
int32_t L_5 = V_0;
|
|
return L_5;
|
|
}
|
|
|
|
IL_0011:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:643>
|
|
int32_t L_6 = V_0;
|
|
V_0 = ((int32_t)il2cpp_codegen_add(L_6, 1));
|
|
}
|
|
|
|
IL_0015:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:643>
|
|
int32_t L_7 = V_0;
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_8 = ___0_array;
|
|
NullCheck(L_8);
|
|
if ((((int32_t)L_7) < ((int32_t)((int32_t)(((RuntimeArray*)L_8)->max_length)))))
|
|
{
|
|
goto IL_0009;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:648>
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_9 = ___0_array;
|
|
NullCheck(L_9);
|
|
return ((int32_t)il2cpp_codegen_subtract(((int32_t)(((RuntimeArray*)L_9)->max_length)), 1));
|
|
}
|
|
}
|
|
// Method Definition Index: 33343
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B* ScriptableRenderer_GetFirstAllocatedRTHandle_mA7E143CC52CBD682A3355221BB216C2D3691130A (ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* ___0_pass, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int32_t V_0 = 0;
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:653>
|
|
V_0 = 0;
|
|
goto IL_0026;
|
|
}
|
|
|
|
IL_0004:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:655>
|
|
ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* L_0 = ___0_pass;
|
|
NullCheck(L_0);
|
|
RTHandleU5BU5D_tE4B403B060D159B839BF74E8B59F8DCD52CF97DF* L_1;
|
|
L_1 = ScriptableRenderPass_get_colorAttachmentHandles_m52C72D6C6F0E7A66FE8FEC5ECFDDE5407FBF8897_inline(L_0, NULL);
|
|
int32_t L_2 = V_0;
|
|
NullCheck(L_1);
|
|
int32_t L_3 = L_2;
|
|
RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B* L_4 = (L_1)->GetAt(static_cast<il2cpp_array_size_t>(L_3));
|
|
NullCheck(L_4);
|
|
RenderTexture_tBA90C4C3AD9EECCFDDCC632D97C29FAB80D60D27* L_5;
|
|
L_5 = RTHandle_get_rt_m593F2799E2E6C97979D3B4CD9E992D305922BBE9_inline(L_4, NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
bool L_6;
|
|
L_6 = Object_op_Inequality_mD0BE578448EAA61948F25C32F8DD55AB1F778602(L_5, (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C*)NULL, NULL);
|
|
if (!L_6)
|
|
{
|
|
goto IL_0022;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:656>
|
|
ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* L_7 = ___0_pass;
|
|
NullCheck(L_7);
|
|
RTHandleU5BU5D_tE4B403B060D159B839BF74E8B59F8DCD52CF97DF* L_8;
|
|
L_8 = ScriptableRenderPass_get_colorAttachmentHandles_m52C72D6C6F0E7A66FE8FEC5ECFDDE5407FBF8897_inline(L_7, NULL);
|
|
int32_t L_9 = V_0;
|
|
NullCheck(L_8);
|
|
int32_t L_10 = L_9;
|
|
RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B* L_11 = (L_8)->GetAt(static_cast<il2cpp_array_size_t>(L_10));
|
|
return L_11;
|
|
}
|
|
|
|
IL_0022:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:653>
|
|
int32_t L_12 = V_0;
|
|
V_0 = ((int32_t)il2cpp_codegen_add(L_12, 1));
|
|
}
|
|
|
|
IL_0026:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:653>
|
|
int32_t L_13 = V_0;
|
|
ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* L_14 = ___0_pass;
|
|
NullCheck(L_14);
|
|
RTHandleU5BU5D_tE4B403B060D159B839BF74E8B59F8DCD52CF97DF* L_15;
|
|
L_15 = ScriptableRenderPass_get_colorAttachmentHandles_m52C72D6C6F0E7A66FE8FEC5ECFDDE5407FBF8897_inline(L_14, NULL);
|
|
NullCheck(L_15);
|
|
if ((((int32_t)L_13) < ((int32_t)((int32_t)(((RuntimeArray*)L_15)->max_length)))))
|
|
{
|
|
goto IL_0004;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:658>
|
|
ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* L_16 = ___0_pass;
|
|
NullCheck(L_16);
|
|
RTHandleU5BU5D_tE4B403B060D159B839BF74E8B59F8DCD52CF97DF* L_17;
|
|
L_17 = ScriptableRenderPass_get_colorAttachmentHandles_m52C72D6C6F0E7A66FE8FEC5ECFDDE5407FBF8897_inline(L_16, NULL);
|
|
NullCheck(L_17);
|
|
int32_t L_18 = 0;
|
|
RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B* L_19 = (L_17)->GetAt(static_cast<il2cpp_array_size_t>(L_18));
|
|
return L_19;
|
|
}
|
|
}
|
|
// Method Definition Index: 33344
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ScriptableRenderer_PassHasInputAttachments_m26CD6A09B8A3ACB14DEC0A65B730D48FE4F6C1D7 (ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* ___0_renderPass, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:663>
|
|
ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* L_0 = ___0_renderPass;
|
|
NullCheck(L_0);
|
|
RTHandleU5BU5D_tE4B403B060D159B839BF74E8B59F8DCD52CF97DF* L_1 = L_0->___m_InputAttachments;
|
|
NullCheck(L_1);
|
|
if ((!(((uint32_t)((int32_t)(((RuntimeArray*)L_1)->max_length))) == ((uint32_t)8))))
|
|
{
|
|
goto IL_0017;
|
|
}
|
|
}
|
|
{
|
|
ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* L_2 = ___0_renderPass;
|
|
NullCheck(L_2);
|
|
RTHandleU5BU5D_tE4B403B060D159B839BF74E8B59F8DCD52CF97DF* L_3 = L_2->___m_InputAttachments;
|
|
NullCheck(L_3);
|
|
int32_t L_4 = 0;
|
|
RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B* L_5 = (L_3)->GetAt(static_cast<il2cpp_array_size_t>(L_4));
|
|
return (bool)((!(((RuntimeObject*)(RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B*)L_5) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
|
|
}
|
|
|
|
IL_0017:
|
|
{
|
|
return (bool)1;
|
|
}
|
|
}
|
|
// Method Definition Index: 33345
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Hash128_t93367F504B687578F893CDBCD13FB95AC8A87A40 ScriptableRenderer_CreateRenderPassHash_mBF31900DFF159E35A02C2CF9164956B5F815CE52 (int32_t ___0_width, int32_t ___1_height, int32_t ___2_depthID, int32_t ___3_sample, uint32_t ___4_hashIndex, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:668>
|
|
int32_t L_0 = ___0_width;
|
|
int32_t L_1 = ___1_height;
|
|
int32_t L_2 = ___2_depthID;
|
|
int32_t L_3 = ___3_sample;
|
|
uint32_t L_4 = ___4_hashIndex;
|
|
Hash128_t93367F504B687578F893CDBCD13FB95AC8A87A40 L_5;
|
|
memset((&L_5), 0, sizeof(L_5));
|
|
Hash128__ctor_m4C7478EE2EED2085265B895E483B128CCAA6D011((&L_5), ((int32_t)il2cpp_codegen_add(((int32_t)(L_0<<4)), L_1)), L_2, L_3, L_4, NULL);
|
|
return L_5;
|
|
}
|
|
}
|
|
// Method Definition Index: 33346
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Hash128_t93367F504B687578F893CDBCD13FB95AC8A87A40 ScriptableRenderer_CreateRenderPassHash_m57E9275A76DCFAF3E0FF51E184451B1052567585 (RenderPassDescriptor_t69F0595A52DBEEBFE5A491D3E8E27D530069B0C5 ___0_desc, uint32_t ___1_hashIndex, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:673>
|
|
RenderPassDescriptor_t69F0595A52DBEEBFE5A491D3E8E27D530069B0C5 L_0 = ___0_desc;
|
|
int32_t L_1 = L_0.___w;
|
|
RenderPassDescriptor_t69F0595A52DBEEBFE5A491D3E8E27D530069B0C5 L_2 = ___0_desc;
|
|
int32_t L_3 = L_2.___h;
|
|
RenderPassDescriptor_t69F0595A52DBEEBFE5A491D3E8E27D530069B0C5 L_4 = ___0_desc;
|
|
int32_t L_5 = L_4.___depthID;
|
|
RenderPassDescriptor_t69F0595A52DBEEBFE5A491D3E8E27D530069B0C5 L_6 = ___0_desc;
|
|
int32_t L_7 = L_6.___samples;
|
|
uint32_t L_8 = ___1_hashIndex;
|
|
il2cpp_codegen_runtime_class_init_inline(ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892_il2cpp_TypeInfo_var);
|
|
Hash128_t93367F504B687578F893CDBCD13FB95AC8A87A40 L_9;
|
|
L_9 = ScriptableRenderer_CreateRenderPassHash_mBF31900DFF159E35A02C2CF9164956B5F815CE52(L_1, L_3, L_5, L_7, L_8, NULL);
|
|
return L_9;
|
|
}
|
|
}
|
|
// Method Definition Index: 33347
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ScriptableRenderer_GetRenderTextureDescriptor_mB9100A60948F785006375BF38A095B9615591ED7 (UniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7* ___0_cameraData, ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* ___1_renderPass, RenderTextureDescriptor_t69845881CE6437E4E61F92074F2F84079F23FA46* ___2_targetRT, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B* V_0 = NULL;
|
|
RenderTextureDescriptor_t69845881CE6437E4E61F92074F2F84079F23FA46* G_B7_0 = NULL;
|
|
RenderTextureDescriptor_t69845881CE6437E4E61F92074F2F84079F23FA46* G_B6_0 = NULL;
|
|
RenderTextureDescriptor_t69845881CE6437E4E61F92074F2F84079F23FA46 G_B8_0;
|
|
memset((&G_B8_0), 0, sizeof(G_B8_0));
|
|
RenderTextureDescriptor_t69845881CE6437E4E61F92074F2F84079F23FA46* G_B8_1 = NULL;
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:678>
|
|
ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* L_0 = ___1_renderPass;
|
|
NullCheck(L_0);
|
|
bool L_1;
|
|
L_1 = ScriptableRenderPass_get_overrideCameraTarget_m343BA9235CD254354013E3CFD6EC519958597128_inline(L_0, NULL);
|
|
if (!L_1)
|
|
{
|
|
goto IL_002e;
|
|
}
|
|
}
|
|
{
|
|
ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* L_2 = ___1_renderPass;
|
|
NullCheck(L_2);
|
|
RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B* L_3;
|
|
L_3 = ScriptableRenderPass_get_colorAttachmentHandle_m9F25A09AF063ECC69EBDF7680D11FA1E5D38AC7A(L_2, NULL);
|
|
NullCheck(L_3);
|
|
RenderTexture_tBA90C4C3AD9EECCFDDCC632D97C29FAB80D60D27* L_4;
|
|
L_4 = RTHandle_get_rt_m593F2799E2E6C97979D3B4CD9E992D305922BBE9_inline(L_3, NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
bool L_5;
|
|
L_5 = Object_op_Equality_mB6120F782D83091EF56A198FCEBCF066DB4A9605(L_4, (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C*)NULL, NULL);
|
|
if (!L_5)
|
|
{
|
|
goto IL_0061;
|
|
}
|
|
}
|
|
{
|
|
ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* L_6 = ___1_renderPass;
|
|
NullCheck(L_6);
|
|
RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B* L_7;
|
|
L_7 = ScriptableRenderPass_get_depthAttachmentHandle_m3AA7953B201494DEF4FD2061660B94663EF63465_inline(L_6, NULL);
|
|
NullCheck(L_7);
|
|
RenderTexture_tBA90C4C3AD9EECCFDDCC632D97C29FAB80D60D27* L_8;
|
|
L_8 = RTHandle_get_rt_m593F2799E2E6C97979D3B4CD9E992D305922BBE9_inline(L_7, NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
bool L_9;
|
|
L_9 = Object_op_Equality_mB6120F782D83091EF56A198FCEBCF066DB4A9605(L_8, (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C*)NULL, NULL);
|
|
if (!L_9)
|
|
{
|
|
goto IL_0061;
|
|
}
|
|
}
|
|
|
|
IL_002e:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:680>
|
|
RenderTextureDescriptor_t69845881CE6437E4E61F92074F2F84079F23FA46* L_10 = ___2_targetRT;
|
|
UniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7* L_11 = ___0_cameraData;
|
|
NullCheck(L_11);
|
|
RenderTextureDescriptor_t69845881CE6437E4E61F92074F2F84079F23FA46 L_12 = L_11->___cameraTargetDescriptor;
|
|
*(RenderTextureDescriptor_t69845881CE6437E4E61F92074F2F84079F23FA46*)L_10 = L_12;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:684>
|
|
UniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7* L_13 = ___0_cameraData;
|
|
NullCheck(L_13);
|
|
RenderTexture_tBA90C4C3AD9EECCFDDCC632D97C29FAB80D60D27* L_14 = L_13->___targetTexture;
|
|
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
bool L_15;
|
|
L_15 = Object_op_Inequality_mD0BE578448EAA61948F25C32F8DD55AB1F778602(L_14, (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C*)NULL, NULL);
|
|
if (!L_15)
|
|
{
|
|
goto IL_0099;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:686>
|
|
RenderTextureDescriptor_t69845881CE6437E4E61F92074F2F84079F23FA46* L_16 = ___2_targetRT;
|
|
UniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7* L_17 = ___0_cameraData;
|
|
NullCheck(L_17);
|
|
int32_t L_18;
|
|
L_18 = UniversalCameraData_get_scaledWidth_mD4B35FA28DBA62FA07EF273CCFCA4CC730D1CA88(L_17, NULL);
|
|
RenderTextureDescriptor_set_width_m3B2494007BFE3AD4D14403407C9B24F5045E7E10_inline(L_16, L_18, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:687>
|
|
RenderTextureDescriptor_t69845881CE6437E4E61F92074F2F84079F23FA46* L_19 = ___2_targetRT;
|
|
UniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7* L_20 = ___0_cameraData;
|
|
NullCheck(L_20);
|
|
int32_t L_21;
|
|
L_21 = UniversalCameraData_get_scaledHeight_mD5B22BF70530FCA60F468DE4E976CBCBCB8363F6(L_20, NULL);
|
|
RenderTextureDescriptor_set_height_m1FE41111472DAA9B5E80FFAF3445004D72A3CFA5_inline(L_19, L_21, NULL);
|
|
return;
|
|
}
|
|
|
|
IL_0061:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:692>
|
|
ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* L_22 = ___1_renderPass;
|
|
il2cpp_codegen_runtime_class_init_inline(ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892_il2cpp_TypeInfo_var);
|
|
RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B* L_23;
|
|
L_23 = ScriptableRenderer_GetFirstAllocatedRTHandle_mA7E143CC52CBD682A3355221BB216C2D3691130A(L_22, NULL);
|
|
V_0 = L_23;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:693>
|
|
RenderTextureDescriptor_t69845881CE6437E4E61F92074F2F84079F23FA46* L_24 = ___2_targetRT;
|
|
RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B* L_25 = V_0;
|
|
NullCheck(L_25);
|
|
RenderTexture_tBA90C4C3AD9EECCFDDCC632D97C29FAB80D60D27* L_26;
|
|
L_26 = RTHandle_get_rt_m593F2799E2E6C97979D3B4CD9E992D305922BBE9_inline(L_25, NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
bool L_27;
|
|
L_27 = Object_op_Inequality_mD0BE578448EAA61948F25C32F8DD55AB1F778602(L_26, (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C*)NULL, NULL);
|
|
if (L_27)
|
|
{
|
|
G_B7_0 = L_24;
|
|
goto IL_0089;
|
|
}
|
|
G_B6_0 = L_24;
|
|
}
|
|
{
|
|
ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* L_28 = ___1_renderPass;
|
|
NullCheck(L_28);
|
|
RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B* L_29;
|
|
L_29 = ScriptableRenderPass_get_depthAttachmentHandle_m3AA7953B201494DEF4FD2061660B94663EF63465_inline(L_28, NULL);
|
|
NullCheck(L_29);
|
|
RenderTexture_tBA90C4C3AD9EECCFDDCC632D97C29FAB80D60D27* L_30;
|
|
L_30 = RTHandle_get_rt_m593F2799E2E6C97979D3B4CD9E992D305922BBE9_inline(L_29, NULL);
|
|
NullCheck(L_30);
|
|
RenderTextureDescriptor_t69845881CE6437E4E61F92074F2F84079F23FA46 L_31;
|
|
L_31 = RenderTexture_get_descriptor_m2FABD5CF6CCF410D1311FCBC7C9D9ECDEE9C7CC2(L_30, NULL);
|
|
G_B8_0 = L_31;
|
|
G_B8_1 = G_B6_0;
|
|
goto IL_0094;
|
|
}
|
|
|
|
IL_0089:
|
|
{
|
|
RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B* L_32 = V_0;
|
|
NullCheck(L_32);
|
|
RenderTexture_tBA90C4C3AD9EECCFDDCC632D97C29FAB80D60D27* L_33;
|
|
L_33 = RTHandle_get_rt_m593F2799E2E6C97979D3B4CD9E992D305922BBE9_inline(L_32, NULL);
|
|
NullCheck(L_33);
|
|
RenderTextureDescriptor_t69845881CE6437E4E61F92074F2F84079F23FA46 L_34;
|
|
L_34 = RenderTexture_get_descriptor_m2FABD5CF6CCF410D1311FCBC7C9D9ECDEE9C7CC2(L_33, NULL);
|
|
G_B8_0 = L_34;
|
|
G_B8_1 = G_B7_0;
|
|
}
|
|
|
|
IL_0094:
|
|
{
|
|
*(RenderTextureDescriptor_t69845881CE6437E4E61F92074F2F84079F23FA46*)G_B8_1 = G_B8_0;
|
|
}
|
|
|
|
IL_0099:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:695>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 33348
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RenderPassDescriptor_t69F0595A52DBEEBFE5A491D3E8E27D530069B0C5 ScriptableRenderer_InitializeRenderPassDescriptor_mA2BED336FF2583DEE2FF881D5FC09673DEB74121 (ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892* __this, UniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7* ___0_cameraData, ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* ___1_renderPass, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
RenderTextureDescriptor_t69845881CE6437E4E61F92074F2F84079F23FA46 V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B* V_1 = NULL;
|
|
int32_t V_2 = 0;
|
|
RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B* G_B3_0 = NULL;
|
|
int32_t G_B7_0 = 0;
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:699>
|
|
UniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7* L_0 = ___0_cameraData;
|
|
ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* L_1 = ___1_renderPass;
|
|
il2cpp_codegen_runtime_class_init_inline(ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892_il2cpp_TypeInfo_var);
|
|
ScriptableRenderer_GetRenderTextureDescriptor_mB9100A60948F785006375BF38A095B9615591ED7(L_0, L_1, (&V_0), NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:703>
|
|
ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* L_2 = ___1_renderPass;
|
|
NullCheck(L_2);
|
|
bool L_3;
|
|
L_3 = ScriptableRenderPass_get_overrideCameraTarget_m343BA9235CD254354013E3CFD6EC519958597128_inline(L_2, NULL);
|
|
if (L_3)
|
|
{
|
|
goto IL_0019;
|
|
}
|
|
}
|
|
{
|
|
RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B* L_4;
|
|
L_4 = ScriptableRenderer_get_cameraDepthTargetHandle_m105A4BA47F734199554838F588A5101E2591988E(__this, NULL);
|
|
G_B3_0 = L_4;
|
|
goto IL_001f;
|
|
}
|
|
|
|
IL_0019:
|
|
{
|
|
ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* L_5 = ___1_renderPass;
|
|
NullCheck(L_5);
|
|
RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B* L_6;
|
|
L_6 = ScriptableRenderPass_get_depthAttachmentHandle_m3AA7953B201494DEF4FD2061660B94663EF63465_inline(L_5, NULL);
|
|
G_B3_0 = L_6;
|
|
}
|
|
|
|
IL_001f:
|
|
{
|
|
V_1 = G_B3_0;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:704>
|
|
int32_t L_7;
|
|
L_7 = RenderTextureDescriptor_get_graphicsFormat_m50F25A4F179EA318C8D3B0D8685F9C5F59F7DEC0((&V_0), NULL);
|
|
if (L_7)
|
|
{
|
|
goto IL_0032;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_8;
|
|
L_8 = RenderTextureDescriptor_get_depthStencilFormat_m360929BE5BD10E9C3D8C936AA6B44B1D11C119CB_inline((&V_0), NULL);
|
|
if (L_8)
|
|
{
|
|
goto IL_003a;
|
|
}
|
|
}
|
|
|
|
IL_0032:
|
|
{
|
|
RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B* L_9 = V_1;
|
|
NullCheck(L_9);
|
|
int32_t L_10;
|
|
L_10 = VirtualFuncInvoker0< int32_t >::Invoke(2, L_9);
|
|
G_B7_0 = L_10;
|
|
goto IL_0045;
|
|
}
|
|
|
|
IL_003a:
|
|
{
|
|
ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* L_11 = ___1_renderPass;
|
|
NullCheck(L_11);
|
|
RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B* L_12;
|
|
L_12 = ScriptableRenderPass_get_colorAttachmentHandle_m9F25A09AF063ECC69EBDF7680D11FA1E5D38AC7A(L_11, NULL);
|
|
NullCheck(L_12);
|
|
int32_t L_13;
|
|
L_13 = VirtualFuncInvoker0< int32_t >::Invoke(2, L_12);
|
|
G_B7_0 = L_13;
|
|
}
|
|
|
|
IL_0045:
|
|
{
|
|
V_2 = G_B7_0;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:707>
|
|
int32_t L_14;
|
|
L_14 = RenderTextureDescriptor_get_width_mB159E4EB08B23B19CCCFADB465864361FB840BFF_inline((&V_0), NULL);
|
|
int32_t L_15;
|
|
L_15 = RenderTextureDescriptor_get_height_m1006F9AA45029715C552C8A8C2F102F63D3A91EC_inline((&V_0), NULL);
|
|
int32_t L_16;
|
|
L_16 = RenderTextureDescriptor_get_msaaSamples_mFCC33643AFF2265C8305DCFD79ED8774A1A8FA22_inline((&V_0), NULL);
|
|
int32_t L_17 = V_2;
|
|
RenderPassDescriptor_t69F0595A52DBEEBFE5A491D3E8E27D530069B0C5 L_18;
|
|
memset((&L_18), 0, sizeof(L_18));
|
|
RenderPassDescriptor__ctor_m8898C83BD6A00119601FBF7274E93C85874A49B1((&L_18), L_14, L_15, L_16, L_17, NULL);
|
|
return L_18;
|
|
}
|
|
}
|
|
// Method Definition Index: 33349
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ScriptableRenderer_SupportedCameraStackingTypes_m54C6ED57A235BE08FC2496676704673633AFC02E (ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:93>
|
|
return 0;
|
|
}
|
|
}
|
|
// Method Definition Index: 33350
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ScriptableRenderer_SupportsCameraStackingType_m0D76E46B7E746F98D483842B315488301375DA94 (ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892* __this, int32_t ___0_cameraRenderType, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:105>
|
|
int32_t L_0;
|
|
L_0 = VirtualFuncInvoker0< int32_t >::Invoke(5, __this);
|
|
int32_t L_1 = ___0_cameraRenderType;
|
|
return (bool)((!(((uint32_t)((int32_t)(L_0&((int32_t)(1<<((int32_t)((int32_t)L_1&((int32_t)31)))))))) <= ((uint32_t)0)))? 1 : 0);
|
|
}
|
|
}
|
|
// Method Definition Index: 33351
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ScriptableRenderer_SupportsMotionVectors_m3261190564ABCCA02F7DDD1E32B9F6005E2B329F (ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:125>
|
|
return (bool)0;
|
|
}
|
|
}
|
|
// Method Definition Index: 33352
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ScriptableRenderer_SupportsCameraOpaque_m0067F67AE45E3E20E82BC98EA35F6FF2C82FD0C5 (ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:134>
|
|
return (bool)0;
|
|
}
|
|
}
|
|
// Method Definition Index: 33353
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ScriptableRenderer_SupportsCameraNormals_m3E4668001303063121B8CF11CA65947B02BCAC0B (ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:143>
|
|
return (bool)0;
|
|
}
|
|
}
|
|
// Method Definition Index: 33354
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ProfilingSampler_t420D4672EDB44E0EF980B31ADFD9E5747200FECE* ScriptableRenderer_get_profilingExecute_mE442262D579FC9D8AE14055A8E47E06DCB555046 (ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:149>
|
|
ProfilingSampler_t420D4672EDB44E0EF980B31ADFD9E5747200FECE* L_0 = __this->___U3CprofilingExecuteU3Ek__BackingField;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 33355
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ScriptableRenderer_set_profilingExecute_m9DE85BB63AA11C1B8C900166DB8961BE6AEAE6CC (ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892* __this, ProfilingSampler_t420D4672EDB44E0EF980B31ADFD9E5747200FECE* ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:149>
|
|
ProfilingSampler_t420D4672EDB44E0EF980B31ADFD9E5747200FECE* L_0 = ___0_value;
|
|
__this->___U3CprofilingExecuteU3Ek__BackingField = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CprofilingExecuteU3Ek__BackingField), (void*)L_0);
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 33356
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DebugHandler_t3A09E2CFD1CA6F5C192968A6FF19EE4863F44DA4* ScriptableRenderer_get_DebugHandler_mF10EC7F8F42F5087507DCDB7CD21338F2766DD6F (ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:180>
|
|
DebugHandler_t3A09E2CFD1CA6F5C192968A6FF19EE4863F44DA4* L_0 = __this->___U3CDebugHandlerU3Ek__BackingField;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 33357
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ScriptableRenderer_SetCameraMatrices_m3EFF822F7AE071EA8FDF83403E79785738230AD6 (CommandBuffer_tB56007DC84EF56296C325EC32DD12AC1E3DC91F7* ___0_cmd, CameraData_tC27AE109CD20677486A4AC19C0CF014AE0F50C3E* ___1_cameraData, bool ___2_setInverseMatrices, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CommandBufferHelpers_tB8C09D01D6F0369DF52DEA955F017D6001BC72E5_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:203>
|
|
CommandBuffer_tB56007DC84EF56296C325EC32DD12AC1E3DC91F7* L_0 = ___0_cmd;
|
|
il2cpp_codegen_runtime_class_init_inline(CommandBufferHelpers_tB8C09D01D6F0369DF52DEA955F017D6001BC72E5_il2cpp_TypeInfo_var);
|
|
RasterCommandBuffer_t4300C4F080EA3CF43C7ACFDBD4F94EA633FE98E8* L_1;
|
|
L_1 = CommandBufferHelpers_GetRasterCommandBuffer_m6086D650343F166614B3FB5ED89D63DE8F85C42B_inline(L_0, NULL);
|
|
CameraData_tC27AE109CD20677486A4AC19C0CF014AE0F50C3E* L_2 = ___1_cameraData;
|
|
UniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7* L_3;
|
|
L_3 = CameraData_get_universalCameraData_mD67FBE2CAADDBA930E7DDD9F44ED8C5F10E24AC2(L_2, NULL);
|
|
bool L_4 = ___2_setInverseMatrices;
|
|
CameraData_tC27AE109CD20677486A4AC19C0CF014AE0F50C3E* L_5 = ___1_cameraData;
|
|
bool L_6;
|
|
L_6 = CameraData_IsCameraProjectionMatrixFlipped_m381DFFDE02B019E1EE975967B5E9593FDF9464E2(L_5, NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892_il2cpp_TypeInfo_var);
|
|
ScriptableRenderer_SetCameraMatrices_m4CB2870357156E68160620CCEE59FE9FAB58F9C0(L_1, L_3, L_4, L_6, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:205>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 33358
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ScriptableRenderer_SetCameraMatrices_m67E362757B27BA90D1C348F9F5B7BF52DD040A31 (CommandBuffer_tB56007DC84EF56296C325EC32DD12AC1E3DC91F7* ___0_cmd, UniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7* ___1_cameraData, bool ___2_setInverseMatrices, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CommandBufferHelpers_tB8C09D01D6F0369DF52DEA955F017D6001BC72E5_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:221>
|
|
CommandBuffer_tB56007DC84EF56296C325EC32DD12AC1E3DC91F7* L_0 = ___0_cmd;
|
|
il2cpp_codegen_runtime_class_init_inline(CommandBufferHelpers_tB8C09D01D6F0369DF52DEA955F017D6001BC72E5_il2cpp_TypeInfo_var);
|
|
RasterCommandBuffer_t4300C4F080EA3CF43C7ACFDBD4F94EA633FE98E8* L_1;
|
|
L_1 = CommandBufferHelpers_GetRasterCommandBuffer_m6086D650343F166614B3FB5ED89D63DE8F85C42B_inline(L_0, NULL);
|
|
UniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7* L_2 = ___1_cameraData;
|
|
bool L_3 = ___2_setInverseMatrices;
|
|
UniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7* L_4 = ___1_cameraData;
|
|
NullCheck(L_4);
|
|
bool L_5;
|
|
L_5 = UniversalCameraData_IsCameraProjectionMatrixFlipped_mB276D4F23A10935367AF04FAAEC51AC177A5C203(L_4, NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892_il2cpp_TypeInfo_var);
|
|
ScriptableRenderer_SetCameraMatrices_m4CB2870357156E68160620CCEE59FE9FAB58F9C0(L_1, L_2, L_3, L_5, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:223>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 33359
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ScriptableRenderer_SetCameraMatrices_m4CB2870357156E68160620CCEE59FE9FAB58F9C0 (RasterCommandBuffer_t4300C4F080EA3CF43C7ACFDBD4F94EA633FE98E8* ___0_cmd, UniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7* ___1_cameraData, bool ___2_setInverseMatrices, bool ___3_isTargetFlipped, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ShaderPropertyId_tAA7B64E0C225CFD70D9837D0733FDE84DC3310D2_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XRSystemUniversal_tC6D796087104B8263D12B71391A3147102BE3FF7_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
Matrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6 V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
Matrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6 V_1;
|
|
memset((&V_1), 0, sizeof(V_1));
|
|
Matrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6 V_2;
|
|
memset((&V_2), 0, sizeof(V_2));
|
|
Matrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6 V_3;
|
|
memset((&V_3), 0, sizeof(V_3));
|
|
Matrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6 V_4;
|
|
memset((&V_4), 0, sizeof(V_4));
|
|
Matrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6 V_5;
|
|
memset((&V_5), 0, sizeof(V_5));
|
|
Matrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6 V_6;
|
|
memset((&V_6), 0, sizeof(V_6));
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:228>
|
|
UniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7* L_0 = ___1_cameraData;
|
|
NullCheck(L_0);
|
|
XRPass_tFC4577E97B88E0EAAAB2EB387AB3A92E9EB9C6DF* L_1;
|
|
L_1 = UniversalCameraData_get_xr_mC600E667BA2B92EADF2CF60CD49E15242FA83C4D_inline(L_0, NULL);
|
|
NullCheck(L_1);
|
|
bool L_2;
|
|
L_2 = XRPass_get_enabled_m488D52C18CC6B83FDC3212E98864BA02116A64A3(L_1, NULL);
|
|
if (!L_2)
|
|
{
|
|
goto IL_0023;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:230>
|
|
UniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7* L_3 = ___1_cameraData;
|
|
RasterCommandBuffer_t4300C4F080EA3CF43C7ACFDBD4F94EA633FE98E8* L_4 = ___0_cmd;
|
|
bool L_5 = ___3_isTargetFlipped;
|
|
NullCheck(L_3);
|
|
UniversalCameraData_PushBuiltinShaderConstantsXR_mA5EE73620BDC6B4AD63AEDF6850F7FD24B21F729(L_3, L_4, L_5, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:231>
|
|
RasterCommandBuffer_t4300C4F080EA3CF43C7ACFDBD4F94EA633FE98E8* L_6 = ___0_cmd;
|
|
UniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7* L_7 = ___1_cameraData;
|
|
NullCheck(L_7);
|
|
XRPassUniversal_t8D4B40107F5DBC12D39470D87D108D3D2A8FB8D1* L_8;
|
|
L_8 = UniversalCameraData_get_xrUniversal_mD28B65BB477E408AF63DCA582FA63CB9FDCC01E0(L_7, NULL);
|
|
bool L_9 = ___3_isTargetFlipped;
|
|
il2cpp_codegen_runtime_class_init_inline(XRSystemUniversal_tC6D796087104B8263D12B71391A3147102BE3FF7_il2cpp_TypeInfo_var);
|
|
XRSystemUniversal_MarkShaderProperties_mD3F656E96DD95014FE77EC31F74F74809717D0B5(L_6, L_8, L_9, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:232>
|
|
return;
|
|
}
|
|
|
|
IL_0023:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:237>
|
|
UniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7* L_10 = ___1_cameraData;
|
|
NullCheck(L_10);
|
|
Matrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6 L_11;
|
|
L_11 = UniversalCameraData_GetViewMatrix_mE4676E11126A0A1F10B2425B245CF438A671A21A(L_10, 0, NULL);
|
|
V_0 = L_11;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:238>
|
|
UniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7* L_12 = ___1_cameraData;
|
|
NullCheck(L_12);
|
|
Matrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6 L_13;
|
|
L_13 = UniversalCameraData_GetProjectionMatrix_mCBE3F56686DD504AC04863DB9FC5479E69DB4866(L_12, 0, NULL);
|
|
V_1 = L_13;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:245>
|
|
RasterCommandBuffer_t4300C4F080EA3CF43C7ACFDBD4F94EA633FE98E8* L_14 = ___0_cmd;
|
|
Matrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6 L_15 = V_0;
|
|
Matrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6 L_16 = V_1;
|
|
NullCheck(L_14);
|
|
RasterCommandBuffer_SetViewProjectionMatrices_m21CDA0C0749727E056A9F2FA6241346D68876D29(L_14, L_15, L_16, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:247>
|
|
bool L_17 = ___2_setInverseMatrices;
|
|
if (!L_17)
|
|
{
|
|
goto IL_00c8;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:249>
|
|
UniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7* L_18 = ___1_cameraData;
|
|
bool L_19 = ___3_isTargetFlipped;
|
|
NullCheck(L_18);
|
|
Matrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6 L_20;
|
|
L_20 = UniversalCameraData_GetGPUProjectionMatrix_mE735BC88196500A60E681CB42031792EB977FB1C(L_18, L_19, 0, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:250>
|
|
Matrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6 L_21 = V_0;
|
|
Matrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6 L_22;
|
|
L_22 = Matrix4x4_Inverse_mFB2503F5D5FE76E7C56249700ED2E43DDA0F1939(L_21, NULL);
|
|
V_2 = L_22;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:251>
|
|
Matrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6 L_23;
|
|
L_23 = Matrix4x4_Inverse_mFB2503F5D5FE76E7C56249700ED2E43DDA0F1939(L_20, NULL);
|
|
V_3 = L_23;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:252>
|
|
Matrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6 L_24 = V_2;
|
|
Matrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6 L_25 = V_3;
|
|
Matrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6 L_26;
|
|
L_26 = Matrix4x4_op_Multiply_m75E91775655DCA8DFC8EDE0AB787285BB3935162(L_24, L_25, NULL);
|
|
V_4 = L_26;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:257>
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_27;
|
|
memset((&L_27), 0, sizeof(L_27));
|
|
Vector3__ctor_m376936E6B999EF1ECBE57D990A386303E2283DE0_inline((&L_27), (1.0f), (1.0f), (-1.0f), NULL);
|
|
Matrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6 L_28;
|
|
L_28 = Matrix4x4_Scale_m95902D2A889FD6E7B04BBEAE6FAE5D6D8A88E642(L_27, NULL);
|
|
Matrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6 L_29 = V_0;
|
|
Matrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6 L_30;
|
|
L_30 = Matrix4x4_op_Multiply_m75E91775655DCA8DFC8EDE0AB787285BB3935162(L_28, L_29, NULL);
|
|
V_5 = L_30;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:258>
|
|
Matrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6 L_31;
|
|
L_31 = Matrix4x4_get_inverse_m4F4A881CD789281EA90EB68CFD39F36C8A81E6BD((&V_5), NULL);
|
|
V_6 = L_31;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:259>
|
|
RasterCommandBuffer_t4300C4F080EA3CF43C7ACFDBD4F94EA633FE98E8* L_32 = ___0_cmd;
|
|
il2cpp_codegen_runtime_class_init_inline(ShaderPropertyId_tAA7B64E0C225CFD70D9837D0733FDE84DC3310D2_il2cpp_TypeInfo_var);
|
|
int32_t L_33 = ((ShaderPropertyId_tAA7B64E0C225CFD70D9837D0733FDE84DC3310D2_StaticFields*)il2cpp_codegen_static_fields_for(ShaderPropertyId_tAA7B64E0C225CFD70D9837D0733FDE84DC3310D2_il2cpp_TypeInfo_var))->___worldToCameraMatrix;
|
|
Matrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6 L_34 = V_5;
|
|
NullCheck(L_32);
|
|
RasterCommandBuffer_SetGlobalMatrix_m036FB6142D56FB781E262E604951EB5EDA003EE2(L_32, L_33, L_34, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:260>
|
|
RasterCommandBuffer_t4300C4F080EA3CF43C7ACFDBD4F94EA633FE98E8* L_35 = ___0_cmd;
|
|
int32_t L_36 = ((ShaderPropertyId_tAA7B64E0C225CFD70D9837D0733FDE84DC3310D2_StaticFields*)il2cpp_codegen_static_fields_for(ShaderPropertyId_tAA7B64E0C225CFD70D9837D0733FDE84DC3310D2_il2cpp_TypeInfo_var))->___cameraToWorldMatrix;
|
|
Matrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6 L_37 = V_6;
|
|
NullCheck(L_35);
|
|
RasterCommandBuffer_SetGlobalMatrix_m036FB6142D56FB781E262E604951EB5EDA003EE2(L_35, L_36, L_37, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:262>
|
|
RasterCommandBuffer_t4300C4F080EA3CF43C7ACFDBD4F94EA633FE98E8* L_38 = ___0_cmd;
|
|
int32_t L_39 = ((ShaderPropertyId_tAA7B64E0C225CFD70D9837D0733FDE84DC3310D2_StaticFields*)il2cpp_codegen_static_fields_for(ShaderPropertyId_tAA7B64E0C225CFD70D9837D0733FDE84DC3310D2_il2cpp_TypeInfo_var))->___inverseViewMatrix;
|
|
Matrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6 L_40 = V_2;
|
|
NullCheck(L_38);
|
|
RasterCommandBuffer_SetGlobalMatrix_m036FB6142D56FB781E262E604951EB5EDA003EE2(L_38, L_39, L_40, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:263>
|
|
RasterCommandBuffer_t4300C4F080EA3CF43C7ACFDBD4F94EA633FE98E8* L_41 = ___0_cmd;
|
|
int32_t L_42 = ((ShaderPropertyId_tAA7B64E0C225CFD70D9837D0733FDE84DC3310D2_StaticFields*)il2cpp_codegen_static_fields_for(ShaderPropertyId_tAA7B64E0C225CFD70D9837D0733FDE84DC3310D2_il2cpp_TypeInfo_var))->___inverseProjectionMatrix;
|
|
Matrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6 L_43 = V_3;
|
|
NullCheck(L_41);
|
|
RasterCommandBuffer_SetGlobalMatrix_m036FB6142D56FB781E262E604951EB5EDA003EE2(L_41, L_42, L_43, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:264>
|
|
RasterCommandBuffer_t4300C4F080EA3CF43C7ACFDBD4F94EA633FE98E8* L_44 = ___0_cmd;
|
|
int32_t L_45 = ((ShaderPropertyId_tAA7B64E0C225CFD70D9837D0733FDE84DC3310D2_StaticFields*)il2cpp_codegen_static_fields_for(ShaderPropertyId_tAA7B64E0C225CFD70D9837D0733FDE84DC3310D2_il2cpp_TypeInfo_var))->___inverseViewAndProjectionMatrix;
|
|
Matrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6 L_46 = V_4;
|
|
NullCheck(L_44);
|
|
RasterCommandBuffer_SetGlobalMatrix_m036FB6142D56FB781E262E604951EB5EDA003EE2(L_44, L_45, L_46, NULL);
|
|
}
|
|
|
|
IL_00c8:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:268>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 33360
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ScriptableRenderer_SetPerCameraShaderVariables_mB52055FC973AD3E42659F6C6FA1BD1EA20272630 (ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892* __this, RasterCommandBuffer_t4300C4F080EA3CF43C7ACFDBD4F94EA633FE98E8* ___0_cmd, UniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7* ___1_cameraData, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:280>
|
|
RasterCommandBuffer_t4300C4F080EA3CF43C7ACFDBD4F94EA633FE98E8* L_0 = ___0_cmd;
|
|
UniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7* L_1 = ___1_cameraData;
|
|
UniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7* L_2 = ___1_cameraData;
|
|
NullCheck(L_2);
|
|
RenderTextureDescriptor_t69845881CE6437E4E61F92074F2F84079F23FA46* L_3 = (RenderTextureDescriptor_t69845881CE6437E4E61F92074F2F84079F23FA46*)(&L_2->___cameraTargetDescriptor);
|
|
int32_t L_4;
|
|
L_4 = RenderTextureDescriptor_get_width_mB159E4EB08B23B19CCCFADB465864361FB840BFF_inline(L_3, NULL);
|
|
UniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7* L_5 = ___1_cameraData;
|
|
NullCheck(L_5);
|
|
RenderTextureDescriptor_t69845881CE6437E4E61F92074F2F84079F23FA46* L_6 = (RenderTextureDescriptor_t69845881CE6437E4E61F92074F2F84079F23FA46*)(&L_5->___cameraTargetDescriptor);
|
|
int32_t L_7;
|
|
L_7 = RenderTextureDescriptor_get_height_m1006F9AA45029715C552C8A8C2F102F63D3A91EC_inline(L_6, NULL);
|
|
Vector2Int_t69B2886EBAB732D9B880565E18E7568F3DE0CE6A L_8;
|
|
memset((&L_8), 0, sizeof(L_8));
|
|
Vector2Int__ctor_mC20D1312133EB8CB63EC11067088B043660F11CE_inline((&L_8), L_4, L_7, NULL);
|
|
UniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7* L_9 = ___1_cameraData;
|
|
NullCheck(L_9);
|
|
bool L_10;
|
|
L_10 = UniversalCameraData_IsCameraProjectionMatrixFlipped_mB276D4F23A10935367AF04FAAEC51AC177A5C203(L_9, NULL);
|
|
ScriptableRenderer_SetPerCameraShaderVariables_m11127D897D405440FEB597262B29C713698EF4F9(__this, L_0, L_1, L_8, L_10, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:282>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 33361
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ScriptableRenderer_SetPerCameraShaderVariables_m11127D897D405440FEB597262B29C713698EF4F9 (ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892* __this, RasterCommandBuffer_t4300C4F080EA3CF43C7ACFDBD4F94EA633FE98E8* ___0_cmd, UniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7* ___1_cameraData, Vector2Int_t69B2886EBAB732D9B880565E18E7568F3DE0CE6A ___2_cameraTargetSizeCopy, bool ___3_isTargetFlipped, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Math_tEB65DE7CA8B083C412C969C92981C030865486CE_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Profiling_t1148A935DE86EC9E67DA54238721B4178A744AD3_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ShaderGlobalKeywords_tCD2A8F654428E5D252204D24E379C6725E5A2C91_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ShaderPropertyId_tAA7B64E0C225CFD70D9837D0733FDE84DC3310D2_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
ProfilingScope_t57898BA31E8EF8F083EF84E0DA2737AC61CBC5BD V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184* V_1 = NULL;
|
|
float V_2 = 0.0f;
|
|
float V_3 = 0.0f;
|
|
float V_4 = 0.0f;
|
|
float V_5 = 0.0f;
|
|
float V_6 = 0.0f;
|
|
float V_7 = 0.0f;
|
|
float V_8 = 0.0f;
|
|
float V_9 = 0.0f;
|
|
float V_10 = 0.0f;
|
|
float V_11 = 0.0f;
|
|
float V_12 = 0.0f;
|
|
Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3 V_13;
|
|
memset((&V_13), 0, sizeof(V_13));
|
|
Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3 V_14;
|
|
memset((&V_14), 0, sizeof(V_14));
|
|
float V_15 = 0.0f;
|
|
float V_16 = 0.0f;
|
|
float V_17 = 0.0f;
|
|
Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3 V_18;
|
|
memset((&V_18), 0, sizeof(V_18));
|
|
float G_B12_0 = 0.0f;
|
|
float G_B15_0 = 0.0f;
|
|
float G_B18_0 = 0.0f;
|
|
float G_B24_0 = 0.0f;
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:286>
|
|
il2cpp_codegen_runtime_class_init_inline(Profiling_t1148A935DE86EC9E67DA54238721B4178A744AD3_il2cpp_TypeInfo_var);
|
|
ProfilingSampler_t420D4672EDB44E0EF980B31ADFD9E5747200FECE* L_0 = ((Profiling_t1148A935DE86EC9E67DA54238721B4178A744AD3_StaticFields*)il2cpp_codegen_static_fields_for(Profiling_t1148A935DE86EC9E67DA54238721B4178A744AD3_il2cpp_TypeInfo_var))->___setPerCameraShaderVariables;
|
|
ProfilingScope__ctor_m4B73587A2295443A73B64DDD3D484D8EAECC0D65((&V_0), L_0, NULL);
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_0350:
|
|
{
|
|
ProfilingScope_Dispose_m4231A2ACA1F8E345BB0078310A9F7601704C8BE4((&V_0), NULL);
|
|
return;
|
|
}
|
|
});
|
|
try
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:288>
|
|
UniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7* L_1 = ___1_cameraData;
|
|
NullCheck(L_1);
|
|
Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184* L_2 = L_1->___camera;
|
|
V_1 = L_2;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:290>
|
|
int32_t L_3;
|
|
L_3 = Vector2Int_get_x_mA2CACB1B6E6B5AD0CCC32B2CD2EDCE3ECEB50576_inline((&___2_cameraTargetSizeCopy), NULL);
|
|
V_2 = ((float)L_3);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:291>
|
|
int32_t L_4;
|
|
L_4 = Vector2Int_get_y_m48454163ECF0B463FB5A16A0C4FC4B14DB0768B3_inline((&___2_cameraTargetSizeCopy), NULL);
|
|
V_3 = ((float)L_4);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:292>
|
|
Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184* L_5 = V_1;
|
|
NullCheck(L_5);
|
|
int32_t L_6;
|
|
L_6 = Camera_get_pixelWidth_m55AC8AD744FC0179865C2E630C68F9AD0799065D(L_5, NULL);
|
|
V_4 = ((float)L_6);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:293>
|
|
Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184* L_7 = V_1;
|
|
NullCheck(L_7);
|
|
int32_t L_8;
|
|
L_8 = Camera_get_pixelHeight_m00881B5A440B0018D5A8F837694027050B500F59(L_7, NULL);
|
|
V_5 = ((float)L_8);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:296>
|
|
UniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7* L_9 = ___1_cameraData;
|
|
NullCheck(L_9);
|
|
int32_t L_10 = L_9->___renderType;
|
|
if ((!(((uint32_t)L_10) == ((uint32_t)1))))
|
|
{
|
|
goto IL_0052_1;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:300>
|
|
UniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7* L_11 = ___1_cameraData;
|
|
NullCheck(L_11);
|
|
int32_t L_12 = L_11->___pixelWidth;
|
|
V_4 = ((float)L_12);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:301>
|
|
UniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7* L_13 = ___1_cameraData;
|
|
NullCheck(L_13);
|
|
int32_t L_14 = L_13->___pixelHeight;
|
|
V_5 = ((float)L_14);
|
|
}
|
|
|
|
IL_0052_1:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:305>
|
|
UniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7* L_15 = ___1_cameraData;
|
|
NullCheck(L_15);
|
|
XRPass_tFC4577E97B88E0EAAAB2EB387AB3A92E9EB9C6DF* L_16;
|
|
L_16 = UniversalCameraData_get_xr_mC600E667BA2B92EADF2CF60CD49E15242FA83C4D_inline(L_15, NULL);
|
|
NullCheck(L_16);
|
|
bool L_17;
|
|
L_17 = XRPass_get_enabled_m488D52C18CC6B83FDC3212E98864BA02116A64A3(L_16, NULL);
|
|
if (!L_17)
|
|
{
|
|
goto IL_007a_1;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:307>
|
|
int32_t L_18;
|
|
L_18 = Vector2Int_get_x_mA2CACB1B6E6B5AD0CCC32B2CD2EDCE3ECEB50576_inline((&___2_cameraTargetSizeCopy), NULL);
|
|
V_4 = ((float)L_18);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:308>
|
|
int32_t L_19;
|
|
L_19 = Vector2Int_get_y_m48454163ECF0B463FB5A16A0C4FC4B14DB0768B3_inline((&___2_cameraTargetSizeCopy), NULL);
|
|
V_5 = ((float)L_19);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:310>
|
|
__this->___useRenderPassEnabled = (bool)0;
|
|
}
|
|
|
|
IL_007a_1:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:313>
|
|
Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184* L_20 = V_1;
|
|
NullCheck(L_20);
|
|
bool L_21;
|
|
L_21 = Camera_get_allowDynamicResolution_mAD3664A7319B2D48FF0D6DCEE6FD7B855F21A79B(L_20, NULL);
|
|
if (!L_21)
|
|
{
|
|
goto IL_00bb_1;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:317>
|
|
UniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7* L_22 = ___1_cameraData;
|
|
NullCheck(L_22);
|
|
XRPass_tFC4577E97B88E0EAAAB2EB387AB3A92E9EB9C6DF* L_23;
|
|
L_23 = UniversalCameraData_get_xr_mC600E667BA2B92EADF2CF60CD49E15242FA83C4D_inline(L_22, NULL);
|
|
NullCheck(L_23);
|
|
bool L_24;
|
|
L_24 = XRPass_get_enabled_m488D52C18CC6B83FDC3212E98864BA02116A64A3(L_23, NULL);
|
|
if (!L_24)
|
|
{
|
|
goto IL_00ab_1;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:319>
|
|
UniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7* L_25 = ___1_cameraData;
|
|
NullCheck(L_25);
|
|
XRPass_tFC4577E97B88E0EAAAB2EB387AB3A92E9EB9C6DF* L_26;
|
|
L_26 = UniversalCameraData_get_xr_mC600E667BA2B92EADF2CF60CD49E15242FA83C4D_inline(L_25, NULL);
|
|
NullCheck(L_26);
|
|
int32_t L_27;
|
|
L_27 = XRPass_get_renderTargetScaledWidth_m023E0E3EA121FEB8E1FD838A3EFFA55E96F7CBC8_inline(L_26, NULL);
|
|
V_2 = ((float)L_27);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:320>
|
|
UniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7* L_28 = ___1_cameraData;
|
|
NullCheck(L_28);
|
|
XRPass_tFC4577E97B88E0EAAAB2EB387AB3A92E9EB9C6DF* L_29;
|
|
L_29 = UniversalCameraData_get_xr_mC600E667BA2B92EADF2CF60CD49E15242FA83C4D_inline(L_28, NULL);
|
|
NullCheck(L_29);
|
|
int32_t L_30;
|
|
L_30 = XRPass_get_renderTargetScaledHeight_m06C1F1D82C7A84275B6F5881E5347BD57AB96005_inline(L_29, NULL);
|
|
V_3 = ((float)L_30);
|
|
goto IL_00bb_1;
|
|
}
|
|
|
|
IL_00ab_1:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:325>
|
|
float L_31 = V_2;
|
|
float L_32;
|
|
L_32 = ScalableBufferManager_get_widthScaleFactor_m544DB29370FFD51C8E445BA407B0199116F79EAC(NULL);
|
|
V_2 = ((float)il2cpp_codegen_multiply(L_31, L_32));
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:326>
|
|
float L_33 = V_3;
|
|
float L_34;
|
|
L_34 = ScalableBufferManager_get_heightScaleFactor_mD47126B1D94893B4DC53B57D7678631A058A264B(NULL);
|
|
V_3 = ((float)il2cpp_codegen_multiply(L_33, L_34));
|
|
}
|
|
|
|
IL_00bb_1:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:330>
|
|
Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184* L_35 = V_1;
|
|
NullCheck(L_35);
|
|
float L_36;
|
|
L_36 = Camera_get_nearClipPlane_m5E8FAF84326E3192CB036BD29DCCDAF6A9861013(L_35, NULL);
|
|
V_6 = L_36;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:331>
|
|
Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184* L_37 = V_1;
|
|
NullCheck(L_37);
|
|
float L_38;
|
|
L_38 = Camera_get_farClipPlane_m1D7128B85B5DB866F75FBE8CEBA48335716B67BD(L_37, NULL);
|
|
V_7 = L_38;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:332>
|
|
float L_39 = V_6;
|
|
bool L_40;
|
|
L_40 = Mathf_Approximately_m1DADD012A8FC82E11FB282501AE2EBBF9A77150B_inline(L_39, (0.0f), NULL);
|
|
if (L_40)
|
|
{
|
|
goto IL_00e3_1;
|
|
}
|
|
}
|
|
{
|
|
float L_41 = V_6;
|
|
G_B12_0 = ((float)((1.0f)/L_41));
|
|
goto IL_00e8_1;
|
|
}
|
|
|
|
IL_00e3_1:
|
|
{
|
|
G_B12_0 = (0.0f);
|
|
}
|
|
|
|
IL_00e8_1:
|
|
{
|
|
V_8 = G_B12_0;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:333>
|
|
float L_42 = V_7;
|
|
bool L_43;
|
|
L_43 = Mathf_Approximately_m1DADD012A8FC82E11FB282501AE2EBBF9A77150B_inline(L_42, (0.0f), NULL);
|
|
if (L_43)
|
|
{
|
|
goto IL_0102_1;
|
|
}
|
|
}
|
|
{
|
|
float L_44 = V_7;
|
|
G_B15_0 = ((float)((1.0f)/L_44));
|
|
goto IL_0107_1;
|
|
}
|
|
|
|
IL_0102_1:
|
|
{
|
|
G_B15_0 = (0.0f);
|
|
}
|
|
|
|
IL_0107_1:
|
|
{
|
|
V_9 = G_B15_0;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:334>
|
|
Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184* L_45 = V_1;
|
|
NullCheck(L_45);
|
|
bool L_46;
|
|
L_46 = Camera_get_orthographic_m904DEFC76C54DA4E30C20A62A86D5D87B7D4DD8F(L_45, NULL);
|
|
if (L_46)
|
|
{
|
|
goto IL_0118_1;
|
|
}
|
|
}
|
|
{
|
|
G_B18_0 = (0.0f);
|
|
goto IL_011d_1;
|
|
}
|
|
|
|
IL_0118_1:
|
|
{
|
|
G_B18_0 = (1.0f);
|
|
}
|
|
|
|
IL_011d_1:
|
|
{
|
|
V_10 = G_B18_0;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:343>
|
|
float L_47 = V_7;
|
|
float L_48 = V_8;
|
|
V_11 = ((float)il2cpp_codegen_subtract((1.0f), ((float)il2cpp_codegen_multiply(L_47, L_48))));
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:344>
|
|
float L_49 = V_7;
|
|
float L_50 = V_8;
|
|
V_12 = ((float)il2cpp_codegen_multiply(L_49, L_50));
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:346>
|
|
float L_51 = V_11;
|
|
float L_52 = V_12;
|
|
float L_53 = V_11;
|
|
float L_54 = V_9;
|
|
float L_55 = V_12;
|
|
float L_56 = V_9;
|
|
Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3 L_57;
|
|
memset((&L_57), 0, sizeof(L_57));
|
|
Vector4__ctor_m96B2CD8B862B271F513AF0BDC2EABD58E4DBC813_inline((&L_57), L_51, L_52, ((float)il2cpp_codegen_multiply(L_53, L_54)), ((float)il2cpp_codegen_multiply(L_55, L_56)), NULL);
|
|
V_13 = L_57;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:348>
|
|
bool L_58;
|
|
L_58 = SystemInfo_get_usesReversedZBuffer_m52819B4B538F590FCA0370FC99775B3AA6B32514(NULL);
|
|
if (!L_58)
|
|
{
|
|
goto IL_0191_1;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:350>
|
|
float* L_59 = (float*)(&(&V_13)->___y);
|
|
float* L_60 = L_59;
|
|
float L_61 = *((float*)L_60);
|
|
Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3 L_62 = V_13;
|
|
float L_63 = L_62.___x;
|
|
*((float*)L_60) = (float)((float)il2cpp_codegen_add(L_61, L_63));
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:351>
|
|
Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3 L_64 = V_13;
|
|
float L_65 = L_64.___x;
|
|
(&V_13)->___x = ((-L_65));
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:352>
|
|
float* L_66 = (float*)(&(&V_13)->___w);
|
|
float* L_67 = L_66;
|
|
float L_68 = *((float*)L_67);
|
|
Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3 L_69 = V_13;
|
|
float L_70 = L_69.___z;
|
|
*((float*)L_67) = (float)((float)il2cpp_codegen_add(L_68, L_70));
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:353>
|
|
Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3 L_71 = V_13;
|
|
float L_72 = L_71.___z;
|
|
(&V_13)->___z = ((-L_72));
|
|
}
|
|
|
|
IL_0191_1:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:359>
|
|
UniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7* L_73 = ___1_cameraData;
|
|
NullCheck(L_73);
|
|
int32_t L_74 = L_73->___renderType;
|
|
if ((!(((uint32_t)L_74) == ((uint32_t)1))))
|
|
{
|
|
goto IL_01ce_1;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:361>
|
|
bool L_75 = ___3_isTargetFlipped;
|
|
if (L_75)
|
|
{
|
|
goto IL_01a5_1;
|
|
}
|
|
}
|
|
{
|
|
G_B24_0 = (1.0f);
|
|
goto IL_01aa_1;
|
|
}
|
|
|
|
IL_01a5_1:
|
|
{
|
|
G_B24_0 = (-1.0f);
|
|
}
|
|
|
|
IL_01aa_1:
|
|
{
|
|
V_17 = G_B24_0;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:362>
|
|
float L_76 = V_17;
|
|
float L_77 = V_6;
|
|
float L_78 = V_7;
|
|
float L_79 = V_9;
|
|
Vector4__ctor_m96B2CD8B862B271F513AF0BDC2EABD58E4DBC813_inline((&V_18), L_76, L_77, L_78, ((float)il2cpp_codegen_multiply((1.0f), L_79)), NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:363>
|
|
RasterCommandBuffer_t4300C4F080EA3CF43C7ACFDBD4F94EA633FE98E8* L_80 = ___0_cmd;
|
|
il2cpp_codegen_runtime_class_init_inline(ShaderPropertyId_tAA7B64E0C225CFD70D9837D0733FDE84DC3310D2_il2cpp_TypeInfo_var);
|
|
int32_t L_81 = ((ShaderPropertyId_tAA7B64E0C225CFD70D9837D0733FDE84DC3310D2_StaticFields*)il2cpp_codegen_static_fields_for(ShaderPropertyId_tAA7B64E0C225CFD70D9837D0733FDE84DC3310D2_il2cpp_TypeInfo_var))->___projectionParams;
|
|
Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3 L_82 = V_18;
|
|
NullCheck(L_80);
|
|
RasterCommandBuffer_SetGlobalVector_mB54A698709E920A961D8601DC5B2452B4866C68E(L_80, L_81, L_82, NULL);
|
|
}
|
|
|
|
IL_01ce_1:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:366>
|
|
Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184* L_83 = V_1;
|
|
NullCheck(L_83);
|
|
float L_84;
|
|
L_84 = Camera_get_orthographicSize_m7950C5627086253E02992A43ADFE59039DB473F8(L_83, NULL);
|
|
UniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7* L_85 = ___1_cameraData;
|
|
NullCheck(L_85);
|
|
float L_86 = L_85->___aspectRatio;
|
|
Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184* L_87 = V_1;
|
|
NullCheck(L_87);
|
|
float L_88;
|
|
L_88 = Camera_get_orthographicSize_m7950C5627086253E02992A43ADFE59039DB473F8(L_87, NULL);
|
|
float L_89 = V_10;
|
|
Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3 L_90;
|
|
memset((&L_90), 0, sizeof(L_90));
|
|
Vector4__ctor_m96B2CD8B862B271F513AF0BDC2EABD58E4DBC813_inline((&L_90), ((float)il2cpp_codegen_multiply(L_84, L_86)), L_88, (0.0f), L_89, NULL);
|
|
V_14 = L_90;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:369>
|
|
RasterCommandBuffer_t4300C4F080EA3CF43C7ACFDBD4F94EA633FE98E8* L_91 = ___0_cmd;
|
|
il2cpp_codegen_runtime_class_init_inline(ShaderPropertyId_tAA7B64E0C225CFD70D9837D0733FDE84DC3310D2_il2cpp_TypeInfo_var);
|
|
int32_t L_92 = ((ShaderPropertyId_tAA7B64E0C225CFD70D9837D0733FDE84DC3310D2_StaticFields*)il2cpp_codegen_static_fields_for(ShaderPropertyId_tAA7B64E0C225CFD70D9837D0733FDE84DC3310D2_il2cpp_TypeInfo_var))->___worldSpaceCameraPos;
|
|
UniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7* L_93 = ___1_cameraData;
|
|
NullCheck(L_93);
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_94 = L_93->___worldSpaceCameraPos;
|
|
Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3 L_95;
|
|
L_95 = Vector4_op_Implicit_m2ECA73F345A7AD84144133E9E51657204002B12D_inline(L_94, NULL);
|
|
NullCheck(L_91);
|
|
RasterCommandBuffer_SetGlobalVector_mB54A698709E920A961D8601DC5B2452B4866C68E(L_91, L_92, L_95, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:370>
|
|
RasterCommandBuffer_t4300C4F080EA3CF43C7ACFDBD4F94EA633FE98E8* L_96 = ___0_cmd;
|
|
int32_t L_97 = ((ShaderPropertyId_tAA7B64E0C225CFD70D9837D0733FDE84DC3310D2_StaticFields*)il2cpp_codegen_static_fields_for(ShaderPropertyId_tAA7B64E0C225CFD70D9837D0733FDE84DC3310D2_il2cpp_TypeInfo_var))->___screenParams;
|
|
float L_98 = V_4;
|
|
float L_99 = V_5;
|
|
float L_100 = V_4;
|
|
float L_101 = V_5;
|
|
Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3 L_102;
|
|
memset((&L_102), 0, sizeof(L_102));
|
|
Vector4__ctor_m96B2CD8B862B271F513AF0BDC2EABD58E4DBC813_inline((&L_102), L_98, L_99, ((float)il2cpp_codegen_add((1.0f), ((float)((1.0f)/L_100)))), ((float)il2cpp_codegen_add((1.0f), ((float)((1.0f)/L_101)))), NULL);
|
|
NullCheck(L_96);
|
|
RasterCommandBuffer_SetGlobalVector_mB54A698709E920A961D8601DC5B2452B4866C68E(L_96, L_97, L_102, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:371>
|
|
RasterCommandBuffer_t4300C4F080EA3CF43C7ACFDBD4F94EA633FE98E8* L_103 = ___0_cmd;
|
|
int32_t L_104 = ((ShaderPropertyId_tAA7B64E0C225CFD70D9837D0733FDE84DC3310D2_StaticFields*)il2cpp_codegen_static_fields_for(ShaderPropertyId_tAA7B64E0C225CFD70D9837D0733FDE84DC3310D2_il2cpp_TypeInfo_var))->___scaledScreenParams;
|
|
float L_105 = V_2;
|
|
float L_106 = V_3;
|
|
float L_107 = V_2;
|
|
float L_108 = V_3;
|
|
Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3 L_109;
|
|
memset((&L_109), 0, sizeof(L_109));
|
|
Vector4__ctor_m96B2CD8B862B271F513AF0BDC2EABD58E4DBC813_inline((&L_109), L_105, L_106, ((float)il2cpp_codegen_add((1.0f), ((float)((1.0f)/L_107)))), ((float)il2cpp_codegen_add((1.0f), ((float)((1.0f)/L_108)))), NULL);
|
|
NullCheck(L_103);
|
|
RasterCommandBuffer_SetGlobalVector_mB54A698709E920A961D8601DC5B2452B4866C68E(L_103, L_104, L_109, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:372>
|
|
RasterCommandBuffer_t4300C4F080EA3CF43C7ACFDBD4F94EA633FE98E8* L_110 = ___0_cmd;
|
|
int32_t L_111 = ((ShaderPropertyId_tAA7B64E0C225CFD70D9837D0733FDE84DC3310D2_StaticFields*)il2cpp_codegen_static_fields_for(ShaderPropertyId_tAA7B64E0C225CFD70D9837D0733FDE84DC3310D2_il2cpp_TypeInfo_var))->___zBufferParams;
|
|
Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3 L_112 = V_13;
|
|
NullCheck(L_110);
|
|
RasterCommandBuffer_SetGlobalVector_mB54A698709E920A961D8601DC5B2452B4866C68E(L_110, L_111, L_112, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:373>
|
|
RasterCommandBuffer_t4300C4F080EA3CF43C7ACFDBD4F94EA633FE98E8* L_113 = ___0_cmd;
|
|
int32_t L_114 = ((ShaderPropertyId_tAA7B64E0C225CFD70D9837D0733FDE84DC3310D2_StaticFields*)il2cpp_codegen_static_fields_for(ShaderPropertyId_tAA7B64E0C225CFD70D9837D0733FDE84DC3310D2_il2cpp_TypeInfo_var))->___orthoParams;
|
|
Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3 L_115 = V_14;
|
|
NullCheck(L_113);
|
|
RasterCommandBuffer_SetGlobalVector_mB54A698709E920A961D8601DC5B2452B4866C68E(L_113, L_114, L_115, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:375>
|
|
RasterCommandBuffer_t4300C4F080EA3CF43C7ACFDBD4F94EA633FE98E8* L_116 = ___0_cmd;
|
|
int32_t L_117 = ((ShaderPropertyId_tAA7B64E0C225CFD70D9837D0733FDE84DC3310D2_StaticFields*)il2cpp_codegen_static_fields_for(ShaderPropertyId_tAA7B64E0C225CFD70D9837D0733FDE84DC3310D2_il2cpp_TypeInfo_var))->___screenSize;
|
|
float L_118 = V_2;
|
|
float L_119 = V_3;
|
|
float L_120 = V_2;
|
|
float L_121 = V_3;
|
|
Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3 L_122;
|
|
memset((&L_122), 0, sizeof(L_122));
|
|
Vector4__ctor_m96B2CD8B862B271F513AF0BDC2EABD58E4DBC813_inline((&L_122), L_118, L_119, ((float)((1.0f)/L_120)), ((float)((1.0f)/L_121)), NULL);
|
|
NullCheck(L_116);
|
|
RasterCommandBuffer_SetGlobalVector_mB54A698709E920A961D8601DC5B2452B4866C68E(L_116, L_117, L_122, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:376>
|
|
RasterCommandBuffer_t4300C4F080EA3CF43C7ACFDBD4F94EA633FE98E8* L_123 = ___0_cmd;
|
|
UniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7* L_124 = ___1_cameraData;
|
|
NullCheck(L_124);
|
|
bool L_125 = L_124->___useScreenCoordOverride;
|
|
NullCheck(L_123);
|
|
RasterCommandBuffer_SetKeyword_m134867C426359E758261AB04E59061F70A69B5C3(L_123, (&((ShaderGlobalKeywords_tCD2A8F654428E5D252204D24E379C6725E5A2C91_StaticFields*)il2cpp_codegen_static_fields_for(ShaderGlobalKeywords_tCD2A8F654428E5D252204D24E379C6725E5A2C91_il2cpp_TypeInfo_var))->___SCREEN_COORD_OVERRIDE), L_125, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:377>
|
|
RasterCommandBuffer_t4300C4F080EA3CF43C7ACFDBD4F94EA633FE98E8* L_126 = ___0_cmd;
|
|
int32_t L_127 = ((ShaderPropertyId_tAA7B64E0C225CFD70D9837D0733FDE84DC3310D2_StaticFields*)il2cpp_codegen_static_fields_for(ShaderPropertyId_tAA7B64E0C225CFD70D9837D0733FDE84DC3310D2_il2cpp_TypeInfo_var))->___screenSizeOverride;
|
|
UniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7* L_128 = ___1_cameraData;
|
|
NullCheck(L_128);
|
|
Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3 L_129 = L_128->___screenSizeOverride;
|
|
NullCheck(L_126);
|
|
RasterCommandBuffer_SetGlobalVector_mB54A698709E920A961D8601DC5B2452B4866C68E(L_126, L_127, L_129, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:378>
|
|
RasterCommandBuffer_t4300C4F080EA3CF43C7ACFDBD4F94EA633FE98E8* L_130 = ___0_cmd;
|
|
int32_t L_131 = ((ShaderPropertyId_tAA7B64E0C225CFD70D9837D0733FDE84DC3310D2_StaticFields*)il2cpp_codegen_static_fields_for(ShaderPropertyId_tAA7B64E0C225CFD70D9837D0733FDE84DC3310D2_il2cpp_TypeInfo_var))->___screenCoordScaleBias;
|
|
UniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7* L_132 = ___1_cameraData;
|
|
NullCheck(L_132);
|
|
Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3 L_133 = L_132->___screenCoordScaleBias;
|
|
NullCheck(L_130);
|
|
RasterCommandBuffer_SetGlobalVector_mB54A698709E920A961D8601DC5B2452B4866C68E(L_130, L_131, L_133, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:382>
|
|
RasterCommandBuffer_t4300C4F080EA3CF43C7ACFDBD4F94EA633FE98E8* L_134 = ___0_cmd;
|
|
int32_t L_135 = ((ShaderPropertyId_tAA7B64E0C225CFD70D9837D0733FDE84DC3310D2_StaticFields*)il2cpp_codegen_static_fields_for(ShaderPropertyId_tAA7B64E0C225CFD70D9837D0733FDE84DC3310D2_il2cpp_TypeInfo_var))->___rtHandleScale;
|
|
Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3 L_136;
|
|
L_136 = Vector4_get_one_m0AA55064B3C47D9D94E5BC4EE6AEC5B6E4F2D151_inline(NULL);
|
|
NullCheck(L_134);
|
|
RasterCommandBuffer_SetGlobalVector_mB54A698709E920A961D8601DC5B2452B4866C68E(L_134, L_135, L_136, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:386>
|
|
float L_137 = V_4;
|
|
float L_138 = V_2;
|
|
il2cpp_codegen_runtime_class_init_inline(Math_tEB65DE7CA8B083C412C969C92981C030865486CE_il2cpp_TypeInfo_var);
|
|
double L_139;
|
|
L_139 = Math_Log_m5A3BBBF06AB82F25C885812E07D27B473CF43054(((double)((float)(L_137/L_138))), (2.0), NULL);
|
|
float L_140;
|
|
L_140 = Math_Min_mE913811A2F7566294BF4649A434282634E7254B3(((float)((-L_139))), (0.0f), NULL);
|
|
V_15 = L_140;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:388>
|
|
UniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7* L_141 = ___1_cameraData;
|
|
NullCheck(L_141);
|
|
Settings_t3BEFDFF2C1A3D3A215DAF7B76E735B1BFB946C92* L_142 = (Settings_t3BEFDFF2C1A3D3A215DAF7B76E735B1BFB946C92*)(&L_141->___taaSettings);
|
|
float L_143;
|
|
L_143 = Settings_get_mipBias_m1A4168EB95838BFB72A8CBB96FD5FA4C9CEE0EA6_inline(L_142, NULL);
|
|
float L_144;
|
|
L_144 = Math_Min_mE913811A2F7566294BF4649A434282634E7254B3(L_143, (0.0f), NULL);
|
|
V_16 = L_144;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:389>
|
|
float L_145 = V_15;
|
|
float L_146 = V_16;
|
|
float L_147;
|
|
L_147 = Math_Min_mE913811A2F7566294BF4649A434282634E7254B3(L_145, L_146, NULL);
|
|
V_15 = L_147;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:390>
|
|
RasterCommandBuffer_t4300C4F080EA3CF43C7ACFDBD4F94EA633FE98E8* L_148 = ___0_cmd;
|
|
int32_t L_149 = ((ShaderPropertyId_tAA7B64E0C225CFD70D9837D0733FDE84DC3310D2_StaticFields*)il2cpp_codegen_static_fields_for(ShaderPropertyId_tAA7B64E0C225CFD70D9837D0733FDE84DC3310D2_il2cpp_TypeInfo_var))->___globalMipBias;
|
|
float L_150 = V_15;
|
|
float L_151 = V_15;
|
|
float L_152;
|
|
L_152 = powf((2.0f), L_151);
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_153;
|
|
memset((&L_153), 0, sizeof(L_153));
|
|
Vector2__ctor_m9525B79969AFFE3254B303A40997A56DEEB6F548_inline((&L_153), L_150, L_152, NULL);
|
|
Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3 L_154;
|
|
L_154 = Vector4_op_Implicit_mB193CD8DA20DEB9E9F95CFEB5A2B1B9B3B7ECFEB_inline(L_153, NULL);
|
|
NullCheck(L_148);
|
|
RasterCommandBuffer_SetGlobalVector_mB54A698709E920A961D8601DC5B2452B4866C68E(L_148, L_149, L_154, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:393>
|
|
RasterCommandBuffer_t4300C4F080EA3CF43C7ACFDBD4F94EA633FE98E8* L_155 = ___0_cmd;
|
|
UniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7* L_156 = ___1_cameraData;
|
|
bool L_157 = ___3_isTargetFlipped;
|
|
il2cpp_codegen_runtime_class_init_inline(ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892_il2cpp_TypeInfo_var);
|
|
ScriptableRenderer_SetCameraMatrices_m4CB2870357156E68160620CCEE59FE9FAB58F9C0(L_155, L_156, (bool)1, L_157, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:394>
|
|
goto IL_035e;
|
|
}
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_035e:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:394>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 33362
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ScriptableRenderer_SetPerCameraBillboardProperties_m69C48E7A4F33AA5EA6BAA072A5924FCD2A0C4DB7 (ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892* __this, RasterCommandBuffer_t4300C4F080EA3CF43C7ACFDBD4F94EA633FE98E8* ___0_cmd, UniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7* ___1_cameraData, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ShaderGlobalKeywords_tCD2A8F654428E5D252204D24E379C6725E5A2C91_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ShaderPropertyId_tAA7B64E0C225CFD70D9837D0733FDE84DC3310D2_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
Matrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6 V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 V_1;
|
|
memset((&V_1), 0, sizeof(V_1));
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 V_2;
|
|
memset((&V_2), 0, sizeof(V_2));
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 V_3;
|
|
memset((&V_3), 0, sizeof(V_3));
|
|
float V_4 = 0.0f;
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:403>
|
|
UniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7* L_0 = ___1_cameraData;
|
|
NullCheck(L_0);
|
|
Matrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6 L_1;
|
|
L_1 = UniversalCameraData_GetViewMatrix_mE4676E11126A0A1F10B2425B245CF438A671A21A(L_0, 0, NULL);
|
|
V_0 = L_1;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:404>
|
|
UniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7* L_2 = ___1_cameraData;
|
|
NullCheck(L_2);
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_3 = L_2->___worldSpaceCameraPos;
|
|
V_1 = L_3;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:406>
|
|
RasterCommandBuffer_t4300C4F080EA3CF43C7ACFDBD4F94EA633FE98E8* L_4 = ___0_cmd;
|
|
bool L_5;
|
|
L_5 = QualitySettings_get_billboardsFaceCameraPosition_mBD6743125AB1B58E759F6F069007AE25C2F37166(NULL);
|
|
NullCheck(L_4);
|
|
RasterCommandBuffer_SetKeyword_m134867C426359E758261AB04E59061F70A69B5C3(L_4, (&((ShaderGlobalKeywords_tCD2A8F654428E5D252204D24E379C6725E5A2C91_StaticFields*)il2cpp_codegen_static_fields_for(ShaderGlobalKeywords_tCD2A8F654428E5D252204D24E379C6725E5A2C91_il2cpp_TypeInfo_var))->___BillboardFaceCameraPos), L_5, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:411>
|
|
il2cpp_codegen_runtime_class_init_inline(ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892_il2cpp_TypeInfo_var);
|
|
ScriptableRenderer_CalculateBillboardProperties_m56E42FBF4312BAC9F57093058FDC94762FC86CE1((&V_0), (&V_2), (&V_3), (&V_4), NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:413>
|
|
RasterCommandBuffer_t4300C4F080EA3CF43C7ACFDBD4F94EA633FE98E8* L_6 = ___0_cmd;
|
|
il2cpp_codegen_runtime_class_init_inline(ShaderPropertyId_tAA7B64E0C225CFD70D9837D0733FDE84DC3310D2_il2cpp_TypeInfo_var);
|
|
int32_t L_7 = ((ShaderPropertyId_tAA7B64E0C225CFD70D9837D0733FDE84DC3310D2_StaticFields*)il2cpp_codegen_static_fields_for(ShaderPropertyId_tAA7B64E0C225CFD70D9837D0733FDE84DC3310D2_il2cpp_TypeInfo_var))->___billboardNormal;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_8 = V_3;
|
|
float L_9 = L_8.___x;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_10 = V_3;
|
|
float L_11 = L_10.___y;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_12 = V_3;
|
|
float L_13 = L_12.___z;
|
|
Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3 L_14;
|
|
memset((&L_14), 0, sizeof(L_14));
|
|
Vector4__ctor_m96B2CD8B862B271F513AF0BDC2EABD58E4DBC813_inline((&L_14), L_9, L_11, L_13, (0.0f), NULL);
|
|
NullCheck(L_6);
|
|
RasterCommandBuffer_SetGlobalVector_mB54A698709E920A961D8601DC5B2452B4866C68E(L_6, L_7, L_14, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:414>
|
|
RasterCommandBuffer_t4300C4F080EA3CF43C7ACFDBD4F94EA633FE98E8* L_15 = ___0_cmd;
|
|
int32_t L_16 = ((ShaderPropertyId_tAA7B64E0C225CFD70D9837D0733FDE84DC3310D2_StaticFields*)il2cpp_codegen_static_fields_for(ShaderPropertyId_tAA7B64E0C225CFD70D9837D0733FDE84DC3310D2_il2cpp_TypeInfo_var))->___billboardTangent;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_17 = V_2;
|
|
float L_18 = L_17.___x;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_19 = V_2;
|
|
float L_20 = L_19.___y;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_21 = V_2;
|
|
float L_22 = L_21.___z;
|
|
Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3 L_23;
|
|
memset((&L_23), 0, sizeof(L_23));
|
|
Vector4__ctor_m96B2CD8B862B271F513AF0BDC2EABD58E4DBC813_inline((&L_23), L_18, L_20, L_22, (0.0f), NULL);
|
|
NullCheck(L_15);
|
|
RasterCommandBuffer_SetGlobalVector_mB54A698709E920A961D8601DC5B2452B4866C68E(L_15, L_16, L_23, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:415>
|
|
RasterCommandBuffer_t4300C4F080EA3CF43C7ACFDBD4F94EA633FE98E8* L_24 = ___0_cmd;
|
|
int32_t L_25 = ((ShaderPropertyId_tAA7B64E0C225CFD70D9837D0733FDE84DC3310D2_StaticFields*)il2cpp_codegen_static_fields_for(ShaderPropertyId_tAA7B64E0C225CFD70D9837D0733FDE84DC3310D2_il2cpp_TypeInfo_var))->___billboardCameraParams;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_26 = V_1;
|
|
float L_27 = L_26.___x;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_28 = V_1;
|
|
float L_29 = L_28.___y;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_30 = V_1;
|
|
float L_31 = L_30.___z;
|
|
float L_32 = V_4;
|
|
Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3 L_33;
|
|
memset((&L_33), 0, sizeof(L_33));
|
|
Vector4__ctor_m96B2CD8B862B271F513AF0BDC2EABD58E4DBC813_inline((&L_33), L_27, L_29, L_31, L_32, NULL);
|
|
NullCheck(L_24);
|
|
RasterCommandBuffer_SetGlobalVector_mB54A698709E920A961D8601DC5B2452B4866C68E(L_24, L_25, L_33, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:416>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 33363
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ScriptableRenderer_CalculateBillboardProperties_m56E42FBF4312BAC9F57093058FDC94762FC86CE1 (Matrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6* ___0_worldToCameraMatrix, Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2* ___1_billboardTangent, Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2* ___2_billboardNormal, float* ___3_cameraXZAngle, const RuntimeMethod* method)
|
|
{
|
|
Matrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6 V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 V_1;
|
|
memset((&V_1), 0, sizeof(V_1));
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 V_2;
|
|
memset((&V_2), 0, sizeof(V_2));
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 V_3;
|
|
memset((&V_3), 0, sizeof(V_3));
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 V_4;
|
|
memset((&V_4), 0, sizeof(V_4));
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 V_5;
|
|
memset((&V_5), 0, sizeof(V_5));
|
|
float V_6 = 0.0f;
|
|
float V_7 = 0.0f;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2* G_B2_0 = NULL;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2* G_B1_0 = NULL;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 G_B3_0;
|
|
memset((&G_B3_0), 0, sizeof(G_B3_0));
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2* G_B3_1 = NULL;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2* G_B5_0 = NULL;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2* G_B4_0 = NULL;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 G_B6_0;
|
|
memset((&G_B6_0), 0, sizeof(G_B6_0));
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2* G_B6_1 = NULL;
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:424>
|
|
Matrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6* L_0 = ___0_worldToCameraMatrix;
|
|
Matrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6 L_1 = (*(Matrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6*)L_0);
|
|
V_0 = L_1;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:425>
|
|
Matrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6 L_2;
|
|
L_2 = Matrix4x4_get_transpose_mE85C7D21ED5CF86A8066073E6548E77162AA2C89((&V_0), NULL);
|
|
V_0 = L_2;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:427>
|
|
Matrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6 L_3 = V_0;
|
|
float L_4 = L_3.___m00;
|
|
Matrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6 L_5 = V_0;
|
|
float L_6 = L_5.___m10;
|
|
Matrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6 L_7 = V_0;
|
|
float L_8 = L_7.___m20;
|
|
Vector3__ctor_m376936E6B999EF1ECBE57D990A386303E2283DE0_inline((&V_1), L_4, L_6, L_8, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:428>
|
|
Matrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6 L_9 = V_0;
|
|
float L_10 = L_9.___m01;
|
|
Matrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6 L_11 = V_0;
|
|
float L_12 = L_11.___m11;
|
|
Matrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6 L_13 = V_0;
|
|
float L_14 = L_13.___m21;
|
|
Vector3__ctor_m376936E6B999EF1ECBE57D990A386303E2283DE0_inline((&V_2), L_10, L_12, L_14, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:429>
|
|
Matrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6 L_15 = V_0;
|
|
float L_16 = L_15.___m02;
|
|
Matrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6 L_17 = V_0;
|
|
float L_18 = L_17.___m12;
|
|
Matrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6 L_19 = V_0;
|
|
float L_20 = L_19.___m22;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_21;
|
|
memset((&L_21), 0, sizeof(L_21));
|
|
Vector3__ctor_m376936E6B999EF1ECBE57D990A386303E2283DE0_inline((&L_21), L_16, L_18, L_20, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:433>
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_22;
|
|
L_22 = Vector3_get_up_m128AF3FDC820BF59D5DE86D973E7DE3F20C3AEBA_inline(NULL);
|
|
V_3 = L_22;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:434>
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_23 = V_3;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_24;
|
|
L_24 = Vector3_Cross_mF93A280558BCE756D13B6CC5DCD7DE8A43148987_inline(L_21, L_23, NULL);
|
|
V_4 = L_24;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:435>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:436>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:437>
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2* L_25 = ___1_billboardTangent;
|
|
float L_26;
|
|
L_26 = Vector3_get_sqrMagnitude_m43C27DEC47C4811FB30AB474FF2131A963B66FC8_inline((&V_4), NULL);
|
|
bool L_27;
|
|
L_27 = Mathf_Approximately_m1DADD012A8FC82E11FB282501AE2EBBF9A77150B_inline(L_26, (0.0f), NULL);
|
|
if (!L_27)
|
|
{
|
|
G_B2_0 = L_25;
|
|
goto IL_007d;
|
|
}
|
|
G_B1_0 = L_25;
|
|
}
|
|
{
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_28 = V_1;
|
|
G_B3_0 = L_28;
|
|
G_B3_1 = G_B1_0;
|
|
goto IL_0084;
|
|
}
|
|
|
|
IL_007d:
|
|
{
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_29;
|
|
L_29 = Vector3_get_normalized_m736BBF65D5CDA7A18414370D15B4DFCC1E466F07_inline((&V_4), NULL);
|
|
G_B3_0 = L_29;
|
|
G_B3_1 = G_B2_0;
|
|
}
|
|
|
|
IL_0084:
|
|
{
|
|
*(Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2*)G_B3_1 = G_B3_0;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:439>
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2* L_30 = ___2_billboardNormal;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_31 = V_3;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2* L_32 = ___1_billboardTangent;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_33 = (*(Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2*)L_32);
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_34;
|
|
L_34 = Vector3_Cross_mF93A280558BCE756D13B6CC5DCD7DE8A43148987_inline(L_31, L_33, NULL);
|
|
*(Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2*)L_30 = L_34;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:440>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:441>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:442>
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2* L_35 = ___2_billboardNormal;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2* L_36 = ___2_billboardNormal;
|
|
float L_37;
|
|
L_37 = Vector3_get_sqrMagnitude_m43C27DEC47C4811FB30AB474FF2131A963B66FC8_inline(L_36, NULL);
|
|
bool L_38;
|
|
L_38 = Mathf_Approximately_m1DADD012A8FC82E11FB282501AE2EBBF9A77150B_inline(L_37, (0.0f), NULL);
|
|
if (!L_38)
|
|
{
|
|
G_B5_0 = L_35;
|
|
goto IL_00b1;
|
|
}
|
|
G_B4_0 = L_35;
|
|
}
|
|
{
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_39 = V_2;
|
|
G_B6_0 = L_39;
|
|
G_B6_1 = G_B4_0;
|
|
goto IL_00b7;
|
|
}
|
|
|
|
IL_00b1:
|
|
{
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2* L_40 = ___2_billboardNormal;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_41;
|
|
L_41 = Vector3_get_normalized_m736BBF65D5CDA7A18414370D15B4DFCC1E466F07_inline(L_40, NULL);
|
|
G_B6_0 = L_41;
|
|
G_B6_1 = G_B5_0;
|
|
}
|
|
|
|
IL_00b7:
|
|
{
|
|
*(Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2*)G_B6_1 = G_B6_0;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:445>
|
|
Vector3__ctor_m376936E6B999EF1ECBE57D990A386303E2283DE0_inline((&V_5), (0.0f), (0.0f), (1.0f), NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:447>
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_42 = V_5;
|
|
float L_43 = L_42.___x;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2* L_44 = ___1_billboardTangent;
|
|
float L_45 = L_44->___z;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_46 = V_5;
|
|
float L_47 = L_46.___z;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2* L_48 = ___1_billboardTangent;
|
|
float L_49 = L_48->___x;
|
|
V_6 = ((float)il2cpp_codegen_subtract(((float)il2cpp_codegen_multiply(L_43, L_45)), ((float)il2cpp_codegen_multiply(L_47, L_49))));
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:448>
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_50 = V_5;
|
|
float L_51 = L_50.___x;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2* L_52 = ___1_billboardTangent;
|
|
float L_53 = L_52->___x;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_54 = V_5;
|
|
float L_55 = L_54.___z;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2* L_56 = ___1_billboardTangent;
|
|
float L_57 = L_56->___z;
|
|
V_7 = ((float)il2cpp_codegen_add(((float)il2cpp_codegen_multiply(L_51, L_53)), ((float)il2cpp_codegen_multiply(L_55, L_57))));
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:449>
|
|
float* L_58 = ___3_cameraXZAngle;
|
|
float L_59 = V_6;
|
|
float L_60 = V_7;
|
|
float L_61;
|
|
L_61 = atan2f(L_59, L_60);
|
|
*((float*)L_58) = (float)L_61;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:452>
|
|
float* L_62 = ___3_cameraXZAngle;
|
|
float L_63 = *((float*)L_62);
|
|
if ((!(((float)L_63) < ((float)(0.0f)))))
|
|
{
|
|
goto IL_012e;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:453>
|
|
float* L_64 = ___3_cameraXZAngle;
|
|
float* L_65 = ___3_cameraXZAngle;
|
|
float L_66 = *((float*)L_65);
|
|
*((float*)L_64) = (float)((float)il2cpp_codegen_add(L_66, (6.28318548f)));
|
|
}
|
|
|
|
IL_012e:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:454>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 33364
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ScriptableRenderer_SetPerCameraClippingPlaneProperties_mCC96BE703D17EBBC2E5E54D60AECE0C16F0303C2 (ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892* __this, RasterCommandBuffer_t4300C4F080EA3CF43C7ACFDBD4F94EA633FE98E8* ___0_cmd, UniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7* ___1_cameraData, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:460>
|
|
RasterCommandBuffer_t4300C4F080EA3CF43C7ACFDBD4F94EA633FE98E8* L_0 = ___0_cmd;
|
|
UniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7* L_1 = ___1_cameraData;
|
|
NullCheck(L_1);
|
|
bool L_2;
|
|
L_2 = UniversalCameraData_IsCameraProjectionMatrixFlipped_mB276D4F23A10935367AF04FAAEC51AC177A5C203(L_1, NULL);
|
|
ScriptableRenderer_SetPerCameraClippingPlaneProperties_mEE27A06DB1BDFB5DA3D761251AC7E296BDE30C49(__this, L_0, (&___1_cameraData), L_2, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:462>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 33365
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ScriptableRenderer_SetPerCameraClippingPlaneProperties_mEE27A06DB1BDFB5DA3D761251AC7E296BDE30C49 (ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892* __this, RasterCommandBuffer_t4300C4F080EA3CF43C7ACFDBD4F94EA633FE98E8* ___0_cmd, UniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7** ___1_cameraData, bool ___2_isTargetFlipped, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ShaderPropertyId_tAA7B64E0C225CFD70D9837D0733FDE84DC3310D2_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
Matrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6 V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
PlaneU5BU5D_t4EEF66BAA8B0140EFFF34F6183CE7F80546592BE* V_1 = NULL;
|
|
Vector4U5BU5D_tC0F3A7115F85007510F6D173968200CD31BCF7AD* V_2 = NULL;
|
|
int32_t V_3 = 0;
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:466>
|
|
UniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7** L_0 = ___1_cameraData;
|
|
UniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7* L_1 = *((UniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7**)L_0);
|
|
bool L_2 = ___2_isTargetFlipped;
|
|
NullCheck(L_1);
|
|
Matrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6 L_3;
|
|
L_3 = UniversalCameraData_GetGPUProjectionMatrix_mE735BC88196500A60E681CB42031792EB977FB1C(L_1, L_2, 0, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:467>
|
|
UniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7** L_4 = ___1_cameraData;
|
|
UniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7* L_5 = *((UniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7**)L_4);
|
|
NullCheck(L_5);
|
|
Matrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6 L_6;
|
|
L_6 = UniversalCameraData_GetViewMatrix_mE4676E11126A0A1F10B2425B245CF438A671A21A(L_5, 0, NULL);
|
|
V_0 = L_6;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:469>
|
|
Matrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6 L_7 = V_0;
|
|
UniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7** L_8 = ___1_cameraData;
|
|
UniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7* L_9 = *((UniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7**)L_8);
|
|
NullCheck(L_9);
|
|
Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184* L_10 = L_9->___camera;
|
|
NullCheck(L_10);
|
|
bool L_11;
|
|
L_11 = Camera_get_orthographic_m904DEFC76C54DA4E30C20A62A86D5D87B7D4DD8F(L_10, NULL);
|
|
Matrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6 L_12;
|
|
L_12 = CoreMatrixUtils_MultiplyProjectionMatrix_m11D312AD592B0028034EDC7B3C188E21134C18F6(L_3, L_7, L_11, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:470>
|
|
il2cpp_codegen_runtime_class_init_inline(ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892_il2cpp_TypeInfo_var);
|
|
PlaneU5BU5D_t4EEF66BAA8B0140EFFF34F6183CE7F80546592BE* L_13 = ((ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892_StaticFields*)il2cpp_codegen_static_fields_for(ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892_il2cpp_TypeInfo_var))->___s_Planes;
|
|
V_1 = L_13;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:471>
|
|
PlaneU5BU5D_t4EEF66BAA8B0140EFFF34F6183CE7F80546592BE* L_14 = V_1;
|
|
GeometryUtility_CalculateFrustumPlanes_mEF5113B6E681CC589EE06AF63CD4BE1E744F731D(L_12, L_14, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:473>
|
|
Vector4U5BU5D_tC0F3A7115F85007510F6D173968200CD31BCF7AD* L_15 = ((ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892_StaticFields*)il2cpp_codegen_static_fields_for(ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892_il2cpp_TypeInfo_var))->___s_VectorPlanes;
|
|
V_2 = L_15;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:474>
|
|
V_3 = 0;
|
|
goto IL_0089;
|
|
}
|
|
|
|
IL_003a:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:475>
|
|
Vector4U5BU5D_tC0F3A7115F85007510F6D173968200CD31BCF7AD* L_16 = V_2;
|
|
int32_t L_17 = V_3;
|
|
PlaneU5BU5D_t4EEF66BAA8B0140EFFF34F6183CE7F80546592BE* L_18 = V_1;
|
|
int32_t L_19 = V_3;
|
|
NullCheck(L_18);
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_20;
|
|
L_20 = Plane_get_normal_mA161D94E6F7327BC111007C880B76E1731729EFB_inline(((L_18)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_19))), NULL);
|
|
float L_21 = L_20.___x;
|
|
PlaneU5BU5D_t4EEF66BAA8B0140EFFF34F6183CE7F80546592BE* L_22 = V_1;
|
|
int32_t L_23 = V_3;
|
|
NullCheck(L_22);
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_24;
|
|
L_24 = Plane_get_normal_mA161D94E6F7327BC111007C880B76E1731729EFB_inline(((L_22)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_23))), NULL);
|
|
float L_25 = L_24.___y;
|
|
PlaneU5BU5D_t4EEF66BAA8B0140EFFF34F6183CE7F80546592BE* L_26 = V_1;
|
|
int32_t L_27 = V_3;
|
|
NullCheck(L_26);
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_28;
|
|
L_28 = Plane_get_normal_mA161D94E6F7327BC111007C880B76E1731729EFB_inline(((L_26)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_27))), NULL);
|
|
float L_29 = L_28.___z;
|
|
PlaneU5BU5D_t4EEF66BAA8B0140EFFF34F6183CE7F80546592BE* L_30 = V_1;
|
|
int32_t L_31 = V_3;
|
|
NullCheck(L_30);
|
|
float L_32;
|
|
L_32 = Plane_get_distance_m2D50D2C23E2D9438272F876878015B38DAF5ED30_inline(((L_30)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_31))), NULL);
|
|
Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3 L_33;
|
|
memset((&L_33), 0, sizeof(L_33));
|
|
Vector4__ctor_m96B2CD8B862B271F513AF0BDC2EABD58E4DBC813_inline((&L_33), L_21, L_25, L_29, L_32, NULL);
|
|
NullCheck(L_16);
|
|
(L_16)->SetAt(static_cast<il2cpp_array_size_t>(L_17), (Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3)L_33);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:474>
|
|
int32_t L_34 = V_3;
|
|
V_3 = ((int32_t)il2cpp_codegen_add(L_34, 1));
|
|
}
|
|
|
|
IL_0089:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:474>
|
|
int32_t L_35 = V_3;
|
|
PlaneU5BU5D_t4EEF66BAA8B0140EFFF34F6183CE7F80546592BE* L_36 = V_1;
|
|
NullCheck(L_36);
|
|
if ((((int32_t)L_35) < ((int32_t)((int32_t)(((RuntimeArray*)L_36)->max_length)))))
|
|
{
|
|
goto IL_003a;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:477>
|
|
RasterCommandBuffer_t4300C4F080EA3CF43C7ACFDBD4F94EA633FE98E8* L_37 = ___0_cmd;
|
|
il2cpp_codegen_runtime_class_init_inline(ShaderPropertyId_tAA7B64E0C225CFD70D9837D0733FDE84DC3310D2_il2cpp_TypeInfo_var);
|
|
int32_t L_38 = ((ShaderPropertyId_tAA7B64E0C225CFD70D9837D0733FDE84DC3310D2_StaticFields*)il2cpp_codegen_static_fields_for(ShaderPropertyId_tAA7B64E0C225CFD70D9837D0733FDE84DC3310D2_il2cpp_TypeInfo_var))->___cameraWorldClipPlanes;
|
|
Vector4U5BU5D_tC0F3A7115F85007510F6D173968200CD31BCF7AD* L_39 = V_2;
|
|
NullCheck(L_37);
|
|
RasterCommandBuffer_SetGlobalVectorArray_mFBD8CEECFF234DD05410B44D850F0F50CB72406F(L_37, L_38, L_39, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:478>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 33366
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ScriptableRenderer_SetShaderTimeValues_mCB3E5C8B57B74BBBDD10FBC97067DCEB543D9B81 (RuntimeObject* ___0_cmd, float ___1_time, float ___2_deltaTime, float ___3_smoothDeltaTime, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IBaseCommandBuffer_t16CFD34D15BD9536318EF2D0438EE888A2B7EAA0_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ShaderPropertyId_tAA7B64E0C225CFD70D9837D0733FDE84DC3310D2_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ShaderUtils_t98A7604B796D0A8198AFF1C4BFBB532B8D18C531_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
float V_0 = 0.0f;
|
|
float V_1 = 0.0f;
|
|
float V_2 = 0.0f;
|
|
float V_3 = 0.0f;
|
|
Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3 V_4;
|
|
memset((&V_4), 0, sizeof(V_4));
|
|
Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3 V_5;
|
|
memset((&V_5), 0, sizeof(V_5));
|
|
Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3 V_6;
|
|
memset((&V_6), 0, sizeof(V_6));
|
|
Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3 V_7;
|
|
memset((&V_7), 0, sizeof(V_7));
|
|
Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3 V_8;
|
|
memset((&V_8), 0, sizeof(V_8));
|
|
Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3 V_9;
|
|
memset((&V_9), 0, sizeof(V_9));
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:489>
|
|
float L_0 = ___1_time;
|
|
V_0 = ((float)(L_0/(8.0f)));
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:490>
|
|
float L_1 = ___1_time;
|
|
V_1 = ((float)(L_1/(4.0f)));
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:491>
|
|
float L_2 = ___1_time;
|
|
V_2 = ((float)(L_2/(2.0f)));
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:493>
|
|
float L_3 = ___1_time;
|
|
il2cpp_codegen_runtime_class_init_inline(ShaderUtils_t98A7604B796D0A8198AFF1C4BFBB532B8D18C531_il2cpp_TypeInfo_var);
|
|
float L_4;
|
|
L_4 = ShaderUtils_get_PersistentDeltaTime_m86B550AC0EF170F909F381C2E4CB55E76181226F(NULL);
|
|
V_3 = ((float)il2cpp_codegen_subtract(L_3, L_4));
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:496>
|
|
float L_5 = ___1_time;
|
|
Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3 L_6;
|
|
memset((&L_6), 0, sizeof(L_6));
|
|
Vector4__ctor_m96B2CD8B862B271F513AF0BDC2EABD58E4DBC813_inline((&L_6), (0.0500000007f), (1.0f), (2.0f), (3.0f), NULL);
|
|
Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3 L_7;
|
|
L_7 = Vector4_op_Multiply_m59B8215B9A49709B9D299317ECB152C316625559_inline(L_5, L_6, NULL);
|
|
V_4 = L_7;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:497>
|
|
float L_8 = V_0;
|
|
float L_9;
|
|
L_9 = sinf(L_8);
|
|
float L_10 = V_1;
|
|
float L_11;
|
|
L_11 = sinf(L_10);
|
|
float L_12 = V_2;
|
|
float L_13;
|
|
L_13 = sinf(L_12);
|
|
float L_14 = ___1_time;
|
|
float L_15;
|
|
L_15 = sinf(L_14);
|
|
Vector4__ctor_m96B2CD8B862B271F513AF0BDC2EABD58E4DBC813_inline((&V_5), L_9, L_11, L_13, L_15, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:498>
|
|
float L_16 = V_0;
|
|
float L_17;
|
|
L_17 = cosf(L_16);
|
|
float L_18 = V_1;
|
|
float L_19;
|
|
L_19 = cosf(L_18);
|
|
float L_20 = V_2;
|
|
float L_21;
|
|
L_21 = cosf(L_20);
|
|
float L_22 = ___1_time;
|
|
float L_23;
|
|
L_23 = cosf(L_22);
|
|
Vector4__ctor_m96B2CD8B862B271F513AF0BDC2EABD58E4DBC813_inline((&V_6), L_17, L_19, L_21, L_23, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:499>
|
|
float L_24 = ___2_deltaTime;
|
|
float L_25 = ___2_deltaTime;
|
|
float L_26 = ___3_smoothDeltaTime;
|
|
float L_27 = ___3_smoothDeltaTime;
|
|
Vector4__ctor_m96B2CD8B862B271F513AF0BDC2EABD58E4DBC813_inline((&V_7), L_24, ((float)((1.0f)/L_25)), L_26, ((float)((1.0f)/L_27)), NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:500>
|
|
float L_28 = ___1_time;
|
|
float L_29 = ___1_time;
|
|
float L_30;
|
|
L_30 = sinf(L_29);
|
|
float L_31 = ___1_time;
|
|
float L_32;
|
|
L_32 = cosf(L_31);
|
|
Vector4__ctor_m96B2CD8B862B271F513AF0BDC2EABD58E4DBC813_inline((&V_8), L_28, L_30, L_32, (0.0f), NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:501>
|
|
float L_33 = V_3;
|
|
float L_34 = V_3;
|
|
float L_35;
|
|
L_35 = sinf(L_34);
|
|
float L_36 = V_3;
|
|
float L_37;
|
|
L_37 = cosf(L_36);
|
|
Vector4__ctor_m96B2CD8B862B271F513AF0BDC2EABD58E4DBC813_inline((&V_9), L_33, L_35, L_37, (0.0f), NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:503>
|
|
RuntimeObject* L_38 = ___0_cmd;
|
|
il2cpp_codegen_runtime_class_init_inline(ShaderPropertyId_tAA7B64E0C225CFD70D9837D0733FDE84DC3310D2_il2cpp_TypeInfo_var);
|
|
int32_t L_39 = ((ShaderPropertyId_tAA7B64E0C225CFD70D9837D0733FDE84DC3310D2_StaticFields*)il2cpp_codegen_static_fields_for(ShaderPropertyId_tAA7B64E0C225CFD70D9837D0733FDE84DC3310D2_il2cpp_TypeInfo_var))->___time;
|
|
Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3 L_40 = V_4;
|
|
NullCheck(L_38);
|
|
InterfaceActionInvoker2< int32_t, Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3 >::Invoke(7, IBaseCommandBuffer_t16CFD34D15BD9536318EF2D0438EE888A2B7EAA0_il2cpp_TypeInfo_var, L_38, L_39, L_40);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:504>
|
|
RuntimeObject* L_41 = ___0_cmd;
|
|
int32_t L_42 = ((ShaderPropertyId_tAA7B64E0C225CFD70D9837D0733FDE84DC3310D2_StaticFields*)il2cpp_codegen_static_fields_for(ShaderPropertyId_tAA7B64E0C225CFD70D9837D0733FDE84DC3310D2_il2cpp_TypeInfo_var))->___sinTime;
|
|
Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3 L_43 = V_5;
|
|
NullCheck(L_41);
|
|
InterfaceActionInvoker2< int32_t, Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3 >::Invoke(7, IBaseCommandBuffer_t16CFD34D15BD9536318EF2D0438EE888A2B7EAA0_il2cpp_TypeInfo_var, L_41, L_42, L_43);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:505>
|
|
RuntimeObject* L_44 = ___0_cmd;
|
|
int32_t L_45 = ((ShaderPropertyId_tAA7B64E0C225CFD70D9837D0733FDE84DC3310D2_StaticFields*)il2cpp_codegen_static_fields_for(ShaderPropertyId_tAA7B64E0C225CFD70D9837D0733FDE84DC3310D2_il2cpp_TypeInfo_var))->___cosTime;
|
|
Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3 L_46 = V_6;
|
|
NullCheck(L_44);
|
|
InterfaceActionInvoker2< int32_t, Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3 >::Invoke(7, IBaseCommandBuffer_t16CFD34D15BD9536318EF2D0438EE888A2B7EAA0_il2cpp_TypeInfo_var, L_44, L_45, L_46);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:506>
|
|
RuntimeObject* L_47 = ___0_cmd;
|
|
int32_t L_48 = ((ShaderPropertyId_tAA7B64E0C225CFD70D9837D0733FDE84DC3310D2_StaticFields*)il2cpp_codegen_static_fields_for(ShaderPropertyId_tAA7B64E0C225CFD70D9837D0733FDE84DC3310D2_il2cpp_TypeInfo_var))->___deltaTime;
|
|
Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3 L_49 = V_7;
|
|
NullCheck(L_47);
|
|
InterfaceActionInvoker2< int32_t, Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3 >::Invoke(7, IBaseCommandBuffer_t16CFD34D15BD9536318EF2D0438EE888A2B7EAA0_il2cpp_TypeInfo_var, L_47, L_48, L_49);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:507>
|
|
RuntimeObject* L_50 = ___0_cmd;
|
|
int32_t L_51 = ((ShaderPropertyId_tAA7B64E0C225CFD70D9837D0733FDE84DC3310D2_StaticFields*)il2cpp_codegen_static_fields_for(ShaderPropertyId_tAA7B64E0C225CFD70D9837D0733FDE84DC3310D2_il2cpp_TypeInfo_var))->___timeParameters;
|
|
Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3 L_52 = V_8;
|
|
NullCheck(L_50);
|
|
InterfaceActionInvoker2< int32_t, Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3 >::Invoke(7, IBaseCommandBuffer_t16CFD34D15BD9536318EF2D0438EE888A2B7EAA0_il2cpp_TypeInfo_var, L_50, L_51, L_52);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:508>
|
|
RuntimeObject* L_53 = ___0_cmd;
|
|
int32_t L_54 = ((ShaderPropertyId_tAA7B64E0C225CFD70D9837D0733FDE84DC3310D2_StaticFields*)il2cpp_codegen_static_fields_for(ShaderPropertyId_tAA7B64E0C225CFD70D9837D0733FDE84DC3310D2_il2cpp_TypeInfo_var))->___lastTimeParameters;
|
|
Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3 L_55 = V_9;
|
|
NullCheck(L_53);
|
|
InterfaceActionInvoker2< int32_t, Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3 >::Invoke(7, IBaseCommandBuffer_t16CFD34D15BD9536318EF2D0438EE888A2B7EAA0_il2cpp_TypeInfo_var, L_53, L_54, L_55);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:509>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 33367
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RenderTargetIdentifier_tA528663AC6EB3911D8E91AA40F7070FA5455442B ScriptableRenderer_get_cameraColorTarget_mC2C0353A178726FC82413A458A34496280AFB4D4 (ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892* __this, const RuntimeMethod* method)
|
|
{
|
|
RenderTargetIdentifier_tA528663AC6EB3911D8E91AA40F7070FA5455442B V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:517>
|
|
NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A* L_0 = (NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A_il2cpp_TypeInfo_var)));
|
|
NotSupportedException__ctor_mE174750CF0247BBB47544FFD71D66BB89630945B(L_0, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral2FA4F2CAEB6294CFB2889F8C547B8B6865A10962)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ScriptableRenderer_get_cameraColorTarget_mC2C0353A178726FC82413A458A34496280AFB4D4_RuntimeMethod_var)));
|
|
}
|
|
}
|
|
// Method Definition Index: 33368
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B* ScriptableRenderer_get_cameraColorTargetHandle_mB0B32CF50F711E4B41822F4F6BBCE2091C608A6D (ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Debug_t8394C7EEAECA3689C2C9B9DE9C7166D73596276F_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral72A06BD636B90F4308118B8C21193457044DE20E);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:529>
|
|
bool L_0 = __this->___m_IsPipelineExecuting;
|
|
if (L_0)
|
|
{
|
|
goto IL_0014;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:531>
|
|
il2cpp_codegen_runtime_class_init_inline(Debug_t8394C7EEAECA3689C2C9B9DE9C7166D73596276F_il2cpp_TypeInfo_var);
|
|
Debug_LogError_mB00B2B4468EF3CAF041B038D840820FB84C924B2(_stringLiteral72A06BD636B90F4308118B8C21193457044DE20E, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:532>
|
|
return (RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B*)NULL;
|
|
}
|
|
|
|
IL_0014:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:535>
|
|
RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B* L_1 = __this->___m_CameraColorTarget;
|
|
return L_1;
|
|
}
|
|
}
|
|
// Method Definition Index: 33369
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B* ScriptableRenderer_GetCameraColorFrontBuffer_m2426E8B13946CD585B6B5FDAC42E9805F38F257D (ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892* __this, CommandBuffer_tB56007DC84EF56296C325EC32DD12AC1E3DC91F7* ___0_cmd, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:549>
|
|
return (RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B*)NULL;
|
|
}
|
|
}
|
|
// Method Definition Index: 33370
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B* ScriptableRenderer_GetCameraColorBackBuffer_mDE394A11E19395F217933E893C5FB9321D109721 (ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892* __this, CommandBuffer_tB56007DC84EF56296C325EC32DD12AC1E3DC91F7* ___0_cmd, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:562>
|
|
return (RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B*)NULL;
|
|
}
|
|
}
|
|
// Method Definition Index: 33371
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RenderTargetIdentifier_tA528663AC6EB3911D8E91AA40F7070FA5455442B ScriptableRenderer_get_cameraDepthTarget_mA937C73D921A8583451EC2DBE0D83D3B887DDD00 (ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892* __this, const RuntimeMethod* method)
|
|
{
|
|
RenderTargetIdentifier_tA528663AC6EB3911D8E91AA40F7070FA5455442B V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:571>
|
|
NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A* L_0 = (NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A_il2cpp_TypeInfo_var)));
|
|
NotSupportedException__ctor_mE174750CF0247BBB47544FFD71D66BB89630945B(L_0, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral1B8AEB3C3C340B47432828290CE03122C0D2AE19)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ScriptableRenderer_get_cameraDepthTarget_mA937C73D921A8583451EC2DBE0D83D3B887DDD00_RuntimeMethod_var)));
|
|
}
|
|
}
|
|
// Method Definition Index: 33372
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B* ScriptableRenderer_get_cameraDepthTargetHandle_m105A4BA47F734199554838F588A5101E2591988E (ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Debug_t8394C7EEAECA3689C2C9B9DE9C7166D73596276F_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral7AAE0B0FFEBC761E439137CC7E680A604F8C38AC);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:583>
|
|
bool L_0 = __this->___m_IsPipelineExecuting;
|
|
if (L_0)
|
|
{
|
|
goto IL_0014;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:585>
|
|
il2cpp_codegen_runtime_class_init_inline(Debug_t8394C7EEAECA3689C2C9B9DE9C7166D73596276F_il2cpp_TypeInfo_var);
|
|
Debug_LogError_mB00B2B4468EF3CAF041B038D840820FB84C924B2(_stringLiteral7AAE0B0FFEBC761E439137CC7E680A604F8C38AC, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:586>
|
|
return (RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B*)NULL;
|
|
}
|
|
|
|
IL_0014:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:589>
|
|
RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B* L_1 = __this->___m_CameraDepthTarget;
|
|
return L_1;
|
|
}
|
|
}
|
|
// Method Definition Index: 33373
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR List_1_t2121653FB628940E808D105AD2C17E0F20AFB3A6* ScriptableRenderer_get_rendererFeatures_m2473415AE63D3735ACBD7BF7CAEA7CB0315A7057 (ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:599>
|
|
List_1_t2121653FB628940E808D105AD2C17E0F20AFB3A6* L_0 = __this->___m_RendererFeatures;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 33374
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR List_1_t2E485E650BF1E41358CE56A69323E183C5A89CB6* ScriptableRenderer_get_activeRenderPassQueue_m3DA13EE251E757FC42DAE103A487C3F1562A850F (ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:608>
|
|
List_1_t2E485E650BF1E41358CE56A69323E183C5A89CB6* L_0 = __this->___m_ActiveRenderPassQueue;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 33375
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RenderingFeatures_t31044CBDCDC2F05194BFA2A2122FBD937D78A371* ScriptableRenderer_get_supportedRenderingFeatures_m8866E002AF2D9D7C3E70946193B656850A4FC56F (ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:616>
|
|
RenderingFeatures_t31044CBDCDC2F05194BFA2A2122FBD937D78A371* L_0 = __this->___U3CsupportedRenderingFeaturesU3Ek__BackingField;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 33376
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ScriptableRenderer_set_supportedRenderingFeatures_m79C5FBB6462F1D21874A91D7FFD54F5A1D05D472 (ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892* __this, RenderingFeatures_t31044CBDCDC2F05194BFA2A2122FBD937D78A371* ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:616>
|
|
RenderingFeatures_t31044CBDCDC2F05194BFA2A2122FBD937D78A371* L_0 = ___0_value;
|
|
__this->___U3CsupportedRenderingFeaturesU3Ek__BackingField = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CsupportedRenderingFeaturesU3Ek__BackingField), (void*)L_0);
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 33377
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR GraphicsDeviceTypeU5BU5D_t4322565F239068C66BF47053B83BD6A9A9D16408* ScriptableRenderer_get_unsupportedGraphicsDeviceTypes_m2CB1CF6F80ACAA47556E9A2AEAEC2E07A19FB6A3 (ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:623>
|
|
GraphicsDeviceTypeU5BU5D_t4322565F239068C66BF47053B83BD6A9A9D16408* L_0 = __this->___U3CunsupportedGraphicsDeviceTypesU3Ek__BackingField;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 33378
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ScriptableRenderer_set_unsupportedGraphicsDeviceTypes_m2CEC5FBF8DECEEAF9F9B0039FB0EA554ECC1C2DA (ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892* __this, GraphicsDeviceTypeU5BU5D_t4322565F239068C66BF47053B83BD6A9A9D16408* ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:623>
|
|
GraphicsDeviceTypeU5BU5D_t4322565F239068C66BF47053B83BD6A9A9D16408* L_0 = ___0_value;
|
|
__this->___U3CunsupportedGraphicsDeviceTypesU3Ek__BackingField = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CunsupportedGraphicsDeviceTypesU3Ek__BackingField), (void*)L_0);
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 33379
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ContextContainer_t384E08F63FABEFF6A7F1A753F5EF02699DAD414C* ScriptableRenderer_get_frameData_m1E575C1F7F79B65139F8AD75EB4B40BB4113714A (ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:676>
|
|
ContextContainer_t384E08F63FABEFF6A7F1A753F5EF02699DAD414C* L_0 = __this->___m_frameData;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 33380
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ScriptableRenderer_get_useDepthPriming_m5E06E033D2AC8257F13E47CB835E2C5C97D9099F (ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:723>
|
|
bool L_0 = __this->___U3CuseDepthPrimingU3Ek__BackingField;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 33381
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ScriptableRenderer_set_useDepthPriming_mE19B00F9BB6CBA3158241891FF40EEC1B842486C (ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892* __this, bool ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:723>
|
|
bool L_0 = ___0_value;
|
|
__this->___U3CuseDepthPrimingU3Ek__BackingField = L_0;
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 33382
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ScriptableRenderer_get_stripShadowsOffVariants_mEC78AA6E4F4353DEF4DA00EB6E2BF7A55CEE322F (ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:725>
|
|
bool L_0 = __this->___U3CstripShadowsOffVariantsU3Ek__BackingField;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 33383
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ScriptableRenderer_set_stripShadowsOffVariants_m6D4243EB800963DAA17E2E6F3BD9C705958B818A (ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892* __this, bool ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:725>
|
|
bool L_0 = ___0_value;
|
|
__this->___U3CstripShadowsOffVariantsU3Ek__BackingField = L_0;
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 33384
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ScriptableRenderer_get_stripAdditionalLightOffVariants_mAE9AFBDA4F4A08090587F1DD1D4C241FB47D7129 (ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:727>
|
|
bool L_0 = __this->___U3CstripAdditionalLightOffVariantsU3Ek__BackingField;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 33385
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ScriptableRenderer_set_stripAdditionalLightOffVariants_m6B6A95E1E7B6C91B5054F34994BA5833FAD77C63 (ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892* __this, bool ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:727>
|
|
bool L_0 = ___0_value;
|
|
__this->___U3CstripAdditionalLightOffVariantsU3Ek__BackingField = L_0;
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 33386
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ScriptableRenderer__ctor_m9E5F5E400D4107D257C1663CB254BDEE3BCA1490 (ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892* __this, ScriptableRendererData_t9005CE645D4881FA4431E52EDC7678203632CAA7* ___0_data, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AttachmentDescriptorU5BU5D_tC70107EBD955FE94BA31C7FDC146069EF9C547C1_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ContextContainer_t384E08F63FABEFF6A7F1A753F5EF02699DAD414C_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2__ctor_m05ECDADE8596B7510223CB2621AC5534E7AB2A9C_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2__ctor_m2927741406FF3DA98E94B375416763714607683B_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_tB41FAC88F07BAB98D6D373F7C94FB0496D1BDA32_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_tCB9019887EB0254D4745B0724BC12327C5B63792_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_Dispose_mEDFBA1A78C8BF94339410CCE79ED2B8947023112_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_MoveNext_m699A9E1D941711453887F76F5DD8E797A46A5D48_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_get_Current_m65E52814F3289E84E69A7324ED46026114A0FFAE_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&GraphicsDeviceTypeU5BU5D_t4322565F239068C66BF47053B83BD6A9A9D16408_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Hash128U5BU5D_tB104E7247B842648E447B7FCF4748077DC1F8C98_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Add_m9C754466AA0D67659DEFB20BF59FF7355899A32A_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Clear_m465CCAF440EF34D44065E6C2BE1D68215EAD505E_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_GetEnumerator_m0ED7F868DFBF0B8A5F2C3A7252C548079FD8BB4F_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1__ctor_m6FE38FE18A0E8C60C49D16C144BBCAC6BF7D7CEB_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1__ctor_mB5256BBA70CD858B15C25CE0E77EC59F6479EC82_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_t2121653FB628940E808D105AD2C17E0F20AFB3A6_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_t2E485E650BF1E41358CE56A69323E183C5A89CB6_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ProfilingSampler_t420D4672EDB44E0EF980B31ADFD9E5747200FECE_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RenderBufferStoreActionU5BU5D_tFEA8F5DD460573EA9F35FBEC5727D1804C5DCBF5_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RenderingFeatures_t31044CBDCDC2F05194BFA2A2122FBD937D78A371_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RenderingUtils_t4E40200449A82FA3A172A563C490DF11FADA2BE1_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UniversalRenderPipeline_t54B4737DC500C08628C5BE283D8C583C14DED98F_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralA7AA6ED62E9E72EBAEB29250526B089AD3A65794);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
Enumerator_tAE036FA290FC0CC475BEF0D5890C759A8DA9B786 V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
ScriptableRendererFeature_tF2ED08AD2498105378D4DAB0386A0F8A144EF4C6* V_1 = NULL;
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:18>
|
|
Dictionary_2_tCB9019887EB0254D4745B0724BC12327C5B63792* L_0 = (Dictionary_2_tCB9019887EB0254D4745B0724BC12327C5B63792*)il2cpp_codegen_object_new(Dictionary_2_tCB9019887EB0254D4745B0724BC12327C5B63792_il2cpp_TypeInfo_var);
|
|
Dictionary_2__ctor_m05ECDADE8596B7510223CB2621AC5534E7AB2A9C(L_0, ((int32_t)10), Dictionary_2__ctor_m05ECDADE8596B7510223CB2621AC5534E7AB2A9C_RuntimeMethod_var);
|
|
__this->___m_MergeableRenderPassesMap = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_MergeableRenderPassesMap), (void*)L_0);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:21>
|
|
Hash128U5BU5D_tB104E7247B842648E447B7FCF4748077DC1F8C98* L_1 = (Hash128U5BU5D_tB104E7247B842648E447B7FCF4748077DC1F8C98*)(Hash128U5BU5D_tB104E7247B842648E447B7FCF4748077DC1F8C98*)SZArrayNew(Hash128U5BU5D_tB104E7247B842648E447B7FCF4748077DC1F8C98_il2cpp_TypeInfo_var, (uint32_t)((int32_t)20));
|
|
__this->___m_PassIndexToPassHash = L_1;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_PassIndexToPassHash), (void*)L_1);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:22>
|
|
Dictionary_2_tB41FAC88F07BAB98D6D373F7C94FB0496D1BDA32* L_2 = (Dictionary_2_tB41FAC88F07BAB98D6D373F7C94FB0496D1BDA32*)il2cpp_codegen_object_new(Dictionary_2_tB41FAC88F07BAB98D6D373F7C94FB0496D1BDA32_il2cpp_TypeInfo_var);
|
|
Dictionary_2__ctor_m2927741406FF3DA98E94B375416763714607683B(L_2, ((int32_t)10), Dictionary_2__ctor_m2927741406FF3DA98E94B375416763714607683B_RuntimeMethod_var);
|
|
__this->___m_RenderPassesAttachmentCount = L_2;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_RenderPassesAttachmentCount), (void*)L_2);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:27>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:28>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:29>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:30>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:31>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:32>
|
|
AttachmentDescriptorU5BU5D_tC70107EBD955FE94BA31C7FDC146069EF9C547C1* L_3 = (AttachmentDescriptorU5BU5D_tC70107EBD955FE94BA31C7FDC146069EF9C547C1*)(AttachmentDescriptorU5BU5D_tC70107EBD955FE94BA31C7FDC146069EF9C547C1*)SZArrayNew(AttachmentDescriptorU5BU5D_tC70107EBD955FE94BA31C7FDC146069EF9C547C1_il2cpp_TypeInfo_var, (uint32_t)8);
|
|
AttachmentDescriptorU5BU5D_tC70107EBD955FE94BA31C7FDC146069EF9C547C1* L_4 = L_3;
|
|
il2cpp_codegen_runtime_class_init_inline(RenderingUtils_t4E40200449A82FA3A172A563C490DF11FADA2BE1_il2cpp_TypeInfo_var);
|
|
AttachmentDescriptor_tBAC9B26B50BB0838C5C0CC22BB296F9DFF41276E L_5;
|
|
L_5 = RenderingUtils_get_emptyAttachment_m2AF0A5A339A35504D7FA8DD4B3400ACF5F449F38_inline(NULL);
|
|
NullCheck(L_4);
|
|
(L_4)->SetAt(static_cast<il2cpp_array_size_t>(0), (AttachmentDescriptor_tBAC9B26B50BB0838C5C0CC22BB296F9DFF41276E)L_5);
|
|
AttachmentDescriptorU5BU5D_tC70107EBD955FE94BA31C7FDC146069EF9C547C1* L_6 = L_4;
|
|
AttachmentDescriptor_tBAC9B26B50BB0838C5C0CC22BB296F9DFF41276E L_7;
|
|
L_7 = RenderingUtils_get_emptyAttachment_m2AF0A5A339A35504D7FA8DD4B3400ACF5F449F38_inline(NULL);
|
|
NullCheck(L_6);
|
|
(L_6)->SetAt(static_cast<il2cpp_array_size_t>(1), (AttachmentDescriptor_tBAC9B26B50BB0838C5C0CC22BB296F9DFF41276E)L_7);
|
|
AttachmentDescriptorU5BU5D_tC70107EBD955FE94BA31C7FDC146069EF9C547C1* L_8 = L_6;
|
|
AttachmentDescriptor_tBAC9B26B50BB0838C5C0CC22BB296F9DFF41276E L_9;
|
|
L_9 = RenderingUtils_get_emptyAttachment_m2AF0A5A339A35504D7FA8DD4B3400ACF5F449F38_inline(NULL);
|
|
NullCheck(L_8);
|
|
(L_8)->SetAt(static_cast<il2cpp_array_size_t>(2), (AttachmentDescriptor_tBAC9B26B50BB0838C5C0CC22BB296F9DFF41276E)L_9);
|
|
AttachmentDescriptorU5BU5D_tC70107EBD955FE94BA31C7FDC146069EF9C547C1* L_10 = L_8;
|
|
AttachmentDescriptor_tBAC9B26B50BB0838C5C0CC22BB296F9DFF41276E L_11;
|
|
L_11 = RenderingUtils_get_emptyAttachment_m2AF0A5A339A35504D7FA8DD4B3400ACF5F449F38_inline(NULL);
|
|
NullCheck(L_10);
|
|
(L_10)->SetAt(static_cast<il2cpp_array_size_t>(3), (AttachmentDescriptor_tBAC9B26B50BB0838C5C0CC22BB296F9DFF41276E)L_11);
|
|
AttachmentDescriptorU5BU5D_tC70107EBD955FE94BA31C7FDC146069EF9C547C1* L_12 = L_10;
|
|
AttachmentDescriptor_tBAC9B26B50BB0838C5C0CC22BB296F9DFF41276E L_13;
|
|
L_13 = RenderingUtils_get_emptyAttachment_m2AF0A5A339A35504D7FA8DD4B3400ACF5F449F38_inline(NULL);
|
|
NullCheck(L_12);
|
|
(L_12)->SetAt(static_cast<il2cpp_array_size_t>(4), (AttachmentDescriptor_tBAC9B26B50BB0838C5C0CC22BB296F9DFF41276E)L_13);
|
|
AttachmentDescriptorU5BU5D_tC70107EBD955FE94BA31C7FDC146069EF9C547C1* L_14 = L_12;
|
|
AttachmentDescriptor_tBAC9B26B50BB0838C5C0CC22BB296F9DFF41276E L_15;
|
|
L_15 = RenderingUtils_get_emptyAttachment_m2AF0A5A339A35504D7FA8DD4B3400ACF5F449F38_inline(NULL);
|
|
NullCheck(L_14);
|
|
(L_14)->SetAt(static_cast<il2cpp_array_size_t>(5), (AttachmentDescriptor_tBAC9B26B50BB0838C5C0CC22BB296F9DFF41276E)L_15);
|
|
AttachmentDescriptorU5BU5D_tC70107EBD955FE94BA31C7FDC146069EF9C547C1* L_16 = L_14;
|
|
AttachmentDescriptor_tBAC9B26B50BB0838C5C0CC22BB296F9DFF41276E L_17;
|
|
L_17 = RenderingUtils_get_emptyAttachment_m2AF0A5A339A35504D7FA8DD4B3400ACF5F449F38_inline(NULL);
|
|
NullCheck(L_16);
|
|
(L_16)->SetAt(static_cast<il2cpp_array_size_t>(6), (AttachmentDescriptor_tBAC9B26B50BB0838C5C0CC22BB296F9DFF41276E)L_17);
|
|
AttachmentDescriptorU5BU5D_tC70107EBD955FE94BA31C7FDC146069EF9C547C1* L_18 = L_16;
|
|
AttachmentDescriptor_tBAC9B26B50BB0838C5C0CC22BB296F9DFF41276E L_19;
|
|
L_19 = RenderingUtils_get_emptyAttachment_m2AF0A5A339A35504D7FA8DD4B3400ACF5F449F38_inline(NULL);
|
|
NullCheck(L_18);
|
|
(L_18)->SetAt(static_cast<il2cpp_array_size_t>(7), (AttachmentDescriptor_tBAC9B26B50BB0838C5C0CC22BB296F9DFF41276E)L_19);
|
|
__this->___m_ActiveColorAttachmentDescriptors = L_18;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_ActiveColorAttachmentDescriptors), (void*)L_18);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:35>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:36>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:37>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:38>
|
|
BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* L_20 = (BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4*)(BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4*)SZArrayNew(BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4_il2cpp_TypeInfo_var, (uint32_t)8);
|
|
__this->___m_IsActiveColorAttachmentTransient = L_20;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_IsActiveColorAttachmentTransient), (void*)L_20);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:40>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:41>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:42>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:43>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/NativeRenderPass.cs:44>
|
|
RenderBufferStoreActionU5BU5D_tFEA8F5DD460573EA9F35FBEC5727D1804C5DCBF5* L_21 = (RenderBufferStoreActionU5BU5D_tFEA8F5DD460573EA9F35FBEC5727D1804C5DCBF5*)(RenderBufferStoreActionU5BU5D_tFEA8F5DD460573EA9F35FBEC5727D1804C5DCBF5*)SZArrayNew(RenderBufferStoreActionU5BU5D_tFEA8F5DD460573EA9F35FBEC5727D1804C5DCBF5_il2cpp_TypeInfo_var, (uint32_t)8);
|
|
__this->___m_FinalColorStoreAction = L_21;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_FinalColorStoreAction), (void*)L_21);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:154>
|
|
__this->___hasReleasedRTs = (bool)1;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:616>
|
|
RenderingFeatures_t31044CBDCDC2F05194BFA2A2122FBD937D78A371* L_22 = (RenderingFeatures_t31044CBDCDC2F05194BFA2A2122FBD937D78A371*)il2cpp_codegen_object_new(RenderingFeatures_t31044CBDCDC2F05194BFA2A2122FBD937D78A371_il2cpp_TypeInfo_var);
|
|
RenderingFeatures__ctor_m63CA9CABFDC57D4CBEA1205C070F14CC83FF8C0F(L_22, NULL);
|
|
__this->___U3CsupportedRenderingFeaturesU3Ek__BackingField = L_22;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CsupportedRenderingFeaturesU3Ek__BackingField), (void*)L_22);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:623>
|
|
GraphicsDeviceTypeU5BU5D_t4322565F239068C66BF47053B83BD6A9A9D16408* L_23 = (GraphicsDeviceTypeU5BU5D_t4322565F239068C66BF47053B83BD6A9A9D16408*)(GraphicsDeviceTypeU5BU5D_t4322565F239068C66BF47053B83BD6A9A9D16408*)SZArrayNew(GraphicsDeviceTypeU5BU5D_t4322565F239068C66BF47053B83BD6A9A9D16408_il2cpp_TypeInfo_var, (uint32_t)0);
|
|
__this->___U3CunsupportedGraphicsDeviceTypesU3Ek__BackingField = L_23;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CunsupportedGraphicsDeviceTypesU3Ek__BackingField), (void*)L_23);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:651>
|
|
List_1_t2E485E650BF1E41358CE56A69323E183C5A89CB6* L_24 = (List_1_t2E485E650BF1E41358CE56A69323E183C5A89CB6*)il2cpp_codegen_object_new(List_1_t2E485E650BF1E41358CE56A69323E183C5A89CB6_il2cpp_TypeInfo_var);
|
|
List_1__ctor_m6FE38FE18A0E8C60C49D16C144BBCAC6BF7D7CEB(L_24, ((int32_t)32), List_1__ctor_m6FE38FE18A0E8C60C49D16C144BBCAC6BF7D7CEB_RuntimeMethod_var);
|
|
__this->___m_ActiveRenderPassQueue = L_24;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_ActiveRenderPassQueue), (void*)L_24);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:652>
|
|
List_1_t2121653FB628940E808D105AD2C17E0F20AFB3A6* L_25 = (List_1_t2121653FB628940E808D105AD2C17E0F20AFB3A6*)il2cpp_codegen_object_new(List_1_t2121653FB628940E808D105AD2C17E0F20AFB3A6_il2cpp_TypeInfo_var);
|
|
List_1__ctor_mB5256BBA70CD858B15C25CE0E77EC59F6479EC82(L_25, ((int32_t)10), List_1__ctor_mB5256BBA70CD858B15C25CE0E77EC59F6479EC82_RuntimeMethod_var);
|
|
__this->___m_RendererFeatures = L_25;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_RendererFeatures), (void*)L_25);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:658>
|
|
__this->___m_FirstTimeCameraColorTargetIsBound = (bool)1;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:659>
|
|
__this->___m_FirstTimeCameraDepthTargetIsBound = (bool)1;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:675>
|
|
ContextContainer_t384E08F63FABEFF6A7F1A753F5EF02699DAD414C* L_26 = (ContextContainer_t384E08F63FABEFF6A7F1A753F5EF02699DAD414C*)il2cpp_codegen_object_new(ContextContainer_t384E08F63FABEFF6A7F1A753F5EF02699DAD414C_il2cpp_TypeInfo_var);
|
|
ContextContainer__ctor_mE70E13EDA049DDB0CA0FB8CB65A1913326B70261(L_26, NULL);
|
|
__this->___m_frameData = L_26;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_frameData), (void*)L_26);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:734>
|
|
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:739>
|
|
ScriptableRendererData_t9005CE645D4881FA4431E52EDC7678203632CAA7* L_27 = ___0_data;
|
|
NullCheck(L_27);
|
|
String_t* L_28;
|
|
L_28 = Object_get_name_mAC2F6B897CF1303BA4249B4CB55271AFACBB6392(L_27, NULL);
|
|
String_t* L_29;
|
|
L_29 = String_Concat_m9E3155FB84015C823606188F53B47CB44C444991(_stringLiteralA7AA6ED62E9E72EBAEB29250526B089AD3A65794, L_28, NULL);
|
|
ProfilingSampler_t420D4672EDB44E0EF980B31ADFD9E5747200FECE* L_30 = (ProfilingSampler_t420D4672EDB44E0EF980B31ADFD9E5747200FECE*)il2cpp_codegen_object_new(ProfilingSampler_t420D4672EDB44E0EF980B31ADFD9E5747200FECE_il2cpp_TypeInfo_var);
|
|
ProfilingSampler__ctor_m26500989FCDB07FA33C9A3BB7F215CBD892F5BB7(L_30, L_29, NULL);
|
|
ScriptableRenderer_set_profilingExecute_m9DE85BB63AA11C1B8C900166DB8961BE6AEAE6CC_inline(__this, L_30, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:741>
|
|
ScriptableRendererData_t9005CE645D4881FA4431E52EDC7678203632CAA7* L_31 = ___0_data;
|
|
NullCheck(L_31);
|
|
List_1_t2121653FB628940E808D105AD2C17E0F20AFB3A6* L_32;
|
|
L_32 = ScriptableRendererData_get_rendererFeatures_m1DF4156F6E0733E01D096AE7A3C43EC6C9D2DD45_inline(L_31, NULL);
|
|
NullCheck(L_32);
|
|
Enumerator_tAE036FA290FC0CC475BEF0D5890C759A8DA9B786 L_33;
|
|
L_33 = List_1_GetEnumerator_m0ED7F868DFBF0B8A5F2C3A7252C548079FD8BB4F(L_32, List_1_GetEnumerator_m0ED7F868DFBF0B8A5F2C3A7252C548079FD8BB4F_RuntimeMethod_var);
|
|
V_0 = L_33;
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_0159:
|
|
{
|
|
Enumerator_Dispose_mEDFBA1A78C8BF94339410CCE79ED2B8947023112((&V_0), Enumerator_Dispose_mEDFBA1A78C8BF94339410CCE79ED2B8947023112_RuntimeMethod_var);
|
|
return;
|
|
}
|
|
});
|
|
try
|
|
{
|
|
{
|
|
goto IL_014e_1;
|
|
}
|
|
|
|
IL_012b_1:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:741>
|
|
ScriptableRendererFeature_tF2ED08AD2498105378D4DAB0386A0F8A144EF4C6* L_34;
|
|
L_34 = Enumerator_get_Current_m65E52814F3289E84E69A7324ED46026114A0FFAE_inline((&V_0), Enumerator_get_Current_m65E52814F3289E84E69A7324ED46026114A0FFAE_RuntimeMethod_var);
|
|
V_1 = L_34;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:743>
|
|
ScriptableRendererFeature_tF2ED08AD2498105378D4DAB0386A0F8A144EF4C6* L_35 = V_1;
|
|
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
bool L_36;
|
|
L_36 = Object_op_Equality_mB6120F782D83091EF56A198FCEBCF066DB4A9605(L_35, (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C*)NULL, NULL);
|
|
if (L_36)
|
|
{
|
|
goto IL_014e_1;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:746>
|
|
ScriptableRendererFeature_tF2ED08AD2498105378D4DAB0386A0F8A144EF4C6* L_37 = V_1;
|
|
NullCheck(L_37);
|
|
VirtualActionInvoker0::Invoke(5, L_37);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:747>
|
|
List_1_t2121653FB628940E808D105AD2C17E0F20AFB3A6* L_38 = __this->___m_RendererFeatures;
|
|
ScriptableRendererFeature_tF2ED08AD2498105378D4DAB0386A0F8A144EF4C6* L_39 = V_1;
|
|
NullCheck(L_38);
|
|
List_1_Add_m9C754466AA0D67659DEFB20BF59FF7355899A32A_inline(L_38, L_39, List_1_Add_m9C754466AA0D67659DEFB20BF59FF7355899A32A_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_014e_1:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:741>
|
|
bool L_40;
|
|
L_40 = Enumerator_MoveNext_m699A9E1D941711453887F76F5DD8E797A46A5D48((&V_0), Enumerator_MoveNext_m699A9E1D941711453887F76F5DD8E797A46A5D48_RuntimeMethod_var);
|
|
if (L_40)
|
|
{
|
|
goto IL_012b_1;
|
|
}
|
|
}
|
|
{
|
|
goto IL_0167;
|
|
}
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_0167:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:750>
|
|
ScriptableRenderer_ResetNativeRenderPassFrameData_m5F97E74C153E46C6DC32BF2E0A3F468230DB4C5A(__this, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:751>
|
|
ScriptableRendererData_t9005CE645D4881FA4431E52EDC7678203632CAA7* L_41 = ___0_data;
|
|
NullCheck(L_41);
|
|
bool L_42;
|
|
L_42 = ScriptableRendererData_get_useNativeRenderPass_m7F8D3A97A818B1134EFC3A4236E7A7C8ECD9245F_inline(L_41, NULL);
|
|
__this->___useRenderPassEnabled = L_42;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:752>
|
|
ScriptableRenderer_Clear_mC6FE17F23429708C54B9BC06747196B90C6CF3D4(__this, 0, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:753>
|
|
List_1_t2E485E650BF1E41358CE56A69323E183C5A89CB6* L_43 = __this->___m_ActiveRenderPassQueue;
|
|
NullCheck(L_43);
|
|
List_1_Clear_m465CCAF440EF34D44065E6C2BE1D68215EAD505E_inline(L_43, List_1_Clear_m465CCAF440EF34D44065E6C2BE1D68215EAD505E_RuntimeMethod_var);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:755>
|
|
il2cpp_codegen_runtime_class_init_inline(UniversalRenderPipeline_t54B4737DC500C08628C5BE283D8C583C14DED98F_il2cpp_TypeInfo_var);
|
|
UniversalRenderPipelineAsset_tE8A9AA6F030CC3B558CEA2EB54FFF4FC58CA6232* L_44;
|
|
L_44 = UniversalRenderPipeline_get_asset_mCDEF564C748A6FE271F3749C82ECA64D0F6DE9E9(NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
bool L_45;
|
|
L_45 = Object_op_Implicit_m93896EF7D68FA113C42D3FE2BC6F661FC7EF514A(L_44, NULL);
|
|
if (!L_45)
|
|
{
|
|
goto IL_01a7;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:757>
|
|
il2cpp_codegen_runtime_class_init_inline(UniversalRenderPipeline_t54B4737DC500C08628C5BE283D8C583C14DED98F_il2cpp_TypeInfo_var);
|
|
UniversalRenderPipelineAsset_tE8A9AA6F030CC3B558CEA2EB54FFF4FC58CA6232* L_46;
|
|
L_46 = UniversalRenderPipeline_get_asset_mCDEF564C748A6FE271F3749C82ECA64D0F6DE9E9(NULL);
|
|
NullCheck(L_46);
|
|
int32_t L_47;
|
|
L_47 = UniversalRenderPipelineAsset_get_storeActionsOptimization_m34BDA517FC97840E134614733270B805F101A8C6_inline(L_46, NULL);
|
|
__this->___m_StoreActionsOptimizationSetting = L_47;
|
|
}
|
|
|
|
IL_01a7:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:760>
|
|
int32_t L_48 = __this->___m_StoreActionsOptimizationSetting;
|
|
il2cpp_codegen_runtime_class_init_inline(ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892_il2cpp_TypeInfo_var);
|
|
((ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892_StaticFields*)il2cpp_codegen_static_fields_for(ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892_il2cpp_TypeInfo_var))->___m_UseOptimizedStoreActions = (bool)((((int32_t)((((int32_t)L_48) == ((int32_t)2))? 1 : 0)) == ((int32_t)0))? 1 : 0);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:761>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 33387
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ScriptableRenderer_Dispose_m2E02F5A4E8461E37B6EB866748FC1C0ECE1CC371 (ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&GC_t920F9CF6EBB7C787E5010A4352E1B587F356DC58_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Count_m81D0B7C641653EC8742F7B48EC513ECBD2A61C97_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Item_mA0690F170B9EA5DBD421B889FC1DEDEF46CAAD1E_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int32_t V_0 = 0;
|
|
il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions;
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:770>
|
|
V_0 = 0;
|
|
goto IL_0037;
|
|
}
|
|
|
|
IL_0004:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:772>
|
|
List_1_t2121653FB628940E808D105AD2C17E0F20AFB3A6* L_0;
|
|
L_0 = ScriptableRenderer_get_rendererFeatures_m2473415AE63D3735ACBD7BF7CAEA7CB0315A7057_inline(__this, NULL);
|
|
int32_t L_1 = V_0;
|
|
NullCheck(L_0);
|
|
ScriptableRendererFeature_tF2ED08AD2498105378D4DAB0386A0F8A144EF4C6* L_2;
|
|
L_2 = List_1_get_Item_mA0690F170B9EA5DBD421B889FC1DEDEF46CAAD1E(L_0, L_1, List_1_get_Item_mA0690F170B9EA5DBD421B889FC1DEDEF46CAAD1E_RuntimeMethod_var);
|
|
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
bool L_3;
|
|
L_3 = Object_op_Equality_mB6120F782D83091EF56A198FCEBCF066DB4A9605(L_2, (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C*)NULL, NULL);
|
|
if (L_3)
|
|
{
|
|
goto IL_0033;
|
|
}
|
|
}
|
|
{
|
|
}
|
|
try
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:779>
|
|
List_1_t2121653FB628940E808D105AD2C17E0F20AFB3A6* L_4;
|
|
L_4 = ScriptableRenderer_get_rendererFeatures_m2473415AE63D3735ACBD7BF7CAEA7CB0315A7057_inline(__this, NULL);
|
|
int32_t L_5 = V_0;
|
|
NullCheck(L_4);
|
|
ScriptableRendererFeature_tF2ED08AD2498105378D4DAB0386A0F8A144EF4C6* L_6;
|
|
L_6 = List_1_get_Item_mA0690F170B9EA5DBD421B889FC1DEDEF46CAAD1E(L_4, L_5, List_1_get_Item_mA0690F170B9EA5DBD421B889FC1DEDEF46CAAD1E_RuntimeMethod_var);
|
|
NullCheck(L_6);
|
|
ScriptableRendererFeature_Dispose_m8CE96FDAA8728C64B3DA17D95E6154048C7E37AA(L_6, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:780>
|
|
goto IL_0033;
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Exception_t_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex)))
|
|
{
|
|
IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex);
|
|
goto CATCH_002c;
|
|
}
|
|
throw e;
|
|
}
|
|
|
|
CATCH_002c:
|
|
{
|
|
Exception_t* L_7 = ((Exception_t*)IL2CPP_GET_ACTIVE_EXCEPTION(Exception_t*));;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:783>
|
|
il2cpp_codegen_runtime_class_init_inline(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Debug_t8394C7EEAECA3689C2C9B9DE9C7166D73596276F_il2cpp_TypeInfo_var)));
|
|
Debug_LogException_mAB3F4DC7297ED8FBB49DAA718B70E59A6B0171B0(L_7, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:784>
|
|
IL2CPP_POP_ACTIVE_EXCEPTION(Exception_t*);
|
|
goto IL_0033;
|
|
}
|
|
|
|
IL_0033:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:770>
|
|
int32_t L_8 = V_0;
|
|
V_0 = ((int32_t)il2cpp_codegen_add(L_8, 1));
|
|
}
|
|
|
|
IL_0037:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:770>
|
|
int32_t L_9 = V_0;
|
|
List_1_t2121653FB628940E808D105AD2C17E0F20AFB3A6* L_10 = __this->___m_RendererFeatures;
|
|
NullCheck(L_10);
|
|
int32_t L_11;
|
|
L_11 = List_1_get_Count_m81D0B7C641653EC8742F7B48EC513ECBD2A61C97_inline(L_10, List_1_get_Count_m81D0B7C641653EC8742F7B48EC513ECBD2A61C97_RuntimeMethod_var);
|
|
if ((((int32_t)L_9) < ((int32_t)L_11)))
|
|
{
|
|
goto IL_0004;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:787>
|
|
VirtualActionInvoker1< bool >::Invoke(11, __this, (bool)1);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:788>
|
|
__this->___hasReleasedRTs = (bool)1;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:789>
|
|
il2cpp_codegen_runtime_class_init_inline(GC_t920F9CF6EBB7C787E5010A4352E1B587F356DC58_il2cpp_TypeInfo_var);
|
|
GC_SuppressFinalize_m71815DBD5A0CD2EA1BE43317B08B7A14949EDC65(__this, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:790>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 33388
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ScriptableRenderer_Dispose_m7D653034036928F611D5F9506CC58CDA74CC3D14 (ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892* __this, bool ___0_disposing, const RuntimeMethod* method)
|
|
{
|
|
DebugHandler_t3A09E2CFD1CA6F5C192968A6FF19EE4863F44DA4* G_B2_0 = NULL;
|
|
DebugHandler_t3A09E2CFD1CA6F5C192968A6FF19EE4863F44DA4* G_B1_0 = NULL;
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:800>
|
|
DebugHandler_t3A09E2CFD1CA6F5C192968A6FF19EE4863F44DA4* L_0;
|
|
L_0 = ScriptableRenderer_get_DebugHandler_mF10EC7F8F42F5087507DCDB7CD21338F2766DD6F_inline(__this, NULL);
|
|
DebugHandler_t3A09E2CFD1CA6F5C192968A6FF19EE4863F44DA4* L_1 = L_0;
|
|
if (L_1)
|
|
{
|
|
G_B2_0 = L_1;
|
|
goto IL_000b;
|
|
}
|
|
G_B1_0 = L_1;
|
|
}
|
|
{
|
|
return;
|
|
}
|
|
|
|
IL_000b:
|
|
{
|
|
NullCheck(G_B2_0);
|
|
DebugHandler_Dispose_mC4D4898C5BB702306AE5C1DC7243D5DEC6E7D97F(G_B2_0, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:801>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 33389
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ScriptableRenderer_ReleaseRenderTargets_m55A7F512A711BBA86EF65A09CA6AEA95C45E2C16 (ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:805>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 33390
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ScriptableRenderer_ConfigureCameraTarget_m4067416B1E8D785A5BADBEFB1E73FDA7A6A0D440 (ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892* __this, RenderTargetIdentifier_tA528663AC6EB3911D8E91AA40F7070FA5455442B ___0_colorTarget, RenderTargetIdentifier_tA528663AC6EB3911D8E91AA40F7070FA5455442B ___1_depthTarget, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:815>
|
|
NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A* L_0 = (NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A_il2cpp_TypeInfo_var)));
|
|
NotSupportedException__ctor_mE174750CF0247BBB47544FFD71D66BB89630945B(L_0, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral26395B8BFE5AA7D0CE7FFFCE0F3805A2B259E37F)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ScriptableRenderer_ConfigureCameraTarget_m4067416B1E8D785A5BADBEFB1E73FDA7A6A0D440_RuntimeMethod_var)));
|
|
}
|
|
}
|
|
// Method Definition Index: 33391
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ScriptableRenderer_ConfigureCameraTarget_m0C906EED874B7FFB6DC9A1C34EFD714A9B96333B (ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892* __this, RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B* ___0_colorTarget, RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B* ___1_depthTarget, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:826>
|
|
RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B* L_0 = ___0_colorTarget;
|
|
__this->___m_CameraColorTarget = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_CameraColorTarget), (void*)L_0);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:827>
|
|
RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B* L_1 = ___1_depthTarget;
|
|
__this->___m_CameraDepthTarget = L_1;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_CameraDepthTarget), (void*)L_1);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:828>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 33392
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ScriptableRenderer_ConfigureCameraTarget_mC4E6B01A0892C59CF624866C5FEAE09016BCBF2D (ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892* __this, RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B* ___0_colorTarget, RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B* ___1_depthTarget, RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B* ___2_resolveTarget, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:833>
|
|
RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B* L_0 = ___0_colorTarget;
|
|
__this->___m_CameraColorTarget = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_CameraColorTarget), (void*)L_0);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:834>
|
|
RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B* L_1 = ___1_depthTarget;
|
|
__this->___m_CameraDepthTarget = L_1;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_CameraDepthTarget), (void*)L_1);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:835>
|
|
RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B* L_2 = ___2_resolveTarget;
|
|
__this->___m_CameraResolveTarget = L_2;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_CameraResolveTarget), (void*)L_2);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:836>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 33393
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ScriptableRenderer_ConfigureCameraColorTarget_m591647884AAE0FEE1B92F6C01693D3DBB7E550D7 (ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892* __this, RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B* ___0_colorTarget, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:842>
|
|
RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B* L_0 = ___0_colorTarget;
|
|
__this->___m_CameraColorTarget = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_CameraColorTarget), (void*)L_0);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:843>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 33395
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ScriptableRenderer_SetupLights_m2D85F9D286C4A0EE4029D3F88CB7AEB19CAB1ECE (ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892* __this, ScriptableRenderContext_t5AB09B3602BEB456E0DC3D53926D3A3BDAF08E36 ___0_context, RenderingData_tAAA01190551D6D5954314E3E1E85B58DD45EED71* ___1_renderingData, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:865>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 33396
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ScriptableRenderer_SetupCullingParameters_m2A0600BAC5ACBE1D042F10568463E08AECD4A308 (ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892* __this, ScriptableCullingParameters_tD9539440A4A7DA4C7578CCE16F24466A5DC89899* ___0_cullingParameters, CameraData_tC27AE109CD20677486A4AC19C0CF014AE0F50C3E* ___1_cameraData, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:876>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 33397
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ScriptableRenderer_FinishRendering_m47890AEC73A205D92C8D3807A88821191FE88A1A (ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892* __this, CommandBuffer_tB56007DC84EF56296C325EC32DD12AC1E3DC91F7* ___0_cmd, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:884>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 33398
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ScriptableRenderer_OnBeginRenderGraphFrame_m434642581F70C41B88F9A0D108EF0A43C11820B3 (ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:893>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 33399
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ScriptableRenderer_OnRecordRenderGraph_mFF628DA96A97A95CCCF9BB66BFE82DCC15E114DF (ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892* __this, RenderGraph_t73ECE03B3CA3D0D17F1448D64AE020E81592AA1E* ___0_renderGraph, ScriptableRenderContext_t5AB09B3602BEB456E0DC3D53926D3A3BDAF08E36 ___1_context, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:902>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 33400
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ScriptableRenderer_OnEndRenderGraphFrame_m1D4696B1E44FFB4F73DE501DB81565C4A5A9FA25 (ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:910>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 33401
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ScriptableRenderer_InitRenderGraphFrame_m75834DCCB3CED56C4538CAA7D6B9E4756E6BF9C0 (ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892* __this, RenderGraph_t73ECE03B3CA3D0D17F1448D64AE020E81592AA1E* ___0_renderGraph, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&BaseRenderFunc_2_t0F078AB23E7CF63F4670F4E80CFDE4CD4BEB0F72_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IBaseRenderGraphBuilder_tFFF84F72F862F1BE246A789AB6A59F959B490F3D_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IUnsafeRenderGraphBuilder_SetRenderFunc_TisPassData_t84C7078BE208CBCF257438586035AB69DE199182_m402FB8316DF23F4773EA0F5F77F0B0651201340F_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Profiling_t1148A935DE86EC9E67DA54238721B4178A744AD3_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RenderGraph_AddUnsafePass_TisPassData_t84C7078BE208CBCF257438586035AB69DE199182_m12AE6576970C3F76D24E04EB4195A2C7BDC81F05_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec_U3CInitRenderGraphFrameU3Eb__140_0_mA0DDDB74EE922056C8DD7D3AA2452A55C3E2B083_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec_tAD2991BC81926CE242650EADA7F8BD93F3ABF02C_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral67B035FAA2672BC4F91A448072DE578A2B9F5586);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
RuntimeObject* V_0 = NULL;
|
|
PassData_t84C7078BE208CBCF257438586035AB69DE199182* V_1 = NULL;
|
|
BaseRenderFunc_2_t0F078AB23E7CF63F4670F4E80CFDE4CD4BEB0F72* G_B3_0 = NULL;
|
|
RuntimeObject* G_B3_1 = NULL;
|
|
BaseRenderFunc_2_t0F078AB23E7CF63F4670F4E80CFDE4CD4BEB0F72* G_B2_0 = NULL;
|
|
RuntimeObject* G_B2_1 = NULL;
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:914>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:915>
|
|
RenderGraph_t73ECE03B3CA3D0D17F1448D64AE020E81592AA1E* L_0 = ___0_renderGraph;
|
|
il2cpp_codegen_runtime_class_init_inline(Profiling_t1148A935DE86EC9E67DA54238721B4178A744AD3_il2cpp_TypeInfo_var);
|
|
ProfilingSampler_t420D4672EDB44E0EF980B31ADFD9E5747200FECE* L_1 = ((Profiling_t1148A935DE86EC9E67DA54238721B4178A744AD3_StaticFields*)il2cpp_codegen_static_fields_for(Profiling_t1148A935DE86EC9E67DA54238721B4178A744AD3_il2cpp_TypeInfo_var))->___initRenderGraphFrame;
|
|
NullCheck(L_1);
|
|
String_t* L_2;
|
|
L_2 = ProfilingSampler_get_name_mF1C3E7B9540171DD93186A4DFEF33CE331E92D79_inline(L_1, NULL);
|
|
ProfilingSampler_t420D4672EDB44E0EF980B31ADFD9E5747200FECE* L_3 = ((Profiling_t1148A935DE86EC9E67DA54238721B4178A744AD3_StaticFields*)il2cpp_codegen_static_fields_for(Profiling_t1148A935DE86EC9E67DA54238721B4178A744AD3_il2cpp_TypeInfo_var))->___initRenderGraphFrame;
|
|
NullCheck(L_0);
|
|
RuntimeObject* L_4;
|
|
L_4 = RenderGraph_AddUnsafePass_TisPassData_t84C7078BE208CBCF257438586035AB69DE199182_m12AE6576970C3F76D24E04EB4195A2C7BDC81F05(L_0, L_2, (&V_1), L_3, _stringLiteral67B035FAA2672BC4F91A448072DE578A2B9F5586, ((int32_t)914), RenderGraph_AddUnsafePass_TisPassData_t84C7078BE208CBCF257438586035AB69DE199182_m12AE6576970C3F76D24E04EB4195A2C7BDC81F05_RuntimeMethod_var);
|
|
V_0 = L_4;
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_0057:
|
|
{
|
|
{
|
|
RuntimeObject* L_5 = V_0;
|
|
if (!L_5)
|
|
{
|
|
goto IL_0060;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_6 = V_0;
|
|
NullCheck(L_6);
|
|
InterfaceActionInvoker0::Invoke(0, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, L_6);
|
|
}
|
|
|
|
IL_0060:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
});
|
|
try
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:917>
|
|
PassData_t84C7078BE208CBCF257438586035AB69DE199182* L_7 = V_1;
|
|
NullCheck(L_7);
|
|
L_7->___renderer = __this;
|
|
Il2CppCodeGenWriteBarrier((void**)(&L_7->___renderer), (void*)__this);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:919>
|
|
RuntimeObject* L_8 = V_0;
|
|
NullCheck(L_8);
|
|
InterfaceActionInvoker1< bool >::Invoke(11, IBaseRenderGraphBuilder_tFFF84F72F862F1BE246A789AB6A59F959B490F3D_il2cpp_TypeInfo_var, L_8, (bool)0);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:921>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:922>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:923>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:924>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:925>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:926>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:927>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:928>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:929>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:930>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:931>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:932>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:933>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:934>
|
|
RuntimeObject* L_9 = V_0;
|
|
il2cpp_codegen_runtime_class_init_inline(U3CU3Ec_tAD2991BC81926CE242650EADA7F8BD93F3ABF02C_il2cpp_TypeInfo_var);
|
|
BaseRenderFunc_2_t0F078AB23E7CF63F4670F4E80CFDE4CD4BEB0F72* L_10 = ((U3CU3Ec_tAD2991BC81926CE242650EADA7F8BD93F3ABF02C_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_tAD2991BC81926CE242650EADA7F8BD93F3ABF02C_il2cpp_TypeInfo_var))->___U3CU3E9__140_0;
|
|
BaseRenderFunc_2_t0F078AB23E7CF63F4670F4E80CFDE4CD4BEB0F72* L_11 = L_10;
|
|
if (L_11)
|
|
{
|
|
G_B3_0 = L_11;
|
|
G_B3_1 = L_9;
|
|
goto IL_0050_1;
|
|
}
|
|
G_B2_0 = L_11;
|
|
G_B2_1 = L_9;
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(U3CU3Ec_tAD2991BC81926CE242650EADA7F8BD93F3ABF02C_il2cpp_TypeInfo_var);
|
|
U3CU3Ec_tAD2991BC81926CE242650EADA7F8BD93F3ABF02C* L_12 = ((U3CU3Ec_tAD2991BC81926CE242650EADA7F8BD93F3ABF02C_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_tAD2991BC81926CE242650EADA7F8BD93F3ABF02C_il2cpp_TypeInfo_var))->___U3CU3E9;
|
|
BaseRenderFunc_2_t0F078AB23E7CF63F4670F4E80CFDE4CD4BEB0F72* L_13 = (BaseRenderFunc_2_t0F078AB23E7CF63F4670F4E80CFDE4CD4BEB0F72*)il2cpp_codegen_object_new(BaseRenderFunc_2_t0F078AB23E7CF63F4670F4E80CFDE4CD4BEB0F72_il2cpp_TypeInfo_var);
|
|
BaseRenderFunc_2__ctor_mDB332AD138198FF2F7AAF7934A3A34B5C5F214E7(L_13, L_12, (intptr_t)((void*)U3CU3Ec_U3CInitRenderGraphFrameU3Eb__140_0_mA0DDDB74EE922056C8DD7D3AA2452A55C3E2B083_RuntimeMethod_var), NULL);
|
|
BaseRenderFunc_2_t0F078AB23E7CF63F4670F4E80CFDE4CD4BEB0F72* L_14 = L_13;
|
|
((U3CU3Ec_tAD2991BC81926CE242650EADA7F8BD93F3ABF02C_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_tAD2991BC81926CE242650EADA7F8BD93F3ABF02C_il2cpp_TypeInfo_var))->___U3CU3E9__140_0 = L_14;
|
|
Il2CppCodeGenWriteBarrier((void**)(&((U3CU3Ec_tAD2991BC81926CE242650EADA7F8BD93F3ABF02C_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_tAD2991BC81926CE242650EADA7F8BD93F3ABF02C_il2cpp_TypeInfo_var))->___U3CU3E9__140_0), (void*)L_14);
|
|
G_B3_0 = L_14;
|
|
G_B3_1 = G_B2_1;
|
|
}
|
|
|
|
IL_0050_1:
|
|
{
|
|
NullCheck(G_B3_1);
|
|
GenericInterfaceActionInvoker1< BaseRenderFunc_2_t0F078AB23E7CF63F4670F4E80CFDE4CD4BEB0F72* >::Invoke(IUnsafeRenderGraphBuilder_SetRenderFunc_TisPassData_t84C7078BE208CBCF257438586035AB69DE199182_m402FB8316DF23F4773EA0F5F77F0B0651201340F_RuntimeMethod_var, G_B3_1, G_B3_0);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:935>
|
|
goto IL_0061;
|
|
}
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_0061:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:936>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 33402
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ScriptableRenderer_ProcessVFXCameraCommand_m3BC5561920B15FB0B77781A0B0ED587EBE685C0D (ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892* __this, RenderGraph_t73ECE03B3CA3D0D17F1448D64AE020E81592AA1E* ___0_renderGraph, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&BaseRenderFunc_2_t55E594CC6D951D462AFB9867489BE9665166DC90_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ContextContainer_Get_TisUniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7_mE62F7903614384541B770CC0B9A99BD2E608A0F8_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ContextContainer_Get_TisUniversalRenderingData_t045D13A1E051DF623B170223B7CBF1161DDA94E6_m71849CEFB9C023EDE026A0F38CE6044274505C06_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IBaseRenderGraphBuilder_tFFF84F72F862F1BE246A789AB6A59F959B490F3D_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IUnsafeRenderGraphBuilder_SetRenderFunc_TisVFXProcessCameraPassData_t19BF6E1F978BA36189D226BA7F36E8F3190D07A9_mCF66277B59C95F8EED639E08D410DC788363219A_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Profiling_t1148A935DE86EC9E67DA54238721B4178A744AD3_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RenderGraph_AddUnsafePass_TisVFXProcessCameraPassData_t19BF6E1F978BA36189D226BA7F36E8F3190D07A9_m1B860B78DA9A535D8D605384DF7FF725B9A60780_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec_U3CProcessVFXCameraCommandU3Eb__142_0_m931B43DF014190335ECEBF17915B26876D71B9AA_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec_tAD2991BC81926CE242650EADA7F8BD93F3ABF02C_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral0A9AFA66638C3965B9580559AE6951ED1CAC938B);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral67B035FAA2672BC4F91A448072DE578A2B9F5586);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
UniversalRenderingData_t045D13A1E051DF623B170223B7CBF1161DDA94E6* V_0 = NULL;
|
|
UniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7* V_1 = NULL;
|
|
XRPass_tFC4577E97B88E0EAAAB2EB387AB3A92E9EB9C6DF* V_2 = NULL;
|
|
RuntimeObject* V_3 = NULL;
|
|
VFXProcessCameraPassData_t19BF6E1F978BA36189D226BA7F36E8F3190D07A9* V_4 = NULL;
|
|
VFXCameraXRSettings_t03DB07CF170D5B4B66546F8DE78FED3CF9755D92* G_B3_0 = NULL;
|
|
VFXCameraXRSettings_t03DB07CF170D5B4B66546F8DE78FED3CF9755D92* G_B2_0 = NULL;
|
|
int32_t G_B4_0 = 0;
|
|
VFXCameraXRSettings_t03DB07CF170D5B4B66546F8DE78FED3CF9755D92* G_B4_1 = NULL;
|
|
VFXCameraXRSettings_t03DB07CF170D5B4B66546F8DE78FED3CF9755D92* G_B6_0 = NULL;
|
|
VFXCameraXRSettings_t03DB07CF170D5B4B66546F8DE78FED3CF9755D92* G_B5_0 = NULL;
|
|
int32_t G_B7_0 = 0;
|
|
VFXCameraXRSettings_t03DB07CF170D5B4B66546F8DE78FED3CF9755D92* G_B7_1 = NULL;
|
|
VFXProcessCameraPassData_t19BF6E1F978BA36189D226BA7F36E8F3190D07A9* G_B9_0 = NULL;
|
|
VFXProcessCameraPassData_t19BF6E1F978BA36189D226BA7F36E8F3190D07A9* G_B8_0 = NULL;
|
|
XRPass_tFC4577E97B88E0EAAAB2EB387AB3A92E9EB9C6DF* G_B10_0 = NULL;
|
|
VFXProcessCameraPassData_t19BF6E1F978BA36189D226BA7F36E8F3190D07A9* G_B10_1 = NULL;
|
|
BaseRenderFunc_2_t55E594CC6D951D462AFB9867489BE9665166DC90* G_B12_0 = NULL;
|
|
RuntimeObject* G_B12_1 = NULL;
|
|
BaseRenderFunc_2_t55E594CC6D951D462AFB9867489BE9665166DC90* G_B11_0 = NULL;
|
|
RuntimeObject* G_B11_1 = NULL;
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:948>
|
|
ContextContainer_t384E08F63FABEFF6A7F1A753F5EF02699DAD414C* L_0;
|
|
L_0 = ScriptableRenderer_get_frameData_m1E575C1F7F79B65139F8AD75EB4B40BB4113714A_inline(__this, NULL);
|
|
NullCheck(L_0);
|
|
UniversalRenderingData_t045D13A1E051DF623B170223B7CBF1161DDA94E6* L_1;
|
|
L_1 = ContextContainer_Get_TisUniversalRenderingData_t045D13A1E051DF623B170223B7CBF1161DDA94E6_m71849CEFB9C023EDE026A0F38CE6044274505C06_inline(L_0, ContextContainer_Get_TisUniversalRenderingData_t045D13A1E051DF623B170223B7CBF1161DDA94E6_m71849CEFB9C023EDE026A0F38CE6044274505C06_RuntimeMethod_var);
|
|
V_0 = L_1;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:949>
|
|
ContextContainer_t384E08F63FABEFF6A7F1A753F5EF02699DAD414C* L_2;
|
|
L_2 = ScriptableRenderer_get_frameData_m1E575C1F7F79B65139F8AD75EB4B40BB4113714A_inline(__this, NULL);
|
|
NullCheck(L_2);
|
|
UniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7* L_3;
|
|
L_3 = ContextContainer_Get_TisUniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7_mE62F7903614384541B770CC0B9A99BD2E608A0F8_inline(L_2, ContextContainer_Get_TisUniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7_mE62F7903614384541B770CC0B9A99BD2E608A0F8_RuntimeMethod_var);
|
|
V_1 = L_3;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:950>
|
|
UniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7* L_4 = V_1;
|
|
NullCheck(L_4);
|
|
XRPass_tFC4577E97B88E0EAAAB2EB387AB3A92E9EB9C6DF* L_5;
|
|
L_5 = UniversalCameraData_get_xr_mC600E667BA2B92EADF2CF60CD49E15242FA83C4D_inline(L_4, NULL);
|
|
V_2 = L_5;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:952>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:953>
|
|
RenderGraph_t73ECE03B3CA3D0D17F1448D64AE020E81592AA1E* L_6 = ___0_renderGraph;
|
|
il2cpp_codegen_runtime_class_init_inline(Profiling_t1148A935DE86EC9E67DA54238721B4178A744AD3_il2cpp_TypeInfo_var);
|
|
ProfilingSampler_t420D4672EDB44E0EF980B31ADFD9E5747200FECE* L_7 = ((Profiling_t1148A935DE86EC9E67DA54238721B4178A744AD3_StaticFields*)il2cpp_codegen_static_fields_for(Profiling_t1148A935DE86EC9E67DA54238721B4178A744AD3_il2cpp_TypeInfo_var))->___vfxProcessCamera;
|
|
NullCheck(L_6);
|
|
RuntimeObject* L_8;
|
|
L_8 = RenderGraph_AddUnsafePass_TisVFXProcessCameraPassData_t19BF6E1F978BA36189D226BA7F36E8F3190D07A9_m1B860B78DA9A535D8D605384DF7FF725B9A60780(L_6, _stringLiteral0A9AFA66638C3965B9580559AE6951ED1CAC938B, (&V_4), L_7, _stringLiteral67B035FAA2672BC4F91A448072DE578A2B9F5586, ((int32_t)952), RenderGraph_AddUnsafePass_TisVFXProcessCameraPassData_t19BF6E1F978BA36189D226BA7F36E8F3190D07A9_m1B860B78DA9A535D8D605384DF7FF725B9A60780_RuntimeMethod_var);
|
|
V_3 = L_8;
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_00d9:
|
|
{
|
|
{
|
|
RuntimeObject* L_9 = V_3;
|
|
if (!L_9)
|
|
{
|
|
goto IL_00e2;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_10 = V_3;
|
|
NullCheck(L_10);
|
|
InterfaceActionInvoker0::Invoke(0, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, L_10);
|
|
}
|
|
|
|
IL_00e2:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
});
|
|
try
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:955>
|
|
VFXProcessCameraPassData_t19BF6E1F978BA36189D226BA7F36E8F3190D07A9* L_11 = V_4;
|
|
UniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7* L_12 = V_1;
|
|
NullCheck(L_12);
|
|
Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184* L_13 = L_12->___camera;
|
|
NullCheck(L_11);
|
|
L_11->___camera = L_13;
|
|
Il2CppCodeGenWriteBarrier((void**)(&L_11->___camera), (void*)L_13);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:956>
|
|
VFXProcessCameraPassData_t19BF6E1F978BA36189D226BA7F36E8F3190D07A9* L_14 = V_4;
|
|
UniversalRenderingData_t045D13A1E051DF623B170223B7CBF1161DDA94E6* L_15 = V_0;
|
|
NullCheck(L_14);
|
|
L_14->___renderingData = L_15;
|
|
Il2CppCodeGenWriteBarrier((void**)(&L_14->___renderingData), (void*)L_15);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:958>
|
|
VFXProcessCameraPassData_t19BF6E1F978BA36189D226BA7F36E8F3190D07A9* L_16 = V_4;
|
|
NullCheck(L_16);
|
|
VFXCameraXRSettings_t03DB07CF170D5B4B66546F8DE78FED3CF9755D92* L_17 = (VFXCameraXRSettings_t03DB07CF170D5B4B66546F8DE78FED3CF9755D92*)(&L_16->___cameraXRSettings);
|
|
XRPass_tFC4577E97B88E0EAAAB2EB387AB3A92E9EB9C6DF* L_18 = V_2;
|
|
NullCheck(L_18);
|
|
bool L_19;
|
|
L_19 = XRPass_get_enabled_m488D52C18CC6B83FDC3212E98864BA02116A64A3(L_18, NULL);
|
|
if (L_19)
|
|
{
|
|
G_B3_0 = L_17;
|
|
goto IL_0063_1;
|
|
}
|
|
G_B2_0 = L_17;
|
|
}
|
|
{
|
|
G_B4_0 = 1;
|
|
G_B4_1 = G_B2_0;
|
|
goto IL_0064_1;
|
|
}
|
|
|
|
IL_0063_1:
|
|
{
|
|
G_B4_0 = 2;
|
|
G_B4_1 = G_B3_0;
|
|
}
|
|
|
|
IL_0064_1:
|
|
{
|
|
G_B4_1->___viewTotal = G_B4_0;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:959>
|
|
VFXProcessCameraPassData_t19BF6E1F978BA36189D226BA7F36E8F3190D07A9* L_20 = V_4;
|
|
NullCheck(L_20);
|
|
VFXCameraXRSettings_t03DB07CF170D5B4B66546F8DE78FED3CF9755D92* L_21 = (VFXCameraXRSettings_t03DB07CF170D5B4B66546F8DE78FED3CF9755D92*)(&L_20->___cameraXRSettings);
|
|
XRPass_tFC4577E97B88E0EAAAB2EB387AB3A92E9EB9C6DF* L_22 = V_2;
|
|
NullCheck(L_22);
|
|
bool L_23;
|
|
L_23 = XRPass_get_enabled_m488D52C18CC6B83FDC3212E98864BA02116A64A3(L_22, NULL);
|
|
if (L_23)
|
|
{
|
|
G_B6_0 = L_21;
|
|
goto IL_007b_1;
|
|
}
|
|
G_B5_0 = L_21;
|
|
}
|
|
{
|
|
G_B7_0 = 1;
|
|
G_B7_1 = G_B5_0;
|
|
goto IL_0081_1;
|
|
}
|
|
|
|
IL_007b_1:
|
|
{
|
|
XRPass_tFC4577E97B88E0EAAAB2EB387AB3A92E9EB9C6DF* L_24 = V_2;
|
|
NullCheck(L_24);
|
|
int32_t L_25;
|
|
L_25 = XRPass_get_viewCount_m0D9E6A5AEA60C52EAA3B211DDE1BEA734318A35D(L_24, NULL);
|
|
G_B7_0 = L_25;
|
|
G_B7_1 = G_B6_0;
|
|
}
|
|
|
|
IL_0081_1:
|
|
{
|
|
G_B7_1->___viewCount = G_B7_0;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:960>
|
|
VFXProcessCameraPassData_t19BF6E1F978BA36189D226BA7F36E8F3190D07A9* L_26 = V_4;
|
|
NullCheck(L_26);
|
|
VFXCameraXRSettings_t03DB07CF170D5B4B66546F8DE78FED3CF9755D92* L_27 = (VFXCameraXRSettings_t03DB07CF170D5B4B66546F8DE78FED3CF9755D92*)(&L_26->___cameraXRSettings);
|
|
XRPass_tFC4577E97B88E0EAAAB2EB387AB3A92E9EB9C6DF* L_28 = V_2;
|
|
NullCheck(L_28);
|
|
int32_t L_29;
|
|
L_29 = XRPass_get_multipassId_m312BE1D2B8BA520E9A214F50E601EA6BED92E245_inline(L_28, NULL);
|
|
L_27->___viewOffset = L_29;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:961>
|
|
VFXProcessCameraPassData_t19BF6E1F978BA36189D226BA7F36E8F3190D07A9* L_30 = V_4;
|
|
XRPass_tFC4577E97B88E0EAAAB2EB387AB3A92E9EB9C6DF* L_31 = V_2;
|
|
NullCheck(L_31);
|
|
bool L_32;
|
|
L_32 = XRPass_get_enabled_m488D52C18CC6B83FDC3212E98864BA02116A64A3(L_31, NULL);
|
|
if (L_32)
|
|
{
|
|
G_B9_0 = L_30;
|
|
goto IL_00a5_1;
|
|
}
|
|
G_B8_0 = L_30;
|
|
}
|
|
{
|
|
G_B10_0 = ((XRPass_tFC4577E97B88E0EAAAB2EB387AB3A92E9EB9C6DF*)(NULL));
|
|
G_B10_1 = G_B8_0;
|
|
goto IL_00a6_1;
|
|
}
|
|
|
|
IL_00a5_1:
|
|
{
|
|
XRPass_tFC4577E97B88E0EAAAB2EB387AB3A92E9EB9C6DF* L_33 = V_2;
|
|
G_B10_0 = L_33;
|
|
G_B10_1 = G_B9_0;
|
|
}
|
|
|
|
IL_00a6_1:
|
|
{
|
|
NullCheck(G_B10_1);
|
|
G_B10_1->___xrPass = G_B10_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&G_B10_1->___xrPass), (void*)G_B10_0);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:963>
|
|
RuntimeObject* L_34 = V_3;
|
|
NullCheck(L_34);
|
|
InterfaceActionInvoker1< bool >::Invoke(11, IBaseRenderGraphBuilder_tFFF84F72F862F1BE246A789AB6A59F959B490F3D_il2cpp_TypeInfo_var, L_34, (bool)0);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:965>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:966>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:967>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:968>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:969>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:970>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:971>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:972>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:973>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:974>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:975>
|
|
RuntimeObject* L_35 = V_3;
|
|
il2cpp_codegen_runtime_class_init_inline(U3CU3Ec_tAD2991BC81926CE242650EADA7F8BD93F3ABF02C_il2cpp_TypeInfo_var);
|
|
BaseRenderFunc_2_t55E594CC6D951D462AFB9867489BE9665166DC90* L_36 = ((U3CU3Ec_tAD2991BC81926CE242650EADA7F8BD93F3ABF02C_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_tAD2991BC81926CE242650EADA7F8BD93F3ABF02C_il2cpp_TypeInfo_var))->___U3CU3E9__142_0;
|
|
BaseRenderFunc_2_t55E594CC6D951D462AFB9867489BE9665166DC90* L_37 = L_36;
|
|
if (L_37)
|
|
{
|
|
G_B12_0 = L_37;
|
|
G_B12_1 = L_35;
|
|
goto IL_00d2_1;
|
|
}
|
|
G_B11_0 = L_37;
|
|
G_B11_1 = L_35;
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(U3CU3Ec_tAD2991BC81926CE242650EADA7F8BD93F3ABF02C_il2cpp_TypeInfo_var);
|
|
U3CU3Ec_tAD2991BC81926CE242650EADA7F8BD93F3ABF02C* L_38 = ((U3CU3Ec_tAD2991BC81926CE242650EADA7F8BD93F3ABF02C_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_tAD2991BC81926CE242650EADA7F8BD93F3ABF02C_il2cpp_TypeInfo_var))->___U3CU3E9;
|
|
BaseRenderFunc_2_t55E594CC6D951D462AFB9867489BE9665166DC90* L_39 = (BaseRenderFunc_2_t55E594CC6D951D462AFB9867489BE9665166DC90*)il2cpp_codegen_object_new(BaseRenderFunc_2_t55E594CC6D951D462AFB9867489BE9665166DC90_il2cpp_TypeInfo_var);
|
|
BaseRenderFunc_2__ctor_mB92587605D969A04E3971CC614A5E599027A593C(L_39, L_38, (intptr_t)((void*)U3CU3Ec_U3CProcessVFXCameraCommandU3Eb__142_0_m931B43DF014190335ECEBF17915B26876D71B9AA_RuntimeMethod_var), NULL);
|
|
BaseRenderFunc_2_t55E594CC6D951D462AFB9867489BE9665166DC90* L_40 = L_39;
|
|
((U3CU3Ec_tAD2991BC81926CE242650EADA7F8BD93F3ABF02C_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_tAD2991BC81926CE242650EADA7F8BD93F3ABF02C_il2cpp_TypeInfo_var))->___U3CU3E9__142_0 = L_40;
|
|
Il2CppCodeGenWriteBarrier((void**)(&((U3CU3Ec_tAD2991BC81926CE242650EADA7F8BD93F3ABF02C_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_tAD2991BC81926CE242650EADA7F8BD93F3ABF02C_il2cpp_TypeInfo_var))->___U3CU3E9__142_0), (void*)L_40);
|
|
G_B12_0 = L_40;
|
|
G_B12_1 = G_B11_1;
|
|
}
|
|
|
|
IL_00d2_1:
|
|
{
|
|
NullCheck(G_B12_1);
|
|
GenericInterfaceActionInvoker1< BaseRenderFunc_2_t55E594CC6D951D462AFB9867489BE9665166DC90* >::Invoke(IUnsafeRenderGraphBuilder_SetRenderFunc_TisVFXProcessCameraPassData_t19BF6E1F978BA36189D226BA7F36E8F3190D07A9_mCF66277B59C95F8EED639E08D410DC788363219A_RuntimeMethod_var, G_B12_1, G_B12_0);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:977>
|
|
goto IL_00e3;
|
|
}
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_00e3:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:978>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 33403
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ScriptableRenderer_SetupRenderGraphCameraProperties_m3E5931E8D2DA72A04E0261A5008F927648049EBF (ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892* __this, RenderGraph_t73ECE03B3CA3D0D17F1448D64AE020E81592AA1E* ___0_renderGraph, bool ___1_isTargetBackbuffer, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&BaseRenderFunc_2_t592BAE028800F18A071D869FCB982B997F5E13A2_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ContextContainer_Get_TisUniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7_mE62F7903614384541B770CC0B9A99BD2E608A0F8_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IBaseRenderGraphBuilder_tFFF84F72F862F1BE246A789AB6A59F959B490F3D_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IRasterRenderGraphBuilder_SetRenderFunc_TisPassData_t84C7078BE208CBCF257438586035AB69DE199182_mE2CD027B12F7CD17F07B0DF307E1EBFB1AA3CAA5_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Profiling_t1148A935DE86EC9E67DA54238721B4178A744AD3_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RenderGraph_AddRasterRenderPass_TisPassData_t84C7078BE208CBCF257438586035AB69DE199182_m16E4B052F1CF829CEE630A12FCB0881DC498F9C2_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec_U3CSetupRenderGraphCameraPropertiesU3Eb__143_0_mEC9FDDB67A3642A804EF49389B671660A47308D2_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec_tAD2991BC81926CE242650EADA7F8BD93F3ABF02C_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral67B035FAA2672BC4F91A448072DE578A2B9F5586);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
RuntimeObject* V_0 = NULL;
|
|
PassData_t84C7078BE208CBCF257438586035AB69DE199182* V_1 = NULL;
|
|
BaseRenderFunc_2_t592BAE028800F18A071D869FCB982B997F5E13A2* G_B3_0 = NULL;
|
|
RuntimeObject* G_B3_1 = NULL;
|
|
BaseRenderFunc_2_t592BAE028800F18A071D869FCB982B997F5E13A2* G_B2_0 = NULL;
|
|
RuntimeObject* G_B2_1 = NULL;
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:981>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:982>
|
|
RenderGraph_t73ECE03B3CA3D0D17F1448D64AE020E81592AA1E* L_0 = ___0_renderGraph;
|
|
il2cpp_codegen_runtime_class_init_inline(Profiling_t1148A935DE86EC9E67DA54238721B4178A744AD3_il2cpp_TypeInfo_var);
|
|
ProfilingSampler_t420D4672EDB44E0EF980B31ADFD9E5747200FECE* L_1 = ((Profiling_t1148A935DE86EC9E67DA54238721B4178A744AD3_StaticFields*)il2cpp_codegen_static_fields_for(Profiling_t1148A935DE86EC9E67DA54238721B4178A744AD3_il2cpp_TypeInfo_var))->___setupCamera;
|
|
NullCheck(L_1);
|
|
String_t* L_2;
|
|
L_2 = ProfilingSampler_get_name_mF1C3E7B9540171DD93186A4DFEF33CE331E92D79_inline(L_1, NULL);
|
|
ProfilingSampler_t420D4672EDB44E0EF980B31ADFD9E5747200FECE* L_3 = ((Profiling_t1148A935DE86EC9E67DA54238721B4178A744AD3_StaticFields*)il2cpp_codegen_static_fields_for(Profiling_t1148A935DE86EC9E67DA54238721B4178A744AD3_il2cpp_TypeInfo_var))->___setupCamera;
|
|
NullCheck(L_0);
|
|
RuntimeObject* L_4;
|
|
L_4 = RenderGraph_AddRasterRenderPass_TisPassData_t84C7078BE208CBCF257438586035AB69DE199182_m16E4B052F1CF829CEE630A12FCB0881DC498F9C2(L_0, L_2, (&V_1), L_3, _stringLiteral67B035FAA2672BC4F91A448072DE578A2B9F5586, ((int32_t)981), RenderGraph_AddRasterRenderPass_TisPassData_t84C7078BE208CBCF257438586035AB69DE199182_m16E4B052F1CF829CEE630A12FCB0881DC498F9C2_RuntimeMethod_var);
|
|
V_0 = L_4;
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_009a:
|
|
{
|
|
{
|
|
RuntimeObject* L_5 = V_0;
|
|
if (!L_5)
|
|
{
|
|
goto IL_00a3;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_6 = V_0;
|
|
NullCheck(L_6);
|
|
InterfaceActionInvoker0::Invoke(0, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, L_6);
|
|
}
|
|
|
|
IL_00a3:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
});
|
|
try
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:984>
|
|
PassData_t84C7078BE208CBCF257438586035AB69DE199182* L_7 = V_1;
|
|
NullCheck(L_7);
|
|
L_7->___renderer = __this;
|
|
Il2CppCodeGenWriteBarrier((void**)(&L_7->___renderer), (void*)__this);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:985>
|
|
PassData_t84C7078BE208CBCF257438586035AB69DE199182* L_8 = V_1;
|
|
ContextContainer_t384E08F63FABEFF6A7F1A753F5EF02699DAD414C* L_9;
|
|
L_9 = ScriptableRenderer_get_frameData_m1E575C1F7F79B65139F8AD75EB4B40BB4113714A_inline(__this, NULL);
|
|
NullCheck(L_9);
|
|
UniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7* L_10;
|
|
L_10 = ContextContainer_Get_TisUniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7_mE62F7903614384541B770CC0B9A99BD2E608A0F8_inline(L_9, ContextContainer_Get_TisUniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7_mE62F7903614384541B770CC0B9A99BD2E608A0F8_RuntimeMethod_var);
|
|
NullCheck(L_8);
|
|
L_8->___cameraData = L_10;
|
|
Il2CppCodeGenWriteBarrier((void**)(&L_8->___cameraData), (void*)L_10);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:986>
|
|
PassData_t84C7078BE208CBCF257438586035AB69DE199182* L_11 = V_1;
|
|
PassData_t84C7078BE208CBCF257438586035AB69DE199182* L_12 = V_1;
|
|
NullCheck(L_12);
|
|
UniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7* L_13 = L_12->___cameraData;
|
|
NullCheck(L_13);
|
|
RenderTextureDescriptor_t69845881CE6437E4E61F92074F2F84079F23FA46* L_14 = (RenderTextureDescriptor_t69845881CE6437E4E61F92074F2F84079F23FA46*)(&L_13->___cameraTargetDescriptor);
|
|
int32_t L_15;
|
|
L_15 = RenderTextureDescriptor_get_width_mB159E4EB08B23B19CCCFADB465864361FB840BFF_inline(L_14, NULL);
|
|
PassData_t84C7078BE208CBCF257438586035AB69DE199182* L_16 = V_1;
|
|
NullCheck(L_16);
|
|
UniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7* L_17 = L_16->___cameraData;
|
|
NullCheck(L_17);
|
|
RenderTextureDescriptor_t69845881CE6437E4E61F92074F2F84079F23FA46* L_18 = (RenderTextureDescriptor_t69845881CE6437E4E61F92074F2F84079F23FA46*)(&L_17->___cameraTargetDescriptor);
|
|
int32_t L_19;
|
|
L_19 = RenderTextureDescriptor_get_height_m1006F9AA45029715C552C8A8C2F102F63D3A91EC_inline(L_18, NULL);
|
|
Vector2Int_t69B2886EBAB732D9B880565E18E7568F3DE0CE6A L_20;
|
|
memset((&L_20), 0, sizeof(L_20));
|
|
Vector2Int__ctor_mC20D1312133EB8CB63EC11067088B043660F11CE_inline((&L_20), L_15, L_19, NULL);
|
|
NullCheck(L_11);
|
|
L_11->___cameraTargetSizeCopy = L_20;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:987>
|
|
PassData_t84C7078BE208CBCF257438586035AB69DE199182* L_21 = V_1;
|
|
bool L_22 = ___1_isTargetBackbuffer;
|
|
NullCheck(L_21);
|
|
L_21->___isTargetBackbuffer = L_22;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:989>
|
|
RuntimeObject* L_23 = V_0;
|
|
NullCheck(L_23);
|
|
InterfaceActionInvoker1< bool >::Invoke(12, IBaseRenderGraphBuilder_tFFF84F72F862F1BE246A789AB6A59F959B490F3D_il2cpp_TypeInfo_var, L_23, (bool)1);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:991>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:992>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:993>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:994>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:995>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:996>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:997>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:998>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:999>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1000>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1001>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1002>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1003>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1004>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1005>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1006>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1007>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1008>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1009>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1010>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1011>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1012>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1013>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1014>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1015>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1016>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1017>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1018>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1019>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1020>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1021>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1022>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1023>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1024>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1025>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1026>
|
|
RuntimeObject* L_24 = V_0;
|
|
il2cpp_codegen_runtime_class_init_inline(U3CU3Ec_tAD2991BC81926CE242650EADA7F8BD93F3ABF02C_il2cpp_TypeInfo_var);
|
|
BaseRenderFunc_2_t592BAE028800F18A071D869FCB982B997F5E13A2* L_25 = ((U3CU3Ec_tAD2991BC81926CE242650EADA7F8BD93F3ABF02C_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_tAD2991BC81926CE242650EADA7F8BD93F3ABF02C_il2cpp_TypeInfo_var))->___U3CU3E9__143_0;
|
|
BaseRenderFunc_2_t592BAE028800F18A071D869FCB982B997F5E13A2* L_26 = L_25;
|
|
if (L_26)
|
|
{
|
|
G_B3_0 = L_26;
|
|
G_B3_1 = L_24;
|
|
goto IL_0093_1;
|
|
}
|
|
G_B2_0 = L_26;
|
|
G_B2_1 = L_24;
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(U3CU3Ec_tAD2991BC81926CE242650EADA7F8BD93F3ABF02C_il2cpp_TypeInfo_var);
|
|
U3CU3Ec_tAD2991BC81926CE242650EADA7F8BD93F3ABF02C* L_27 = ((U3CU3Ec_tAD2991BC81926CE242650EADA7F8BD93F3ABF02C_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_tAD2991BC81926CE242650EADA7F8BD93F3ABF02C_il2cpp_TypeInfo_var))->___U3CU3E9;
|
|
BaseRenderFunc_2_t592BAE028800F18A071D869FCB982B997F5E13A2* L_28 = (BaseRenderFunc_2_t592BAE028800F18A071D869FCB982B997F5E13A2*)il2cpp_codegen_object_new(BaseRenderFunc_2_t592BAE028800F18A071D869FCB982B997F5E13A2_il2cpp_TypeInfo_var);
|
|
BaseRenderFunc_2__ctor_mDCAC411E1CB07BDC48FDC7ED201F503A23BCC2CB(L_28, L_27, (intptr_t)((void*)U3CU3Ec_U3CSetupRenderGraphCameraPropertiesU3Eb__143_0_mEC9FDDB67A3642A804EF49389B671660A47308D2_RuntimeMethod_var), NULL);
|
|
BaseRenderFunc_2_t592BAE028800F18A071D869FCB982B997F5E13A2* L_29 = L_28;
|
|
((U3CU3Ec_tAD2991BC81926CE242650EADA7F8BD93F3ABF02C_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_tAD2991BC81926CE242650EADA7F8BD93F3ABF02C_il2cpp_TypeInfo_var))->___U3CU3E9__143_0 = L_29;
|
|
Il2CppCodeGenWriteBarrier((void**)(&((U3CU3Ec_tAD2991BC81926CE242650EADA7F8BD93F3ABF02C_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_tAD2991BC81926CE242650EADA7F8BD93F3ABF02C_il2cpp_TypeInfo_var))->___U3CU3E9__143_0), (void*)L_29);
|
|
G_B3_0 = L_29;
|
|
G_B3_1 = G_B2_1;
|
|
}
|
|
|
|
IL_0093_1:
|
|
{
|
|
NullCheck(G_B3_1);
|
|
GenericInterfaceActionInvoker1< BaseRenderFunc_2_t592BAE028800F18A071D869FCB982B997F5E13A2* >::Invoke(IRasterRenderGraphBuilder_SetRenderFunc_TisPassData_t84C7078BE208CBCF257438586035AB69DE199182_mE2CD027B12F7CD17F07B0DF307E1EBFB1AA3CAA5_RuntimeMethod_var, G_B3_1, G_B3_0);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1027>
|
|
goto IL_00a4;
|
|
}
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_00a4:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1028>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 33404
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ScriptableRenderer_DrawRenderGraphGizmos_m5CD865A671163A6993207A3582E6E966302770A1 (ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892* __this, RenderGraph_t73ECE03B3CA3D0D17F1448D64AE020E81592AA1E* ___0_renderGraph, ContextContainer_t384E08F63FABEFF6A7F1A753F5EF02699DAD414C* ___1_frameData, TextureHandle_t680ABA3F8B50859351BA5DD66220084F87F37388 ___2_color, TextureHandle_t680ABA3F8B50859351BA5DD66220084F87F37388 ___3_depth, int32_t ___4_gizmoSubset, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1077>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 33405
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ScriptableRenderer_DrawRenderGraphWireOverlay_m4A2EC2BDD847B810BA22571A97D7F140784BAD35 (ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892* __this, RenderGraph_t73ECE03B3CA3D0D17F1448D64AE020E81592AA1E* ___0_renderGraph, ContextContainer_t384E08F63FABEFF6A7F1A753F5EF02699DAD414C* ___1_frameData, TextureHandle_t680ABA3F8B50859351BA5DD66220084F87F37388 ___2_color, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1110>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 33406
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ScriptableRenderer_BeginRenderGraphXRRendering_m14CE82CD94B6628438B6BC8152771FDEAAB632D4 (ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892* __this, RenderGraph_t73ECE03B3CA3D0D17F1448D64AE020E81592AA1E* ___0_renderGraph, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&BaseRenderFunc_2_t762A186FC860B473359C6CA1DE69EDCFB3985B45_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ContextContainer_Get_TisUniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7_mE62F7903614384541B770CC0B9A99BD2E608A0F8_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IBaseRenderGraphBuilder_tFFF84F72F862F1BE246A789AB6A59F959B490F3D_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IRasterRenderGraphBuilder_SetRenderFunc_TisBeginXRPassData_t34405E999FE849E4AAE7FBA7EE4CF3A4CFD51F01_m4E4E44B10E61C2799E44668336FB969E9222C747_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PlatformAutoDetect_tEEEF1776EA779987D2840527D96D89ADD3177A36_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Profiling_t1148A935DE86EC9E67DA54238721B4178A744AD3_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RenderGraph_AddRasterRenderPass_TisBeginXRPassData_t34405E999FE849E4AAE7FBA7EE4CF3A4CFD51F01_m93BA0C85EB16FA31242B0122BDC3424118D10346_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec_U3CBeginRenderGraphXRRenderingU3Eb__149_0_m4C6F2BF17884FFAC6F6BD5543D47775D43F67D9F_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec_tAD2991BC81926CE242650EADA7F8BD93F3ABF02C_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XRSystem_tF767981574E3DA643F7A67A995F12DB1C4A97096_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral67B035FAA2672BC4F91A448072DE578A2B9F5586);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral6FC513177EA75930886CBB411CC3D89E5EE6AE10);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
UniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7* V_0 = NULL;
|
|
bool V_1 = false;
|
|
RuntimeObject* V_2 = NULL;
|
|
BeginXRPassData_t34405E999FE849E4AAE7FBA7EE4CF3A4CFD51F01* V_3 = NULL;
|
|
BaseRenderFunc_2_t762A186FC860B473359C6CA1DE69EDCFB3985B45* G_B5_0 = NULL;
|
|
RuntimeObject* G_B5_1 = NULL;
|
|
BaseRenderFunc_2_t762A186FC860B473359C6CA1DE69EDCFB3985B45* G_B4_0 = NULL;
|
|
RuntimeObject* G_B4_1 = NULL;
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1120>
|
|
ContextContainer_t384E08F63FABEFF6A7F1A753F5EF02699DAD414C* L_0;
|
|
L_0 = ScriptableRenderer_get_frameData_m1E575C1F7F79B65139F8AD75EB4B40BB4113714A_inline(__this, NULL);
|
|
NullCheck(L_0);
|
|
UniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7* L_1;
|
|
L_1 = ContextContainer_Get_TisUniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7_mE62F7903614384541B770CC0B9A99BD2E608A0F8_inline(L_0, ContextContainer_Get_TisUniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7_mE62F7903614384541B770CC0B9A99BD2E608A0F8_RuntimeMethod_var);
|
|
V_0 = L_1;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1121>
|
|
UniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7* L_2 = V_0;
|
|
NullCheck(L_2);
|
|
XRPass_tFC4577E97B88E0EAAAB2EB387AB3A92E9EB9C6DF* L_3;
|
|
L_3 = UniversalCameraData_get_xr_mC600E667BA2B92EADF2CF60CD49E15242FA83C4D_inline(L_2, NULL);
|
|
NullCheck(L_3);
|
|
bool L_4;
|
|
L_4 = XRPass_get_enabled_m488D52C18CC6B83FDC3212E98864BA02116A64A3(L_3, NULL);
|
|
if (L_4)
|
|
{
|
|
goto IL_001a;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1122>
|
|
return;
|
|
}
|
|
|
|
IL_001a:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1124>
|
|
il2cpp_codegen_runtime_class_init_inline(XRSystem_tF767981574E3DA643F7A67A995F12DB1C4A97096_il2cpp_TypeInfo_var);
|
|
float L_5;
|
|
L_5 = XRSystem_GetRenderViewportScale_mF6B33B1AA904F881FEA688EBD551E7CD43817D35(NULL);
|
|
V_1 = (bool)((((float)L_5) == ((float)(1.0f)))? 1 : 0);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1127>
|
|
UniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7* L_6 = V_0;
|
|
NullCheck(L_6);
|
|
XRPassUniversal_t8D4B40107F5DBC12D39470D87D108D3D2A8FB8D1* L_7;
|
|
L_7 = UniversalCameraData_get_xrUniversal_mD28B65BB477E408AF63DCA582FA63CB9FDCC01E0(L_6, NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(PlatformAutoDetect_tEEEF1776EA779987D2840527D96D89ADD3177A36_il2cpp_TypeInfo_var);
|
|
bool L_8;
|
|
L_8 = PlatformAutoDetect_get_isXRMobile_mE44C06DAC1F8980BC83D0CE40C3D5551BCF9E448_inline(NULL);
|
|
bool L_9 = V_1;
|
|
NullCheck(L_7);
|
|
XRPassUniversal_set_canFoveateIntermediatePasses_m24F21289F0909F04F4D682C216DBB1C794472D59_inline(L_7, (bool)((int32_t)(((((int32_t)L_8) == ((int32_t)0))? 1 : 0)|(int32_t)L_9)), NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1129>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1130>
|
|
RenderGraph_t73ECE03B3CA3D0D17F1448D64AE020E81592AA1E* L_10 = ___0_renderGraph;
|
|
il2cpp_codegen_runtime_class_init_inline(Profiling_t1148A935DE86EC9E67DA54238721B4178A744AD3_il2cpp_TypeInfo_var);
|
|
ProfilingSampler_t420D4672EDB44E0EF980B31ADFD9E5747200FECE* L_11 = ((Profiling_t1148A935DE86EC9E67DA54238721B4178A744AD3_StaticFields*)il2cpp_codegen_static_fields_for(Profiling_t1148A935DE86EC9E67DA54238721B4178A744AD3_il2cpp_TypeInfo_var))->___beginXRRendering;
|
|
NullCheck(L_10);
|
|
RuntimeObject* L_12;
|
|
L_12 = RenderGraph_AddRasterRenderPass_TisBeginXRPassData_t34405E999FE849E4AAE7FBA7EE4CF3A4CFD51F01_m93BA0C85EB16FA31242B0122BDC3424118D10346(L_10, _stringLiteral6FC513177EA75930886CBB411CC3D89E5EE6AE10, (&V_3), L_11, _stringLiteral67B035FAA2672BC4F91A448072DE578A2B9F5586, ((int32_t)1129), RenderGraph_AddRasterRenderPass_TisBeginXRPassData_t34405E999FE849E4AAE7FBA7EE4CF3A4CFD51F01_m93BA0C85EB16FA31242B0122BDC3424118D10346_RuntimeMethod_var);
|
|
V_2 = L_12;
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_008e:
|
|
{
|
|
{
|
|
RuntimeObject* L_13 = V_2;
|
|
if (!L_13)
|
|
{
|
|
goto IL_0097;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_14 = V_2;
|
|
NullCheck(L_14);
|
|
InterfaceActionInvoker0::Invoke(0, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, L_14);
|
|
}
|
|
|
|
IL_0097:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
});
|
|
try
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1132>
|
|
BeginXRPassData_t34405E999FE849E4AAE7FBA7EE4CF3A4CFD51F01* L_15 = V_3;
|
|
UniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7* L_16 = V_0;
|
|
NullCheck(L_15);
|
|
L_15->___cameraData = L_16;
|
|
Il2CppCodeGenWriteBarrier((void**)(&L_15->___cameraData), (void*)L_16);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1134>
|
|
RuntimeObject* L_17 = V_2;
|
|
NullCheck(L_17);
|
|
InterfaceActionInvoker1< bool >::Invoke(12, IBaseRenderGraphBuilder_tFFF84F72F862F1BE246A789AB6A59F959B490F3D_il2cpp_TypeInfo_var, L_17, (bool)1);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1136>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1137>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1138>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1139>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1140>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1141>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1142>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1143>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1144>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1145>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1146>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1147>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1148>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1149>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1150>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1151>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1152>
|
|
RuntimeObject* L_18 = V_2;
|
|
il2cpp_codegen_runtime_class_init_inline(U3CU3Ec_tAD2991BC81926CE242650EADA7F8BD93F3ABF02C_il2cpp_TypeInfo_var);
|
|
BaseRenderFunc_2_t762A186FC860B473359C6CA1DE69EDCFB3985B45* L_19 = ((U3CU3Ec_tAD2991BC81926CE242650EADA7F8BD93F3ABF02C_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_tAD2991BC81926CE242650EADA7F8BD93F3ABF02C_il2cpp_TypeInfo_var))->___U3CU3E9__149_0;
|
|
BaseRenderFunc_2_t762A186FC860B473359C6CA1DE69EDCFB3985B45* L_20 = L_19;
|
|
if (L_20)
|
|
{
|
|
G_B5_0 = L_20;
|
|
G_B5_1 = L_18;
|
|
goto IL_0087_1;
|
|
}
|
|
G_B4_0 = L_20;
|
|
G_B4_1 = L_18;
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(U3CU3Ec_tAD2991BC81926CE242650EADA7F8BD93F3ABF02C_il2cpp_TypeInfo_var);
|
|
U3CU3Ec_tAD2991BC81926CE242650EADA7F8BD93F3ABF02C* L_21 = ((U3CU3Ec_tAD2991BC81926CE242650EADA7F8BD93F3ABF02C_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_tAD2991BC81926CE242650EADA7F8BD93F3ABF02C_il2cpp_TypeInfo_var))->___U3CU3E9;
|
|
BaseRenderFunc_2_t762A186FC860B473359C6CA1DE69EDCFB3985B45* L_22 = (BaseRenderFunc_2_t762A186FC860B473359C6CA1DE69EDCFB3985B45*)il2cpp_codegen_object_new(BaseRenderFunc_2_t762A186FC860B473359C6CA1DE69EDCFB3985B45_il2cpp_TypeInfo_var);
|
|
BaseRenderFunc_2__ctor_mC7C29FAF2A401ED7E08FC5C843E3394A047BFC89(L_22, L_21, (intptr_t)((void*)U3CU3Ec_U3CBeginRenderGraphXRRenderingU3Eb__149_0_m4C6F2BF17884FFAC6F6BD5543D47775D43F67D9F_RuntimeMethod_var), NULL);
|
|
BaseRenderFunc_2_t762A186FC860B473359C6CA1DE69EDCFB3985B45* L_23 = L_22;
|
|
((U3CU3Ec_tAD2991BC81926CE242650EADA7F8BD93F3ABF02C_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_tAD2991BC81926CE242650EADA7F8BD93F3ABF02C_il2cpp_TypeInfo_var))->___U3CU3E9__149_0 = L_23;
|
|
Il2CppCodeGenWriteBarrier((void**)(&((U3CU3Ec_tAD2991BC81926CE242650EADA7F8BD93F3ABF02C_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_tAD2991BC81926CE242650EADA7F8BD93F3ABF02C_il2cpp_TypeInfo_var))->___U3CU3E9__149_0), (void*)L_23);
|
|
G_B5_0 = L_23;
|
|
G_B5_1 = G_B4_1;
|
|
}
|
|
|
|
IL_0087_1:
|
|
{
|
|
NullCheck(G_B5_1);
|
|
GenericInterfaceActionInvoker1< BaseRenderFunc_2_t762A186FC860B473359C6CA1DE69EDCFB3985B45* >::Invoke(IRasterRenderGraphBuilder_SetRenderFunc_TisBeginXRPassData_t34405E999FE849E4AAE7FBA7EE4CF3A4CFD51F01_m4E4E44B10E61C2799E44668336FB969E9222C747_RuntimeMethod_var, G_B5_1, G_B5_0);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1153>
|
|
goto IL_0098;
|
|
}
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_0098:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1155>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 33407
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ScriptableRenderer_EndRenderGraphXRRendering_mAE45602722F94A46E3EDCFCCBCBAE367A6BDB813 (ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892* __this, RenderGraph_t73ECE03B3CA3D0D17F1448D64AE020E81592AA1E* ___0_renderGraph, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&BaseRenderFunc_2_tF8B0FC77C310265D6F0EA096E14C24E57D0FEAD6_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ContextContainer_Get_TisUniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7_mE62F7903614384541B770CC0B9A99BD2E608A0F8_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IBaseRenderGraphBuilder_tFFF84F72F862F1BE246A789AB6A59F959B490F3D_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IRasterRenderGraphBuilder_SetRenderFunc_TisEndXRPassData_t8FA62D64F60C5147588ACD22BC3136BF31D5A25A_m1C29EA2631520801D13C625295CA1975F94CC0F7_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Profiling_t1148A935DE86EC9E67DA54238721B4178A744AD3_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RenderGraph_AddRasterRenderPass_TisEndXRPassData_t8FA62D64F60C5147588ACD22BC3136BF31D5A25A_m5917DD5E7449922C9FFECDC188C669EB7F700B65_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec_U3CEndRenderGraphXRRenderingU3Eb__151_0_m8D18DCF3F53D2877E901D1157D3CE04DFC12E56C_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec_tAD2991BC81926CE242650EADA7F8BD93F3ABF02C_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral67B035FAA2672BC4F91A448072DE578A2B9F5586);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralB79235FFAA3965D6203E7AEE41246F78E74A2D30);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
UniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7* V_0 = NULL;
|
|
RuntimeObject* V_1 = NULL;
|
|
EndXRPassData_t8FA62D64F60C5147588ACD22BC3136BF31D5A25A* V_2 = NULL;
|
|
BaseRenderFunc_2_tF8B0FC77C310265D6F0EA096E14C24E57D0FEAD6* G_B5_0 = NULL;
|
|
RuntimeObject* G_B5_1 = NULL;
|
|
BaseRenderFunc_2_tF8B0FC77C310265D6F0EA096E14C24E57D0FEAD6* G_B4_0 = NULL;
|
|
RuntimeObject* G_B4_1 = NULL;
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1165>
|
|
ContextContainer_t384E08F63FABEFF6A7F1A753F5EF02699DAD414C* L_0;
|
|
L_0 = ScriptableRenderer_get_frameData_m1E575C1F7F79B65139F8AD75EB4B40BB4113714A_inline(__this, NULL);
|
|
NullCheck(L_0);
|
|
UniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7* L_1;
|
|
L_1 = ContextContainer_Get_TisUniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7_mE62F7903614384541B770CC0B9A99BD2E608A0F8_inline(L_0, ContextContainer_Get_TisUniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7_mE62F7903614384541B770CC0B9A99BD2E608A0F8_RuntimeMethod_var);
|
|
V_0 = L_1;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1166>
|
|
UniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7* L_2 = V_0;
|
|
NullCheck(L_2);
|
|
XRPass_tFC4577E97B88E0EAAAB2EB387AB3A92E9EB9C6DF* L_3;
|
|
L_3 = UniversalCameraData_get_xr_mC600E667BA2B92EADF2CF60CD49E15242FA83C4D_inline(L_2, NULL);
|
|
NullCheck(L_3);
|
|
bool L_4;
|
|
L_4 = XRPass_get_enabled_m488D52C18CC6B83FDC3212E98864BA02116A64A3(L_3, NULL);
|
|
if (L_4)
|
|
{
|
|
goto IL_001a;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1167>
|
|
return;
|
|
}
|
|
|
|
IL_001a:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1169>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1170>
|
|
RenderGraph_t73ECE03B3CA3D0D17F1448D64AE020E81592AA1E* L_5 = ___0_renderGraph;
|
|
il2cpp_codegen_runtime_class_init_inline(Profiling_t1148A935DE86EC9E67DA54238721B4178A744AD3_il2cpp_TypeInfo_var);
|
|
ProfilingSampler_t420D4672EDB44E0EF980B31ADFD9E5747200FECE* L_6 = ((Profiling_t1148A935DE86EC9E67DA54238721B4178A744AD3_StaticFields*)il2cpp_codegen_static_fields_for(Profiling_t1148A935DE86EC9E67DA54238721B4178A744AD3_il2cpp_TypeInfo_var))->___endXRRendering;
|
|
NullCheck(L_5);
|
|
RuntimeObject* L_7;
|
|
L_7 = RenderGraph_AddRasterRenderPass_TisEndXRPassData_t8FA62D64F60C5147588ACD22BC3136BF31D5A25A_m5917DD5E7449922C9FFECDC188C669EB7F700B65(L_5, _stringLiteralB79235FFAA3965D6203E7AEE41246F78E74A2D30, (&V_2), L_6, _stringLiteral67B035FAA2672BC4F91A448072DE578A2B9F5586, ((int32_t)1169), RenderGraph_AddRasterRenderPass_TisEndXRPassData_t8FA62D64F60C5147588ACD22BC3136BF31D5A25A_m5917DD5E7449922C9FFECDC188C669EB7F700B65_RuntimeMethod_var);
|
|
V_1 = L_7;
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_006c:
|
|
{
|
|
{
|
|
RuntimeObject* L_8 = V_1;
|
|
if (!L_8)
|
|
{
|
|
goto IL_0075;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_9 = V_1;
|
|
NullCheck(L_9);
|
|
InterfaceActionInvoker0::Invoke(0, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, L_9);
|
|
}
|
|
|
|
IL_0075:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
});
|
|
try
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1172>
|
|
EndXRPassData_t8FA62D64F60C5147588ACD22BC3136BF31D5A25A* L_10 = V_2;
|
|
UniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7* L_11 = V_0;
|
|
NullCheck(L_10);
|
|
L_10->___cameraData = L_11;
|
|
Il2CppCodeGenWriteBarrier((void**)(&L_10->___cameraData), (void*)L_11);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1174>
|
|
RuntimeObject* L_12 = V_1;
|
|
NullCheck(L_12);
|
|
InterfaceActionInvoker1< bool >::Invoke(12, IBaseRenderGraphBuilder_tFFF84F72F862F1BE246A789AB6A59F959B490F3D_il2cpp_TypeInfo_var, L_12, (bool)1);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1176>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1177>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1178>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1179>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1180>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1181>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1182>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1183>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1184>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1185>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1186>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1187>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1188>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1189>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1190>
|
|
RuntimeObject* L_13 = V_1;
|
|
il2cpp_codegen_runtime_class_init_inline(U3CU3Ec_tAD2991BC81926CE242650EADA7F8BD93F3ABF02C_il2cpp_TypeInfo_var);
|
|
BaseRenderFunc_2_tF8B0FC77C310265D6F0EA096E14C24E57D0FEAD6* L_14 = ((U3CU3Ec_tAD2991BC81926CE242650EADA7F8BD93F3ABF02C_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_tAD2991BC81926CE242650EADA7F8BD93F3ABF02C_il2cpp_TypeInfo_var))->___U3CU3E9__151_0;
|
|
BaseRenderFunc_2_tF8B0FC77C310265D6F0EA096E14C24E57D0FEAD6* L_15 = L_14;
|
|
if (L_15)
|
|
{
|
|
G_B5_0 = L_15;
|
|
G_B5_1 = L_13;
|
|
goto IL_0065_1;
|
|
}
|
|
G_B4_0 = L_15;
|
|
G_B4_1 = L_13;
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(U3CU3Ec_tAD2991BC81926CE242650EADA7F8BD93F3ABF02C_il2cpp_TypeInfo_var);
|
|
U3CU3Ec_tAD2991BC81926CE242650EADA7F8BD93F3ABF02C* L_16 = ((U3CU3Ec_tAD2991BC81926CE242650EADA7F8BD93F3ABF02C_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_tAD2991BC81926CE242650EADA7F8BD93F3ABF02C_il2cpp_TypeInfo_var))->___U3CU3E9;
|
|
BaseRenderFunc_2_tF8B0FC77C310265D6F0EA096E14C24E57D0FEAD6* L_17 = (BaseRenderFunc_2_tF8B0FC77C310265D6F0EA096E14C24E57D0FEAD6*)il2cpp_codegen_object_new(BaseRenderFunc_2_tF8B0FC77C310265D6F0EA096E14C24E57D0FEAD6_il2cpp_TypeInfo_var);
|
|
BaseRenderFunc_2__ctor_m2B1722A731EE8CAEF516B3F8F64DBC8ED438FB98(L_17, L_16, (intptr_t)((void*)U3CU3Ec_U3CEndRenderGraphXRRenderingU3Eb__151_0_m8D18DCF3F53D2877E901D1157D3CE04DFC12E56C_RuntimeMethod_var), NULL);
|
|
BaseRenderFunc_2_tF8B0FC77C310265D6F0EA096E14C24E57D0FEAD6* L_18 = L_17;
|
|
((U3CU3Ec_tAD2991BC81926CE242650EADA7F8BD93F3ABF02C_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_tAD2991BC81926CE242650EADA7F8BD93F3ABF02C_il2cpp_TypeInfo_var))->___U3CU3E9__151_0 = L_18;
|
|
Il2CppCodeGenWriteBarrier((void**)(&((U3CU3Ec_tAD2991BC81926CE242650EADA7F8BD93F3ABF02C_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_tAD2991BC81926CE242650EADA7F8BD93F3ABF02C_il2cpp_TypeInfo_var))->___U3CU3E9__151_0), (void*)L_18);
|
|
G_B5_0 = L_18;
|
|
G_B5_1 = G_B4_1;
|
|
}
|
|
|
|
IL_0065_1:
|
|
{
|
|
NullCheck(G_B5_1);
|
|
GenericInterfaceActionInvoker1< BaseRenderFunc_2_tF8B0FC77C310265D6F0EA096E14C24E57D0FEAD6* >::Invoke(IRasterRenderGraphBuilder_SetRenderFunc_TisEndXRPassData_t8FA62D64F60C5147588ACD22BC3136BF31D5A25A_m1C29EA2631520801D13C625295CA1975F94CC0F7_RuntimeMethod_var, G_B5_1, G_B5_0);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1191>
|
|
goto IL_0076;
|
|
}
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_0076:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1193>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 33408
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ScriptableRenderer_SetEditorTarget_mB110FDCD323078FED9BB3C75F5FCF782184FDE7E (ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892* __this, RenderGraph_t73ECE03B3CA3D0D17F1448D64AE020E81592AA1E* ___0_renderGraph, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&BaseRenderFunc_2_tECA37CC68AF2BD6C31F2DFF58EF746DC7B2C5AFE_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IBaseRenderGraphBuilder_tFFF84F72F862F1BE246A789AB6A59F959B490F3D_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IUnsafeRenderGraphBuilder_SetRenderFunc_TisDummyData_t0F37F8F2F4E1851082C4B35762C12D62971E203F_m6B154C5280F6BF3A6CBCBCCE9EA36BA025D37A9E_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Profiling_t1148A935DE86EC9E67DA54238721B4178A744AD3_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RenderGraph_AddUnsafePass_TisDummyData_t0F37F8F2F4E1851082C4B35762C12D62971E203F_m7B296C57DF5E9B5C70BF2BA1BC818CFFAD480146_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec_U3CSetEditorTargetU3Eb__153_0_mDB332146B6CCC80D9841C0AC62AAD7BD07EA1547_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec_tAD2991BC81926CE242650EADA7F8BD93F3ABF02C_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral1207783D31D1A2E5A99C93170F5C262AAE859FA3);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral67B035FAA2672BC4F91A448072DE578A2B9F5586);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
RuntimeObject* V_0 = NULL;
|
|
DummyData_t0F37F8F2F4E1851082C4B35762C12D62971E203F* V_1 = NULL;
|
|
BaseRenderFunc_2_tECA37CC68AF2BD6C31F2DFF58EF746DC7B2C5AFE* G_B3_0 = NULL;
|
|
RuntimeObject* G_B3_1 = NULL;
|
|
BaseRenderFunc_2_tECA37CC68AF2BD6C31F2DFF58EF746DC7B2C5AFE* G_B2_0 = NULL;
|
|
RuntimeObject* G_B2_1 = NULL;
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1201>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1202>
|
|
RenderGraph_t73ECE03B3CA3D0D17F1448D64AE020E81592AA1E* L_0 = ___0_renderGraph;
|
|
il2cpp_codegen_runtime_class_init_inline(Profiling_t1148A935DE86EC9E67DA54238721B4178A744AD3_il2cpp_TypeInfo_var);
|
|
ProfilingSampler_t420D4672EDB44E0EF980B31ADFD9E5747200FECE* L_1 = ((Profiling_t1148A935DE86EC9E67DA54238721B4178A744AD3_StaticFields*)il2cpp_codegen_static_fields_for(Profiling_t1148A935DE86EC9E67DA54238721B4178A744AD3_il2cpp_TypeInfo_var))->___setEditorTarget;
|
|
NullCheck(L_0);
|
|
RuntimeObject* L_2;
|
|
L_2 = RenderGraph_AddUnsafePass_TisDummyData_t0F37F8F2F4E1851082C4B35762C12D62971E203F_m7B296C57DF5E9B5C70BF2BA1BC818CFFAD480146(L_0, _stringLiteral1207783D31D1A2E5A99C93170F5C262AAE859FA3, (&V_1), L_1, _stringLiteral67B035FAA2672BC4F91A448072DE578A2B9F5586, ((int32_t)1201), RenderGraph_AddUnsafePass_TisDummyData_t0F37F8F2F4E1851082C4B35762C12D62971E203F_m7B296C57DF5E9B5C70BF2BA1BC818CFFAD480146_RuntimeMethod_var);
|
|
V_0 = L_2;
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_004b:
|
|
{
|
|
{
|
|
RuntimeObject* L_3 = V_0;
|
|
if (!L_3)
|
|
{
|
|
goto IL_0054;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_4 = V_0;
|
|
NullCheck(L_4);
|
|
InterfaceActionInvoker0::Invoke(0, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, L_4);
|
|
}
|
|
|
|
IL_0054:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
});
|
|
try
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1204>
|
|
RuntimeObject* L_5 = V_0;
|
|
NullCheck(L_5);
|
|
InterfaceActionInvoker1< bool >::Invoke(11, IBaseRenderGraphBuilder_tFFF84F72F862F1BE246A789AB6A59F959B490F3D_il2cpp_TypeInfo_var, L_5, (bool)0);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1206>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1207>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1208>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1209>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1210>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1211>
|
|
RuntimeObject* L_6 = V_0;
|
|
il2cpp_codegen_runtime_class_init_inline(U3CU3Ec_tAD2991BC81926CE242650EADA7F8BD93F3ABF02C_il2cpp_TypeInfo_var);
|
|
BaseRenderFunc_2_tECA37CC68AF2BD6C31F2DFF58EF746DC7B2C5AFE* L_7 = ((U3CU3Ec_tAD2991BC81926CE242650EADA7F8BD93F3ABF02C_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_tAD2991BC81926CE242650EADA7F8BD93F3ABF02C_il2cpp_TypeInfo_var))->___U3CU3E9__153_0;
|
|
BaseRenderFunc_2_tECA37CC68AF2BD6C31F2DFF58EF746DC7B2C5AFE* L_8 = L_7;
|
|
if (L_8)
|
|
{
|
|
G_B3_0 = L_8;
|
|
G_B3_1 = L_6;
|
|
goto IL_0044_1;
|
|
}
|
|
G_B2_0 = L_8;
|
|
G_B2_1 = L_6;
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(U3CU3Ec_tAD2991BC81926CE242650EADA7F8BD93F3ABF02C_il2cpp_TypeInfo_var);
|
|
U3CU3Ec_tAD2991BC81926CE242650EADA7F8BD93F3ABF02C* L_9 = ((U3CU3Ec_tAD2991BC81926CE242650EADA7F8BD93F3ABF02C_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_tAD2991BC81926CE242650EADA7F8BD93F3ABF02C_il2cpp_TypeInfo_var))->___U3CU3E9;
|
|
BaseRenderFunc_2_tECA37CC68AF2BD6C31F2DFF58EF746DC7B2C5AFE* L_10 = (BaseRenderFunc_2_tECA37CC68AF2BD6C31F2DFF58EF746DC7B2C5AFE*)il2cpp_codegen_object_new(BaseRenderFunc_2_tECA37CC68AF2BD6C31F2DFF58EF746DC7B2C5AFE_il2cpp_TypeInfo_var);
|
|
BaseRenderFunc_2__ctor_m031C0A7A670EBF4FFB64EAB9165F5407C2C38E91(L_10, L_9, (intptr_t)((void*)U3CU3Ec_U3CSetEditorTargetU3Eb__153_0_mDB332146B6CCC80D9841C0AC62AAD7BD07EA1547_RuntimeMethod_var), NULL);
|
|
BaseRenderFunc_2_tECA37CC68AF2BD6C31F2DFF58EF746DC7B2C5AFE* L_11 = L_10;
|
|
((U3CU3Ec_tAD2991BC81926CE242650EADA7F8BD93F3ABF02C_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_tAD2991BC81926CE242650EADA7F8BD93F3ABF02C_il2cpp_TypeInfo_var))->___U3CU3E9__153_0 = L_11;
|
|
Il2CppCodeGenWriteBarrier((void**)(&((U3CU3Ec_tAD2991BC81926CE242650EADA7F8BD93F3ABF02C_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_tAD2991BC81926CE242650EADA7F8BD93F3ABF02C_il2cpp_TypeInfo_var))->___U3CU3E9__153_0), (void*)L_11);
|
|
G_B3_0 = L_11;
|
|
G_B3_1 = G_B2_1;
|
|
}
|
|
|
|
IL_0044_1:
|
|
{
|
|
NullCheck(G_B3_1);
|
|
GenericInterfaceActionInvoker1< BaseRenderFunc_2_tECA37CC68AF2BD6C31F2DFF58EF746DC7B2C5AFE* >::Invoke(IUnsafeRenderGraphBuilder_SetRenderFunc_TisDummyData_t0F37F8F2F4E1851082C4B35762C12D62971E203F_m6B154C5280F6BF3A6CBCBCCE9EA36BA025D37A9E_RuntimeMethod_var, G_B3_1, G_B3_0);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1212>
|
|
goto IL_0055;
|
|
}
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_0055:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1213>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 33409
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ScriptableRenderer_RecordRenderGraph_m8705FC1BFAC31DC841F164DD0123568515993911 (ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892* __this, RenderGraph_t73ECE03B3CA3D0D17F1448D64AE020E81592AA1E* ___0_renderGraph, ScriptableRenderContext_t5AB09B3602BEB456E0DC3D53926D3A3BDAF08E36 ___1_context, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ProfilingSampler_Get_TisURPProfileId_tA83520239B6C0F10A73CCC6CEC7D3DA1F1932481_m9F3104BDEBD70A287E8F4BAC86579564A19A5661_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Profiling_t1148A935DE86EC9E67DA54238721B4178A744AD3_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
ProfilingScope_t57898BA31E8EF8F083EF84E0DA2737AC61CBC5BD V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
ProfilingScope_t57898BA31E8EF8F083EF84E0DA2737AC61CBC5BD V_1;
|
|
memset((&V_1), 0, sizeof(V_1));
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1233>
|
|
ProfilingSampler_t420D4672EDB44E0EF980B31ADFD9E5747200FECE* L_0;
|
|
L_0 = ProfilingSampler_Get_TisURPProfileId_tA83520239B6C0F10A73CCC6CEC7D3DA1F1932481_m9F3104BDEBD70A287E8F4BAC86579564A19A5661(((int32_t)13), ProfilingSampler_Get_TisURPProfileId_tA83520239B6C0F10A73CCC6CEC7D3DA1F1932481_m9F3104BDEBD70A287E8F4BAC86579564A19A5661_RuntimeMethod_var);
|
|
ProfilingScope__ctor_m4B73587A2295443A73B64DDD3D484D8EAECC0D65((&V_0), L_0, NULL);
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_006c:
|
|
{
|
|
ProfilingScope_Dispose_m4231A2ACA1F8E345BB0078310A9F7601704C8BE4((&V_0), NULL);
|
|
return;
|
|
}
|
|
});
|
|
try
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1235>
|
|
VirtualActionInvoker0::Invoke(17, __this);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1237>
|
|
il2cpp_codegen_runtime_class_init_inline(Profiling_t1148A935DE86EC9E67DA54238721B4178A744AD3_il2cpp_TypeInfo_var);
|
|
ProfilingSampler_t420D4672EDB44E0EF980B31ADFD9E5747200FECE* L_1 = ((Profiling_t1148A935DE86EC9E67DA54238721B4178A744AD3_StaticFields*)il2cpp_codegen_static_fields_for(Profiling_t1148A935DE86EC9E67DA54238721B4178A744AD3_il2cpp_TypeInfo_var))->___sortRenderPasses;
|
|
ProfilingScope_t57898BA31E8EF8F083EF84E0DA2737AC61CBC5BD L_2;
|
|
memset((&L_2), 0, sizeof(L_2));
|
|
ProfilingScope__ctor_m4B73587A2295443A73B64DDD3D484D8EAECC0D65((&L_2), L_1, NULL);
|
|
V_1 = L_2;
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_002c_1:
|
|
{
|
|
ProfilingScope_Dispose_m4231A2ACA1F8E345BB0078310A9F7601704C8BE4((&V_1), NULL);
|
|
return;
|
|
}
|
|
});
|
|
try
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1240>
|
|
List_1_t2E485E650BF1E41358CE56A69323E183C5A89CB6* L_3 = __this->___m_ActiveRenderPassQueue;
|
|
il2cpp_codegen_runtime_class_init_inline(ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892_il2cpp_TypeInfo_var);
|
|
ScriptableRenderer_SortStable_m5266EFB9F8D83E6ABFF9D788588E5050FC3503B3(L_3, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1241>
|
|
goto IL_003a_1;
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_003a_1:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1243>
|
|
RenderGraph_t73ECE03B3CA3D0D17F1448D64AE020E81592AA1E* L_4 = ___0_renderGraph;
|
|
ScriptableRenderer_InitRenderGraphFrame_m75834DCCB3CED56C4538CAA7D6B9E4756E6BF9C0(__this, L_4, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1245>
|
|
il2cpp_codegen_runtime_class_init_inline(Profiling_t1148A935DE86EC9E67DA54238721B4178A744AD3_il2cpp_TypeInfo_var);
|
|
ProfilingSampler_t420D4672EDB44E0EF980B31ADFD9E5747200FECE* L_5 = ((Profiling_t1148A935DE86EC9E67DA54238721B4178A744AD3_StaticFields*)il2cpp_codegen_static_fields_for(Profiling_t1148A935DE86EC9E67DA54238721B4178A744AD3_il2cpp_TypeInfo_var))->___recordRenderGraph;
|
|
ProfilingScope_t57898BA31E8EF8F083EF84E0DA2737AC61CBC5BD L_6;
|
|
memset((&L_6), 0, sizeof(L_6));
|
|
ProfilingScope__ctor_m4B73587A2295443A73B64DDD3D484D8EAECC0D65((&L_6), L_5, NULL);
|
|
V_1 = L_6;
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_0056_1:
|
|
{
|
|
ProfilingScope_Dispose_m4231A2ACA1F8E345BB0078310A9F7601704C8BE4((&V_1), NULL);
|
|
return;
|
|
}
|
|
});
|
|
try
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1247>
|
|
RenderGraph_t73ECE03B3CA3D0D17F1448D64AE020E81592AA1E* L_7 = ___0_renderGraph;
|
|
ScriptableRenderContext_t5AB09B3602BEB456E0DC3D53926D3A3BDAF08E36 L_8 = ___1_context;
|
|
VirtualActionInvoker2< RenderGraph_t73ECE03B3CA3D0D17F1448D64AE020E81592AA1E*, ScriptableRenderContext_t5AB09B3602BEB456E0DC3D53926D3A3BDAF08E36 >::Invoke(18, __this, L_7, L_8);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1248>
|
|
goto IL_0064_1;
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_0064_1:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1250>
|
|
VirtualActionInvoker0::Invoke(19, __this);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1262>
|
|
goto IL_007a;
|
|
}
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_007a:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1263>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 33410
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ScriptableRenderer_FinishRenderGraphRendering_m71274CFBF7A4B448F2400BDEFFF1B0899E2F2095 (ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892* __this, CommandBuffer_tB56007DC84EF56296C325EC32DD12AC1E3DC91F7* ___0_cmd, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ContextContainer_Get_TisUniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7_mE62F7903614384541B770CC0B9A99BD2E608A0F8_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
UniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7* V_0 = NULL;
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1272>
|
|
ContextContainer_t384E08F63FABEFF6A7F1A753F5EF02699DAD414C* L_0;
|
|
L_0 = ScriptableRenderer_get_frameData_m1E575C1F7F79B65139F8AD75EB4B40BB4113714A_inline(__this, NULL);
|
|
NullCheck(L_0);
|
|
UniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7* L_1;
|
|
L_1 = ContextContainer_Get_TisUniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7_mE62F7903614384541B770CC0B9A99BD2E608A0F8_inline(L_0, ContextContainer_Get_TisUniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7_mE62F7903614384541B770CC0B9A99BD2E608A0F8_RuntimeMethod_var);
|
|
V_0 = L_1;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1273>
|
|
CommandBuffer_tB56007DC84EF56296C325EC32DD12AC1E3DC91F7* L_2 = ___0_cmd;
|
|
VirtualActionInvoker1< CommandBuffer_tB56007DC84EF56296C325EC32DD12AC1E3DC91F7* >::Invoke(20, __this, L_2);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1274>
|
|
CommandBuffer_tB56007DC84EF56296C325EC32DD12AC1E3DC91F7* L_3 = ___0_cmd;
|
|
UniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7* L_4 = V_0;
|
|
NullCheck(L_4);
|
|
bool L_5 = L_4->___resolveFinalTarget;
|
|
ScriptableRenderer_InternalFinishRenderingCommon_mFE9C1F42371A0829FB616D7F3518712724E71F03(__this, L_3, L_5, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1275>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 33411
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ScriptableRenderer_OnFinishRenderGraphRendering_mECF3A26E5E897D9516B538D2C448CE238E436657 (ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892* __this, CommandBuffer_tB56007DC84EF56296C325EC32DD12AC1E3DC91F7* ___0_cmd, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1284>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 33412
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ScriptableRenderer_RecordCustomRenderGraphPassesInEventRange_m33A833837BC676068A0FC66E0FB6E20B5401EC6A (ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892* __this, RenderGraph_t73ECE03B3CA3D0D17F1448D64AE020E81592AA1E* ___0_renderGraph, int32_t ___1_eventStart, int32_t ___2_eventEnd, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_Dispose_m334C7EB9FBAEA8BC87ECC95C2C0D322E498B6699_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_MoveNext_m29C44877AE440B7C67CDFC9AF883993C67C51115_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_get_Current_m9F173585FAD931312EF7F684265C41C5747AD600_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_GetEnumerator_m82EFB25742BBF4B896DD9DCB9BED813145B9F14E_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
Enumerator_t217065C53B57E784E09AB2704818CE6F68D07625 V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* V_1 = NULL;
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1289>
|
|
int32_t L_0 = ___1_eventStart;
|
|
int32_t L_1 = ___2_eventEnd;
|
|
if ((((int32_t)L_0) == ((int32_t)L_1)))
|
|
{
|
|
goto IL_0052;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1291>
|
|
List_1_t2E485E650BF1E41358CE56A69323E183C5A89CB6* L_2 = __this->___m_ActiveRenderPassQueue;
|
|
NullCheck(L_2);
|
|
Enumerator_t217065C53B57E784E09AB2704818CE6F68D07625 L_3;
|
|
L_3 = List_1_GetEnumerator_m82EFB25742BBF4B896DD9DCB9BED813145B9F14E(L_2, List_1_GetEnumerator_m82EFB25742BBF4B896DD9DCB9BED813145B9F14E_RuntimeMethod_var);
|
|
V_0 = L_3;
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_0044:
|
|
{
|
|
Enumerator_Dispose_m334C7EB9FBAEA8BC87ECC95C2C0D322E498B6699((&V_0), Enumerator_Dispose_m334C7EB9FBAEA8BC87ECC95C2C0D322E498B6699_RuntimeMethod_var);
|
|
return;
|
|
}
|
|
});
|
|
try
|
|
{
|
|
{
|
|
goto IL_0039_1;
|
|
}
|
|
|
|
IL_0012_1:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1291>
|
|
ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* L_4;
|
|
L_4 = Enumerator_get_Current_m9F173585FAD931312EF7F684265C41C5747AD600_inline((&V_0), Enumerator_get_Current_m9F173585FAD931312EF7F684265C41C5747AD600_RuntimeMethod_var);
|
|
V_1 = L_4;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1293>
|
|
ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* L_5 = V_1;
|
|
NullCheck(L_5);
|
|
int32_t L_6;
|
|
L_6 = ScriptableRenderPass_get_renderPassEvent_mD7ED1EFBF050FE1F86D598FA9A1A987CFEAD1AEE_inline(L_5, NULL);
|
|
int32_t L_7 = ___1_eventStart;
|
|
if ((((int32_t)L_6) < ((int32_t)L_7)))
|
|
{
|
|
goto IL_0039_1;
|
|
}
|
|
}
|
|
{
|
|
ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* L_8 = V_1;
|
|
NullCheck(L_8);
|
|
int32_t L_9;
|
|
L_9 = ScriptableRenderPass_get_renderPassEvent_mD7ED1EFBF050FE1F86D598FA9A1A987CFEAD1AEE_inline(L_8, NULL);
|
|
int32_t L_10 = ___2_eventEnd;
|
|
if ((((int32_t)L_9) >= ((int32_t)L_10)))
|
|
{
|
|
goto IL_0039_1;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1294>
|
|
ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* L_11 = V_1;
|
|
RenderGraph_t73ECE03B3CA3D0D17F1448D64AE020E81592AA1E* L_12 = ___0_renderGraph;
|
|
ContextContainer_t384E08F63FABEFF6A7F1A753F5EF02699DAD414C* L_13 = __this->___m_frameData;
|
|
NullCheck(L_11);
|
|
VirtualActionInvoker2< RenderGraph_t73ECE03B3CA3D0D17F1448D64AE020E81592AA1E*, ContextContainer_t384E08F63FABEFF6A7F1A753F5EF02699DAD414C* >::Invoke(11, L_11, L_12, L_13);
|
|
}
|
|
|
|
IL_0039_1:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1291>
|
|
bool L_14;
|
|
L_14 = Enumerator_MoveNext_m29C44877AE440B7C67CDFC9AF883993C67C51115((&V_0), Enumerator_MoveNext_m29C44877AE440B7C67CDFC9AF883993C67C51115_RuntimeMethod_var);
|
|
if (L_14)
|
|
{
|
|
goto IL_0012_1;
|
|
}
|
|
}
|
|
{
|
|
goto IL_0052;
|
|
}
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_0052:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1297>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 33413
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ScriptableRenderer_CalculateSplitEventRange_m574AD0348B58BFCD03C177E3B46ACAE8310D8D9D (ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892* __this, int32_t ___0_startInjectionPoint, int32_t ___1_targetEvent, int32_t* ___2_startEvent, int32_t* ___3_splitEvent, int32_t* ___4_endEvent, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Math_tEB65DE7CA8B083C412C969C92981C030865486CE_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int32_t V_0 = 0;
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1301>
|
|
int32_t L_0 = ___0_startInjectionPoint;
|
|
il2cpp_codegen_runtime_class_init_inline(ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0_il2cpp_TypeInfo_var);
|
|
int32_t L_1;
|
|
L_1 = ScriptableRenderPass_GetRenderPassEventRange_mF12257DB57D18DF179F2581C18A85E68997CB1E9(L_0, NULL);
|
|
V_0 = L_1;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1303>
|
|
int32_t* L_2 = ___2_startEvent;
|
|
int32_t L_3 = ___0_startInjectionPoint;
|
|
*((int32_t*)L_2) = (int32_t)L_3;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1304>
|
|
int32_t* L_4 = ___4_endEvent;
|
|
int32_t* L_5 = ___2_startEvent;
|
|
int32_t L_6 = *((int32_t*)L_5);
|
|
int32_t L_7 = V_0;
|
|
*((int32_t*)L_4) = (int32_t)((int32_t)il2cpp_codegen_add(L_6, L_7));
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1306>
|
|
int32_t* L_8 = ___3_splitEvent;
|
|
int32_t L_9 = ___1_targetEvent;
|
|
int32_t* L_10 = ___2_startEvent;
|
|
int32_t L_11 = *((int32_t*)L_10);
|
|
int32_t* L_12 = ___4_endEvent;
|
|
int32_t L_13 = *((int32_t*)L_12);
|
|
il2cpp_codegen_runtime_class_init_inline(Math_tEB65DE7CA8B083C412C969C92981C030865486CE_il2cpp_TypeInfo_var);
|
|
int32_t L_14;
|
|
L_14 = Math_Clamp_mAB687477D3AAC0E7243D724F45626026980CE2FF_inline(L_9, L_11, L_13, NULL);
|
|
*((int32_t*)L_8) = (int32_t)L_14;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1307>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 33414
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ScriptableRenderer_RecordCustomRenderGraphPasses_mC0B3716CDF203EAECD6665C1A87083AD1A139B8E (ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892* __this, RenderGraph_t73ECE03B3CA3D0D17F1448D64AE020E81592AA1E* ___0_renderGraph, int32_t ___1_startInjectionPoint, int32_t ___2_endInjectionPoint, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int32_t V_0 = 0;
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1311>
|
|
int32_t L_0 = ___2_endInjectionPoint;
|
|
il2cpp_codegen_runtime_class_init_inline(ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0_il2cpp_TypeInfo_var);
|
|
int32_t L_1;
|
|
L_1 = ScriptableRenderPass_GetRenderPassEventRange_mF12257DB57D18DF179F2581C18A85E68997CB1E9(L_0, NULL);
|
|
V_0 = L_1;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1313>
|
|
RenderGraph_t73ECE03B3CA3D0D17F1448D64AE020E81592AA1E* L_2 = ___0_renderGraph;
|
|
int32_t L_3 = ___1_startInjectionPoint;
|
|
int32_t L_4 = ___2_endInjectionPoint;
|
|
int32_t L_5 = V_0;
|
|
ScriptableRenderer_RecordCustomRenderGraphPassesInEventRange_m33A833837BC676068A0FC66E0FB6E20B5401EC6A(__this, L_2, L_3, ((int32_t)il2cpp_codegen_add((int32_t)L_4, L_5)), NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1314>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 33415
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ScriptableRenderer_RecordCustomRenderGraphPasses_mEB65C512A6F6D4AA794BC59F17E805800257DAA4 (ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892* __this, RenderGraph_t73ECE03B3CA3D0D17F1448D64AE020E81592AA1E* ___0_renderGraph, int32_t ___1_injectionPoint, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1318>
|
|
RenderGraph_t73ECE03B3CA3D0D17F1448D64AE020E81592AA1E* L_0 = ___0_renderGraph;
|
|
int32_t L_1 = ___1_injectionPoint;
|
|
int32_t L_2 = ___1_injectionPoint;
|
|
ScriptableRenderer_RecordCustomRenderGraphPasses_mC0B3716CDF203EAECD6665C1A87083AD1A139B8E(__this, L_0, L_1, L_2, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1319>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 33416
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ScriptableRenderer_SetPerCameraProperties_m5488703BD4F0541BD829D86DD1FE2CB1FD6ABC38 (ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892* __this, ScriptableRenderContext_t5AB09B3602BEB456E0DC3D53926D3A3BDAF08E36 ___0_context, UniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7* ___1_cameraData, Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184* ___2_camera, CommandBuffer_tB56007DC84EF56296C325EC32DD12AC1E3DC91F7* ___3_cmd, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CommandBufferHelpers_tB8C09D01D6F0369DF52DEA955F017D6001BC72E5_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ScriptableRenderContext_t5AB09B3602BEB456E0DC3D53926D3A3BDAF08E36_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1324>
|
|
UniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7* L_0 = ___1_cameraData;
|
|
NullCheck(L_0);
|
|
int32_t L_1 = L_0->___renderType;
|
|
if (L_1)
|
|
{
|
|
goto IL_0020;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1326>
|
|
Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184* L_2 = ___2_camera;
|
|
il2cpp_codegen_runtime_class_init_inline(ScriptableRenderContext_t5AB09B3602BEB456E0DC3D53926D3A3BDAF08E36_il2cpp_TypeInfo_var);
|
|
ScriptableRenderContext_SetupCameraProperties_mF45D617B34789AD064BF375CF50C854EAA20E4E8((&___0_context), L_2, (bool)0, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1327>
|
|
CommandBuffer_tB56007DC84EF56296C325EC32DD12AC1E3DC91F7* L_3 = ___3_cmd;
|
|
il2cpp_codegen_runtime_class_init_inline(CommandBufferHelpers_tB8C09D01D6F0369DF52DEA955F017D6001BC72E5_il2cpp_TypeInfo_var);
|
|
RasterCommandBuffer_t4300C4F080EA3CF43C7ACFDBD4F94EA633FE98E8* L_4;
|
|
L_4 = CommandBufferHelpers_GetRasterCommandBuffer_m6086D650343F166614B3FB5ED89D63DE8F85C42B_inline(L_3, NULL);
|
|
UniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7* L_5 = ___1_cameraData;
|
|
ScriptableRenderer_SetPerCameraShaderVariables_mB52055FC973AD3E42659F6C6FA1BD1EA20272630(__this, L_4, L_5, NULL);
|
|
return;
|
|
}
|
|
|
|
IL_0020:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1332>
|
|
CommandBuffer_tB56007DC84EF56296C325EC32DD12AC1E3DC91F7* L_6 = ___3_cmd;
|
|
il2cpp_codegen_runtime_class_init_inline(CommandBufferHelpers_tB8C09D01D6F0369DF52DEA955F017D6001BC72E5_il2cpp_TypeInfo_var);
|
|
RasterCommandBuffer_t4300C4F080EA3CF43C7ACFDBD4F94EA633FE98E8* L_7;
|
|
L_7 = CommandBufferHelpers_GetRasterCommandBuffer_m6086D650343F166614B3FB5ED89D63DE8F85C42B_inline(L_6, NULL);
|
|
UniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7* L_8 = ___1_cameraData;
|
|
ScriptableRenderer_SetPerCameraShaderVariables_mB52055FC973AD3E42659F6C6FA1BD1EA20272630(__this, L_7, L_8, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1333>
|
|
CommandBuffer_tB56007DC84EF56296C325EC32DD12AC1E3DC91F7* L_9 = ___3_cmd;
|
|
RasterCommandBuffer_t4300C4F080EA3CF43C7ACFDBD4F94EA633FE98E8* L_10;
|
|
L_10 = CommandBufferHelpers_GetRasterCommandBuffer_m6086D650343F166614B3FB5ED89D63DE8F85C42B_inline(L_9, NULL);
|
|
UniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7* L_11 = ___1_cameraData;
|
|
ScriptableRenderer_SetPerCameraClippingPlaneProperties_mCC96BE703D17EBBC2E5E54D60AECE0C16F0303C2(__this, L_10, L_11, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1334>
|
|
CommandBuffer_tB56007DC84EF56296C325EC32DD12AC1E3DC91F7* L_12 = ___3_cmd;
|
|
RasterCommandBuffer_t4300C4F080EA3CF43C7ACFDBD4F94EA633FE98E8* L_13;
|
|
L_13 = CommandBufferHelpers_GetRasterCommandBuffer_m6086D650343F166614B3FB5ED89D63DE8F85C42B_inline(L_12, NULL);
|
|
UniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7* L_14 = ___1_cameraData;
|
|
ScriptableRenderer_SetPerCameraBillboardProperties_m69C48E7A4F33AA5EA6BAA072A5924FCD2A0C4DB7(__this, L_13, L_14, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1336>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 33417
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ScriptableRenderer_Execute_mE85233DCC39EBB33CDC1B79B1F36873567F25A7F (ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892* __this, ScriptableRenderContext_t5AB09B3602BEB456E0DC3D53926D3A3BDAF08E36 ___0_context, RenderingData_tAAA01190551D6D5954314E3E1E85B58DD45EED71* ___1_renderingData, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CommandBufferHelpers_tB8C09D01D6F0369DF52DEA955F017D6001BC72E5_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ContextContainer_Get_TisUniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7_mE62F7903614384541B770CC0B9A99BD2E608A0F8_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DebugDisplaySettings_1_get_Instance_m6C56D7F9230F1B79878679208F04EE70F413D93B_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DebugDisplaySettings_1_tF9BB40752190C9012A404A38AD943959A102497A_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_Dispose_m334C7EB9FBAEA8BC87ECC95C2C0D322E498B6699_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_MoveNext_m29C44877AE440B7C67CDFC9AF883993C67C51115_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_get_Current_m9F173585FAD931312EF7F684265C41C5747AD600_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_GetEnumerator_m82EFB25742BBF4B896DD9DCB9BED813145B9F14E_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Count_m81D0B7C641653EC8742F7B48EC513ECBD2A61C97_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Count_mE6D3D9D20C29AB0625389FEF206BBFF202CD5293_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Item_mBC42042D4082F4C6237FEA3435D58D570436268F_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NativeArray_1_Dispose_m05C674E687B921C37722A6A1FF938FD56574642E_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Profiling_t1148A935DE86EC9E67DA54238721B4178A744AD3_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RenderBlock_t7243EA6BF13109280A62FF4C7108E5C2F8676712_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RenderPassBlock_t584C655A57D46F7421E00DB28F125ABB455C796C_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RenderPass_tA744ADA1424B5992F4E272692C1964A7B7469EFD_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ScriptableRenderContext_t5AB09B3602BEB456E0DC3D53926D3A3BDAF08E36_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
bool V_0 = false;
|
|
UniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7* V_1 = NULL;
|
|
Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184* V_2 = NULL;
|
|
CommandBuffer_tB56007DC84EF56296C325EC32DD12AC1E3DC91F7* V_3 = NULL;
|
|
CommandBuffer_tB56007DC84EF56296C325EC32DD12AC1E3DC91F7* V_4 = NULL;
|
|
ProfilingScope_t57898BA31E8EF8F083EF84E0DA2737AC61CBC5BD V_5;
|
|
memset((&V_5), 0, sizeof(V_5));
|
|
float V_6 = 0.0f;
|
|
float V_7 = 0.0f;
|
|
float V_8 = 0.0f;
|
|
RenderBlocks_t59A6A04E57D947104DA8D449CCB1D406F19DB072 V_9;
|
|
memset((&V_9), 0, sizeof(V_9));
|
|
ProfilingScope_t57898BA31E8EF8F083EF84E0DA2737AC61CBC5BD V_10;
|
|
memset((&V_10), 0, sizeof(V_10));
|
|
Enumerator_t217065C53B57E784E09AB2704818CE6F68D07625 V_11;
|
|
memset((&V_11), 0, sizeof(V_11));
|
|
ProfilingScope_t57898BA31E8EF8F083EF84E0DA2737AC61CBC5BD V_12;
|
|
memset((&V_12), 0, sizeof(V_12));
|
|
ProfilingScope_t57898BA31E8EF8F083EF84E0DA2737AC61CBC5BD V_13;
|
|
memset((&V_13), 0, sizeof(V_13));
|
|
ProfilingScope_t57898BA31E8EF8F083EF84E0DA2737AC61CBC5BD V_14;
|
|
memset((&V_14), 0, sizeof(V_14));
|
|
ProfilingScope_t57898BA31E8EF8F083EF84E0DA2737AC61CBC5BD V_15;
|
|
memset((&V_15), 0, sizeof(V_15));
|
|
int32_t V_16 = 0;
|
|
CommandBuffer_tB56007DC84EF56296C325EC32DD12AC1E3DC91F7* G_B6_0 = NULL;
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1347>
|
|
il2cpp_codegen_runtime_class_init_inline(DebugDisplaySettings_1_tF9BB40752190C9012A404A38AD943959A102497A_il2cpp_TypeInfo_var);
|
|
UniversalRenderPipelineDebugDisplaySettings_t8E70DD217918DB0E7BD8BCCD9958C3E781DE0653* L_0;
|
|
L_0 = DebugDisplaySettings_1_get_Instance_m6C56D7F9230F1B79878679208F04EE70F413D93B(DebugDisplaySettings_1_get_Instance_m6C56D7F9230F1B79878679208F04EE70F413D93B_RuntimeMethod_var);
|
|
NullCheck(L_0);
|
|
DebugDisplaySettingsRendering_t0112AECF41E04E8EB029F3B2C769BB05A72D50F3* L_1;
|
|
L_1 = UniversalRenderPipelineDebugDisplaySettings_get_renderingSettings_m97737CDDE93484CC032281F18A59EB5D0CB7DCC6_inline(L_0, NULL);
|
|
NullCheck(L_1);
|
|
int32_t L_2;
|
|
L_2 = DebugDisplaySettingsRendering_get_sceneOverrideMode_m4D5732DD1FD1413E5802B83A60BF22B06E96BB01_inline(L_1, NULL);
|
|
V_0 = (bool)((((int32_t)L_2) == ((int32_t)0))? 1 : 0);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1348>
|
|
__this->___hasReleasedRTs = (bool)0;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1349>
|
|
__this->___m_IsPipelineExecuting = (bool)1;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1350>
|
|
RenderingData_tAAA01190551D6D5954314E3E1E85B58DD45EED71* L_3 = ___1_renderingData;
|
|
ContextContainer_t384E08F63FABEFF6A7F1A753F5EF02699DAD414C* L_4 = L_3->___frameData;
|
|
NullCheck(L_4);
|
|
UniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7* L_5;
|
|
L_5 = ContextContainer_Get_TisUniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7_mE62F7903614384541B770CC0B9A99BD2E608A0F8_inline(L_4, ContextContainer_Get_TisUniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7_mE62F7903614384541B770CC0B9A99BD2E608A0F8_RuntimeMethod_var);
|
|
V_1 = L_5;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1351>
|
|
UniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7* L_6 = V_1;
|
|
NullCheck(L_6);
|
|
Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184* L_7 = L_6->___camera;
|
|
V_2 = L_7;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1354>
|
|
List_1_t2121653FB628940E808D105AD2C17E0F20AFB3A6* L_8;
|
|
L_8 = ScriptableRenderer_get_rendererFeatures_m2473415AE63D3735ACBD7BF7CAEA7CB0315A7057_inline(__this, NULL);
|
|
NullCheck(L_8);
|
|
int32_t L_9;
|
|
L_9 = List_1_get_Count_m81D0B7C641653EC8742F7B48EC513ECBD2A61C97_inline(L_8, List_1_get_Count_m81D0B7C641653EC8742F7B48EC513ECBD2A61C97_RuntimeMethod_var);
|
|
if (!L_9)
|
|
{
|
|
goto IL_0055;
|
|
}
|
|
}
|
|
{
|
|
RenderingData_tAAA01190551D6D5954314E3E1E85B58DD45EED71* L_10 = ___1_renderingData;
|
|
CameraData_tC27AE109CD20677486A4AC19C0CF014AE0F50C3E* L_11 = (CameraData_tC27AE109CD20677486A4AC19C0CF014AE0F50C3E*)(&L_10->___cameraData);
|
|
bool L_12;
|
|
L_12 = CameraData_get_isPreviewCamera_m6959141510B1D0D136D23D392C6C2076655E75C3(L_11, NULL);
|
|
if (L_12)
|
|
{
|
|
goto IL_0055;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1355>
|
|
RenderingData_tAAA01190551D6D5954314E3E1E85B58DD45EED71* L_13 = ___1_renderingData;
|
|
ScriptableRenderer_SetupRenderPasses_m472967159C7CCC9163CC7E63090C5342CEF8AACA(__this, L_13, NULL);
|
|
}
|
|
|
|
IL_0055:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1357>
|
|
RenderingData_tAAA01190551D6D5954314E3E1E85B58DD45EED71* L_14 = ___1_renderingData;
|
|
CommandBuffer_tB56007DC84EF56296C325EC32DD12AC1E3DC91F7** L_15;
|
|
L_15 = RenderingData_get_commandBuffer_m747CD6ABF19DD5BB05F8231CC84A9922D9DC080A(L_14, NULL);
|
|
CommandBuffer_tB56007DC84EF56296C325EC32DD12AC1E3DC91F7* L_16 = *((CommandBuffer_tB56007DC84EF56296C325EC32DD12AC1E3DC91F7**)L_15);
|
|
V_3 = L_16;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1361>
|
|
RenderingData_tAAA01190551D6D5954314E3E1E85B58DD45EED71* L_17 = ___1_renderingData;
|
|
CameraData_tC27AE109CD20677486A4AC19C0CF014AE0F50C3E* L_18 = (CameraData_tC27AE109CD20677486A4AC19C0CF014AE0F50C3E*)(&L_17->___cameraData);
|
|
XRPass_tFC4577E97B88E0EAAAB2EB387AB3A92E9EB9C6DF* L_19;
|
|
L_19 = CameraData_get_xr_m5E9EFE56E6BABFF14ADC71E87D5A19BA7CDDF697(L_18, NULL);
|
|
NullCheck(L_19);
|
|
bool L_20;
|
|
L_20 = XRPass_get_enabled_m488D52C18CC6B83FDC3212E98864BA02116A64A3(L_19, NULL);
|
|
if (L_20)
|
|
{
|
|
goto IL_0072;
|
|
}
|
|
}
|
|
{
|
|
CommandBuffer_tB56007DC84EF56296C325EC32DD12AC1E3DC91F7* L_21 = V_3;
|
|
G_B6_0 = L_21;
|
|
goto IL_0073;
|
|
}
|
|
|
|
IL_0072:
|
|
{
|
|
G_B6_0 = ((CommandBuffer_tB56007DC84EF56296C325EC32DD12AC1E3DC91F7*)(NULL));
|
|
}
|
|
|
|
IL_0073:
|
|
{
|
|
V_4 = G_B6_0;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1363>
|
|
CommandBuffer_tB56007DC84EF56296C325EC32DD12AC1E3DC91F7* L_22 = V_4;
|
|
ProfilingSampler_t420D4672EDB44E0EF980B31ADFD9E5747200FECE* L_23;
|
|
L_23 = ScriptableRenderer_get_profilingExecute_mE442262D579FC9D8AE14055A8E47E06DCB555046_inline(__this, NULL);
|
|
ProfilingScope__ctor_mE15813DF7651C1A3B6AFD6465AD4B973E8F1DBFC((&V_5), L_22, L_23, NULL);
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_0365:
|
|
{
|
|
ProfilingScope_Dispose_m4231A2ACA1F8E345BB0078310A9F7601704C8BE4((&V_5), NULL);
|
|
return;
|
|
}
|
|
});
|
|
try
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1365>
|
|
ScriptableRenderContext_t5AB09B3602BEB456E0DC3D53926D3A3BDAF08E36 L_24 = ___0_context;
|
|
RenderingData_tAAA01190551D6D5954314E3E1E85B58DD45EED71* L_25 = ___1_renderingData;
|
|
ScriptableRenderer_InternalStartRendering_m98626DB2266D35368E0F6F0F94CBBCAEB00E24D1(__this, L_24, L_25, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1374>
|
|
float L_26;
|
|
L_26 = Time_get_time_m3A271BB1B20041144AC5B7863B71AB1F0150374B(NULL);
|
|
V_6 = L_26;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1376>
|
|
float L_27;
|
|
L_27 = Time_get_deltaTime_mC3195000401F0FD167DD2F948FD2BC58330D0865(NULL);
|
|
V_7 = L_27;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1377>
|
|
float L_28;
|
|
L_28 = Time_get_smoothDeltaTime_m41881A3290CC95E6EF2D55289D1D872A45DC1775(NULL);
|
|
V_8 = L_28;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1380>
|
|
CommandBuffer_tB56007DC84EF56296C325EC32DD12AC1E3DC91F7* L_29 = V_3;
|
|
il2cpp_codegen_runtime_class_init_inline(CommandBufferHelpers_tB8C09D01D6F0369DF52DEA955F017D6001BC72E5_il2cpp_TypeInfo_var);
|
|
RasterCommandBuffer_t4300C4F080EA3CF43C7ACFDBD4F94EA633FE98E8* L_30;
|
|
L_30 = CommandBufferHelpers_GetRasterCommandBuffer_m6086D650343F166614B3FB5ED89D63DE8F85C42B_inline(L_29, NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892_il2cpp_TypeInfo_var);
|
|
ScriptableRenderer_ClearRenderingState_m06E468421AC0F8FB6BCBD817B0418354B715D784(L_30, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1381>
|
|
CommandBuffer_tB56007DC84EF56296C325EC32DD12AC1E3DC91F7* L_31 = V_3;
|
|
RasterCommandBuffer_t4300C4F080EA3CF43C7ACFDBD4F94EA633FE98E8* L_32;
|
|
L_32 = CommandBufferHelpers_GetRasterCommandBuffer_m6086D650343F166614B3FB5ED89D63DE8F85C42B_inline(L_31, NULL);
|
|
float L_33 = V_6;
|
|
float L_34 = V_7;
|
|
float L_35 = V_8;
|
|
ScriptableRenderer_SetShaderTimeValues_mCB3E5C8B57B74BBBDD10FBC97067DCEB543D9B81(L_32, L_33, L_34, L_35, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1382>
|
|
CommandBuffer_tB56007DC84EF56296C325EC32DD12AC1E3DC91F7* L_36 = V_3;
|
|
il2cpp_codegen_runtime_class_init_inline(ScriptableRenderContext_t5AB09B3602BEB456E0DC3D53926D3A3BDAF08E36_il2cpp_TypeInfo_var);
|
|
ScriptableRenderContext_ExecuteCommandBuffer_mBAE37DFC699B7167A6E2C59012066C44A31E9896((&___0_context), L_36, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1383>
|
|
CommandBuffer_tB56007DC84EF56296C325EC32DD12AC1E3DC91F7* L_37 = V_3;
|
|
NullCheck(L_37);
|
|
CommandBuffer_Clear_m4E1272BD1A0C162C9C26434E115279F42FA557C7(L_37, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1384>
|
|
il2cpp_codegen_runtime_class_init_inline(Profiling_t1148A935DE86EC9E67DA54238721B4178A744AD3_il2cpp_TypeInfo_var);
|
|
ProfilingSampler_t420D4672EDB44E0EF980B31ADFD9E5747200FECE* L_38 = ((Profiling_t1148A935DE86EC9E67DA54238721B4178A744AD3_StaticFields*)il2cpp_codegen_static_fields_for(Profiling_t1148A935DE86EC9E67DA54238721B4178A744AD3_il2cpp_TypeInfo_var))->___sortRenderPasses;
|
|
ProfilingScope_t57898BA31E8EF8F083EF84E0DA2737AC61CBC5BD L_39;
|
|
memset((&L_39), 0, sizeof(L_39));
|
|
ProfilingScope__ctor_m4B73587A2295443A73B64DDD3D484D8EAECC0D65((&L_39), L_38, NULL);
|
|
V_10 = L_39;
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_00e4_1:
|
|
{
|
|
ProfilingScope_Dispose_m4231A2ACA1F8E345BB0078310A9F7601704C8BE4((&V_10), NULL);
|
|
return;
|
|
}
|
|
});
|
|
try
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1387>
|
|
List_1_t2E485E650BF1E41358CE56A69323E183C5A89CB6* L_40 = __this->___m_ActiveRenderPassQueue;
|
|
il2cpp_codegen_runtime_class_init_inline(ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892_il2cpp_TypeInfo_var);
|
|
ScriptableRenderer_SortStable_m5266EFB9F8D83E6ABFF9D788588E5050FC3503B3(L_40, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1389>
|
|
goto IL_00f2_1;
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_00f2_1:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1391>
|
|
il2cpp_codegen_runtime_class_init_inline(RenderPass_tA744ADA1424B5992F4E272692C1964A7B7469EFD_il2cpp_TypeInfo_var);
|
|
ProfilingSampler_t420D4672EDB44E0EF980B31ADFD9E5747200FECE* L_41 = ((RenderPass_tA744ADA1424B5992F4E272692C1964A7B7469EFD_StaticFields*)il2cpp_codegen_static_fields_for(RenderPass_tA744ADA1424B5992F4E272692C1964A7B7469EFD_il2cpp_TypeInfo_var))->___configure;
|
|
ProfilingScope_t57898BA31E8EF8F083EF84E0DA2737AC61CBC5BD L_42;
|
|
memset((&L_42), 0, sizeof(L_42));
|
|
ProfilingScope__ctor_m4B73587A2295443A73B64DDD3D484D8EAECC0D65((&L_42), L_41, NULL);
|
|
V_10 = L_42;
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_0149_1:
|
|
{
|
|
ProfilingScope_Dispose_m4231A2ACA1F8E345BB0078310A9F7601704C8BE4((&V_10), NULL);
|
|
return;
|
|
}
|
|
});
|
|
try
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1393>
|
|
List_1_t2E485E650BF1E41358CE56A69323E183C5A89CB6* L_43;
|
|
L_43 = ScriptableRenderer_get_activeRenderPassQueue_m3DA13EE251E757FC42DAE103A487C3F1562A850F_inline(__this, NULL);
|
|
NullCheck(L_43);
|
|
Enumerator_t217065C53B57E784E09AB2704818CE6F68D07625 L_44;
|
|
L_44 = List_1_GetEnumerator_m82EFB25742BBF4B896DD9DCB9BED813145B9F14E(L_43, List_1_GetEnumerator_m82EFB25742BBF4B896DD9DCB9BED813145B9F14E_RuntimeMethod_var);
|
|
V_11 = L_44;
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_012b_2:
|
|
{
|
|
Enumerator_Dispose_m334C7EB9FBAEA8BC87ECC95C2C0D322E498B6699((&V_11), Enumerator_Dispose_m334C7EB9FBAEA8BC87ECC95C2C0D322E498B6699_RuntimeMethod_var);
|
|
return;
|
|
}
|
|
});
|
|
try
|
|
{
|
|
{
|
|
goto IL_0120_3;
|
|
}
|
|
|
|
IL_010d_3:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1393>
|
|
ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* L_45;
|
|
L_45 = Enumerator_get_Current_m9F173585FAD931312EF7F684265C41C5747AD600_inline((&V_11), Enumerator_get_Current_m9F173585FAD931312EF7F684265C41C5747AD600_RuntimeMethod_var);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1397>
|
|
CommandBuffer_tB56007DC84EF56296C325EC32DD12AC1E3DC91F7* L_46 = V_3;
|
|
UniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7* L_47 = V_1;
|
|
NullCheck(L_47);
|
|
RenderTextureDescriptor_t69845881CE6437E4E61F92074F2F84079F23FA46 L_48 = L_47->___cameraTargetDescriptor;
|
|
NullCheck(L_45);
|
|
VirtualActionInvoker2< CommandBuffer_tB56007DC84EF56296C325EC32DD12AC1E3DC91F7*, RenderTextureDescriptor_t69845881CE6437E4E61F92074F2F84079F23FA46 >::Invoke(7, L_45, L_46, L_48);
|
|
}
|
|
|
|
IL_0120_3:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1393>
|
|
bool L_49;
|
|
L_49 = Enumerator_MoveNext_m29C44877AE440B7C67CDFC9AF883993C67C51115((&V_11), Enumerator_MoveNext_m29C44877AE440B7C67CDFC9AF883993C67C51115_RuntimeMethod_var);
|
|
if (L_49)
|
|
{
|
|
goto IL_010d_3;
|
|
}
|
|
}
|
|
{
|
|
goto IL_0139_2;
|
|
}
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_0139_2:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1401>
|
|
CommandBuffer_tB56007DC84EF56296C325EC32DD12AC1E3DC91F7* L_50 = V_3;
|
|
il2cpp_codegen_runtime_class_init_inline(ScriptableRenderContext_t5AB09B3602BEB456E0DC3D53926D3A3BDAF08E36_il2cpp_TypeInfo_var);
|
|
ScriptableRenderContext_ExecuteCommandBuffer_mBAE37DFC699B7167A6E2C59012066C44A31E9896((&___0_context), L_50, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1402>
|
|
CommandBuffer_tB56007DC84EF56296C325EC32DD12AC1E3DC91F7* L_51 = V_3;
|
|
NullCheck(L_51);
|
|
CommandBuffer_Clear_m4E1272BD1A0C162C9C26434E115279F42FA557C7(L_51, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1403>
|
|
goto IL_0157_1;
|
|
}
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_0157_1:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1405>
|
|
UniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7* L_52 = V_1;
|
|
bool L_53 = __this->___useRenderPassEnabled;
|
|
ScriptableRenderer_SetupNativeRenderPassFrameData_m7900DE2C595DDB465564A410595B3CDAA13CAF51(__this, L_52, L_53, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1407>
|
|
List_1_t2E485E650BF1E41358CE56A69323E183C5A89CB6* L_54 = __this->___m_ActiveRenderPassQueue;
|
|
RenderBlocks__ctor_mCCE8BE592EEDC76187D546AC1E8DE0F0552FA3D1((&V_9), L_54, NULL);
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_0357_1:
|
|
{
|
|
RenderBlocks_Dispose_mC14FC55238E6E70D0C2C051A5856F34F89637FAB((&V_9), NULL);
|
|
return;
|
|
}
|
|
});
|
|
try
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1409>
|
|
il2cpp_codegen_runtime_class_init_inline(Profiling_t1148A935DE86EC9E67DA54238721B4178A744AD3_il2cpp_TypeInfo_var);
|
|
ProfilingSampler_t420D4672EDB44E0EF980B31ADFD9E5747200FECE* L_55 = ((Profiling_t1148A935DE86EC9E67DA54238721B4178A744AD3_StaticFields*)il2cpp_codegen_static_fields_for(Profiling_t1148A935DE86EC9E67DA54238721B4178A744AD3_il2cpp_TypeInfo_var))->___setupLights;
|
|
ProfilingScope_t57898BA31E8EF8F083EF84E0DA2737AC61CBC5BD L_56;
|
|
memset((&L_56), 0, sizeof(L_56));
|
|
ProfilingScope__ctor_m4B73587A2295443A73B64DDD3D484D8EAECC0D65((&L_56), L_55, NULL);
|
|
V_10 = L_56;
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_0187_2:
|
|
{
|
|
ProfilingScope_Dispose_m4231A2ACA1F8E345BB0078310A9F7601704C8BE4((&V_10), NULL);
|
|
return;
|
|
}
|
|
});
|
|
try
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1411>
|
|
ScriptableRenderContext_t5AB09B3602BEB456E0DC3D53926D3A3BDAF08E36 L_57 = ___0_context;
|
|
RenderingData_tAAA01190551D6D5954314E3E1E85B58DD45EED71* L_58 = ___1_renderingData;
|
|
VirtualActionInvoker2< ScriptableRenderContext_t5AB09B3602BEB456E0DC3D53926D3A3BDAF08E36, RenderingData_tAAA01190551D6D5954314E3E1E85B58DD45EED71* >::Invoke(14, __this, L_57, L_58);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1412>
|
|
goto IL_0195_2;
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_0195_2:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1439>
|
|
il2cpp_codegen_runtime_class_init_inline(RenderPassBlock_t584C655A57D46F7421E00DB28F125ABB455C796C_il2cpp_TypeInfo_var);
|
|
int32_t L_59 = ((RenderPassBlock_t584C655A57D46F7421E00DB28F125ABB455C796C_StaticFields*)il2cpp_codegen_static_fields_for(RenderPassBlock_t584C655A57D46F7421E00DB28F125ABB455C796C_il2cpp_TypeInfo_var))->___BeforeRendering;
|
|
int32_t L_60;
|
|
L_60 = RenderBlocks_GetLength_m12132BA6300EB4AD9FD8355944BB2D5184DEB804((&V_9), L_59, NULL);
|
|
if ((((int32_t)L_60) <= ((int32_t)0)))
|
|
{
|
|
goto IL_01d0_2;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1444>
|
|
il2cpp_codegen_runtime_class_init_inline(RenderBlock_t7243EA6BF13109280A62FF4C7108E5C2F8676712_il2cpp_TypeInfo_var);
|
|
ProfilingSampler_t420D4672EDB44E0EF980B31ADFD9E5747200FECE* L_61 = ((RenderBlock_t7243EA6BF13109280A62FF4C7108E5C2F8676712_StaticFields*)il2cpp_codegen_static_fields_for(RenderBlock_t7243EA6BF13109280A62FF4C7108E5C2F8676712_il2cpp_TypeInfo_var))->___beforeRendering;
|
|
ProfilingScope__ctor_m4B73587A2295443A73B64DDD3D484D8EAECC0D65((&V_12), L_61, NULL);
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_01c2_2:
|
|
{
|
|
ProfilingScope_Dispose_m4231A2ACA1F8E345BB0078310A9F7601704C8BE4((&V_12), NULL);
|
|
return;
|
|
}
|
|
});
|
|
try
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1445>
|
|
il2cpp_codegen_runtime_class_init_inline(RenderPassBlock_t584C655A57D46F7421E00DB28F125ABB455C796C_il2cpp_TypeInfo_var);
|
|
int32_t L_62 = ((RenderPassBlock_t584C655A57D46F7421E00DB28F125ABB455C796C_StaticFields*)il2cpp_codegen_static_fields_for(RenderPassBlock_t584C655A57D46F7421E00DB28F125ABB455C796C_il2cpp_TypeInfo_var))->___BeforeRendering;
|
|
ScriptableRenderContext_t5AB09B3602BEB456E0DC3D53926D3A3BDAF08E36 L_63 = ___0_context;
|
|
RenderingData_tAAA01190551D6D5954314E3E1E85B58DD45EED71* L_64 = ___1_renderingData;
|
|
ScriptableRenderer_ExecuteBlock_m69578F593D05E9EE71E13C98C822158D03193E1D(__this, L_62, (&V_9), L_63, L_64, (bool)0, NULL);
|
|
goto IL_01d0_2;
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_01d0_2:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1448>
|
|
il2cpp_codegen_runtime_class_init_inline(Profiling_t1148A935DE86EC9E67DA54238721B4178A744AD3_il2cpp_TypeInfo_var);
|
|
ProfilingSampler_t420D4672EDB44E0EF980B31ADFD9E5747200FECE* L_65 = ((Profiling_t1148A935DE86EC9E67DA54238721B4178A744AD3_StaticFields*)il2cpp_codegen_static_fields_for(Profiling_t1148A935DE86EC9E67DA54238721B4178A744AD3_il2cpp_TypeInfo_var))->___setupCamera;
|
|
ProfilingScope_t57898BA31E8EF8F083EF84E0DA2737AC61CBC5BD L_66;
|
|
memset((&L_66), 0, sizeof(L_66));
|
|
ProfilingScope__ctor_m4B73587A2295443A73B64DDD3D484D8EAECC0D65((&L_66), L_65, NULL);
|
|
V_10 = L_66;
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_01f9_2:
|
|
{
|
|
ProfilingScope_Dispose_m4231A2ACA1F8E345BB0078310A9F7601704C8BE4((&V_10), NULL);
|
|
return;
|
|
}
|
|
});
|
|
try
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1458>
|
|
ScriptableRenderContext_t5AB09B3602BEB456E0DC3D53926D3A3BDAF08E36 L_67 = ___0_context;
|
|
UniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7* L_68 = V_1;
|
|
Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184* L_69 = V_2;
|
|
CommandBuffer_tB56007DC84EF56296C325EC32DD12AC1E3DC91F7* L_70 = V_3;
|
|
ScriptableRenderer_SetPerCameraProperties_m5488703BD4F0541BD829D86DD1FE2CB1FD6ABC38(__this, L_67, L_68, L_69, L_70, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1461>
|
|
CommandBuffer_tB56007DC84EF56296C325EC32DD12AC1E3DC91F7* L_71 = V_3;
|
|
il2cpp_codegen_runtime_class_init_inline(CommandBufferHelpers_tB8C09D01D6F0369DF52DEA955F017D6001BC72E5_il2cpp_TypeInfo_var);
|
|
RasterCommandBuffer_t4300C4F080EA3CF43C7ACFDBD4F94EA633FE98E8* L_72;
|
|
L_72 = CommandBufferHelpers_GetRasterCommandBuffer_m6086D650343F166614B3FB5ED89D63DE8F85C42B_inline(L_71, NULL);
|
|
float L_73 = V_6;
|
|
float L_74 = V_7;
|
|
float L_75 = V_8;
|
|
il2cpp_codegen_runtime_class_init_inline(ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892_il2cpp_TypeInfo_var);
|
|
ScriptableRenderer_SetShaderTimeValues_mCB3E5C8B57B74BBBDD10FBC97067DCEB543D9B81(L_72, L_73, L_74, L_75, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1462>
|
|
goto IL_0207_2;
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_0207_2:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1464>
|
|
CommandBuffer_tB56007DC84EF56296C325EC32DD12AC1E3DC91F7* L_76 = V_3;
|
|
il2cpp_codegen_runtime_class_init_inline(ScriptableRenderContext_t5AB09B3602BEB456E0DC3D53926D3A3BDAF08E36_il2cpp_TypeInfo_var);
|
|
ScriptableRenderContext_ExecuteCommandBuffer_mBAE37DFC699B7167A6E2C59012066C44A31E9896((&___0_context), L_76, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1465>
|
|
CommandBuffer_tB56007DC84EF56296C325EC32DD12AC1E3DC91F7* L_77 = V_3;
|
|
NullCheck(L_77);
|
|
CommandBuffer_Clear_m4E1272BD1A0C162C9C26434E115279F42FA557C7(L_77, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1467>
|
|
CommandBuffer_tB56007DC84EF56296C325EC32DD12AC1E3DC91F7* L_78 = V_3;
|
|
ScriptableRenderContext_t5AB09B3602BEB456E0DC3D53926D3A3BDAF08E36 L_79 = ___0_context;
|
|
RenderingData_tAAA01190551D6D5954314E3E1E85B58DD45EED71* L_80 = ___1_renderingData;
|
|
CameraData_tC27AE109CD20677486A4AC19C0CF014AE0F50C3E* L_81 = (CameraData_tC27AE109CD20677486A4AC19C0CF014AE0F50C3E*)(&L_80->___cameraData);
|
|
ScriptableRenderer_BeginXRRendering_mF14D004085962304083771577669004E4586123F(__this, L_78, L_79, L_81, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1472>
|
|
il2cpp_codegen_runtime_class_init_inline(RenderPassBlock_t584C655A57D46F7421E00DB28F125ABB455C796C_il2cpp_TypeInfo_var);
|
|
int32_t L_82 = ((RenderPassBlock_t584C655A57D46F7421E00DB28F125ABB455C796C_StaticFields*)il2cpp_codegen_static_fields_for(RenderPassBlock_t584C655A57D46F7421E00DB28F125ABB455C796C_il2cpp_TypeInfo_var))->___MainRenderingOpaque;
|
|
int32_t L_83;
|
|
L_83 = RenderBlocks_GetLength_m12132BA6300EB4AD9FD8355944BB2D5184DEB804((&V_9), L_82, NULL);
|
|
if ((((int32_t)L_83) <= ((int32_t)0)))
|
|
{
|
|
goto IL_025e_2;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1477>
|
|
il2cpp_codegen_runtime_class_init_inline(RenderBlock_t7243EA6BF13109280A62FF4C7108E5C2F8676712_il2cpp_TypeInfo_var);
|
|
ProfilingSampler_t420D4672EDB44E0EF980B31ADFD9E5747200FECE* L_84 = ((RenderBlock_t7243EA6BF13109280A62FF4C7108E5C2F8676712_StaticFields*)il2cpp_codegen_static_fields_for(RenderBlock_t7243EA6BF13109280A62FF4C7108E5C2F8676712_il2cpp_TypeInfo_var))->___mainRenderingOpaque;
|
|
ProfilingScope__ctor_m4B73587A2295443A73B64DDD3D484D8EAECC0D65((&V_13), L_84, NULL);
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_0250_2:
|
|
{
|
|
ProfilingScope_Dispose_m4231A2ACA1F8E345BB0078310A9F7601704C8BE4((&V_13), NULL);
|
|
return;
|
|
}
|
|
});
|
|
try
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1478>
|
|
il2cpp_codegen_runtime_class_init_inline(RenderPassBlock_t584C655A57D46F7421E00DB28F125ABB455C796C_il2cpp_TypeInfo_var);
|
|
int32_t L_85 = ((RenderPassBlock_t584C655A57D46F7421E00DB28F125ABB455C796C_StaticFields*)il2cpp_codegen_static_fields_for(RenderPassBlock_t584C655A57D46F7421E00DB28F125ABB455C796C_il2cpp_TypeInfo_var))->___MainRenderingOpaque;
|
|
ScriptableRenderContext_t5AB09B3602BEB456E0DC3D53926D3A3BDAF08E36 L_86 = ___0_context;
|
|
RenderingData_tAAA01190551D6D5954314E3E1E85B58DD45EED71* L_87 = ___1_renderingData;
|
|
ScriptableRenderer_ExecuteBlock_m69578F593D05E9EE71E13C98C822158D03193E1D(__this, L_85, (&V_9), L_86, L_87, (bool)0, NULL);
|
|
goto IL_025e_2;
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_025e_2:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1482>
|
|
il2cpp_codegen_runtime_class_init_inline(RenderPassBlock_t584C655A57D46F7421E00DB28F125ABB455C796C_il2cpp_TypeInfo_var);
|
|
int32_t L_88 = ((RenderPassBlock_t584C655A57D46F7421E00DB28F125ABB455C796C_StaticFields*)il2cpp_codegen_static_fields_for(RenderPassBlock_t584C655A57D46F7421E00DB28F125ABB455C796C_il2cpp_TypeInfo_var))->___MainRenderingTransparent;
|
|
int32_t L_89;
|
|
L_89 = RenderBlocks_GetLength_m12132BA6300EB4AD9FD8355944BB2D5184DEB804((&V_9), L_88, NULL);
|
|
if ((((int32_t)L_89) <= ((int32_t)0)))
|
|
{
|
|
goto IL_0299_2;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1484>
|
|
il2cpp_codegen_runtime_class_init_inline(RenderBlock_t7243EA6BF13109280A62FF4C7108E5C2F8676712_il2cpp_TypeInfo_var);
|
|
ProfilingSampler_t420D4672EDB44E0EF980B31ADFD9E5747200FECE* L_90 = ((RenderBlock_t7243EA6BF13109280A62FF4C7108E5C2F8676712_StaticFields*)il2cpp_codegen_static_fields_for(RenderBlock_t7243EA6BF13109280A62FF4C7108E5C2F8676712_il2cpp_TypeInfo_var))->___mainRenderingTransparent;
|
|
ProfilingScope__ctor_m4B73587A2295443A73B64DDD3D484D8EAECC0D65((&V_14), L_90, NULL);
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_028b_2:
|
|
{
|
|
ProfilingScope_Dispose_m4231A2ACA1F8E345BB0078310A9F7601704C8BE4((&V_14), NULL);
|
|
return;
|
|
}
|
|
});
|
|
try
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1485>
|
|
il2cpp_codegen_runtime_class_init_inline(RenderPassBlock_t584C655A57D46F7421E00DB28F125ABB455C796C_il2cpp_TypeInfo_var);
|
|
int32_t L_91 = ((RenderPassBlock_t584C655A57D46F7421E00DB28F125ABB455C796C_StaticFields*)il2cpp_codegen_static_fields_for(RenderPassBlock_t584C655A57D46F7421E00DB28F125ABB455C796C_il2cpp_TypeInfo_var))->___MainRenderingTransparent;
|
|
ScriptableRenderContext_t5AB09B3602BEB456E0DC3D53926D3A3BDAF08E36 L_92 = ___0_context;
|
|
RenderingData_tAAA01190551D6D5954314E3E1E85B58DD45EED71* L_93 = ___1_renderingData;
|
|
ScriptableRenderer_ExecuteBlock_m69578F593D05E9EE71E13C98C822158D03193E1D(__this, L_91, (&V_9), L_92, L_93, (bool)0, NULL);
|
|
goto IL_0299_2;
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_0299_2:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1490>
|
|
UniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7* L_94 = V_1;
|
|
NullCheck(L_94);
|
|
XRPass_tFC4577E97B88E0EAAAB2EB387AB3A92E9EB9C6DF* L_95;
|
|
L_95 = UniversalCameraData_get_xr_mC600E667BA2B92EADF2CF60CD49E15242FA83C4D_inline(L_94, NULL);
|
|
NullCheck(L_95);
|
|
bool L_96;
|
|
L_96 = XRPass_get_enabled_m488D52C18CC6B83FDC3212E98864BA02116A64A3(L_95, NULL);
|
|
if (!L_96)
|
|
{
|
|
goto IL_02b2_2;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1491>
|
|
UniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7* L_97 = V_1;
|
|
NullCheck(L_97);
|
|
XRPassUniversal_t8D4B40107F5DBC12D39470D87D108D3D2A8FB8D1* L_98;
|
|
L_98 = UniversalCameraData_get_xrUniversal_mD28B65BB477E408AF63DCA582FA63CB9FDCC01E0(L_97, NULL);
|
|
NullCheck(L_98);
|
|
XRPassUniversal_set_canMarkLateLatch_m55FD53B9F8BE99FF85F7CA356D608F042A55906F_inline(L_98, (bool)0, NULL);
|
|
}
|
|
|
|
IL_02b2_2:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1495>
|
|
bool L_99 = V_0;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1501>
|
|
il2cpp_codegen_runtime_class_init_inline(RenderPassBlock_t584C655A57D46F7421E00DB28F125ABB455C796C_il2cpp_TypeInfo_var);
|
|
int32_t L_100 = ((RenderPassBlock_t584C655A57D46F7421E00DB28F125ABB455C796C_StaticFields*)il2cpp_codegen_static_fields_for(RenderPassBlock_t584C655A57D46F7421E00DB28F125ABB455C796C_il2cpp_TypeInfo_var))->___AfterRendering;
|
|
int32_t L_101;
|
|
L_101 = RenderBlocks_GetLength_m12132BA6300EB4AD9FD8355944BB2D5184DEB804((&V_9), L_100, NULL);
|
|
if ((((int32_t)L_101) <= ((int32_t)0)))
|
|
{
|
|
goto IL_02ef_2;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1503>
|
|
il2cpp_codegen_runtime_class_init_inline(RenderBlock_t7243EA6BF13109280A62FF4C7108E5C2F8676712_il2cpp_TypeInfo_var);
|
|
ProfilingSampler_t420D4672EDB44E0EF980B31ADFD9E5747200FECE* L_102 = ((RenderBlock_t7243EA6BF13109280A62FF4C7108E5C2F8676712_StaticFields*)il2cpp_codegen_static_fields_for(RenderBlock_t7243EA6BF13109280A62FF4C7108E5C2F8676712_il2cpp_TypeInfo_var))->___afterRendering;
|
|
ProfilingScope__ctor_m4B73587A2295443A73B64DDD3D484D8EAECC0D65((&V_15), L_102, NULL);
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_02e1_2:
|
|
{
|
|
ProfilingScope_Dispose_m4231A2ACA1F8E345BB0078310A9F7601704C8BE4((&V_15), NULL);
|
|
return;
|
|
}
|
|
});
|
|
try
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1504>
|
|
il2cpp_codegen_runtime_class_init_inline(RenderPassBlock_t584C655A57D46F7421E00DB28F125ABB455C796C_il2cpp_TypeInfo_var);
|
|
int32_t L_103 = ((RenderPassBlock_t584C655A57D46F7421E00DB28F125ABB455C796C_StaticFields*)il2cpp_codegen_static_fields_for(RenderPassBlock_t584C655A57D46F7421E00DB28F125ABB455C796C_il2cpp_TypeInfo_var))->___AfterRendering;
|
|
ScriptableRenderContext_t5AB09B3602BEB456E0DC3D53926D3A3BDAF08E36 L_104 = ___0_context;
|
|
RenderingData_tAAA01190551D6D5954314E3E1E85B58DD45EED71* L_105 = ___1_renderingData;
|
|
ScriptableRenderer_ExecuteBlock_m69578F593D05E9EE71E13C98C822158D03193E1D(__this, L_103, (&V_9), L_104, L_105, (bool)0, NULL);
|
|
goto IL_02ef_2;
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_02ef_2:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1507>
|
|
CommandBuffer_tB56007DC84EF56296C325EC32DD12AC1E3DC91F7* L_106 = V_3;
|
|
ScriptableRenderContext_t5AB09B3602BEB456E0DC3D53926D3A3BDAF08E36 L_107 = ___0_context;
|
|
RenderingData_tAAA01190551D6D5954314E3E1E85B58DD45EED71* L_108 = ___1_renderingData;
|
|
CameraData_tC27AE109CD20677486A4AC19C0CF014AE0F50C3E* L_109 = (CameraData_tC27AE109CD20677486A4AC19C0CF014AE0F50C3E*)(&L_108->___cameraData);
|
|
ScriptableRenderer_EndXRRendering_m270391BCE0300166C04B6B65E7CFC566AC621C92(__this, L_106, L_107, L_109, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1511>
|
|
bool L_110 = V_0;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1516>
|
|
ScriptableRenderContext_t5AB09B3602BEB456E0DC3D53926D3A3BDAF08E36 L_111 = ___0_context;
|
|
CommandBuffer_tB56007DC84EF56296C325EC32DD12AC1E3DC91F7* L_112 = V_3;
|
|
UniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7* L_113 = V_1;
|
|
NullCheck(L_113);
|
|
bool L_114 = L_113->___resolveFinalTarget;
|
|
ScriptableRenderer_InternalFinishRenderingExecute_mC02B872221DD717D47492BAB36FF5C2ADB16D768(__this, L_111, L_112, L_114, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1518>
|
|
V_16 = 0;
|
|
goto IL_0346_2;
|
|
}
|
|
|
|
IL_0312_2:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1520>
|
|
List_1_t2E485E650BF1E41358CE56A69323E183C5A89CB6* L_115 = __this->___m_ActiveRenderPassQueue;
|
|
int32_t L_116 = V_16;
|
|
NullCheck(L_115);
|
|
ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* L_117;
|
|
L_117 = List_1_get_Item_mBC42042D4082F4C6237FEA3435D58D570436268F(L_115, L_116, List_1_get_Item_mBC42042D4082F4C6237FEA3435D58D570436268F_RuntimeMethod_var);
|
|
NullCheck(L_117);
|
|
NativeArray_1_tA833EB7E3E1C9AF82C37976AD964B8D4BAC38B2C* L_118 = (NativeArray_1_tA833EB7E3E1C9AF82C37976AD964B8D4BAC38B2C*)(&L_117->___m_ColorAttachmentIndices);
|
|
NativeArray_1_Dispose_m05C674E687B921C37722A6A1FF938FD56574642E(L_118, NativeArray_1_Dispose_m05C674E687B921C37722A6A1FF938FD56574642E_RuntimeMethod_var);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1521>
|
|
List_1_t2E485E650BF1E41358CE56A69323E183C5A89CB6* L_119 = __this->___m_ActiveRenderPassQueue;
|
|
int32_t L_120 = V_16;
|
|
NullCheck(L_119);
|
|
ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* L_121;
|
|
L_121 = List_1_get_Item_mBC42042D4082F4C6237FEA3435D58D570436268F(L_119, L_120, List_1_get_Item_mBC42042D4082F4C6237FEA3435D58D570436268F_RuntimeMethod_var);
|
|
NullCheck(L_121);
|
|
NativeArray_1_tA833EB7E3E1C9AF82C37976AD964B8D4BAC38B2C* L_122 = (NativeArray_1_tA833EB7E3E1C9AF82C37976AD964B8D4BAC38B2C*)(&L_121->___m_InputAttachmentIndices);
|
|
NativeArray_1_Dispose_m05C674E687B921C37722A6A1FF938FD56574642E(L_122, NativeArray_1_Dispose_m05C674E687B921C37722A6A1FF938FD56574642E_RuntimeMethod_var);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1518>
|
|
int32_t L_123 = V_16;
|
|
V_16 = ((int32_t)il2cpp_codegen_add(L_123, 1));
|
|
}
|
|
|
|
IL_0346_2:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1518>
|
|
int32_t L_124 = V_16;
|
|
List_1_t2E485E650BF1E41358CE56A69323E183C5A89CB6* L_125 = __this->___m_ActiveRenderPassQueue;
|
|
NullCheck(L_125);
|
|
int32_t L_126;
|
|
L_126 = List_1_get_Count_mE6D3D9D20C29AB0625389FEF206BBFF202CD5293_inline(L_125, List_1_get_Count_mE6D3D9D20C29AB0625389FEF206BBFF202CD5293_RuntimeMethod_var);
|
|
if ((((int32_t)L_124) < ((int32_t)L_126)))
|
|
{
|
|
goto IL_0312_2;
|
|
}
|
|
}
|
|
{
|
|
goto IL_0373;
|
|
}
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_0373:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1525>
|
|
CommandBuffer_tB56007DC84EF56296C325EC32DD12AC1E3DC91F7* L_127 = V_3;
|
|
il2cpp_codegen_runtime_class_init_inline(ScriptableRenderContext_t5AB09B3602BEB456E0DC3D53926D3A3BDAF08E36_il2cpp_TypeInfo_var);
|
|
ScriptableRenderContext_ExecuteCommandBuffer_mBAE37DFC699B7167A6E2C59012066C44A31E9896((&___0_context), L_127, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1526>
|
|
CommandBuffer_tB56007DC84EF56296C325EC32DD12AC1E3DC91F7* L_128 = V_3;
|
|
NullCheck(L_128);
|
|
CommandBuffer_Clear_m4E1272BD1A0C162C9C26434E115279F42FA557C7(L_128, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1527>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 33418
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ScriptableRenderer_EnqueuePass_m62AC5EFBA8DECFD514CAFC4EFDCFBF88C710954F (ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892* __this, ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* ___0_pass, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Add_m1F8C9721FD4046BBA405A578E144F7856809A878_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1535>
|
|
List_1_t2E485E650BF1E41358CE56A69323E183C5A89CB6* L_0 = __this->___m_ActiveRenderPassQueue;
|
|
ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* L_1 = ___0_pass;
|
|
NullCheck(L_0);
|
|
List_1_Add_m1F8C9721FD4046BBA405A578E144F7856809A878_inline(L_0, L_1, List_1_Add_m1F8C9721FD4046BBA405A578E144F7856809A878_RuntimeMethod_var);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1536>
|
|
bool L_2 = __this->___disableNativeRenderPassInFeatures;
|
|
if (!L_2)
|
|
{
|
|
goto IL_001b;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1537>
|
|
ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* L_3 = ___0_pass;
|
|
NullCheck(L_3);
|
|
ScriptableRenderPass_set_useNativeRenderPass_m1D60C30BB1CF1B4D383FFCABC1F57EA755626895_inline(L_3, (bool)0, NULL);
|
|
}
|
|
|
|
IL_001b:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1538>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 33419
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ScriptableRenderer_GetCameraClearFlag_m879792FE2CA18E1BA1AEB7527BEFFDF1AF1515B4 (CameraData_tC27AE109CD20677486A4AC19C0CF014AE0F50C3E* ___0_cameraData, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1548>
|
|
CameraData_tC27AE109CD20677486A4AC19C0CF014AE0F50C3E* L_0 = ___0_cameraData;
|
|
UniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7* L_1;
|
|
L_1 = CameraData_get_universalCameraData_mD67FBE2CAADDBA930E7DDD9F44ED8C5F10E24AC2(L_0, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1549>
|
|
il2cpp_codegen_runtime_class_init_inline(ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892_il2cpp_TypeInfo_var);
|
|
int32_t L_2;
|
|
L_2 = ScriptableRenderer_GetCameraClearFlag_m4B266C72886FD41512F25AF2EF1939AB275B3F3A(L_1, NULL);
|
|
return L_2;
|
|
}
|
|
}
|
|
// Method Definition Index: 33420
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ScriptableRenderer_GetCameraClearFlag_m4B266C72886FD41512F25AF2EF1939AB275B3F3A (UniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7* ___0_cameraData, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int32_t V_0 = 0;
|
|
DebugHandler_t3A09E2CFD1CA6F5C192968A6FF19EE4863F44DA4* V_1 = NULL;
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1560>
|
|
UniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7* L_0 = ___0_cameraData;
|
|
NullCheck(L_0);
|
|
Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184* L_1 = L_0->___camera;
|
|
NullCheck(L_1);
|
|
int32_t L_2;
|
|
L_2 = Camera_get_clearFlags_mA74F538C124B391EF03C46A50CA7FF7B505B7602(L_1, NULL);
|
|
V_0 = L_2;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1579>
|
|
UniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7* L_3 = ___0_cameraData;
|
|
NullCheck(L_3);
|
|
int32_t L_4 = L_3->___renderType;
|
|
if ((!(((uint32_t)L_4) == ((uint32_t)1))))
|
|
{
|
|
goto IL_0021;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1580>
|
|
UniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7* L_5 = ___0_cameraData;
|
|
NullCheck(L_5);
|
|
bool L_6 = L_5->___clearDepth;
|
|
if (L_6)
|
|
{
|
|
goto IL_001f;
|
|
}
|
|
}
|
|
{
|
|
return (int32_t)(0);
|
|
}
|
|
|
|
IL_001f:
|
|
{
|
|
return (int32_t)(6);
|
|
}
|
|
|
|
IL_0021:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1583>
|
|
UniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7* L_7 = ___0_cameraData;
|
|
NullCheck(L_7);
|
|
ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892* L_8 = L_7->___renderer;
|
|
NullCheck(L_8);
|
|
DebugHandler_t3A09E2CFD1CA6F5C192968A6FF19EE4863F44DA4* L_9;
|
|
L_9 = ScriptableRenderer_get_DebugHandler_mF10EC7F8F42F5087507DCDB7CD21338F2766DD6F_inline(L_8, NULL);
|
|
V_1 = L_9;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1584>
|
|
DebugHandler_t3A09E2CFD1CA6F5C192968A6FF19EE4863F44DA4* L_10 = V_1;
|
|
if (!L_10)
|
|
{
|
|
goto IL_0048;
|
|
}
|
|
}
|
|
{
|
|
DebugHandler_t3A09E2CFD1CA6F5C192968A6FF19EE4863F44DA4* L_11 = V_1;
|
|
UniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7* L_12 = ___0_cameraData;
|
|
NullCheck(L_12);
|
|
bool L_13;
|
|
L_13 = UniversalCameraData_get_isPreviewCamera_m805B3ED7E0D54B8054BFFD3166489E2B1B3BDC51(L_12, NULL);
|
|
NullCheck(L_11);
|
|
bool L_14;
|
|
L_14 = DebugHandler_IsActiveForCamera_mAAAF88FA94FF91A19A7CE1898EB0295997045077(L_11, L_13, NULL);
|
|
if (!L_14)
|
|
{
|
|
goto IL_0048;
|
|
}
|
|
}
|
|
{
|
|
DebugHandler_t3A09E2CFD1CA6F5C192968A6FF19EE4863F44DA4* L_15 = V_1;
|
|
NullCheck(L_15);
|
|
bool L_16;
|
|
L_16 = DebugHandler_get_IsScreenClearNeeded_m4DA090FCE3573491D7A885AE93051F554C87C496(L_15, NULL);
|
|
if (!L_16)
|
|
{
|
|
goto IL_0048;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1585>
|
|
return (int32_t)(7);
|
|
}
|
|
|
|
IL_0048:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1588>
|
|
int32_t L_17 = V_0;
|
|
if ((!(((uint32_t)L_17) == ((uint32_t)1))))
|
|
{
|
|
goto IL_0070;
|
|
}
|
|
}
|
|
{
|
|
Material_t18053F08F347D0DCA5E1140EC7EC4533DD8A14E3* L_18;
|
|
L_18 = RenderSettings_get_skybox_m1738CCDBAFAA20797D174DB97066440B10FBCE6F(NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
bool L_19;
|
|
L_19 = Object_op_Inequality_mD0BE578448EAA61948F25C32F8DD55AB1F778602(L_18, (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C*)NULL, NULL);
|
|
if (!L_19)
|
|
{
|
|
goto IL_0070;
|
|
}
|
|
}
|
|
{
|
|
UniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7* L_20 = ___0_cameraData;
|
|
NullCheck(L_20);
|
|
bool L_21 = L_20->___postProcessEnabled;
|
|
if (!L_21)
|
|
{
|
|
goto IL_0070;
|
|
}
|
|
}
|
|
{
|
|
UniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7* L_22 = ___0_cameraData;
|
|
NullCheck(L_22);
|
|
XRPass_tFC4577E97B88E0EAAAB2EB387AB3A92E9EB9C6DF* L_23;
|
|
L_23 = UniversalCameraData_get_xr_mC600E667BA2B92EADF2CF60CD49E15242FA83C4D_inline(L_22, NULL);
|
|
NullCheck(L_23);
|
|
bool L_24;
|
|
L_24 = XRPass_get_enabled_m488D52C18CC6B83FDC3212E98864BA02116A64A3(L_23, NULL);
|
|
if (!L_24)
|
|
{
|
|
goto IL_0070;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1589>
|
|
return (int32_t)(7);
|
|
}
|
|
|
|
IL_0070:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1591>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1592>
|
|
int32_t L_25 = V_0;
|
|
if ((!(((uint32_t)L_25) == ((uint32_t)1))))
|
|
{
|
|
goto IL_0081;
|
|
}
|
|
}
|
|
{
|
|
Material_t18053F08F347D0DCA5E1140EC7EC4533DD8A14E3* L_26;
|
|
L_26 = RenderSettings_get_skybox_m1738CCDBAFAA20797D174DB97066440B10FBCE6F(NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
bool L_27;
|
|
L_27 = Object_op_Inequality_mD0BE578448EAA61948F25C32F8DD55AB1F778602(L_26, (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C*)NULL, NULL);
|
|
if (L_27)
|
|
{
|
|
goto IL_0085;
|
|
}
|
|
}
|
|
|
|
IL_0081:
|
|
{
|
|
int32_t L_28 = V_0;
|
|
if ((!(((uint32_t)L_28) == ((uint32_t)4))))
|
|
{
|
|
goto IL_00a7;
|
|
}
|
|
}
|
|
|
|
IL_0085:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1595>
|
|
UniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7* L_29 = ___0_cameraData;
|
|
NullCheck(L_29);
|
|
RenderTextureDescriptor_t69845881CE6437E4E61F92074F2F84079F23FA46* L_30 = (RenderTextureDescriptor_t69845881CE6437E4E61F92074F2F84079F23FA46*)(&L_29->___cameraTargetDescriptor);
|
|
int32_t L_31;
|
|
L_31 = RenderTextureDescriptor_get_msaaSamples_mFCC33643AFF2265C8305DCFD79ED8774A1A8FA22_inline(L_30, NULL);
|
|
if ((((int32_t)L_31) <= ((int32_t)1)))
|
|
{
|
|
goto IL_00a5;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1598>
|
|
UniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7* L_32 = ___0_cameraData;
|
|
NullCheck(L_32);
|
|
Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184* L_33 = L_32->___camera;
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F L_34;
|
|
L_34 = Color_get_black_mB50217951591A045844C61E7FF31EEE3FEF16737_inline(NULL);
|
|
NullCheck(L_33);
|
|
Camera_set_backgroundColor_m036FD8C316A93A0B168ACC89AFF16D396B872138(L_33, L_34, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1599>
|
|
return (int32_t)(7);
|
|
}
|
|
|
|
IL_00a5:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1603>
|
|
return (int32_t)(6);
|
|
}
|
|
|
|
IL_00a7:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1607>
|
|
return (int32_t)(7);
|
|
}
|
|
}
|
|
// Method Definition Index: 33421
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ScriptableRenderer_OnPreCullRenderPasses_m68D20553E6E4A14B431D58A02CBFAB04CFC8A05C (ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892* __this, CameraData_tC27AE109CD20677486A4AC19C0CF014AE0F50C3E* ___0_cameraData, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Count_m81D0B7C641653EC8742F7B48EC513ECBD2A61C97_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Item_mA0690F170B9EA5DBD421B889FC1DEDEF46CAAD1E_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int32_t V_0 = 0;
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1618>
|
|
V_0 = 0;
|
|
goto IL_002e;
|
|
}
|
|
|
|
IL_0004:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1620>
|
|
List_1_t2121653FB628940E808D105AD2C17E0F20AFB3A6* L_0;
|
|
L_0 = ScriptableRenderer_get_rendererFeatures_m2473415AE63D3735ACBD7BF7CAEA7CB0315A7057_inline(__this, NULL);
|
|
int32_t L_1 = V_0;
|
|
NullCheck(L_0);
|
|
ScriptableRendererFeature_tF2ED08AD2498105378D4DAB0386A0F8A144EF4C6* L_2;
|
|
L_2 = List_1_get_Item_mA0690F170B9EA5DBD421B889FC1DEDEF46CAAD1E(L_0, L_1, List_1_get_Item_mA0690F170B9EA5DBD421B889FC1DEDEF46CAAD1E_RuntimeMethod_var);
|
|
NullCheck(L_2);
|
|
bool L_3;
|
|
L_3 = ScriptableRendererFeature_get_isActive_m3A636889F4504C471F26F735F682472FD9B31178_inline(L_2, NULL);
|
|
if (!L_3)
|
|
{
|
|
goto IL_002a;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1624>
|
|
List_1_t2121653FB628940E808D105AD2C17E0F20AFB3A6* L_4;
|
|
L_4 = ScriptableRenderer_get_rendererFeatures_m2473415AE63D3735ACBD7BF7CAEA7CB0315A7057_inline(__this, NULL);
|
|
int32_t L_5 = V_0;
|
|
NullCheck(L_4);
|
|
ScriptableRendererFeature_tF2ED08AD2498105378D4DAB0386A0F8A144EF4C6* L_6;
|
|
L_6 = List_1_get_Item_mA0690F170B9EA5DBD421B889FC1DEDEF46CAAD1E(L_4, L_5, List_1_get_Item_mA0690F170B9EA5DBD421B889FC1DEDEF46CAAD1E_RuntimeMethod_var);
|
|
CameraData_tC27AE109CD20677486A4AC19C0CF014AE0F50C3E* L_7 = ___0_cameraData;
|
|
NullCheck(L_6);
|
|
VirtualActionInvoker2< ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892*, CameraData_tC27AE109CD20677486A4AC19C0CF014AE0F50C3E* >::Invoke(6, L_6, __this, L_7);
|
|
}
|
|
|
|
IL_002a:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1618>
|
|
int32_t L_8 = V_0;
|
|
V_0 = ((int32_t)il2cpp_codegen_add(L_8, 1));
|
|
}
|
|
|
|
IL_002e:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1618>
|
|
int32_t L_9 = V_0;
|
|
List_1_t2121653FB628940E808D105AD2C17E0F20AFB3A6* L_10;
|
|
L_10 = ScriptableRenderer_get_rendererFeatures_m2473415AE63D3735ACBD7BF7CAEA7CB0315A7057_inline(__this, NULL);
|
|
NullCheck(L_10);
|
|
int32_t L_11;
|
|
L_11 = List_1_get_Count_m81D0B7C641653EC8742F7B48EC513ECBD2A61C97_inline(L_10, List_1_get_Count_m81D0B7C641653EC8742F7B48EC513ECBD2A61C97_RuntimeMethod_var);
|
|
if ((((int32_t)L_9) < ((int32_t)L_11)))
|
|
{
|
|
goto IL_0004;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1626>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 33422
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ScriptableRenderer_AddRenderPasses_mF91618C00A388BCCA1918697AF9E314DD6318E3B (ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892* __this, RenderingData_tAAA01190551D6D5954314E3E1E85B58DD45EED71* ___0_renderingData, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_RemoveAt_m901167C6F189A4D02B21F1A9CE238CDDCFF769CB_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Count_m81D0B7C641653EC8742F7B48EC513ECBD2A61C97_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Count_mE6D3D9D20C29AB0625389FEF206BBFF202CD5293_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Item_mA0690F170B9EA5DBD421B889FC1DEDEF46CAAD1E_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Item_mBC42042D4082F4C6237FEA3435D58D570436268F_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Profiling_t1148A935DE86EC9E67DA54238721B4178A744AD3_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
ProfilingScope_t57898BA31E8EF8F083EF84E0DA2737AC61CBC5BD V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
int32_t V_1 = 0;
|
|
int32_t V_2 = 0;
|
|
int32_t V_3 = 0;
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1635>
|
|
il2cpp_codegen_runtime_class_init_inline(Profiling_t1148A935DE86EC9E67DA54238721B4178A744AD3_il2cpp_TypeInfo_var);
|
|
ProfilingSampler_t420D4672EDB44E0EF980B31ADFD9E5747200FECE* L_0 = ((Profiling_t1148A935DE86EC9E67DA54238721B4178A744AD3_StaticFields*)il2cpp_codegen_static_fields_for(Profiling_t1148A935DE86EC9E67DA54238721B4178A744AD3_il2cpp_TypeInfo_var))->___addRenderPasses;
|
|
ProfilingScope__ctor_m4B73587A2295443A73B64DDD3D484D8EAECC0D65((&V_0), L_0, NULL);
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_00b1:
|
|
{
|
|
ProfilingScope_Dispose_m4231A2ACA1F8E345BB0078310A9F7601704C8BE4((&V_0), NULL);
|
|
return;
|
|
}
|
|
});
|
|
try
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1638>
|
|
V_2 = 0;
|
|
goto IL_005b_1;
|
|
}
|
|
|
|
IL_0010_1:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1640>
|
|
List_1_t2121653FB628940E808D105AD2C17E0F20AFB3A6* L_1;
|
|
L_1 = ScriptableRenderer_get_rendererFeatures_m2473415AE63D3735ACBD7BF7CAEA7CB0315A7057_inline(__this, NULL);
|
|
int32_t L_2 = V_2;
|
|
NullCheck(L_1);
|
|
ScriptableRendererFeature_tF2ED08AD2498105378D4DAB0386A0F8A144EF4C6* L_3;
|
|
L_3 = List_1_get_Item_mA0690F170B9EA5DBD421B889FC1DEDEF46CAAD1E(L_1, L_2, List_1_get_Item_mA0690F170B9EA5DBD421B889FC1DEDEF46CAAD1E_RuntimeMethod_var);
|
|
NullCheck(L_3);
|
|
bool L_4;
|
|
L_4 = ScriptableRendererFeature_get_isActive_m3A636889F4504C471F26F735F682472FD9B31178_inline(L_3, NULL);
|
|
if (!L_4)
|
|
{
|
|
goto IL_0057_1;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1645>
|
|
List_1_t2121653FB628940E808D105AD2C17E0F20AFB3A6* L_5;
|
|
L_5 = ScriptableRenderer_get_rendererFeatures_m2473415AE63D3735ACBD7BF7CAEA7CB0315A7057_inline(__this, NULL);
|
|
int32_t L_6 = V_2;
|
|
NullCheck(L_5);
|
|
ScriptableRendererFeature_tF2ED08AD2498105378D4DAB0386A0F8A144EF4C6* L_7;
|
|
L_7 = List_1_get_Item_mA0690F170B9EA5DBD421B889FC1DEDEF46CAAD1E(L_5, L_6, List_1_get_Item_mA0690F170B9EA5DBD421B889FC1DEDEF46CAAD1E_RuntimeMethod_var);
|
|
NullCheck(L_7);
|
|
bool L_8;
|
|
L_8 = VirtualFuncInvoker0< bool >::Invoke(9, L_7);
|
|
if (L_8)
|
|
{
|
|
goto IL_003d_1;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1646>
|
|
__this->___disableNativeRenderPassInFeatures = (bool)1;
|
|
}
|
|
|
|
IL_003d_1:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1648>
|
|
List_1_t2121653FB628940E808D105AD2C17E0F20AFB3A6* L_9;
|
|
L_9 = ScriptableRenderer_get_rendererFeatures_m2473415AE63D3735ACBD7BF7CAEA7CB0315A7057_inline(__this, NULL);
|
|
int32_t L_10 = V_2;
|
|
NullCheck(L_9);
|
|
ScriptableRendererFeature_tF2ED08AD2498105378D4DAB0386A0F8A144EF4C6* L_11;
|
|
L_11 = List_1_get_Item_mA0690F170B9EA5DBD421B889FC1DEDEF46CAAD1E(L_9, L_10, List_1_get_Item_mA0690F170B9EA5DBD421B889FC1DEDEF46CAAD1E_RuntimeMethod_var);
|
|
RenderingData_tAAA01190551D6D5954314E3E1E85B58DD45EED71* L_12 = ___0_renderingData;
|
|
NullCheck(L_11);
|
|
VirtualActionInvoker2< ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892*, RenderingData_tAAA01190551D6D5954314E3E1E85B58DD45EED71* >::Invoke(7, L_11, __this, L_12);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1649>
|
|
__this->___disableNativeRenderPassInFeatures = (bool)0;
|
|
}
|
|
|
|
IL_0057_1:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1638>
|
|
int32_t L_13 = V_2;
|
|
V_2 = ((int32_t)il2cpp_codegen_add(L_13, 1));
|
|
}
|
|
|
|
IL_005b_1:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1638>
|
|
int32_t L_14 = V_2;
|
|
List_1_t2121653FB628940E808D105AD2C17E0F20AFB3A6* L_15;
|
|
L_15 = ScriptableRenderer_get_rendererFeatures_m2473415AE63D3735ACBD7BF7CAEA7CB0315A7057_inline(__this, NULL);
|
|
NullCheck(L_15);
|
|
int32_t L_16;
|
|
L_16 = List_1_get_Count_m81D0B7C641653EC8742F7B48EC513ECBD2A61C97_inline(L_15, List_1_get_Count_m81D0B7C641653EC8742F7B48EC513ECBD2A61C97_RuntimeMethod_var);
|
|
if ((((int32_t)L_14) < ((int32_t)L_16)))
|
|
{
|
|
goto IL_0010_1;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1653>
|
|
List_1_t2E485E650BF1E41358CE56A69323E183C5A89CB6* L_17;
|
|
L_17 = ScriptableRenderer_get_activeRenderPassQueue_m3DA13EE251E757FC42DAE103A487C3F1562A850F_inline(__this, NULL);
|
|
NullCheck(L_17);
|
|
int32_t L_18;
|
|
L_18 = List_1_get_Count_mE6D3D9D20C29AB0625389FEF206BBFF202CD5293_inline(L_17, List_1_get_Count_mE6D3D9D20C29AB0625389FEF206BBFF202CD5293_RuntimeMethod_var);
|
|
V_1 = L_18;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1654>
|
|
int32_t L_19 = V_1;
|
|
V_3 = ((int32_t)il2cpp_codegen_subtract(L_19, 1));
|
|
goto IL_0099_1;
|
|
}
|
|
|
|
IL_007b_1:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1656>
|
|
List_1_t2E485E650BF1E41358CE56A69323E183C5A89CB6* L_20;
|
|
L_20 = ScriptableRenderer_get_activeRenderPassQueue_m3DA13EE251E757FC42DAE103A487C3F1562A850F_inline(__this, NULL);
|
|
int32_t L_21 = V_3;
|
|
NullCheck(L_20);
|
|
ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* L_22;
|
|
L_22 = List_1_get_Item_mBC42042D4082F4C6237FEA3435D58D570436268F(L_20, L_21, List_1_get_Item_mBC42042D4082F4C6237FEA3435D58D570436268F_RuntimeMethod_var);
|
|
if (L_22)
|
|
{
|
|
goto IL_0095_1;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1657>
|
|
List_1_t2E485E650BF1E41358CE56A69323E183C5A89CB6* L_23;
|
|
L_23 = ScriptableRenderer_get_activeRenderPassQueue_m3DA13EE251E757FC42DAE103A487C3F1562A850F_inline(__this, NULL);
|
|
int32_t L_24 = V_3;
|
|
NullCheck(L_23);
|
|
List_1_RemoveAt_m901167C6F189A4D02B21F1A9CE238CDDCFF769CB(L_23, L_24, List_1_RemoveAt_m901167C6F189A4D02B21F1A9CE238CDDCFF769CB_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_0095_1:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1654>
|
|
int32_t L_25 = V_3;
|
|
V_3 = ((int32_t)il2cpp_codegen_subtract(L_25, 1));
|
|
}
|
|
|
|
IL_0099_1:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1654>
|
|
int32_t L_26 = V_3;
|
|
if ((((int32_t)L_26) >= ((int32_t)0)))
|
|
{
|
|
goto IL_007b_1;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1661>
|
|
int32_t L_27 = V_1;
|
|
if ((((int32_t)L_27) <= ((int32_t)0)))
|
|
{
|
|
goto IL_00af_1;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_28 = __this->___m_StoreActionsOptimizationSetting;
|
|
if (L_28)
|
|
{
|
|
goto IL_00af_1;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1662>
|
|
il2cpp_codegen_runtime_class_init_inline(ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892_il2cpp_TypeInfo_var);
|
|
((ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892_StaticFields*)il2cpp_codegen_static_fields_for(ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892_il2cpp_TypeInfo_var))->___m_UseOptimizedStoreActions = (bool)0;
|
|
}
|
|
|
|
IL_00af_1:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1663>
|
|
goto IL_00bf;
|
|
}
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_00bf:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1663>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 33423
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ScriptableRenderer_SetupRenderPasses_m472967159C7CCC9163CC7E63090C5342CEF8AACA (ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892* __this, RenderingData_tAAA01190551D6D5954314E3E1E85B58DD45EED71* ___0_renderingData, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Count_m81D0B7C641653EC8742F7B48EC513ECBD2A61C97_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Item_mA0690F170B9EA5DBD421B889FC1DEDEF46CAAD1E_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Profiling_t1148A935DE86EC9E67DA54238721B4178A744AD3_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
ProfilingScope_t57898BA31E8EF8F083EF84E0DA2737AC61CBC5BD V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
int32_t V_1 = 0;
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1673>
|
|
il2cpp_codegen_runtime_class_init_inline(Profiling_t1148A935DE86EC9E67DA54238721B4178A744AD3_il2cpp_TypeInfo_var);
|
|
ProfilingSampler_t420D4672EDB44E0EF980B31ADFD9E5747200FECE* L_0 = ((Profiling_t1148A935DE86EC9E67DA54238721B4178A744AD3_StaticFields*)il2cpp_codegen_static_fields_for(Profiling_t1148A935DE86EC9E67DA54238721B4178A744AD3_il2cpp_TypeInfo_var))->___setupRenderPasses;
|
|
ProfilingScope__ctor_m4B73587A2295443A73B64DDD3D484D8EAECC0D65((&V_0), L_0, NULL);
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_004a:
|
|
{
|
|
ProfilingScope_Dispose_m4231A2ACA1F8E345BB0078310A9F7601704C8BE4((&V_0), NULL);
|
|
return;
|
|
}
|
|
});
|
|
try
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1676>
|
|
V_1 = 0;
|
|
goto IL_003a_1;
|
|
}
|
|
|
|
IL_0010_1:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1678>
|
|
List_1_t2121653FB628940E808D105AD2C17E0F20AFB3A6* L_1;
|
|
L_1 = ScriptableRenderer_get_rendererFeatures_m2473415AE63D3735ACBD7BF7CAEA7CB0315A7057_inline(__this, NULL);
|
|
int32_t L_2 = V_1;
|
|
NullCheck(L_1);
|
|
ScriptableRendererFeature_tF2ED08AD2498105378D4DAB0386A0F8A144EF4C6* L_3;
|
|
L_3 = List_1_get_Item_mA0690F170B9EA5DBD421B889FC1DEDEF46CAAD1E(L_1, L_2, List_1_get_Item_mA0690F170B9EA5DBD421B889FC1DEDEF46CAAD1E_RuntimeMethod_var);
|
|
NullCheck(L_3);
|
|
bool L_4;
|
|
L_4 = ScriptableRendererFeature_get_isActive_m3A636889F4504C471F26F735F682472FD9B31178_inline(L_3, NULL);
|
|
if (!L_4)
|
|
{
|
|
goto IL_0036_1;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1681>
|
|
List_1_t2121653FB628940E808D105AD2C17E0F20AFB3A6* L_5;
|
|
L_5 = ScriptableRenderer_get_rendererFeatures_m2473415AE63D3735ACBD7BF7CAEA7CB0315A7057_inline(__this, NULL);
|
|
int32_t L_6 = V_1;
|
|
NullCheck(L_5);
|
|
ScriptableRendererFeature_tF2ED08AD2498105378D4DAB0386A0F8A144EF4C6* L_7;
|
|
L_7 = List_1_get_Item_mA0690F170B9EA5DBD421B889FC1DEDEF46CAAD1E(L_5, L_6, List_1_get_Item_mA0690F170B9EA5DBD421B889FC1DEDEF46CAAD1E_RuntimeMethod_var);
|
|
RenderingData_tAAA01190551D6D5954314E3E1E85B58DD45EED71* L_8 = ___0_renderingData;
|
|
NullCheck(L_7);
|
|
VirtualActionInvoker2< ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892*, RenderingData_tAAA01190551D6D5954314E3E1E85B58DD45EED71* >::Invoke(8, L_7, __this, L_8);
|
|
}
|
|
|
|
IL_0036_1:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1676>
|
|
int32_t L_9 = V_1;
|
|
V_1 = ((int32_t)il2cpp_codegen_add(L_9, 1));
|
|
}
|
|
|
|
IL_003a_1:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1676>
|
|
int32_t L_10 = V_1;
|
|
List_1_t2121653FB628940E808D105AD2C17E0F20AFB3A6* L_11;
|
|
L_11 = ScriptableRenderer_get_rendererFeatures_m2473415AE63D3735ACBD7BF7CAEA7CB0315A7057_inline(__this, NULL);
|
|
NullCheck(L_11);
|
|
int32_t L_12;
|
|
L_12 = List_1_get_Count_m81D0B7C641653EC8742F7B48EC513ECBD2A61C97_inline(L_11, List_1_get_Count_m81D0B7C641653EC8742F7B48EC513ECBD2A61C97_RuntimeMethod_var);
|
|
if ((((int32_t)L_10) < ((int32_t)L_12)))
|
|
{
|
|
goto IL_0010_1;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1683>
|
|
goto IL_0058;
|
|
}
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_0058:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1683>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 33424
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ScriptableRenderer_ClearRenderingState_m06E468421AC0F8FB6BCBD817B0418354B715D784 (RuntimeObject* ___0_cmd, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IBaseCommandBuffer_t16CFD34D15BD9536318EF2D0438EE888A2B7EAA0_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Profiling_t1148A935DE86EC9E67DA54238721B4178A744AD3_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ScreenSpaceAmbientOcclusionPass_t4E4085E6273C80B0561CD6F348107F8E010DC981_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ShaderGlobalKeywords_tCD2A8F654428E5D252204D24E379C6725E5A2C91_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
ProfilingScope_t57898BA31E8EF8F083EF84E0DA2737AC61CBC5BD V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1687>
|
|
il2cpp_codegen_runtime_class_init_inline(Profiling_t1148A935DE86EC9E67DA54238721B4178A744AD3_il2cpp_TypeInfo_var);
|
|
ProfilingSampler_t420D4672EDB44E0EF980B31ADFD9E5747200FECE* L_0 = ((Profiling_t1148A935DE86EC9E67DA54238721B4178A744AD3_StaticFields*)il2cpp_codegen_static_fields_for(Profiling_t1148A935DE86EC9E67DA54238721B4178A744AD3_il2cpp_TypeInfo_var))->___clearRenderingState;
|
|
ProfilingScope__ctor_m4B73587A2295443A73B64DDD3D484D8EAECC0D65((&V_0), L_0, NULL);
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_0102:
|
|
{
|
|
ProfilingScope_Dispose_m4231A2ACA1F8E345BB0078310A9F7601704C8BE4((&V_0), NULL);
|
|
return;
|
|
}
|
|
});
|
|
try
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1690>
|
|
RuntimeObject* L_1 = ___0_cmd;
|
|
NullCheck(L_1);
|
|
InterfaceActionInvoker2< GlobalKeyword_tFA029618DA6ADCA20CFA44C1B8AFFF9EA097AE7D*, bool >::Invoke(18, IBaseCommandBuffer_t16CFD34D15BD9536318EF2D0438EE888A2B7EAA0_il2cpp_TypeInfo_var, L_1, (&((ShaderGlobalKeywords_tCD2A8F654428E5D252204D24E379C6725E5A2C91_StaticFields*)il2cpp_codegen_static_fields_for(ShaderGlobalKeywords_tCD2A8F654428E5D252204D24E379C6725E5A2C91_il2cpp_TypeInfo_var))->___MainLightShadows), (bool)0);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1691>
|
|
RuntimeObject* L_2 = ___0_cmd;
|
|
NullCheck(L_2);
|
|
InterfaceActionInvoker2< GlobalKeyword_tFA029618DA6ADCA20CFA44C1B8AFFF9EA097AE7D*, bool >::Invoke(18, IBaseCommandBuffer_t16CFD34D15BD9536318EF2D0438EE888A2B7EAA0_il2cpp_TypeInfo_var, L_2, (&((ShaderGlobalKeywords_tCD2A8F654428E5D252204D24E379C6725E5A2C91_StaticFields*)il2cpp_codegen_static_fields_for(ShaderGlobalKeywords_tCD2A8F654428E5D252204D24E379C6725E5A2C91_il2cpp_TypeInfo_var))->___MainLightShadowCascades), (bool)0);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1692>
|
|
RuntimeObject* L_3 = ___0_cmd;
|
|
NullCheck(L_3);
|
|
InterfaceActionInvoker2< GlobalKeyword_tFA029618DA6ADCA20CFA44C1B8AFFF9EA097AE7D*, bool >::Invoke(18, IBaseCommandBuffer_t16CFD34D15BD9536318EF2D0438EE888A2B7EAA0_il2cpp_TypeInfo_var, L_3, (&((ShaderGlobalKeywords_tCD2A8F654428E5D252204D24E379C6725E5A2C91_StaticFields*)il2cpp_codegen_static_fields_for(ShaderGlobalKeywords_tCD2A8F654428E5D252204D24E379C6725E5A2C91_il2cpp_TypeInfo_var))->___AdditionalLightsVertex), (bool)0);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1693>
|
|
RuntimeObject* L_4 = ___0_cmd;
|
|
NullCheck(L_4);
|
|
InterfaceActionInvoker2< GlobalKeyword_tFA029618DA6ADCA20CFA44C1B8AFFF9EA097AE7D*, bool >::Invoke(18, IBaseCommandBuffer_t16CFD34D15BD9536318EF2D0438EE888A2B7EAA0_il2cpp_TypeInfo_var, L_4, (&((ShaderGlobalKeywords_tCD2A8F654428E5D252204D24E379C6725E5A2C91_StaticFields*)il2cpp_codegen_static_fields_for(ShaderGlobalKeywords_tCD2A8F654428E5D252204D24E379C6725E5A2C91_il2cpp_TypeInfo_var))->___AdditionalLightsPixel), (bool)0);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1694>
|
|
RuntimeObject* L_5 = ___0_cmd;
|
|
NullCheck(L_5);
|
|
InterfaceActionInvoker2< GlobalKeyword_tFA029618DA6ADCA20CFA44C1B8AFFF9EA097AE7D*, bool >::Invoke(18, IBaseCommandBuffer_t16CFD34D15BD9536318EF2D0438EE888A2B7EAA0_il2cpp_TypeInfo_var, L_5, (&((ShaderGlobalKeywords_tCD2A8F654428E5D252204D24E379C6725E5A2C91_StaticFields*)il2cpp_codegen_static_fields_for(ShaderGlobalKeywords_tCD2A8F654428E5D252204D24E379C6725E5A2C91_il2cpp_TypeInfo_var))->___ClusterLightLoop), (bool)0);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1695>
|
|
RuntimeObject* L_6 = ___0_cmd;
|
|
NullCheck(L_6);
|
|
InterfaceActionInvoker2< GlobalKeyword_tFA029618DA6ADCA20CFA44C1B8AFFF9EA097AE7D*, bool >::Invoke(18, IBaseCommandBuffer_t16CFD34D15BD9536318EF2D0438EE888A2B7EAA0_il2cpp_TypeInfo_var, L_6, (&((ShaderGlobalKeywords_tCD2A8F654428E5D252204D24E379C6725E5A2C91_StaticFields*)il2cpp_codegen_static_fields_for(ShaderGlobalKeywords_tCD2A8F654428E5D252204D24E379C6725E5A2C91_il2cpp_TypeInfo_var))->___ForwardPlus), (bool)0);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1696>
|
|
RuntimeObject* L_7 = ___0_cmd;
|
|
NullCheck(L_7);
|
|
InterfaceActionInvoker2< GlobalKeyword_tFA029618DA6ADCA20CFA44C1B8AFFF9EA097AE7D*, bool >::Invoke(18, IBaseCommandBuffer_t16CFD34D15BD9536318EF2D0438EE888A2B7EAA0_il2cpp_TypeInfo_var, L_7, (&((ShaderGlobalKeywords_tCD2A8F654428E5D252204D24E379C6725E5A2C91_StaticFields*)il2cpp_codegen_static_fields_for(ShaderGlobalKeywords_tCD2A8F654428E5D252204D24E379C6725E5A2C91_il2cpp_TypeInfo_var))->___AdditionalLightShadows), (bool)0);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1697>
|
|
RuntimeObject* L_8 = ___0_cmd;
|
|
NullCheck(L_8);
|
|
InterfaceActionInvoker2< GlobalKeyword_tFA029618DA6ADCA20CFA44C1B8AFFF9EA097AE7D*, bool >::Invoke(18, IBaseCommandBuffer_t16CFD34D15BD9536318EF2D0438EE888A2B7EAA0_il2cpp_TypeInfo_var, L_8, (&((ShaderGlobalKeywords_tCD2A8F654428E5D252204D24E379C6725E5A2C91_StaticFields*)il2cpp_codegen_static_fields_for(ShaderGlobalKeywords_tCD2A8F654428E5D252204D24E379C6725E5A2C91_il2cpp_TypeInfo_var))->___ReflectionProbeBlending), (bool)0);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1698>
|
|
RuntimeObject* L_9 = ___0_cmd;
|
|
NullCheck(L_9);
|
|
InterfaceActionInvoker2< GlobalKeyword_tFA029618DA6ADCA20CFA44C1B8AFFF9EA097AE7D*, bool >::Invoke(18, IBaseCommandBuffer_t16CFD34D15BD9536318EF2D0438EE888A2B7EAA0_il2cpp_TypeInfo_var, L_9, (&((ShaderGlobalKeywords_tCD2A8F654428E5D252204D24E379C6725E5A2C91_StaticFields*)il2cpp_codegen_static_fields_for(ShaderGlobalKeywords_tCD2A8F654428E5D252204D24E379C6725E5A2C91_il2cpp_TypeInfo_var))->___ReflectionProbeBoxProjection), (bool)0);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1699>
|
|
RuntimeObject* L_10 = ___0_cmd;
|
|
NullCheck(L_10);
|
|
InterfaceActionInvoker2< GlobalKeyword_tFA029618DA6ADCA20CFA44C1B8AFFF9EA097AE7D*, bool >::Invoke(18, IBaseCommandBuffer_t16CFD34D15BD9536318EF2D0438EE888A2B7EAA0_il2cpp_TypeInfo_var, L_10, (&((ShaderGlobalKeywords_tCD2A8F654428E5D252204D24E379C6725E5A2C91_StaticFields*)il2cpp_codegen_static_fields_for(ShaderGlobalKeywords_tCD2A8F654428E5D252204D24E379C6725E5A2C91_il2cpp_TypeInfo_var))->___ReflectionProbeAtlas), (bool)0);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1700>
|
|
RuntimeObject* L_11 = ___0_cmd;
|
|
NullCheck(L_11);
|
|
InterfaceActionInvoker2< GlobalKeyword_tFA029618DA6ADCA20CFA44C1B8AFFF9EA097AE7D*, bool >::Invoke(18, IBaseCommandBuffer_t16CFD34D15BD9536318EF2D0438EE888A2B7EAA0_il2cpp_TypeInfo_var, L_11, (&((ShaderGlobalKeywords_tCD2A8F654428E5D252204D24E379C6725E5A2C91_StaticFields*)il2cpp_codegen_static_fields_for(ShaderGlobalKeywords_tCD2A8F654428E5D252204D24E379C6725E5A2C91_il2cpp_TypeInfo_var))->___SoftShadows), (bool)0);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1701>
|
|
RuntimeObject* L_12 = ___0_cmd;
|
|
NullCheck(L_12);
|
|
InterfaceActionInvoker2< GlobalKeyword_tFA029618DA6ADCA20CFA44C1B8AFFF9EA097AE7D*, bool >::Invoke(18, IBaseCommandBuffer_t16CFD34D15BD9536318EF2D0438EE888A2B7EAA0_il2cpp_TypeInfo_var, L_12, (&((ShaderGlobalKeywords_tCD2A8F654428E5D252204D24E379C6725E5A2C91_StaticFields*)il2cpp_codegen_static_fields_for(ShaderGlobalKeywords_tCD2A8F654428E5D252204D24E379C6725E5A2C91_il2cpp_TypeInfo_var))->___SoftShadowsLow), (bool)0);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1702>
|
|
RuntimeObject* L_13 = ___0_cmd;
|
|
NullCheck(L_13);
|
|
InterfaceActionInvoker2< GlobalKeyword_tFA029618DA6ADCA20CFA44C1B8AFFF9EA097AE7D*, bool >::Invoke(18, IBaseCommandBuffer_t16CFD34D15BD9536318EF2D0438EE888A2B7EAA0_il2cpp_TypeInfo_var, L_13, (&((ShaderGlobalKeywords_tCD2A8F654428E5D252204D24E379C6725E5A2C91_StaticFields*)il2cpp_codegen_static_fields_for(ShaderGlobalKeywords_tCD2A8F654428E5D252204D24E379C6725E5A2C91_il2cpp_TypeInfo_var))->___SoftShadowsMedium), (bool)0);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1703>
|
|
RuntimeObject* L_14 = ___0_cmd;
|
|
NullCheck(L_14);
|
|
InterfaceActionInvoker2< GlobalKeyword_tFA029618DA6ADCA20CFA44C1B8AFFF9EA097AE7D*, bool >::Invoke(18, IBaseCommandBuffer_t16CFD34D15BD9536318EF2D0438EE888A2B7EAA0_il2cpp_TypeInfo_var, L_14, (&((ShaderGlobalKeywords_tCD2A8F654428E5D252204D24E379C6725E5A2C91_StaticFields*)il2cpp_codegen_static_fields_for(ShaderGlobalKeywords_tCD2A8F654428E5D252204D24E379C6725E5A2C91_il2cpp_TypeInfo_var))->___SoftShadowsHigh), (bool)0);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1704>
|
|
RuntimeObject* L_15 = ___0_cmd;
|
|
NullCheck(L_15);
|
|
InterfaceActionInvoker2< GlobalKeyword_tFA029618DA6ADCA20CFA44C1B8AFFF9EA097AE7D*, bool >::Invoke(18, IBaseCommandBuffer_t16CFD34D15BD9536318EF2D0438EE888A2B7EAA0_il2cpp_TypeInfo_var, L_15, (&((ShaderGlobalKeywords_tCD2A8F654428E5D252204D24E379C6725E5A2C91_StaticFields*)il2cpp_codegen_static_fields_for(ShaderGlobalKeywords_tCD2A8F654428E5D252204D24E379C6725E5A2C91_il2cpp_TypeInfo_var))->___MixedLightingSubtractive), (bool)0);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1705>
|
|
RuntimeObject* L_16 = ___0_cmd;
|
|
NullCheck(L_16);
|
|
InterfaceActionInvoker2< GlobalKeyword_tFA029618DA6ADCA20CFA44C1B8AFFF9EA097AE7D*, bool >::Invoke(18, IBaseCommandBuffer_t16CFD34D15BD9536318EF2D0438EE888A2B7EAA0_il2cpp_TypeInfo_var, L_16, (&((ShaderGlobalKeywords_tCD2A8F654428E5D252204D24E379C6725E5A2C91_StaticFields*)il2cpp_codegen_static_fields_for(ShaderGlobalKeywords_tCD2A8F654428E5D252204D24E379C6725E5A2C91_il2cpp_TypeInfo_var))->___LightmapShadowMixing), (bool)0);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1706>
|
|
RuntimeObject* L_17 = ___0_cmd;
|
|
NullCheck(L_17);
|
|
InterfaceActionInvoker2< GlobalKeyword_tFA029618DA6ADCA20CFA44C1B8AFFF9EA097AE7D*, bool >::Invoke(18, IBaseCommandBuffer_t16CFD34D15BD9536318EF2D0438EE888A2B7EAA0_il2cpp_TypeInfo_var, L_17, (&((ShaderGlobalKeywords_tCD2A8F654428E5D252204D24E379C6725E5A2C91_StaticFields*)il2cpp_codegen_static_fields_for(ShaderGlobalKeywords_tCD2A8F654428E5D252204D24E379C6725E5A2C91_il2cpp_TypeInfo_var))->___ShadowsShadowMask), (bool)0);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1707>
|
|
RuntimeObject* L_18 = ___0_cmd;
|
|
NullCheck(L_18);
|
|
InterfaceActionInvoker2< GlobalKeyword_tFA029618DA6ADCA20CFA44C1B8AFFF9EA097AE7D*, bool >::Invoke(18, IBaseCommandBuffer_t16CFD34D15BD9536318EF2D0438EE888A2B7EAA0_il2cpp_TypeInfo_var, L_18, (&((ShaderGlobalKeywords_tCD2A8F654428E5D252204D24E379C6725E5A2C91_StaticFields*)il2cpp_codegen_static_fields_for(ShaderGlobalKeywords_tCD2A8F654428E5D252204D24E379C6725E5A2C91_il2cpp_TypeInfo_var))->___LinearToSRGBConversion), (bool)0);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1708>
|
|
RuntimeObject* L_19 = ___0_cmd;
|
|
NullCheck(L_19);
|
|
InterfaceActionInvoker2< GlobalKeyword_tFA029618DA6ADCA20CFA44C1B8AFFF9EA097AE7D*, bool >::Invoke(18, IBaseCommandBuffer_t16CFD34D15BD9536318EF2D0438EE888A2B7EAA0_il2cpp_TypeInfo_var, L_19, (&((ShaderGlobalKeywords_tCD2A8F654428E5D252204D24E379C6725E5A2C91_StaticFields*)il2cpp_codegen_static_fields_for(ShaderGlobalKeywords_tCD2A8F654428E5D252204D24E379C6725E5A2C91_il2cpp_TypeInfo_var))->___LightLayers), (bool)0);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1709>
|
|
RuntimeObject* L_20 = ___0_cmd;
|
|
il2cpp_codegen_runtime_class_init_inline(ScreenSpaceAmbientOcclusionPass_t4E4085E6273C80B0561CD6F348107F8E010DC981_il2cpp_TypeInfo_var);
|
|
int32_t L_21 = ((ScreenSpaceAmbientOcclusionPass_t4E4085E6273C80B0561CD6F348107F8E010DC981_StaticFields*)il2cpp_codegen_static_fields_for(ScreenSpaceAmbientOcclusionPass_t4E4085E6273C80B0561CD6F348107F8E010DC981_il2cpp_TypeInfo_var))->___s_AmbientOcclusionParamID;
|
|
Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3 L_22;
|
|
L_22 = Vector4_get_zero_m3D61F5FA9483CD9C08977D9D8852FB448B4CE6D1_inline(NULL);
|
|
NullCheck(L_20);
|
|
InterfaceActionInvoker2< int32_t, Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3 >::Invoke(7, IBaseCommandBuffer_t16CFD34D15BD9536318EF2D0438EE888A2B7EAA0_il2cpp_TypeInfo_var, L_20, L_21, L_22);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1710>
|
|
goto IL_0110;
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_0110:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1710>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 33425
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ScriptableRenderer_Clear_mC6FE17F23429708C54B9BC06747196B90C6CF3D4 (ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892* __this, int32_t ___0_cameraType, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RenderTargetIdentifier_tA528663AC6EB3911D8E91AA40F7070FA5455442B_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int32_t V_0 = 0;
|
|
int32_t V_1 = 0;
|
|
RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B* G_B6_0 = NULL;
|
|
int32_t G_B6_1 = 0;
|
|
RenderTargetIdentifierU5BU5D_t179798C153B7CE381B41C57863F98CB24023C4CE* G_B6_2 = NULL;
|
|
RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B* G_B5_0 = NULL;
|
|
int32_t G_B5_1 = 0;
|
|
RenderTargetIdentifierU5BU5D_t179798C153B7CE381B41C57863F98CB24023C4CE* G_B5_2 = NULL;
|
|
RenderTargetIdentifier_tA528663AC6EB3911D8E91AA40F7070FA5455442B G_B7_0;
|
|
memset((&G_B7_0), 0, sizeof(G_B7_0));
|
|
int32_t G_B7_1 = 0;
|
|
RenderTargetIdentifierU5BU5D_t179798C153B7CE381B41C57863F98CB24023C4CE* G_B7_2 = NULL;
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1714>
|
|
il2cpp_codegen_runtime_class_init_inline(ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892_il2cpp_TypeInfo_var);
|
|
RTHandleU5BU5D_tE4B403B060D159B839BF74E8B59F8DCD52CF97DF* L_0 = ((ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892_StaticFields*)il2cpp_codegen_static_fields_for(ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892_il2cpp_TypeInfo_var))->___m_ActiveColorAttachments;
|
|
RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B* L_1 = ((ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892_StaticFields*)il2cpp_codegen_static_fields_for(ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892_il2cpp_TypeInfo_var))->___k_CameraTarget;
|
|
NullCheck(L_0);
|
|
ArrayElementTypeCheck (L_0, L_1);
|
|
(L_0)->SetAt(static_cast<il2cpp_array_size_t>(0), (RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B*)L_1);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1715>
|
|
V_0 = 1;
|
|
goto IL_001c;
|
|
}
|
|
|
|
IL_0010:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1716>
|
|
il2cpp_codegen_runtime_class_init_inline(ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892_il2cpp_TypeInfo_var);
|
|
RTHandleU5BU5D_tE4B403B060D159B839BF74E8B59F8DCD52CF97DF* L_2 = ((ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892_StaticFields*)il2cpp_codegen_static_fields_for(ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892_il2cpp_TypeInfo_var))->___m_ActiveColorAttachments;
|
|
int32_t L_3 = V_0;
|
|
NullCheck(L_2);
|
|
ArrayElementTypeCheck (L_2, NULL);
|
|
(L_2)->SetAt(static_cast<il2cpp_array_size_t>(L_3), (RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B*)NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1715>
|
|
int32_t L_4 = V_0;
|
|
V_0 = ((int32_t)il2cpp_codegen_add(L_4, 1));
|
|
}
|
|
|
|
IL_001c:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1715>
|
|
int32_t L_5 = V_0;
|
|
il2cpp_codegen_runtime_class_init_inline(ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892_il2cpp_TypeInfo_var);
|
|
RTHandleU5BU5D_tE4B403B060D159B839BF74E8B59F8DCD52CF97DF* L_6 = ((ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892_StaticFields*)il2cpp_codegen_static_fields_for(ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892_il2cpp_TypeInfo_var))->___m_ActiveColorAttachments;
|
|
NullCheck(L_6);
|
|
if ((((int32_t)L_5) < ((int32_t)((int32_t)(((RuntimeArray*)L_6)->max_length)))))
|
|
{
|
|
goto IL_0010;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1717>
|
|
V_1 = 0;
|
|
goto IL_0051;
|
|
}
|
|
|
|
IL_002a:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1718>
|
|
il2cpp_codegen_runtime_class_init_inline(ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892_il2cpp_TypeInfo_var);
|
|
RenderTargetIdentifierU5BU5D_t179798C153B7CE381B41C57863F98CB24023C4CE* L_7 = ((ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892_StaticFields*)il2cpp_codegen_static_fields_for(ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892_il2cpp_TypeInfo_var))->___m_ActiveColorAttachmentIDs;
|
|
int32_t L_8 = V_1;
|
|
RTHandleU5BU5D_tE4B403B060D159B839BF74E8B59F8DCD52CF97DF* L_9 = ((ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892_StaticFields*)il2cpp_codegen_static_fields_for(ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892_il2cpp_TypeInfo_var))->___m_ActiveColorAttachments;
|
|
int32_t L_10 = V_1;
|
|
NullCheck(L_9);
|
|
int32_t L_11 = L_10;
|
|
RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B* L_12 = (L_9)->GetAt(static_cast<il2cpp_array_size_t>(L_11));
|
|
RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B* L_13 = L_12;
|
|
if (L_13)
|
|
{
|
|
G_B6_0 = L_13;
|
|
G_B6_1 = L_8;
|
|
G_B6_2 = L_7;
|
|
goto IL_0043;
|
|
}
|
|
G_B5_0 = L_13;
|
|
G_B5_1 = L_8;
|
|
G_B5_2 = L_7;
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(RenderTargetIdentifier_tA528663AC6EB3911D8E91AA40F7070FA5455442B_il2cpp_TypeInfo_var);
|
|
RenderTargetIdentifier_tA528663AC6EB3911D8E91AA40F7070FA5455442B L_14;
|
|
L_14 = RenderTargetIdentifier_op_Implicit_m5D9E7FF7B325608E3C4A37BBB52FE728361E7324(0, NULL);
|
|
G_B7_0 = L_14;
|
|
G_B7_1 = G_B5_1;
|
|
G_B7_2 = G_B5_2;
|
|
goto IL_0048;
|
|
}
|
|
|
|
IL_0043:
|
|
{
|
|
NullCheck(G_B6_0);
|
|
RenderTargetIdentifier_tA528663AC6EB3911D8E91AA40F7070FA5455442B L_15;
|
|
L_15 = RTHandle_get_nameID_m30AF2567853494DB845D83A8B37D0FB523DA76E9_inline(G_B6_0, NULL);
|
|
G_B7_0 = L_15;
|
|
G_B7_1 = G_B6_1;
|
|
G_B7_2 = G_B6_2;
|
|
}
|
|
|
|
IL_0048:
|
|
{
|
|
NullCheck(G_B7_2);
|
|
(G_B7_2)->SetAt(static_cast<il2cpp_array_size_t>(G_B7_1), (RenderTargetIdentifier_tA528663AC6EB3911D8E91AA40F7070FA5455442B)G_B7_0);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1717>
|
|
int32_t L_16 = V_1;
|
|
V_1 = ((int32_t)il2cpp_codegen_add(L_16, 1));
|
|
}
|
|
|
|
IL_0051:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1717>
|
|
int32_t L_17 = V_1;
|
|
il2cpp_codegen_runtime_class_init_inline(ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892_il2cpp_TypeInfo_var);
|
|
RTHandleU5BU5D_tE4B403B060D159B839BF74E8B59F8DCD52CF97DF* L_18 = ((ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892_StaticFields*)il2cpp_codegen_static_fields_for(ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892_il2cpp_TypeInfo_var))->___m_ActiveColorAttachments;
|
|
NullCheck(L_18);
|
|
if ((((int32_t)L_17) < ((int32_t)((int32_t)(((RuntimeArray*)L_18)->max_length)))))
|
|
{
|
|
goto IL_002a;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1720>
|
|
il2cpp_codegen_runtime_class_init_inline(ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892_il2cpp_TypeInfo_var);
|
|
RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B* L_19 = ((ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892_StaticFields*)il2cpp_codegen_static_fields_for(ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892_il2cpp_TypeInfo_var))->___k_CameraTarget;
|
|
((ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892_StaticFields*)il2cpp_codegen_static_fields_for(ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892_il2cpp_TypeInfo_var))->___m_ActiveDepthAttachment = L_19;
|
|
Il2CppCodeGenWriteBarrier((void**)(&((ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892_StaticFields*)il2cpp_codegen_static_fields_for(ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892_il2cpp_TypeInfo_var))->___m_ActiveDepthAttachment), (void*)L_19);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1722>
|
|
int32_t L_20 = ___0_cameraType;
|
|
__this->___m_FirstTimeCameraColorTargetIsBound = (bool)((((int32_t)L_20) == ((int32_t)0))? 1 : 0);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1723>
|
|
__this->___m_FirstTimeCameraDepthTargetIsBound = (bool)1;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1725>
|
|
__this->___m_CameraColorTarget = (RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B*)NULL;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_CameraColorTarget), (void*)(RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B*)NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1726>
|
|
__this->___m_CameraDepthTarget = (RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B*)NULL;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_CameraDepthTarget), (void*)(RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B*)NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1727>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 33426
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ScriptableRenderer_ExecuteBlock_m69578F593D05E9EE71E13C98C822158D03193E1D (ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892* __this, int32_t ___0_blockIndex, RenderBlocks_t59A6A04E57D947104DA8D449CCB1D406F19DB072* ___1_renderBlocks, ScriptableRenderContext_t5AB09B3602BEB456E0DC3D53926D3A3BDAF08E36 ___2_context, RenderingData_tAAA01190551D6D5954314E3E1E85B58DD45EED71* ___3_renderingData, bool ___4_submit, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ContextContainer_Get_TisUniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7_mE62F7903614384541B770CC0B9A99BD2E608A0F8_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Item_mBC42042D4082F4C6237FEA3435D58D570436268F_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ScriptableRenderContext_t5AB09B3602BEB456E0DC3D53926D3A3BDAF08E36_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
UniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7* V_0 = NULL;
|
|
BlockRange_tA1B8F0F361ACE9052C36ADAD020F52FB749A7F91 V_1;
|
|
memset((&V_1), 0, sizeof(V_1));
|
|
RenderBlocks_t59A6A04E57D947104DA8D449CCB1D406F19DB072 V_2;
|
|
memset((&V_2), 0, sizeof(V_2));
|
|
BlockRange_tA1B8F0F361ACE9052C36ADAD020F52FB749A7F91 V_3;
|
|
memset((&V_3), 0, sizeof(V_3));
|
|
int32_t V_4 = 0;
|
|
ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* V_5 = NULL;
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1733>
|
|
RenderingData_tAAA01190551D6D5954314E3E1E85B58DD45EED71* L_0 = ___3_renderingData;
|
|
ContextContainer_t384E08F63FABEFF6A7F1A753F5EF02699DAD414C* L_1 = L_0->___frameData;
|
|
NullCheck(L_1);
|
|
UniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7* L_2;
|
|
L_2 = ContextContainer_Get_TisUniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7_mE62F7903614384541B770CC0B9A99BD2E608A0F8_inline(L_1, ContextContainer_Get_TisUniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7_mE62F7903614384541B770CC0B9A99BD2E608A0F8_RuntimeMethod_var);
|
|
V_0 = L_2;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1735>
|
|
RenderBlocks_t59A6A04E57D947104DA8D449CCB1D406F19DB072* L_3 = ___1_renderBlocks;
|
|
RenderBlocks_t59A6A04E57D947104DA8D449CCB1D406F19DB072 L_4 = (*(RenderBlocks_t59A6A04E57D947104DA8D449CCB1D406F19DB072*)L_3);
|
|
V_2 = L_4;
|
|
int32_t L_5 = ___0_blockIndex;
|
|
BlockRange_tA1B8F0F361ACE9052C36ADAD020F52FB749A7F91 L_6;
|
|
L_6 = RenderBlocks_GetRange_mBCDFF558A7FB92CB0F23A681AE14BC9029DA75A6((&V_2), L_5, NULL);
|
|
V_3 = L_6;
|
|
BlockRange_tA1B8F0F361ACE9052C36ADAD020F52FB749A7F91 L_7;
|
|
L_7 = BlockRange_GetEnumerator_m5ABDD60561E6FE77794F49D9DAEBFCCA368375B0((&V_3), NULL);
|
|
V_1 = L_7;
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_0056:
|
|
{
|
|
BlockRange_Dispose_mF58CD9DF9B97A3048311E9DEBC5D72B8242BB4B0((&V_1), NULL);
|
|
return;
|
|
}
|
|
});
|
|
try
|
|
{
|
|
{
|
|
goto IL_004b_1;
|
|
}
|
|
|
|
IL_0027_1:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1735>
|
|
int32_t L_8;
|
|
L_8 = BlockRange_get_Current_mAE0444A8F3C9E0E6999B59148E9C87F6055133F8_inline((&V_1), NULL);
|
|
V_4 = L_8;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1737>
|
|
List_1_t2E485E650BF1E41358CE56A69323E183C5A89CB6* L_9 = __this->___m_ActiveRenderPassQueue;
|
|
int32_t L_10 = V_4;
|
|
NullCheck(L_9);
|
|
ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* L_11;
|
|
L_11 = List_1_get_Item_mBC42042D4082F4C6237FEA3435D58D570436268F(L_9, L_10, List_1_get_Item_mBC42042D4082F4C6237FEA3435D58D570436268F_RuntimeMethod_var);
|
|
V_5 = L_11;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1738>
|
|
ScriptableRenderContext_t5AB09B3602BEB456E0DC3D53926D3A3BDAF08E36 L_12 = ___2_context;
|
|
ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* L_13 = V_5;
|
|
UniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7* L_14 = V_0;
|
|
RenderingData_tAAA01190551D6D5954314E3E1E85B58DD45EED71* L_15 = ___3_renderingData;
|
|
ScriptableRenderer_ExecuteRenderPass_m8ED5438C607B9133B7BC63EC52E4AA4155A7C77C(__this, L_12, L_13, L_14, L_15, NULL);
|
|
}
|
|
|
|
IL_004b_1:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1735>
|
|
bool L_16;
|
|
L_16 = BlockRange_MoveNext_m7428499A41DAC2364322F5D077F7016AFB2A1958((&V_1), NULL);
|
|
if (L_16)
|
|
{
|
|
goto IL_0027_1;
|
|
}
|
|
}
|
|
{
|
|
goto IL_0064;
|
|
}
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_0064:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1741>
|
|
bool L_17 = ___4_submit;
|
|
if (!L_17)
|
|
{
|
|
goto IL_006f;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1742>
|
|
il2cpp_codegen_runtime_class_init_inline(ScriptableRenderContext_t5AB09B3602BEB456E0DC3D53926D3A3BDAF08E36_il2cpp_TypeInfo_var);
|
|
ScriptableRenderContext_Submit_mF417223097ECEB2768EE736BE00A7F94DA3BDD26((&___2_context), NULL);
|
|
}
|
|
|
|
IL_006f:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1743>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 33427
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ScriptableRenderer_IsRenderPassEnabled_m62F183DF3911C7360F8C812DA5E976D08D9ADB7B (ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892* __this, ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* ___0_renderPass, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1748>
|
|
ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* L_0 = ___0_renderPass;
|
|
NullCheck(L_0);
|
|
bool L_1;
|
|
L_1 = ScriptableRenderPass_get_useNativeRenderPass_mB8008DC999D63A3EDBD066CF07F7A4824812E4E9_inline(L_0, NULL);
|
|
if (!L_1)
|
|
{
|
|
goto IL_000f;
|
|
}
|
|
}
|
|
{
|
|
bool L_2 = __this->___useRenderPassEnabled;
|
|
return L_2;
|
|
}
|
|
|
|
IL_000f:
|
|
{
|
|
return (bool)0;
|
|
}
|
|
}
|
|
// Method Definition Index: 33428
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ScriptableRenderer_ExecuteRenderPass_m8ED5438C607B9133B7BC63EC52E4AA4155A7C77C (ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892* __this, ScriptableRenderContext_t5AB09B3602BEB456E0DC3D53926D3A3BDAF08E36 ___0_context, ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* ___1_renderPass, UniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7* ___2_cameraData, RenderingData_tAAA01190551D6D5954314E3E1E85B58DD45EED71* ___3_renderingData, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CommandBufferHelpers_tB8C09D01D6F0369DF52DEA955F017D6001BC72E5_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RenderPass_tA744ADA1424B5992F4E272692C1964A7B7469EFD_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ScriptableRenderContext_t5AB09B3602BEB456E0DC3D53926D3A3BDAF08E36_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XRSystemUniversal_tC6D796087104B8263D12B71391A3147102BE3FF7_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XRSystem_tF767981574E3DA643F7A67A995F12DB1C4A97096_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
ProfilingScope_t57898BA31E8EF8F083EF84E0DA2737AC61CBC5BD V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
CommandBuffer_tB56007DC84EF56296C325EC32DD12AC1E3DC91F7* V_1 = NULL;
|
|
ProfilingScope_t57898BA31E8EF8F083EF84E0DA2737AC61CBC5BD V_2;
|
|
memset((&V_2), 0, sizeof(V_2));
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1756>
|
|
ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* L_0 = ___1_renderPass;
|
|
NullCheck(L_0);
|
|
ProfilingSampler_t420D4672EDB44E0EF980B31ADFD9E5747200FECE* L_1;
|
|
L_1 = ScriptableRenderPass_get_profilingSampler_m627C9BF8A4A08101DCB6F40E0A97145A5A1CDA38(L_0, NULL);
|
|
ProfilingScope__ctor_m4B73587A2295443A73B64DDD3D484D8EAECC0D65((&V_0), L_1, NULL);
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_0111:
|
|
{
|
|
ProfilingScope_Dispose_m4231A2ACA1F8E345BB0078310A9F7601704C8BE4((&V_0), NULL);
|
|
return;
|
|
}
|
|
});
|
|
try
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1759>
|
|
RenderingData_tAAA01190551D6D5954314E3E1E85B58DD45EED71* L_2 = ___3_renderingData;
|
|
CommandBuffer_tB56007DC84EF56296C325EC32DD12AC1E3DC91F7** L_3;
|
|
L_3 = RenderingData_get_commandBuffer_m747CD6ABF19DD5BB05F8231CC84A9922D9DC080A(L_2, NULL);
|
|
CommandBuffer_tB56007DC84EF56296C325EC32DD12AC1E3DC91F7* L_4 = *((CommandBuffer_tB56007DC84EF56296C325EC32DD12AC1E3DC91F7**)L_3);
|
|
V_1 = L_4;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1762>
|
|
UniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7* L_5 = ___2_cameraData;
|
|
NullCheck(L_5);
|
|
XRPass_tFC4577E97B88E0EAAAB2EB387AB3A92E9EB9C6DF* L_6;
|
|
L_6 = UniversalCameraData_get_xr_mC600E667BA2B92EADF2CF60CD49E15242FA83C4D_inline(L_5, NULL);
|
|
NullCheck(L_6);
|
|
bool L_7;
|
|
L_7 = XRPass_get_supportsFoveatedRendering_mC6E13A1C877BBEE86D48AEEA9A552074C2452B73(L_6, NULL);
|
|
if (!L_7)
|
|
{
|
|
goto IL_0068_1;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1764>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1765>
|
|
ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* L_8 = ___1_renderPass;
|
|
NullCheck(L_8);
|
|
int32_t L_9;
|
|
L_9 = ScriptableRenderPass_get_renderPassEvent_mD7ED1EFBF050FE1F86D598FA9A1A987CFEAD1AEE_inline(L_8, NULL);
|
|
if ((((int32_t)L_9) < ((int32_t)((int32_t)150))))
|
|
{
|
|
goto IL_003d_1;
|
|
}
|
|
}
|
|
{
|
|
ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* L_10 = ___1_renderPass;
|
|
NullCheck(L_10);
|
|
int32_t L_11;
|
|
L_11 = ScriptableRenderPass_get_renderPassEvent_mD7ED1EFBF050FE1F86D598FA9A1A987CFEAD1AEE_inline(L_10, NULL);
|
|
if ((((int32_t)L_11) < ((int32_t)((int32_t)550))))
|
|
{
|
|
goto IL_0061_1;
|
|
}
|
|
}
|
|
|
|
IL_003d_1:
|
|
{
|
|
ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* L_12 = ___1_renderPass;
|
|
NullCheck(L_12);
|
|
int32_t L_13;
|
|
L_13 = ScriptableRenderPass_get_renderPassEvent_mD7ED1EFBF050FE1F86D598FA9A1A987CFEAD1AEE_inline(L_12, NULL);
|
|
if ((((int32_t)L_13) <= ((int32_t)((int32_t)1000))))
|
|
{
|
|
goto IL_0068_1;
|
|
}
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(XRSystem_tF767981574E3DA643F7A67A995F12DB1C4A97096_il2cpp_TypeInfo_var);
|
|
int32_t L_14;
|
|
L_14 = XRSystem_get_foveatedRenderingCaps_m2B4B6BD6E1BFD298DD8A66DB2294FA27A0F6F989_inline(NULL);
|
|
int32_t L_15 = L_14;
|
|
int32_t L_16 = 1;
|
|
bool L_17 = il2cpp_codegen_enum_has_flag((int32_t)L_15, (int32_t)L_16);
|
|
if (!L_17)
|
|
{
|
|
goto IL_0068_1;
|
|
}
|
|
}
|
|
|
|
IL_0061_1:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1767>
|
|
CommandBuffer_tB56007DC84EF56296C325EC32DD12AC1E3DC91F7* L_18 = V_1;
|
|
NullCheck(L_18);
|
|
CommandBuffer_SetFoveatedRenderingMode_mEB94470BC91694B62B28AC5EE1383DA636D3B43B(L_18, 1, NULL);
|
|
}
|
|
|
|
IL_0068_1:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1772>
|
|
il2cpp_codegen_runtime_class_init_inline(RenderPass_tA744ADA1424B5992F4E272692C1964A7B7469EFD_il2cpp_TypeInfo_var);
|
|
ProfilingSampler_t420D4672EDB44E0EF980B31ADFD9E5747200FECE* L_19 = ((RenderPass_tA744ADA1424B5992F4E272692C1964A7B7469EFD_StaticFields*)il2cpp_codegen_static_fields_for(RenderPass_tA744ADA1424B5992F4E272692C1964A7B7469EFD_il2cpp_TypeInfo_var))->___setRenderPassAttachments;
|
|
ProfilingScope_t57898BA31E8EF8F083EF84E0DA2737AC61CBC5BD L_20;
|
|
memset((&L_20), 0, sizeof(L_20));
|
|
ProfilingScope__ctor_m4B73587A2295443A73B64DDD3D484D8EAECC0D65((&L_20), L_19, NULL);
|
|
V_2 = L_20;
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_007e_1:
|
|
{
|
|
ProfilingScope_Dispose_m4231A2ACA1F8E345BB0078310A9F7601704C8BE4((&V_2), NULL);
|
|
return;
|
|
}
|
|
});
|
|
try
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1773>
|
|
CommandBuffer_tB56007DC84EF56296C325EC32DD12AC1E3DC91F7* L_21 = V_1;
|
|
ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* L_22 = ___1_renderPass;
|
|
UniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7* L_23 = ___2_cameraData;
|
|
ScriptableRenderer_SetRenderPassAttachments_mC031A44CE876ED59BBD8E25A4984FFF280303808(__this, L_21, L_22, L_23, NULL);
|
|
goto IL_008c_1;
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_008c_1:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1776>
|
|
CommandBuffer_tB56007DC84EF56296C325EC32DD12AC1E3DC91F7* L_24 = V_1;
|
|
il2cpp_codegen_runtime_class_init_inline(ScriptableRenderContext_t5AB09B3602BEB456E0DC3D53926D3A3BDAF08E36_il2cpp_TypeInfo_var);
|
|
ScriptableRenderContext_ExecuteCommandBuffer_mBAE37DFC699B7167A6E2C59012066C44A31E9896((&___0_context), L_24, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1777>
|
|
CommandBuffer_tB56007DC84EF56296C325EC32DD12AC1E3DC91F7* L_25 = V_1;
|
|
NullCheck(L_25);
|
|
CommandBuffer_Clear_m4E1272BD1A0C162C9C26434E115279F42FA557C7(L_25, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1779>
|
|
ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* L_26 = ___1_renderPass;
|
|
bool L_27;
|
|
L_27 = ScriptableRenderer_IsRenderPassEnabled_m62F183DF3911C7360F8C812DA5E976D08D9ADB7B(__this, L_26, NULL);
|
|
if (!L_27)
|
|
{
|
|
goto IL_00b8_1;
|
|
}
|
|
}
|
|
{
|
|
UniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7* L_28 = ___2_cameraData;
|
|
NullCheck(L_28);
|
|
bool L_29;
|
|
L_29 = UniversalCameraData_get_isRenderPassSupportedCamera_m540F7A822ED64400F9E4E7CA6EEAE4EEAEC81671(L_28, NULL);
|
|
if (!L_29)
|
|
{
|
|
goto IL_00b8_1;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1780>
|
|
ScriptableRenderContext_t5AB09B3602BEB456E0DC3D53926D3A3BDAF08E36 L_30 = ___0_context;
|
|
ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* L_31 = ___1_renderPass;
|
|
UniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7* L_32 = ___2_cameraData;
|
|
RenderingData_tAAA01190551D6D5954314E3E1E85B58DD45EED71* L_33 = ___3_renderingData;
|
|
ScriptableRenderer_ExecuteNativeRenderPass_m5F62A02F11AAA72F04BCC35B720D54A8350B789B(__this, L_30, L_31, L_32, L_33, NULL);
|
|
goto IL_00cf_1;
|
|
}
|
|
|
|
IL_00b8_1:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1785>
|
|
ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* L_34 = ___1_renderPass;
|
|
ScriptableRenderContext_t5AB09B3602BEB456E0DC3D53926D3A3BDAF08E36 L_35 = ___0_context;
|
|
RenderingData_tAAA01190551D6D5954314E3E1E85B58DD45EED71* L_36 = ___3_renderingData;
|
|
NullCheck(L_34);
|
|
VirtualActionInvoker2< ScriptableRenderContext_t5AB09B3602BEB456E0DC3D53926D3A3BDAF08E36, RenderingData_tAAA01190551D6D5954314E3E1E85B58DD45EED71* >::Invoke(10, L_34, L_35, L_36);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1787>
|
|
CommandBuffer_tB56007DC84EF56296C325EC32DD12AC1E3DC91F7* L_37 = V_1;
|
|
il2cpp_codegen_runtime_class_init_inline(ScriptableRenderContext_t5AB09B3602BEB456E0DC3D53926D3A3BDAF08E36_il2cpp_TypeInfo_var);
|
|
ScriptableRenderContext_ExecuteCommandBuffer_mBAE37DFC699B7167A6E2C59012066C44A31E9896((&___0_context), L_37, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1788>
|
|
CommandBuffer_tB56007DC84EF56296C325EC32DD12AC1E3DC91F7* L_38 = V_1;
|
|
NullCheck(L_38);
|
|
CommandBuffer_Clear_m4E1272BD1A0C162C9C26434E115279F42FA557C7(L_38, NULL);
|
|
}
|
|
|
|
IL_00cf_1:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1791>
|
|
UniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7* L_39 = ___2_cameraData;
|
|
NullCheck(L_39);
|
|
XRPass_tFC4577E97B88E0EAAAB2EB387AB3A92E9EB9C6DF* L_40;
|
|
L_40 = UniversalCameraData_get_xr_mC600E667BA2B92EADF2CF60CD49E15242FA83C4D_inline(L_39, NULL);
|
|
NullCheck(L_40);
|
|
bool L_41;
|
|
L_41 = XRPass_get_enabled_m488D52C18CC6B83FDC3212E98864BA02116A64A3(L_40, NULL);
|
|
if (!L_41)
|
|
{
|
|
goto IL_010f_1;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1793>
|
|
UniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7* L_42 = ___2_cameraData;
|
|
NullCheck(L_42);
|
|
XRPass_tFC4577E97B88E0EAAAB2EB387AB3A92E9EB9C6DF* L_43;
|
|
L_43 = UniversalCameraData_get_xr_mC600E667BA2B92EADF2CF60CD49E15242FA83C4D_inline(L_42, NULL);
|
|
NullCheck(L_43);
|
|
bool L_44;
|
|
L_44 = XRPass_get_supportsFoveatedRendering_mC6E13A1C877BBEE86D48AEEA9A552074C2452B73(L_43, NULL);
|
|
if (!L_44)
|
|
{
|
|
goto IL_00f0_1;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1794>
|
|
CommandBuffer_tB56007DC84EF56296C325EC32DD12AC1E3DC91F7* L_45 = V_1;
|
|
NullCheck(L_45);
|
|
CommandBuffer_SetFoveatedRenderingMode_mEB94470BC91694B62B28AC5EE1383DA636D3B43B(L_45, 0, NULL);
|
|
}
|
|
|
|
IL_00f0_1:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1797>
|
|
CommandBuffer_tB56007DC84EF56296C325EC32DD12AC1E3DC91F7* L_46 = V_1;
|
|
il2cpp_codegen_runtime_class_init_inline(CommandBufferHelpers_tB8C09D01D6F0369DF52DEA955F017D6001BC72E5_il2cpp_TypeInfo_var);
|
|
RasterCommandBuffer_t4300C4F080EA3CF43C7ACFDBD4F94EA633FE98E8* L_47;
|
|
L_47 = CommandBufferHelpers_GetRasterCommandBuffer_m6086D650343F166614B3FB5ED89D63DE8F85C42B_inline(L_46, NULL);
|
|
UniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7* L_48 = ___2_cameraData;
|
|
NullCheck(L_48);
|
|
XRPassUniversal_t8D4B40107F5DBC12D39470D87D108D3D2A8FB8D1* L_49;
|
|
L_49 = UniversalCameraData_get_xrUniversal_mD28B65BB477E408AF63DCA582FA63CB9FDCC01E0(L_48, NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(XRSystemUniversal_tC6D796087104B8263D12B71391A3147102BE3FF7_il2cpp_TypeInfo_var);
|
|
XRSystemUniversal_UnmarkShaderProperties_m4F679B22E1DB22851FC6B7D76BC832A642AE0F81(L_47, L_49, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1799>
|
|
CommandBuffer_tB56007DC84EF56296C325EC32DD12AC1E3DC91F7* L_50 = V_1;
|
|
il2cpp_codegen_runtime_class_init_inline(ScriptableRenderContext_t5AB09B3602BEB456E0DC3D53926D3A3BDAF08E36_il2cpp_TypeInfo_var);
|
|
ScriptableRenderContext_ExecuteCommandBuffer_mBAE37DFC699B7167A6E2C59012066C44A31E9896((&___0_context), L_50, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1800>
|
|
CommandBuffer_tB56007DC84EF56296C325EC32DD12AC1E3DC91F7* L_51 = V_1;
|
|
NullCheck(L_51);
|
|
CommandBuffer_Clear_m4E1272BD1A0C162C9C26434E115279F42FA557C7(L_51, NULL);
|
|
}
|
|
|
|
IL_010f_1:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1802>
|
|
goto IL_011f;
|
|
}
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_011f:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1802>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 33429
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ScriptableRenderer_IsSceneFilteringEnabled_m177DE9C0DEEB440C7DC82C3431930EB2C6FE489D (ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892* __this, Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184* ___0_camera, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1811>
|
|
return (bool)0;
|
|
}
|
|
}
|
|
// Method Definition Index: 33430
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ScriptableRenderer_SetRenderPassAttachments_mC031A44CE876ED59BBD8E25A4984FFF280303808 (ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892* __this, CommandBuffer_tB56007DC84EF56296C325EC32DD12AC1E3DC91F7* ___0_cmd, ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* ___1_renderPass, UniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7* ___2_cameraData, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CommandBufferHelpers_tB8C09D01D6F0369DF52DEA955F017D6001BC72E5_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Debug_t8394C7EEAECA3689C2C9B9DE9C7166D73596276F_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RenderTargetIdentifier_tA528663AC6EB3911D8E91AA40F7070FA5455442B_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RenderingUtils_t4E40200449A82FA3A172A563C490DF11FADA2BE1_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XRSystemUniversal_tC6D796087104B8263D12B71391A3147102BE3FF7_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral21F3AA12081C8AF437473ECB6A3ABB44109CC457);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral7A2A211714705DA6159511062AF98BB5F266D1A3);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184* V_0 = NULL;
|
|
int32_t V_1 = 0;
|
|
bool V_2 = false;
|
|
bool V_3 = false;
|
|
int32_t V_4 = 0;
|
|
RenderTargetIdentifier_tA528663AC6EB3911D8E91AA40F7070FA5455442B V_5;
|
|
memset((&V_5), 0, sizeof(V_5));
|
|
int32_t V_6 = 0;
|
|
uint32_t V_7 = 0;
|
|
RTHandleU5BU5D_tE4B403B060D159B839BF74E8B59F8DCD52CF97DF* V_8 = NULL;
|
|
int32_t V_9 = 0;
|
|
RenderTargetIdentifierU5BU5D_t179798C153B7CE381B41C57863F98CB24023C4CE* V_10 = NULL;
|
|
int32_t V_11 = 0;
|
|
int32_t V_12 = 0;
|
|
int32_t V_13 = 0;
|
|
int32_t V_14 = 0;
|
|
RTHandleU5BU5D_tE4B403B060D159B839BF74E8B59F8DCD52CF97DF* V_15 = NULL;
|
|
RenderTargetIdentifierU5BU5D_t179798C153B7CE381B41C57863F98CB24023C4CE* V_16 = NULL;
|
|
int32_t V_17 = 0;
|
|
int32_t V_18 = 0;
|
|
RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B* V_19 = NULL;
|
|
bool V_20 = false;
|
|
RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B* V_21 = NULL;
|
|
RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B* V_22 = NULL;
|
|
int32_t V_23 = 0;
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F V_24;
|
|
memset((&V_24), 0, sizeof(V_24));
|
|
bool V_25 = false;
|
|
int32_t V_26 = 0;
|
|
bool V_27 = false;
|
|
int32_t G_B8_0 = 0;
|
|
int32_t G_B37_0 = 0;
|
|
int32_t G_B36_0 = 0;
|
|
int32_t G_B38_0 = 0;
|
|
int32_t G_B38_1 = 0;
|
|
int32_t G_B40_0 = 0;
|
|
int32_t G_B39_0 = 0;
|
|
int32_t G_B43_0 = 0;
|
|
int32_t G_B43_1 = 0;
|
|
int32_t G_B42_0 = 0;
|
|
int32_t G_B41_0 = 0;
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1817>
|
|
UniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7* L_0 = ___2_cameraData;
|
|
NullCheck(L_0);
|
|
Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184* L_1 = L_0->___camera;
|
|
V_0 = L_1;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1818>
|
|
UniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7* L_2 = ___2_cameraData;
|
|
il2cpp_codegen_runtime_class_init_inline(ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892_il2cpp_TypeInfo_var);
|
|
int32_t L_3;
|
|
L_3 = ScriptableRenderer_GetCameraClearFlag_m4B266C72886FD41512F25AF2EF1939AB275B3F3A(L_2, NULL);
|
|
V_1 = L_3;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1823>
|
|
ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* L_4 = ___1_renderPass;
|
|
NullCheck(L_4);
|
|
RTHandleU5BU5D_tE4B403B060D159B839BF74E8B59F8DCD52CF97DF* L_5;
|
|
L_5 = ScriptableRenderPass_get_colorAttachmentHandles_m52C72D6C6F0E7A66FE8FEC5ECFDDE5407FBF8897_inline(L_4, NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(RenderingUtils_t4E40200449A82FA3A172A563C490DF11FADA2BE1_il2cpp_TypeInfo_var);
|
|
uint32_t L_6;
|
|
L_6 = RenderingUtils_GetValidColorBufferCount_m99C1CCF85D3EFCA3950A11D106E801E4DF3A31B6(L_5, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1824>
|
|
if (L_6)
|
|
{
|
|
goto IL_001c;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1825>
|
|
return;
|
|
}
|
|
|
|
IL_001c:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1828>
|
|
ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* L_7 = ___1_renderPass;
|
|
NullCheck(L_7);
|
|
RTHandleU5BU5D_tE4B403B060D159B839BF74E8B59F8DCD52CF97DF* L_8;
|
|
L_8 = ScriptableRenderPass_get_colorAttachmentHandles_m52C72D6C6F0E7A66FE8FEC5ECFDDE5407FBF8897_inline(L_7, NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(RenderingUtils_t4E40200449A82FA3A172A563C490DF11FADA2BE1_il2cpp_TypeInfo_var);
|
|
bool L_9;
|
|
L_9 = RenderingUtils_IsMRT_mC605B9CE9E4DB69B0F585C4653BFE4E34274F7A9(L_8, NULL);
|
|
if (!L_9)
|
|
{
|
|
goto IL_03ca;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1835>
|
|
V_2 = (bool)0;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1836>
|
|
V_3 = (bool)0;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1838>
|
|
ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* L_10 = ___1_renderPass;
|
|
NullCheck(L_10);
|
|
RTHandleU5BU5D_tE4B403B060D159B839BF74E8B59F8DCD52CF97DF* L_11;
|
|
L_11 = ScriptableRenderPass_get_colorAttachmentHandles_m52C72D6C6F0E7A66FE8FEC5ECFDDE5407FBF8897_inline(L_10, NULL);
|
|
RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B* L_12 = __this->___m_CameraColorTarget;
|
|
il2cpp_codegen_runtime_class_init_inline(RenderingUtils_t4E40200449A82FA3A172A563C490DF11FADA2BE1_il2cpp_TypeInfo_var);
|
|
int32_t L_13;
|
|
L_13 = RenderingUtils_IndexOf_m5AA241D67F3867F8434D658F4F30B52E2475410F(L_11, L_12, NULL);
|
|
V_4 = L_13;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1839>
|
|
int32_t L_14 = V_4;
|
|
if ((((int32_t)L_14) == ((int32_t)(-1))))
|
|
{
|
|
goto IL_0079;
|
|
}
|
|
}
|
|
{
|
|
bool L_15 = __this->___m_FirstTimeCameraColorTargetIsBound;
|
|
if (!L_15)
|
|
{
|
|
goto IL_0079;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1841>
|
|
__this->___m_FirstTimeCameraColorTargetIsBound = (bool)0;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1850>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1851>
|
|
int32_t L_16 = V_1;
|
|
ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* L_17 = ___1_renderPass;
|
|
NullCheck(L_17);
|
|
int32_t L_18;
|
|
L_18 = ScriptableRenderPass_get_clearFlag_m74FAFCDC3CD75DC4201B398DFD25E028D7D800DB_inline(L_17, NULL);
|
|
if ((!(((uint32_t)((int32_t)((int32_t)L_16&1))) == ((uint32_t)((int32_t)((int32_t)L_18&1))))))
|
|
{
|
|
goto IL_0077;
|
|
}
|
|
}
|
|
{
|
|
UniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7* L_19 = ___2_cameraData;
|
|
NullCheck(L_19);
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F L_20 = L_19->___backgroundColor;
|
|
ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* L_21 = ___1_renderPass;
|
|
NullCheck(L_21);
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F L_22;
|
|
L_22 = ScriptableRenderPass_get_clearColor_mAEC581D756087BF3617FE243D569717FBC2E5DB1_inline(L_21, NULL);
|
|
bool L_23;
|
|
L_23 = Color_op_Inequality_mF1C733BA10E60B086AB950A71143678AE76C4D92_inline(L_20, L_22, NULL);
|
|
G_B8_0 = ((int32_t)(L_23));
|
|
goto IL_0078;
|
|
}
|
|
|
|
IL_0077:
|
|
{
|
|
G_B8_0 = 1;
|
|
}
|
|
|
|
IL_0078:
|
|
{
|
|
V_2 = (bool)G_B8_0;
|
|
}
|
|
|
|
IL_0079:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1859>
|
|
RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B* L_24 = __this->___m_CameraDepthTarget;
|
|
NullCheck(L_24);
|
|
RenderTargetIdentifier_tA528663AC6EB3911D8E91AA40F7070FA5455442B L_25;
|
|
L_25 = RTHandle_get_nameID_m30AF2567853494DB845D83A8B37D0FB523DA76E9_inline(L_24, NULL);
|
|
V_5 = L_25;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1861>
|
|
UniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7* L_26 = ___2_cameraData;
|
|
NullCheck(L_26);
|
|
XRPass_tFC4577E97B88E0EAAAB2EB387AB3A92E9EB9C6DF* L_27;
|
|
L_27 = UniversalCameraData_get_xr_mC600E667BA2B92EADF2CF60CD49E15242FA83C4D_inline(L_26, NULL);
|
|
NullCheck(L_27);
|
|
bool L_28;
|
|
L_28 = XRPass_get_enabled_m488D52C18CC6B83FDC3212E98864BA02116A64A3(L_27, NULL);
|
|
if (!L_28)
|
|
{
|
|
goto IL_009f;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1862>
|
|
RenderTargetIdentifier_tA528663AC6EB3911D8E91AA40F7070FA5455442B L_29 = V_5;
|
|
il2cpp_codegen_runtime_class_init_inline(RenderTargetIdentifier_tA528663AC6EB3911D8E91AA40F7070FA5455442B_il2cpp_TypeInfo_var);
|
|
RenderTargetIdentifier__ctor_m79A7348AF351A912E617BF9C8A44A766648C80FB((&V_5), L_29, 0, (-1), (-1), NULL);
|
|
}
|
|
|
|
IL_009f:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1864>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1865>
|
|
ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* L_30 = ___1_renderPass;
|
|
NullCheck(L_30);
|
|
RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B* L_31;
|
|
L_31 = ScriptableRenderPass_get_depthAttachmentHandle_m3AA7953B201494DEF4FD2061660B94663EF63465_inline(L_30, NULL);
|
|
NullCheck(L_31);
|
|
RenderTargetIdentifier_tA528663AC6EB3911D8E91AA40F7070FA5455442B L_32;
|
|
L_32 = RTHandle_get_nameID_m30AF2567853494DB845D83A8B37D0FB523DA76E9_inline(L_31, NULL);
|
|
RenderTargetIdentifier_tA528663AC6EB3911D8E91AA40F7070FA5455442B L_33;
|
|
memset((&L_33), 0, sizeof(L_33));
|
|
RenderTargetIdentifier__ctor_m79A7348AF351A912E617BF9C8A44A766648C80FB((&L_33), L_32, 0, (-1), 0, NULL);
|
|
RenderTargetIdentifier_tA528663AC6EB3911D8E91AA40F7070FA5455442B L_34 = V_5;
|
|
RenderTargetIdentifier_tA528663AC6EB3911D8E91AA40F7070FA5455442B L_35;
|
|
memset((&L_35), 0, sizeof(L_35));
|
|
RenderTargetIdentifier__ctor_m79A7348AF351A912E617BF9C8A44A766648C80FB((&L_35), L_34, 0, (-1), 0, NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(RenderTargetIdentifier_tA528663AC6EB3911D8E91AA40F7070FA5455442B_il2cpp_TypeInfo_var);
|
|
bool L_36;
|
|
L_36 = RenderTargetIdentifier_op_Equality_mD9FD6667F4C385F2379E9DEAAA8F91B7A1D50A1F(L_33, L_35, NULL);
|
|
if (!L_36)
|
|
{
|
|
goto IL_00e3;
|
|
}
|
|
}
|
|
{
|
|
bool L_37 = __this->___m_FirstTimeCameraDepthTargetIsBound;
|
|
if (!L_37)
|
|
{
|
|
goto IL_00e3;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1867>
|
|
__this->___m_FirstTimeCameraDepthTargetIsBound = (bool)0;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1868>
|
|
int32_t L_38 = V_1;
|
|
ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* L_39 = ___1_renderPass;
|
|
NullCheck(L_39);
|
|
int32_t L_40;
|
|
L_40 = ScriptableRenderPass_get_clearFlag_m74FAFCDC3CD75DC4201B398DFD25E028D7D800DB_inline(L_39, NULL);
|
|
V_3 = (bool)((((int32_t)((((int32_t)((int32_t)((int32_t)L_38&6))) == ((int32_t)((int32_t)((int32_t)L_40&6))))? 1 : 0)) == ((int32_t)0))? 1 : 0);
|
|
}
|
|
|
|
IL_00e3:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1875>
|
|
bool L_41 = V_2;
|
|
if (!L_41)
|
|
{
|
|
goto IL_023b;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1879>
|
|
int32_t L_42 = V_1;
|
|
if (!((int32_t)((int32_t)L_42&1)))
|
|
{
|
|
goto IL_011b;
|
|
}
|
|
}
|
|
{
|
|
ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* L_43 = ___1_renderPass;
|
|
bool L_44;
|
|
L_44 = ScriptableRenderer_IsRenderPassEnabled_m62F183DF3911C7360F8C812DA5E976D08D9ADB7B(__this, L_43, NULL);
|
|
if (!L_44)
|
|
{
|
|
goto IL_00ff;
|
|
}
|
|
}
|
|
{
|
|
UniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7* L_45 = ___2_cameraData;
|
|
NullCheck(L_45);
|
|
bool L_46;
|
|
L_46 = UniversalCameraData_get_isRenderPassSupportedCamera_m540F7A822ED64400F9E4E7CA6EEAE4EEAEC81671(L_45, NULL);
|
|
if (L_46)
|
|
{
|
|
goto IL_011b;
|
|
}
|
|
}
|
|
|
|
IL_00ff:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1880>
|
|
CommandBuffer_tB56007DC84EF56296C325EC32DD12AC1E3DC91F7* L_47 = ___0_cmd;
|
|
ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* L_48 = ___1_renderPass;
|
|
NullCheck(L_48);
|
|
RTHandleU5BU5D_tE4B403B060D159B839BF74E8B59F8DCD52CF97DF* L_49;
|
|
L_49 = ScriptableRenderPass_get_colorAttachmentHandles_m52C72D6C6F0E7A66FE8FEC5ECFDDE5407FBF8897_inline(L_48, NULL);
|
|
int32_t L_50 = V_4;
|
|
NullCheck(L_49);
|
|
int32_t L_51 = L_50;
|
|
RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B* L_52 = (L_49)->GetAt(static_cast<il2cpp_array_size_t>(L_51));
|
|
ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* L_53 = ___1_renderPass;
|
|
NullCheck(L_53);
|
|
RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B* L_54;
|
|
L_54 = ScriptableRenderPass_get_depthAttachmentHandle_m3AA7953B201494DEF4FD2061660B94663EF63465_inline(L_53, NULL);
|
|
UniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7* L_55 = ___2_cameraData;
|
|
NullCheck(L_55);
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F L_56 = L_55->___backgroundColor;
|
|
il2cpp_codegen_runtime_class_init_inline(ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892_il2cpp_TypeInfo_var);
|
|
ScriptableRenderer_SetRenderTarget_mA8C80A941EC4D76318A688D1E571561E2CCA5FC0(L_47, L_52, L_54, 1, L_56, NULL);
|
|
}
|
|
|
|
IL_011b:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1882>
|
|
ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* L_57 = ___1_renderPass;
|
|
NullCheck(L_57);
|
|
int32_t L_58;
|
|
L_58 = ScriptableRenderPass_get_clearFlag_m74FAFCDC3CD75DC4201B398DFD25E028D7D800DB_inline(L_57, NULL);
|
|
if (!((int32_t)((int32_t)L_58&1)))
|
|
{
|
|
goto IL_023b;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1884>
|
|
ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* L_59 = ___1_renderPass;
|
|
NullCheck(L_59);
|
|
RTHandleU5BU5D_tE4B403B060D159B839BF74E8B59F8DCD52CF97DF* L_60;
|
|
L_60 = ScriptableRenderPass_get_colorAttachmentHandles_m52C72D6C6F0E7A66FE8FEC5ECFDDE5407FBF8897_inline(L_59, NULL);
|
|
RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B* L_61 = __this->___m_CameraColorTarget;
|
|
il2cpp_codegen_runtime_class_init_inline(RenderingUtils_t4E40200449A82FA3A172A563C490DF11FADA2BE1_il2cpp_TypeInfo_var);
|
|
uint32_t L_62;
|
|
L_62 = RenderingUtils_CountDistinct_m1269F77CC5C9A3CA9304A44F060851C1C249C4EA(L_60, L_61, NULL);
|
|
V_7 = L_62;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1885>
|
|
il2cpp_codegen_runtime_class_init_inline(ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892_il2cpp_TypeInfo_var);
|
|
RTHandleU5BU5DU5BU5D_t6066EC3F94599A5A42DA9A893F102E9618CB612F* L_63 = ((ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892_StaticFields*)il2cpp_codegen_static_fields_for(ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892_il2cpp_TypeInfo_var))->___m_TrimmedColorAttachmentCopies;
|
|
uint32_t L_64 = V_7;
|
|
NullCheck(L_63);
|
|
uint32_t L_65 = L_64;
|
|
RTHandleU5BU5D_tE4B403B060D159B839BF74E8B59F8DCD52CF97DF* L_66 = (L_63)->GetAt(static_cast<il2cpp_array_size_t>(L_65));
|
|
V_8 = L_66;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1886>
|
|
V_9 = 0;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1887>
|
|
V_11 = 0;
|
|
goto IL_01ad;
|
|
}
|
|
|
|
IL_014d:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1889>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1890>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1891>
|
|
ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* L_67 = ___1_renderPass;
|
|
NullCheck(L_67);
|
|
RTHandleU5BU5D_tE4B403B060D159B839BF74E8B59F8DCD52CF97DF* L_68;
|
|
L_68 = ScriptableRenderPass_get_colorAttachmentHandles_m52C72D6C6F0E7A66FE8FEC5ECFDDE5407FBF8897_inline(L_67, NULL);
|
|
int32_t L_69 = V_11;
|
|
NullCheck(L_68);
|
|
int32_t L_70 = L_69;
|
|
RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B* L_71 = (L_68)->GetAt(static_cast<il2cpp_array_size_t>(L_70));
|
|
if (!L_71)
|
|
{
|
|
goto IL_01a7;
|
|
}
|
|
}
|
|
{
|
|
ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* L_72 = ___1_renderPass;
|
|
NullCheck(L_72);
|
|
RTHandleU5BU5D_tE4B403B060D159B839BF74E8B59F8DCD52CF97DF* L_73;
|
|
L_73 = ScriptableRenderPass_get_colorAttachmentHandles_m52C72D6C6F0E7A66FE8FEC5ECFDDE5407FBF8897_inline(L_72, NULL);
|
|
int32_t L_74 = V_11;
|
|
NullCheck(L_73);
|
|
int32_t L_75 = L_74;
|
|
RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B* L_76 = (L_73)->GetAt(static_cast<il2cpp_array_size_t>(L_75));
|
|
NullCheck(L_76);
|
|
RenderTargetIdentifier_tA528663AC6EB3911D8E91AA40F7070FA5455442B L_77;
|
|
L_77 = RTHandle_get_nameID_m30AF2567853494DB845D83A8B37D0FB523DA76E9_inline(L_76, NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(RenderTargetIdentifier_tA528663AC6EB3911D8E91AA40F7070FA5455442B_il2cpp_TypeInfo_var);
|
|
RenderTargetIdentifier_tA528663AC6EB3911D8E91AA40F7070FA5455442B L_78;
|
|
L_78 = RenderTargetIdentifier_op_Implicit_m5D9E7FF7B325608E3C4A37BBB52FE728361E7324(0, NULL);
|
|
bool L_79;
|
|
L_79 = RenderTargetIdentifier_op_Inequality_m255136CF7E1B63A8D5A1F9FF03B992B656AB42DF(L_77, L_78, NULL);
|
|
if (!L_79)
|
|
{
|
|
goto IL_01a7;
|
|
}
|
|
}
|
|
{
|
|
ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* L_80 = ___1_renderPass;
|
|
NullCheck(L_80);
|
|
RTHandleU5BU5D_tE4B403B060D159B839BF74E8B59F8DCD52CF97DF* L_81;
|
|
L_81 = ScriptableRenderPass_get_colorAttachmentHandles_m52C72D6C6F0E7A66FE8FEC5ECFDDE5407FBF8897_inline(L_80, NULL);
|
|
int32_t L_82 = V_11;
|
|
NullCheck(L_81);
|
|
int32_t L_83 = L_82;
|
|
RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B* L_84 = (L_81)->GetAt(static_cast<il2cpp_array_size_t>(L_83));
|
|
NullCheck(L_84);
|
|
RenderTargetIdentifier_tA528663AC6EB3911D8E91AA40F7070FA5455442B L_85;
|
|
L_85 = RTHandle_get_nameID_m30AF2567853494DB845D83A8B37D0FB523DA76E9_inline(L_84, NULL);
|
|
RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B* L_86 = __this->___m_CameraColorTarget;
|
|
NullCheck(L_86);
|
|
RenderTargetIdentifier_tA528663AC6EB3911D8E91AA40F7070FA5455442B L_87;
|
|
L_87 = RTHandle_get_nameID_m30AF2567853494DB845D83A8B37D0FB523DA76E9_inline(L_86, NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(RenderTargetIdentifier_tA528663AC6EB3911D8E91AA40F7070FA5455442B_il2cpp_TypeInfo_var);
|
|
bool L_88;
|
|
L_88 = RenderTargetIdentifier_op_Inequality_m255136CF7E1B63A8D5A1F9FF03B992B656AB42DF(L_85, L_87, NULL);
|
|
if (!L_88)
|
|
{
|
|
goto IL_01a7;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1893>
|
|
RTHandleU5BU5D_tE4B403B060D159B839BF74E8B59F8DCD52CF97DF* L_89 = V_8;
|
|
int32_t L_90 = V_9;
|
|
ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* L_91 = ___1_renderPass;
|
|
NullCheck(L_91);
|
|
RTHandleU5BU5D_tE4B403B060D159B839BF74E8B59F8DCD52CF97DF* L_92;
|
|
L_92 = ScriptableRenderPass_get_colorAttachmentHandles_m52C72D6C6F0E7A66FE8FEC5ECFDDE5407FBF8897_inline(L_91, NULL);
|
|
int32_t L_93 = V_11;
|
|
NullCheck(L_92);
|
|
int32_t L_94 = L_93;
|
|
RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B* L_95 = (L_92)->GetAt(static_cast<il2cpp_array_size_t>(L_94));
|
|
NullCheck(L_89);
|
|
ArrayElementTypeCheck (L_89, L_95);
|
|
(L_89)->SetAt(static_cast<il2cpp_array_size_t>(L_90), (RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B*)L_95);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1894>
|
|
int32_t L_96 = V_9;
|
|
V_9 = ((int32_t)il2cpp_codegen_add(L_96, 1));
|
|
}
|
|
|
|
IL_01a7:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1887>
|
|
int32_t L_97 = V_11;
|
|
V_11 = ((int32_t)il2cpp_codegen_add(L_97, 1));
|
|
}
|
|
|
|
IL_01ad:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1887>
|
|
int32_t L_98 = V_11;
|
|
ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* L_99 = ___1_renderPass;
|
|
NullCheck(L_99);
|
|
RTHandleU5BU5D_tE4B403B060D159B839BF74E8B59F8DCD52CF97DF* L_100;
|
|
L_100 = ScriptableRenderPass_get_colorAttachmentHandles_m52C72D6C6F0E7A66FE8FEC5ECFDDE5407FBF8897_inline(L_99, NULL);
|
|
NullCheck(L_100);
|
|
if ((((int32_t)L_98) < ((int32_t)((int32_t)(((RuntimeArray*)L_100)->max_length)))))
|
|
{
|
|
goto IL_014d;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1897>
|
|
il2cpp_codegen_runtime_class_init_inline(ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892_il2cpp_TypeInfo_var);
|
|
RenderTargetIdentifierU5BU5DU5BU5D_tDB35F8D017FE3AD8BB35E08E323074D47C5A10BB* L_101 = ((ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892_StaticFields*)il2cpp_codegen_static_fields_for(ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892_il2cpp_TypeInfo_var))->___m_TrimmedColorAttachmentCopyIDs;
|
|
uint32_t L_102 = V_7;
|
|
NullCheck(L_101);
|
|
uint32_t L_103 = L_102;
|
|
RenderTargetIdentifierU5BU5D_t179798C153B7CE381B41C57863F98CB24023C4CE* L_104 = (L_101)->GetAt(static_cast<il2cpp_array_size_t>(L_103));
|
|
V_10 = L_104;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1898>
|
|
V_12 = 0;
|
|
goto IL_01e1;
|
|
}
|
|
|
|
IL_01c8:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1899>
|
|
RenderTargetIdentifierU5BU5D_t179798C153B7CE381B41C57863F98CB24023C4CE* L_105 = V_10;
|
|
int32_t L_106 = V_12;
|
|
RTHandleU5BU5D_tE4B403B060D159B839BF74E8B59F8DCD52CF97DF* L_107 = V_8;
|
|
int32_t L_108 = V_12;
|
|
NullCheck(L_107);
|
|
int32_t L_109 = L_108;
|
|
RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B* L_110 = (L_107)->GetAt(static_cast<il2cpp_array_size_t>(L_109));
|
|
NullCheck(L_110);
|
|
RenderTargetIdentifier_tA528663AC6EB3911D8E91AA40F7070FA5455442B L_111;
|
|
L_111 = RTHandle_get_nameID_m30AF2567853494DB845D83A8B37D0FB523DA76E9_inline(L_110, NULL);
|
|
NullCheck(L_105);
|
|
(L_105)->SetAt(static_cast<il2cpp_array_size_t>(L_106), (RenderTargetIdentifier_tA528663AC6EB3911D8E91AA40F7070FA5455442B)L_111);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1898>
|
|
int32_t L_112 = V_12;
|
|
V_12 = ((int32_t)il2cpp_codegen_add(L_112, 1));
|
|
}
|
|
|
|
IL_01e1:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1898>
|
|
int32_t L_113 = V_12;
|
|
uint32_t L_114 = V_7;
|
|
if ((((int64_t)((int64_t)L_113)) < ((int64_t)((int64_t)(uint64_t)((uint32_t)L_114)))))
|
|
{
|
|
goto IL_01c8;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1901>
|
|
int32_t L_115 = V_9;
|
|
uint32_t L_116 = V_7;
|
|
if ((((int64_t)((int64_t)L_115)) == ((int64_t)((int64_t)(uint64_t)((uint32_t)L_116)))))
|
|
{
|
|
goto IL_0213;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1902>
|
|
String_t* L_117;
|
|
L_117 = Int32_ToString_m030E01C24E294D6762FB0B6F37CB541581F55CA5((&V_9), NULL);
|
|
String_t* L_118;
|
|
L_118 = UInt32_ToString_mB6FA6D2459C82ADCF285C55363491D9669A80154((&V_7), NULL);
|
|
String_t* L_119;
|
|
L_119 = String_Concat_m093934F71A9B351911EE46311674ED463B180006(_stringLiteral7A2A211714705DA6159511062AF98BB5F266D1A3, L_117, _stringLiteral21F3AA12081C8AF437473ECB6A3ABB44109CC457, L_118, NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(Debug_t8394C7EEAECA3689C2C9B9DE9C7166D73596276F_il2cpp_TypeInfo_var);
|
|
Debug_LogError_mB00B2B4468EF3CAF041B038D840820FB84C924B2(L_119, NULL);
|
|
}
|
|
|
|
IL_0213:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1903>
|
|
ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* L_120 = ___1_renderPass;
|
|
bool L_121;
|
|
L_121 = ScriptableRenderer_IsRenderPassEnabled_m62F183DF3911C7360F8C812DA5E976D08D9ADB7B(__this, L_120, NULL);
|
|
if (!L_121)
|
|
{
|
|
goto IL_0224;
|
|
}
|
|
}
|
|
{
|
|
UniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7* L_122 = ___2_cameraData;
|
|
NullCheck(L_122);
|
|
bool L_123;
|
|
L_123 = UniversalCameraData_get_isRenderPassSupportedCamera_m540F7A822ED64400F9E4E7CA6EEAE4EEAEC81671(L_122, NULL);
|
|
if (L_123)
|
|
{
|
|
goto IL_023b;
|
|
}
|
|
}
|
|
|
|
IL_0224:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1904>
|
|
CommandBuffer_tB56007DC84EF56296C325EC32DD12AC1E3DC91F7* L_124 = ___0_cmd;
|
|
RTHandleU5BU5D_tE4B403B060D159B839BF74E8B59F8DCD52CF97DF* L_125 = V_8;
|
|
RenderTargetIdentifierU5BU5D_t179798C153B7CE381B41C57863F98CB24023C4CE* L_126 = V_10;
|
|
RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B* L_127 = __this->___m_CameraDepthTarget;
|
|
ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* L_128 = ___1_renderPass;
|
|
NullCheck(L_128);
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F L_129;
|
|
L_129 = ScriptableRenderPass_get_clearColor_mAEC581D756087BF3617FE243D569717FBC2E5DB1_inline(L_128, NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892_il2cpp_TypeInfo_var);
|
|
ScriptableRenderer_SetRenderTarget_mFC51724D0976261B84FA758B2174DC3DCE700F61(L_124, L_125, L_126, L_127, 1, L_129, NULL);
|
|
}
|
|
|
|
IL_023b:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1909>
|
|
V_6 = 0;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1910>
|
|
int32_t L_130 = V_6;
|
|
bool L_131 = V_3;
|
|
if (L_131)
|
|
{
|
|
G_B37_0 = L_130;
|
|
goto IL_024d;
|
|
}
|
|
G_B36_0 = L_130;
|
|
}
|
|
{
|
|
ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* L_132 = ___1_renderPass;
|
|
NullCheck(L_132);
|
|
int32_t L_133;
|
|
L_133 = ScriptableRenderPass_get_clearFlag_m74FAFCDC3CD75DC4201B398DFD25E028D7D800DB_inline(L_132, NULL);
|
|
G_B38_0 = ((int32_t)(((int32_t)((int32_t)L_133&6))));
|
|
G_B38_1 = G_B36_0;
|
|
goto IL_0250;
|
|
}
|
|
|
|
IL_024d:
|
|
{
|
|
int32_t L_134 = V_1;
|
|
G_B38_0 = ((int32_t)(((int32_t)((int32_t)L_134&6))));
|
|
G_B38_1 = G_B37_0;
|
|
}
|
|
|
|
IL_0250:
|
|
{
|
|
V_6 = ((int32_t)((int32_t)G_B38_1|(int32_t)G_B38_0));
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1911>
|
|
int32_t L_135 = V_6;
|
|
bool L_136 = V_2;
|
|
if (L_136)
|
|
{
|
|
G_B40_0 = L_135;
|
|
goto IL_0262;
|
|
}
|
|
G_B39_0 = L_135;
|
|
}
|
|
{
|
|
ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* L_137 = ___1_renderPass;
|
|
NullCheck(L_137);
|
|
int32_t L_138;
|
|
L_138 = ScriptableRenderPass_get_clearFlag_m74FAFCDC3CD75DC4201B398DFD25E028D7D800DB_inline(L_137, NULL);
|
|
G_B43_0 = ((int32_t)((int32_t)L_138&1));
|
|
G_B43_1 = G_B39_0;
|
|
goto IL_0271;
|
|
}
|
|
|
|
IL_0262:
|
|
{
|
|
ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* L_139 = ___1_renderPass;
|
|
bool L_140;
|
|
L_140 = ScriptableRenderer_IsRenderPassEnabled_m62F183DF3911C7360F8C812DA5E976D08D9ADB7B(__this, L_139, NULL);
|
|
if (L_140)
|
|
{
|
|
G_B42_0 = G_B40_0;
|
|
goto IL_026e;
|
|
}
|
|
G_B41_0 = G_B40_0;
|
|
}
|
|
{
|
|
G_B43_0 = 0;
|
|
G_B43_1 = G_B41_0;
|
|
goto IL_0271;
|
|
}
|
|
|
|
IL_026e:
|
|
{
|
|
int32_t L_141 = V_1;
|
|
G_B43_0 = ((int32_t)((int32_t)L_141&1));
|
|
G_B43_1 = G_B42_0;
|
|
}
|
|
|
|
IL_0271:
|
|
{
|
|
V_6 = ((int32_t)((int32_t)G_B43_1|G_B43_0));
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1913>
|
|
ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* L_142 = ___1_renderPass;
|
|
bool L_143;
|
|
L_143 = ScriptableRenderer_IsRenderPassEnabled_m62F183DF3911C7360F8C812DA5E976D08D9ADB7B(__this, L_142, NULL);
|
|
if (!L_143)
|
|
{
|
|
goto IL_0290;
|
|
}
|
|
}
|
|
{
|
|
UniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7* L_144 = ___2_cameraData;
|
|
NullCheck(L_144);
|
|
bool L_145;
|
|
L_145 = UniversalCameraData_get_isRenderPassSupportedCamera_m540F7A822ED64400F9E4E7CA6EEAE4EEAEC81671(L_144, NULL);
|
|
if (!L_145)
|
|
{
|
|
goto IL_0290;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1914>
|
|
ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* L_146 = ___1_renderPass;
|
|
UniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7* L_147 = ___2_cameraData;
|
|
bool L_148 = V_2;
|
|
int32_t L_149 = V_6;
|
|
ScriptableRenderer_SetNativeRenderPassMRTAttachmentList_m4B6A8C3E5D06EC581872993BA511A45029CD7815(__this, L_146, L_147, L_148, L_149, NULL);
|
|
}
|
|
|
|
IL_0290:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1917>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1918>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1919>
|
|
ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* L_150 = ___1_renderPass;
|
|
NullCheck(L_150);
|
|
RTHandleU5BU5D_tE4B403B060D159B839BF74E8B59F8DCD52CF97DF* L_151;
|
|
L_151 = ScriptableRenderPass_get_colorAttachmentHandles_m52C72D6C6F0E7A66FE8FEC5ECFDDE5407FBF8897_inline(L_150, NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892_il2cpp_TypeInfo_var);
|
|
RTHandleU5BU5D_tE4B403B060D159B839BF74E8B59F8DCD52CF97DF* L_152 = ((ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892_StaticFields*)il2cpp_codegen_static_fields_for(ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892_il2cpp_TypeInfo_var))->___m_ActiveColorAttachments;
|
|
il2cpp_codegen_runtime_class_init_inline(RenderingUtils_t4E40200449A82FA3A172A563C490DF11FADA2BE1_il2cpp_TypeInfo_var);
|
|
bool L_153;
|
|
L_153 = RenderingUtils_SequenceEqual_mD8283931D9CBDAC24BDAEF1072772ADECCD05084(L_151, L_152, NULL);
|
|
if (!L_153)
|
|
{
|
|
goto IL_02c5;
|
|
}
|
|
}
|
|
{
|
|
ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* L_154 = ___1_renderPass;
|
|
NullCheck(L_154);
|
|
RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B* L_155;
|
|
L_155 = ScriptableRenderPass_get_depthAttachmentHandle_m3AA7953B201494DEF4FD2061660B94663EF63465_inline(L_154, NULL);
|
|
NullCheck(L_155);
|
|
RenderTargetIdentifier_tA528663AC6EB3911D8E91AA40F7070FA5455442B L_156;
|
|
L_156 = RTHandle_get_nameID_m30AF2567853494DB845D83A8B37D0FB523DA76E9_inline(L_155, NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892_il2cpp_TypeInfo_var);
|
|
RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B* L_157 = ((ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892_StaticFields*)il2cpp_codegen_static_fields_for(ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892_il2cpp_TypeInfo_var))->___m_ActiveDepthAttachment;
|
|
RenderTargetIdentifier_tA528663AC6EB3911D8E91AA40F7070FA5455442B L_158;
|
|
L_158 = RTHandle_op_Implicit_m2462183372B0496DE475889924EDCAAAD2011B54(L_157, NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(RenderTargetIdentifier_tA528663AC6EB3911D8E91AA40F7070FA5455442B_il2cpp_TypeInfo_var);
|
|
bool L_159;
|
|
L_159 = RenderTargetIdentifier_op_Inequality_m255136CF7E1B63A8D5A1F9FF03B992B656AB42DF(L_156, L_158, NULL);
|
|
if (L_159)
|
|
{
|
|
goto IL_02c5;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_160 = V_6;
|
|
if (!L_160)
|
|
{
|
|
goto IL_0665;
|
|
}
|
|
}
|
|
|
|
IL_02c5:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1921>
|
|
ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* L_161 = ___1_renderPass;
|
|
NullCheck(L_161);
|
|
RTHandleU5BU5D_tE4B403B060D159B839BF74E8B59F8DCD52CF97DF* L_162;
|
|
L_162 = ScriptableRenderPass_get_colorAttachmentHandles_m52C72D6C6F0E7A66FE8FEC5ECFDDE5407FBF8897_inline(L_161, NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(RenderingUtils_t4E40200449A82FA3A172A563C490DF11FADA2BE1_il2cpp_TypeInfo_var);
|
|
int32_t L_163;
|
|
L_163 = RenderingUtils_LastValid_mEA68E4FAD36AB41849720265A828472CE9B5DAFB(L_162, NULL);
|
|
V_13 = L_163;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1922>
|
|
int32_t L_164 = V_13;
|
|
if ((((int32_t)L_164) < ((int32_t)0)))
|
|
{
|
|
goto IL_0665;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1924>
|
|
int32_t L_165 = V_13;
|
|
V_14 = ((int32_t)il2cpp_codegen_add(L_165, 1));
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1925>
|
|
il2cpp_codegen_runtime_class_init_inline(ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892_il2cpp_TypeInfo_var);
|
|
RTHandleU5BU5DU5BU5D_t6066EC3F94599A5A42DA9A893F102E9618CB612F* L_166 = ((ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892_StaticFields*)il2cpp_codegen_static_fields_for(ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892_il2cpp_TypeInfo_var))->___m_TrimmedColorAttachmentCopies;
|
|
int32_t L_167 = V_14;
|
|
NullCheck(L_166);
|
|
int32_t L_168 = L_167;
|
|
RTHandleU5BU5D_tE4B403B060D159B839BF74E8B59F8DCD52CF97DF* L_169 = (L_166)->GetAt(static_cast<il2cpp_array_size_t>(L_168));
|
|
V_15 = L_169;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1926>
|
|
V_17 = 0;
|
|
goto IL_0303;
|
|
}
|
|
|
|
IL_02ef:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1927>
|
|
RTHandleU5BU5D_tE4B403B060D159B839BF74E8B59F8DCD52CF97DF* L_170 = V_15;
|
|
int32_t L_171 = V_17;
|
|
ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* L_172 = ___1_renderPass;
|
|
NullCheck(L_172);
|
|
RTHandleU5BU5D_tE4B403B060D159B839BF74E8B59F8DCD52CF97DF* L_173;
|
|
L_173 = ScriptableRenderPass_get_colorAttachmentHandles_m52C72D6C6F0E7A66FE8FEC5ECFDDE5407FBF8897_inline(L_172, NULL);
|
|
int32_t L_174 = V_17;
|
|
NullCheck(L_173);
|
|
int32_t L_175 = L_174;
|
|
RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B* L_176 = (L_173)->GetAt(static_cast<il2cpp_array_size_t>(L_175));
|
|
NullCheck(L_170);
|
|
ArrayElementTypeCheck (L_170, L_176);
|
|
(L_170)->SetAt(static_cast<il2cpp_array_size_t>(L_171), (RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B*)L_176);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1926>
|
|
int32_t L_177 = V_17;
|
|
V_17 = ((int32_t)il2cpp_codegen_add(L_177, 1));
|
|
}
|
|
|
|
IL_0303:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1926>
|
|
int32_t L_178 = V_17;
|
|
int32_t L_179 = V_14;
|
|
if ((((int32_t)L_178) < ((int32_t)L_179)))
|
|
{
|
|
goto IL_02ef;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1928>
|
|
il2cpp_codegen_runtime_class_init_inline(ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892_il2cpp_TypeInfo_var);
|
|
RenderTargetIdentifierU5BU5DU5BU5D_tDB35F8D017FE3AD8BB35E08E323074D47C5A10BB* L_180 = ((ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892_StaticFields*)il2cpp_codegen_static_fields_for(ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892_il2cpp_TypeInfo_var))->___m_TrimmedColorAttachmentCopyIDs;
|
|
int32_t L_181 = V_14;
|
|
NullCheck(L_180);
|
|
int32_t L_182 = L_181;
|
|
RenderTargetIdentifierU5BU5D_t179798C153B7CE381B41C57863F98CB24023C4CE* L_183 = (L_180)->GetAt(static_cast<il2cpp_array_size_t>(L_182));
|
|
V_16 = L_183;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1929>
|
|
V_18 = 0;
|
|
goto IL_0331;
|
|
}
|
|
|
|
IL_0318:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1930>
|
|
RenderTargetIdentifierU5BU5D_t179798C153B7CE381B41C57863F98CB24023C4CE* L_184 = V_16;
|
|
int32_t L_185 = V_18;
|
|
RTHandleU5BU5D_tE4B403B060D159B839BF74E8B59F8DCD52CF97DF* L_186 = V_15;
|
|
int32_t L_187 = V_18;
|
|
NullCheck(L_186);
|
|
int32_t L_188 = L_187;
|
|
RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B* L_189 = (L_186)->GetAt(static_cast<il2cpp_array_size_t>(L_188));
|
|
NullCheck(L_189);
|
|
RenderTargetIdentifier_tA528663AC6EB3911D8E91AA40F7070FA5455442B L_190;
|
|
L_190 = RTHandle_get_nameID_m30AF2567853494DB845D83A8B37D0FB523DA76E9_inline(L_189, NULL);
|
|
NullCheck(L_184);
|
|
(L_184)->SetAt(static_cast<il2cpp_array_size_t>(L_185), (RenderTargetIdentifier_tA528663AC6EB3911D8E91AA40F7070FA5455442B)L_190);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1929>
|
|
int32_t L_191 = V_18;
|
|
V_18 = ((int32_t)il2cpp_codegen_add(L_191, 1));
|
|
}
|
|
|
|
IL_0331:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1929>
|
|
int32_t L_192 = V_18;
|
|
int32_t L_193 = V_14;
|
|
if ((((int32_t)L_192) < ((int32_t)L_193)))
|
|
{
|
|
goto IL_0318;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1932>
|
|
ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* L_194 = ___1_renderPass;
|
|
bool L_195;
|
|
L_195 = ScriptableRenderer_IsRenderPassEnabled_m62F183DF3911C7360F8C812DA5E976D08D9ADB7B(__this, L_194, NULL);
|
|
if (!L_195)
|
|
{
|
|
goto IL_0348;
|
|
}
|
|
}
|
|
{
|
|
UniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7* L_196 = ___2_cameraData;
|
|
NullCheck(L_196);
|
|
bool L_197;
|
|
L_197 = UniversalCameraData_get_isRenderPassSupportedCamera_m540F7A822ED64400F9E4E7CA6EEAE4EEAEC81671(L_196, NULL);
|
|
if (L_197)
|
|
{
|
|
goto IL_037d;
|
|
}
|
|
}
|
|
|
|
IL_0348:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1934>
|
|
RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B* L_198 = __this->___m_CameraDepthTarget;
|
|
V_19 = L_198;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1936>
|
|
ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* L_199 = ___1_renderPass;
|
|
NullCheck(L_199);
|
|
bool L_200;
|
|
L_200 = ScriptableRenderPass_get_overrideCameraTarget_m343BA9235CD254354013E3CFD6EC519958597128_inline(L_199, NULL);
|
|
if (!L_200)
|
|
{
|
|
goto IL_0362;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1937>
|
|
ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* L_201 = ___1_renderPass;
|
|
NullCheck(L_201);
|
|
RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B* L_202;
|
|
L_202 = ScriptableRenderPass_get_depthAttachmentHandle_m3AA7953B201494DEF4FD2061660B94663EF63465_inline(L_201, NULL);
|
|
V_19 = L_202;
|
|
goto IL_0369;
|
|
}
|
|
|
|
IL_0362:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1939>
|
|
__this->___m_FirstTimeCameraDepthTargetIsBound = (bool)0;
|
|
}
|
|
|
|
IL_0369:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1942>
|
|
CommandBuffer_tB56007DC84EF56296C325EC32DD12AC1E3DC91F7* L_203 = ___0_cmd;
|
|
RTHandleU5BU5D_tE4B403B060D159B839BF74E8B59F8DCD52CF97DF* L_204 = V_15;
|
|
RenderTargetIdentifierU5BU5D_t179798C153B7CE381B41C57863F98CB24023C4CE* L_205 = V_16;
|
|
RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B* L_206 = V_19;
|
|
int32_t L_207 = V_6;
|
|
ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* L_208 = ___1_renderPass;
|
|
NullCheck(L_208);
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F L_209;
|
|
L_209 = ScriptableRenderPass_get_clearColor_mAEC581D756087BF3617FE243D569717FBC2E5DB1_inline(L_208, NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892_il2cpp_TypeInfo_var);
|
|
ScriptableRenderer_SetRenderTarget_mFC51724D0976261B84FA758B2174DC3DCE700F61(L_203, L_204, L_205, L_206, L_207, L_209, NULL);
|
|
}
|
|
|
|
IL_037d:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1946>
|
|
UniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7* L_210 = ___2_cameraData;
|
|
NullCheck(L_210);
|
|
XRPass_tFC4577E97B88E0EAAAB2EB387AB3A92E9EB9C6DF* L_211;
|
|
L_211 = UniversalCameraData_get_xr_mC600E667BA2B92EADF2CF60CD49E15242FA83C4D_inline(L_210, NULL);
|
|
NullCheck(L_211);
|
|
bool L_212;
|
|
L_212 = XRPass_get_enabled_m488D52C18CC6B83FDC3212E98864BA02116A64A3(L_211, NULL);
|
|
if (!L_212)
|
|
{
|
|
goto IL_0665;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1950>
|
|
ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* L_213 = ___1_renderPass;
|
|
NullCheck(L_213);
|
|
RTHandleU5BU5D_tE4B403B060D159B839BF74E8B59F8DCD52CF97DF* L_214;
|
|
L_214 = ScriptableRenderPass_get_colorAttachmentHandles_m52C72D6C6F0E7A66FE8FEC5ECFDDE5407FBF8897_inline(L_213, NULL);
|
|
UniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7* L_215 = ___2_cameraData;
|
|
NullCheck(L_215);
|
|
XRPass_tFC4577E97B88E0EAAAB2EB387AB3A92E9EB9C6DF* L_216;
|
|
L_216 = UniversalCameraData_get_xr_mC600E667BA2B92EADF2CF60CD49E15242FA83C4D_inline(L_215, NULL);
|
|
NullCheck(L_216);
|
|
RenderTargetIdentifier_tA528663AC6EB3911D8E91AA40F7070FA5455442B L_217;
|
|
L_217 = XRPass_get_renderTarget_m4183955FBAB06A0CD30DAAC60DFC51AD18466F48_inline(L_216, NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(RenderingUtils_t4E40200449A82FA3A172A563C490DF11FADA2BE1_il2cpp_TypeInfo_var);
|
|
int32_t L_218;
|
|
L_218 = RenderingUtils_IndexOf_m8DD01B5A2F64BE94C1771EE5905FCB4332EFE2CB(L_214, L_217, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1951>
|
|
V_20 = (bool)((((int32_t)L_218) == ((int32_t)(-1)))? 1 : 0);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1952>
|
|
UniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7* L_219 = ___2_cameraData;
|
|
CommandBuffer_tB56007DC84EF56296C325EC32DD12AC1E3DC91F7* L_220 = ___0_cmd;
|
|
il2cpp_codegen_runtime_class_init_inline(CommandBufferHelpers_tB8C09D01D6F0369DF52DEA955F017D6001BC72E5_il2cpp_TypeInfo_var);
|
|
RasterCommandBuffer_t4300C4F080EA3CF43C7ACFDBD4F94EA633FE98E8* L_221;
|
|
L_221 = CommandBufferHelpers_GetRasterCommandBuffer_m6086D650343F166614B3FB5ED89D63DE8F85C42B_inline(L_220, NULL);
|
|
bool L_222 = V_20;
|
|
NullCheck(L_219);
|
|
UniversalCameraData_PushBuiltinShaderConstantsXR_mA5EE73620BDC6B4AD63AEDF6850F7FD24B21F729(L_219, L_221, L_222, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1953>
|
|
CommandBuffer_tB56007DC84EF56296C325EC32DD12AC1E3DC91F7* L_223 = ___0_cmd;
|
|
RasterCommandBuffer_t4300C4F080EA3CF43C7ACFDBD4F94EA633FE98E8* L_224;
|
|
L_224 = CommandBufferHelpers_GetRasterCommandBuffer_m6086D650343F166614B3FB5ED89D63DE8F85C42B_inline(L_223, NULL);
|
|
UniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7* L_225 = ___2_cameraData;
|
|
NullCheck(L_225);
|
|
XRPassUniversal_t8D4B40107F5DBC12D39470D87D108D3D2A8FB8D1* L_226;
|
|
L_226 = UniversalCameraData_get_xrUniversal_mD28B65BB477E408AF63DCA582FA63CB9FDCC01E0(L_225, NULL);
|
|
bool L_227 = V_20;
|
|
il2cpp_codegen_runtime_class_init_inline(XRSystemUniversal_tC6D796087104B8263D12B71391A3147102BE3FF7_il2cpp_TypeInfo_var);
|
|
XRSystemUniversal_MarkShaderProperties_mD3F656E96DD95014FE77EC31F74F74809717D0B5(L_224, L_226, L_227, NULL);
|
|
return;
|
|
}
|
|
|
|
IL_03ca:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1963>
|
|
ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* L_228 = ___1_renderPass;
|
|
NullCheck(L_228);
|
|
RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B* L_229;
|
|
L_229 = ScriptableRenderPass_get_colorAttachmentHandle_m9F25A09AF063ECC69EBDF7680D11FA1E5D38AC7A(L_228, NULL);
|
|
V_21 = L_229;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1964>
|
|
ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* L_230 = ___1_renderPass;
|
|
NullCheck(L_230);
|
|
RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B* L_231;
|
|
L_231 = ScriptableRenderPass_get_depthAttachmentHandle_m3AA7953B201494DEF4FD2061660B94663EF63465_inline(L_230, NULL);
|
|
V_22 = L_231;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1969>
|
|
ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* L_232 = ___1_renderPass;
|
|
NullCheck(L_232);
|
|
bool L_233;
|
|
L_233 = ScriptableRenderPass_get_overrideCameraTarget_m343BA9235CD254354013E3CFD6EC519958597128_inline(L_232, NULL);
|
|
if (L_233)
|
|
{
|
|
goto IL_0400;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1973>
|
|
ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* L_234 = ___1_renderPass;
|
|
NullCheck(L_234);
|
|
int32_t L_235;
|
|
L_235 = ScriptableRenderPass_get_renderPassEvent_mD7ED1EFBF050FE1F86D598FA9A1A987CFEAD1AEE_inline(L_234, NULL);
|
|
if ((((int32_t)L_235) >= ((int32_t)((int32_t)150))))
|
|
{
|
|
goto IL_03f0;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1974>
|
|
return;
|
|
}
|
|
|
|
IL_03f0:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1977>
|
|
RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B* L_236 = __this->___m_CameraColorTarget;
|
|
V_21 = L_236;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1978>
|
|
RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B* L_237 = __this->___m_CameraDepthTarget;
|
|
V_22 = L_237;
|
|
}
|
|
|
|
IL_0400:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1981>
|
|
V_23 = 0;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1984>
|
|
RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B* L_238 = V_21;
|
|
NullCheck(L_238);
|
|
RenderTargetIdentifier_tA528663AC6EB3911D8E91AA40F7070FA5455442B L_239;
|
|
L_239 = RTHandle_get_nameID_m30AF2567853494DB845D83A8B37D0FB523DA76E9_inline(L_238, NULL);
|
|
RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B* L_240 = __this->___m_CameraColorTarget;
|
|
NullCheck(L_240);
|
|
RenderTargetIdentifier_tA528663AC6EB3911D8E91AA40F7070FA5455442B L_241;
|
|
L_241 = RTHandle_get_nameID_m30AF2567853494DB845D83A8B37D0FB523DA76E9_inline(L_240, NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(RenderTargetIdentifier_tA528663AC6EB3911D8E91AA40F7070FA5455442B_il2cpp_TypeInfo_var);
|
|
bool L_242;
|
|
L_242 = RenderTargetIdentifier_op_Equality_mD9FD6667F4C385F2379E9DEAAA8F91B7A1D50A1F(L_239, L_241, NULL);
|
|
if (!L_242)
|
|
{
|
|
goto IL_0482;
|
|
}
|
|
}
|
|
{
|
|
bool L_243 = __this->___m_FirstTimeCameraColorTargetIsBound;
|
|
if (!L_243)
|
|
{
|
|
goto IL_0482;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1986>
|
|
__this->___m_FirstTimeCameraColorTargetIsBound = (bool)0;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1988>
|
|
int32_t L_244 = V_23;
|
|
int32_t L_245 = V_1;
|
|
V_23 = ((int32_t)((int32_t)L_244|((int32_t)((int32_t)L_245&1))));
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1992>
|
|
bool L_246;
|
|
L_246 = SystemInfo_get_usesLoadStoreActions_m66E53BB7F2F2750E9607057718B720FFB59291B6(NULL);
|
|
if (!L_246)
|
|
{
|
|
goto IL_0461;
|
|
}
|
|
}
|
|
{
|
|
RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B* L_247 = V_21;
|
|
NullCheck(L_247);
|
|
RenderTargetIdentifier_tA528663AC6EB3911D8E91AA40F7070FA5455442B L_248;
|
|
L_248 = RTHandle_get_nameID_m30AF2567853494DB845D83A8B37D0FB523DA76E9_inline(L_247, NULL);
|
|
RenderTargetIdentifier_tA528663AC6EB3911D8E91AA40F7070FA5455442B L_249;
|
|
memset((&L_249), 0, sizeof(L_249));
|
|
RenderTargetIdentifier__ctor_m79A7348AF351A912E617BF9C8A44A766648C80FB((&L_249), L_248, 0, (-1), 0, NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(RenderTargetIdentifier_tA528663AC6EB3911D8E91AA40F7070FA5455442B_il2cpp_TypeInfo_var);
|
|
RenderTargetIdentifier_tA528663AC6EB3911D8E91AA40F7070FA5455442B L_250;
|
|
L_250 = RenderTargetIdentifier_op_Implicit_m3E2366E36F14173DBEED75591978EBE1F01A1325(2, NULL);
|
|
bool L_251;
|
|
L_251 = RenderTargetIdentifier_op_Inequality_m255136CF7E1B63A8D5A1F9FF03B992B656AB42DF(L_249, L_250, NULL);
|
|
if (!L_251)
|
|
{
|
|
goto IL_0461;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1993>
|
|
int32_t L_252 = V_23;
|
|
ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* L_253 = ___1_renderPass;
|
|
NullCheck(L_253);
|
|
int32_t L_254;
|
|
L_254 = ScriptableRenderPass_get_clearFlag_m74FAFCDC3CD75DC4201B398DFD25E028D7D800DB_inline(L_253, NULL);
|
|
V_23 = ((int32_t)((int32_t)L_252|(int32_t)L_254));
|
|
}
|
|
|
|
IL_0461:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1995>
|
|
UniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7* L_255 = ___2_cameraData;
|
|
NullCheck(L_255);
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F L_256 = L_255->___backgroundColor;
|
|
V_24 = L_256;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:1997>
|
|
bool L_257 = __this->___m_FirstTimeCameraDepthTargetIsBound;
|
|
if (!L_257)
|
|
{
|
|
goto IL_0497;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:2001>
|
|
__this->___m_FirstTimeCameraDepthTargetIsBound = (bool)0;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:2002>
|
|
int32_t L_258 = V_23;
|
|
int32_t L_259 = V_1;
|
|
V_23 = ((int32_t)((int32_t)L_258|((int32_t)((int32_t)L_259&6))));
|
|
goto IL_0497;
|
|
}
|
|
|
|
IL_0482:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:2007>
|
|
int32_t L_260 = V_23;
|
|
ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* L_261 = ___1_renderPass;
|
|
NullCheck(L_261);
|
|
int32_t L_262;
|
|
L_262 = ScriptableRenderPass_get_clearFlag_m74FAFCDC3CD75DC4201B398DFD25E028D7D800DB_inline(L_261, NULL);
|
|
V_23 = ((int32_t)((int32_t)L_260|((int32_t)((int32_t)L_262&1))));
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:2008>
|
|
ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* L_263 = ___1_renderPass;
|
|
NullCheck(L_263);
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F L_264;
|
|
L_264 = ScriptableRenderPass_get_clearColor_mAEC581D756087BF3617FE243D569717FBC2E5DB1_inline(L_263, NULL);
|
|
V_24 = L_264;
|
|
}
|
|
|
|
IL_0497:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:2012>
|
|
RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B* L_265 = __this->___m_CameraDepthTarget;
|
|
NullCheck(L_265);
|
|
RenderTargetIdentifier_tA528663AC6EB3911D8E91AA40F7070FA5455442B L_266;
|
|
L_266 = RTHandle_get_nameID_m30AF2567853494DB845D83A8B37D0FB523DA76E9_inline(L_265, NULL);
|
|
RenderTargetIdentifier_tA528663AC6EB3911D8E91AA40F7070FA5455442B L_267;
|
|
memset((&L_267), 0, sizeof(L_267));
|
|
RenderTargetIdentifier__ctor_m79A7348AF351A912E617BF9C8A44A766648C80FB((&L_267), L_266, 0, (-1), 0, NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(RenderTargetIdentifier_tA528663AC6EB3911D8E91AA40F7070FA5455442B_il2cpp_TypeInfo_var);
|
|
RenderTargetIdentifier_tA528663AC6EB3911D8E91AA40F7070FA5455442B L_268;
|
|
L_268 = RenderTargetIdentifier_op_Implicit_m3E2366E36F14173DBEED75591978EBE1F01A1325(2, NULL);
|
|
bool L_269;
|
|
L_269 = RenderTargetIdentifier_op_Inequality_m255136CF7E1B63A8D5A1F9FF03B992B656AB42DF(L_267, L_268, NULL);
|
|
if (!L_269)
|
|
{
|
|
goto IL_0502;
|
|
}
|
|
}
|
|
{
|
|
RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B* L_270 = V_22;
|
|
NullCheck(L_270);
|
|
RenderTargetIdentifier_tA528663AC6EB3911D8E91AA40F7070FA5455442B L_271;
|
|
L_271 = RTHandle_get_nameID_m30AF2567853494DB845D83A8B37D0FB523DA76E9_inline(L_270, NULL);
|
|
RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B* L_272 = __this->___m_CameraDepthTarget;
|
|
NullCheck(L_272);
|
|
RenderTargetIdentifier_tA528663AC6EB3911D8E91AA40F7070FA5455442B L_273;
|
|
L_273 = RTHandle_get_nameID_m30AF2567853494DB845D83A8B37D0FB523DA76E9_inline(L_272, NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(RenderTargetIdentifier_tA528663AC6EB3911D8E91AA40F7070FA5455442B_il2cpp_TypeInfo_var);
|
|
bool L_274;
|
|
L_274 = RenderTargetIdentifier_op_Equality_mD9FD6667F4C385F2379E9DEAAA8F91B7A1D50A1F(L_271, L_273, NULL);
|
|
if (L_274)
|
|
{
|
|
goto IL_04e9;
|
|
}
|
|
}
|
|
{
|
|
RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B* L_275 = V_21;
|
|
NullCheck(L_275);
|
|
RenderTargetIdentifier_tA528663AC6EB3911D8E91AA40F7070FA5455442B L_276;
|
|
L_276 = RTHandle_get_nameID_m30AF2567853494DB845D83A8B37D0FB523DA76E9_inline(L_275, NULL);
|
|
RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B* L_277 = __this->___m_CameraDepthTarget;
|
|
NullCheck(L_277);
|
|
RenderTargetIdentifier_tA528663AC6EB3911D8E91AA40F7070FA5455442B L_278;
|
|
L_278 = RTHandle_get_nameID_m30AF2567853494DB845D83A8B37D0FB523DA76E9_inline(L_277, NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(RenderTargetIdentifier_tA528663AC6EB3911D8E91AA40F7070FA5455442B_il2cpp_TypeInfo_var);
|
|
bool L_279;
|
|
L_279 = RenderTargetIdentifier_op_Equality_mD9FD6667F4C385F2379E9DEAAA8F91B7A1D50A1F(L_276, L_278, NULL);
|
|
if (!L_279)
|
|
{
|
|
goto IL_0502;
|
|
}
|
|
}
|
|
|
|
IL_04e9:
|
|
{
|
|
bool L_280 = __this->___m_FirstTimeCameraDepthTargetIsBound;
|
|
if (!L_280)
|
|
{
|
|
goto IL_0502;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:2014>
|
|
__this->___m_FirstTimeCameraDepthTargetIsBound = (bool)0;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:2016>
|
|
int32_t L_281 = V_23;
|
|
int32_t L_282 = V_1;
|
|
V_23 = ((int32_t)((int32_t)L_281|((int32_t)((int32_t)L_282&6))));
|
|
goto IL_050f;
|
|
}
|
|
|
|
IL_0502:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:2021>
|
|
int32_t L_283 = V_23;
|
|
ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* L_284 = ___1_renderPass;
|
|
NullCheck(L_284);
|
|
int32_t L_285;
|
|
L_285 = ScriptableRenderPass_get_clearFlag_m74FAFCDC3CD75DC4201B398DFD25E028D7D800DB_inline(L_284, NULL);
|
|
V_23 = ((int32_t)((int32_t)L_283|((int32_t)((int32_t)L_285&6))));
|
|
}
|
|
|
|
IL_050f:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:2031>
|
|
Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184* L_286 = V_0;
|
|
bool L_287;
|
|
L_287 = ScriptableRenderer_IsSceneFilteringEnabled_m177DE9C0DEEB440C7DC82C3431930EB2C6FE489D(__this, L_286, NULL);
|
|
if (!L_287)
|
|
{
|
|
goto IL_052b;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:2033>
|
|
(&V_24)->___a = (0.0f);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:2034>
|
|
int32_t L_288 = V_23;
|
|
V_23 = ((int32_t)((int32_t)L_288&((int32_t)-3)));
|
|
}
|
|
|
|
IL_052b:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:2038>
|
|
DebugHandler_t3A09E2CFD1CA6F5C192968A6FF19EE4863F44DA4* L_289;
|
|
L_289 = ScriptableRenderer_get_DebugHandler_mF10EC7F8F42F5087507DCDB7CD21338F2766DD6F_inline(__this, NULL);
|
|
if (!L_289)
|
|
{
|
|
goto IL_0554;
|
|
}
|
|
}
|
|
{
|
|
DebugHandler_t3A09E2CFD1CA6F5C192968A6FF19EE4863F44DA4* L_290;
|
|
L_290 = ScriptableRenderer_get_DebugHandler_mF10EC7F8F42F5087507DCDB7CD21338F2766DD6F_inline(__this, NULL);
|
|
UniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7* L_291 = ___2_cameraData;
|
|
NullCheck(L_291);
|
|
bool L_292;
|
|
L_292 = UniversalCameraData_get_isPreviewCamera_m805B3ED7E0D54B8054BFFD3166489E2B1B3BDC51(L_291, NULL);
|
|
NullCheck(L_290);
|
|
bool L_293;
|
|
L_293 = DebugHandler_IsActiveForCamera_mAAAF88FA94FF91A19A7CE1898EB0295997045077(L_290, L_292, NULL);
|
|
if (!L_293)
|
|
{
|
|
goto IL_0554;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:2040>
|
|
DebugHandler_t3A09E2CFD1CA6F5C192968A6FF19EE4863F44DA4* L_294;
|
|
L_294 = ScriptableRenderer_get_DebugHandler_mF10EC7F8F42F5087507DCDB7CD21338F2766DD6F_inline(__this, NULL);
|
|
NullCheck(L_294);
|
|
bool L_295;
|
|
L_295 = DebugHandler_TryGetScreenClearColor_m619E4FB0A12C3D326CC27F2088D4F4E454BC5C46(L_294, (&V_24), NULL);
|
|
}
|
|
|
|
IL_0554:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:2043>
|
|
ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* L_296 = ___1_renderPass;
|
|
bool L_297;
|
|
L_297 = ScriptableRenderer_IsRenderPassEnabled_m62F183DF3911C7360F8C812DA5E976D08D9ADB7B(__this, L_296, NULL);
|
|
if (!L_297)
|
|
{
|
|
goto IL_0576;
|
|
}
|
|
}
|
|
{
|
|
UniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7* L_298 = ___2_cameraData;
|
|
NullCheck(L_298);
|
|
bool L_299;
|
|
L_299 = UniversalCameraData_get_isRenderPassSupportedCamera_m540F7A822ED64400F9E4E7CA6EEAE4EEAEC81671(L_298, NULL);
|
|
if (!L_299)
|
|
{
|
|
goto IL_0576;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:2045>
|
|
ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* L_300 = ___1_renderPass;
|
|
UniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7* L_301 = ___2_cameraData;
|
|
RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B* L_302 = V_21;
|
|
RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B* L_303 = V_22;
|
|
int32_t L_304 = V_23;
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F L_305 = V_24;
|
|
ScriptableRenderer_SetNativeRenderPassAttachmentList_mA63C41DE0D22482BB9FC708CDE911E8171356B27(__this, L_300, L_301, L_302, L_303, L_304, L_305, NULL);
|
|
return;
|
|
}
|
|
|
|
IL_0576:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:2050>
|
|
V_25 = (bool)0;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:2053>
|
|
RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B* L_306 = V_21;
|
|
NullCheck(L_306);
|
|
RenderTargetIdentifier_tA528663AC6EB3911D8E91AA40F7070FA5455442B L_307;
|
|
L_307 = RTHandle_get_nameID_m30AF2567853494DB845D83A8B37D0FB523DA76E9_inline(L_306, NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892_il2cpp_TypeInfo_var);
|
|
RTHandleU5BU5D_tE4B403B060D159B839BF74E8B59F8DCD52CF97DF* L_308 = ((ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892_StaticFields*)il2cpp_codegen_static_fields_for(ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892_il2cpp_TypeInfo_var))->___m_ActiveColorAttachments;
|
|
NullCheck(L_308);
|
|
int32_t L_309 = 0;
|
|
RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B* L_310 = (L_308)->GetAt(static_cast<il2cpp_array_size_t>(L_309));
|
|
RenderTargetIdentifier_tA528663AC6EB3911D8E91AA40F7070FA5455442B L_311;
|
|
L_311 = RTHandle_op_Implicit_m2462183372B0496DE475889924EDCAAAD2011B54(L_310, NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(RenderTargetIdentifier_tA528663AC6EB3911D8E91AA40F7070FA5455442B_il2cpp_TypeInfo_var);
|
|
bool L_312;
|
|
L_312 = RenderTargetIdentifier_op_Inequality_m255136CF7E1B63A8D5A1F9FF03B992B656AB42DF(L_307, L_311, NULL);
|
|
if (!L_312)
|
|
{
|
|
goto IL_0596;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:2054>
|
|
V_25 = (bool)1;
|
|
}
|
|
|
|
IL_0596:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:2056>
|
|
V_26 = 1;
|
|
goto IL_05b9;
|
|
}
|
|
|
|
IL_059b:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:2058>
|
|
ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* L_313 = ___1_renderPass;
|
|
NullCheck(L_313);
|
|
RTHandleU5BU5D_tE4B403B060D159B839BF74E8B59F8DCD52CF97DF* L_314;
|
|
L_314 = ScriptableRenderPass_get_colorAttachmentHandles_m52C72D6C6F0E7A66FE8FEC5ECFDDE5407FBF8897_inline(L_313, NULL);
|
|
int32_t L_315 = V_26;
|
|
NullCheck(L_314);
|
|
int32_t L_316 = L_315;
|
|
RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B* L_317 = (L_314)->GetAt(static_cast<il2cpp_array_size_t>(L_316));
|
|
il2cpp_codegen_runtime_class_init_inline(ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892_il2cpp_TypeInfo_var);
|
|
RTHandleU5BU5D_tE4B403B060D159B839BF74E8B59F8DCD52CF97DF* L_318 = ((ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892_StaticFields*)il2cpp_codegen_static_fields_for(ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892_il2cpp_TypeInfo_var))->___m_ActiveColorAttachments;
|
|
int32_t L_319 = V_26;
|
|
NullCheck(L_318);
|
|
int32_t L_320 = L_319;
|
|
RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B* L_321 = (L_318)->GetAt(static_cast<il2cpp_array_size_t>(L_320));
|
|
if ((((RuntimeObject*)(RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B*)L_317) == ((RuntimeObject*)(RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B*)L_321)))
|
|
{
|
|
goto IL_05b3;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:2060>
|
|
V_25 = (bool)1;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:2061>
|
|
goto IL_05c4;
|
|
}
|
|
|
|
IL_05b3:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:2056>
|
|
int32_t L_322 = V_26;
|
|
V_26 = ((int32_t)il2cpp_codegen_add(L_322, 1));
|
|
}
|
|
|
|
IL_05b9:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:2056>
|
|
int32_t L_323 = V_26;
|
|
il2cpp_codegen_runtime_class_init_inline(ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892_il2cpp_TypeInfo_var);
|
|
RTHandleU5BU5D_tE4B403B060D159B839BF74E8B59F8DCD52CF97DF* L_324 = ((ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892_StaticFields*)il2cpp_codegen_static_fields_for(ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892_il2cpp_TypeInfo_var))->___m_ActiveColorAttachments;
|
|
NullCheck(L_324);
|
|
if ((((int32_t)L_323) < ((int32_t)((int32_t)(((RuntimeArray*)L_324)->max_length)))))
|
|
{
|
|
goto IL_059b;
|
|
}
|
|
}
|
|
|
|
IL_05c4:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:2066>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:2067>
|
|
bool L_325 = V_25;
|
|
if (L_325)
|
|
{
|
|
goto IL_0602;
|
|
}
|
|
}
|
|
{
|
|
RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B* L_326 = V_22;
|
|
NullCheck(L_326);
|
|
RenderTargetIdentifier_tA528663AC6EB3911D8E91AA40F7070FA5455442B L_327;
|
|
L_327 = RTHandle_get_nameID_m30AF2567853494DB845D83A8B37D0FB523DA76E9_inline(L_326, NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892_il2cpp_TypeInfo_var);
|
|
RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B* L_328 = ((ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892_StaticFields*)il2cpp_codegen_static_fields_for(ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892_il2cpp_TypeInfo_var))->___m_ActiveDepthAttachment;
|
|
RenderTargetIdentifier_tA528663AC6EB3911D8E91AA40F7070FA5455442B L_329;
|
|
L_329 = RTHandle_op_Implicit_m2462183372B0496DE475889924EDCAAAD2011B54(L_328, NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(RenderTargetIdentifier_tA528663AC6EB3911D8E91AA40F7070FA5455442B_il2cpp_TypeInfo_var);
|
|
bool L_330;
|
|
L_330 = RenderTargetIdentifier_op_Inequality_m255136CF7E1B63A8D5A1F9FF03B992B656AB42DF(L_327, L_329, NULL);
|
|
if (L_330)
|
|
{
|
|
goto IL_0602;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_331 = V_23;
|
|
if (L_331)
|
|
{
|
|
goto IL_0602;
|
|
}
|
|
}
|
|
{
|
|
ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* L_332 = ___1_renderPass;
|
|
NullCheck(L_332);
|
|
RenderBufferStoreActionU5BU5D_tFEA8F5DD460573EA9F35FBEC5727D1804C5DCBF5* L_333;
|
|
L_333 = ScriptableRenderPass_get_colorStoreActions_m8512840B6D3802C9C09D357894358BAF8FE907D7_inline(L_332, NULL);
|
|
NullCheck(L_333);
|
|
int32_t L_334 = 0;
|
|
int32_t L_335 = (int32_t)(L_333)->GetAt(static_cast<il2cpp_array_size_t>(L_334));
|
|
il2cpp_codegen_runtime_class_init_inline(ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892_il2cpp_TypeInfo_var);
|
|
RenderBufferStoreActionU5BU5D_tFEA8F5DD460573EA9F35FBEC5727D1804C5DCBF5* L_336 = ((ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892_StaticFields*)il2cpp_codegen_static_fields_for(ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892_il2cpp_TypeInfo_var))->___m_ActiveColorStoreActions;
|
|
NullCheck(L_336);
|
|
int32_t L_337 = 0;
|
|
int32_t L_338 = (int32_t)(L_336)->GetAt(static_cast<il2cpp_array_size_t>(L_337));
|
|
if ((!(((uint32_t)L_335) == ((uint32_t)L_338))))
|
|
{
|
|
goto IL_0602;
|
|
}
|
|
}
|
|
{
|
|
ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* L_339 = ___1_renderPass;
|
|
NullCheck(L_339);
|
|
int32_t L_340;
|
|
L_340 = ScriptableRenderPass_get_depthStoreAction_m3DCEBE1FEEE5ABD1AF0EC3656296E08C56704845_inline(L_339, NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892_il2cpp_TypeInfo_var);
|
|
int32_t L_341 = ((ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892_StaticFields*)il2cpp_codegen_static_fields_for(ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892_il2cpp_TypeInfo_var))->___m_ActiveDepthStoreAction;
|
|
if ((((int32_t)L_340) == ((int32_t)L_341)))
|
|
{
|
|
goto IL_0665;
|
|
}
|
|
}
|
|
|
|
IL_0602:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:2069>
|
|
CommandBuffer_tB56007DC84EF56296C325EC32DD12AC1E3DC91F7* L_342 = ___0_cmd;
|
|
RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B* L_343 = V_21;
|
|
RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B* L_344 = V_22;
|
|
int32_t L_345 = V_23;
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F L_346 = V_24;
|
|
ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* L_347 = ___1_renderPass;
|
|
NullCheck(L_347);
|
|
RenderBufferStoreActionU5BU5D_tFEA8F5DD460573EA9F35FBEC5727D1804C5DCBF5* L_348;
|
|
L_348 = ScriptableRenderPass_get_colorStoreActions_m8512840B6D3802C9C09D357894358BAF8FE907D7_inline(L_347, NULL);
|
|
NullCheck(L_348);
|
|
int32_t L_349 = 0;
|
|
int32_t L_350 = (int32_t)(L_348)->GetAt(static_cast<il2cpp_array_size_t>(L_349));
|
|
ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* L_351 = ___1_renderPass;
|
|
NullCheck(L_351);
|
|
int32_t L_352;
|
|
L_352 = ScriptableRenderPass_get_depthStoreAction_m3DCEBE1FEEE5ABD1AF0EC3656296E08C56704845_inline(L_351, NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892_il2cpp_TypeInfo_var);
|
|
ScriptableRenderer_SetRenderTarget_m6A0935746EE31A98A2BEB866052B9A1F6302E123(L_342, L_343, L_344, L_345, L_346, L_350, L_352, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:2072>
|
|
UniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7* L_353 = ___2_cameraData;
|
|
NullCheck(L_353);
|
|
XRPass_tFC4577E97B88E0EAAAB2EB387AB3A92E9EB9C6DF* L_354;
|
|
L_354 = UniversalCameraData_get_xr_mC600E667BA2B92EADF2CF60CD49E15242FA83C4D_inline(L_353, NULL);
|
|
NullCheck(L_354);
|
|
bool L_355;
|
|
L_355 = XRPass_get_enabled_m488D52C18CC6B83FDC3212E98864BA02116A64A3(L_354, NULL);
|
|
if (!L_355)
|
|
{
|
|
goto IL_0665;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:2076>
|
|
RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B* L_356 = V_21;
|
|
NullCheck(L_356);
|
|
RenderTargetIdentifier_tA528663AC6EB3911D8E91AA40F7070FA5455442B L_357;
|
|
L_357 = RTHandle_get_nameID_m30AF2567853494DB845D83A8B37D0FB523DA76E9_inline(L_356, NULL);
|
|
UniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7* L_358 = ___2_cameraData;
|
|
NullCheck(L_358);
|
|
XRPass_tFC4577E97B88E0EAAAB2EB387AB3A92E9EB9C6DF* L_359;
|
|
L_359 = UniversalCameraData_get_xr_mC600E667BA2B92EADF2CF60CD49E15242FA83C4D_inline(L_358, NULL);
|
|
NullCheck(L_359);
|
|
RenderTargetIdentifier_tA528663AC6EB3911D8E91AA40F7070FA5455442B L_360;
|
|
L_360 = XRPass_get_renderTarget_m4183955FBAB06A0CD30DAAC60DFC51AD18466F48_inline(L_359, NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(RenderTargetIdentifier_tA528663AC6EB3911D8E91AA40F7070FA5455442B_il2cpp_TypeInfo_var);
|
|
bool L_361;
|
|
L_361 = RenderTargetIdentifier_op_Inequality_m255136CF7E1B63A8D5A1F9FF03B992B656AB42DF(L_357, L_360, NULL);
|
|
V_27 = L_361;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:2077>
|
|
UniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7* L_362 = ___2_cameraData;
|
|
CommandBuffer_tB56007DC84EF56296C325EC32DD12AC1E3DC91F7* L_363 = ___0_cmd;
|
|
il2cpp_codegen_runtime_class_init_inline(CommandBufferHelpers_tB8C09D01D6F0369DF52DEA955F017D6001BC72E5_il2cpp_TypeInfo_var);
|
|
RasterCommandBuffer_t4300C4F080EA3CF43C7ACFDBD4F94EA633FE98E8* L_364;
|
|
L_364 = CommandBufferHelpers_GetRasterCommandBuffer_m6086D650343F166614B3FB5ED89D63DE8F85C42B_inline(L_363, NULL);
|
|
bool L_365 = V_27;
|
|
NullCheck(L_362);
|
|
UniversalCameraData_PushBuiltinShaderConstantsXR_mA5EE73620BDC6B4AD63AEDF6850F7FD24B21F729(L_362, L_364, L_365, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:2078>
|
|
CommandBuffer_tB56007DC84EF56296C325EC32DD12AC1E3DC91F7* L_366 = ___0_cmd;
|
|
RasterCommandBuffer_t4300C4F080EA3CF43C7ACFDBD4F94EA633FE98E8* L_367;
|
|
L_367 = CommandBufferHelpers_GetRasterCommandBuffer_m6086D650343F166614B3FB5ED89D63DE8F85C42B_inline(L_366, NULL);
|
|
UniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7* L_368 = ___2_cameraData;
|
|
NullCheck(L_368);
|
|
XRPassUniversal_t8D4B40107F5DBC12D39470D87D108D3D2A8FB8D1* L_369;
|
|
L_369 = UniversalCameraData_get_xrUniversal_mD28B65BB477E408AF63DCA582FA63CB9FDCC01E0(L_368, NULL);
|
|
bool L_370 = V_27;
|
|
il2cpp_codegen_runtime_class_init_inline(XRSystemUniversal_tC6D796087104B8263D12B71391A3147102BE3FF7_il2cpp_TypeInfo_var);
|
|
XRSystemUniversal_MarkShaderProperties_mD3F656E96DD95014FE77EC31F74F74809717D0B5(L_367, L_369, L_370, NULL);
|
|
}
|
|
|
|
IL_0665:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:2089>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 33431
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ScriptableRenderer_BeginXRRendering_mF14D004085962304083771577669004E4586123F (ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892* __this, CommandBuffer_tB56007DC84EF56296C325EC32DD12AC1E3DC91F7* ___0_cmd, ScriptableRenderContext_t5AB09B3602BEB456E0DC3D53926D3A3BDAF08E36 ___1_context, CameraData_tC27AE109CD20677486A4AC19C0CF014AE0F50C3E* ___2_cameraData, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ScriptableRenderContext_t5AB09B3602BEB456E0DC3D53926D3A3BDAF08E36_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ShaderGlobalKeywords_tCD2A8F654428E5D252204D24E379C6725E5A2C91_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XRSystem_tF767981574E3DA643F7A67A995F12DB1C4A97096_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:2095>
|
|
CameraData_tC27AE109CD20677486A4AC19C0CF014AE0F50C3E* L_0 = ___2_cameraData;
|
|
XRPass_tFC4577E97B88E0EAAAB2EB387AB3A92E9EB9C6DF* L_1;
|
|
L_1 = CameraData_get_xr_m5E9EFE56E6BABFF14ADC71E87D5A19BA7CDDF697(L_0, NULL);
|
|
NullCheck(L_1);
|
|
bool L_2;
|
|
L_2 = XRPass_get_enabled_m488D52C18CC6B83FDC3212E98864BA02116A64A3(L_1, NULL);
|
|
if (!L_2)
|
|
{
|
|
goto IL_0081;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:2097>
|
|
CameraData_tC27AE109CD20677486A4AC19C0CF014AE0F50C3E* L_3 = ___2_cameraData;
|
|
XRPassUniversal_t8D4B40107F5DBC12D39470D87D108D3D2A8FB8D1* L_4;
|
|
L_4 = CameraData_get_xrUniversal_m2D8CD187845B0A130FE01C8045F4A709ABA87364(L_3, NULL);
|
|
NullCheck(L_4);
|
|
bool L_5;
|
|
L_5 = XRPassUniversal_get_isLateLatchEnabled_mCFAAB2099E57226FDD74EC51E16DE26E3B7777A3_inline(L_4, NULL);
|
|
if (!L_5)
|
|
{
|
|
goto IL_0026;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:2098>
|
|
CameraData_tC27AE109CD20677486A4AC19C0CF014AE0F50C3E* L_6 = ___2_cameraData;
|
|
XRPassUniversal_t8D4B40107F5DBC12D39470D87D108D3D2A8FB8D1* L_7;
|
|
L_7 = CameraData_get_xrUniversal_m2D8CD187845B0A130FE01C8045F4A709ABA87364(L_6, NULL);
|
|
NullCheck(L_7);
|
|
XRPassUniversal_set_canMarkLateLatch_m55FD53B9F8BE99FF85F7CA356D608F042A55906F_inline(L_7, (bool)1, NULL);
|
|
}
|
|
|
|
IL_0026:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:2100>
|
|
CameraData_tC27AE109CD20677486A4AC19C0CF014AE0F50C3E* L_8 = ___2_cameraData;
|
|
XRPass_tFC4577E97B88E0EAAAB2EB387AB3A92E9EB9C6DF* L_9;
|
|
L_9 = CameraData_get_xr_m5E9EFE56E6BABFF14ADC71E87D5A19BA7CDDF697(L_8, NULL);
|
|
CommandBuffer_tB56007DC84EF56296C325EC32DD12AC1E3DC91F7* L_10 = ___0_cmd;
|
|
NullCheck(L_9);
|
|
XRPass_StartSinglePass_mEAB8D0365AE942CBE93BFB0DAC39E8D04ACE9F9E(L_9, L_10, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:2102>
|
|
CameraData_tC27AE109CD20677486A4AC19C0CF014AE0F50C3E* L_11 = ___2_cameraData;
|
|
XRPass_tFC4577E97B88E0EAAAB2EB387AB3A92E9EB9C6DF* L_12;
|
|
L_12 = CameraData_get_xr_m5E9EFE56E6BABFF14ADC71E87D5A19BA7CDDF697(L_11, NULL);
|
|
NullCheck(L_12);
|
|
bool L_13;
|
|
L_13 = XRPass_get_supportsFoveatedRendering_mC6E13A1C877BBEE86D48AEEA9A552074C2452B73(L_12, NULL);
|
|
if (!L_13)
|
|
{
|
|
goto IL_0073;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:2104>
|
|
CommandBuffer_tB56007DC84EF56296C325EC32DD12AC1E3DC91F7* L_14 = ___0_cmd;
|
|
CameraData_tC27AE109CD20677486A4AC19C0CF014AE0F50C3E* L_15 = ___2_cameraData;
|
|
XRPass_tFC4577E97B88E0EAAAB2EB387AB3A92E9EB9C6DF* L_16;
|
|
L_16 = CameraData_get_xr_m5E9EFE56E6BABFF14ADC71E87D5A19BA7CDDF697(L_15, NULL);
|
|
NullCheck(L_16);
|
|
intptr_t L_17;
|
|
L_17 = XRPass_get_foveatedRenderingInfo_m6F0E2EFEFFF40F47ABD3602D125C40E7CFBDE39B_inline(L_16, NULL);
|
|
NullCheck(L_14);
|
|
CommandBuffer_ConfigureFoveatedRendering_mCA5453D2455474AD65FBE7DC301D8C4D52308F47(L_14, L_17, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:2106>
|
|
il2cpp_codegen_runtime_class_init_inline(XRSystem_tF767981574E3DA643F7A67A995F12DB1C4A97096_il2cpp_TypeInfo_var);
|
|
int32_t L_18;
|
|
L_18 = XRSystem_get_foveatedRenderingCaps_m2B4B6BD6E1BFD298DD8A66DB2294FA27A0F6F989_inline(NULL);
|
|
int32_t L_19 = L_18;
|
|
int32_t L_20 = 2;
|
|
bool L_21 = il2cpp_codegen_enum_has_flag((int32_t)L_19, (int32_t)L_20);
|
|
if (!L_21)
|
|
{
|
|
goto IL_0073;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:2107>
|
|
CommandBuffer_tB56007DC84EF56296C325EC32DD12AC1E3DC91F7* L_22 = ___0_cmd;
|
|
NullCheck(L_22);
|
|
CommandBuffer_SetKeyword_m21015D629787CEC4954ABA00F1211D2F957B2399(L_22, (&((ShaderGlobalKeywords_tCD2A8F654428E5D252204D24E379C6725E5A2C91_StaticFields*)il2cpp_codegen_static_fields_for(ShaderGlobalKeywords_tCD2A8F654428E5D252204D24E379C6725E5A2C91_il2cpp_TypeInfo_var))->___FoveatedRenderingNonUniformRaster), (bool)1, NULL);
|
|
}
|
|
|
|
IL_0073:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:2110>
|
|
CommandBuffer_tB56007DC84EF56296C325EC32DD12AC1E3DC91F7* L_23 = ___0_cmd;
|
|
il2cpp_codegen_runtime_class_init_inline(ScriptableRenderContext_t5AB09B3602BEB456E0DC3D53926D3A3BDAF08E36_il2cpp_TypeInfo_var);
|
|
ScriptableRenderContext_ExecuteCommandBuffer_mBAE37DFC699B7167A6E2C59012066C44A31E9896((&___1_context), L_23, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:2111>
|
|
CommandBuffer_tB56007DC84EF56296C325EC32DD12AC1E3DC91F7* L_24 = ___0_cmd;
|
|
NullCheck(L_24);
|
|
CommandBuffer_Clear_m4E1272BD1A0C162C9C26434E115279F42FA557C7(L_24, NULL);
|
|
}
|
|
|
|
IL_0081:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:2114>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 33432
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ScriptableRenderer_EndXRRendering_m270391BCE0300166C04B6B65E7CFC566AC621C92 (ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892* __this, CommandBuffer_tB56007DC84EF56296C325EC32DD12AC1E3DC91F7* ___0_cmd, ScriptableRenderContext_t5AB09B3602BEB456E0DC3D53926D3A3BDAF08E36 ___1_context, CameraData_tC27AE109CD20677486A4AC19C0CF014AE0F50C3E* ___2_cameraData, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ScriptableRenderContext_t5AB09B3602BEB456E0DC3D53926D3A3BDAF08E36_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ShaderGlobalKeywords_tCD2A8F654428E5D252204D24E379C6725E5A2C91_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XRSystem_tF767981574E3DA643F7A67A995F12DB1C4A97096_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:2120>
|
|
CameraData_tC27AE109CD20677486A4AC19C0CF014AE0F50C3E* L_0 = ___2_cameraData;
|
|
XRPass_tFC4577E97B88E0EAAAB2EB387AB3A92E9EB9C6DF* L_1;
|
|
L_1 = CameraData_get_xr_m5E9EFE56E6BABFF14ADC71E87D5A19BA7CDDF697(L_0, NULL);
|
|
NullCheck(L_1);
|
|
bool L_2;
|
|
L_2 = XRPass_get_enabled_m488D52C18CC6B83FDC3212E98864BA02116A64A3(L_1, NULL);
|
|
if (!L_2)
|
|
{
|
|
goto IL_005c;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:2122>
|
|
CameraData_tC27AE109CD20677486A4AC19C0CF014AE0F50C3E* L_3 = ___2_cameraData;
|
|
XRPass_tFC4577E97B88E0EAAAB2EB387AB3A92E9EB9C6DF* L_4;
|
|
L_4 = CameraData_get_xr_m5E9EFE56E6BABFF14ADC71E87D5A19BA7CDDF697(L_3, NULL);
|
|
CommandBuffer_tB56007DC84EF56296C325EC32DD12AC1E3DC91F7* L_5 = ___0_cmd;
|
|
NullCheck(L_4);
|
|
XRPass_StopSinglePass_m960F285B09F60B90BD27844AFA5069E24189C336(L_4, L_5, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:2125>
|
|
il2cpp_codegen_runtime_class_init_inline(XRSystem_tF767981574E3DA643F7A67A995F12DB1C4A97096_il2cpp_TypeInfo_var);
|
|
int32_t L_6;
|
|
L_6 = XRSystem_get_foveatedRenderingCaps_m2B4B6BD6E1BFD298DD8A66DB2294FA27A0F6F989_inline(NULL);
|
|
if (!L_6)
|
|
{
|
|
goto IL_004e;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:2127>
|
|
il2cpp_codegen_runtime_class_init_inline(XRSystem_tF767981574E3DA643F7A67A995F12DB1C4A97096_il2cpp_TypeInfo_var);
|
|
int32_t L_7;
|
|
L_7 = XRSystem_get_foveatedRenderingCaps_m2B4B6BD6E1BFD298DD8A66DB2294FA27A0F6F989_inline(NULL);
|
|
int32_t L_8 = L_7;
|
|
int32_t L_9 = 2;
|
|
bool L_10 = il2cpp_codegen_enum_has_flag((int32_t)L_8, (int32_t)L_9);
|
|
if (!L_10)
|
|
{
|
|
goto IL_0043;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:2128>
|
|
CommandBuffer_tB56007DC84EF56296C325EC32DD12AC1E3DC91F7* L_11 = ___0_cmd;
|
|
NullCheck(L_11);
|
|
CommandBuffer_SetKeyword_m21015D629787CEC4954ABA00F1211D2F957B2399(L_11, (&((ShaderGlobalKeywords_tCD2A8F654428E5D252204D24E379C6725E5A2C91_StaticFields*)il2cpp_codegen_static_fields_for(ShaderGlobalKeywords_tCD2A8F654428E5D252204D24E379C6725E5A2C91_il2cpp_TypeInfo_var))->___FoveatedRenderingNonUniformRaster), (bool)0, NULL);
|
|
}
|
|
|
|
IL_0043:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:2130>
|
|
CommandBuffer_tB56007DC84EF56296C325EC32DD12AC1E3DC91F7* L_12 = ___0_cmd;
|
|
NullCheck(L_12);
|
|
CommandBuffer_ConfigureFoveatedRendering_mCA5453D2455474AD65FBE7DC301D8C4D52308F47(L_12, 0, NULL);
|
|
}
|
|
|
|
IL_004e:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:2133>
|
|
CommandBuffer_tB56007DC84EF56296C325EC32DD12AC1E3DC91F7* L_13 = ___0_cmd;
|
|
il2cpp_codegen_runtime_class_init_inline(ScriptableRenderContext_t5AB09B3602BEB456E0DC3D53926D3A3BDAF08E36_il2cpp_TypeInfo_var);
|
|
ScriptableRenderContext_ExecuteCommandBuffer_mBAE37DFC699B7167A6E2C59012066C44A31E9896((&___1_context), L_13, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:2134>
|
|
CommandBuffer_tB56007DC84EF56296C325EC32DD12AC1E3DC91F7* L_14 = ___0_cmd;
|
|
NullCheck(L_14);
|
|
CommandBuffer_Clear_m4E1272BD1A0C162C9C26434E115279F42FA557C7(L_14, NULL);
|
|
}
|
|
|
|
IL_005c:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:2137>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 33433
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ScriptableRenderer_SetRenderTarget_mA8C80A941EC4D76318A688D1E571561E2CCA5FC0 (CommandBuffer_tB56007DC84EF56296C325EC32DD12AC1E3DC91F7* ___0_cmd, RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B* ___1_colorAttachment, RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B* ___2_depthAttachment, int32_t ___3_clearFlag, Color_tD001788D726C3A7F1379BEED0260B9591F440C1F ___4_clearColor, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RenderTargetIdentifier_tA528663AC6EB3911D8E91AA40F7070FA5455442B_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int32_t V_0 = 0;
|
|
int32_t V_1 = 0;
|
|
int32_t V_2 = 0;
|
|
int32_t V_3 = 0;
|
|
int32_t V_4 = 0;
|
|
RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B* G_B6_0 = NULL;
|
|
int32_t G_B6_1 = 0;
|
|
RenderTargetIdentifierU5BU5D_t179798C153B7CE381B41C57863F98CB24023C4CE* G_B6_2 = NULL;
|
|
RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B* G_B5_0 = NULL;
|
|
int32_t G_B5_1 = 0;
|
|
RenderTargetIdentifierU5BU5D_t179798C153B7CE381B41C57863F98CB24023C4CE* G_B5_2 = NULL;
|
|
RenderTargetIdentifier_tA528663AC6EB3911D8E91AA40F7070FA5455442B G_B7_0;
|
|
memset((&G_B7_0), 0, sizeof(G_B7_0));
|
|
int32_t G_B7_1 = 0;
|
|
RenderTargetIdentifierU5BU5D_t179798C153B7CE381B41C57863F98CB24023C4CE* G_B7_2 = NULL;
|
|
int32_t G_B15_0 = 0;
|
|
int32_t G_B19_0 = 0;
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:2142>
|
|
il2cpp_codegen_runtime_class_init_inline(ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892_il2cpp_TypeInfo_var);
|
|
RTHandleU5BU5D_tE4B403B060D159B839BF74E8B59F8DCD52CF97DF* L_0 = ((ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892_StaticFields*)il2cpp_codegen_static_fields_for(ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892_il2cpp_TypeInfo_var))->___m_ActiveColorAttachments;
|
|
RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B* L_1 = ___1_colorAttachment;
|
|
NullCheck(L_0);
|
|
ArrayElementTypeCheck (L_0, L_1);
|
|
(L_0)->SetAt(static_cast<il2cpp_array_size_t>(0), (RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B*)L_1);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:2143>
|
|
V_2 = 1;
|
|
goto IL_0018;
|
|
}
|
|
|
|
IL_000c:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:2144>
|
|
il2cpp_codegen_runtime_class_init_inline(ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892_il2cpp_TypeInfo_var);
|
|
RTHandleU5BU5D_tE4B403B060D159B839BF74E8B59F8DCD52CF97DF* L_2 = ((ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892_StaticFields*)il2cpp_codegen_static_fields_for(ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892_il2cpp_TypeInfo_var))->___m_ActiveColorAttachments;
|
|
int32_t L_3 = V_2;
|
|
NullCheck(L_2);
|
|
ArrayElementTypeCheck (L_2, NULL);
|
|
(L_2)->SetAt(static_cast<il2cpp_array_size_t>(L_3), (RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B*)NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:2143>
|
|
int32_t L_4 = V_2;
|
|
V_2 = ((int32_t)il2cpp_codegen_add(L_4, 1));
|
|
}
|
|
|
|
IL_0018:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:2143>
|
|
int32_t L_5 = V_2;
|
|
il2cpp_codegen_runtime_class_init_inline(ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892_il2cpp_TypeInfo_var);
|
|
RTHandleU5BU5D_tE4B403B060D159B839BF74E8B59F8DCD52CF97DF* L_6 = ((ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892_StaticFields*)il2cpp_codegen_static_fields_for(ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892_il2cpp_TypeInfo_var))->___m_ActiveColorAttachments;
|
|
NullCheck(L_6);
|
|
if ((((int32_t)L_5) < ((int32_t)((int32_t)(((RuntimeArray*)L_6)->max_length)))))
|
|
{
|
|
goto IL_000c;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:2145>
|
|
V_3 = 0;
|
|
goto IL_004d;
|
|
}
|
|
|
|
IL_0026:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:2146>
|
|
il2cpp_codegen_runtime_class_init_inline(ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892_il2cpp_TypeInfo_var);
|
|
RenderTargetIdentifierU5BU5D_t179798C153B7CE381B41C57863F98CB24023C4CE* L_7 = ((ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892_StaticFields*)il2cpp_codegen_static_fields_for(ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892_il2cpp_TypeInfo_var))->___m_ActiveColorAttachmentIDs;
|
|
int32_t L_8 = V_3;
|
|
RTHandleU5BU5D_tE4B403B060D159B839BF74E8B59F8DCD52CF97DF* L_9 = ((ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892_StaticFields*)il2cpp_codegen_static_fields_for(ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892_il2cpp_TypeInfo_var))->___m_ActiveColorAttachments;
|
|
int32_t L_10 = V_3;
|
|
NullCheck(L_9);
|
|
int32_t L_11 = L_10;
|
|
RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B* L_12 = (L_9)->GetAt(static_cast<il2cpp_array_size_t>(L_11));
|
|
RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B* L_13 = L_12;
|
|
if (L_13)
|
|
{
|
|
G_B6_0 = L_13;
|
|
G_B6_1 = L_8;
|
|
G_B6_2 = L_7;
|
|
goto IL_003f;
|
|
}
|
|
G_B5_0 = L_13;
|
|
G_B5_1 = L_8;
|
|
G_B5_2 = L_7;
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(RenderTargetIdentifier_tA528663AC6EB3911D8E91AA40F7070FA5455442B_il2cpp_TypeInfo_var);
|
|
RenderTargetIdentifier_tA528663AC6EB3911D8E91AA40F7070FA5455442B L_14;
|
|
L_14 = RenderTargetIdentifier_op_Implicit_m5D9E7FF7B325608E3C4A37BBB52FE728361E7324(0, NULL);
|
|
G_B7_0 = L_14;
|
|
G_B7_1 = G_B5_1;
|
|
G_B7_2 = G_B5_2;
|
|
goto IL_0044;
|
|
}
|
|
|
|
IL_003f:
|
|
{
|
|
NullCheck(G_B6_0);
|
|
RenderTargetIdentifier_tA528663AC6EB3911D8E91AA40F7070FA5455442B L_15;
|
|
L_15 = RTHandle_get_nameID_m30AF2567853494DB845D83A8B37D0FB523DA76E9_inline(G_B6_0, NULL);
|
|
G_B7_0 = L_15;
|
|
G_B7_1 = G_B6_1;
|
|
G_B7_2 = G_B6_2;
|
|
}
|
|
|
|
IL_0044:
|
|
{
|
|
NullCheck(G_B7_2);
|
|
(G_B7_2)->SetAt(static_cast<il2cpp_array_size_t>(G_B7_1), (RenderTargetIdentifier_tA528663AC6EB3911D8E91AA40F7070FA5455442B)G_B7_0);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:2145>
|
|
int32_t L_16 = V_3;
|
|
V_3 = ((int32_t)il2cpp_codegen_add(L_16, 1));
|
|
}
|
|
|
|
IL_004d:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:2145>
|
|
int32_t L_17 = V_3;
|
|
il2cpp_codegen_runtime_class_init_inline(ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892_il2cpp_TypeInfo_var);
|
|
RTHandleU5BU5D_tE4B403B060D159B839BF74E8B59F8DCD52CF97DF* L_18 = ((ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892_StaticFields*)il2cpp_codegen_static_fields_for(ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892_il2cpp_TypeInfo_var))->___m_ActiveColorAttachments;
|
|
NullCheck(L_18);
|
|
if ((((int32_t)L_17) < ((int32_t)((int32_t)(((RuntimeArray*)L_18)->max_length)))))
|
|
{
|
|
goto IL_0026;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:2148>
|
|
il2cpp_codegen_runtime_class_init_inline(ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892_il2cpp_TypeInfo_var);
|
|
RenderBufferStoreActionU5BU5D_tFEA8F5DD460573EA9F35FBEC5727D1804C5DCBF5* L_19 = ((ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892_StaticFields*)il2cpp_codegen_static_fields_for(ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892_il2cpp_TypeInfo_var))->___m_ActiveColorStoreActions;
|
|
NullCheck(L_19);
|
|
(L_19)->SetAt(static_cast<il2cpp_array_size_t>(0), (int32_t)0);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:2149>
|
|
((ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892_StaticFields*)il2cpp_codegen_static_fields_for(ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892_il2cpp_TypeInfo_var))->___m_ActiveDepthStoreAction = 0;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:2150>
|
|
V_4 = 1;
|
|
goto IL_0079;
|
|
}
|
|
|
|
IL_006a:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:2151>
|
|
il2cpp_codegen_runtime_class_init_inline(ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892_il2cpp_TypeInfo_var);
|
|
RenderBufferStoreActionU5BU5D_tFEA8F5DD460573EA9F35FBEC5727D1804C5DCBF5* L_20 = ((ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892_StaticFields*)il2cpp_codegen_static_fields_for(ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892_il2cpp_TypeInfo_var))->___m_ActiveColorStoreActions;
|
|
int32_t L_21 = V_4;
|
|
NullCheck(L_20);
|
|
(L_20)->SetAt(static_cast<il2cpp_array_size_t>(L_21), (int32_t)0);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:2150>
|
|
int32_t L_22 = V_4;
|
|
V_4 = ((int32_t)il2cpp_codegen_add(L_22, 1));
|
|
}
|
|
|
|
IL_0079:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:2150>
|
|
int32_t L_23 = V_4;
|
|
il2cpp_codegen_runtime_class_init_inline(ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892_il2cpp_TypeInfo_var);
|
|
RenderBufferStoreActionU5BU5D_tFEA8F5DD460573EA9F35FBEC5727D1804C5DCBF5* L_24 = ((ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892_StaticFields*)il2cpp_codegen_static_fields_for(ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892_il2cpp_TypeInfo_var))->___m_ActiveColorStoreActions;
|
|
NullCheck(L_24);
|
|
if ((((int32_t)L_23) < ((int32_t)((int32_t)(((RuntimeArray*)L_24)->max_length)))))
|
|
{
|
|
goto IL_006a;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:2153>
|
|
RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B* L_25 = ___2_depthAttachment;
|
|
il2cpp_codegen_runtime_class_init_inline(ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892_il2cpp_TypeInfo_var);
|
|
((ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892_StaticFields*)il2cpp_codegen_static_fields_for(ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892_il2cpp_TypeInfo_var))->___m_ActiveDepthAttachment = L_25;
|
|
Il2CppCodeGenWriteBarrier((void**)(&((ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892_StaticFields*)il2cpp_codegen_static_fields_for(ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892_il2cpp_TypeInfo_var))->___m_ActiveDepthAttachment), (void*)L_25);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:2155>
|
|
int32_t L_26 = ___3_clearFlag;
|
|
if (((int32_t)((int32_t)L_26&1)))
|
|
{
|
|
goto IL_0092;
|
|
}
|
|
}
|
|
{
|
|
G_B15_0 = 0;
|
|
goto IL_0093;
|
|
}
|
|
|
|
IL_0092:
|
|
{
|
|
G_B15_0 = 2;
|
|
}
|
|
|
|
IL_0093:
|
|
{
|
|
V_0 = G_B15_0;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:2157>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:2158>
|
|
int32_t L_27 = ___3_clearFlag;
|
|
if (((int32_t)((int32_t)L_27&2)))
|
|
{
|
|
goto IL_00a1;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_28 = ___3_clearFlag;
|
|
if (((int32_t)((int32_t)L_28&4)))
|
|
{
|
|
goto IL_00a1;
|
|
}
|
|
}
|
|
{
|
|
G_B19_0 = 0;
|
|
goto IL_00a2;
|
|
}
|
|
|
|
IL_00a1:
|
|
{
|
|
G_B19_0 = 2;
|
|
}
|
|
|
|
IL_00a2:
|
|
{
|
|
V_1 = G_B19_0;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:2161>
|
|
RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B* L_29 = ___1_colorAttachment;
|
|
NullCheck(L_29);
|
|
RenderTexture_tBA90C4C3AD9EECCFDDCC632D97C29FAB80D60D27* L_30;
|
|
L_30 = RTHandle_get_rt_m593F2799E2E6C97979D3B4CD9E992D305922BBE9_inline(L_29, NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
bool L_31;
|
|
L_31 = Object_op_Equality_mB6120F782D83091EF56A198FCEBCF066DB4A9605(L_30, (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C*)NULL, NULL);
|
|
if (!L_31)
|
|
{
|
|
goto IL_00e6;
|
|
}
|
|
}
|
|
{
|
|
RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B* L_32 = ___2_depthAttachment;
|
|
NullCheck(L_32);
|
|
RenderTexture_tBA90C4C3AD9EECCFDDCC632D97C29FAB80D60D27* L_33;
|
|
L_33 = RTHandle_get_rt_m593F2799E2E6C97979D3B4CD9E992D305922BBE9_inline(L_32, NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
bool L_34;
|
|
L_34 = Object_op_Equality_mB6120F782D83091EF56A198FCEBCF066DB4A9605(L_33, (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C*)NULL, NULL);
|
|
if (!L_34)
|
|
{
|
|
goto IL_00e6;
|
|
}
|
|
}
|
|
{
|
|
RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B* L_35 = ___2_depthAttachment;
|
|
NullCheck(L_35);
|
|
RenderTargetIdentifier_tA528663AC6EB3911D8E91AA40F7070FA5455442B L_36;
|
|
L_36 = RTHandle_get_nameID_m30AF2567853494DB845D83A8B37D0FB523DA76E9_inline(L_35, NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892_il2cpp_TypeInfo_var);
|
|
RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B* L_37 = ((ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892_StaticFields*)il2cpp_codegen_static_fields_for(ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892_il2cpp_TypeInfo_var))->___k_CameraTarget;
|
|
NullCheck(L_37);
|
|
RenderTargetIdentifier_tA528663AC6EB3911D8E91AA40F7070FA5455442B L_38;
|
|
L_38 = RTHandle_get_nameID_m30AF2567853494DB845D83A8B37D0FB523DA76E9_inline(L_37, NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(RenderTargetIdentifier_tA528663AC6EB3911D8E91AA40F7070FA5455442B_il2cpp_TypeInfo_var);
|
|
bool L_39;
|
|
L_39 = RenderTargetIdentifier_op_Equality_mD9FD6667F4C385F2379E9DEAAA8F91B7A1D50A1F(L_36, L_38, NULL);
|
|
if (!L_39)
|
|
{
|
|
goto IL_00e6;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:2162>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:2163>
|
|
CommandBuffer_tB56007DC84EF56296C325EC32DD12AC1E3DC91F7* L_40 = ___0_cmd;
|
|
RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B* L_41 = ___1_colorAttachment;
|
|
int32_t L_42 = V_0;
|
|
RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B* L_43 = ___1_colorAttachment;
|
|
int32_t L_44 = V_1;
|
|
int32_t L_45 = ___3_clearFlag;
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F L_46 = ___4_clearColor;
|
|
il2cpp_codegen_runtime_class_init_inline(ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892_il2cpp_TypeInfo_var);
|
|
ScriptableRenderer_SetRenderTarget_m40F88F3A4D8A461F95BF79E2D8BA10F2E1D277FC(L_40, L_41, L_42, 0, L_43, L_44, 0, L_45, L_46, NULL);
|
|
return;
|
|
}
|
|
|
|
IL_00e6:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:2165>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:2166>
|
|
CommandBuffer_tB56007DC84EF56296C325EC32DD12AC1E3DC91F7* L_47 = ___0_cmd;
|
|
RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B* L_48 = ___1_colorAttachment;
|
|
int32_t L_49 = V_0;
|
|
RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B* L_50 = ___2_depthAttachment;
|
|
int32_t L_51 = V_1;
|
|
int32_t L_52 = ___3_clearFlag;
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F L_53 = ___4_clearColor;
|
|
il2cpp_codegen_runtime_class_init_inline(ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892_il2cpp_TypeInfo_var);
|
|
ScriptableRenderer_SetRenderTarget_m40F88F3A4D8A461F95BF79E2D8BA10F2E1D277FC(L_47, L_48, L_49, 0, L_50, L_51, 0, L_52, L_53, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:2167>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 33434
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ScriptableRenderer_SetRenderTarget_m6A0935746EE31A98A2BEB866052B9A1F6302E123 (CommandBuffer_tB56007DC84EF56296C325EC32DD12AC1E3DC91F7* ___0_cmd, RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B* ___1_colorAttachment, RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B* ___2_depthAttachment, int32_t ___3_clearFlag, Color_tD001788D726C3A7F1379BEED0260B9591F440C1F ___4_clearColor, int32_t ___5_colorStoreAction, int32_t ___6_depthStoreAction, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RenderTargetIdentifier_tA528663AC6EB3911D8E91AA40F7070FA5455442B_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int32_t V_0 = 0;
|
|
int32_t V_1 = 0;
|
|
int32_t V_2 = 0;
|
|
int32_t V_3 = 0;
|
|
int32_t V_4 = 0;
|
|
RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B* G_B6_0 = NULL;
|
|
int32_t G_B6_1 = 0;
|
|
RenderTargetIdentifierU5BU5D_t179798C153B7CE381B41C57863F98CB24023C4CE* G_B6_2 = NULL;
|
|
RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B* G_B5_0 = NULL;
|
|
int32_t G_B5_1 = 0;
|
|
RenderTargetIdentifierU5BU5D_t179798C153B7CE381B41C57863F98CB24023C4CE* G_B5_2 = NULL;
|
|
RenderTargetIdentifier_tA528663AC6EB3911D8E91AA40F7070FA5455442B G_B7_0;
|
|
memset((&G_B7_0), 0, sizeof(G_B7_0));
|
|
int32_t G_B7_1 = 0;
|
|
RenderTargetIdentifierU5BU5D_t179798C153B7CE381B41C57863F98CB24023C4CE* G_B7_2 = NULL;
|
|
int32_t G_B15_0 = 0;
|
|
int32_t G_B18_0 = 0;
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:2172>
|
|
il2cpp_codegen_runtime_class_init_inline(ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892_il2cpp_TypeInfo_var);
|
|
RTHandleU5BU5D_tE4B403B060D159B839BF74E8B59F8DCD52CF97DF* L_0 = ((ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892_StaticFields*)il2cpp_codegen_static_fields_for(ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892_il2cpp_TypeInfo_var))->___m_ActiveColorAttachments;
|
|
RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B* L_1 = ___1_colorAttachment;
|
|
NullCheck(L_0);
|
|
ArrayElementTypeCheck (L_0, L_1);
|
|
(L_0)->SetAt(static_cast<il2cpp_array_size_t>(0), (RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B*)L_1);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:2173>
|
|
V_2 = 1;
|
|
goto IL_0018;
|
|
}
|
|
|
|
IL_000c:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:2174>
|
|
il2cpp_codegen_runtime_class_init_inline(ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892_il2cpp_TypeInfo_var);
|
|
RTHandleU5BU5D_tE4B403B060D159B839BF74E8B59F8DCD52CF97DF* L_2 = ((ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892_StaticFields*)il2cpp_codegen_static_fields_for(ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892_il2cpp_TypeInfo_var))->___m_ActiveColorAttachments;
|
|
int32_t L_3 = V_2;
|
|
NullCheck(L_2);
|
|
ArrayElementTypeCheck (L_2, NULL);
|
|
(L_2)->SetAt(static_cast<il2cpp_array_size_t>(L_3), (RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B*)NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:2173>
|
|
int32_t L_4 = V_2;
|
|
V_2 = ((int32_t)il2cpp_codegen_add(L_4, 1));
|
|
}
|
|
|
|
IL_0018:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:2173>
|
|
int32_t L_5 = V_2;
|
|
il2cpp_codegen_runtime_class_init_inline(ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892_il2cpp_TypeInfo_var);
|
|
RTHandleU5BU5D_tE4B403B060D159B839BF74E8B59F8DCD52CF97DF* L_6 = ((ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892_StaticFields*)il2cpp_codegen_static_fields_for(ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892_il2cpp_TypeInfo_var))->___m_ActiveColorAttachments;
|
|
NullCheck(L_6);
|
|
if ((((int32_t)L_5) < ((int32_t)((int32_t)(((RuntimeArray*)L_6)->max_length)))))
|
|
{
|
|
goto IL_000c;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:2175>
|
|
V_3 = 0;
|
|
goto IL_004d;
|
|
}
|
|
|
|
IL_0026:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:2176>
|
|
il2cpp_codegen_runtime_class_init_inline(ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892_il2cpp_TypeInfo_var);
|
|
RenderTargetIdentifierU5BU5D_t179798C153B7CE381B41C57863F98CB24023C4CE* L_7 = ((ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892_StaticFields*)il2cpp_codegen_static_fields_for(ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892_il2cpp_TypeInfo_var))->___m_ActiveColorAttachmentIDs;
|
|
int32_t L_8 = V_3;
|
|
RTHandleU5BU5D_tE4B403B060D159B839BF74E8B59F8DCD52CF97DF* L_9 = ((ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892_StaticFields*)il2cpp_codegen_static_fields_for(ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892_il2cpp_TypeInfo_var))->___m_ActiveColorAttachments;
|
|
int32_t L_10 = V_3;
|
|
NullCheck(L_9);
|
|
int32_t L_11 = L_10;
|
|
RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B* L_12 = (L_9)->GetAt(static_cast<il2cpp_array_size_t>(L_11));
|
|
RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B* L_13 = L_12;
|
|
if (L_13)
|
|
{
|
|
G_B6_0 = L_13;
|
|
G_B6_1 = L_8;
|
|
G_B6_2 = L_7;
|
|
goto IL_003f;
|
|
}
|
|
G_B5_0 = L_13;
|
|
G_B5_1 = L_8;
|
|
G_B5_2 = L_7;
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(RenderTargetIdentifier_tA528663AC6EB3911D8E91AA40F7070FA5455442B_il2cpp_TypeInfo_var);
|
|
RenderTargetIdentifier_tA528663AC6EB3911D8E91AA40F7070FA5455442B L_14;
|
|
L_14 = RenderTargetIdentifier_op_Implicit_m5D9E7FF7B325608E3C4A37BBB52FE728361E7324(0, NULL);
|
|
G_B7_0 = L_14;
|
|
G_B7_1 = G_B5_1;
|
|
G_B7_2 = G_B5_2;
|
|
goto IL_0044;
|
|
}
|
|
|
|
IL_003f:
|
|
{
|
|
NullCheck(G_B6_0);
|
|
RenderTargetIdentifier_tA528663AC6EB3911D8E91AA40F7070FA5455442B L_15;
|
|
L_15 = RTHandle_get_nameID_m30AF2567853494DB845D83A8B37D0FB523DA76E9_inline(G_B6_0, NULL);
|
|
G_B7_0 = L_15;
|
|
G_B7_1 = G_B6_1;
|
|
G_B7_2 = G_B6_2;
|
|
}
|
|
|
|
IL_0044:
|
|
{
|
|
NullCheck(G_B7_2);
|
|
(G_B7_2)->SetAt(static_cast<il2cpp_array_size_t>(G_B7_1), (RenderTargetIdentifier_tA528663AC6EB3911D8E91AA40F7070FA5455442B)G_B7_0);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:2175>
|
|
int32_t L_16 = V_3;
|
|
V_3 = ((int32_t)il2cpp_codegen_add(L_16, 1));
|
|
}
|
|
|
|
IL_004d:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:2175>
|
|
int32_t L_17 = V_3;
|
|
il2cpp_codegen_runtime_class_init_inline(ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892_il2cpp_TypeInfo_var);
|
|
RTHandleU5BU5D_tE4B403B060D159B839BF74E8B59F8DCD52CF97DF* L_18 = ((ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892_StaticFields*)il2cpp_codegen_static_fields_for(ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892_il2cpp_TypeInfo_var))->___m_ActiveColorAttachments;
|
|
NullCheck(L_18);
|
|
if ((((int32_t)L_17) < ((int32_t)((int32_t)(((RuntimeArray*)L_18)->max_length)))))
|
|
{
|
|
goto IL_0026;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:2178>
|
|
il2cpp_codegen_runtime_class_init_inline(ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892_il2cpp_TypeInfo_var);
|
|
RenderBufferStoreActionU5BU5D_tFEA8F5DD460573EA9F35FBEC5727D1804C5DCBF5* L_19 = ((ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892_StaticFields*)il2cpp_codegen_static_fields_for(ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892_il2cpp_TypeInfo_var))->___m_ActiveColorStoreActions;
|
|
int32_t L_20 = ___5_colorStoreAction;
|
|
NullCheck(L_19);
|
|
(L_19)->SetAt(static_cast<il2cpp_array_size_t>(0), (int32_t)L_20);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:2179>
|
|
int32_t L_21 = ___6_depthStoreAction;
|
|
((ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892_StaticFields*)il2cpp_codegen_static_fields_for(ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892_il2cpp_TypeInfo_var))->___m_ActiveDepthStoreAction = L_21;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:2180>
|
|
V_4 = 1;
|
|
goto IL_007b;
|
|
}
|
|
|
|
IL_006c:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:2181>
|
|
il2cpp_codegen_runtime_class_init_inline(ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892_il2cpp_TypeInfo_var);
|
|
RenderBufferStoreActionU5BU5D_tFEA8F5DD460573EA9F35FBEC5727D1804C5DCBF5* L_22 = ((ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892_StaticFields*)il2cpp_codegen_static_fields_for(ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892_il2cpp_TypeInfo_var))->___m_ActiveColorStoreActions;
|
|
int32_t L_23 = V_4;
|
|
NullCheck(L_22);
|
|
(L_22)->SetAt(static_cast<il2cpp_array_size_t>(L_23), (int32_t)0);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:2180>
|
|
int32_t L_24 = V_4;
|
|
V_4 = ((int32_t)il2cpp_codegen_add(L_24, 1));
|
|
}
|
|
|
|
IL_007b:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:2180>
|
|
int32_t L_25 = V_4;
|
|
il2cpp_codegen_runtime_class_init_inline(ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892_il2cpp_TypeInfo_var);
|
|
RenderBufferStoreActionU5BU5D_tFEA8F5DD460573EA9F35FBEC5727D1804C5DCBF5* L_26 = ((ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892_StaticFields*)il2cpp_codegen_static_fields_for(ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892_il2cpp_TypeInfo_var))->___m_ActiveColorStoreActions;
|
|
NullCheck(L_26);
|
|
if ((((int32_t)L_25) < ((int32_t)((int32_t)(((RuntimeArray*)L_26)->max_length)))))
|
|
{
|
|
goto IL_006c;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:2183>
|
|
RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B* L_27 = ___2_depthAttachment;
|
|
il2cpp_codegen_runtime_class_init_inline(ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892_il2cpp_TypeInfo_var);
|
|
((ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892_StaticFields*)il2cpp_codegen_static_fields_for(ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892_il2cpp_TypeInfo_var))->___m_ActiveDepthAttachment = L_27;
|
|
Il2CppCodeGenWriteBarrier((void**)(&((ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892_StaticFields*)il2cpp_codegen_static_fields_for(ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892_il2cpp_TypeInfo_var))->___m_ActiveDepthAttachment), (void*)L_27);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:2185>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:2186>
|
|
int32_t L_28 = ___3_clearFlag;
|
|
if (((int32_t)((int32_t)L_28&1)))
|
|
{
|
|
goto IL_0094;
|
|
}
|
|
}
|
|
{
|
|
G_B15_0 = 0;
|
|
goto IL_0095;
|
|
}
|
|
|
|
IL_0094:
|
|
{
|
|
G_B15_0 = 2;
|
|
}
|
|
|
|
IL_0095:
|
|
{
|
|
V_0 = G_B15_0;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:2188>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:2189>
|
|
int32_t L_29 = ___3_clearFlag;
|
|
if (((int32_t)((int32_t)L_29&2)))
|
|
{
|
|
goto IL_009e;
|
|
}
|
|
}
|
|
{
|
|
G_B18_0 = 0;
|
|
goto IL_009f;
|
|
}
|
|
|
|
IL_009e:
|
|
{
|
|
G_B18_0 = 2;
|
|
}
|
|
|
|
IL_009f:
|
|
{
|
|
V_1 = G_B18_0;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:2192>
|
|
il2cpp_codegen_runtime_class_init_inline(ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892_il2cpp_TypeInfo_var);
|
|
bool L_30 = ((ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892_StaticFields*)il2cpp_codegen_static_fields_for(ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892_il2cpp_TypeInfo_var))->___m_UseOptimizedStoreActions;
|
|
if (L_30)
|
|
{
|
|
goto IL_00b7;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:2194>
|
|
int32_t L_31 = ___5_colorStoreAction;
|
|
if ((((int32_t)L_31) == ((int32_t)2)))
|
|
{
|
|
goto IL_00af;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:2195>
|
|
___5_colorStoreAction = 0;
|
|
}
|
|
|
|
IL_00af:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:2196>
|
|
int32_t L_32 = ___6_depthStoreAction;
|
|
if ((((int32_t)L_32) == ((int32_t)2)))
|
|
{
|
|
goto IL_00b7;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:2197>
|
|
___6_depthStoreAction = 0;
|
|
}
|
|
|
|
IL_00b7:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:2201>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:2202>
|
|
CommandBuffer_tB56007DC84EF56296C325EC32DD12AC1E3DC91F7* L_33 = ___0_cmd;
|
|
RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B* L_34 = ___1_colorAttachment;
|
|
int32_t L_35 = V_0;
|
|
int32_t L_36 = ___5_colorStoreAction;
|
|
RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B* L_37 = ___2_depthAttachment;
|
|
int32_t L_38 = V_1;
|
|
int32_t L_39 = ___6_depthStoreAction;
|
|
int32_t L_40 = ___3_clearFlag;
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F L_41 = ___4_clearColor;
|
|
il2cpp_codegen_runtime_class_init_inline(ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892_il2cpp_TypeInfo_var);
|
|
ScriptableRenderer_SetRenderTarget_m40F88F3A4D8A461F95BF79E2D8BA10F2E1D277FC(L_33, L_34, L_35, L_36, L_37, L_38, L_39, L_40, L_41, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:2203>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 33435
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ScriptableRenderer_SetRenderTarget_m40F88F3A4D8A461F95BF79E2D8BA10F2E1D277FC (CommandBuffer_tB56007DC84EF56296C325EC32DD12AC1E3DC91F7* ___0_cmd, RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B* ___1_colorAttachment, int32_t ___2_colorLoadAction, int32_t ___3_colorStoreAction, RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B* ___4_depthAttachment, int32_t ___5_depthLoadAction, int32_t ___6_depthStoreAction, int32_t ___7_clearFlags, Color_tD001788D726C3A7F1379BEED0260B9591F440C1F ___8_clearColor, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CoreUtils_tEE57AB2B0DAE9561F4954B08800A8F957850B038_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RenderTargetIdentifier_tA528663AC6EB3911D8E91AA40F7070FA5455442B_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:2217>
|
|
RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B* L_0 = ___4_depthAttachment;
|
|
NullCheck(L_0);
|
|
RenderTargetIdentifier_tA528663AC6EB3911D8E91AA40F7070FA5455442B L_1;
|
|
L_1 = RTHandle_get_nameID_m30AF2567853494DB845D83A8B37D0FB523DA76E9_inline(L_0, NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(RenderTargetIdentifier_tA528663AC6EB3911D8E91AA40F7070FA5455442B_il2cpp_TypeInfo_var);
|
|
RenderTargetIdentifier_tA528663AC6EB3911D8E91AA40F7070FA5455442B L_2;
|
|
L_2 = RenderTargetIdentifier_op_Implicit_m3E2366E36F14173DBEED75591978EBE1F01A1325(2, NULL);
|
|
bool L_3;
|
|
L_3 = RenderTargetIdentifier_op_Equality_mD9FD6667F4C385F2379E9DEAAA8F91B7A1D50A1F(L_1, L_2, NULL);
|
|
if (!L_3)
|
|
{
|
|
goto IL_002a;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:2218>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:2219>
|
|
CommandBuffer_tB56007DC84EF56296C325EC32DD12AC1E3DC91F7* L_4 = ___0_cmd;
|
|
RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B* L_5 = ___1_colorAttachment;
|
|
int32_t L_6 = ___2_colorLoadAction;
|
|
int32_t L_7 = ___3_colorStoreAction;
|
|
RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B* L_8 = ___1_colorAttachment;
|
|
int32_t L_9 = ___5_depthLoadAction;
|
|
int32_t L_10 = ___6_depthStoreAction;
|
|
int32_t L_11 = ___7_clearFlags;
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F L_12 = ___8_clearColor;
|
|
il2cpp_codegen_runtime_class_init_inline(CoreUtils_tEE57AB2B0DAE9561F4954B08800A8F957850B038_il2cpp_TypeInfo_var);
|
|
CoreUtils_SetRenderTarget_m838FAF1D1208455517D825BB6BB036FC3F5FC0B6(L_4, L_5, L_6, L_7, L_8, L_9, L_10, L_11, L_12, 0, (-1), (-1), NULL);
|
|
return;
|
|
}
|
|
|
|
IL_002a:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:2221>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:2222>
|
|
CommandBuffer_tB56007DC84EF56296C325EC32DD12AC1E3DC91F7* L_13 = ___0_cmd;
|
|
RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B* L_14 = ___1_colorAttachment;
|
|
int32_t L_15 = ___2_colorLoadAction;
|
|
int32_t L_16 = ___3_colorStoreAction;
|
|
RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B* L_17 = ___4_depthAttachment;
|
|
int32_t L_18 = ___5_depthLoadAction;
|
|
int32_t L_19 = ___6_depthStoreAction;
|
|
int32_t L_20 = ___7_clearFlags;
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F L_21 = ___8_clearColor;
|
|
il2cpp_codegen_runtime_class_init_inline(CoreUtils_tEE57AB2B0DAE9561F4954B08800A8F957850B038_il2cpp_TypeInfo_var);
|
|
CoreUtils_SetRenderTarget_m838FAF1D1208455517D825BB6BB036FC3F5FC0B6(L_13, L_14, L_15, L_16, L_17, L_18, L_19, L_20, L_21, 0, (-1), (-1), NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:2223>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 33436
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ScriptableRenderer_SetRenderTarget_mFC51724D0976261B84FA758B2174DC3DCE700F61 (CommandBuffer_tB56007DC84EF56296C325EC32DD12AC1E3DC91F7* ___0_cmd, RTHandleU5BU5D_tE4B403B060D159B839BF74E8B59F8DCD52CF97DF* ___1_colorAttachments, RenderTargetIdentifierU5BU5D_t179798C153B7CE381B41C57863F98CB24023C4CE* ___2_colorAttachmentIDs, RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B* ___3_depthAttachment, int32_t ___4_clearFlag, Color_tD001788D726C3A7F1379BEED0260B9591F440C1F ___5_clearColor, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CoreUtils_tEE57AB2B0DAE9561F4954B08800A8F957850B038_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:2228>
|
|
RTHandleU5BU5D_tE4B403B060D159B839BF74E8B59F8DCD52CF97DF* L_0 = ___1_colorAttachments;
|
|
il2cpp_codegen_runtime_class_init_inline(ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892_il2cpp_TypeInfo_var);
|
|
((ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892_StaticFields*)il2cpp_codegen_static_fields_for(ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892_il2cpp_TypeInfo_var))->___m_ActiveColorAttachments = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&((ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892_StaticFields*)il2cpp_codegen_static_fields_for(ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892_il2cpp_TypeInfo_var))->___m_ActiveColorAttachments), (void*)L_0);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:2229>
|
|
RenderTargetIdentifierU5BU5D_t179798C153B7CE381B41C57863F98CB24023C4CE* L_1 = ___2_colorAttachmentIDs;
|
|
((ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892_StaticFields*)il2cpp_codegen_static_fields_for(ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892_il2cpp_TypeInfo_var))->___m_ActiveColorAttachmentIDs = L_1;
|
|
Il2CppCodeGenWriteBarrier((void**)(&((ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892_StaticFields*)il2cpp_codegen_static_fields_for(ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892_il2cpp_TypeInfo_var))->___m_ActiveColorAttachmentIDs), (void*)L_1);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:2230>
|
|
RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B* L_2 = ___3_depthAttachment;
|
|
((ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892_StaticFields*)il2cpp_codegen_static_fields_for(ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892_il2cpp_TypeInfo_var))->___m_ActiveDepthAttachment = L_2;
|
|
Il2CppCodeGenWriteBarrier((void**)(&((ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892_StaticFields*)il2cpp_codegen_static_fields_for(ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892_il2cpp_TypeInfo_var))->___m_ActiveDepthAttachment), (void*)L_2);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:2232>
|
|
CommandBuffer_tB56007DC84EF56296C325EC32DD12AC1E3DC91F7* L_3 = ___0_cmd;
|
|
RenderTargetIdentifierU5BU5D_t179798C153B7CE381B41C57863F98CB24023C4CE* L_4 = ((ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892_StaticFields*)il2cpp_codegen_static_fields_for(ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892_il2cpp_TypeInfo_var))->___m_ActiveColorAttachmentIDs;
|
|
RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B* L_5 = ___3_depthAttachment;
|
|
int32_t L_6 = ___4_clearFlag;
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F L_7 = ___5_clearColor;
|
|
il2cpp_codegen_runtime_class_init_inline(CoreUtils_tEE57AB2B0DAE9561F4954B08800A8F957850B038_il2cpp_TypeInfo_var);
|
|
CoreUtils_SetRenderTarget_mCC0E54E14524A8EF107392DC2C57414535C6550B(L_3, L_4, L_5, L_6, L_7, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:2233>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 33437
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ScriptableRenderer_SwapColorBuffer_mCFE9476959D17BF94A0D69D2F0A3FE2F1F894EA3 (ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892* __this, CommandBuffer_tB56007DC84EF56296C325EC32DD12AC1E3DC91F7* ___0_cmd, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:2235>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 33438
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ScriptableRenderer_EnableSwapBufferMSAA_m629F76C6E55B1CDADDB6DFDFEE6219C30966305E (ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892* __this, bool ___0_enable, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:2236>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 33439
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ScriptableRenderer_DrawGizmos_m3AA8F1556C4D76BF9534C8C13A21C429330878E6 (ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892* __this, ScriptableRenderContext_t5AB09B3602BEB456E0DC3D53926D3A3BDAF08E36 ___0_context, Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184* ___1_camera, int32_t ___2_gizmoSubset, RenderingData_tAAA01190551D6D5954314E3E1E85B58DD45EED71* ___3_renderingData, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:2257>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 33440
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ScriptableRenderer_DrawWireOverlay_m90D50A8F5F39BDB246BA60713165C101D8B42B08 (ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892* __this, ScriptableRenderContext_t5AB09B3602BEB456E0DC3D53926D3A3BDAF08E36 ___0_context, Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184* ___1_camera, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ScriptableRenderContext_t5AB09B3602BEB456E0DC3D53926D3A3BDAF08E36_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:2262>
|
|
Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184* L_0 = ___1_camera;
|
|
il2cpp_codegen_runtime_class_init_inline(ScriptableRenderContext_t5AB09B3602BEB456E0DC3D53926D3A3BDAF08E36_il2cpp_TypeInfo_var);
|
|
ScriptableRenderContext_DrawWireOverlay_m5FBA5BFEF35D1499E023EFFF04D07B98CB05FDE8((&___0_context), L_0, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:2263>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 33441
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ScriptableRenderer_InternalStartRendering_m98626DB2266D35368E0F6F0F94CBBCAEB00E24D1 (ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892* __this, ScriptableRenderContext_t5AB09B3602BEB456E0DC3D53926D3A3BDAF08E36 ___0_context, RenderingData_tAAA01190551D6D5954314E3E1E85B58DD45EED71* ___1_renderingData, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Count_mE6D3D9D20C29AB0625389FEF206BBFF202CD5293_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Item_mBC42042D4082F4C6237FEA3435D58D570436268F_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Profiling_t1148A935DE86EC9E67DA54238721B4178A744AD3_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ScriptableRenderContext_t5AB09B3602BEB456E0DC3D53926D3A3BDAF08E36_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
ProfilingScope_t57898BA31E8EF8F083EF84E0DA2737AC61CBC5BD V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
int32_t V_1 = 0;
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:2267>
|
|
il2cpp_codegen_runtime_class_init_inline(Profiling_t1148A935DE86EC9E67DA54238721B4178A744AD3_il2cpp_TypeInfo_var);
|
|
ProfilingSampler_t420D4672EDB44E0EF980B31ADFD9E5747200FECE* L_0 = ((Profiling_t1148A935DE86EC9E67DA54238721B4178A744AD3_StaticFields*)il2cpp_codegen_static_fields_for(Profiling_t1148A935DE86EC9E67DA54238721B4178A744AD3_il2cpp_TypeInfo_var))->___internalStartRendering;
|
|
ProfilingScope__ctor_m4B73587A2295443A73B64DDD3D484D8EAECC0D65((&V_0), L_0, NULL);
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_003d:
|
|
{
|
|
ProfilingScope_Dispose_m4231A2ACA1F8E345BB0078310A9F7601704C8BE4((&V_0), NULL);
|
|
return;
|
|
}
|
|
});
|
|
try
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:2269>
|
|
V_1 = 0;
|
|
goto IL_002d_1;
|
|
}
|
|
|
|
IL_0010_1:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:2273>
|
|
List_1_t2E485E650BF1E41358CE56A69323E183C5A89CB6* L_1 = __this->___m_ActiveRenderPassQueue;
|
|
int32_t L_2 = V_1;
|
|
NullCheck(L_1);
|
|
ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* L_3;
|
|
L_3 = List_1_get_Item_mBC42042D4082F4C6237FEA3435D58D570436268F(L_1, L_2, List_1_get_Item_mBC42042D4082F4C6237FEA3435D58D570436268F_RuntimeMethod_var);
|
|
RenderingData_tAAA01190551D6D5954314E3E1E85B58DD45EED71* L_4 = ___1_renderingData;
|
|
CommandBuffer_tB56007DC84EF56296C325EC32DD12AC1E3DC91F7** L_5;
|
|
L_5 = RenderingData_get_commandBuffer_m747CD6ABF19DD5BB05F8231CC84A9922D9DC080A(L_4, NULL);
|
|
CommandBuffer_tB56007DC84EF56296C325EC32DD12AC1E3DC91F7* L_6 = *((CommandBuffer_tB56007DC84EF56296C325EC32DD12AC1E3DC91F7**)L_5);
|
|
RenderingData_tAAA01190551D6D5954314E3E1E85B58DD45EED71* L_7 = ___1_renderingData;
|
|
NullCheck(L_3);
|
|
VirtualActionInvoker2< CommandBuffer_tB56007DC84EF56296C325EC32DD12AC1E3DC91F7*, RenderingData_tAAA01190551D6D5954314E3E1E85B58DD45EED71* >::Invoke(6, L_3, L_6, L_7);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:2269>
|
|
int32_t L_8 = V_1;
|
|
V_1 = ((int32_t)il2cpp_codegen_add(L_8, 1));
|
|
}
|
|
|
|
IL_002d_1:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:2269>
|
|
int32_t L_9 = V_1;
|
|
List_1_t2E485E650BF1E41358CE56A69323E183C5A89CB6* L_10 = __this->___m_ActiveRenderPassQueue;
|
|
NullCheck(L_10);
|
|
int32_t L_11;
|
|
L_11 = List_1_get_Count_mE6D3D9D20C29AB0625389FEF206BBFF202CD5293_inline(L_10, List_1_get_Count_mE6D3D9D20C29AB0625389FEF206BBFF202CD5293_RuntimeMethod_var);
|
|
if ((((int32_t)L_9) < ((int32_t)L_11)))
|
|
{
|
|
goto IL_0010_1;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:2276>
|
|
goto IL_004b;
|
|
}
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_004b:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:2278>
|
|
RenderingData_tAAA01190551D6D5954314E3E1E85B58DD45EED71* L_12 = ___1_renderingData;
|
|
CommandBuffer_tB56007DC84EF56296C325EC32DD12AC1E3DC91F7** L_13;
|
|
L_13 = RenderingData_get_commandBuffer_m747CD6ABF19DD5BB05F8231CC84A9922D9DC080A(L_12, NULL);
|
|
CommandBuffer_tB56007DC84EF56296C325EC32DD12AC1E3DC91F7* L_14 = *((CommandBuffer_tB56007DC84EF56296C325EC32DD12AC1E3DC91F7**)L_13);
|
|
il2cpp_codegen_runtime_class_init_inline(ScriptableRenderContext_t5AB09B3602BEB456E0DC3D53926D3A3BDAF08E36_il2cpp_TypeInfo_var);
|
|
ScriptableRenderContext_ExecuteCommandBuffer_mBAE37DFC699B7167A6E2C59012066C44A31E9896((&___0_context), L_14, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:2279>
|
|
RenderingData_tAAA01190551D6D5954314E3E1E85B58DD45EED71* L_15 = ___1_renderingData;
|
|
CommandBuffer_tB56007DC84EF56296C325EC32DD12AC1E3DC91F7** L_16;
|
|
L_16 = RenderingData_get_commandBuffer_m747CD6ABF19DD5BB05F8231CC84A9922D9DC080A(L_15, NULL);
|
|
CommandBuffer_tB56007DC84EF56296C325EC32DD12AC1E3DC91F7* L_17 = *((CommandBuffer_tB56007DC84EF56296C325EC32DD12AC1E3DC91F7**)L_16);
|
|
NullCheck(L_17);
|
|
CommandBuffer_Clear_m4E1272BD1A0C162C9C26434E115279F42FA557C7(L_17, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:2280>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 33442
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ScriptableRenderer_InternalFinishRenderingCommon_mFE9C1F42371A0829FB616D7F3518712724E71F03 (ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892* __this, CommandBuffer_tB56007DC84EF56296C325EC32DD12AC1E3DC91F7* ___0_cmd, bool ___1_resolveFinalTarget, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Clear_m465CCAF440EF34D44065E6C2BE1D68215EAD505E_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Count_mE6D3D9D20C29AB0625389FEF206BBFF202CD5293_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Item_mBC42042D4082F4C6237FEA3435D58D570436268F_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Profiling_t1148A935DE86EC9E67DA54238721B4178A744AD3_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
ProfilingScope_t57898BA31E8EF8F083EF84E0DA2737AC61CBC5BD V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
int32_t V_1 = 0;
|
|
int32_t V_2 = 0;
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:2285>
|
|
il2cpp_codegen_runtime_class_init_inline(Profiling_t1148A935DE86EC9E67DA54238721B4178A744AD3_il2cpp_TypeInfo_var);
|
|
ProfilingSampler_t420D4672EDB44E0EF980B31ADFD9E5747200FECE* L_0 = ((Profiling_t1148A935DE86EC9E67DA54238721B4178A744AD3_StaticFields*)il2cpp_codegen_static_fields_for(Profiling_t1148A935DE86EC9E67DA54238721B4178A744AD3_il2cpp_TypeInfo_var))->___internalFinishRenderingCommon;
|
|
ProfilingScope__ctor_m4B73587A2295443A73B64DDD3D484D8EAECC0D65((&V_0), L_0, NULL);
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_007a:
|
|
{
|
|
ProfilingScope_Dispose_m4231A2ACA1F8E345BB0078310A9F7601704C8BE4((&V_0), NULL);
|
|
return;
|
|
}
|
|
});
|
|
try
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:2287>
|
|
V_1 = 0;
|
|
goto IL_0026_1;
|
|
}
|
|
|
|
IL_0010_1:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:2288>
|
|
List_1_t2E485E650BF1E41358CE56A69323E183C5A89CB6* L_1 = __this->___m_ActiveRenderPassQueue;
|
|
int32_t L_2 = V_1;
|
|
NullCheck(L_1);
|
|
ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* L_3;
|
|
L_3 = List_1_get_Item_mBC42042D4082F4C6237FEA3435D58D570436268F(L_1, L_2, List_1_get_Item_mBC42042D4082F4C6237FEA3435D58D570436268F_RuntimeMethod_var);
|
|
CommandBuffer_tB56007DC84EF56296C325EC32DD12AC1E3DC91F7* L_4 = ___0_cmd;
|
|
NullCheck(L_3);
|
|
VirtualActionInvoker1< CommandBuffer_tB56007DC84EF56296C325EC32DD12AC1E3DC91F7* >::Invoke(5, L_3, L_4);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:2287>
|
|
int32_t L_5 = V_1;
|
|
V_1 = ((int32_t)il2cpp_codegen_add(L_5, 1));
|
|
}
|
|
|
|
IL_0026_1:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:2287>
|
|
int32_t L_6 = V_1;
|
|
List_1_t2E485E650BF1E41358CE56A69323E183C5A89CB6* L_7 = __this->___m_ActiveRenderPassQueue;
|
|
NullCheck(L_7);
|
|
int32_t L_8;
|
|
L_8 = List_1_get_Count_mE6D3D9D20C29AB0625389FEF206BBFF202CD5293_inline(L_7, List_1_get_Count_mE6D3D9D20C29AB0625389FEF206BBFF202CD5293_RuntimeMethod_var);
|
|
if ((((int32_t)L_6) < ((int32_t)L_8)))
|
|
{
|
|
goto IL_0010_1;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:2291>
|
|
bool L_9 = ___1_resolveFinalTarget;
|
|
if (!L_9)
|
|
{
|
|
goto IL_006d_1;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:2293>
|
|
V_2 = 0;
|
|
goto IL_0051_1;
|
|
}
|
|
|
|
IL_003b_1:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:2297>
|
|
List_1_t2E485E650BF1E41358CE56A69323E183C5A89CB6* L_10 = __this->___m_ActiveRenderPassQueue;
|
|
int32_t L_11 = V_2;
|
|
NullCheck(L_10);
|
|
ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* L_12;
|
|
L_12 = List_1_get_Item_mBC42042D4082F4C6237FEA3435D58D570436268F(L_10, L_11, List_1_get_Item_mBC42042D4082F4C6237FEA3435D58D570436268F_RuntimeMethod_var);
|
|
CommandBuffer_tB56007DC84EF56296C325EC32DD12AC1E3DC91F7* L_13 = ___0_cmd;
|
|
NullCheck(L_12);
|
|
VirtualActionInvoker1< CommandBuffer_tB56007DC84EF56296C325EC32DD12AC1E3DC91F7* >::Invoke(9, L_12, L_13);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:2293>
|
|
int32_t L_14 = V_2;
|
|
V_2 = ((int32_t)il2cpp_codegen_add(L_14, 1));
|
|
}
|
|
|
|
IL_0051_1:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:2293>
|
|
int32_t L_15 = V_2;
|
|
List_1_t2E485E650BF1E41358CE56A69323E183C5A89CB6* L_16 = __this->___m_ActiveRenderPassQueue;
|
|
NullCheck(L_16);
|
|
int32_t L_17;
|
|
L_17 = List_1_get_Count_mE6D3D9D20C29AB0625389FEF206BBFF202CD5293_inline(L_16, List_1_get_Count_mE6D3D9D20C29AB0625389FEF206BBFF202CD5293_RuntimeMethod_var);
|
|
if ((((int32_t)L_15) < ((int32_t)L_17)))
|
|
{
|
|
goto IL_003b_1;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:2301>
|
|
CommandBuffer_tB56007DC84EF56296C325EC32DD12AC1E3DC91F7* L_18 = ___0_cmd;
|
|
VirtualActionInvoker1< CommandBuffer_tB56007DC84EF56296C325EC32DD12AC1E3DC91F7* >::Invoke(16, __this, L_18);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:2304>
|
|
__this->___m_IsPipelineExecuting = (bool)0;
|
|
}
|
|
|
|
IL_006d_1:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:2306>
|
|
List_1_t2E485E650BF1E41358CE56A69323E183C5A89CB6* L_19 = __this->___m_ActiveRenderPassQueue;
|
|
NullCheck(L_19);
|
|
List_1_Clear_m465CCAF440EF34D44065E6C2BE1D68215EAD505E_inline(L_19, List_1_Clear_m465CCAF440EF34D44065E6C2BE1D68215EAD505E_RuntimeMethod_var);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:2307>
|
|
goto IL_0088;
|
|
}
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_0088:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:2308>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 33443
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ScriptableRenderer_InternalFinishRenderingExecute_mC02B872221DD717D47492BAB36FF5C2ADB16D768 (ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892* __this, ScriptableRenderContext_t5AB09B3602BEB456E0DC3D53926D3A3BDAF08E36 ___0_context, CommandBuffer_tB56007DC84EF56296C325EC32DD12AC1E3DC91F7* ___1_cmd, bool ___2_resolveFinalTarget, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ScriptableRenderContext_t5AB09B3602BEB456E0DC3D53926D3A3BDAF08E36_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:2313>
|
|
CommandBuffer_tB56007DC84EF56296C325EC32DD12AC1E3DC91F7* L_0 = ___1_cmd;
|
|
bool L_1 = ___2_resolveFinalTarget;
|
|
ScriptableRenderer_InternalFinishRenderingCommon_mFE9C1F42371A0829FB616D7F3518712724E71F03(__this, L_0, L_1, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:2315>
|
|
ScriptableRenderer_ResetNativeRenderPassFrameData_m5F97E74C153E46C6DC32BF2E0A3F468230DB4C5A(__this, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:2317>
|
|
CommandBuffer_tB56007DC84EF56296C325EC32DD12AC1E3DC91F7* L_2 = ___1_cmd;
|
|
il2cpp_codegen_runtime_class_init_inline(ScriptableRenderContext_t5AB09B3602BEB456E0DC3D53926D3A3BDAF08E36_il2cpp_TypeInfo_var);
|
|
ScriptableRenderContext_ExecuteCommandBuffer_mBAE37DFC699B7167A6E2C59012066C44A31E9896((&___0_context), L_2, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:2318>
|
|
CommandBuffer_tB56007DC84EF56296C325EC32DD12AC1E3DC91F7* L_3 = ___1_cmd;
|
|
NullCheck(L_3);
|
|
CommandBuffer_Clear_m4E1272BD1A0C162C9C26434E115279F42FA557C7(L_3, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:2319>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 33444
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ScriptableRenderer_AdjustAndGetScreenMSAASamples_m3E8DC308499628A639CC423F1EC7DD15605015FF (ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892* __this, RenderGraph_t73ECE03B3CA3D0D17F1448D64AE020E81592AA1E* ___0_renderGraph, bool ___1_useIntermediateColorTarget, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Application_tDB03BE91CDF0ACA614A5E0B67CFB77C44EB19B21_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UniversalRenderPipeline_t54B4737DC500C08628C5BE283D8C583C14DED98F_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int32_t G_B6_0 = 0;
|
|
int32_t G_B11_0 = 0;
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:2324>
|
|
bool L_0;
|
|
L_0 = SystemInfo_get_supportsMultisampledBackBuffer_mF41BBAB52D5EFC925D4651F07DE1F74AD2BA71F7(NULL);
|
|
if (L_0)
|
|
{
|
|
goto IL_0009;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:2324>
|
|
return 1;
|
|
}
|
|
|
|
IL_0009:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:2329>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:2330>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:2331>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:2332>
|
|
il2cpp_codegen_runtime_class_init_inline(UniversalRenderPipeline_t54B4737DC500C08628C5BE283D8C583C14DED98F_il2cpp_TypeInfo_var);
|
|
bool L_1;
|
|
L_1 = UniversalRenderPipeline_get_canOptimizeScreenMSAASamples_mCC0EEDA2FBA9A3A609B5333AD144C75DDE84B695_inline(NULL);
|
|
bool L_2 = ___1_useIntermediateColorTarget;
|
|
if (!((int32_t)((int32_t)L_1&(int32_t)L_2)))
|
|
{
|
|
goto IL_0024;
|
|
}
|
|
}
|
|
{
|
|
RenderGraph_t73ECE03B3CA3D0D17F1448D64AE020E81592AA1E* L_3 = ___0_renderGraph;
|
|
NullCheck(L_3);
|
|
bool L_4;
|
|
L_4 = RenderGraph_get_nativeRenderPassesEnabled_m0A6331F029257ABF0232FA1C278E733B097A812D_inline(L_3, NULL);
|
|
if (!L_4)
|
|
{
|
|
goto IL_0024;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_5;
|
|
L_5 = Screen_get_msaaSamples_m3DD469BD1B150F0EF5B96BA0B1BA990DB38F3DD4(NULL);
|
|
G_B6_0 = ((((int32_t)L_5) > ((int32_t)1))? 1 : 0);
|
|
goto IL_0025;
|
|
}
|
|
|
|
IL_0024:
|
|
{
|
|
G_B6_0 = 0;
|
|
}
|
|
|
|
IL_0025:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:2334>
|
|
if (!G_B6_0)
|
|
{
|
|
goto IL_002d;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:2336>
|
|
Screen_SetMSAASamples_m03CA1BD4B08DE6D6A67D69C232D5DF1174274744(1, NULL);
|
|
}
|
|
|
|
IL_002d:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:2340>
|
|
il2cpp_codegen_runtime_class_init_inline(Application_tDB03BE91CDF0ACA614A5E0B67CFB77C44EB19B21_il2cpp_TypeInfo_var);
|
|
int32_t L_6;
|
|
L_6 = Application_get_platform_m59EF7D6155D18891B24767F83F388160B1FF2138(NULL);
|
|
if ((((int32_t)L_6) == ((int32_t)1)))
|
|
{
|
|
goto IL_003f;
|
|
}
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(Application_tDB03BE91CDF0ACA614A5E0B67CFB77C44EB19B21_il2cpp_TypeInfo_var);
|
|
int32_t L_7;
|
|
L_7 = Application_get_platform_m59EF7D6155D18891B24767F83F388160B1FF2138(NULL);
|
|
G_B11_0 = ((((int32_t)L_7) == ((int32_t)8))? 1 : 0);
|
|
goto IL_0040;
|
|
}
|
|
|
|
IL_003f:
|
|
{
|
|
G_B11_0 = 1;
|
|
}
|
|
|
|
IL_0040:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:2342>
|
|
if (G_B11_0)
|
|
{
|
|
goto IL_004e;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_8;
|
|
L_8 = Screen_get_msaaSamples_m3DD469BD1B150F0EF5B96BA0B1BA990DB38F3DD4(NULL);
|
|
int32_t L_9;
|
|
L_9 = Mathf_Max_m7FA442918DE37E3A00106D1F2E789D65829792B8_inline(L_8, 1, NULL);
|
|
return L_9;
|
|
}
|
|
|
|
IL_004e:
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(UniversalRenderPipeline_t54B4737DC500C08628C5BE283D8C583C14DED98F_il2cpp_TypeInfo_var);
|
|
int32_t L_10;
|
|
L_10 = UniversalRenderPipeline_get_startFrameScreenMSAASamples_m792250C7C4608F91083A8C270ECEA9C67CE7E041_inline(NULL);
|
|
int32_t L_11;
|
|
L_11 = Mathf_Max_m7FA442918DE37E3A00106D1F2E789D65829792B8_inline(L_10, 1, NULL);
|
|
return L_11;
|
|
}
|
|
}
|
|
// Method Definition Index: 33445
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ScriptableRenderer_SortStable_m5266EFB9F8D83E6ABFF9D788588E5050FC3503B3 (List_1_t2E485E650BF1E41358CE56A69323E183C5A89CB6* ___0_list, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Count_mE6D3D9D20C29AB0625389FEF206BBFF202CD5293_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Item_mBC42042D4082F4C6237FEA3435D58D570436268F_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_set_Item_m87B2E8BC263F70F16FEADB6B4278F1DD9A6765FF_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int32_t V_0 = 0;
|
|
int32_t V_1 = 0;
|
|
ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* V_2 = NULL;
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:2348>
|
|
V_1 = 1;
|
|
goto IL_0047;
|
|
}
|
|
|
|
IL_0004:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:2350>
|
|
List_1_t2E485E650BF1E41358CE56A69323E183C5A89CB6* L_0 = ___0_list;
|
|
int32_t L_1 = V_1;
|
|
NullCheck(L_0);
|
|
ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* L_2;
|
|
L_2 = List_1_get_Item_mBC42042D4082F4C6237FEA3435D58D570436268F(L_0, L_1, List_1_get_Item_mBC42042D4082F4C6237FEA3435D58D570436268F_RuntimeMethod_var);
|
|
V_2 = L_2;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:2352>
|
|
int32_t L_3 = V_1;
|
|
V_0 = ((int32_t)il2cpp_codegen_subtract(L_3, 1));
|
|
goto IL_0026;
|
|
}
|
|
|
|
IL_0012:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:2354>
|
|
List_1_t2E485E650BF1E41358CE56A69323E183C5A89CB6* L_4 = ___0_list;
|
|
int32_t L_5 = V_0;
|
|
List_1_t2E485E650BF1E41358CE56A69323E183C5A89CB6* L_6 = ___0_list;
|
|
int32_t L_7 = V_0;
|
|
NullCheck(L_6);
|
|
ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* L_8;
|
|
L_8 = List_1_get_Item_mBC42042D4082F4C6237FEA3435D58D570436268F(L_6, L_7, List_1_get_Item_mBC42042D4082F4C6237FEA3435D58D570436268F_RuntimeMethod_var);
|
|
NullCheck(L_4);
|
|
List_1_set_Item_m87B2E8BC263F70F16FEADB6B4278F1DD9A6765FF(L_4, ((int32_t)il2cpp_codegen_add(L_5, 1)), L_8, List_1_set_Item_m87B2E8BC263F70F16FEADB6B4278F1DD9A6765FF_RuntimeMethod_var);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:2353>
|
|
int32_t L_9 = V_0;
|
|
V_0 = ((int32_t)il2cpp_codegen_subtract(L_9, 1));
|
|
}
|
|
|
|
IL_0026:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:2353>
|
|
int32_t L_10 = V_0;
|
|
if ((((int32_t)L_10) < ((int32_t)0)))
|
|
{
|
|
goto IL_0039;
|
|
}
|
|
}
|
|
{
|
|
ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* L_11 = V_2;
|
|
List_1_t2E485E650BF1E41358CE56A69323E183C5A89CB6* L_12 = ___0_list;
|
|
int32_t L_13 = V_0;
|
|
NullCheck(L_12);
|
|
ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* L_14;
|
|
L_14 = List_1_get_Item_mBC42042D4082F4C6237FEA3435D58D570436268F(L_12, L_13, List_1_get_Item_mBC42042D4082F4C6237FEA3435D58D570436268F_RuntimeMethod_var);
|
|
il2cpp_codegen_runtime_class_init_inline(ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0_il2cpp_TypeInfo_var);
|
|
bool L_15;
|
|
L_15 = ScriptableRenderPass_op_LessThan_m966D3E63781FD503FE98E73D49902B67294BA1C4(L_11, L_14, NULL);
|
|
if (L_15)
|
|
{
|
|
goto IL_0012;
|
|
}
|
|
}
|
|
|
|
IL_0039:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:2356>
|
|
List_1_t2E485E650BF1E41358CE56A69323E183C5A89CB6* L_16 = ___0_list;
|
|
int32_t L_17 = V_0;
|
|
ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* L_18 = V_2;
|
|
NullCheck(L_16);
|
|
List_1_set_Item_m87B2E8BC263F70F16FEADB6B4278F1DD9A6765FF(L_16, ((int32_t)il2cpp_codegen_add(L_17, 1)), L_18, List_1_set_Item_m87B2E8BC263F70F16FEADB6B4278F1DD9A6765FF_RuntimeMethod_var);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:2348>
|
|
int32_t L_19 = V_1;
|
|
V_1 = ((int32_t)il2cpp_codegen_add(L_19, 1));
|
|
}
|
|
|
|
IL_0047:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:2348>
|
|
int32_t L_20 = V_1;
|
|
List_1_t2E485E650BF1E41358CE56A69323E183C5A89CB6* L_21 = ___0_list;
|
|
NullCheck(L_21);
|
|
int32_t L_22;
|
|
L_22 = List_1_get_Count_mE6D3D9D20C29AB0625389FEF206BBFF202CD5293_inline(L_21, List_1_get_Count_mE6D3D9D20C29AB0625389FEF206BBFF202CD5293_RuntimeMethod_var);
|
|
if ((((int32_t)L_20) < ((int32_t)L_22)))
|
|
{
|
|
goto IL_0004;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:2358>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 33446
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ScriptableRenderer_get_supportsNativeRenderPassRendergraphCompiler_m6FA5D8787EB0ABAB757F2CCAB40FCA2F8F74CBAB (ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:2447>
|
|
return (bool)0;
|
|
}
|
|
}
|
|
// Method Definition Index: 33447
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ScriptableRenderer_get_supportsGPUOcclusion_m7E3CA361B218A839316C57CF270CEFECADC000A1 (ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:2452>
|
|
return (bool)0;
|
|
}
|
|
}
|
|
// Method Definition Index: 33448
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ScriptableRenderer__cctor_m0B30A40E3A57A38387A2FD39C965A02AE7F25473 (const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Array_Empty_TisRTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B_mA62B3EA5D88F1E070CBD70F23D82135AC2E111F9_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Array_Empty_TisRenderTargetIdentifier_tA528663AC6EB3911D8E91AA40F7070FA5455442B_mE9CB7004FB24F2FE6566E734B9132170794E41F6_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PlaneU5BU5D_t4EEF66BAA8B0140EFFF34F6183CE7F80546592BE_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RTHandleU5BU5DU5BU5D_t6066EC3F94599A5A42DA9A893F102E9618CB612F_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RTHandleU5BU5D_tE4B403B060D159B839BF74E8B59F8DCD52CF97DF_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RTHandles_t84D932A74064E591F31E9813FBED5D64F5CC888C_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RenderBufferStoreActionU5BU5D_tFEA8F5DD460573EA9F35FBEC5727D1804C5DCBF5_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RenderTargetIdentifierU5BU5DU5BU5D_tDB35F8D017FE3AD8BB35E08E323074D47C5A10BB_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RenderTargetIdentifierU5BU5D_t179798C153B7CE381B41C57863F98CB24023C4CE_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RenderTargetIdentifier_tA528663AC6EB3911D8E91AA40F7070FA5455442B_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Vector4U5BU5D_tC0F3A7115F85007510F6D173968200CD31BCF7AD_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:187>
|
|
((ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892_StaticFields*)il2cpp_codegen_static_fields_for(ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892_il2cpp_TypeInfo_var))->___current = (ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892*)NULL;
|
|
Il2CppCodeGenWriteBarrier((void**)(&((ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892_StaticFields*)il2cpp_codegen_static_fields_for(ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892_il2cpp_TypeInfo_var))->___current), (void*)(ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892*)NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:641>
|
|
((ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892_StaticFields*)il2cpp_codegen_static_fields_for(ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892_il2cpp_TypeInfo_var))->___m_UseOptimizedStoreActions = (bool)0;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:649>
|
|
il2cpp_codegen_runtime_class_init_inline(RenderTargetIdentifier_tA528663AC6EB3911D8E91AA40F7070FA5455442B_il2cpp_TypeInfo_var);
|
|
RenderTargetIdentifier_tA528663AC6EB3911D8E91AA40F7070FA5455442B L_0;
|
|
L_0 = RenderTargetIdentifier_op_Implicit_m3E2366E36F14173DBEED75591978EBE1F01A1325(2, NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(RTHandles_t84D932A74064E591F31E9813FBED5D64F5CC888C_il2cpp_TypeInfo_var);
|
|
RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B* L_1;
|
|
L_1 = RTHandles_Alloc_m7EC88962CADCEAB38EAE8D792039466E20874304(L_0, NULL);
|
|
((ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892_StaticFields*)il2cpp_codegen_static_fields_for(ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892_il2cpp_TypeInfo_var))->___k_CameraTarget = L_1;
|
|
Il2CppCodeGenWriteBarrier((void**)(&((ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892_StaticFields*)il2cpp_codegen_static_fields_for(ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892_il2cpp_TypeInfo_var))->___k_CameraTarget), (void*)L_1);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:671>
|
|
RenderTargetIdentifierU5BU5D_t179798C153B7CE381B41C57863F98CB24023C4CE* L_2 = (RenderTargetIdentifierU5BU5D_t179798C153B7CE381B41C57863F98CB24023C4CE*)(RenderTargetIdentifierU5BU5D_t179798C153B7CE381B41C57863F98CB24023C4CE*)SZArrayNew(RenderTargetIdentifierU5BU5D_t179798C153B7CE381B41C57863F98CB24023C4CE_il2cpp_TypeInfo_var, (uint32_t)8);
|
|
((ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892_StaticFields*)il2cpp_codegen_static_fields_for(ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892_il2cpp_TypeInfo_var))->___m_ActiveColorAttachmentIDs = L_2;
|
|
Il2CppCodeGenWriteBarrier((void**)(&((ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892_StaticFields*)il2cpp_codegen_static_fields_for(ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892_il2cpp_TypeInfo_var))->___m_ActiveColorAttachmentIDs), (void*)L_2);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:672>
|
|
RTHandleU5BU5D_tE4B403B060D159B839BF74E8B59F8DCD52CF97DF* L_3 = (RTHandleU5BU5D_tE4B403B060D159B839BF74E8B59F8DCD52CF97DF*)(RTHandleU5BU5D_tE4B403B060D159B839BF74E8B59F8DCD52CF97DF*)SZArrayNew(RTHandleU5BU5D_tE4B403B060D159B839BF74E8B59F8DCD52CF97DF_il2cpp_TypeInfo_var, (uint32_t)8);
|
|
((ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892_StaticFields*)il2cpp_codegen_static_fields_for(ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892_il2cpp_TypeInfo_var))->___m_ActiveColorAttachments = L_3;
|
|
Il2CppCodeGenWriteBarrier((void**)(&((ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892_StaticFields*)il2cpp_codegen_static_fields_for(ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892_il2cpp_TypeInfo_var))->___m_ActiveColorAttachments), (void*)L_3);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:678>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:679>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:680>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:681>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:682>
|
|
RenderBufferStoreActionU5BU5D_tFEA8F5DD460573EA9F35FBEC5727D1804C5DCBF5* L_4 = (RenderBufferStoreActionU5BU5D_tFEA8F5DD460573EA9F35FBEC5727D1804C5DCBF5*)(RenderBufferStoreActionU5BU5D_tFEA8F5DD460573EA9F35FBEC5727D1804C5DCBF5*)SZArrayNew(RenderBufferStoreActionU5BU5D_tFEA8F5DD460573EA9F35FBEC5727D1804C5DCBF5_il2cpp_TypeInfo_var, (uint32_t)8);
|
|
((ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892_StaticFields*)il2cpp_codegen_static_fields_for(ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892_il2cpp_TypeInfo_var))->___m_ActiveColorStoreActions = L_4;
|
|
Il2CppCodeGenWriteBarrier((void**)(&((ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892_StaticFields*)il2cpp_codegen_static_fields_for(ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892_il2cpp_TypeInfo_var))->___m_ActiveColorStoreActions), (void*)L_4);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:684>
|
|
((ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892_StaticFields*)il2cpp_codegen_static_fields_for(ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892_il2cpp_TypeInfo_var))->___m_ActiveDepthStoreAction = 0;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:690>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:691>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:692>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:693>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:694>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:695>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:696>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:697>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:698>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:699>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:700>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:701>
|
|
RenderTargetIdentifierU5BU5DU5BU5D_tDB35F8D017FE3AD8BB35E08E323074D47C5A10BB* L_5 = (RenderTargetIdentifierU5BU5DU5BU5D_tDB35F8D017FE3AD8BB35E08E323074D47C5A10BB*)(RenderTargetIdentifierU5BU5DU5BU5D_tDB35F8D017FE3AD8BB35E08E323074D47C5A10BB*)SZArrayNew(RenderTargetIdentifierU5BU5DU5BU5D_tDB35F8D017FE3AD8BB35E08E323074D47C5A10BB_il2cpp_TypeInfo_var, (uint32_t)((int32_t)9));
|
|
RenderTargetIdentifierU5BU5DU5BU5D_tDB35F8D017FE3AD8BB35E08E323074D47C5A10BB* L_6 = L_5;
|
|
RenderTargetIdentifierU5BU5D_t179798C153B7CE381B41C57863F98CB24023C4CE* L_7;
|
|
L_7 = Array_Empty_TisRenderTargetIdentifier_tA528663AC6EB3911D8E91AA40F7070FA5455442B_mE9CB7004FB24F2FE6566E734B9132170794E41F6_inline(Array_Empty_TisRenderTargetIdentifier_tA528663AC6EB3911D8E91AA40F7070FA5455442B_mE9CB7004FB24F2FE6566E734B9132170794E41F6_RuntimeMethod_var);
|
|
NullCheck(L_6);
|
|
(L_6)->SetAt(static_cast<il2cpp_array_size_t>(0), (RenderTargetIdentifierU5BU5D_t179798C153B7CE381B41C57863F98CB24023C4CE*)L_7);
|
|
RenderTargetIdentifierU5BU5DU5BU5D_tDB35F8D017FE3AD8BB35E08E323074D47C5A10BB* L_8 = L_6;
|
|
RenderTargetIdentifierU5BU5D_t179798C153B7CE381B41C57863F98CB24023C4CE* L_9 = (RenderTargetIdentifierU5BU5D_t179798C153B7CE381B41C57863F98CB24023C4CE*)(RenderTargetIdentifierU5BU5D_t179798C153B7CE381B41C57863F98CB24023C4CE*)SZArrayNew(RenderTargetIdentifierU5BU5D_t179798C153B7CE381B41C57863F98CB24023C4CE_il2cpp_TypeInfo_var, (uint32_t)1);
|
|
NullCheck(L_8);
|
|
(L_8)->SetAt(static_cast<il2cpp_array_size_t>(1), (RenderTargetIdentifierU5BU5D_t179798C153B7CE381B41C57863F98CB24023C4CE*)L_9);
|
|
RenderTargetIdentifierU5BU5DU5BU5D_tDB35F8D017FE3AD8BB35E08E323074D47C5A10BB* L_10 = L_8;
|
|
RenderTargetIdentifierU5BU5D_t179798C153B7CE381B41C57863F98CB24023C4CE* L_11 = (RenderTargetIdentifierU5BU5D_t179798C153B7CE381B41C57863F98CB24023C4CE*)(RenderTargetIdentifierU5BU5D_t179798C153B7CE381B41C57863F98CB24023C4CE*)SZArrayNew(RenderTargetIdentifierU5BU5D_t179798C153B7CE381B41C57863F98CB24023C4CE_il2cpp_TypeInfo_var, (uint32_t)2);
|
|
NullCheck(L_10);
|
|
(L_10)->SetAt(static_cast<il2cpp_array_size_t>(2), (RenderTargetIdentifierU5BU5D_t179798C153B7CE381B41C57863F98CB24023C4CE*)L_11);
|
|
RenderTargetIdentifierU5BU5DU5BU5D_tDB35F8D017FE3AD8BB35E08E323074D47C5A10BB* L_12 = L_10;
|
|
RenderTargetIdentifierU5BU5D_t179798C153B7CE381B41C57863F98CB24023C4CE* L_13 = (RenderTargetIdentifierU5BU5D_t179798C153B7CE381B41C57863F98CB24023C4CE*)(RenderTargetIdentifierU5BU5D_t179798C153B7CE381B41C57863F98CB24023C4CE*)SZArrayNew(RenderTargetIdentifierU5BU5D_t179798C153B7CE381B41C57863F98CB24023C4CE_il2cpp_TypeInfo_var, (uint32_t)3);
|
|
NullCheck(L_12);
|
|
(L_12)->SetAt(static_cast<il2cpp_array_size_t>(3), (RenderTargetIdentifierU5BU5D_t179798C153B7CE381B41C57863F98CB24023C4CE*)L_13);
|
|
RenderTargetIdentifierU5BU5DU5BU5D_tDB35F8D017FE3AD8BB35E08E323074D47C5A10BB* L_14 = L_12;
|
|
RenderTargetIdentifierU5BU5D_t179798C153B7CE381B41C57863F98CB24023C4CE* L_15 = (RenderTargetIdentifierU5BU5D_t179798C153B7CE381B41C57863F98CB24023C4CE*)(RenderTargetIdentifierU5BU5D_t179798C153B7CE381B41C57863F98CB24023C4CE*)SZArrayNew(RenderTargetIdentifierU5BU5D_t179798C153B7CE381B41C57863F98CB24023C4CE_il2cpp_TypeInfo_var, (uint32_t)4);
|
|
NullCheck(L_14);
|
|
(L_14)->SetAt(static_cast<il2cpp_array_size_t>(4), (RenderTargetIdentifierU5BU5D_t179798C153B7CE381B41C57863F98CB24023C4CE*)L_15);
|
|
RenderTargetIdentifierU5BU5DU5BU5D_tDB35F8D017FE3AD8BB35E08E323074D47C5A10BB* L_16 = L_14;
|
|
RenderTargetIdentifierU5BU5D_t179798C153B7CE381B41C57863F98CB24023C4CE* L_17 = (RenderTargetIdentifierU5BU5D_t179798C153B7CE381B41C57863F98CB24023C4CE*)(RenderTargetIdentifierU5BU5D_t179798C153B7CE381B41C57863F98CB24023C4CE*)SZArrayNew(RenderTargetIdentifierU5BU5D_t179798C153B7CE381B41C57863F98CB24023C4CE_il2cpp_TypeInfo_var, (uint32_t)5);
|
|
NullCheck(L_16);
|
|
(L_16)->SetAt(static_cast<il2cpp_array_size_t>(5), (RenderTargetIdentifierU5BU5D_t179798C153B7CE381B41C57863F98CB24023C4CE*)L_17);
|
|
RenderTargetIdentifierU5BU5DU5BU5D_tDB35F8D017FE3AD8BB35E08E323074D47C5A10BB* L_18 = L_16;
|
|
RenderTargetIdentifierU5BU5D_t179798C153B7CE381B41C57863F98CB24023C4CE* L_19 = (RenderTargetIdentifierU5BU5D_t179798C153B7CE381B41C57863F98CB24023C4CE*)(RenderTargetIdentifierU5BU5D_t179798C153B7CE381B41C57863F98CB24023C4CE*)SZArrayNew(RenderTargetIdentifierU5BU5D_t179798C153B7CE381B41C57863F98CB24023C4CE_il2cpp_TypeInfo_var, (uint32_t)6);
|
|
NullCheck(L_18);
|
|
(L_18)->SetAt(static_cast<il2cpp_array_size_t>(6), (RenderTargetIdentifierU5BU5D_t179798C153B7CE381B41C57863F98CB24023C4CE*)L_19);
|
|
RenderTargetIdentifierU5BU5DU5BU5D_tDB35F8D017FE3AD8BB35E08E323074D47C5A10BB* L_20 = L_18;
|
|
RenderTargetIdentifierU5BU5D_t179798C153B7CE381B41C57863F98CB24023C4CE* L_21 = (RenderTargetIdentifierU5BU5D_t179798C153B7CE381B41C57863F98CB24023C4CE*)(RenderTargetIdentifierU5BU5D_t179798C153B7CE381B41C57863F98CB24023C4CE*)SZArrayNew(RenderTargetIdentifierU5BU5D_t179798C153B7CE381B41C57863F98CB24023C4CE_il2cpp_TypeInfo_var, (uint32_t)7);
|
|
NullCheck(L_20);
|
|
(L_20)->SetAt(static_cast<il2cpp_array_size_t>(7), (RenderTargetIdentifierU5BU5D_t179798C153B7CE381B41C57863F98CB24023C4CE*)L_21);
|
|
RenderTargetIdentifierU5BU5DU5BU5D_tDB35F8D017FE3AD8BB35E08E323074D47C5A10BB* L_22 = L_20;
|
|
RenderTargetIdentifierU5BU5D_t179798C153B7CE381B41C57863F98CB24023C4CE* L_23 = (RenderTargetIdentifierU5BU5D_t179798C153B7CE381B41C57863F98CB24023C4CE*)(RenderTargetIdentifierU5BU5D_t179798C153B7CE381B41C57863F98CB24023C4CE*)SZArrayNew(RenderTargetIdentifierU5BU5D_t179798C153B7CE381B41C57863F98CB24023C4CE_il2cpp_TypeInfo_var, (uint32_t)8);
|
|
NullCheck(L_22);
|
|
(L_22)->SetAt(static_cast<il2cpp_array_size_t>(8), (RenderTargetIdentifierU5BU5D_t179798C153B7CE381B41C57863F98CB24023C4CE*)L_23);
|
|
((ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892_StaticFields*)il2cpp_codegen_static_fields_for(ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892_il2cpp_TypeInfo_var))->___m_TrimmedColorAttachmentCopyIDs = L_22;
|
|
Il2CppCodeGenWriteBarrier((void**)(&((ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892_StaticFields*)il2cpp_codegen_static_fields_for(ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892_il2cpp_TypeInfo_var))->___m_TrimmedColorAttachmentCopyIDs), (void*)L_22);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:702>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:703>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:704>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:705>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:706>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:707>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:708>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:709>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:710>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:711>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:712>
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:713>
|
|
RTHandleU5BU5DU5BU5D_t6066EC3F94599A5A42DA9A893F102E9618CB612F* L_24 = (RTHandleU5BU5DU5BU5D_t6066EC3F94599A5A42DA9A893F102E9618CB612F*)(RTHandleU5BU5DU5BU5D_t6066EC3F94599A5A42DA9A893F102E9618CB612F*)SZArrayNew(RTHandleU5BU5DU5BU5D_t6066EC3F94599A5A42DA9A893F102E9618CB612F_il2cpp_TypeInfo_var, (uint32_t)((int32_t)9));
|
|
RTHandleU5BU5DU5BU5D_t6066EC3F94599A5A42DA9A893F102E9618CB612F* L_25 = L_24;
|
|
RTHandleU5BU5D_tE4B403B060D159B839BF74E8B59F8DCD52CF97DF* L_26;
|
|
L_26 = Array_Empty_TisRTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B_mA62B3EA5D88F1E070CBD70F23D82135AC2E111F9_inline(Array_Empty_TisRTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B_mA62B3EA5D88F1E070CBD70F23D82135AC2E111F9_RuntimeMethod_var);
|
|
NullCheck(L_25);
|
|
ArrayElementTypeCheck (L_25, L_26);
|
|
(L_25)->SetAt(static_cast<il2cpp_array_size_t>(0), (RTHandleU5BU5D_tE4B403B060D159B839BF74E8B59F8DCD52CF97DF*)L_26);
|
|
RTHandleU5BU5DU5BU5D_t6066EC3F94599A5A42DA9A893F102E9618CB612F* L_27 = L_25;
|
|
RTHandleU5BU5D_tE4B403B060D159B839BF74E8B59F8DCD52CF97DF* L_28 = (RTHandleU5BU5D_tE4B403B060D159B839BF74E8B59F8DCD52CF97DF*)(RTHandleU5BU5D_tE4B403B060D159B839BF74E8B59F8DCD52CF97DF*)SZArrayNew(RTHandleU5BU5D_tE4B403B060D159B839BF74E8B59F8DCD52CF97DF_il2cpp_TypeInfo_var, (uint32_t)1);
|
|
NullCheck(L_27);
|
|
ArrayElementTypeCheck (L_27, L_28);
|
|
(L_27)->SetAt(static_cast<il2cpp_array_size_t>(1), (RTHandleU5BU5D_tE4B403B060D159B839BF74E8B59F8DCD52CF97DF*)L_28);
|
|
RTHandleU5BU5DU5BU5D_t6066EC3F94599A5A42DA9A893F102E9618CB612F* L_29 = L_27;
|
|
RTHandleU5BU5D_tE4B403B060D159B839BF74E8B59F8DCD52CF97DF* L_30 = (RTHandleU5BU5D_tE4B403B060D159B839BF74E8B59F8DCD52CF97DF*)(RTHandleU5BU5D_tE4B403B060D159B839BF74E8B59F8DCD52CF97DF*)SZArrayNew(RTHandleU5BU5D_tE4B403B060D159B839BF74E8B59F8DCD52CF97DF_il2cpp_TypeInfo_var, (uint32_t)2);
|
|
NullCheck(L_29);
|
|
ArrayElementTypeCheck (L_29, L_30);
|
|
(L_29)->SetAt(static_cast<il2cpp_array_size_t>(2), (RTHandleU5BU5D_tE4B403B060D159B839BF74E8B59F8DCD52CF97DF*)L_30);
|
|
RTHandleU5BU5DU5BU5D_t6066EC3F94599A5A42DA9A893F102E9618CB612F* L_31 = L_29;
|
|
RTHandleU5BU5D_tE4B403B060D159B839BF74E8B59F8DCD52CF97DF* L_32 = (RTHandleU5BU5D_tE4B403B060D159B839BF74E8B59F8DCD52CF97DF*)(RTHandleU5BU5D_tE4B403B060D159B839BF74E8B59F8DCD52CF97DF*)SZArrayNew(RTHandleU5BU5D_tE4B403B060D159B839BF74E8B59F8DCD52CF97DF_il2cpp_TypeInfo_var, (uint32_t)3);
|
|
NullCheck(L_31);
|
|
ArrayElementTypeCheck (L_31, L_32);
|
|
(L_31)->SetAt(static_cast<il2cpp_array_size_t>(3), (RTHandleU5BU5D_tE4B403B060D159B839BF74E8B59F8DCD52CF97DF*)L_32);
|
|
RTHandleU5BU5DU5BU5D_t6066EC3F94599A5A42DA9A893F102E9618CB612F* L_33 = L_31;
|
|
RTHandleU5BU5D_tE4B403B060D159B839BF74E8B59F8DCD52CF97DF* L_34 = (RTHandleU5BU5D_tE4B403B060D159B839BF74E8B59F8DCD52CF97DF*)(RTHandleU5BU5D_tE4B403B060D159B839BF74E8B59F8DCD52CF97DF*)SZArrayNew(RTHandleU5BU5D_tE4B403B060D159B839BF74E8B59F8DCD52CF97DF_il2cpp_TypeInfo_var, (uint32_t)4);
|
|
NullCheck(L_33);
|
|
ArrayElementTypeCheck (L_33, L_34);
|
|
(L_33)->SetAt(static_cast<il2cpp_array_size_t>(4), (RTHandleU5BU5D_tE4B403B060D159B839BF74E8B59F8DCD52CF97DF*)L_34);
|
|
RTHandleU5BU5DU5BU5D_t6066EC3F94599A5A42DA9A893F102E9618CB612F* L_35 = L_33;
|
|
RTHandleU5BU5D_tE4B403B060D159B839BF74E8B59F8DCD52CF97DF* L_36 = (RTHandleU5BU5D_tE4B403B060D159B839BF74E8B59F8DCD52CF97DF*)(RTHandleU5BU5D_tE4B403B060D159B839BF74E8B59F8DCD52CF97DF*)SZArrayNew(RTHandleU5BU5D_tE4B403B060D159B839BF74E8B59F8DCD52CF97DF_il2cpp_TypeInfo_var, (uint32_t)5);
|
|
NullCheck(L_35);
|
|
ArrayElementTypeCheck (L_35, L_36);
|
|
(L_35)->SetAt(static_cast<il2cpp_array_size_t>(5), (RTHandleU5BU5D_tE4B403B060D159B839BF74E8B59F8DCD52CF97DF*)L_36);
|
|
RTHandleU5BU5DU5BU5D_t6066EC3F94599A5A42DA9A893F102E9618CB612F* L_37 = L_35;
|
|
RTHandleU5BU5D_tE4B403B060D159B839BF74E8B59F8DCD52CF97DF* L_38 = (RTHandleU5BU5D_tE4B403B060D159B839BF74E8B59F8DCD52CF97DF*)(RTHandleU5BU5D_tE4B403B060D159B839BF74E8B59F8DCD52CF97DF*)SZArrayNew(RTHandleU5BU5D_tE4B403B060D159B839BF74E8B59F8DCD52CF97DF_il2cpp_TypeInfo_var, (uint32_t)6);
|
|
NullCheck(L_37);
|
|
ArrayElementTypeCheck (L_37, L_38);
|
|
(L_37)->SetAt(static_cast<il2cpp_array_size_t>(6), (RTHandleU5BU5D_tE4B403B060D159B839BF74E8B59F8DCD52CF97DF*)L_38);
|
|
RTHandleU5BU5DU5BU5D_t6066EC3F94599A5A42DA9A893F102E9618CB612F* L_39 = L_37;
|
|
RTHandleU5BU5D_tE4B403B060D159B839BF74E8B59F8DCD52CF97DF* L_40 = (RTHandleU5BU5D_tE4B403B060D159B839BF74E8B59F8DCD52CF97DF*)(RTHandleU5BU5D_tE4B403B060D159B839BF74E8B59F8DCD52CF97DF*)SZArrayNew(RTHandleU5BU5D_tE4B403B060D159B839BF74E8B59F8DCD52CF97DF_il2cpp_TypeInfo_var, (uint32_t)7);
|
|
NullCheck(L_39);
|
|
ArrayElementTypeCheck (L_39, L_40);
|
|
(L_39)->SetAt(static_cast<il2cpp_array_size_t>(7), (RTHandleU5BU5D_tE4B403B060D159B839BF74E8B59F8DCD52CF97DF*)L_40);
|
|
RTHandleU5BU5DU5BU5D_t6066EC3F94599A5A42DA9A893F102E9618CB612F* L_41 = L_39;
|
|
RTHandleU5BU5D_tE4B403B060D159B839BF74E8B59F8DCD52CF97DF* L_42 = (RTHandleU5BU5D_tE4B403B060D159B839BF74E8B59F8DCD52CF97DF*)(RTHandleU5BU5D_tE4B403B060D159B839BF74E8B59F8DCD52CF97DF*)SZArrayNew(RTHandleU5BU5D_tE4B403B060D159B839BF74E8B59F8DCD52CF97DF_il2cpp_TypeInfo_var, (uint32_t)8);
|
|
NullCheck(L_41);
|
|
ArrayElementTypeCheck (L_41, L_42);
|
|
(L_41)->SetAt(static_cast<il2cpp_array_size_t>(8), (RTHandleU5BU5D_tE4B403B060D159B839BF74E8B59F8DCD52CF97DF*)L_42);
|
|
((ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892_StaticFields*)il2cpp_codegen_static_fields_for(ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892_il2cpp_TypeInfo_var))->___m_TrimmedColorAttachmentCopies = L_41;
|
|
Il2CppCodeGenWriteBarrier((void**)(&((ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892_StaticFields*)il2cpp_codegen_static_fields_for(ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892_il2cpp_TypeInfo_var))->___m_TrimmedColorAttachmentCopies), (void*)L_41);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:715>
|
|
PlaneU5BU5D_t4EEF66BAA8B0140EFFF34F6183CE7F80546592BE* L_43 = (PlaneU5BU5D_t4EEF66BAA8B0140EFFF34F6183CE7F80546592BE*)(PlaneU5BU5D_t4EEF66BAA8B0140EFFF34F6183CE7F80546592BE*)SZArrayNew(PlaneU5BU5D_t4EEF66BAA8B0140EFFF34F6183CE7F80546592BE_il2cpp_TypeInfo_var, (uint32_t)6);
|
|
((ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892_StaticFields*)il2cpp_codegen_static_fields_for(ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892_il2cpp_TypeInfo_var))->___s_Planes = L_43;
|
|
Il2CppCodeGenWriteBarrier((void**)(&((ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892_StaticFields*)il2cpp_codegen_static_fields_for(ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892_il2cpp_TypeInfo_var))->___s_Planes), (void*)L_43);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:716>
|
|
Vector4U5BU5D_tC0F3A7115F85007510F6D173968200CD31BCF7AD* L_44 = (Vector4U5BU5D_tC0F3A7115F85007510F6D173968200CD31BCF7AD*)(Vector4U5BU5D_tC0F3A7115F85007510F6D173968200CD31BCF7AD*)SZArrayNew(Vector4U5BU5D_tC0F3A7115F85007510F6D173968200CD31BCF7AD_il2cpp_TypeInfo_var, (uint32_t)6);
|
|
((ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892_StaticFields*)il2cpp_codegen_static_fields_for(ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892_il2cpp_TypeInfo_var))->___s_VectorPlanes = L_44;
|
|
Il2CppCodeGenWriteBarrier((void**)(&((ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892_StaticFields*)il2cpp_codegen_static_fields_for(ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892_il2cpp_TypeInfo_var))->___s_VectorPlanes), (void*)L_44);
|
|
return;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
// Method Definition Index: 33257
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void ScriptableRenderPass_set_renderPassEvent_m63FA581FFDE1C69C2E1358BD0B8DB30275334960_inline (ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* __this, int32_t ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Passes/ScriptableRenderPass.cs:216>
|
|
int32_t L_0 = ___0_value;
|
|
__this->___U3CrenderPassEventU3Ek__BackingField = L_0;
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 33288
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void ScriptableRenderPass_ConfigureInput_m15D8C10FC37E33CD358F2E9665ECF5515CB9C687_inline (ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* __this, int32_t ___0_passInput, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Passes/ScriptableRenderPass.cs:409>
|
|
int32_t L_0 = ___0_passInput;
|
|
__this->___m_Input = L_0;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Passes/ScriptableRenderPass.cs:410>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 27438
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RasterCommandBuffer_t4300C4F080EA3CF43C7ACFDBD4F94EA633FE98E8* CommandBufferHelpers_GetRasterCommandBuffer_m6086D650343F166614B3FB5ED89D63DE8F85C42B_inline (CommandBuffer_tB56007DC84EF56296C325EC32DD12AC1E3DC91F7* ___0_baseBuffer, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CommandBufferHelpers_tB8C09D01D6F0369DF52DEA955F017D6001BC72E5_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.core@5e056b397fc0/Runtime/CommandBuffers/CommandBufferHelpers.cs:24>
|
|
il2cpp_codegen_runtime_class_init_inline(CommandBufferHelpers_tB8C09D01D6F0369DF52DEA955F017D6001BC72E5_il2cpp_TypeInfo_var);
|
|
RasterCommandBuffer_t4300C4F080EA3CF43C7ACFDBD4F94EA633FE98E8* L_0 = ((CommandBufferHelpers_tB8C09D01D6F0369DF52DEA955F017D6001BC72E5_StaticFields*)il2cpp_codegen_static_fields_for(CommandBufferHelpers_tB8C09D01D6F0369DF52DEA955F017D6001BC72E5_il2cpp_TypeInfo_var))->___rasterCmd;
|
|
CommandBuffer_tB56007DC84EF56296C325EC32DD12AC1E3DC91F7* L_1 = ___0_baseBuffer;
|
|
NullCheck(L_0);
|
|
((BaseCommandBuffer_tD67BB9B3F740537BD3F3A96FA17D06E6C3BFDC06*)L_0)->___m_WrappedCommandBuffer = L_1;
|
|
Il2CppCodeGenWriteBarrier((void**)(&((BaseCommandBuffer_tD67BB9B3F740537BD3F3A96FA17D06E6C3BFDC06*)L_0)->___m_WrappedCommandBuffer), (void*)L_1);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.core@5e056b397fc0/Runtime/CommandBuffers/CommandBufferHelpers.cs:25>
|
|
RasterCommandBuffer_t4300C4F080EA3CF43C7ACFDBD4F94EA633FE98E8* L_2 = ((CommandBufferHelpers_tB8C09D01D6F0369DF52DEA955F017D6001BC72E5_StaticFields*)il2cpp_codegen_static_fields_for(CommandBufferHelpers_tB8C09D01D6F0369DF52DEA955F017D6001BC72E5_il2cpp_TypeInfo_var))->___rasterCmd;
|
|
return L_2;
|
|
}
|
|
}
|
|
// Method Definition Index: 33275
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* ScriptableRenderPass_get_passName_m838292A44DB6ED7D67E43C1DE58383959B4F1925_inline (ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Passes/ScriptableRenderPass.cs:337>
|
|
String_t* L_0 = __this->___m_PassName;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 37836
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float Mathf_Max_mF5379E63D2BBAC76D090748695D833934F8AD051_inline (float ___0_a, float ___1_b, const RuntimeMethod* method)
|
|
{
|
|
float V_0 = 0.0f;
|
|
float G_B3_0 = 0.0f;
|
|
{
|
|
float L_0 = ___0_a;
|
|
float L_1 = ___1_b;
|
|
if ((((float)L_0) > ((float)L_1)))
|
|
{
|
|
goto IL_0008;
|
|
}
|
|
}
|
|
{
|
|
float L_2 = ___1_b;
|
|
G_B3_0 = L_2;
|
|
goto IL_0009;
|
|
}
|
|
|
|
IL_0008:
|
|
{
|
|
float L_3 = ___0_a;
|
|
G_B3_0 = L_3;
|
|
}
|
|
|
|
IL_0009:
|
|
{
|
|
V_0 = G_B3_0;
|
|
goto IL_000c;
|
|
}
|
|
|
|
IL_000c:
|
|
{
|
|
float L_4 = V_0;
|
|
return L_4;
|
|
}
|
|
}
|
|
// Method Definition Index: 37852
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float Mathf_Clamp01_mA7E048DBDA832D399A581BE4D6DED9FA44CE0F14_inline (float ___0_value, const RuntimeMethod* method)
|
|
{
|
|
bool V_0 = false;
|
|
float V_1 = 0.0f;
|
|
bool V_2 = false;
|
|
{
|
|
float L_0 = ___0_value;
|
|
V_0 = (bool)((((float)L_0) < ((float)(0.0f)))? 1 : 0);
|
|
bool L_1 = V_0;
|
|
if (!L_1)
|
|
{
|
|
goto IL_0015;
|
|
}
|
|
}
|
|
{
|
|
V_1 = (0.0f);
|
|
goto IL_002d;
|
|
}
|
|
|
|
IL_0015:
|
|
{
|
|
float L_2 = ___0_value;
|
|
V_2 = (bool)((((float)L_2) > ((float)(1.0f)))? 1 : 0);
|
|
bool L_3 = V_2;
|
|
if (!L_3)
|
|
{
|
|
goto IL_0029;
|
|
}
|
|
}
|
|
{
|
|
V_1 = (1.0f);
|
|
goto IL_002d;
|
|
}
|
|
|
|
IL_0029:
|
|
{
|
|
float L_4 = ___0_value;
|
|
V_1 = L_4;
|
|
goto IL_002d;
|
|
}
|
|
|
|
IL_002d:
|
|
{
|
|
float L_5 = V_1;
|
|
return L_5;
|
|
}
|
|
}
|
|
// Method Definition Index: 37850
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float Mathf_Clamp_mEB9AEA827D27D20FCC787F7375156AF46BB12BBF_inline (float ___0_value, float ___1_min, float ___2_max, const RuntimeMethod* method)
|
|
{
|
|
bool V_0 = false;
|
|
bool V_1 = false;
|
|
float V_2 = 0.0f;
|
|
{
|
|
float L_0 = ___0_value;
|
|
float L_1 = ___1_min;
|
|
V_0 = (bool)((((float)L_0) < ((float)L_1))? 1 : 0);
|
|
bool L_2 = V_0;
|
|
if (!L_2)
|
|
{
|
|
goto IL_000e;
|
|
}
|
|
}
|
|
{
|
|
float L_3 = ___1_min;
|
|
___0_value = L_3;
|
|
goto IL_0019;
|
|
}
|
|
|
|
IL_000e:
|
|
{
|
|
float L_4 = ___0_value;
|
|
float L_5 = ___2_max;
|
|
V_1 = (bool)((((float)L_4) > ((float)L_5))? 1 : 0);
|
|
bool L_6 = V_1;
|
|
if (!L_6)
|
|
{
|
|
goto IL_0019;
|
|
}
|
|
}
|
|
{
|
|
float L_7 = ___2_max;
|
|
___0_value = L_7;
|
|
}
|
|
|
|
IL_0019:
|
|
{
|
|
float L_8 = ___0_value;
|
|
V_2 = L_8;
|
|
goto IL_001d;
|
|
}
|
|
|
|
IL_001d:
|
|
{
|
|
float L_9 = V_2;
|
|
return L_9;
|
|
}
|
|
}
|
|
// Method Definition Index: 37765
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 Vector3_get_one_mC9B289F1E15C42C597180C9FE6FB492495B51D02_inline (const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
{
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_0 = ((Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2_StaticFields*)il2cpp_codegen_static_fields_for(Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2_il2cpp_TypeInfo_var))->___oneVector;
|
|
V_0 = L_0;
|
|
goto IL_0009;
|
|
}
|
|
|
|
IL_0009:
|
|
{
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_1 = V_0;
|
|
return L_1;
|
|
}
|
|
}
|
|
// Method Definition Index: 37744
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Vector3__ctor_m376936E6B999EF1ECBE57D990A386303E2283DE0_inline (Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2* __this, float ___0_x, float ___1_y, float ___2_z, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
float L_0 = ___0_x;
|
|
__this->___x = L_0;
|
|
float L_1 = ___1_y;
|
|
__this->___y = L_1;
|
|
float L_2 = ___2_z;
|
|
__this->___z = L_2;
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 37955
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Vector4__ctor_m96B2CD8B862B271F513AF0BDC2EABD58E4DBC813_inline (Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3* __this, float ___0_x, float ___1_y, float ___2_z, float ___3_w, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
float L_0 = ___0_x;
|
|
__this->___x = L_0;
|
|
float L_1 = ___1_y;
|
|
__this->___y = L_1;
|
|
float L_2 = ___2_z;
|
|
__this->___z = L_2;
|
|
float L_3 = ___3_w;
|
|
__this->___w = L_3;
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 33128
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void DecalProjectorAction_Invoke_mB1B4E86AF2D30FFE627DC803CD91C8F0A80530F3_inline (DecalProjectorAction_tDFCBDEE542B3D640BD121E036275AA51A003CF5C* __this, DecalProjector_tE7CEBAABFEF36162FD325321C1F94173CEFEDF64* ___0_decalProjector, const RuntimeMethod* method)
|
|
{
|
|
typedef void (*FunctionPointerType) (RuntimeObject*, DecalProjector_tE7CEBAABFEF36162FD325321C1F94173CEFEDF64*, const RuntimeMethod*);
|
|
((FunctionPointerType)__this->___invoke_impl)((Il2CppObject*)__this->___method_code, ___0_decalProjector, reinterpret_cast<RuntimeMethod*>(__this->___method));
|
|
}
|
|
// Method Definition Index: 37897
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Vector2_op_Inequality_mBEA93B5A0E954FEFB863DC61CB209119980EC713_inline (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___0_lhs, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___1_rhs, const RuntimeMethod* method)
|
|
{
|
|
bool V_0 = false;
|
|
{
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_0 = ___0_lhs;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_1 = ___1_rhs;
|
|
bool L_2;
|
|
L_2 = Vector2_op_Equality_m6F2E069A50E787D131261E5CB25FC9E03F95B5E1_inline(L_0, L_1, NULL);
|
|
V_0 = (bool)((((int32_t)L_2) == ((int32_t)0))? 1 : 0);
|
|
goto IL_000e;
|
|
}
|
|
|
|
IL_000e:
|
|
{
|
|
bool L_3 = V_0;
|
|
return L_3;
|
|
}
|
|
}
|
|
// Method Definition Index: 37780
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Vector3_op_Inequality_m9F170CDFBF1E490E559DA5D06D6547501A402BBF_inline (Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___0_lhs, Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___1_rhs, const RuntimeMethod* method)
|
|
{
|
|
bool V_0 = false;
|
|
{
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_0 = ___0_lhs;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_1 = ___1_rhs;
|
|
bool L_2;
|
|
L_2 = Vector3_op_Equality_mCDCBB8D2EDC3D3BF20F31A25ACB34705D352B479_inline(L_0, L_1, NULL);
|
|
V_0 = (bool)((((int32_t)L_2) == ((int32_t)0))? 1 : 0);
|
|
goto IL_000e;
|
|
}
|
|
|
|
IL_000e:
|
|
{
|
|
bool L_3 = V_0;
|
|
return L_3;
|
|
}
|
|
}
|
|
// Method Definition Index: 33089
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Material_t18053F08F347D0DCA5E1140EC7EC4533DD8A14E3* DecalProjector_get_material_m7B4C2B869C8E062AFF5519DDB9BD954DB5163C77_inline (DecalProjector_tE7CEBAABFEF36162FD325321C1F94173CEFEDF64* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/DecalProjector.cs:48>
|
|
Material_t18053F08F347D0DCA5E1140EC7EC4533DD8A14E3* L_0 = __this->___m_Material;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 601
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Action_Invoke_m7126A54DACA72B845424072887B5F3A51FC3808E_inline (Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* __this, const RuntimeMethod* method)
|
|
{
|
|
typedef void (*FunctionPointerType) (RuntimeObject*, const RuntimeMethod*);
|
|
((FunctionPointerType)__this->___invoke_impl)((Il2CppObject*)__this->___method_code, reinterpret_cast<RuntimeMethod*>(__this->___method));
|
|
}
|
|
// Method Definition Index: 37871
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Vector2__ctor_m9525B79969AFFE3254B303A40997A56DEEB6F548_inline (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7* __this, float ___0_x, float ___1_y, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
float L_0 = ___0_x;
|
|
__this->___x = L_0;
|
|
float L_1 = ___1_y;
|
|
__this->___y = L_1;
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 38100
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RenderingLayerMask_tD73B9FC1A65A937F18E56833FC83BF89C2B085A1 RenderingLayerMask_get_defaultRenderingLayerMask_m75949CAB9D04088013D84AF5835A3F38BB723A7B_inline (const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RenderingLayerMask_tD73B9FC1A65A937F18E56833FC83BF89C2B085A1_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(RenderingLayerMask_tD73B9FC1A65A937F18E56833FC83BF89C2B085A1_il2cpp_TypeInfo_var);
|
|
RenderingLayerMask_tD73B9FC1A65A937F18E56833FC83BF89C2B085A1 L_0 = ((RenderingLayerMask_tD73B9FC1A65A937F18E56833FC83BF89C2B085A1_StaticFields*)il2cpp_codegen_static_fields_for(RenderingLayerMask_tD73B9FC1A65A937F18E56833FC83BF89C2B085A1_il2cpp_TypeInfo_var))->___U3CdefaultRenderingLayerMaskU3Ek__BackingField;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 33131
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t DecalChunk_get_count_mEF67D584A3FF77C4A87A916D5F464D91D47C4B17_inline (DecalChunk_tD2C5831DD2A6E97A7A738C88C5922305BA0513CA* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalChunk.cs:11>
|
|
int32_t L_0 = __this->___U3CcountU3Ek__BackingField;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 33132
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void DecalChunk_set_count_m55DFD6DAB9893215E6FB8E81AB00257C21488EC8_inline (DecalChunk_tD2C5831DD2A6E97A7A738C88C5922305BA0513CA* __this, int32_t ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalChunk.cs:11>
|
|
int32_t L_0 = ___0_value;
|
|
__this->___U3CcountU3Ek__BackingField = L_0;
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 33134
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void DecalChunk_set_capacity_mB9107E4EB6FFDDEAD9D6DED6B83E65AC10E4E490_inline (DecalChunk_tD2C5831DD2A6E97A7A738C88C5922305BA0513CA* __this, int32_t ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalChunk.cs:12>
|
|
int32_t L_0 = ___0_value;
|
|
__this->___U3CcapacityU3Ek__BackingField = L_0;
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 33133
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t DecalChunk_get_capacity_m70E0A37FAAF474D0AC7277BCD11673777BA0C15A_inline (DecalChunk_tD2C5831DD2A6E97A7A738C88C5922305BA0513CA* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalChunk.cs:12>
|
|
int32_t L_0 = __this->___U3CcapacityU3Ek__BackingField;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 33135
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR JobHandle_t5DF5F99902FED3C801A81C05205CEA6CE039EF08 DecalChunk_get_currentJobHandle_m0EBD28118EB20E5BBC3BE831171CD2CDC745AAD4_inline (DecalChunk_tD2C5831DD2A6E97A7A738C88C5922305BA0513CA* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalChunk.cs:14>
|
|
JobHandle_t5DF5F99902FED3C801A81C05205CEA6CE039EF08 L_0 = __this->___U3CcurrentJobHandleU3Ek__BackingField;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 33136
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void DecalChunk_set_currentJobHandle_mE426515F8CC325C7F17BED7DB77E3024C43CE1AD_inline (DecalChunk_tD2C5831DD2A6E97A7A738C88C5922305BA0513CA* __this, JobHandle_t5DF5F99902FED3C801A81C05205CEA6CE039EF08 ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/Entities/DecalChunk.cs:14>
|
|
JobHandle_t5DF5F99902FED3C801A81C05205CEA6CE039EF08 L_0 = ___0_value;
|
|
__this->___U3CcurrentJobHandleU3Ek__BackingField = L_0;
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 37774
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 Vector3_op_Subtraction_mE42023FF80067CB44A1D4A27EB7CF2B24CABB828_inline (Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___0_a, Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___1_b, const RuntimeMethod* method)
|
|
{
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
{
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_0 = ___0_a;
|
|
float L_1 = L_0.___x;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_2 = ___1_b;
|
|
float L_3 = L_2.___x;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_4 = ___0_a;
|
|
float L_5 = L_4.___y;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_6 = ___1_b;
|
|
float L_7 = L_6.___y;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_8 = ___0_a;
|
|
float L_9 = L_8.___z;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_10 = ___1_b;
|
|
float L_11 = L_10.___z;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_12;
|
|
memset((&L_12), 0, sizeof(L_12));
|
|
Vector3__ctor_m376936E6B999EF1ECBE57D990A386303E2283DE0_inline((&L_12), ((float)il2cpp_codegen_subtract(L_1, L_3)), ((float)il2cpp_codegen_subtract(L_5, L_7)), ((float)il2cpp_codegen_subtract(L_9, L_11)), NULL);
|
|
V_0 = L_12;
|
|
goto IL_0030;
|
|
}
|
|
|
|
IL_0030:
|
|
{
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_13 = V_0;
|
|
return L_13;
|
|
}
|
|
}
|
|
// Method Definition Index: 37759
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float Vector3_get_magnitude_mF0D6017E90B345F1F52D1CC564C640F1A847AF2D_inline (Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Math_tEB65DE7CA8B083C412C969C92981C030865486CE_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
float V_0 = 0.0f;
|
|
{
|
|
float L_0 = __this->___x;
|
|
float L_1 = __this->___x;
|
|
float L_2 = __this->___y;
|
|
float L_3 = __this->___y;
|
|
float L_4 = __this->___z;
|
|
float L_5 = __this->___z;
|
|
il2cpp_codegen_runtime_class_init_inline(Math_tEB65DE7CA8B083C412C969C92981C030865486CE_il2cpp_TypeInfo_var);
|
|
double L_6;
|
|
L_6 = sqrt(((double)((float)il2cpp_codegen_add(((float)il2cpp_codegen_add(((float)il2cpp_codegen_multiply(L_0, L_1)), ((float)il2cpp_codegen_multiply(L_2, L_3)))), ((float)il2cpp_codegen_multiply(L_4, L_5))))));
|
|
V_0 = ((float)L_6);
|
|
goto IL_0034;
|
|
}
|
|
|
|
IL_0034:
|
|
{
|
|
float L_7 = V_0;
|
|
return L_7;
|
|
}
|
|
}
|
|
// Method Definition Index: 41534
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float math_min_m54FD010BEF505D2BA1F79FC793BEB0723C329C3B_inline (float ___0_x, float ___1_y, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.mathematics@8017b507cc74/Unity.Mathematics/math.cs:929>
|
|
float L_0 = ___1_y;
|
|
bool L_1;
|
|
L_1 = Single_IsNaN_mFE637F6ECA9F7697CE8EFF56427858F4C5EDF75D_inline(L_0, NULL);
|
|
if (L_1)
|
|
{
|
|
goto IL_000e;
|
|
}
|
|
}
|
|
{
|
|
float L_2 = ___0_x;
|
|
float L_3 = ___1_y;
|
|
if ((((float)L_2) < ((float)L_3)))
|
|
{
|
|
goto IL_000e;
|
|
}
|
|
}
|
|
{
|
|
float L_4 = ___1_y;
|
|
return L_4;
|
|
}
|
|
|
|
IL_000e:
|
|
{
|
|
float L_5 = ___0_x;
|
|
return L_5;
|
|
}
|
|
}
|
|
// Method Definition Index: 41618
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float math_clamp_mB7233FC9D6C27522014C4E6D4E056D36CE82C97E_inline (float ___0_valueToClamp, float ___1_lowerBound, float ___2_upperBound, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.mathematics@8017b507cc74/Unity.Mathematics/math.cs:1699>
|
|
float L_0 = ___1_lowerBound;
|
|
float L_1 = ___2_upperBound;
|
|
float L_2 = ___0_valueToClamp;
|
|
float L_3;
|
|
L_3 = math_min_m54FD010BEF505D2BA1F79FC793BEB0723C329C3B_inline(L_1, L_2, NULL);
|
|
float L_4;
|
|
L_4 = math_max_m4B454A91AE8827997609E74C4C24036BBD3CC496_inline(L_0, L_3, NULL);
|
|
return L_4;
|
|
}
|
|
}
|
|
// Method Definition Index: 45604
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void float4__ctor_mB2F7F2D8BCE8159BEF5A0D6400499E211858ED2D_inline (float4_t89D9A294E7A79BD81BFBDD18654508532958555E* __this, float ___0_x, float ___1_y, float ___2_z, float ___3_w, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.mathematics@8017b507cc74/Unity.Mathematics/float4.gen.cs:44>
|
|
float L_0 = ___0_x;
|
|
__this->___x = L_0;
|
|
//<source_info:./Library/PackageCache/com.unity.mathematics@8017b507cc74/Unity.Mathematics/float4.gen.cs:45>
|
|
float L_1 = ___1_y;
|
|
__this->___y = L_1;
|
|
//<source_info:./Library/PackageCache/com.unity.mathematics@8017b507cc74/Unity.Mathematics/float4.gen.cs:46>
|
|
float L_2 = ___2_z;
|
|
__this->___z = L_2;
|
|
//<source_info:./Library/PackageCache/com.unity.mathematics@8017b507cc74/Unity.Mathematics/float4.gen.cs:47>
|
|
float L_3 = ___3_w;
|
|
__this->___w = L_3;
|
|
//<source_info:./Library/PackageCache/com.unity.mathematics@8017b507cc74/Unity.Mathematics/float4.gen.cs:48>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 37979
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 Vector4_op_Implicit_m0217ADDC8CADDB93ACBABB17A50207698DAB0071_inline (Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3 ___0_v, const RuntimeMethod* method)
|
|
{
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
{
|
|
Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3 L_0 = ___0_v;
|
|
float L_1 = L_0.___x;
|
|
Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3 L_2 = ___0_v;
|
|
float L_3 = L_2.___y;
|
|
Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3 L_4 = ___0_v;
|
|
float L_5 = L_4.___z;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_6;
|
|
memset((&L_6), 0, sizeof(L_6));
|
|
Vector3__ctor_m376936E6B999EF1ECBE57D990A386303E2283DE0_inline((&L_6), L_1, L_3, L_5, NULL);
|
|
V_0 = L_6;
|
|
goto IL_001b;
|
|
}
|
|
|
|
IL_001b:
|
|
{
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_7 = V_0;
|
|
return L_7;
|
|
}
|
|
}
|
|
// Method Definition Index: 41542
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t math_max_m9083201D37A8ED0157B127B5878D9B7F3A2A40BE_inline (int32_t ___0_x, int32_t ___1_y, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.mathematics@8017b507cc74/Unity.Mathematics/math.cs:987>
|
|
int32_t L_0 = ___0_x;
|
|
int32_t L_1 = ___1_y;
|
|
if ((((int32_t)L_0) > ((int32_t)L_1)))
|
|
{
|
|
goto IL_0006;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_2 = ___1_y;
|
|
return L_2;
|
|
}
|
|
|
|
IL_0006:
|
|
{
|
|
int32_t L_3 = ___0_x;
|
|
return L_3;
|
|
}
|
|
}
|
|
// Method Definition Index: 33091
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float DecalProjector_get_drawDistance_mFD825C09FD3C99B01F33DBD057B180627010BE03_inline (DecalProjector_tE7CEBAABFEF36162FD325321C1F94173CEFEDF64* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/DecalProjector.cs:66>
|
|
float L_0 = __this->___m_DrawDistance;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 33093
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float DecalProjector_get_fadeScale_m0114135F3885A2FE9F94CB7D98C6A7595578C26C_inline (DecalProjector_tE7CEBAABFEF36162FD325321C1F94173CEFEDF64* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/DecalProjector.cs:85>
|
|
float L_0 = __this->___m_FadeScale;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 33095
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float DecalProjector_get_startAngleFade_mD61F7D4B1D2B19EA3ADD8B2F53AF26963B058BB8_inline (DecalProjector_tE7CEBAABFEF36162FD325321C1F94173CEFEDF64* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/DecalProjector.cs:104>
|
|
float L_0 = __this->___m_StartAngleFade;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 33097
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float DecalProjector_get_endAngleFade_m367D4FA628133F6020678EC43A4E93F60C9D038E_inline (DecalProjector_tE7CEBAABFEF36162FD325321C1F94173CEFEDF64* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/DecalProjector.cs:123>
|
|
float L_0 = __this->___m_EndAngleFade;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 33111
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float DecalProjector_get_fadeFactor_m5C265D9A466D5C9F558846AEDDEDBC4B8D6C83CD_inline (DecalProjector_tE7CEBAABFEF36162FD325321C1F94173CEFEDF64* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/DecalProjector.cs:241>
|
|
float L_0 = __this->___m_FadeFactor;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 33105
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t DecalProjector_get_scaleMode_m18359D12B22161553CB46FCE13436565747E33D1_inline (DecalProjector_tE7CEBAABFEF36162FD325321C1F94173CEFEDF64* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/DecalProjector.cs:186>
|
|
int32_t L_0 = __this->___m_ScaleMode;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 33103
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RenderingLayerMask_tD73B9FC1A65A937F18E56833FC83BF89C2B085A1 DecalProjector_get_renderingLayerMask_mF62BD63ED4EB13B2DF450E199A29252E7DAA3D9D_inline (DecalProjector_tE7CEBAABFEF36162FD325321C1F94173CEFEDF64* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Decal/DecalProjector.cs:175>
|
|
RenderingLayerMask_tD73B9FC1A65A937F18E56833FC83BF89C2B085A1 L_0 = __this->___m_RenderingLayerMask;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 41930
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float math_distancesq_m609DF85E2355430E1F4CD51CDC1971BD5F7D4AF3_inline (float4_t89D9A294E7A79BD81BFBDD18654508532958555E ___0_x, float4_t89D9A294E7A79BD81BFBDD18654508532958555E ___1_y, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.mathematics@8017b507cc74/Unity.Mathematics/math.cs:3786>
|
|
float4_t89D9A294E7A79BD81BFBDD18654508532958555E L_0 = ___1_y;
|
|
float4_t89D9A294E7A79BD81BFBDD18654508532958555E L_1 = ___0_x;
|
|
float4_t89D9A294E7A79BD81BFBDD18654508532958555E L_2;
|
|
L_2 = float4_op_Subtraction_mBC40F52B8A8EF499A1AA3CC987E5935BD188B4E3_inline(L_0, L_1, NULL);
|
|
float L_3;
|
|
L_3 = math_lengthsq_m246AAF09A2EA30D8FE4314442E031D9B5AFF31FF_inline(L_2, NULL);
|
|
return L_3;
|
|
}
|
|
}
|
|
// Method Definition Index: 41929
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float math_distancesq_mA49E8B34404D0C4DB3C9D4E065CE4CA255C9770B_inline (float3_t4AB5D88249ADB24F69FFD0793E8ED25E1CC3745E ___0_x, float3_t4AB5D88249ADB24F69FFD0793E8ED25E1CC3745E ___1_y, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.mathematics@8017b507cc74/Unity.Mathematics/math.cs:3779>
|
|
float3_t4AB5D88249ADB24F69FFD0793E8ED25E1CC3745E L_0 = ___1_y;
|
|
float3_t4AB5D88249ADB24F69FFD0793E8ED25E1CC3745E L_1 = ___0_x;
|
|
float3_t4AB5D88249ADB24F69FFD0793E8ED25E1CC3745E L_2;
|
|
L_2 = float3_op_Subtraction_mB6036E9849D95650D6E73DA0D179CD7B61E696F2_inline(L_0, L_1, NULL);
|
|
float L_3;
|
|
L_3 = math_lengthsq_mC699F3F214F05B26BEBAF1B46E3AA3C00407A532_inline(L_2, NULL);
|
|
return L_3;
|
|
}
|
|
}
|
|
// Method Definition Index: 42308
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float4x4_t7EDD16F7F57DC7F61A6302535F7C19FB97915DF2 math_mul_mF9EE8CEC6C3D6A57A74F806EA436DA9465FCB01E_inline (float4x4_t7EDD16F7F57DC7F61A6302535F7C19FB97915DF2 ___0_a, float4x4_t7EDD16F7F57DC7F61A6302535F7C19FB97915DF2 ___1_b, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.mathematics@8017b507cc74/Unity.Mathematics/matrix.gen.cs:607>
|
|
//<source_info:./Library/PackageCache/com.unity.mathematics@8017b507cc74/Unity.Mathematics/matrix.gen.cs:608>
|
|
//<source_info:./Library/PackageCache/com.unity.mathematics@8017b507cc74/Unity.Mathematics/matrix.gen.cs:609>
|
|
//<source_info:./Library/PackageCache/com.unity.mathematics@8017b507cc74/Unity.Mathematics/matrix.gen.cs:610>
|
|
//<source_info:./Library/PackageCache/com.unity.mathematics@8017b507cc74/Unity.Mathematics/matrix.gen.cs:611>
|
|
float4x4_t7EDD16F7F57DC7F61A6302535F7C19FB97915DF2 L_0 = ___0_a;
|
|
float4_t89D9A294E7A79BD81BFBDD18654508532958555E L_1 = L_0.___c0;
|
|
float4x4_t7EDD16F7F57DC7F61A6302535F7C19FB97915DF2 L_2 = ___1_b;
|
|
float4_t89D9A294E7A79BD81BFBDD18654508532958555E L_3 = L_2.___c0;
|
|
float L_4 = L_3.___x;
|
|
float4_t89D9A294E7A79BD81BFBDD18654508532958555E L_5;
|
|
L_5 = float4_op_Multiply_m712573F441DA8AF0843DE2167927FB76E642B1EB_inline(L_1, L_4, NULL);
|
|
float4x4_t7EDD16F7F57DC7F61A6302535F7C19FB97915DF2 L_6 = ___0_a;
|
|
float4_t89D9A294E7A79BD81BFBDD18654508532958555E L_7 = L_6.___c1;
|
|
float4x4_t7EDD16F7F57DC7F61A6302535F7C19FB97915DF2 L_8 = ___1_b;
|
|
float4_t89D9A294E7A79BD81BFBDD18654508532958555E L_9 = L_8.___c0;
|
|
float L_10 = L_9.___y;
|
|
float4_t89D9A294E7A79BD81BFBDD18654508532958555E L_11;
|
|
L_11 = float4_op_Multiply_m712573F441DA8AF0843DE2167927FB76E642B1EB_inline(L_7, L_10, NULL);
|
|
float4_t89D9A294E7A79BD81BFBDD18654508532958555E L_12;
|
|
L_12 = float4_op_Addition_m2CF2E1B2DAD4996DE3C5B6DFB90185E4CC8F0F44_inline(L_5, L_11, NULL);
|
|
float4x4_t7EDD16F7F57DC7F61A6302535F7C19FB97915DF2 L_13 = ___0_a;
|
|
float4_t89D9A294E7A79BD81BFBDD18654508532958555E L_14 = L_13.___c2;
|
|
float4x4_t7EDD16F7F57DC7F61A6302535F7C19FB97915DF2 L_15 = ___1_b;
|
|
float4_t89D9A294E7A79BD81BFBDD18654508532958555E L_16 = L_15.___c0;
|
|
float L_17 = L_16.___z;
|
|
float4_t89D9A294E7A79BD81BFBDD18654508532958555E L_18;
|
|
L_18 = float4_op_Multiply_m712573F441DA8AF0843DE2167927FB76E642B1EB_inline(L_14, L_17, NULL);
|
|
float4_t89D9A294E7A79BD81BFBDD18654508532958555E L_19;
|
|
L_19 = float4_op_Addition_m2CF2E1B2DAD4996DE3C5B6DFB90185E4CC8F0F44_inline(L_12, L_18, NULL);
|
|
float4x4_t7EDD16F7F57DC7F61A6302535F7C19FB97915DF2 L_20 = ___0_a;
|
|
float4_t89D9A294E7A79BD81BFBDD18654508532958555E L_21 = L_20.___c3;
|
|
float4x4_t7EDD16F7F57DC7F61A6302535F7C19FB97915DF2 L_22 = ___1_b;
|
|
float4_t89D9A294E7A79BD81BFBDD18654508532958555E L_23 = L_22.___c0;
|
|
float L_24 = L_23.___w;
|
|
float4_t89D9A294E7A79BD81BFBDD18654508532958555E L_25;
|
|
L_25 = float4_op_Multiply_m712573F441DA8AF0843DE2167927FB76E642B1EB_inline(L_21, L_24, NULL);
|
|
float4_t89D9A294E7A79BD81BFBDD18654508532958555E L_26;
|
|
L_26 = float4_op_Addition_m2CF2E1B2DAD4996DE3C5B6DFB90185E4CC8F0F44_inline(L_19, L_25, NULL);
|
|
float4x4_t7EDD16F7F57DC7F61A6302535F7C19FB97915DF2 L_27 = ___0_a;
|
|
float4_t89D9A294E7A79BD81BFBDD18654508532958555E L_28 = L_27.___c0;
|
|
float4x4_t7EDD16F7F57DC7F61A6302535F7C19FB97915DF2 L_29 = ___1_b;
|
|
float4_t89D9A294E7A79BD81BFBDD18654508532958555E L_30 = L_29.___c1;
|
|
float L_31 = L_30.___x;
|
|
float4_t89D9A294E7A79BD81BFBDD18654508532958555E L_32;
|
|
L_32 = float4_op_Multiply_m712573F441DA8AF0843DE2167927FB76E642B1EB_inline(L_28, L_31, NULL);
|
|
float4x4_t7EDD16F7F57DC7F61A6302535F7C19FB97915DF2 L_33 = ___0_a;
|
|
float4_t89D9A294E7A79BD81BFBDD18654508532958555E L_34 = L_33.___c1;
|
|
float4x4_t7EDD16F7F57DC7F61A6302535F7C19FB97915DF2 L_35 = ___1_b;
|
|
float4_t89D9A294E7A79BD81BFBDD18654508532958555E L_36 = L_35.___c1;
|
|
float L_37 = L_36.___y;
|
|
float4_t89D9A294E7A79BD81BFBDD18654508532958555E L_38;
|
|
L_38 = float4_op_Multiply_m712573F441DA8AF0843DE2167927FB76E642B1EB_inline(L_34, L_37, NULL);
|
|
float4_t89D9A294E7A79BD81BFBDD18654508532958555E L_39;
|
|
L_39 = float4_op_Addition_m2CF2E1B2DAD4996DE3C5B6DFB90185E4CC8F0F44_inline(L_32, L_38, NULL);
|
|
float4x4_t7EDD16F7F57DC7F61A6302535F7C19FB97915DF2 L_40 = ___0_a;
|
|
float4_t89D9A294E7A79BD81BFBDD18654508532958555E L_41 = L_40.___c2;
|
|
float4x4_t7EDD16F7F57DC7F61A6302535F7C19FB97915DF2 L_42 = ___1_b;
|
|
float4_t89D9A294E7A79BD81BFBDD18654508532958555E L_43 = L_42.___c1;
|
|
float L_44 = L_43.___z;
|
|
float4_t89D9A294E7A79BD81BFBDD18654508532958555E L_45;
|
|
L_45 = float4_op_Multiply_m712573F441DA8AF0843DE2167927FB76E642B1EB_inline(L_41, L_44, NULL);
|
|
float4_t89D9A294E7A79BD81BFBDD18654508532958555E L_46;
|
|
L_46 = float4_op_Addition_m2CF2E1B2DAD4996DE3C5B6DFB90185E4CC8F0F44_inline(L_39, L_45, NULL);
|
|
float4x4_t7EDD16F7F57DC7F61A6302535F7C19FB97915DF2 L_47 = ___0_a;
|
|
float4_t89D9A294E7A79BD81BFBDD18654508532958555E L_48 = L_47.___c3;
|
|
float4x4_t7EDD16F7F57DC7F61A6302535F7C19FB97915DF2 L_49 = ___1_b;
|
|
float4_t89D9A294E7A79BD81BFBDD18654508532958555E L_50 = L_49.___c1;
|
|
float L_51 = L_50.___w;
|
|
float4_t89D9A294E7A79BD81BFBDD18654508532958555E L_52;
|
|
L_52 = float4_op_Multiply_m712573F441DA8AF0843DE2167927FB76E642B1EB_inline(L_48, L_51, NULL);
|
|
float4_t89D9A294E7A79BD81BFBDD18654508532958555E L_53;
|
|
L_53 = float4_op_Addition_m2CF2E1B2DAD4996DE3C5B6DFB90185E4CC8F0F44_inline(L_46, L_52, NULL);
|
|
float4x4_t7EDD16F7F57DC7F61A6302535F7C19FB97915DF2 L_54 = ___0_a;
|
|
float4_t89D9A294E7A79BD81BFBDD18654508532958555E L_55 = L_54.___c0;
|
|
float4x4_t7EDD16F7F57DC7F61A6302535F7C19FB97915DF2 L_56 = ___1_b;
|
|
float4_t89D9A294E7A79BD81BFBDD18654508532958555E L_57 = L_56.___c2;
|
|
float L_58 = L_57.___x;
|
|
float4_t89D9A294E7A79BD81BFBDD18654508532958555E L_59;
|
|
L_59 = float4_op_Multiply_m712573F441DA8AF0843DE2167927FB76E642B1EB_inline(L_55, L_58, NULL);
|
|
float4x4_t7EDD16F7F57DC7F61A6302535F7C19FB97915DF2 L_60 = ___0_a;
|
|
float4_t89D9A294E7A79BD81BFBDD18654508532958555E L_61 = L_60.___c1;
|
|
float4x4_t7EDD16F7F57DC7F61A6302535F7C19FB97915DF2 L_62 = ___1_b;
|
|
float4_t89D9A294E7A79BD81BFBDD18654508532958555E L_63 = L_62.___c2;
|
|
float L_64 = L_63.___y;
|
|
float4_t89D9A294E7A79BD81BFBDD18654508532958555E L_65;
|
|
L_65 = float4_op_Multiply_m712573F441DA8AF0843DE2167927FB76E642B1EB_inline(L_61, L_64, NULL);
|
|
float4_t89D9A294E7A79BD81BFBDD18654508532958555E L_66;
|
|
L_66 = float4_op_Addition_m2CF2E1B2DAD4996DE3C5B6DFB90185E4CC8F0F44_inline(L_59, L_65, NULL);
|
|
float4x4_t7EDD16F7F57DC7F61A6302535F7C19FB97915DF2 L_67 = ___0_a;
|
|
float4_t89D9A294E7A79BD81BFBDD18654508532958555E L_68 = L_67.___c2;
|
|
float4x4_t7EDD16F7F57DC7F61A6302535F7C19FB97915DF2 L_69 = ___1_b;
|
|
float4_t89D9A294E7A79BD81BFBDD18654508532958555E L_70 = L_69.___c2;
|
|
float L_71 = L_70.___z;
|
|
float4_t89D9A294E7A79BD81BFBDD18654508532958555E L_72;
|
|
L_72 = float4_op_Multiply_m712573F441DA8AF0843DE2167927FB76E642B1EB_inline(L_68, L_71, NULL);
|
|
float4_t89D9A294E7A79BD81BFBDD18654508532958555E L_73;
|
|
L_73 = float4_op_Addition_m2CF2E1B2DAD4996DE3C5B6DFB90185E4CC8F0F44_inline(L_66, L_72, NULL);
|
|
float4x4_t7EDD16F7F57DC7F61A6302535F7C19FB97915DF2 L_74 = ___0_a;
|
|
float4_t89D9A294E7A79BD81BFBDD18654508532958555E L_75 = L_74.___c3;
|
|
float4x4_t7EDD16F7F57DC7F61A6302535F7C19FB97915DF2 L_76 = ___1_b;
|
|
float4_t89D9A294E7A79BD81BFBDD18654508532958555E L_77 = L_76.___c2;
|
|
float L_78 = L_77.___w;
|
|
float4_t89D9A294E7A79BD81BFBDD18654508532958555E L_79;
|
|
L_79 = float4_op_Multiply_m712573F441DA8AF0843DE2167927FB76E642B1EB_inline(L_75, L_78, NULL);
|
|
float4_t89D9A294E7A79BD81BFBDD18654508532958555E L_80;
|
|
L_80 = float4_op_Addition_m2CF2E1B2DAD4996DE3C5B6DFB90185E4CC8F0F44_inline(L_73, L_79, NULL);
|
|
float4x4_t7EDD16F7F57DC7F61A6302535F7C19FB97915DF2 L_81 = ___0_a;
|
|
float4_t89D9A294E7A79BD81BFBDD18654508532958555E L_82 = L_81.___c0;
|
|
float4x4_t7EDD16F7F57DC7F61A6302535F7C19FB97915DF2 L_83 = ___1_b;
|
|
float4_t89D9A294E7A79BD81BFBDD18654508532958555E L_84 = L_83.___c3;
|
|
float L_85 = L_84.___x;
|
|
float4_t89D9A294E7A79BD81BFBDD18654508532958555E L_86;
|
|
L_86 = float4_op_Multiply_m712573F441DA8AF0843DE2167927FB76E642B1EB_inline(L_82, L_85, NULL);
|
|
float4x4_t7EDD16F7F57DC7F61A6302535F7C19FB97915DF2 L_87 = ___0_a;
|
|
float4_t89D9A294E7A79BD81BFBDD18654508532958555E L_88 = L_87.___c1;
|
|
float4x4_t7EDD16F7F57DC7F61A6302535F7C19FB97915DF2 L_89 = ___1_b;
|
|
float4_t89D9A294E7A79BD81BFBDD18654508532958555E L_90 = L_89.___c3;
|
|
float L_91 = L_90.___y;
|
|
float4_t89D9A294E7A79BD81BFBDD18654508532958555E L_92;
|
|
L_92 = float4_op_Multiply_m712573F441DA8AF0843DE2167927FB76E642B1EB_inline(L_88, L_91, NULL);
|
|
float4_t89D9A294E7A79BD81BFBDD18654508532958555E L_93;
|
|
L_93 = float4_op_Addition_m2CF2E1B2DAD4996DE3C5B6DFB90185E4CC8F0F44_inline(L_86, L_92, NULL);
|
|
float4x4_t7EDD16F7F57DC7F61A6302535F7C19FB97915DF2 L_94 = ___0_a;
|
|
float4_t89D9A294E7A79BD81BFBDD18654508532958555E L_95 = L_94.___c2;
|
|
float4x4_t7EDD16F7F57DC7F61A6302535F7C19FB97915DF2 L_96 = ___1_b;
|
|
float4_t89D9A294E7A79BD81BFBDD18654508532958555E L_97 = L_96.___c3;
|
|
float L_98 = L_97.___z;
|
|
float4_t89D9A294E7A79BD81BFBDD18654508532958555E L_99;
|
|
L_99 = float4_op_Multiply_m712573F441DA8AF0843DE2167927FB76E642B1EB_inline(L_95, L_98, NULL);
|
|
float4_t89D9A294E7A79BD81BFBDD18654508532958555E L_100;
|
|
L_100 = float4_op_Addition_m2CF2E1B2DAD4996DE3C5B6DFB90185E4CC8F0F44_inline(L_93, L_99, NULL);
|
|
float4x4_t7EDD16F7F57DC7F61A6302535F7C19FB97915DF2 L_101 = ___0_a;
|
|
float4_t89D9A294E7A79BD81BFBDD18654508532958555E L_102 = L_101.___c3;
|
|
float4x4_t7EDD16F7F57DC7F61A6302535F7C19FB97915DF2 L_103 = ___1_b;
|
|
float4_t89D9A294E7A79BD81BFBDD18654508532958555E L_104 = L_103.___c3;
|
|
float L_105 = L_104.___w;
|
|
float4_t89D9A294E7A79BD81BFBDD18654508532958555E L_106;
|
|
L_106 = float4_op_Multiply_m712573F441DA8AF0843DE2167927FB76E642B1EB_inline(L_102, L_105, NULL);
|
|
float4_t89D9A294E7A79BD81BFBDD18654508532958555E L_107;
|
|
L_107 = float4_op_Addition_m2CF2E1B2DAD4996DE3C5B6DFB90185E4CC8F0F44_inline(L_100, L_106, NULL);
|
|
float4x4_t7EDD16F7F57DC7F61A6302535F7C19FB97915DF2 L_108;
|
|
L_108 = math_float4x4_m7C95B2B93CDEE0AF483EB84446F9F06F7B1AD261_inline(L_26, L_53, L_80, L_107, NULL);
|
|
return L_108;
|
|
}
|
|
}
|
|
// Method Definition Index: 42472
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR quaternion_tD6BCBECAF088B9EBAE2345EC8534C7A1A4C910D4 math_mul_m3CC0941E6A3DE5718C6439421E74D7F80793F652_inline (quaternion_tD6BCBECAF088B9EBAE2345EC8534C7A1A4C910D4 ___0_a, quaternion_tD6BCBECAF088B9EBAE2345EC8534C7A1A4C910D4 ___1_b, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.mathematics@8017b507cc74/Unity.Mathematics/quaternion.cs:632>
|
|
float4_t89D9A294E7A79BD81BFBDD18654508532958555E* L_0 = (float4_t89D9A294E7A79BD81BFBDD18654508532958555E*)(&(&___0_a)->___value);
|
|
float4_t89D9A294E7A79BD81BFBDD18654508532958555E L_1;
|
|
L_1 = float4_get_wwww_mF04E8B99431D2717DEE58BDAE207EF4C7E1A0009_inline(L_0, NULL);
|
|
quaternion_tD6BCBECAF088B9EBAE2345EC8534C7A1A4C910D4 L_2 = ___1_b;
|
|
float4_t89D9A294E7A79BD81BFBDD18654508532958555E L_3 = L_2.___value;
|
|
float4_t89D9A294E7A79BD81BFBDD18654508532958555E L_4;
|
|
L_4 = float4_op_Multiply_m0E98338FB7DFF55B101EBCD78A8703ADB9C08667_inline(L_1, L_3, NULL);
|
|
float4_t89D9A294E7A79BD81BFBDD18654508532958555E* L_5 = (float4_t89D9A294E7A79BD81BFBDD18654508532958555E*)(&(&___0_a)->___value);
|
|
float4_t89D9A294E7A79BD81BFBDD18654508532958555E L_6;
|
|
L_6 = float4_get_xyzx_m5FFC709BBF25AC7B7755AE077E4288E47089C76C_inline(L_5, NULL);
|
|
float4_t89D9A294E7A79BD81BFBDD18654508532958555E* L_7 = (float4_t89D9A294E7A79BD81BFBDD18654508532958555E*)(&(&___1_b)->___value);
|
|
float4_t89D9A294E7A79BD81BFBDD18654508532958555E L_8;
|
|
L_8 = float4_get_wwwx_m698BBD6517D0DCF19C3529E0E686FF430642E480_inline(L_7, NULL);
|
|
float4_t89D9A294E7A79BD81BFBDD18654508532958555E L_9;
|
|
L_9 = float4_op_Multiply_m0E98338FB7DFF55B101EBCD78A8703ADB9C08667_inline(L_6, L_8, NULL);
|
|
float4_t89D9A294E7A79BD81BFBDD18654508532958555E* L_10 = (float4_t89D9A294E7A79BD81BFBDD18654508532958555E*)(&(&___0_a)->___value);
|
|
float4_t89D9A294E7A79BD81BFBDD18654508532958555E L_11;
|
|
L_11 = float4_get_yzxy_m78C60157637373AC6CB36343778B04CAA046ADDD_inline(L_10, NULL);
|
|
float4_t89D9A294E7A79BD81BFBDD18654508532958555E* L_12 = (float4_t89D9A294E7A79BD81BFBDD18654508532958555E*)(&(&___1_b)->___value);
|
|
float4_t89D9A294E7A79BD81BFBDD18654508532958555E L_13;
|
|
L_13 = float4_get_zxyy_m4B8D0449EEB8DD3CE5A79C96E911C70617339C4E_inline(L_12, NULL);
|
|
float4_t89D9A294E7A79BD81BFBDD18654508532958555E L_14;
|
|
L_14 = float4_op_Multiply_m0E98338FB7DFF55B101EBCD78A8703ADB9C08667_inline(L_11, L_13, NULL);
|
|
float4_t89D9A294E7A79BD81BFBDD18654508532958555E L_15;
|
|
L_15 = float4_op_Addition_m2CF2E1B2DAD4996DE3C5B6DFB90185E4CC8F0F44_inline(L_9, L_14, NULL);
|
|
float4_t89D9A294E7A79BD81BFBDD18654508532958555E L_16;
|
|
L_16 = math_float4_m16697C284FA0C25A84F3DC3E99F3D4C306B6BFBF_inline((1.0f), (1.0f), (1.0f), (-1.0f), NULL);
|
|
float4_t89D9A294E7A79BD81BFBDD18654508532958555E L_17;
|
|
L_17 = float4_op_Multiply_m0E98338FB7DFF55B101EBCD78A8703ADB9C08667_inline(L_15, L_16, NULL);
|
|
float4_t89D9A294E7A79BD81BFBDD18654508532958555E L_18;
|
|
L_18 = float4_op_Addition_m2CF2E1B2DAD4996DE3C5B6DFB90185E4CC8F0F44_inline(L_4, L_17, NULL);
|
|
float4_t89D9A294E7A79BD81BFBDD18654508532958555E* L_19 = (float4_t89D9A294E7A79BD81BFBDD18654508532958555E*)(&(&___0_a)->___value);
|
|
float4_t89D9A294E7A79BD81BFBDD18654508532958555E L_20;
|
|
L_20 = float4_get_zxyz_m91C90CDA336353253B33F0407198ACCC593EBB1B_inline(L_19, NULL);
|
|
float4_t89D9A294E7A79BD81BFBDD18654508532958555E* L_21 = (float4_t89D9A294E7A79BD81BFBDD18654508532958555E*)(&(&___1_b)->___value);
|
|
float4_t89D9A294E7A79BD81BFBDD18654508532958555E L_22;
|
|
L_22 = float4_get_yzxz_mE81FC33B6A0D370B2C8DB339CC5501533BB31223_inline(L_21, NULL);
|
|
float4_t89D9A294E7A79BD81BFBDD18654508532958555E L_23;
|
|
L_23 = float4_op_Multiply_m0E98338FB7DFF55B101EBCD78A8703ADB9C08667_inline(L_20, L_22, NULL);
|
|
float4_t89D9A294E7A79BD81BFBDD18654508532958555E L_24;
|
|
L_24 = float4_op_Subtraction_mBC40F52B8A8EF499A1AA3CC987E5935BD188B4E3_inline(L_18, L_23, NULL);
|
|
quaternion_tD6BCBECAF088B9EBAE2345EC8534C7A1A4C910D4 L_25;
|
|
L_25 = math_quaternion_m315B4CA2F8475CC33F3C73187F00AC8B64BBF939_inline(L_24, NULL);
|
|
return L_25;
|
|
}
|
|
}
|
|
// Method Definition Index: 45186
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void float3__ctor_mC61002CD0EC13D7C37D846D021A78C028FB80DB9_inline (float3_t4AB5D88249ADB24F69FFD0793E8ED25E1CC3745E* __this, float ___0_x, float ___1_y, float ___2_z, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.mathematics@8017b507cc74/Unity.Mathematics/float3.gen.cs:41>
|
|
float L_0 = ___0_x;
|
|
__this->___x = L_0;
|
|
//<source_info:./Library/PackageCache/com.unity.mathematics@8017b507cc74/Unity.Mathematics/float3.gen.cs:42>
|
|
float L_1 = ___1_y;
|
|
__this->___y = L_1;
|
|
//<source_info:./Library/PackageCache/com.unity.mathematics@8017b507cc74/Unity.Mathematics/float3.gen.cs:43>
|
|
float L_2 = ___2_z;
|
|
__this->___z = L_2;
|
|
//<source_info:./Library/PackageCache/com.unity.mathematics@8017b507cc74/Unity.Mathematics/float3.gen.cs:44>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 46298
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float4x4_t7EDD16F7F57DC7F61A6302535F7C19FB97915DF2 float4x4_TRS_m253E5B92580E420E113F8C195664D06F967EEF03_inline (float3_t4AB5D88249ADB24F69FFD0793E8ED25E1CC3745E ___0_translation, quaternion_tD6BCBECAF088B9EBAE2345EC8534C7A1A4C910D4 ___1_rotation, float3_t4AB5D88249ADB24F69FFD0793E8ED25E1CC3745E ___2_scale, const RuntimeMethod* method)
|
|
{
|
|
float3x3_tB318DB8C7E54B6CA9E14EB9AC7F5964C1189FC79 V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.mathematics@8017b507cc74/Unity.Mathematics/matrix.cs:1011>
|
|
quaternion_tD6BCBECAF088B9EBAE2345EC8534C7A1A4C910D4 L_0 = ___1_rotation;
|
|
float3x3_tB318DB8C7E54B6CA9E14EB9AC7F5964C1189FC79 L_1;
|
|
L_1 = math_float3x3_m850F2B065688B7C95009136DAA44853A04069298_inline(L_0, NULL);
|
|
V_0 = L_1;
|
|
//<source_info:./Library/PackageCache/com.unity.mathematics@8017b507cc74/Unity.Mathematics/matrix.cs:1012>
|
|
//<source_info:./Library/PackageCache/com.unity.mathematics@8017b507cc74/Unity.Mathematics/matrix.cs:1013>
|
|
//<source_info:./Library/PackageCache/com.unity.mathematics@8017b507cc74/Unity.Mathematics/matrix.cs:1014>
|
|
//<source_info:./Library/PackageCache/com.unity.mathematics@8017b507cc74/Unity.Mathematics/matrix.cs:1015>
|
|
float3x3_tB318DB8C7E54B6CA9E14EB9AC7F5964C1189FC79 L_2 = V_0;
|
|
float3_t4AB5D88249ADB24F69FFD0793E8ED25E1CC3745E L_3 = L_2.___c0;
|
|
float3_t4AB5D88249ADB24F69FFD0793E8ED25E1CC3745E L_4 = ___2_scale;
|
|
float L_5 = L_4.___x;
|
|
float3_t4AB5D88249ADB24F69FFD0793E8ED25E1CC3745E L_6;
|
|
L_6 = float3_op_Multiply_m6E5DC552C8B0F9A180298BD9197FF47B14E0EA81_inline(L_3, L_5, NULL);
|
|
float4_t89D9A294E7A79BD81BFBDD18654508532958555E L_7;
|
|
L_7 = math_float4_mE54104D60E6B9A358C75CB6F378118AB4914BFC4_inline(L_6, (0.0f), NULL);
|
|
float3x3_tB318DB8C7E54B6CA9E14EB9AC7F5964C1189FC79 L_8 = V_0;
|
|
float3_t4AB5D88249ADB24F69FFD0793E8ED25E1CC3745E L_9 = L_8.___c1;
|
|
float3_t4AB5D88249ADB24F69FFD0793E8ED25E1CC3745E L_10 = ___2_scale;
|
|
float L_11 = L_10.___y;
|
|
float3_t4AB5D88249ADB24F69FFD0793E8ED25E1CC3745E L_12;
|
|
L_12 = float3_op_Multiply_m6E5DC552C8B0F9A180298BD9197FF47B14E0EA81_inline(L_9, L_11, NULL);
|
|
float4_t89D9A294E7A79BD81BFBDD18654508532958555E L_13;
|
|
L_13 = math_float4_mE54104D60E6B9A358C75CB6F378118AB4914BFC4_inline(L_12, (0.0f), NULL);
|
|
float3x3_tB318DB8C7E54B6CA9E14EB9AC7F5964C1189FC79 L_14 = V_0;
|
|
float3_t4AB5D88249ADB24F69FFD0793E8ED25E1CC3745E L_15 = L_14.___c2;
|
|
float3_t4AB5D88249ADB24F69FFD0793E8ED25E1CC3745E L_16 = ___2_scale;
|
|
float L_17 = L_16.___z;
|
|
float3_t4AB5D88249ADB24F69FFD0793E8ED25E1CC3745E L_18;
|
|
L_18 = float3_op_Multiply_m6E5DC552C8B0F9A180298BD9197FF47B14E0EA81_inline(L_15, L_17, NULL);
|
|
float4_t89D9A294E7A79BD81BFBDD18654508532958555E L_19;
|
|
L_19 = math_float4_mE54104D60E6B9A358C75CB6F378118AB4914BFC4_inline(L_18, (0.0f), NULL);
|
|
float3_t4AB5D88249ADB24F69FFD0793E8ED25E1CC3745E L_20 = ___0_translation;
|
|
float4_t89D9A294E7A79BD81BFBDD18654508532958555E L_21;
|
|
L_21 = math_float4_mE54104D60E6B9A358C75CB6F378118AB4914BFC4_inline(L_20, (1.0f), NULL);
|
|
float4x4_t7EDD16F7F57DC7F61A6302535F7C19FB97915DF2 L_22;
|
|
L_22 = math_float4x4_m7C95B2B93CDEE0AF483EB84446F9F06F7B1AD261_inline(L_7, L_13, L_19, L_21, NULL);
|
|
return L_22;
|
|
}
|
|
}
|
|
// Method Definition Index: 42305
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float4_t89D9A294E7A79BD81BFBDD18654508532958555E math_mul_m080515A2DCB7CCE0F4635A8E87B1635C02D72A4E_inline (float4x4_t7EDD16F7F57DC7F61A6302535F7C19FB97915DF2 ___0_a, float4_t89D9A294E7A79BD81BFBDD18654508532958555E ___1_b, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.mathematics@8017b507cc74/Unity.Mathematics/matrix.gen.cs:572>
|
|
float4x4_t7EDD16F7F57DC7F61A6302535F7C19FB97915DF2 L_0 = ___0_a;
|
|
float4_t89D9A294E7A79BD81BFBDD18654508532958555E L_1 = L_0.___c0;
|
|
float4_t89D9A294E7A79BD81BFBDD18654508532958555E L_2 = ___1_b;
|
|
float L_3 = L_2.___x;
|
|
float4_t89D9A294E7A79BD81BFBDD18654508532958555E L_4;
|
|
L_4 = float4_op_Multiply_m712573F441DA8AF0843DE2167927FB76E642B1EB_inline(L_1, L_3, NULL);
|
|
float4x4_t7EDD16F7F57DC7F61A6302535F7C19FB97915DF2 L_5 = ___0_a;
|
|
float4_t89D9A294E7A79BD81BFBDD18654508532958555E L_6 = L_5.___c1;
|
|
float4_t89D9A294E7A79BD81BFBDD18654508532958555E L_7 = ___1_b;
|
|
float L_8 = L_7.___y;
|
|
float4_t89D9A294E7A79BD81BFBDD18654508532958555E L_9;
|
|
L_9 = float4_op_Multiply_m712573F441DA8AF0843DE2167927FB76E642B1EB_inline(L_6, L_8, NULL);
|
|
float4_t89D9A294E7A79BD81BFBDD18654508532958555E L_10;
|
|
L_10 = float4_op_Addition_m2CF2E1B2DAD4996DE3C5B6DFB90185E4CC8F0F44_inline(L_4, L_9, NULL);
|
|
float4x4_t7EDD16F7F57DC7F61A6302535F7C19FB97915DF2 L_11 = ___0_a;
|
|
float4_t89D9A294E7A79BD81BFBDD18654508532958555E L_12 = L_11.___c2;
|
|
float4_t89D9A294E7A79BD81BFBDD18654508532958555E L_13 = ___1_b;
|
|
float L_14 = L_13.___z;
|
|
float4_t89D9A294E7A79BD81BFBDD18654508532958555E L_15;
|
|
L_15 = float4_op_Multiply_m712573F441DA8AF0843DE2167927FB76E642B1EB_inline(L_12, L_14, NULL);
|
|
float4_t89D9A294E7A79BD81BFBDD18654508532958555E L_16;
|
|
L_16 = float4_op_Addition_m2CF2E1B2DAD4996DE3C5B6DFB90185E4CC8F0F44_inline(L_10, L_15, NULL);
|
|
float4x4_t7EDD16F7F57DC7F61A6302535F7C19FB97915DF2 L_17 = ___0_a;
|
|
float4_t89D9A294E7A79BD81BFBDD18654508532958555E L_18 = L_17.___c3;
|
|
float4_t89D9A294E7A79BD81BFBDD18654508532958555E L_19 = ___1_b;
|
|
float L_20 = L_19.___w;
|
|
float4_t89D9A294E7A79BD81BFBDD18654508532958555E L_21;
|
|
L_21 = float4_op_Multiply_m712573F441DA8AF0843DE2167927FB76E642B1EB_inline(L_18, L_20, NULL);
|
|
float4_t89D9A294E7A79BD81BFBDD18654508532958555E L_22;
|
|
L_22 = float4_op_Addition_m2CF2E1B2DAD4996DE3C5B6DFB90185E4CC8F0F44_inline(L_16, L_21, NULL);
|
|
return L_22;
|
|
}
|
|
}
|
|
// Method Definition Index: 45637
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float4_t89D9A294E7A79BD81BFBDD18654508532958555E float4_op_Addition_m2CF2E1B2DAD4996DE3C5B6DFB90185E4CC8F0F44_inline (float4_t89D9A294E7A79BD81BFBDD18654508532958555E ___0_lhs, float4_t89D9A294E7A79BD81BFBDD18654508532958555E ___1_rhs, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.mathematics@8017b507cc74/Unity.Mathematics/float4.gen.cs:352>
|
|
float4_t89D9A294E7A79BD81BFBDD18654508532958555E L_0 = ___0_lhs;
|
|
float L_1 = L_0.___x;
|
|
float4_t89D9A294E7A79BD81BFBDD18654508532958555E L_2 = ___1_rhs;
|
|
float L_3 = L_2.___x;
|
|
float4_t89D9A294E7A79BD81BFBDD18654508532958555E L_4 = ___0_lhs;
|
|
float L_5 = L_4.___y;
|
|
float4_t89D9A294E7A79BD81BFBDD18654508532958555E L_6 = ___1_rhs;
|
|
float L_7 = L_6.___y;
|
|
float4_t89D9A294E7A79BD81BFBDD18654508532958555E L_8 = ___0_lhs;
|
|
float L_9 = L_8.___z;
|
|
float4_t89D9A294E7A79BD81BFBDD18654508532958555E L_10 = ___1_rhs;
|
|
float L_11 = L_10.___z;
|
|
float4_t89D9A294E7A79BD81BFBDD18654508532958555E L_12 = ___0_lhs;
|
|
float L_13 = L_12.___w;
|
|
float4_t89D9A294E7A79BD81BFBDD18654508532958555E L_14 = ___1_rhs;
|
|
float L_15 = L_14.___w;
|
|
float4_t89D9A294E7A79BD81BFBDD18654508532958555E L_16;
|
|
memset((&L_16), 0, sizeof(L_16));
|
|
float4__ctor_mB2F7F2D8BCE8159BEF5A0D6400499E211858ED2D_inline((&L_16), ((float)il2cpp_codegen_add(L_1, L_3)), ((float)il2cpp_codegen_add(L_5, L_7)), ((float)il2cpp_codegen_add(L_9, L_11)), ((float)il2cpp_codegen_add(L_13, L_15)), NULL);
|
|
return L_16;
|
|
}
|
|
}
|
|
// Method Definition Index: 45644
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float4_t89D9A294E7A79BD81BFBDD18654508532958555E float4_op_Division_mA82993BB826C4799764D5B0E543D0D7776F4F8A2_inline (float4_t89D9A294E7A79BD81BFBDD18654508532958555E ___0_lhs, float ___1_rhs, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.mathematics@8017b507cc74/Unity.Mathematics/float4.gen.cs:403>
|
|
float4_t89D9A294E7A79BD81BFBDD18654508532958555E L_0 = ___0_lhs;
|
|
float L_1 = L_0.___x;
|
|
float L_2 = ___1_rhs;
|
|
float4_t89D9A294E7A79BD81BFBDD18654508532958555E L_3 = ___0_lhs;
|
|
float L_4 = L_3.___y;
|
|
float L_5 = ___1_rhs;
|
|
float4_t89D9A294E7A79BD81BFBDD18654508532958555E L_6 = ___0_lhs;
|
|
float L_7 = L_6.___z;
|
|
float L_8 = ___1_rhs;
|
|
float4_t89D9A294E7A79BD81BFBDD18654508532958555E L_9 = ___0_lhs;
|
|
float L_10 = L_9.___w;
|
|
float L_11 = ___1_rhs;
|
|
float4_t89D9A294E7A79BD81BFBDD18654508532958555E L_12;
|
|
memset((&L_12), 0, sizeof(L_12));
|
|
float4__ctor_mB2F7F2D8BCE8159BEF5A0D6400499E211858ED2D_inline((&L_12), ((float)(L_1/L_2)), ((float)(L_4/L_5)), ((float)(L_7/L_8)), ((float)(L_10/L_11)), NULL);
|
|
return L_12;
|
|
}
|
|
}
|
|
// Method Definition Index: 45957
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float3_t4AB5D88249ADB24F69FFD0793E8ED25E1CC3745E float4_get_xyz_mE6EC829F35512C7BC159047FDC134E80F3B37A06_inline (float4_t89D9A294E7A79BD81BFBDD18654508532958555E* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.mathematics@8017b507cc74/Unity.Mathematics/float4.gen.cs:3008>
|
|
float L_0 = __this->___x;
|
|
float L_1 = __this->___y;
|
|
float L_2 = __this->___z;
|
|
float3_t4AB5D88249ADB24F69FFD0793E8ED25E1CC3745E L_3;
|
|
memset((&L_3), 0, sizeof(L_3));
|
|
float3__ctor_mC61002CD0EC13D7C37D846D021A78C028FB80DB9_inline((&L_3), L_0, L_1, L_2, NULL);
|
|
return L_3;
|
|
}
|
|
}
|
|
// Method Definition Index: 45640
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float4_t89D9A294E7A79BD81BFBDD18654508532958555E float4_op_Subtraction_mBC40F52B8A8EF499A1AA3CC987E5935BD188B4E3_inline (float4_t89D9A294E7A79BD81BFBDD18654508532958555E ___0_lhs, float4_t89D9A294E7A79BD81BFBDD18654508532958555E ___1_rhs, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.mathematics@8017b507cc74/Unity.Mathematics/float4.gen.cs:374>
|
|
float4_t89D9A294E7A79BD81BFBDD18654508532958555E L_0 = ___0_lhs;
|
|
float L_1 = L_0.___x;
|
|
float4_t89D9A294E7A79BD81BFBDD18654508532958555E L_2 = ___1_rhs;
|
|
float L_3 = L_2.___x;
|
|
float4_t89D9A294E7A79BD81BFBDD18654508532958555E L_4 = ___0_lhs;
|
|
float L_5 = L_4.___y;
|
|
float4_t89D9A294E7A79BD81BFBDD18654508532958555E L_6 = ___1_rhs;
|
|
float L_7 = L_6.___y;
|
|
float4_t89D9A294E7A79BD81BFBDD18654508532958555E L_8 = ___0_lhs;
|
|
float L_9 = L_8.___z;
|
|
float4_t89D9A294E7A79BD81BFBDD18654508532958555E L_10 = ___1_rhs;
|
|
float L_11 = L_10.___z;
|
|
float4_t89D9A294E7A79BD81BFBDD18654508532958555E L_12 = ___0_lhs;
|
|
float L_13 = L_12.___w;
|
|
float4_t89D9A294E7A79BD81BFBDD18654508532958555E L_14 = ___1_rhs;
|
|
float L_15 = L_14.___w;
|
|
float4_t89D9A294E7A79BD81BFBDD18654508532958555E L_16;
|
|
memset((&L_16), 0, sizeof(L_16));
|
|
float4__ctor_mB2F7F2D8BCE8159BEF5A0D6400499E211858ED2D_inline((&L_16), ((float)il2cpp_codegen_subtract(L_1, L_3)), ((float)il2cpp_codegen_subtract(L_5, L_7)), ((float)il2cpp_codegen_subtract(L_9, L_11)), ((float)il2cpp_codegen_subtract(L_13, L_15)), NULL);
|
|
return L_16;
|
|
}
|
|
}
|
|
// Method Definition Index: 41906
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float math_length_mDA291F159E5B088CF2EF354538EBDBC60063C9E7_inline (float4_t89D9A294E7A79BD81BFBDD18654508532958555E ___0_x, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.mathematics@8017b507cc74/Unity.Mathematics/math.cs:3624>
|
|
float4_t89D9A294E7A79BD81BFBDD18654508532958555E L_0 = ___0_x;
|
|
float4_t89D9A294E7A79BD81BFBDD18654508532958555E L_1 = ___0_x;
|
|
float L_2;
|
|
L_2 = math_dot_m20F2285F7227DC308D9CF2DCB8EAAD3E774501D4_inline(L_0, L_1, NULL);
|
|
float L_3;
|
|
L_3 = math_sqrt_mEF31DE7BD0179009683C5D7B0C58E6571B30CF4A_inline(L_2, NULL);
|
|
return L_3;
|
|
}
|
|
}
|
|
// Method Definition Index: 48446
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR quaternion_tD6BCBECAF088B9EBAE2345EC8534C7A1A4C910D4 quaternion_EulerXYZ_m2035C2A216C0480D847181E970F4C1F2AC4972DE_inline (float ___0_x, float ___1_y, float ___2_z, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.mathematics@8017b507cc74/Unity.Mathematics/quaternion.cs:242>
|
|
float L_0 = ___0_x;
|
|
float L_1 = ___1_y;
|
|
float L_2 = ___2_z;
|
|
float3_t4AB5D88249ADB24F69FFD0793E8ED25E1CC3745E L_3;
|
|
L_3 = math_float3_m4F96A74FEE1D6C85241B8E62386C5DE1C439837F_inline(L_0, L_1, L_2, NULL);
|
|
quaternion_tD6BCBECAF088B9EBAE2345EC8534C7A1A4C910D4 L_4;
|
|
L_4 = quaternion_EulerXYZ_m0AD608E878C0F5683DD56F636D10C75071C50E83_inline(L_3, NULL);
|
|
return L_4;
|
|
}
|
|
}
|
|
// Method Definition Index: 35274
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool DeferredLights_get_UseFramebufferFetch_mCA48571D2CF82D0FA8854DEA9831D5EEB2E96891_inline (DeferredLights_t8A3C2AC9C4AF92CF3411F722D8A094EA07DA14AC* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/DeferredLights.cs:190>
|
|
bool L_0 = __this->___U3CUseFramebufferFetchU3Ek__BackingField;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 35292
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RTHandleU5BU5D_tE4B403B060D159B839BF74E8B59F8DCD52CF97DF* DeferredLights_get_GbufferAttachments_m93F4186104CA66B40F90FC3421542561D91A52DC_inline (DeferredLights_t8A3C2AC9C4AF92CF3411F722D8A094EA07DA14AC* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/DeferredLights.cs:209>
|
|
RTHandleU5BU5D_tE4B403B060D159B839BF74E8B59F8DCD52CF97DF* L_0 = __this->___U3CGbufferAttachmentsU3Ek__BackingField;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 35306
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B* DeferredLights_get_DepthAttachmentHandle_m1E86B03F9BE60C0C400DD8FF6957629B81A9EF4D_inline (DeferredLights_t8A3C2AC9C4AF92CF3411F722D8A094EA07DA14AC* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/DeferredLights.cs:220>
|
|
RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B* L_0 = __this->___U3CDepthAttachmentHandleU3Ek__BackingField;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 31846
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool TextureHandle_IsValid_mECFF64B8BAC6402F0D37B67BB79FFB3AB3C7F3C2_inline (TextureHandle_t680ABA3F8B50859351BA5DD66220084F87F37388* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ResourceHandle_tD3B1FFBD59EB9C23F0A020351836F834C4BD276C_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.core@5e056b397fc0/Runtime/RenderGraph/RenderGraphResourceTexture.cs:117>
|
|
ResourceHandle_tD3B1FFBD59EB9C23F0A020351836F834C4BD276C* L_0 = (ResourceHandle_tD3B1FFBD59EB9C23F0A020351836F834C4BD276C*)(&__this->___handle);
|
|
il2cpp_codegen_runtime_class_init_inline(ResourceHandle_tD3B1FFBD59EB9C23F0A020351836F834C4BD276C_il2cpp_TypeInfo_var);
|
|
bool L_1;
|
|
L_1 = ResourceHandle_IsValid_m20B0218FDCA98DCD069AE3BE86FEFCAEDB985B9A_inline(L_0, NULL);
|
|
return L_1;
|
|
}
|
|
}
|
|
// Method Definition Index: 31214
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool RenderGraph_get_nativeRenderPassesEnabled_m0A6331F029257ABF0232FA1C278E733B097A812D_inline (RenderGraph_t73ECE03B3CA3D0D17F1448D64AE020E81592AA1E* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.core@5e056b397fc0/Runtime/RenderGraph/RenderGraph.cs:401>
|
|
bool L_0 = __this->___U3CnativeRenderPassesEnabledU3Ek__BackingField;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 29086
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* ProfilingSampler_get_name_mF1C3E7B9540171DD93186A4DFEF33CE331E92D79_inline (ProfilingSampler_t420D4672EDB44E0EF980B31ADFD9E5747200FECE* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.core@5e056b397fc0/Runtime/Debugging/ProfilingScope.cs:154>
|
|
String_t* L_0 = __this->___U3CnameU3Ek__BackingField;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 33356
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR DebugHandler_t3A09E2CFD1CA6F5C192968A6FF19EE4863F44DA4* ScriptableRenderer_get_DebugHandler_mF10EC7F8F42F5087507DCDB7CD21338F2766DD6F_inline (ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:180>
|
|
DebugHandler_t3A09E2CFD1CA6F5C192968A6FF19EE4863F44DA4* L_0 = __this->___U3CDebugHandlerU3Ek__BackingField;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 37629
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Color_tD001788D726C3A7F1379BEED0260B9591F440C1F Color_get_black_mB50217951591A045844C61E7FF31EEE3FEF16737_inline (const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F L_0;
|
|
memset((&L_0), 0, sizeof(L_0));
|
|
Color__ctor_m3786F0D6E510D9CFA544523A955870BD2A514C8C_inline((&L_0), (0.0f), (0.0f), (0.0f), (1.0f), NULL);
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 33277
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void ScriptableRenderPass_set_overrideCameraTarget_mC7A5FB7FB9D32C88226E81992DAD058174C99D95_inline (ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* __this, bool ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Passes/ScriptableRenderPass.cs:339>
|
|
bool L_0 = ___0_value;
|
|
__this->___U3CoverrideCameraTargetU3Ek__BackingField = L_0;
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 33279
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void ScriptableRenderPass_set_isBlitRenderPass_m563EACE500D80556F75FD1BB240C0BEBCA7933C3_inline (ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* __this, bool ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Passes/ScriptableRenderPass.cs:340>
|
|
bool L_0 = ___0_value;
|
|
__this->___U3CisBlitRenderPassU3Ek__BackingField = L_0;
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 33281
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void ScriptableRenderPass_set_useNativeRenderPass_m1D60C30BB1CF1B4D383FFCABC1F57EA755626895_inline (ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* __this, bool ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Passes/ScriptableRenderPass.cs:342>
|
|
bool L_0 = ___0_value;
|
|
__this->___U3CuseNativeRenderPassU3Ek__BackingField = L_0;
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 33283
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void ScriptableRenderPass_set_renderPassQueueIndex_m102EDED778C0A087DF2E7E1C91351EB99AD827FB_inline (ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* __this, int32_t ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Passes/ScriptableRenderPass.cs:345>
|
|
int32_t L_0 = ___0_value;
|
|
__this->___U3CrenderPassQueueIndexU3Ek__BackingField = L_0;
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 33285
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void ScriptableRenderPass_set_renderTargetFormat_m35B7A4F02CA819EA819D3A058E4A379EF498FA01_inline (ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* __this, GraphicsFormatU5BU5D_tF6A3D90C430FA3F548B77E5D58D25D71F154E6C5* ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Passes/ScriptableRenderPass.cs:350>
|
|
GraphicsFormatU5BU5D_tF6A3D90C430FA3F548B77E5D58D25D71F154E6C5* L_0 = ___0_value;
|
|
__this->___U3CrenderTargetFormatU3Ek__BackingField = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CrenderTargetFormatU3Ek__BackingField), (void*)L_0);
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 33293
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void ScriptableRenderPass_ConfigureInputAttachments_mEE7F33D93B15335CB7EA5FE8C34C9C76BD8CC805_inline (ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* __this, RTHandleU5BU5D_tE4B403B060D159B839BF74E8B59F8DCD52CF97DF* ___0_inputs, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Passes/ScriptableRenderPass.cs:460>
|
|
RTHandleU5BU5D_tE4B403B060D159B839BF74E8B59F8DCD52CF97DF* L_0 = ___0_inputs;
|
|
__this->___m_InputAttachments = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_InputAttachments), (void*)L_0);
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Passes/ScriptableRenderPass.cs:461>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 33284
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR GraphicsFormatU5BU5D_tF6A3D90C430FA3F548B77E5D58D25D71F154E6C5* ScriptableRenderPass_get_renderTargetFormat_m7B211E4B10D23A760D3906426BA9C4562DF951CC_inline (ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Passes/ScriptableRenderPass.cs:350>
|
|
GraphicsFormatU5BU5D_tF6A3D90C430FA3F548B77E5D58D25D71F154E6C5* L_0 = __this->___U3CrenderTargetFormatU3Ek__BackingField;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 30154
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RenderTexture_tBA90C4C3AD9EECCFDDCC632D97C29FAB80D60D27* RTHandle_get_rt_m593F2799E2E6C97979D3B4CD9E992D305922BBE9_inline (RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.core@5e056b397fc0/Runtime/Textures/RTHandle.cs:118>
|
|
RenderTexture_tBA90C4C3AD9EECCFDDCC632D97C29FAB80D60D27* L_0 = __this->___m_RT;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 33256
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t ScriptableRenderPass_get_renderPassEvent_mD7ED1EFBF050FE1F86D598FA9A1A987CFEAD1AEE_inline (ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Passes/ScriptableRenderPass.cs:216>
|
|
int32_t L_0 = __this->___U3CrenderPassEventU3Ek__BackingField;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 30156
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RenderTargetIdentifier_tA528663AC6EB3911D8E91AA40F7070FA5455442B RTHandle_get_nameID_m30AF2567853494DB845D83A8B37D0FB523DA76E9_inline (RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.core@5e056b397fc0/Runtime/Textures/RTHandle.cs:126>
|
|
RenderTargetIdentifier_tA528663AC6EB3911D8E91AA40F7070FA5455442B L_0 = __this->___m_NameID;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 33276
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool ScriptableRenderPass_get_overrideCameraTarget_m343BA9235CD254354013E3CFD6EC519958597128_inline (ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Passes/ScriptableRenderPass.cs:339>
|
|
bool L_0 = __this->___U3CoverrideCameraTargetU3Ek__BackingField;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 37487
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t RenderTextureDescriptor_get_msaaSamples_mFCC33643AFF2265C8305DCFD79ED8774A1A8FA22_inline (RenderTextureDescriptor_t69845881CE6437E4E61F92074F2F84079F23FA46* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = __this->___U3CmsaaSamplesU3Ek__BackingField;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 33375
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RenderingFeatures_t31044CBDCDC2F05194BFA2A2122FBD937D78A371* ScriptableRenderer_get_supportedRenderingFeatures_m8866E002AF2D9D7C3E70946193B656850A4FC56F_inline (ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:616>
|
|
RenderingFeatures_t31044CBDCDC2F05194BFA2A2122FBD937D78A371* L_0 = __this->___U3CsupportedRenderingFeaturesU3Ek__BackingField;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 33455
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool RenderingFeatures_get_msaa_m7DB8FFB8E541A7444D1FB96BC86AFE390B776C36_inline (RenderingFeatures_t31044CBDCDC2F05194BFA2A2122FBD937D78A371* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:174>
|
|
bool L_0 = __this->___U3CmsaaU3Ek__BackingField;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 33266
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* ScriptableRenderPass_get_overriddenColorStoreActions_m7C286926155F30C6B51B97A3B494343597077A93_inline (ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Passes/ScriptableRenderPass.cs:264>
|
|
BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* L_0 = __this->___m_OverriddenColorStoreActions;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 33264
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RenderBufferStoreActionU5BU5D_tFEA8F5DD460573EA9F35FBEC5727D1804C5DCBF5* ScriptableRenderPass_get_colorStoreActions_m8512840B6D3802C9C09D357894358BAF8FE907D7_inline (ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Passes/ScriptableRenderPass.cs:257>
|
|
RenderBufferStoreActionU5BU5D_tFEA8F5DD460573EA9F35FBEC5727D1804C5DCBF5* L_0 = __this->___m_ColorStoreActions;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 33265
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t ScriptableRenderPass_get_depthStoreAction_m3DCEBE1FEEE5ABD1AF0EC3656296E08C56704845_inline (ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Passes/ScriptableRenderPass.cs:262>
|
|
int32_t L_0 = __this->___m_DepthStoreAction;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 33267
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool ScriptableRenderPass_get_overriddenDepthStoreAction_m057C906C81594CF263C433DBC279F6C61FD45D19_inline (ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Passes/ScriptableRenderPass.cs:266>
|
|
bool L_0 = __this->___m_OverriddenDepthStoreAction;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 33282
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t ScriptableRenderPass_get_renderPassQueueIndex_mDA630CF31CA4371C2E4BE76B367C4A013C35AB85_inline (ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Passes/ScriptableRenderPass.cs:345>
|
|
int32_t L_0 = __this->___U3CrenderPassQueueIndexU3Ek__BackingField;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 33261
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RTHandleU5BU5D_tE4B403B060D159B839BF74E8B59F8DCD52CF97DF* ScriptableRenderPass_get_colorAttachmentHandles_m52C72D6C6F0E7A66FE8FEC5ECFDDE5407FBF8897_inline (ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Passes/ScriptableRenderPass.cs:242>
|
|
RTHandleU5BU5D_tE4B403B060D159B839BF74E8B59F8DCD52CF97DF* L_0 = __this->___m_ColorAttachments;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 33269
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t ScriptableRenderPass_get_clearFlag_m74FAFCDC3CD75DC4201B398DFD25E028D7D800DB_inline (ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Passes/ScriptableRenderPass.cs:278>
|
|
int32_t L_0 = __this->___m_ClearFlag;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 33270
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Color_tD001788D726C3A7F1379BEED0260B9591F440C1F ScriptableRenderPass_get_clearColor_mAEC581D756087BF3617FE243D569717FBC2E5DB1_inline (ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Passes/ScriptableRenderPass.cs:283>
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F L_0 = __this->___m_ClearColor;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 33263
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B* ScriptableRenderPass_get_depthAttachmentHandle_m3AA7953B201494DEF4FD2061660B94663EF63465_inline (ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Passes/ScriptableRenderPass.cs:252>
|
|
RTHandle_t135537761C47BC929F032B3C8F4D55EA1111B07B* L_0 = __this->___m_DepthAttachment;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 37496
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t RenderTextureDescriptor_get_depthStencilFormat_m360929BE5BD10E9C3D8C936AA6B44B1D11C119CB_inline (RenderTextureDescriptor_t69845881CE6437E4E61F92074F2F84079F23FA46* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = __this->___U3CdepthStencilFormatU3Ek__BackingField;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 34399
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR AttachmentDescriptor_tBAC9B26B50BB0838C5C0CC22BB296F9DFF41276E RenderingUtils_get_emptyAttachment_m2AF0A5A339A35504D7FA8DD4B3400ACF5F449F38_inline (const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RenderingUtils_t4E40200449A82FA3A172A563C490DF11FADA2BE1_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/RenderingUtils.cs:32>
|
|
il2cpp_codegen_runtime_class_init_inline(RenderingUtils_t4E40200449A82FA3A172A563C490DF11FADA2BE1_il2cpp_TypeInfo_var);
|
|
AttachmentDescriptor_tBAC9B26B50BB0838C5C0CC22BB296F9DFF41276E L_0 = ((RenderingUtils_t4E40200449A82FA3A172A563C490DF11FADA2BE1_StaticFields*)il2cpp_codegen_static_fields_for(RenderingUtils_t4E40200449A82FA3A172A563C490DF11FADA2BE1_il2cpp_TypeInfo_var))->___s_EmptyAttachment;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 37484
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void RenderTextureDescriptor_set_width_m3B2494007BFE3AD4D14403407C9B24F5045E7E10_inline (RenderTextureDescriptor_t69845881CE6437E4E61F92074F2F84079F23FA46* __this, int32_t ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = ___0_value;
|
|
__this->___U3CwidthU3Ek__BackingField = L_0;
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 37486
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void RenderTextureDescriptor_set_height_m1FE41111472DAA9B5E80FFAF3445004D72A3CFA5_inline (RenderTextureDescriptor_t69845881CE6437E4E61F92074F2F84079F23FA46* __this, int32_t ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = ___0_value;
|
|
__this->___U3CheightU3Ek__BackingField = L_0;
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 37483
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t RenderTextureDescriptor_get_width_mB159E4EB08B23B19CCCFADB465864361FB840BFF_inline (RenderTextureDescriptor_t69845881CE6437E4E61F92074F2F84079F23FA46* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = __this->___U3CwidthU3Ek__BackingField;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 37485
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t RenderTextureDescriptor_get_height_m1006F9AA45029715C552C8A8C2F102F63D3A91EC_inline (RenderTextureDescriptor_t69845881CE6437E4E61F92074F2F84079F23FA46* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = __this->___U3CheightU3Ek__BackingField;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 33624
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR XRPass_tFC4577E97B88E0EAAAB2EB387AB3A92E9EB9C6DF* UniversalCameraData_get_xr_mC600E667BA2B92EADF2CF60CD49E15242FA83C4D_inline (UniversalCameraData_t7904AE9D68B973761A72DFAA7CA3DE915696E1C7* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/FrameData/UniversalCameraData.cs:532>
|
|
XRPass_tFC4577E97B88E0EAAAB2EB387AB3A92E9EB9C6DF* L_0 = __this->___U3CxrU3Ek__BackingField;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 37912
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Vector2Int__ctor_mC20D1312133EB8CB63EC11067088B043660F11CE_inline (Vector2Int_t69B2886EBAB732D9B880565E18E7568F3DE0CE6A* __this, int32_t ___0_x, int32_t ___1_y, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = ___0_x;
|
|
__this->___m_X = L_0;
|
|
int32_t L_1 = ___1_y;
|
|
__this->___m_Y = L_1;
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 37908
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t Vector2Int_get_x_mA2CACB1B6E6B5AD0CCC32B2CD2EDCE3ECEB50576_inline (Vector2Int_t69B2886EBAB732D9B880565E18E7568F3DE0CE6A* __this, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
{
|
|
int32_t L_0 = __this->___m_X;
|
|
V_0 = L_0;
|
|
goto IL_000a;
|
|
}
|
|
|
|
IL_000a:
|
|
{
|
|
int32_t L_1 = V_0;
|
|
return L_1;
|
|
}
|
|
}
|
|
// Method Definition Index: 37910
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t Vector2Int_get_y_m48454163ECF0B463FB5A16A0C4FC4B14DB0768B3_inline (Vector2Int_t69B2886EBAB732D9B880565E18E7568F3DE0CE6A* __this, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
{
|
|
int32_t L_0 = __this->___m_Y;
|
|
V_0 = L_0;
|
|
goto IL_000a;
|
|
}
|
|
|
|
IL_000a:
|
|
{
|
|
int32_t L_1 = V_0;
|
|
return L_1;
|
|
}
|
|
}
|
|
// Method Definition Index: 27297
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t XRPass_get_renderTargetScaledWidth_m023E0E3EA121FEB8E1FD838A3EFFA55E96F7CBC8_inline (XRPass_tFC4577E97B88E0EAAAB2EB387AB3A92E9EB9C6DF* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.core@5e056b397fc0/Runtime/XR/XRPass.cs:154>
|
|
int32_t L_0 = __this->___U3CrenderTargetScaledWidthU3Ek__BackingField;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 27299
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t XRPass_get_renderTargetScaledHeight_m06C1F1D82C7A84275B6F5881E5347BD57AB96005_inline (XRPass_tFC4577E97B88E0EAAAB2EB387AB3A92E9EB9C6DF* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.core@5e056b397fc0/Runtime/XR/XRPass.cs:159>
|
|
int32_t L_0 = __this->___U3CrenderTargetScaledHeightU3Ek__BackingField;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 37855
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Mathf_Approximately_m1DADD012A8FC82E11FB282501AE2EBBF9A77150B_inline (float ___0_a, float ___1_b, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Mathf_tE284D016E3B297B72311AAD9EB8F0E643F6A4682_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
bool V_0 = false;
|
|
{
|
|
float L_0 = ___1_b;
|
|
float L_1 = ___0_a;
|
|
float L_2;
|
|
L_2 = fabsf(((float)il2cpp_codegen_subtract(L_0, L_1)));
|
|
float L_3 = ___0_a;
|
|
float L_4;
|
|
L_4 = fabsf(L_3);
|
|
float L_5 = ___1_b;
|
|
float L_6;
|
|
L_6 = fabsf(L_5);
|
|
float L_7;
|
|
L_7 = Mathf_Max_mF5379E63D2BBAC76D090748695D833934F8AD051_inline(L_4, L_6, NULL);
|
|
float L_8 = ((Mathf_tE284D016E3B297B72311AAD9EB8F0E643F6A4682_StaticFields*)il2cpp_codegen_static_fields_for(Mathf_tE284D016E3B297B72311AAD9EB8F0E643F6A4682_il2cpp_TypeInfo_var))->___Epsilon;
|
|
float L_9;
|
|
L_9 = Mathf_Max_mF5379E63D2BBAC76D090748695D833934F8AD051_inline(((float)il2cpp_codegen_multiply((9.99999997E-07f), L_7)), ((float)il2cpp_codegen_multiply(L_8, (8.0f))), NULL);
|
|
V_0 = (bool)((((float)L_2) < ((float)L_9))? 1 : 0);
|
|
goto IL_0035;
|
|
}
|
|
|
|
IL_0035:
|
|
{
|
|
bool L_10 = V_0;
|
|
return L_10;
|
|
}
|
|
}
|
|
// Method Definition Index: 37978
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3 Vector4_op_Implicit_m2ECA73F345A7AD84144133E9E51657204002B12D_inline (Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___0_v, const RuntimeMethod* method)
|
|
{
|
|
Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3 V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
{
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_0 = ___0_v;
|
|
float L_1 = L_0.___x;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_2 = ___0_v;
|
|
float L_3 = L_2.___y;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_4 = ___0_v;
|
|
float L_5 = L_4.___z;
|
|
Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3 L_6;
|
|
memset((&L_6), 0, sizeof(L_6));
|
|
Vector4__ctor_m96B2CD8B862B271F513AF0BDC2EABD58E4DBC813_inline((&L_6), L_1, L_3, L_5, (0.0f), NULL);
|
|
V_0 = L_6;
|
|
goto IL_0020;
|
|
}
|
|
|
|
IL_0020:
|
|
{
|
|
Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3 L_7 = V_0;
|
|
return L_7;
|
|
}
|
|
}
|
|
// Method Definition Index: 37969
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3 Vector4_get_one_m0AA55064B3C47D9D94E5BC4EE6AEC5B6E4F2D151_inline (const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3 V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
{
|
|
Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3 L_0 = ((Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3_StaticFields*)il2cpp_codegen_static_fields_for(Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3_il2cpp_TypeInfo_var))->___oneVector;
|
|
V_0 = L_0;
|
|
goto IL_0009;
|
|
}
|
|
|
|
IL_0009:
|
|
{
|
|
Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3 L_1 = V_0;
|
|
return L_1;
|
|
}
|
|
}
|
|
// Method Definition Index: 34688
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float Settings_get_mipBias_m1A4168EB95838BFB72A8CBB96FD5FA4C9CEE0EA6_inline (Settings_t3BEFDFF2C1A3D3A215DAF7B76E735B1BFB946C92* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/TemporalAA.cs:135>
|
|
float L_0 = __this->___m_MipBias;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 37980
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3 Vector4_op_Implicit_mB193CD8DA20DEB9E9F95CFEB5A2B1B9B3B7ECFEB_inline (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___0_v, const RuntimeMethod* method)
|
|
{
|
|
Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3 V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
{
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_0 = ___0_v;
|
|
float L_1 = L_0.___x;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_2 = ___0_v;
|
|
float L_3 = L_2.___y;
|
|
Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3 L_4;
|
|
memset((&L_4), 0, sizeof(L_4));
|
|
Vector4__ctor_m96B2CD8B862B271F513AF0BDC2EABD58E4DBC813_inline((&L_4), L_1, L_3, (0.0f), (0.0f), NULL);
|
|
V_0 = L_4;
|
|
goto IL_001f;
|
|
}
|
|
|
|
IL_001f:
|
|
{
|
|
Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3 L_5 = V_0;
|
|
return L_5;
|
|
}
|
|
}
|
|
// Method Definition Index: 37768
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 Vector3_get_up_m128AF3FDC820BF59D5DE86D973E7DE3F20C3AEBA_inline (const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
{
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_0 = ((Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2_StaticFields*)il2cpp_codegen_static_fields_for(Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2_il2cpp_TypeInfo_var))->___upVector;
|
|
V_0 = L_0;
|
|
goto IL_0009;
|
|
}
|
|
|
|
IL_0009:
|
|
{
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_1 = V_0;
|
|
return L_1;
|
|
}
|
|
}
|
|
// Method Definition Index: 37746
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 Vector3_Cross_mF93A280558BCE756D13B6CC5DCD7DE8A43148987_inline (Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___0_lhs, Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___1_rhs, const RuntimeMethod* method)
|
|
{
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
{
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_0 = ___0_lhs;
|
|
float L_1 = L_0.___y;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_2 = ___1_rhs;
|
|
float L_3 = L_2.___z;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_4 = ___0_lhs;
|
|
float L_5 = L_4.___z;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_6 = ___1_rhs;
|
|
float L_7 = L_6.___y;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_8 = ___0_lhs;
|
|
float L_9 = L_8.___z;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_10 = ___1_rhs;
|
|
float L_11 = L_10.___x;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_12 = ___0_lhs;
|
|
float L_13 = L_12.___x;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_14 = ___1_rhs;
|
|
float L_15 = L_14.___z;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_16 = ___0_lhs;
|
|
float L_17 = L_16.___x;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_18 = ___1_rhs;
|
|
float L_19 = L_18.___y;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_20 = ___0_lhs;
|
|
float L_21 = L_20.___y;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_22 = ___1_rhs;
|
|
float L_23 = L_22.___x;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_24;
|
|
memset((&L_24), 0, sizeof(L_24));
|
|
Vector3__ctor_m376936E6B999EF1ECBE57D990A386303E2283DE0_inline((&L_24), ((float)il2cpp_codegen_subtract(((float)il2cpp_codegen_multiply(L_1, L_3)), ((float)il2cpp_codegen_multiply(L_5, L_7)))), ((float)il2cpp_codegen_subtract(((float)il2cpp_codegen_multiply(L_9, L_11)), ((float)il2cpp_codegen_multiply(L_13, L_15)))), ((float)il2cpp_codegen_subtract(((float)il2cpp_codegen_multiply(L_17, L_19)), ((float)il2cpp_codegen_multiply(L_21, L_23)))), NULL);
|
|
V_0 = L_24;
|
|
goto IL_005a;
|
|
}
|
|
|
|
IL_005a:
|
|
{
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_25 = V_0;
|
|
return L_25;
|
|
}
|
|
}
|
|
// Method Definition Index: 37761
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float Vector3_get_sqrMagnitude_m43C27DEC47C4811FB30AB474FF2131A963B66FC8_inline (Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2* __this, const RuntimeMethod* method)
|
|
{
|
|
float V_0 = 0.0f;
|
|
{
|
|
float L_0 = __this->___x;
|
|
float L_1 = __this->___x;
|
|
float L_2 = __this->___y;
|
|
float L_3 = __this->___y;
|
|
float L_4 = __this->___z;
|
|
float L_5 = __this->___z;
|
|
V_0 = ((float)il2cpp_codegen_add(((float)il2cpp_codegen_add(((float)il2cpp_codegen_multiply(L_0, L_1)), ((float)il2cpp_codegen_multiply(L_2, L_3)))), ((float)il2cpp_codegen_multiply(L_4, L_5))));
|
|
goto IL_002d;
|
|
}
|
|
|
|
IL_002d:
|
|
{
|
|
float L_6 = V_0;
|
|
return L_6;
|
|
}
|
|
}
|
|
// Method Definition Index: 37752
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 Vector3_get_normalized_m736BBF65D5CDA7A18414370D15B4DFCC1E466F07_inline (Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2* __this, const RuntimeMethod* method)
|
|
{
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
{
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_0 = (*(Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2*)__this);
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_1;
|
|
L_1 = Vector3_Normalize_mEF8349CC39674236CFC694189AFD36E31F89AC8F_inline(L_0, NULL);
|
|
V_0 = L_1;
|
|
goto IL_000f;
|
|
}
|
|
|
|
IL_000f:
|
|
{
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_2 = V_0;
|
|
return L_2;
|
|
}
|
|
}
|
|
// Method Definition Index: 36412
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 Plane_get_normal_mA161D94E6F7327BC111007C880B76E1731729EFB_inline (Plane_tB7D8CC6F7AACF5F3AA483AF005C1102A8577BC0C* __this, const RuntimeMethod* method)
|
|
{
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
{
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_0 = __this->___m_Normal;
|
|
V_0 = L_0;
|
|
goto IL_000a;
|
|
}
|
|
|
|
IL_000a:
|
|
{
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_1 = V_0;
|
|
return L_1;
|
|
}
|
|
}
|
|
// Method Definition Index: 36413
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float Plane_get_distance_m2D50D2C23E2D9438272F876878015B38DAF5ED30_inline (Plane_tB7D8CC6F7AACF5F3AA483AF005C1102A8577BC0C* __this, const RuntimeMethod* method)
|
|
{
|
|
float V_0 = 0.0f;
|
|
{
|
|
float L_0 = __this->___m_Distance;
|
|
V_0 = L_0;
|
|
goto IL_000a;
|
|
}
|
|
|
|
IL_000a:
|
|
{
|
|
float L_1 = V_0;
|
|
return L_1;
|
|
}
|
|
}
|
|
// Method Definition Index: 37974
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3 Vector4_op_Multiply_m59B8215B9A49709B9D299317ECB152C316625559_inline (float ___0_d, Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3 ___1_a, const RuntimeMethod* method)
|
|
{
|
|
Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3 V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
{
|
|
Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3 L_0 = ___1_a;
|
|
float L_1 = L_0.___x;
|
|
float L_2 = ___0_d;
|
|
Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3 L_3 = ___1_a;
|
|
float L_4 = L_3.___y;
|
|
float L_5 = ___0_d;
|
|
Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3 L_6 = ___1_a;
|
|
float L_7 = L_6.___z;
|
|
float L_8 = ___0_d;
|
|
Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3 L_9 = ___1_a;
|
|
float L_10 = L_9.___w;
|
|
float L_11 = ___0_d;
|
|
Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3 L_12;
|
|
memset((&L_12), 0, sizeof(L_12));
|
|
Vector4__ctor_m96B2CD8B862B271F513AF0BDC2EABD58E4DBC813_inline((&L_12), ((float)il2cpp_codegen_multiply(L_1, L_2)), ((float)il2cpp_codegen_multiply(L_4, L_5)), ((float)il2cpp_codegen_multiply(L_7, L_8)), ((float)il2cpp_codegen_multiply(L_10, L_11)), NULL);
|
|
V_0 = L_12;
|
|
goto IL_0029;
|
|
}
|
|
|
|
IL_0029:
|
|
{
|
|
Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3 L_13 = V_0;
|
|
return L_13;
|
|
}
|
|
}
|
|
// Method Definition Index: 33355
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void ScriptableRenderer_set_profilingExecute_m9DE85BB63AA11C1B8C900166DB8961BE6AEAE6CC_inline (ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892* __this, ProfilingSampler_t420D4672EDB44E0EF980B31ADFD9E5747200FECE* ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:149>
|
|
ProfilingSampler_t420D4672EDB44E0EF980B31ADFD9E5747200FECE* L_0 = ___0_value;
|
|
__this->___U3CprofilingExecuteU3Ek__BackingField = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CprofilingExecuteU3Ek__BackingField), (void*)L_0);
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 33491
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR List_1_t2121653FB628940E808D105AD2C17E0F20AFB3A6* ScriptableRendererData_get_rendererFeatures_m1DF4156F6E0733E01D096AE7A3C43EC6C9D2DD45_inline (ScriptableRendererData_t9005CE645D4881FA4431E52EDC7678203632CAA7* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRendererData.cs:53>
|
|
List_1_t2121653FB628940E808D105AD2C17E0F20AFB3A6* L_0 = __this->___m_RendererFeatures;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 33496
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool ScriptableRendererData_get_useNativeRenderPass_m7F8D3A97A818B1134EFC3A4236E7A7C8ECD9245F_inline (ScriptableRendererData_t9005CE645D4881FA4431E52EDC7678203632CAA7* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRendererData.cs:98>
|
|
bool L_0 = __this->___m_UseNativeRenderPass;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 32424
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t UniversalRenderPipelineAsset_get_storeActionsOptimization_m34BDA517FC97840E134614733270B805F101A8C6_inline (UniversalRenderPipelineAsset_tE8A9AA6F030CC3B558CEA2EB54FFF4FC58CA6232* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Data/UniversalRenderPipelineAsset.cs:1052>
|
|
int32_t L_0 = __this->___m_StoreActionsOptimization;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 33373
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR List_1_t2121653FB628940E808D105AD2C17E0F20AFB3A6* ScriptableRenderer_get_rendererFeatures_m2473415AE63D3735ACBD7BF7CAEA7CB0315A7057_inline (ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:599>
|
|
List_1_t2121653FB628940E808D105AD2C17E0F20AFB3A6* L_0 = __this->___m_RendererFeatures;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 33379
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ContextContainer_t384E08F63FABEFF6A7F1A753F5EF02699DAD414C* ScriptableRenderer_get_frameData_m1E575C1F7F79B65139F8AD75EB4B40BB4113714A_inline (ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:676>
|
|
ContextContainer_t384E08F63FABEFF6A7F1A753F5EF02699DAD414C* L_0 = __this->___m_frameData;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 27293
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t XRPass_get_multipassId_m312BE1D2B8BA520E9A214F50E601EA6BED92E245_inline (XRPass_tFC4577E97B88E0EAAAB2EB387AB3A92E9EB9C6DF* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.core@5e056b397fc0/Runtime/XR/XRPass.cs:144>
|
|
int32_t L_0 = __this->___U3CmultipassIdU3Ek__BackingField;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 35227
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool PlatformAutoDetect_get_isXRMobile_mE44C06DAC1F8980BC83D0CE40C3D5551BCF9E448_inline (const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PlatformAutoDetect_tEEEF1776EA779987D2840527D96D89ADD3177A36_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/UniversalRenderPipelineCore.cs:2018>
|
|
il2cpp_codegen_runtime_class_init_inline(PlatformAutoDetect_tEEEF1776EA779987D2840527D96D89ADD3177A36_il2cpp_TypeInfo_var);
|
|
bool L_0 = ((PlatformAutoDetect_tEEEF1776EA779987D2840527D96D89ADD3177A36_StaticFields*)il2cpp_codegen_static_fields_for(PlatformAutoDetect_tEEEF1776EA779987D2840527D96D89ADD3177A36_il2cpp_TypeInfo_var))->___U3CisXRMobileU3Ek__BackingField;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 35245
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XRPassUniversal_set_canFoveateIntermediatePasses_m24F21289F0909F04F4D682C216DBB1C794472D59_inline (XRPassUniversal_t8D4B40107F5DBC12D39470D87D108D3D2A8FB8D1* __this, bool ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/XR/XRPassUniversal.cs:36>
|
|
bool L_0 = ___0_value;
|
|
__this->___U3CcanFoveateIntermediatePassesU3Ek__BackingField = L_0;
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 1623
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t Math_Clamp_mAB687477D3AAC0E7243D724F45626026980CE2FF_inline (int32_t ___0_value, int32_t ___1_min, int32_t ___2_max, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Math_ThrowMinMaxException_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_mBC7732632C280D3AEE2B08C470A78B9C5C4CBD77_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Math_tEB65DE7CA8B083C412C969C92981C030865486CE_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
int32_t L_0 = ___1_min;
|
|
int32_t L_1 = ___2_max;
|
|
if ((((int32_t)L_0) <= ((int32_t)L_1)))
|
|
{
|
|
goto IL_000b;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_2 = ___1_min;
|
|
int32_t L_3 = ___2_max;
|
|
il2cpp_codegen_runtime_class_init_inline(Math_tEB65DE7CA8B083C412C969C92981C030865486CE_il2cpp_TypeInfo_var);
|
|
Math_ThrowMinMaxException_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_mBC7732632C280D3AEE2B08C470A78B9C5C4CBD77(L_2, L_3, Math_ThrowMinMaxException_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_mBC7732632C280D3AEE2B08C470A78B9C5C4CBD77_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_000b:
|
|
{
|
|
int32_t L_4 = ___0_value;
|
|
int32_t L_5 = ___1_min;
|
|
if ((((int32_t)L_4) >= ((int32_t)L_5)))
|
|
{
|
|
goto IL_0011;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_6 = ___1_min;
|
|
return L_6;
|
|
}
|
|
|
|
IL_0011:
|
|
{
|
|
int32_t L_7 = ___0_value;
|
|
int32_t L_8 = ___2_max;
|
|
if ((((int32_t)L_7) <= ((int32_t)L_8)))
|
|
{
|
|
goto IL_0017;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_9 = ___2_max;
|
|
return L_9;
|
|
}
|
|
|
|
IL_0017:
|
|
{
|
|
int32_t L_10 = ___0_value;
|
|
return L_10;
|
|
}
|
|
}
|
|
// Method Definition Index: 32995
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR DebugDisplaySettingsRendering_t0112AECF41E04E8EB029F3B2C769BB05A72D50F3* UniversalRenderPipelineDebugDisplaySettings_get_renderingSettings_m97737CDDE93484CC032281F18A59EB5D0CB7DCC6_inline (UniversalRenderPipelineDebugDisplaySettings_t8E70DD217918DB0E7BD8BCCD9958C3E781DE0653* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Debug/UniversalRenderPipelineDebugDisplaySettings.cs:20>
|
|
DebugDisplaySettingsRendering_t0112AECF41E04E8EB029F3B2C769BB05A72D50F3* L_0 = __this->___U3CrenderingSettingsU3Ek__BackingField;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 32749
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t DebugDisplaySettingsRendering_get_sceneOverrideMode_m4D5732DD1FD1413E5802B83A60BF22B06E96BB01_inline (DebugDisplaySettingsRendering_t0112AECF41E04E8EB029F3B2C769BB05A72D50F3* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Debug/DebugDisplaySettingsRendering.cs:116>
|
|
int32_t L_0 = __this->___U3CsceneOverrideModeU3Ek__BackingField;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 33354
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ProfilingSampler_t420D4672EDB44E0EF980B31ADFD9E5747200FECE* ScriptableRenderer_get_profilingExecute_mE442262D579FC9D8AE14055A8E47E06DCB555046_inline (ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:149>
|
|
ProfilingSampler_t420D4672EDB44E0EF980B31ADFD9E5747200FECE* L_0 = __this->___U3CprofilingExecuteU3Ek__BackingField;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 33374
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR List_1_t2E485E650BF1E41358CE56A69323E183C5A89CB6* ScriptableRenderer_get_activeRenderPassQueue_m3DA13EE251E757FC42DAE103A487C3F1562A850F_inline (ScriptableRenderer_tF15B95BB85F26BE4B4719901D909831B89DC8892* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:608>
|
|
List_1_t2E485E650BF1E41358CE56A69323E183C5A89CB6* L_0 = __this->___m_ActiveRenderPassQueue;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 35241
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XRPassUniversal_set_canMarkLateLatch_m55FD53B9F8BE99FF85F7CA356D608F042A55906F_inline (XRPassUniversal_t8D4B40107F5DBC12D39470D87D108D3D2A8FB8D1* __this, bool ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/XR/XRPassUniversal.cs:30>
|
|
bool L_0 = ___0_value;
|
|
__this->___U3CcanMarkLateLatchU3Ek__BackingField = L_0;
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 34559
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool ScriptableRendererFeature_get_isActive_m3A636889F4504C471F26F735F682472FD9B31178_inline (ScriptableRendererFeature_tF2ED08AD2498105378D4DAB0386A0F8A144EF4C6* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRendererFeature.cs:18>
|
|
bool L_0 = __this->___m_Active;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 37968
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3 Vector4_get_zero_m3D61F5FA9483CD9C08977D9D8852FB448B4CE6D1_inline (const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3 V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
{
|
|
Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3 L_0 = ((Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3_StaticFields*)il2cpp_codegen_static_fields_for(Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3_il2cpp_TypeInfo_var))->___zeroVector;
|
|
V_0 = L_0;
|
|
goto IL_0009;
|
|
}
|
|
|
|
IL_0009:
|
|
{
|
|
Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3 L_1 = V_0;
|
|
return L_1;
|
|
}
|
|
}
|
|
// Method Definition Index: 33474
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t BlockRange_get_Current_mAE0444A8F3C9E0E6999B59148E9C87F6055133F8_inline (BlockRange_tA1B8F0F361ACE9052C36ADAD020F52FB749A7F91* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/ScriptableRenderer.cs:2437>
|
|
int32_t L_0 = __this->___m_Current;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 33280
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool ScriptableRenderPass_get_useNativeRenderPass_mB8008DC999D63A3EDBD066CF07F7A4824812E4E9_inline (ScriptableRenderPass_tEA38F6C7AD8D111A2251E4C2A7530BCEE7D6D2B0* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/Passes/ScriptableRenderPass.cs:342>
|
|
bool L_0 = __this->___U3CuseNativeRenderPassU3Ek__BackingField;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 27350
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t XRSystem_get_foveatedRenderingCaps_m2B4B6BD6E1BFD298DD8A66DB2294FA27A0F6F989_inline (const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XRSystem_tF767981574E3DA643F7A67A995F12DB1C4A97096_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.core@5e056b397fc0/Runtime/XR/XRSystem.cs:101>
|
|
il2cpp_codegen_runtime_class_init_inline(XRSystem_tF767981574E3DA643F7A67A995F12DB1C4A97096_il2cpp_TypeInfo_var);
|
|
int32_t L_0 = ((XRSystem_tF767981574E3DA643F7A67A995F12DB1C4A97096_StaticFields*)il2cpp_codegen_static_fields_for(XRSystem_tF767981574E3DA643F7A67A995F12DB1C4A97096_il2cpp_TypeInfo_var))->___U3CfoveatedRenderingCapsU3Ek__BackingField;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 37620
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Color_op_Inequality_mF1C733BA10E60B086AB950A71143678AE76C4D92_inline (Color_tD001788D726C3A7F1379BEED0260B9591F440C1F ___0_lhs, Color_tD001788D726C3A7F1379BEED0260B9591F440C1F ___1_rhs, const RuntimeMethod* method)
|
|
{
|
|
bool V_0 = false;
|
|
{
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F L_0 = ___0_lhs;
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F L_1 = ___1_rhs;
|
|
bool L_2;
|
|
L_2 = Color_op_Equality_mB2BDC39B0B367BA15AA8DF22F8CB0D02D20BDC71_inline(L_0, L_1, NULL);
|
|
V_0 = (bool)((((int32_t)L_2) == ((int32_t)0))? 1 : 0);
|
|
goto IL_000e;
|
|
}
|
|
|
|
IL_000e:
|
|
{
|
|
bool L_3 = V_0;
|
|
return L_3;
|
|
}
|
|
}
|
|
// Method Definition Index: 27301
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RenderTargetIdentifier_tA528663AC6EB3911D8E91AA40F7070FA5455442B XRPass_get_renderTarget_m4183955FBAB06A0CD30DAAC60DFC51AD18466F48_inline (XRPass_tFC4577E97B88E0EAAAB2EB387AB3A92E9EB9C6DF* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.core@5e056b397fc0/Runtime/XR/XRPass.cs:164>
|
|
RenderTargetIdentifier_tA528663AC6EB3911D8E91AA40F7070FA5455442B L_0 = __this->___U3CrenderTargetU3Ek__BackingField;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 35238
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool XRPassUniversal_get_isLateLatchEnabled_mCFAAB2099E57226FDD74EC51E16DE26E3B7777A3_inline (XRPassUniversal_t8D4B40107F5DBC12D39470D87D108D3D2A8FB8D1* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/XR/XRPassUniversal.cs:27>
|
|
bool L_0 = __this->___U3CisLateLatchEnabledU3Ek__BackingField;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 27313
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR intptr_t XRPass_get_foveatedRenderingInfo_m6F0E2EFEFFF40F47ABD3602D125C40E7CFBDE39B_inline (XRPass_tFC4577E97B88E0EAAAB2EB387AB3A92E9EB9C6DF* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.core@5e056b397fc0/Runtime/XR/XRPass.cs:199>
|
|
intptr_t L_0 = __this->___U3CfoveatedRenderingInfoU3Ek__BackingField;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 35013
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool UniversalRenderPipeline_get_canOptimizeScreenMSAASamples_mCC0EEDA2FBA9A3A609B5333AD144C75DDE84B695_inline (const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UniversalRenderPipeline_t54B4737DC500C08628C5BE283D8C583C14DED98F_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/UniversalRenderPipeline.cs:199>
|
|
il2cpp_codegen_runtime_class_init_inline(UniversalRenderPipeline_t54B4737DC500C08628C5BE283D8C583C14DED98F_il2cpp_TypeInfo_var);
|
|
bool L_0 = ((UniversalRenderPipeline_t54B4737DC500C08628C5BE283D8C583C14DED98F_StaticFields*)il2cpp_codegen_static_fields_for(UniversalRenderPipeline_t54B4737DC500C08628C5BE283D8C583C14DED98F_il2cpp_TypeInfo_var))->___U3CcanOptimizeScreenMSAASamplesU3Ek__BackingField;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 37837
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t Mathf_Max_m7FA442918DE37E3A00106D1F2E789D65829792B8_inline (int32_t ___0_a, int32_t ___1_b, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
int32_t G_B3_0 = 0;
|
|
{
|
|
int32_t L_0 = ___0_a;
|
|
int32_t L_1 = ___1_b;
|
|
if ((((int32_t)L_0) > ((int32_t)L_1)))
|
|
{
|
|
goto IL_0008;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_2 = ___1_b;
|
|
G_B3_0 = L_2;
|
|
goto IL_0009;
|
|
}
|
|
|
|
IL_0008:
|
|
{
|
|
int32_t L_3 = ___0_a;
|
|
G_B3_0 = L_3;
|
|
}
|
|
|
|
IL_0009:
|
|
{
|
|
V_0 = G_B3_0;
|
|
goto IL_000c;
|
|
}
|
|
|
|
IL_000c:
|
|
{
|
|
int32_t L_4 = V_0;
|
|
return L_4;
|
|
}
|
|
}
|
|
// Method Definition Index: 35015
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t UniversalRenderPipeline_get_startFrameScreenMSAASamples_m792250C7C4608F91083A8C270ECEA9C67CE7E041_inline (const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UniversalRenderPipeline_t54B4737DC500C08628C5BE283D8C583C14DED98F_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.universal@a2829103b3d4/Runtime/UniversalRenderPipeline.cs:203>
|
|
il2cpp_codegen_runtime_class_init_inline(UniversalRenderPipeline_t54B4737DC500C08628C5BE283D8C583C14DED98F_il2cpp_TypeInfo_var);
|
|
int32_t L_0 = ((UniversalRenderPipeline_t54B4737DC500C08628C5BE283D8C583C14DED98F_StaticFields*)il2cpp_codegen_static_fields_for(UniversalRenderPipeline_t54B4737DC500C08628C5BE283D8C583C14DED98F_il2cpp_TypeInfo_var))->___U3CstartFrameScreenMSAASamplesU3Ek__BackingField;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 9293
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void List_1_Add_m999CAB0903219BD2CF988827287D44B0B44D69FE_gshared_inline (List_1_t4673975A297A80D4D4A65EB5A2BE3B6BD1EED9AF* __this, ShaderTagId_t453E2085B5EE9448FF75E550CAB111EFF690ECB0 ___0_item, const RuntimeMethod* method)
|
|
{
|
|
ShaderTagIdU5BU5D_tE1BA124E13B8096153E25C5AF9C1D15D71466143* V_0 = NULL;
|
|
int32_t V_1 = 0;
|
|
{
|
|
int32_t L_0 = __this->____version;
|
|
__this->____version = ((int32_t)il2cpp_codegen_add(L_0, 1));
|
|
ShaderTagIdU5BU5D_tE1BA124E13B8096153E25C5AF9C1D15D71466143* L_1 = __this->____items;
|
|
V_0 = L_1;
|
|
int32_t L_2 = __this->____size;
|
|
V_1 = L_2;
|
|
int32_t L_3 = V_1;
|
|
ShaderTagIdU5BU5D_tE1BA124E13B8096153E25C5AF9C1D15D71466143* L_4 = V_0;
|
|
NullCheck(L_4);
|
|
if ((!(((uint32_t)L_3) < ((uint32_t)((int32_t)(((RuntimeArray*)L_4)->max_length))))))
|
|
{
|
|
goto IL_0034;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_5 = V_1;
|
|
__this->____size = ((int32_t)il2cpp_codegen_add(L_5, 1));
|
|
ShaderTagIdU5BU5D_tE1BA124E13B8096153E25C5AF9C1D15D71466143* L_6 = V_0;
|
|
int32_t L_7 = V_1;
|
|
ShaderTagId_t453E2085B5EE9448FF75E550CAB111EFF690ECB0 L_8 = ___0_item;
|
|
NullCheck(L_6);
|
|
(L_6)->SetAt(static_cast<il2cpp_array_size_t>(L_7), (ShaderTagId_t453E2085B5EE9448FF75E550CAB111EFF690ECB0)L_8);
|
|
return;
|
|
}
|
|
|
|
IL_0034:
|
|
{
|
|
ShaderTagId_t453E2085B5EE9448FF75E550CAB111EFF690ECB0 L_9 = ___0_item;
|
|
List_1_AddWithResize_m9DC0CBC6B2899B36D53FDDEC54B3367D03C0FCC7(__this, L_9, il2cpp_rgctx_method(method->klass->rgctx_data, 14));
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 28259
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* ContextContainer_Get_TisRuntimeObject_mD332AE37F62256B78E48145FFDEADB66FEEF3A5E_gshared_inline (ContextContainer_t384E08F63FABEFF6A7F1A753F5EF02699DAD414C* __this, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
uint32_t V_0 = 0;
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.core@5e056b397fc0/Runtime/Common/ContextContainer.cs:26>
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->rgctx_data, 1));
|
|
uint32_t L_0 = ((TypeId_1_tF7C39317892E31289E8C529424E70ED463C8334C_StaticFields*)il2cpp_codegen_static_fields_for(il2cpp_rgctx_data(method->rgctx_data, 1)))->___value;
|
|
V_0 = L_0;
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.core@5e056b397fc0/Runtime/Common/ContextContainer.cs:27>
|
|
uint32_t L_1 = V_0;
|
|
bool L_2;
|
|
L_2 = ContextContainer_Contains_mD38FBF0FAC84169E395802CBF880BD0980490AF3_inline(__this, L_1, NULL);
|
|
if (L_2)
|
|
{
|
|
goto IL_0033;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.core@5e056b397fc0/Runtime/Common/ContextContainer.cs:29>
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_3 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(method->rgctx_data, 2)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_4;
|
|
L_4 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_3, NULL);
|
|
NullCheck(L_4);
|
|
String_t* L_5;
|
|
L_5 = VirtualFuncInvoker0< String_t* >::Invoke(25, L_4);
|
|
String_t* L_6;
|
|
L_6 = String_Concat_m8855A6DE10F84DA7F4EC113CADDB59873A25573B(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral49AE794C00022ECA141068DEA9531BF6E0D342B7)), L_5, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral01A849374C26F36DBF4641EFCBB31ABDCEFF10D2)), NULL);
|
|
InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_7 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
|
|
InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_7, L_6, NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_7, method);
|
|
}
|
|
|
|
IL_0033:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.core@5e056b397fc0/Runtime/Common/ContextContainer.cs:32>
|
|
ItemU5BU5D_t4AC8CDDFF9ED634B9ECE154F0C638C00B12B5CCB* L_8 = __this->___m_Items;
|
|
uint32_t L_9 = V_0;
|
|
NullCheck(L_8);
|
|
ContextItem_tFC5ECB349F0410923AE6BC2A9CAACA3589B51086* L_10 = ((L_8)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_9)))->___storage;
|
|
return ((RuntimeObject*)Castclass((RuntimeObject*)L_10, il2cpp_rgctx_data(method->rgctx_data, 3)));
|
|
}
|
|
}
|
|
// Method Definition Index: 9282
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t List_1_get_Count_mED203CDDFC49CE3879C37BC63A8F53B4375C351B_gshared_inline (List_1_t218CEA415E5769B47AB34C68D264977822ECAD17* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = __this->____size;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 9368
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t Queue_1_get_Count_mC5E49C471693AD17FDBA87D8532FB0676AC0BB75_gshared_inline (Queue_1_tCA24E420CB13C6411AEFC3ECE9E62219F7937A1E* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = __this->____size;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 9293
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void List_1_Add_mF87065DB2C5D09F1743E971BED0CCDC4827EB029_gshared_inline (List_1_t218CEA415E5769B47AB34C68D264977822ECAD17* __this, DecalEntityItem_tE2209120E111E679725F7022B0C54DEC6783EA5D ___0_item, const RuntimeMethod* method)
|
|
{
|
|
DecalEntityItemU5BU5D_t4667E6B7E7BCD5313A0D07A782F44A8954080359* V_0 = NULL;
|
|
int32_t V_1 = 0;
|
|
{
|
|
int32_t L_0 = __this->____version;
|
|
__this->____version = ((int32_t)il2cpp_codegen_add(L_0, 1));
|
|
DecalEntityItemU5BU5D_t4667E6B7E7BCD5313A0D07A782F44A8954080359* L_1 = __this->____items;
|
|
V_0 = L_1;
|
|
int32_t L_2 = __this->____size;
|
|
V_1 = L_2;
|
|
int32_t L_3 = V_1;
|
|
DecalEntityItemU5BU5D_t4667E6B7E7BCD5313A0D07A782F44A8954080359* L_4 = V_0;
|
|
NullCheck(L_4);
|
|
if ((!(((uint32_t)L_3) < ((uint32_t)((int32_t)(((RuntimeArray*)L_4)->max_length))))))
|
|
{
|
|
goto IL_0034;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_5 = V_1;
|
|
__this->____size = ((int32_t)il2cpp_codegen_add(L_5, 1));
|
|
DecalEntityItemU5BU5D_t4667E6B7E7BCD5313A0D07A782F44A8954080359* L_6 = V_0;
|
|
int32_t L_7 = V_1;
|
|
DecalEntityItem_tE2209120E111E679725F7022B0C54DEC6783EA5D L_8 = ___0_item;
|
|
NullCheck(L_6);
|
|
(L_6)->SetAt(static_cast<il2cpp_array_size_t>(L_7), (DecalEntityItem_tE2209120E111E679725F7022B0C54DEC6783EA5D)L_8);
|
|
return;
|
|
}
|
|
|
|
IL_0034:
|
|
{
|
|
DecalEntityItem_tE2209120E111E679725F7022B0C54DEC6783EA5D L_9 = ___0_item;
|
|
List_1_AddWithResize_m2E6AC37E6A35250D5466273135CC6693D65E6FC6(__this, L_9, il2cpp_rgctx_method(method->klass->rgctx_data, 14));
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 9301
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void List_1_Clear_m522A510644863A65AB5D00B85D6D20F27E8868FF_gshared_inline (List_1_t218CEA415E5769B47AB34C68D264977822ECAD17* __this, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
{
|
|
int32_t L_0 = __this->____version;
|
|
__this->____version = ((int32_t)il2cpp_codegen_add(L_0, 1));
|
|
goto IL_0035;
|
|
}
|
|
|
|
IL_0035:
|
|
{
|
|
__this->____size = 0;
|
|
}
|
|
|
|
IL_003c:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 9293
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void List_1_Add_mEBCF994CC3814631017F46A387B1A192ED6C85C7_gshared_inline (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* __this, RuntimeObject* ___0_item, const RuntimeMethod* method)
|
|
{
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* V_0 = NULL;
|
|
int32_t V_1 = 0;
|
|
{
|
|
int32_t L_0 = __this->____version;
|
|
__this->____version = ((int32_t)il2cpp_codegen_add(L_0, 1));
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_1 = __this->____items;
|
|
V_0 = L_1;
|
|
int32_t L_2 = __this->____size;
|
|
V_1 = L_2;
|
|
int32_t L_3 = V_1;
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_4 = V_0;
|
|
NullCheck(L_4);
|
|
if ((!(((uint32_t)L_3) < ((uint32_t)((int32_t)(((RuntimeArray*)L_4)->max_length))))))
|
|
{
|
|
goto IL_0034;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_5 = V_1;
|
|
__this->____size = ((int32_t)il2cpp_codegen_add(L_5, 1));
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_6 = V_0;
|
|
int32_t L_7 = V_1;
|
|
RuntimeObject* L_8 = ___0_item;
|
|
NullCheck(L_6);
|
|
(L_6)->SetAt(static_cast<il2cpp_array_size_t>(L_7), (RuntimeObject*)L_8);
|
|
return;
|
|
}
|
|
|
|
IL_0034:
|
|
{
|
|
RuntimeObject* L_9 = ___0_item;
|
|
List_1_AddWithResize_m79A9BF770BEF9C06BE40D5401E55E375F2726CC4(__this, L_9, il2cpp_rgctx_method(method->klass->rgctx_data, 14));
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 9293
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void List_1_Add_m53400F87C60C102F372B41825F43DDAA9544F2B7_gshared_inline (List_1_t75FC6D059D696BAD77462D09FCDC98B4A7B7D3D4* __this, CombinedChunks_tCFB3356163B9F9B0E31E0B194E9B415F83340ED9 ___0_item, const RuntimeMethod* method)
|
|
{
|
|
CombinedChunksU5BU5D_tE1B967C0ED5D0439978E22BAE927DAB629A4E5DD* V_0 = NULL;
|
|
int32_t V_1 = 0;
|
|
{
|
|
int32_t L_0 = __this->____version;
|
|
__this->____version = ((int32_t)il2cpp_codegen_add(L_0, 1));
|
|
CombinedChunksU5BU5D_tE1B967C0ED5D0439978E22BAE927DAB629A4E5DD* L_1 = __this->____items;
|
|
V_0 = L_1;
|
|
int32_t L_2 = __this->____size;
|
|
V_1 = L_2;
|
|
int32_t L_3 = V_1;
|
|
CombinedChunksU5BU5D_tE1B967C0ED5D0439978E22BAE927DAB629A4E5DD* L_4 = V_0;
|
|
NullCheck(L_4);
|
|
if ((!(((uint32_t)L_3) < ((uint32_t)((int32_t)(((RuntimeArray*)L_4)->max_length))))))
|
|
{
|
|
goto IL_0034;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_5 = V_1;
|
|
__this->____size = ((int32_t)il2cpp_codegen_add(L_5, 1));
|
|
CombinedChunksU5BU5D_tE1B967C0ED5D0439978E22BAE927DAB629A4E5DD* L_6 = V_0;
|
|
int32_t L_7 = V_1;
|
|
CombinedChunks_tCFB3356163B9F9B0E31E0B194E9B415F83340ED9 L_8 = ___0_item;
|
|
NullCheck(L_6);
|
|
(L_6)->SetAt(static_cast<il2cpp_array_size_t>(L_7), (CombinedChunks_tCFB3356163B9F9B0E31E0B194E9B415F83340ED9)L_8);
|
|
return;
|
|
}
|
|
|
|
IL_0034:
|
|
{
|
|
CombinedChunks_tCFB3356163B9F9B0E31E0B194E9B415F83340ED9 L_9 = ___0_item;
|
|
List_1_AddWithResize_mC95A72BD9417C19E5A29495887130736575B720E(__this, L_9, il2cpp_rgctx_method(method->klass->rgctx_data, 14));
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 9293
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void List_1_Add_m0248A96C5334E9A93E6994B7780478BCD994EA3D_gshared_inline (List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* __this, int32_t ___0_item, const RuntimeMethod* method)
|
|
{
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* V_0 = NULL;
|
|
int32_t V_1 = 0;
|
|
{
|
|
int32_t L_0 = __this->____version;
|
|
__this->____version = ((int32_t)il2cpp_codegen_add(L_0, 1));
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_1 = __this->____items;
|
|
V_0 = L_1;
|
|
int32_t L_2 = __this->____size;
|
|
V_1 = L_2;
|
|
int32_t L_3 = V_1;
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_4 = V_0;
|
|
NullCheck(L_4);
|
|
if ((!(((uint32_t)L_3) < ((uint32_t)((int32_t)(((RuntimeArray*)L_4)->max_length))))))
|
|
{
|
|
goto IL_0034;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_5 = V_1;
|
|
__this->____size = ((int32_t)il2cpp_codegen_add(L_5, 1));
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_6 = V_0;
|
|
int32_t L_7 = V_1;
|
|
int32_t L_8 = ___0_item;
|
|
NullCheck(L_6);
|
|
(L_6)->SetAt(static_cast<il2cpp_array_size_t>(L_7), (int32_t)L_8);
|
|
return;
|
|
}
|
|
|
|
IL_0034:
|
|
{
|
|
int32_t L_9 = ___0_item;
|
|
List_1_AddWithResize_m378B392086AAB6F400944FA9839516326B3F7BB8(__this, L_9, il2cpp_rgctx_method(method->klass->rgctx_data, 14));
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 9342
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* Enumerator_get_Current_m6330F15D18EE4F547C05DF9BF83C5EB710376027_gshared_inline (Enumerator_t9473BAB568A27E2339D48C1F91319E0F6D244D7A* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
RuntimeObject* L_0 = __this->____current;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 9301
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void List_1_Clear_m16C1F2C61FED5955F10EB36BC1CB2DF34B128994_gshared_inline (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* __this, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
{
|
|
int32_t L_0 = __this->____version;
|
|
__this->____version = ((int32_t)il2cpp_codegen_add(L_0, 1));
|
|
}
|
|
{
|
|
int32_t L_1 = __this->____size;
|
|
V_0 = L_1;
|
|
__this->____size = 0;
|
|
int32_t L_2 = V_0;
|
|
if ((((int32_t)L_2) <= ((int32_t)0)))
|
|
{
|
|
goto IL_003c;
|
|
}
|
|
}
|
|
{
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_3 = __this->____items;
|
|
int32_t L_4 = V_0;
|
|
Array_Clear_m50BAA3751899858B097D3FF2ED31F284703FE5CB((RuntimeArray*)L_3, 0, L_4, NULL);
|
|
return;
|
|
}
|
|
|
|
IL_003c:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 9301
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void List_1_Clear_mF3D2F0801D0D95591EAFF99E087D27BE7EABA697_gshared_inline (List_1_t75FC6D059D696BAD77462D09FCDC98B4A7B7D3D4* __this, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
{
|
|
int32_t L_0 = __this->____version;
|
|
__this->____version = ((int32_t)il2cpp_codegen_add(L_0, 1));
|
|
}
|
|
{
|
|
int32_t L_1 = __this->____size;
|
|
V_0 = L_1;
|
|
__this->____size = 0;
|
|
int32_t L_2 = V_0;
|
|
if ((((int32_t)L_2) <= ((int32_t)0)))
|
|
{
|
|
goto IL_003c;
|
|
}
|
|
}
|
|
{
|
|
CombinedChunksU5BU5D_tE1B967C0ED5D0439978E22BAE927DAB629A4E5DD* L_3 = __this->____items;
|
|
int32_t L_4 = V_0;
|
|
Array_Clear_m50BAA3751899858B097D3FF2ED31F284703FE5CB((RuntimeArray*)L_3, 0, L_4, NULL);
|
|
return;
|
|
}
|
|
|
|
IL_003c:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 9282
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t List_1_get_Count_m4407E4C389F22B8CEC282C15D56516658746C383_gshared_inline (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = __this->____size;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 35863
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t Enumerator_get_Current_m9615CE722B0B33517472FA29CB73AE60D8E8D522_gshared_inline (Enumerator_t7767C5CF41D19BF6C7326C9870C530F1AD3CAC30* __this, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
{
|
|
int32_t L_0 = __this->___value;
|
|
V_0 = L_0;
|
|
goto IL_000a;
|
|
}
|
|
|
|
IL_000a:
|
|
{
|
|
int32_t L_1 = V_0;
|
|
return L_1;
|
|
}
|
|
}
|
|
// Method Definition Index: 35861
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m62905577B99C79AEA734E15AC569B10365214EDA_gshared_inline (Enumerator_t7767C5CF41D19BF6C7326C9870C530F1AD3CAC30* __this, const RuntimeMethod* method)
|
|
{
|
|
bool V_0 = false;
|
|
bool V_1 = false;
|
|
{
|
|
int32_t L_0 = __this->___m_Index;
|
|
__this->___m_Index = ((int32_t)il2cpp_codegen_add(L_0, 1));
|
|
int32_t L_1 = __this->___m_Index;
|
|
NativeArray_1_tA833EB7E3E1C9AF82C37976AD964B8D4BAC38B2C* L_2 = (NativeArray_1_tA833EB7E3E1C9AF82C37976AD964B8D4BAC38B2C*)(&__this->___m_Array);
|
|
int32_t L_3 = L_2->___m_Length;
|
|
V_0 = (bool)((((int32_t)L_1) < ((int32_t)L_3))? 1 : 0);
|
|
bool L_4 = V_0;
|
|
if (!L_4)
|
|
{
|
|
goto IL_0047;
|
|
}
|
|
}
|
|
{
|
|
NativeArray_1_tA833EB7E3E1C9AF82C37976AD964B8D4BAC38B2C* L_5 = (NativeArray_1_tA833EB7E3E1C9AF82C37976AD964B8D4BAC38B2C*)(&__this->___m_Array);
|
|
void* L_6 = L_5->___m_Buffer;
|
|
int32_t L_7 = __this->___m_Index;
|
|
int32_t L_8;
|
|
L_8 = UnsafeUtility_ReadArrayElement_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_mFBA66C06ECEB0A2BC1AAE634B6E6BB436F957084_inline(L_6, L_7, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 4));
|
|
__this->___value = L_8;
|
|
V_1 = (bool)1;
|
|
goto IL_0057;
|
|
}
|
|
|
|
IL_0047:
|
|
{
|
|
int32_t* L_9 = (int32_t*)(&__this->___value);
|
|
il2cpp_codegen_initobj(L_9, sizeof(int32_t));
|
|
V_1 = (bool)0;
|
|
goto IL_0057;
|
|
}
|
|
|
|
IL_0057:
|
|
{
|
|
bool L_10 = V_1;
|
|
return L_10;
|
|
}
|
|
}
|
|
// Method Definition Index: 2695
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RenderTargetIdentifierU5BU5D_t179798C153B7CE381B41C57863F98CB24023C4CE* Array_Empty_TisRenderTargetIdentifier_tA528663AC6EB3911D8E91AA40F7070FA5455442B_mE9CB7004FB24F2FE6566E734B9132170794E41F6_gshared_inline (const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->rgctx_data, 2));
|
|
RenderTargetIdentifierU5BU5D_t179798C153B7CE381B41C57863F98CB24023C4CE* L_0 = ((EmptyArray_1_tB88A622B0CABB73806296B59E273155CA96811AE_StaticFields*)il2cpp_codegen_static_fields_for(il2cpp_rgctx_data(method->rgctx_data, 2)))->___Value;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 2695
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* Array_Empty_TisRuntimeObject_mFB8A63D602BB6974D31E20300D9EB89C6FE7C278_gshared_inline (const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->rgctx_data, 2));
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_0 = ((EmptyArray_1_tDF0DD7256B115243AA6BD5558417387A734240EE_StaticFields*)il2cpp_codegen_static_fields_for(il2cpp_rgctx_data(method->rgctx_data, 2)))->___Value;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 37896
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Vector2_op_Equality_m6F2E069A50E787D131261E5CB25FC9E03F95B5E1_inline (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___0_lhs, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___1_rhs, const RuntimeMethod* method)
|
|
{
|
|
float V_0 = 0.0f;
|
|
float V_1 = 0.0f;
|
|
bool V_2 = false;
|
|
{
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_0 = ___0_lhs;
|
|
float L_1 = L_0.___x;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_2 = ___1_rhs;
|
|
float L_3 = L_2.___x;
|
|
V_0 = ((float)il2cpp_codegen_subtract(L_1, L_3));
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_4 = ___0_lhs;
|
|
float L_5 = L_4.___y;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_6 = ___1_rhs;
|
|
float L_7 = L_6.___y;
|
|
V_1 = ((float)il2cpp_codegen_subtract(L_5, L_7));
|
|
float L_8 = V_0;
|
|
float L_9 = V_0;
|
|
float L_10 = V_1;
|
|
float L_11 = V_1;
|
|
V_2 = (bool)((((float)((float)il2cpp_codegen_add(((float)il2cpp_codegen_multiply(L_8, L_9)), ((float)il2cpp_codegen_multiply(L_10, L_11))))) < ((float)(9.99999944E-11f)))? 1 : 0);
|
|
goto IL_002e;
|
|
}
|
|
|
|
IL_002e:
|
|
{
|
|
bool L_12 = V_2;
|
|
return L_12;
|
|
}
|
|
}
|
|
// Method Definition Index: 37779
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Vector3_op_Equality_mCDCBB8D2EDC3D3BF20F31A25ACB34705D352B479_inline (Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___0_lhs, Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___1_rhs, const RuntimeMethod* method)
|
|
{
|
|
float V_0 = 0.0f;
|
|
float V_1 = 0.0f;
|
|
float V_2 = 0.0f;
|
|
float V_3 = 0.0f;
|
|
bool V_4 = false;
|
|
{
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_0 = ___0_lhs;
|
|
float L_1 = L_0.___x;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_2 = ___1_rhs;
|
|
float L_3 = L_2.___x;
|
|
V_0 = ((float)il2cpp_codegen_subtract(L_1, L_3));
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_4 = ___0_lhs;
|
|
float L_5 = L_4.___y;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_6 = ___1_rhs;
|
|
float L_7 = L_6.___y;
|
|
V_1 = ((float)il2cpp_codegen_subtract(L_5, L_7));
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_8 = ___0_lhs;
|
|
float L_9 = L_8.___z;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_10 = ___1_rhs;
|
|
float L_11 = L_10.___z;
|
|
V_2 = ((float)il2cpp_codegen_subtract(L_9, L_11));
|
|
float L_12 = V_0;
|
|
float L_13 = V_0;
|
|
float L_14 = V_1;
|
|
float L_15 = V_1;
|
|
float L_16 = V_2;
|
|
float L_17 = V_2;
|
|
V_3 = ((float)il2cpp_codegen_add(((float)il2cpp_codegen_add(((float)il2cpp_codegen_multiply(L_12, L_13)), ((float)il2cpp_codegen_multiply(L_14, L_15)))), ((float)il2cpp_codegen_multiply(L_16, L_17))));
|
|
float L_18 = V_3;
|
|
V_4 = (bool)((((float)L_18) < ((float)(9.99999944E-11f)))? 1 : 0);
|
|
goto IL_0043;
|
|
}
|
|
|
|
IL_0043:
|
|
{
|
|
bool L_19 = V_4;
|
|
return L_19;
|
|
}
|
|
}
|
|
// Method Definition Index: 1954
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Single_IsNaN_mFE637F6ECA9F7697CE8EFF56427858F4C5EDF75D_inline (float ___0_f, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
float L_0 = ___0_f;
|
|
int32_t L_1;
|
|
L_1 = BitConverter_SingleToInt32Bits_mC760C7CFC89725E3CF68DC45BE3A9A42A7E7DA73_inline(L_0, NULL);
|
|
return (bool)((((int32_t)((int32_t)(L_1&((int32_t)2147483647LL)))) > ((int32_t)((int32_t)2139095040)))? 1 : 0);
|
|
}
|
|
}
|
|
// Method Definition Index: 41552
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float math_max_m4B454A91AE8827997609E74C4C24036BBD3CC496_inline (float ___0_x, float ___1_y, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.mathematics@8017b507cc74/Unity.Mathematics/math.cs:1061>
|
|
float L_0 = ___1_y;
|
|
bool L_1;
|
|
L_1 = Single_IsNaN_mFE637F6ECA9F7697CE8EFF56427858F4C5EDF75D_inline(L_0, NULL);
|
|
if (L_1)
|
|
{
|
|
goto IL_000e;
|
|
}
|
|
}
|
|
{
|
|
float L_2 = ___0_x;
|
|
float L_3 = ___1_y;
|
|
if ((((float)L_2) > ((float)L_3)))
|
|
{
|
|
goto IL_000e;
|
|
}
|
|
}
|
|
{
|
|
float L_4 = ___1_y;
|
|
return L_4;
|
|
}
|
|
|
|
IL_000e:
|
|
{
|
|
float L_5 = ___0_x;
|
|
return L_5;
|
|
}
|
|
}
|
|
// Method Definition Index: 41914
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float math_lengthsq_m246AAF09A2EA30D8FE4314442E031D9B5AFF31FF_inline (float4_t89D9A294E7A79BD81BFBDD18654508532958555E ___0_x, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.mathematics@8017b507cc74/Unity.Mathematics/math.cs:3674>
|
|
float4_t89D9A294E7A79BD81BFBDD18654508532958555E L_0 = ___0_x;
|
|
float4_t89D9A294E7A79BD81BFBDD18654508532958555E L_1 = ___0_x;
|
|
float L_2;
|
|
L_2 = math_dot_m20F2285F7227DC308D9CF2DCB8EAAD3E774501D4_inline(L_0, L_1, NULL);
|
|
return L_2;
|
|
}
|
|
}
|
|
// Method Definition Index: 45218
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float3_t4AB5D88249ADB24F69FFD0793E8ED25E1CC3745E float3_op_Subtraction_mB6036E9849D95650D6E73DA0D179CD7B61E696F2_inline (float3_t4AB5D88249ADB24F69FFD0793E8ED25E1CC3745E ___0_lhs, float3_t4AB5D88249ADB24F69FFD0793E8ED25E1CC3745E ___1_rhs, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.mathematics@8017b507cc74/Unity.Mathematics/float3.gen.cs:305>
|
|
float3_t4AB5D88249ADB24F69FFD0793E8ED25E1CC3745E L_0 = ___0_lhs;
|
|
float L_1 = L_0.___x;
|
|
float3_t4AB5D88249ADB24F69FFD0793E8ED25E1CC3745E L_2 = ___1_rhs;
|
|
float L_3 = L_2.___x;
|
|
float3_t4AB5D88249ADB24F69FFD0793E8ED25E1CC3745E L_4 = ___0_lhs;
|
|
float L_5 = L_4.___y;
|
|
float3_t4AB5D88249ADB24F69FFD0793E8ED25E1CC3745E L_6 = ___1_rhs;
|
|
float L_7 = L_6.___y;
|
|
float3_t4AB5D88249ADB24F69FFD0793E8ED25E1CC3745E L_8 = ___0_lhs;
|
|
float L_9 = L_8.___z;
|
|
float3_t4AB5D88249ADB24F69FFD0793E8ED25E1CC3745E L_10 = ___1_rhs;
|
|
float L_11 = L_10.___z;
|
|
float3_t4AB5D88249ADB24F69FFD0793E8ED25E1CC3745E L_12;
|
|
memset((&L_12), 0, sizeof(L_12));
|
|
float3__ctor_mC61002CD0EC13D7C37D846D021A78C028FB80DB9_inline((&L_12), ((float)il2cpp_codegen_subtract(L_1, L_3)), ((float)il2cpp_codegen_subtract(L_5, L_7)), ((float)il2cpp_codegen_subtract(L_9, L_11)), NULL);
|
|
return L_12;
|
|
}
|
|
}
|
|
// Method Definition Index: 41913
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float math_lengthsq_mC699F3F214F05B26BEBAF1B46E3AA3C00407A532_inline (float3_t4AB5D88249ADB24F69FFD0793E8ED25E1CC3745E ___0_x, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.mathematics@8017b507cc74/Unity.Mathematics/math.cs:3668>
|
|
float3_t4AB5D88249ADB24F69FFD0793E8ED25E1CC3745E L_0 = ___0_x;
|
|
float3_t4AB5D88249ADB24F69FFD0793E8ED25E1CC3745E L_1 = ___0_x;
|
|
float L_2;
|
|
L_2 = math_dot_mE193D8880350D74CC8D63A0D53CDC5902F844AAD_inline(L_0, L_1, NULL);
|
|
return L_2;
|
|
}
|
|
}
|
|
// Method Definition Index: 45635
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float4_t89D9A294E7A79BD81BFBDD18654508532958555E float4_op_Multiply_m712573F441DA8AF0843DE2167927FB76E642B1EB_inline (float4_t89D9A294E7A79BD81BFBDD18654508532958555E ___0_lhs, float ___1_rhs, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.mathematics@8017b507cc74/Unity.Mathematics/float4.gen.cs:337>
|
|
float4_t89D9A294E7A79BD81BFBDD18654508532958555E L_0 = ___0_lhs;
|
|
float L_1 = L_0.___x;
|
|
float L_2 = ___1_rhs;
|
|
float4_t89D9A294E7A79BD81BFBDD18654508532958555E L_3 = ___0_lhs;
|
|
float L_4 = L_3.___y;
|
|
float L_5 = ___1_rhs;
|
|
float4_t89D9A294E7A79BD81BFBDD18654508532958555E L_6 = ___0_lhs;
|
|
float L_7 = L_6.___z;
|
|
float L_8 = ___1_rhs;
|
|
float4_t89D9A294E7A79BD81BFBDD18654508532958555E L_9 = ___0_lhs;
|
|
float L_10 = L_9.___w;
|
|
float L_11 = ___1_rhs;
|
|
float4_t89D9A294E7A79BD81BFBDD18654508532958555E L_12;
|
|
memset((&L_12), 0, sizeof(L_12));
|
|
float4__ctor_mB2F7F2D8BCE8159BEF5A0D6400499E211858ED2D_inline((&L_12), ((float)il2cpp_codegen_multiply(L_1, L_2)), ((float)il2cpp_codegen_multiply(L_4, L_5)), ((float)il2cpp_codegen_multiply(L_7, L_8)), ((float)il2cpp_codegen_multiply(L_10, L_11)), NULL);
|
|
return L_12;
|
|
}
|
|
}
|
|
// Method Definition Index: 41212
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float4x4_t7EDD16F7F57DC7F61A6302535F7C19FB97915DF2 math_float4x4_m7C95B2B93CDEE0AF483EB84446F9F06F7B1AD261_inline (float4_t89D9A294E7A79BD81BFBDD18654508532958555E ___0_c0, float4_t89D9A294E7A79BD81BFBDD18654508532958555E ___1_c1, float4_t89D9A294E7A79BD81BFBDD18654508532958555E ___2_c2, float4_t89D9A294E7A79BD81BFBDD18654508532958555E ___3_c3, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.mathematics@8017b507cc74/Unity.Mathematics/float4x4.gen.cs:566>
|
|
float4_t89D9A294E7A79BD81BFBDD18654508532958555E L_0 = ___0_c0;
|
|
float4_t89D9A294E7A79BD81BFBDD18654508532958555E L_1 = ___1_c1;
|
|
float4_t89D9A294E7A79BD81BFBDD18654508532958555E L_2 = ___2_c2;
|
|
float4_t89D9A294E7A79BD81BFBDD18654508532958555E L_3 = ___3_c3;
|
|
float4x4_t7EDD16F7F57DC7F61A6302535F7C19FB97915DF2 L_4;
|
|
memset((&L_4), 0, sizeof(L_4));
|
|
float4x4__ctor_mF0B7C823E36025A539E8024123057CAC380E97EF_inline((&L_4), L_0, L_1, L_2, L_3, NULL);
|
|
return L_4;
|
|
}
|
|
}
|
|
// Method Definition Index: 45950
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float4_t89D9A294E7A79BD81BFBDD18654508532958555E float4_get_wwww_mF04E8B99431D2717DEE58BDAE207EF4C7E1A0009_inline (float4_t89D9A294E7A79BD81BFBDD18654508532958555E* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.mathematics@8017b507cc74/Unity.Mathematics/float4.gen.cs:2945>
|
|
float L_0 = __this->___w;
|
|
float L_1 = __this->___w;
|
|
float L_2 = __this->___w;
|
|
float L_3 = __this->___w;
|
|
float4_t89D9A294E7A79BD81BFBDD18654508532958555E L_4;
|
|
memset((&L_4), 0, sizeof(L_4));
|
|
float4__ctor_mB2F7F2D8BCE8159BEF5A0D6400499E211858ED2D_inline((&L_4), L_0, L_1, L_2, L_3, NULL);
|
|
return L_4;
|
|
}
|
|
}
|
|
// Method Definition Index: 45634
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float4_t89D9A294E7A79BD81BFBDD18654508532958555E float4_op_Multiply_m0E98338FB7DFF55B101EBCD78A8703ADB9C08667_inline (float4_t89D9A294E7A79BD81BFBDD18654508532958555E ___0_lhs, float4_t89D9A294E7A79BD81BFBDD18654508532958555E ___1_rhs, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.mathematics@8017b507cc74/Unity.Mathematics/float4.gen.cs:330>
|
|
float4_t89D9A294E7A79BD81BFBDD18654508532958555E L_0 = ___0_lhs;
|
|
float L_1 = L_0.___x;
|
|
float4_t89D9A294E7A79BD81BFBDD18654508532958555E L_2 = ___1_rhs;
|
|
float L_3 = L_2.___x;
|
|
float4_t89D9A294E7A79BD81BFBDD18654508532958555E L_4 = ___0_lhs;
|
|
float L_5 = L_4.___y;
|
|
float4_t89D9A294E7A79BD81BFBDD18654508532958555E L_6 = ___1_rhs;
|
|
float L_7 = L_6.___y;
|
|
float4_t89D9A294E7A79BD81BFBDD18654508532958555E L_8 = ___0_lhs;
|
|
float L_9 = L_8.___z;
|
|
float4_t89D9A294E7A79BD81BFBDD18654508532958555E L_10 = ___1_rhs;
|
|
float L_11 = L_10.___z;
|
|
float4_t89D9A294E7A79BD81BFBDD18654508532958555E L_12 = ___0_lhs;
|
|
float L_13 = L_12.___w;
|
|
float4_t89D9A294E7A79BD81BFBDD18654508532958555E L_14 = ___1_rhs;
|
|
float L_15 = L_14.___w;
|
|
float4_t89D9A294E7A79BD81BFBDD18654508532958555E L_16;
|
|
memset((&L_16), 0, sizeof(L_16));
|
|
float4__ctor_mB2F7F2D8BCE8159BEF5A0D6400499E211858ED2D_inline((&L_16), ((float)il2cpp_codegen_multiply(L_1, L_3)), ((float)il2cpp_codegen_multiply(L_5, L_7)), ((float)il2cpp_codegen_multiply(L_9, L_11)), ((float)il2cpp_codegen_multiply(L_13, L_15)), NULL);
|
|
return L_16;
|
|
}
|
|
}
|
|
// Method Definition Index: 45695
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float4_t89D9A294E7A79BD81BFBDD18654508532958555E float4_get_xyzx_m5FFC709BBF25AC7B7755AE077E4288E47089C76C_inline (float4_t89D9A294E7A79BD81BFBDD18654508532958555E* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.mathematics@8017b507cc74/Unity.Mathematics/float4.gen.cs:818>
|
|
float L_0 = __this->___x;
|
|
float L_1 = __this->___y;
|
|
float L_2 = __this->___z;
|
|
float L_3 = __this->___x;
|
|
float4_t89D9A294E7A79BD81BFBDD18654508532958555E L_4;
|
|
memset((&L_4), 0, sizeof(L_4));
|
|
float4__ctor_mB2F7F2D8BCE8159BEF5A0D6400499E211858ED2D_inline((&L_4), L_0, L_1, L_2, L_3, NULL);
|
|
return L_4;
|
|
}
|
|
}
|
|
// Method Definition Index: 45947
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float4_t89D9A294E7A79BD81BFBDD18654508532958555E float4_get_wwwx_m698BBD6517D0DCF19C3529E0E686FF430642E480_inline (float4_t89D9A294E7A79BD81BFBDD18654508532958555E* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.mathematics@8017b507cc74/Unity.Mathematics/float4.gen.cs:2918>
|
|
float L_0 = __this->___w;
|
|
float L_1 = __this->___w;
|
|
float L_2 = __this->___w;
|
|
float L_3 = __this->___x;
|
|
float4_t89D9A294E7A79BD81BFBDD18654508532958555E L_4;
|
|
memset((&L_4), 0, sizeof(L_4));
|
|
float4__ctor_mB2F7F2D8BCE8159BEF5A0D6400499E211858ED2D_inline((&L_4), L_0, L_1, L_2, L_3, NULL);
|
|
return L_4;
|
|
}
|
|
}
|
|
// Method Definition Index: 45776
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float4_t89D9A294E7A79BD81BFBDD18654508532958555E float4_get_yzxy_m78C60157637373AC6CB36343778B04CAA046ADDD_inline (float4_t89D9A294E7A79BD81BFBDD18654508532958555E* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.mathematics@8017b507cc74/Unity.Mathematics/float4.gen.cs:1491>
|
|
float L_0 = __this->___y;
|
|
float L_1 = __this->___z;
|
|
float L_2 = __this->___x;
|
|
float L_3 = __this->___y;
|
|
float4_t89D9A294E7A79BD81BFBDD18654508532958555E L_4;
|
|
memset((&L_4), 0, sizeof(L_4));
|
|
float4__ctor_mB2F7F2D8BCE8159BEF5A0D6400499E211858ED2D_inline((&L_4), L_0, L_1, L_2, L_3, NULL);
|
|
return L_4;
|
|
}
|
|
}
|
|
// Method Definition Index: 45816
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float4_t89D9A294E7A79BD81BFBDD18654508532958555E float4_get_zxyy_m4B8D0449EEB8DD3CE5A79C96E911C70617339C4E_inline (float4_t89D9A294E7A79BD81BFBDD18654508532958555E* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.mathematics@8017b507cc74/Unity.Mathematics/float4.gen.cs:1823>
|
|
float L_0 = __this->___z;
|
|
float L_1 = __this->___x;
|
|
float L_2 = __this->___y;
|
|
float L_3 = __this->___y;
|
|
float4_t89D9A294E7A79BD81BFBDD18654508532958555E L_4;
|
|
memset((&L_4), 0, sizeof(L_4));
|
|
float4__ctor_mB2F7F2D8BCE8159BEF5A0D6400499E211858ED2D_inline((&L_4), L_0, L_1, L_2, L_3, NULL);
|
|
return L_4;
|
|
}
|
|
}
|
|
// Method Definition Index: 41158
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float4_t89D9A294E7A79BD81BFBDD18654508532958555E math_float4_m16697C284FA0C25A84F3DC3E99F3D4C306B6BFBF_inline (float ___0_x, float ___1_y, float ___2_z, float ___3_w, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.mathematics@8017b507cc74/Unity.Mathematics/float4.gen.cs:3825>
|
|
float L_0 = ___0_x;
|
|
float L_1 = ___1_y;
|
|
float L_2 = ___2_z;
|
|
float L_3 = ___3_w;
|
|
float4_t89D9A294E7A79BD81BFBDD18654508532958555E L_4;
|
|
memset((&L_4), 0, sizeof(L_4));
|
|
float4__ctor_mB2F7F2D8BCE8159BEF5A0D6400499E211858ED2D_inline((&L_4), L_0, L_1, L_2, L_3, NULL);
|
|
return L_4;
|
|
}
|
|
}
|
|
// Method Definition Index: 45817
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float4_t89D9A294E7A79BD81BFBDD18654508532958555E float4_get_zxyz_m91C90CDA336353253B33F0407198ACCC593EBB1B_inline (float4_t89D9A294E7A79BD81BFBDD18654508532958555E* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.mathematics@8017b507cc74/Unity.Mathematics/float4.gen.cs:1832>
|
|
float L_0 = __this->___z;
|
|
float L_1 = __this->___x;
|
|
float L_2 = __this->___y;
|
|
float L_3 = __this->___z;
|
|
float4_t89D9A294E7A79BD81BFBDD18654508532958555E L_4;
|
|
memset((&L_4), 0, sizeof(L_4));
|
|
float4__ctor_mB2F7F2D8BCE8159BEF5A0D6400499E211858ED2D_inline((&L_4), L_0, L_1, L_2, L_3, NULL);
|
|
return L_4;
|
|
}
|
|
}
|
|
// Method Definition Index: 45777
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float4_t89D9A294E7A79BD81BFBDD18654508532958555E float4_get_yzxz_mE81FC33B6A0D370B2C8DB339CC5501533BB31223_inline (float4_t89D9A294E7A79BD81BFBDD18654508532958555E* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.mathematics@8017b507cc74/Unity.Mathematics/float4.gen.cs:1500>
|
|
float L_0 = __this->___y;
|
|
float L_1 = __this->___z;
|
|
float L_2 = __this->___x;
|
|
float L_3 = __this->___z;
|
|
float4_t89D9A294E7A79BD81BFBDD18654508532958555E L_4;
|
|
memset((&L_4), 0, sizeof(L_4));
|
|
float4__ctor_mB2F7F2D8BCE8159BEF5A0D6400499E211858ED2D_inline((&L_4), L_0, L_1, L_2, L_3, NULL);
|
|
return L_4;
|
|
}
|
|
}
|
|
// Method Definition Index: 42457
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR quaternion_tD6BCBECAF088B9EBAE2345EC8534C7A1A4C910D4 math_quaternion_m315B4CA2F8475CC33F3C73187F00AC8B64BBF939_inline (float4_t89D9A294E7A79BD81BFBDD18654508532958555E ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.mathematics@8017b507cc74/Unity.Mathematics/quaternion.cs:475>
|
|
float4_t89D9A294E7A79BD81BFBDD18654508532958555E L_0 = ___0_value;
|
|
quaternion_tD6BCBECAF088B9EBAE2345EC8534C7A1A4C910D4 L_1;
|
|
memset((&L_1), 0, sizeof(L_1));
|
|
quaternion__ctor_m2F6A34CCFD1150A326CB4CE108260A8BD8B1D75F_inline((&L_1), L_0, NULL);
|
|
return L_1;
|
|
}
|
|
}
|
|
// Method Definition Index: 42254
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float3x3_tB318DB8C7E54B6CA9E14EB9AC7F5964C1189FC79 math_float3x3_m850F2B065688B7C95009136DAA44853A04069298_inline (quaternion_tD6BCBECAF088B9EBAE2345EC8534C7A1A4C910D4 ___0_rotation, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.mathematics@8017b507cc74/Unity.Mathematics/matrix.cs:1038>
|
|
quaternion_tD6BCBECAF088B9EBAE2345EC8534C7A1A4C910D4 L_0 = ___0_rotation;
|
|
float3x3_tB318DB8C7E54B6CA9E14EB9AC7F5964C1189FC79 L_1;
|
|
memset((&L_1), 0, sizeof(L_1));
|
|
float3x3__ctor_mF94488DFF7867CFC89648E024FA89A19F23E2FAE((&L_1), L_0, NULL);
|
|
return L_1;
|
|
}
|
|
}
|
|
// Method Definition Index: 45213
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float3_t4AB5D88249ADB24F69FFD0793E8ED25E1CC3745E float3_op_Multiply_m6E5DC552C8B0F9A180298BD9197FF47B14E0EA81_inline (float3_t4AB5D88249ADB24F69FFD0793E8ED25E1CC3745E ___0_lhs, float ___1_rhs, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.mathematics@8017b507cc74/Unity.Mathematics/float3.gen.cs:268>
|
|
float3_t4AB5D88249ADB24F69FFD0793E8ED25E1CC3745E L_0 = ___0_lhs;
|
|
float L_1 = L_0.___x;
|
|
float L_2 = ___1_rhs;
|
|
float3_t4AB5D88249ADB24F69FFD0793E8ED25E1CC3745E L_3 = ___0_lhs;
|
|
float L_4 = L_3.___y;
|
|
float L_5 = ___1_rhs;
|
|
float3_t4AB5D88249ADB24F69FFD0793E8ED25E1CC3745E L_6 = ___0_lhs;
|
|
float L_7 = L_6.___z;
|
|
float L_8 = ___1_rhs;
|
|
float3_t4AB5D88249ADB24F69FFD0793E8ED25E1CC3745E L_9;
|
|
memset((&L_9), 0, sizeof(L_9));
|
|
float3__ctor_mC61002CD0EC13D7C37D846D021A78C028FB80DB9_inline((&L_9), ((float)il2cpp_codegen_multiply(L_1, L_2)), ((float)il2cpp_codegen_multiply(L_4, L_5)), ((float)il2cpp_codegen_multiply(L_7, L_8)), NULL);
|
|
return L_9;
|
|
}
|
|
}
|
|
// Method Definition Index: 41164
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float4_t89D9A294E7A79BD81BFBDD18654508532958555E math_float4_mE54104D60E6B9A358C75CB6F378118AB4914BFC4_inline (float3_t4AB5D88249ADB24F69FFD0793E8ED25E1CC3745E ___0_xyz, float ___1_w, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.mathematics@8017b507cc74/Unity.Mathematics/float4.gen.cs:3870>
|
|
float3_t4AB5D88249ADB24F69FFD0793E8ED25E1CC3745E L_0 = ___0_xyz;
|
|
float L_1 = ___1_w;
|
|
float4_t89D9A294E7A79BD81BFBDD18654508532958555E L_2;
|
|
memset((&L_2), 0, sizeof(L_2));
|
|
float4__ctor_m2A21052EF06884F609D1CDA9A2C2ED84A7584345_inline((&L_2), L_0, L_1, NULL);
|
|
return L_2;
|
|
}
|
|
}
|
|
// Method Definition Index: 41658
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float math_dot_m20F2285F7227DC308D9CF2DCB8EAAD3E774501D4_inline (float4_t89D9A294E7A79BD81BFBDD18654508532958555E ___0_x, float4_t89D9A294E7A79BD81BFBDD18654508532958555E ___1_y, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.mathematics@8017b507cc74/Unity.Mathematics/math.cs:1974>
|
|
float4_t89D9A294E7A79BD81BFBDD18654508532958555E L_0 = ___0_x;
|
|
float L_1 = L_0.___x;
|
|
float4_t89D9A294E7A79BD81BFBDD18654508532958555E L_2 = ___1_y;
|
|
float L_3 = L_2.___x;
|
|
float4_t89D9A294E7A79BD81BFBDD18654508532958555E L_4 = ___0_x;
|
|
float L_5 = L_4.___y;
|
|
float4_t89D9A294E7A79BD81BFBDD18654508532958555E L_6 = ___1_y;
|
|
float L_7 = L_6.___y;
|
|
float4_t89D9A294E7A79BD81BFBDD18654508532958555E L_8 = ___0_x;
|
|
float L_9 = L_8.___z;
|
|
float4_t89D9A294E7A79BD81BFBDD18654508532958555E L_10 = ___1_y;
|
|
float L_11 = L_10.___z;
|
|
float4_t89D9A294E7A79BD81BFBDD18654508532958555E L_12 = ___0_x;
|
|
float L_13 = L_12.___w;
|
|
float4_t89D9A294E7A79BD81BFBDD18654508532958555E L_14 = ___1_y;
|
|
float L_15 = L_14.___w;
|
|
return ((float)il2cpp_codegen_add(((float)il2cpp_codegen_add(((float)il2cpp_codegen_add(((float)il2cpp_codegen_multiply(L_1, L_3)), ((float)il2cpp_codegen_multiply(L_5, L_7)))), ((float)il2cpp_codegen_multiply(L_9, L_11)))), ((float)il2cpp_codegen_multiply(L_13, L_15))));
|
|
}
|
|
}
|
|
// Method Definition Index: 41875
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float math_sqrt_mEF31DE7BD0179009683C5D7B0C58E6571B30CF4A_inline (float ___0_x, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Math_tEB65DE7CA8B083C412C969C92981C030865486CE_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.mathematics@8017b507cc74/Unity.Mathematics/math.cs:3382>
|
|
float L_0 = ___0_x;
|
|
il2cpp_codegen_runtime_class_init_inline(Math_tEB65DE7CA8B083C412C969C92981C030865486CE_il2cpp_TypeInfo_var);
|
|
double L_1;
|
|
L_1 = sqrt(((double)((float)L_0)));
|
|
return ((float)L_1);
|
|
}
|
|
}
|
|
// Method Definition Index: 41091
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float3_t4AB5D88249ADB24F69FFD0793E8ED25E1CC3745E math_float3_m4F96A74FEE1D6C85241B8E62386C5DE1C439837F_inline (float ___0_x, float ___1_y, float ___2_z, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.mathematics@8017b507cc74/Unity.Mathematics/float3.gen.cs:1686>
|
|
float L_0 = ___0_x;
|
|
float L_1 = ___1_y;
|
|
float L_2 = ___2_z;
|
|
float3_t4AB5D88249ADB24F69FFD0793E8ED25E1CC3745E L_3;
|
|
memset((&L_3), 0, sizeof(L_3));
|
|
float3__ctor_mC61002CD0EC13D7C37D846D021A78C028FB80DB9_inline((&L_3), L_0, L_1, L_2, NULL);
|
|
return L_3;
|
|
}
|
|
}
|
|
// Method Definition Index: 48440
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR quaternion_tD6BCBECAF088B9EBAE2345EC8534C7A1A4C910D4 quaternion_EulerXYZ_m0AD608E878C0F5683DD56F636D10C75071C50E83_inline (float3_t4AB5D88249ADB24F69FFD0793E8ED25E1CC3745E ___0_xyz, const RuntimeMethod* method)
|
|
{
|
|
float3_t4AB5D88249ADB24F69FFD0793E8ED25E1CC3745E V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
float3_t4AB5D88249ADB24F69FFD0793E8ED25E1CC3745E V_1;
|
|
memset((&V_1), 0, sizeof(V_1));
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.mathematics@8017b507cc74/Unity.Mathematics/quaternion.cs:117>
|
|
float3_t4AB5D88249ADB24F69FFD0793E8ED25E1CC3745E L_0 = ___0_xyz;
|
|
float3_t4AB5D88249ADB24F69FFD0793E8ED25E1CC3745E L_1;
|
|
L_1 = float3_op_Multiply_m38F52B61F8E5636955A1A6DF3A75BD0724148350_inline((0.5f), L_0, NULL);
|
|
math_sincos_m28D7C74E99CF12DE35172DC6F26C77FD4D46D1B7_inline(L_1, (&V_0), (&V_1), NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.mathematics@8017b507cc74/Unity.Mathematics/quaternion.cs:118>
|
|
//<source_info:./Library/PackageCache/com.unity.mathematics@8017b507cc74/Unity.Mathematics/quaternion.cs:119>
|
|
//<source_info:./Library/PackageCache/com.unity.mathematics@8017b507cc74/Unity.Mathematics/quaternion.cs:120>
|
|
//<source_info:./Library/PackageCache/com.unity.mathematics@8017b507cc74/Unity.Mathematics/quaternion.cs:121>
|
|
//<source_info:./Library/PackageCache/com.unity.mathematics@8017b507cc74/Unity.Mathematics/quaternion.cs:122>
|
|
//<source_info:./Library/PackageCache/com.unity.mathematics@8017b507cc74/Unity.Mathematics/quaternion.cs:123>
|
|
//<source_info:./Library/PackageCache/com.unity.mathematics@8017b507cc74/Unity.Mathematics/quaternion.cs:124>
|
|
float3_t4AB5D88249ADB24F69FFD0793E8ED25E1CC3745E L_2;
|
|
L_2 = float3_get_xyz_m720A862AA512BE0B0B1089527A43EEF2B6766BEF_inline((&V_0), NULL);
|
|
float3_t4AB5D88249ADB24F69FFD0793E8ED25E1CC3745E L_3 = V_1;
|
|
float L_4 = L_3.___x;
|
|
float4_t89D9A294E7A79BD81BFBDD18654508532958555E L_5;
|
|
L_5 = math_float4_mE54104D60E6B9A358C75CB6F378118AB4914BFC4_inline(L_2, L_4, NULL);
|
|
float4_t89D9A294E7A79BD81BFBDD18654508532958555E L_6;
|
|
L_6 = float3_get_yxxy_mF003E86CB17AE3175090DEF37A636AD75087AF81_inline((&V_1), NULL);
|
|
float4_t89D9A294E7A79BD81BFBDD18654508532958555E L_7;
|
|
L_7 = float4_op_Multiply_m0E98338FB7DFF55B101EBCD78A8703ADB9C08667_inline(L_5, L_6, NULL);
|
|
float4_t89D9A294E7A79BD81BFBDD18654508532958555E L_8;
|
|
L_8 = float3_get_zzyz_m78B967EBE527FA5705C0E7B38563D1E33BB992C1_inline((&V_1), NULL);
|
|
float4_t89D9A294E7A79BD81BFBDD18654508532958555E L_9;
|
|
L_9 = float4_op_Multiply_m0E98338FB7DFF55B101EBCD78A8703ADB9C08667_inline(L_7, L_8, NULL);
|
|
float4_t89D9A294E7A79BD81BFBDD18654508532958555E L_10;
|
|
L_10 = float3_get_yxxy_mF003E86CB17AE3175090DEF37A636AD75087AF81_inline((&V_0), NULL);
|
|
float4_t89D9A294E7A79BD81BFBDD18654508532958555E L_11;
|
|
L_11 = float3_get_zzyz_m78B967EBE527FA5705C0E7B38563D1E33BB992C1_inline((&V_0), NULL);
|
|
float4_t89D9A294E7A79BD81BFBDD18654508532958555E L_12;
|
|
L_12 = float4_op_Multiply_m0E98338FB7DFF55B101EBCD78A8703ADB9C08667_inline(L_10, L_11, NULL);
|
|
float3_t4AB5D88249ADB24F69FFD0793E8ED25E1CC3745E L_13;
|
|
L_13 = float3_get_xyz_m720A862AA512BE0B0B1089527A43EEF2B6766BEF_inline((&V_1), NULL);
|
|
float3_t4AB5D88249ADB24F69FFD0793E8ED25E1CC3745E L_14 = V_0;
|
|
float L_15 = L_14.___x;
|
|
float4_t89D9A294E7A79BD81BFBDD18654508532958555E L_16;
|
|
L_16 = math_float4_mE54104D60E6B9A358C75CB6F378118AB4914BFC4_inline(L_13, L_15, NULL);
|
|
float4_t89D9A294E7A79BD81BFBDD18654508532958555E L_17;
|
|
L_17 = float4_op_Multiply_m0E98338FB7DFF55B101EBCD78A8703ADB9C08667_inline(L_12, L_16, NULL);
|
|
float4_t89D9A294E7A79BD81BFBDD18654508532958555E L_18;
|
|
L_18 = math_float4_m16697C284FA0C25A84F3DC3E99F3D4C306B6BFBF_inline((-1.0f), (1.0f), (-1.0f), (1.0f), NULL);
|
|
float4_t89D9A294E7A79BD81BFBDD18654508532958555E L_19;
|
|
L_19 = float4_op_Multiply_m0E98338FB7DFF55B101EBCD78A8703ADB9C08667_inline(L_17, L_18, NULL);
|
|
float4_t89D9A294E7A79BD81BFBDD18654508532958555E L_20;
|
|
L_20 = float4_op_Addition_m2CF2E1B2DAD4996DE3C5B6DFB90185E4CC8F0F44_inline(L_9, L_19, NULL);
|
|
quaternion_tD6BCBECAF088B9EBAE2345EC8534C7A1A4C910D4 L_21;
|
|
L_21 = math_quaternion_m315B4CA2F8475CC33F3C73187F00AC8B64BBF939_inline(L_20, NULL);
|
|
return L_21;
|
|
}
|
|
}
|
|
// Method Definition Index: 31808
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool ResourceHandle_IsValid_m20B0218FDCA98DCD069AE3BE86FEFCAEDB985B9A_inline (ResourceHandle_tD3B1FFBD59EB9C23F0A020351836F834C4BD276C* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ResourceHandle_tD3B1FFBD59EB9C23F0A020351836F834C4BD276C_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
uint32_t V_0 = 0;
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.core@5e056b397fc0/Runtime/RenderGraph/RenderGraphResources.cs:75>
|
|
uint32_t L_0 = __this->___m_Value;
|
|
V_0 = ((int32_t)((int32_t)L_0&((int32_t)-65536)));
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.core@5e056b397fc0/Runtime/RenderGraph/RenderGraphResources.cs:76>
|
|
uint32_t L_1 = V_0;
|
|
if (!L_1)
|
|
{
|
|
goto IL_0023;
|
|
}
|
|
}
|
|
{
|
|
uint32_t L_2 = V_0;
|
|
il2cpp_codegen_runtime_class_init_inline(ResourceHandle_tD3B1FFBD59EB9C23F0A020351836F834C4BD276C_il2cpp_TypeInfo_var);
|
|
uint32_t L_3 = ((ResourceHandle_tD3B1FFBD59EB9C23F0A020351836F834C4BD276C_StaticFields*)il2cpp_codegen_static_fields_for(ResourceHandle_tD3B1FFBD59EB9C23F0A020351836F834C4BD276C_il2cpp_TypeInfo_var))->___s_CurrentValidBit;
|
|
if ((((int32_t)L_2) == ((int32_t)L_3)))
|
|
{
|
|
goto IL_0021;
|
|
}
|
|
}
|
|
{
|
|
uint32_t L_4 = V_0;
|
|
il2cpp_codegen_runtime_class_init_inline(ResourceHandle_tD3B1FFBD59EB9C23F0A020351836F834C4BD276C_il2cpp_TypeInfo_var);
|
|
uint32_t L_5 = ((ResourceHandle_tD3B1FFBD59EB9C23F0A020351836F834C4BD276C_StaticFields*)il2cpp_codegen_static_fields_for(ResourceHandle_tD3B1FFBD59EB9C23F0A020351836F834C4BD276C_il2cpp_TypeInfo_var))->___s_SharedResourceValidBit;
|
|
return (bool)((((int32_t)L_4) == ((int32_t)L_5))? 1 : 0);
|
|
}
|
|
|
|
IL_0021:
|
|
{
|
|
return (bool)1;
|
|
}
|
|
|
|
IL_0023:
|
|
{
|
|
return (bool)0;
|
|
}
|
|
}
|
|
// Method Definition Index: 37610
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Color__ctor_m3786F0D6E510D9CFA544523A955870BD2A514C8C_inline (Color_tD001788D726C3A7F1379BEED0260B9591F440C1F* __this, float ___0_r, float ___1_g, float ___2_b, float ___3_a, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
float L_0 = ___0_r;
|
|
__this->___r = L_0;
|
|
float L_1 = ___1_g;
|
|
__this->___g = L_1;
|
|
float L_2 = ___2_b;
|
|
__this->___b = L_2;
|
|
float L_3 = ___3_a;
|
|
__this->___a = L_3;
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 37750
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 Vector3_Normalize_mEF8349CC39674236CFC694189AFD36E31F89AC8F_inline (Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___0_value, const RuntimeMethod* method)
|
|
{
|
|
float V_0 = 0.0f;
|
|
bool V_1 = false;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 V_2;
|
|
memset((&V_2), 0, sizeof(V_2));
|
|
{
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_0 = ___0_value;
|
|
float L_1;
|
|
L_1 = Vector3_Magnitude_m21652D951393A3D7CE92CE40049A0E7F76544D1B_inline(L_0, NULL);
|
|
V_0 = L_1;
|
|
float L_2 = V_0;
|
|
V_1 = (bool)((((float)L_2) > ((float)(9.99999975E-06f)))? 1 : 0);
|
|
bool L_3 = V_1;
|
|
if (!L_3)
|
|
{
|
|
goto IL_001e;
|
|
}
|
|
}
|
|
{
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_4 = ___0_value;
|
|
float L_5 = V_0;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_6;
|
|
L_6 = Vector3_op_Division_mCC6BB24E372AB96B8380D1678446EF6A8BAE13BB_inline(L_4, L_5, NULL);
|
|
V_2 = L_6;
|
|
goto IL_0026;
|
|
}
|
|
|
|
IL_001e:
|
|
{
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_7;
|
|
L_7 = Vector3_get_zero_m0C1249C3F25B1C70EAD3CC8B31259975A457AE39_inline(NULL);
|
|
V_2 = L_7;
|
|
goto IL_0026;
|
|
}
|
|
|
|
IL_0026:
|
|
{
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_8 = V_2;
|
|
return L_8;
|
|
}
|
|
}
|
|
// Method Definition Index: 37619
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Color_op_Equality_mB2BDC39B0B367BA15AA8DF22F8CB0D02D20BDC71_inline (Color_tD001788D726C3A7F1379BEED0260B9591F440C1F ___0_lhs, Color_tD001788D726C3A7F1379BEED0260B9591F440C1F ___1_rhs, const RuntimeMethod* method)
|
|
{
|
|
bool V_0 = false;
|
|
{
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F L_0 = ___0_lhs;
|
|
Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3 L_1;
|
|
L_1 = Color_op_Implicit_m9B3228DAFA8DC57A75DE00CBBF13ED4F1E7B01FF_inline(L_0, NULL);
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F L_2 = ___1_rhs;
|
|
Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3 L_3;
|
|
L_3 = Color_op_Implicit_m9B3228DAFA8DC57A75DE00CBBF13ED4F1E7B01FF_inline(L_2, NULL);
|
|
bool L_4;
|
|
L_4 = Vector4_op_Equality_mCEA0E5F229F4AE8C55152F7A8F84345F24F52DC6_inline(L_1, L_3, NULL);
|
|
V_0 = L_4;
|
|
goto IL_0015;
|
|
}
|
|
|
|
IL_0015:
|
|
{
|
|
bool L_5 = V_0;
|
|
return L_5;
|
|
}
|
|
}
|
|
// Method Definition Index: 28263
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool ContextContainer_Contains_mD38FBF0FAC84169E395802CBF880BD0980490AF3_inline (ContextContainer_t384E08F63FABEFF6A7F1A753F5EF02699DAD414C* __this, uint32_t ___0_typeId, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.render-pipelines.core@5e056b397fc0/Runtime/Common/ContextContainer.cs:108>
|
|
uint32_t L_0 = ___0_typeId;
|
|
ItemU5BU5D_t4AC8CDDFF9ED634B9ECE154F0C638C00B12B5CCB* L_1 = __this->___m_Items;
|
|
NullCheck(L_1);
|
|
if ((((int64_t)((int64_t)(uint64_t)((uint32_t)L_0))) >= ((int64_t)((int64_t)((int32_t)(((RuntimeArray*)L_1)->max_length))))))
|
|
{
|
|
goto IL_001f;
|
|
}
|
|
}
|
|
{
|
|
ItemU5BU5D_t4AC8CDDFF9ED634B9ECE154F0C638C00B12B5CCB* L_2 = __this->___m_Items;
|
|
uint32_t L_3 = ___0_typeId;
|
|
NullCheck(L_2);
|
|
bool L_4 = ((L_2)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_3)))->___isSet;
|
|
return L_4;
|
|
}
|
|
|
|
IL_001f:
|
|
{
|
|
return (bool)0;
|
|
}
|
|
}
|
|
// Method Definition Index: 35960
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t UnsafeUtility_ReadArrayElement_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_mFBA66C06ECEB0A2BC1AAE634B6E6BB436F957084_gshared_inline (void* ___0_source, int32_t ___1_index, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
void* L_0 = ___0_source;
|
|
int32_t L_1 = ___1_index;
|
|
uint32_t L_2 = sizeof(int32_t);
|
|
int32_t L_3 = (*(int32_t*)((void*)il2cpp_codegen_add((intptr_t)L_0, ((intptr_t)((int64_t)il2cpp_codegen_multiply(((int64_t)L_1), ((int64_t)((int32_t)L_2))))))));
|
|
return L_3;
|
|
}
|
|
}
|
|
// Method Definition Index: 711
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t BitConverter_SingleToInt32Bits_mC760C7CFC89725E3CF68DC45BE3A9A42A7E7DA73_inline (float ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = *((int32_t*)((uintptr_t)(&___0_value)));
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 41657
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float math_dot_mE193D8880350D74CC8D63A0D53CDC5902F844AAD_inline (float3_t4AB5D88249ADB24F69FFD0793E8ED25E1CC3745E ___0_x, float3_t4AB5D88249ADB24F69FFD0793E8ED25E1CC3745E ___1_y, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.mathematics@8017b507cc74/Unity.Mathematics/math.cs:1967>
|
|
float3_t4AB5D88249ADB24F69FFD0793E8ED25E1CC3745E L_0 = ___0_x;
|
|
float L_1 = L_0.___x;
|
|
float3_t4AB5D88249ADB24F69FFD0793E8ED25E1CC3745E L_2 = ___1_y;
|
|
float L_3 = L_2.___x;
|
|
float3_t4AB5D88249ADB24F69FFD0793E8ED25E1CC3745E L_4 = ___0_x;
|
|
float L_5 = L_4.___y;
|
|
float3_t4AB5D88249ADB24F69FFD0793E8ED25E1CC3745E L_6 = ___1_y;
|
|
float L_7 = L_6.___y;
|
|
float3_t4AB5D88249ADB24F69FFD0793E8ED25E1CC3745E L_8 = ___0_x;
|
|
float L_9 = L_8.___z;
|
|
float3_t4AB5D88249ADB24F69FFD0793E8ED25E1CC3745E L_10 = ___1_y;
|
|
float L_11 = L_10.___z;
|
|
return ((float)il2cpp_codegen_add(((float)il2cpp_codegen_add(((float)il2cpp_codegen_multiply(L_1, L_3)), ((float)il2cpp_codegen_multiply(L_5, L_7)))), ((float)il2cpp_codegen_multiply(L_9, L_11))));
|
|
}
|
|
}
|
|
// Method Definition Index: 46203
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void float4x4__ctor_mF0B7C823E36025A539E8024123057CAC380E97EF_inline (float4x4_t7EDD16F7F57DC7F61A6302535F7C19FB97915DF2* __this, float4_t89D9A294E7A79BD81BFBDD18654508532958555E ___0_c0, float4_t89D9A294E7A79BD81BFBDD18654508532958555E ___1_c1, float4_t89D9A294E7A79BD81BFBDD18654508532958555E ___2_c2, float4_t89D9A294E7A79BD81BFBDD18654508532958555E ___3_c3, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.mathematics@8017b507cc74/Unity.Mathematics/float4x4.gen.cs:45>
|
|
float4_t89D9A294E7A79BD81BFBDD18654508532958555E L_0 = ___0_c0;
|
|
__this->___c0 = L_0;
|
|
//<source_info:./Library/PackageCache/com.unity.mathematics@8017b507cc74/Unity.Mathematics/float4x4.gen.cs:46>
|
|
float4_t89D9A294E7A79BD81BFBDD18654508532958555E L_1 = ___1_c1;
|
|
__this->___c1 = L_1;
|
|
//<source_info:./Library/PackageCache/com.unity.mathematics@8017b507cc74/Unity.Mathematics/float4x4.gen.cs:47>
|
|
float4_t89D9A294E7A79BD81BFBDD18654508532958555E L_2 = ___2_c2;
|
|
__this->___c2 = L_2;
|
|
//<source_info:./Library/PackageCache/com.unity.mathematics@8017b507cc74/Unity.Mathematics/float4x4.gen.cs:48>
|
|
float4_t89D9A294E7A79BD81BFBDD18654508532958555E L_3 = ___3_c3;
|
|
__this->___c3 = L_3;
|
|
//<source_info:./Library/PackageCache/com.unity.mathematics@8017b507cc74/Unity.Mathematics/float4x4.gen.cs:49>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 48435
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void quaternion__ctor_m2F6A34CCFD1150A326CB4CE108260A8BD8B1D75F_inline (quaternion_tD6BCBECAF088B9EBAE2345EC8534C7A1A4C910D4* __this, float4_t89D9A294E7A79BD81BFBDD18654508532958555E ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.mathematics@8017b507cc74/Unity.Mathematics/quaternion.cs:34>
|
|
float4_t89D9A294E7A79BD81BFBDD18654508532958555E L_0 = ___0_value;
|
|
__this->___value = L_0;
|
|
//<source_info:./Library/PackageCache/com.unity.mathematics@8017b507cc74/Unity.Mathematics/quaternion.cs:34>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 45610
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void float4__ctor_m2A21052EF06884F609D1CDA9A2C2ED84A7584345_inline (float4_t89D9A294E7A79BD81BFBDD18654508532958555E* __this, float3_t4AB5D88249ADB24F69FFD0793E8ED25E1CC3745E ___0_xyz, float ___1_w, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.mathematics@8017b507cc74/Unity.Mathematics/float4.gen.cs:119>
|
|
float3_t4AB5D88249ADB24F69FFD0793E8ED25E1CC3745E L_0 = ___0_xyz;
|
|
float L_1 = L_0.___x;
|
|
__this->___x = L_1;
|
|
//<source_info:./Library/PackageCache/com.unity.mathematics@8017b507cc74/Unity.Mathematics/float4.gen.cs:120>
|
|
float3_t4AB5D88249ADB24F69FFD0793E8ED25E1CC3745E L_2 = ___0_xyz;
|
|
float L_3 = L_2.___y;
|
|
__this->___y = L_3;
|
|
//<source_info:./Library/PackageCache/com.unity.mathematics@8017b507cc74/Unity.Mathematics/float4.gen.cs:121>
|
|
float3_t4AB5D88249ADB24F69FFD0793E8ED25E1CC3745E L_4 = ___0_xyz;
|
|
float L_5 = L_4.___z;
|
|
__this->___z = L_5;
|
|
//<source_info:./Library/PackageCache/com.unity.mathematics@8017b507cc74/Unity.Mathematics/float4.gen.cs:122>
|
|
float L_6 = ___1_w;
|
|
__this->___w = L_6;
|
|
//<source_info:./Library/PackageCache/com.unity.mathematics@8017b507cc74/Unity.Mathematics/float4.gen.cs:123>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 45214
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float3_t4AB5D88249ADB24F69FFD0793E8ED25E1CC3745E float3_op_Multiply_m38F52B61F8E5636955A1A6DF3A75BD0724148350_inline (float ___0_lhs, float3_t4AB5D88249ADB24F69FFD0793E8ED25E1CC3745E ___1_rhs, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.mathematics@8017b507cc74/Unity.Mathematics/float3.gen.cs:275>
|
|
float L_0 = ___0_lhs;
|
|
float3_t4AB5D88249ADB24F69FFD0793E8ED25E1CC3745E L_1 = ___1_rhs;
|
|
float L_2 = L_1.___x;
|
|
float L_3 = ___0_lhs;
|
|
float3_t4AB5D88249ADB24F69FFD0793E8ED25E1CC3745E L_4 = ___1_rhs;
|
|
float L_5 = L_4.___y;
|
|
float L_6 = ___0_lhs;
|
|
float3_t4AB5D88249ADB24F69FFD0793E8ED25E1CC3745E L_7 = ___1_rhs;
|
|
float L_8 = L_7.___z;
|
|
float3_t4AB5D88249ADB24F69FFD0793E8ED25E1CC3745E L_9;
|
|
memset((&L_9), 0, sizeof(L_9));
|
|
float3__ctor_mC61002CD0EC13D7C37D846D021A78C028FB80DB9_inline((&L_9), ((float)il2cpp_codegen_multiply(L_0, L_2)), ((float)il2cpp_codegen_multiply(L_3, L_5)), ((float)il2cpp_codegen_multiply(L_6, L_8)), NULL);
|
|
return L_9;
|
|
}
|
|
}
|
|
// Method Definition Index: 42045
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void math_sincos_m28D7C74E99CF12DE35172DC6F26C77FD4D46D1B7_inline (float3_t4AB5D88249ADB24F69FFD0793E8ED25E1CC3745E ___0_x, float3_t4AB5D88249ADB24F69FFD0793E8ED25E1CC3745E* ___1_s, float3_t4AB5D88249ADB24F69FFD0793E8ED25E1CC3745E* ___2_c, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.mathematics@8017b507cc74/Unity.Mathematics/math.cs:4892>
|
|
float3_t4AB5D88249ADB24F69FFD0793E8ED25E1CC3745E* L_0 = ___1_s;
|
|
float3_t4AB5D88249ADB24F69FFD0793E8ED25E1CC3745E L_1 = ___0_x;
|
|
float3_t4AB5D88249ADB24F69FFD0793E8ED25E1CC3745E L_2;
|
|
L_2 = math_sin_m43618973AB0574A29896B4479E1F72A829644A33_inline(L_1, NULL);
|
|
*(float3_t4AB5D88249ADB24F69FFD0793E8ED25E1CC3745E*)L_0 = L_2;
|
|
//<source_info:./Library/PackageCache/com.unity.mathematics@8017b507cc74/Unity.Mathematics/math.cs:4892>
|
|
float3_t4AB5D88249ADB24F69FFD0793E8ED25E1CC3745E* L_3 = ___2_c;
|
|
float3_t4AB5D88249ADB24F69FFD0793E8ED25E1CC3745E L_4 = ___0_x;
|
|
float3_t4AB5D88249ADB24F69FFD0793E8ED25E1CC3745E L_5;
|
|
L_5 = math_cos_m42275E85C55A660ABC711D07B4349A82F4BBCBC4_inline(L_4, NULL);
|
|
*(float3_t4AB5D88249ADB24F69FFD0793E8ED25E1CC3745E*)L_3 = L_5;
|
|
//<source_info:./Library/PackageCache/com.unity.mathematics@8017b507cc74/Unity.Mathematics/math.cs:4892>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 45335
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float3_t4AB5D88249ADB24F69FFD0793E8ED25E1CC3745E float3_get_xyz_m720A862AA512BE0B0B1089527A43EEF2B6766BEF_inline (float3_t4AB5D88249ADB24F69FFD0793E8ED25E1CC3745E* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.mathematics@8017b507cc74/Unity.Mathematics/float3.gen.cs:1307>
|
|
float L_0 = __this->___x;
|
|
float L_1 = __this->___y;
|
|
float L_2 = __this->___z;
|
|
float3_t4AB5D88249ADB24F69FFD0793E8ED25E1CC3745E L_3;
|
|
memset((&L_3), 0, sizeof(L_3));
|
|
float3__ctor_mC61002CD0EC13D7C37D846D021A78C028FB80DB9_inline((&L_3), L_0, L_1, L_2, NULL);
|
|
return L_3;
|
|
}
|
|
}
|
|
// Method Definition Index: 45277
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float4_t89D9A294E7A79BD81BFBDD18654508532958555E float3_get_yxxy_mF003E86CB17AE3175090DEF37A636AD75087AF81_inline (float3_t4AB5D88249ADB24F69FFD0793E8ED25E1CC3745E* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.mathematics@8017b507cc74/Unity.Mathematics/float3.gen.cs:785>
|
|
float L_0 = __this->___y;
|
|
float L_1 = __this->___x;
|
|
float L_2 = __this->___x;
|
|
float L_3 = __this->___y;
|
|
float4_t89D9A294E7A79BD81BFBDD18654508532958555E L_4;
|
|
memset((&L_4), 0, sizeof(L_4));
|
|
float4__ctor_mB2F7F2D8BCE8159BEF5A0D6400499E211858ED2D_inline((&L_4), L_0, L_1, L_2, L_3, NULL);
|
|
return L_4;
|
|
}
|
|
}
|
|
// Method Definition Index: 45326
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float4_t89D9A294E7A79BD81BFBDD18654508532958555E float3_get_zzyz_m78B967EBE527FA5705C0E7B38563D1E33BB992C1_inline (float3_t4AB5D88249ADB24F69FFD0793E8ED25E1CC3745E* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.mathematics@8017b507cc74/Unity.Mathematics/float3.gen.cs:1226>
|
|
float L_0 = __this->___z;
|
|
float L_1 = __this->___z;
|
|
float L_2 = __this->___y;
|
|
float L_3 = __this->___z;
|
|
float4_t89D9A294E7A79BD81BFBDD18654508532958555E L_4;
|
|
memset((&L_4), 0, sizeof(L_4));
|
|
float4__ctor_mB2F7F2D8BCE8159BEF5A0D6400499E211858ED2D_inline((&L_4), L_0, L_1, L_2, L_3, NULL);
|
|
return L_4;
|
|
}
|
|
}
|
|
// Method Definition Index: 37758
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float Vector3_Magnitude_m21652D951393A3D7CE92CE40049A0E7F76544D1B_inline (Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___0_vector, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Math_tEB65DE7CA8B083C412C969C92981C030865486CE_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
float V_0 = 0.0f;
|
|
{
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_0 = ___0_vector;
|
|
float L_1 = L_0.___x;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_2 = ___0_vector;
|
|
float L_3 = L_2.___x;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_4 = ___0_vector;
|
|
float L_5 = L_4.___y;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_6 = ___0_vector;
|
|
float L_7 = L_6.___y;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_8 = ___0_vector;
|
|
float L_9 = L_8.___z;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_10 = ___0_vector;
|
|
float L_11 = L_10.___z;
|
|
il2cpp_codegen_runtime_class_init_inline(Math_tEB65DE7CA8B083C412C969C92981C030865486CE_il2cpp_TypeInfo_var);
|
|
double L_12;
|
|
L_12 = sqrt(((double)((float)il2cpp_codegen_add(((float)il2cpp_codegen_add(((float)il2cpp_codegen_multiply(L_1, L_3)), ((float)il2cpp_codegen_multiply(L_5, L_7)))), ((float)il2cpp_codegen_multiply(L_9, L_11))))));
|
|
V_0 = ((float)L_12);
|
|
goto IL_0034;
|
|
}
|
|
|
|
IL_0034:
|
|
{
|
|
float L_13 = V_0;
|
|
return L_13;
|
|
}
|
|
}
|
|
// Method Definition Index: 37778
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 Vector3_op_Division_mCC6BB24E372AB96B8380D1678446EF6A8BAE13BB_inline (Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___0_a, float ___1_d, const RuntimeMethod* method)
|
|
{
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
{
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_0 = ___0_a;
|
|
float L_1 = L_0.___x;
|
|
float L_2 = ___1_d;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_3 = ___0_a;
|
|
float L_4 = L_3.___y;
|
|
float L_5 = ___1_d;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_6 = ___0_a;
|
|
float L_7 = L_6.___z;
|
|
float L_8 = ___1_d;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_9;
|
|
memset((&L_9), 0, sizeof(L_9));
|
|
Vector3__ctor_m376936E6B999EF1ECBE57D990A386303E2283DE0_inline((&L_9), ((float)(L_1/L_2)), ((float)(L_4/L_5)), ((float)(L_7/L_8)), NULL);
|
|
V_0 = L_9;
|
|
goto IL_0021;
|
|
}
|
|
|
|
IL_0021:
|
|
{
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_10 = V_0;
|
|
return L_10;
|
|
}
|
|
}
|
|
// Method Definition Index: 37764
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 Vector3_get_zero_m0C1249C3F25B1C70EAD3CC8B31259975A457AE39_inline (const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
{
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_0 = ((Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2_StaticFields*)il2cpp_codegen_static_fields_for(Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2_il2cpp_TypeInfo_var))->___zeroVector;
|
|
V_0 = L_0;
|
|
goto IL_0009;
|
|
}
|
|
|
|
IL_0009:
|
|
{
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_1 = V_0;
|
|
return L_1;
|
|
}
|
|
}
|
|
// Method Definition Index: 37627
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3 Color_op_Implicit_m9B3228DAFA8DC57A75DE00CBBF13ED4F1E7B01FF_inline (Color_tD001788D726C3A7F1379BEED0260B9591F440C1F ___0_c, const RuntimeMethod* method)
|
|
{
|
|
Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3 V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
{
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F L_0 = ___0_c;
|
|
float L_1 = L_0.___r;
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F L_2 = ___0_c;
|
|
float L_3 = L_2.___g;
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F L_4 = ___0_c;
|
|
float L_5 = L_4.___b;
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F L_6 = ___0_c;
|
|
float L_7 = L_6.___a;
|
|
Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3 L_8;
|
|
memset((&L_8), 0, sizeof(L_8));
|
|
Vector4__ctor_m96B2CD8B862B271F513AF0BDC2EABD58E4DBC813_inline((&L_8), L_1, L_3, L_5, L_7, NULL);
|
|
V_0 = L_8;
|
|
goto IL_0021;
|
|
}
|
|
|
|
IL_0021:
|
|
{
|
|
Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3 L_9 = V_0;
|
|
return L_9;
|
|
}
|
|
}
|
|
// Method Definition Index: 37976
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Vector4_op_Equality_mCEA0E5F229F4AE8C55152F7A8F84345F24F52DC6_inline (Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3 ___0_lhs, Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3 ___1_rhs, const RuntimeMethod* method)
|
|
{
|
|
float V_0 = 0.0f;
|
|
float V_1 = 0.0f;
|
|
float V_2 = 0.0f;
|
|
float V_3 = 0.0f;
|
|
float V_4 = 0.0f;
|
|
bool V_5 = false;
|
|
{
|
|
Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3 L_0 = ___0_lhs;
|
|
float L_1 = L_0.___x;
|
|
Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3 L_2 = ___1_rhs;
|
|
float L_3 = L_2.___x;
|
|
V_0 = ((float)il2cpp_codegen_subtract(L_1, L_3));
|
|
Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3 L_4 = ___0_lhs;
|
|
float L_5 = L_4.___y;
|
|
Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3 L_6 = ___1_rhs;
|
|
float L_7 = L_6.___y;
|
|
V_1 = ((float)il2cpp_codegen_subtract(L_5, L_7));
|
|
Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3 L_8 = ___0_lhs;
|
|
float L_9 = L_8.___z;
|
|
Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3 L_10 = ___1_rhs;
|
|
float L_11 = L_10.___z;
|
|
V_2 = ((float)il2cpp_codegen_subtract(L_9, L_11));
|
|
Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3 L_12 = ___0_lhs;
|
|
float L_13 = L_12.___w;
|
|
Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3 L_14 = ___1_rhs;
|
|
float L_15 = L_14.___w;
|
|
V_3 = ((float)il2cpp_codegen_subtract(L_13, L_15));
|
|
float L_16 = V_0;
|
|
float L_17 = V_0;
|
|
float L_18 = V_1;
|
|
float L_19 = V_1;
|
|
float L_20 = V_2;
|
|
float L_21 = V_2;
|
|
float L_22 = V_3;
|
|
float L_23 = V_3;
|
|
V_4 = ((float)il2cpp_codegen_add(((float)il2cpp_codegen_add(((float)il2cpp_codegen_add(((float)il2cpp_codegen_multiply(L_16, L_17)), ((float)il2cpp_codegen_multiply(L_18, L_19)))), ((float)il2cpp_codegen_multiply(L_20, L_21)))), ((float)il2cpp_codegen_multiply(L_22, L_23))));
|
|
float L_24 = V_4;
|
|
V_5 = (bool)((((float)L_24) < ((float)(9.99999944E-11f)))? 1 : 0);
|
|
goto IL_0057;
|
|
}
|
|
|
|
IL_0057:
|
|
{
|
|
bool L_25 = V_5;
|
|
return L_25;
|
|
}
|
|
}
|
|
// Method Definition Index: 41721
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float3_t4AB5D88249ADB24F69FFD0793E8ED25E1CC3745E math_sin_m43618973AB0574A29896B4479E1F72A829644A33_inline (float3_t4AB5D88249ADB24F69FFD0793E8ED25E1CC3745E ___0_x, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.mathematics@8017b507cc74/Unity.Mathematics/math.cs:2380>
|
|
float3_t4AB5D88249ADB24F69FFD0793E8ED25E1CC3745E L_0 = ___0_x;
|
|
float L_1 = L_0.___x;
|
|
float L_2;
|
|
L_2 = math_sin_m231F847C28B88B17BDAD7F49A7A38E46DF12D3FF_inline(L_1, NULL);
|
|
float3_t4AB5D88249ADB24F69FFD0793E8ED25E1CC3745E L_3 = ___0_x;
|
|
float L_4 = L_3.___y;
|
|
float L_5;
|
|
L_5 = math_sin_m231F847C28B88B17BDAD7F49A7A38E46DF12D3FF_inline(L_4, NULL);
|
|
float3_t4AB5D88249ADB24F69FFD0793E8ED25E1CC3745E L_6 = ___0_x;
|
|
float L_7 = L_6.___z;
|
|
float L_8;
|
|
L_8 = math_sin_m231F847C28B88B17BDAD7F49A7A38E46DF12D3FF_inline(L_7, NULL);
|
|
float3_t4AB5D88249ADB24F69FFD0793E8ED25E1CC3745E L_9;
|
|
memset((&L_9), 0, sizeof(L_9));
|
|
float3__ctor_mC61002CD0EC13D7C37D846D021A78C028FB80DB9_inline((&L_9), L_2, L_5, L_8, NULL);
|
|
return L_9;
|
|
}
|
|
}
|
|
// Method Definition Index: 41697
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float3_t4AB5D88249ADB24F69FFD0793E8ED25E1CC3745E math_cos_m42275E85C55A660ABC711D07B4349A82F4BBCBC4_inline (float3_t4AB5D88249ADB24F69FFD0793E8ED25E1CC3745E ___0_x, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.mathematics@8017b507cc74/Unity.Mathematics/math.cs:2230>
|
|
float3_t4AB5D88249ADB24F69FFD0793E8ED25E1CC3745E L_0 = ___0_x;
|
|
float L_1 = L_0.___x;
|
|
float L_2;
|
|
L_2 = math_cos_m28B6228E047D552B1312CCFADB8AE95DDD94A6AF_inline(L_1, NULL);
|
|
float3_t4AB5D88249ADB24F69FFD0793E8ED25E1CC3745E L_3 = ___0_x;
|
|
float L_4 = L_3.___y;
|
|
float L_5;
|
|
L_5 = math_cos_m28B6228E047D552B1312CCFADB8AE95DDD94A6AF_inline(L_4, NULL);
|
|
float3_t4AB5D88249ADB24F69FFD0793E8ED25E1CC3745E L_6 = ___0_x;
|
|
float L_7 = L_6.___z;
|
|
float L_8;
|
|
L_8 = math_cos_m28B6228E047D552B1312CCFADB8AE95DDD94A6AF_inline(L_7, NULL);
|
|
float3_t4AB5D88249ADB24F69FFD0793E8ED25E1CC3745E L_9;
|
|
memset((&L_9), 0, sizeof(L_9));
|
|
float3__ctor_mC61002CD0EC13D7C37D846D021A78C028FB80DB9_inline((&L_9), L_2, L_5, L_8, NULL);
|
|
return L_9;
|
|
}
|
|
}
|
|
// Method Definition Index: 41719
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float math_sin_m231F847C28B88B17BDAD7F49A7A38E46DF12D3FF_inline (float ___0_x, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Math_tEB65DE7CA8B083C412C969C92981C030865486CE_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.mathematics@8017b507cc74/Unity.Mathematics/math.cs:2368>
|
|
float L_0 = ___0_x;
|
|
il2cpp_codegen_runtime_class_init_inline(Math_tEB65DE7CA8B083C412C969C92981C030865486CE_il2cpp_TypeInfo_var);
|
|
double L_1;
|
|
L_1 = sin(((double)((float)L_0)));
|
|
return ((float)L_1);
|
|
}
|
|
}
|
|
// Method Definition Index: 41695
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float math_cos_m28B6228E047D552B1312CCFADB8AE95DDD94A6AF_inline (float ___0_x, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Math_tEB65DE7CA8B083C412C969C92981C030865486CE_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.mathematics@8017b507cc74/Unity.Mathematics/math.cs:2218>
|
|
float L_0 = ___0_x;
|
|
il2cpp_codegen_runtime_class_init_inline(Math_tEB65DE7CA8B083C412C969C92981C030865486CE_il2cpp_TypeInfo_var);
|
|
double L_1;
|
|
L_1 = cos(((double)L_0));
|
|
return ((float)L_1);
|
|
}
|
|
}
|