blob_id stringlengths 40 40 | directory_id stringlengths 40 40 | path stringlengths 4 201 | content_id stringlengths 40 40 | detected_licenses listlengths 0 85 | license_type stringclasses 2
values | repo_name stringlengths 7 100 | snapshot_id stringlengths 40 40 | revision_id stringlengths 40 40 | branch_name stringclasses 260
values | visit_date timestamp[us] | revision_date timestamp[us] | committer_date timestamp[us] | github_id int64 11.4k 681M ⌀ | star_events_count int64 0 209k | fork_events_count int64 0 110k | gha_license_id stringclasses 17
values | gha_event_created_at timestamp[us] | gha_created_at timestamp[us] | gha_language stringclasses 80
values | src_encoding stringclasses 28
values | language stringclasses 1
value | is_vendor bool 1
class | is_generated bool 2
classes | length_bytes int64 8 9.86M | extension stringclasses 52
values | content stringlengths 8 9.86M | authors listlengths 1 1 | author stringlengths 0 119 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
0eef0901fb7b930d1e4272693d0470cc02b39450 | 41575c498b7197e97b12a8ce2a880047df363cc3 | /src/local/vid/opengl/Texture.hpp | 57e13a9b35850061f5d253fd7dc0cd3406330d55 | [] | no_license | gongfuPanada/page | f00a6f9015b4aad79398f0df041613ab28be405b | fa2ccdef4b33480c2ac5f872d717323f45618a34 | refs/heads/master | 2021-01-15T22:09:34.836791 | 2013-03-23T18:54:13 | 2013-03-23T18:54:13 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,479 | hpp | /**
* @section license
*
* Copyright (c) 2006-2013 David Osborn
*
* Permission is granted to use and redistribute this software in source and
* binary form, with or without modification, subject to the following
* conditions:
*
* 1. Redistributions in source form must retain the above copyright notice,
* this list of conditions, and the following disclaimer.
*
* 2. Redistributions in binary form must reproduce the above copyright notice,
* this list of conditions, and the following disclaimer in the documentation
* and/or other materials provided with the distribution, and in the same
* place and form as other copyright, license, and disclaimer information.
*
* As a special exception, distributions of derivative works in binary form may
* include an acknowledgement in place of the above copyright notice, this list
* of conditions, and the following disclaimer in the documentation and/or other
* materials provided with the distribution, and in the same place and form as
* other acknowledgements, similar in substance to the following:
*
* Portions of this software are based on the work of David Osborn.
*
* This software is provided "as is", without any express or implied warranty.
* In no event will the authors be liable for any damages arising out of the use
* of this software.
*/
#ifndef page_local_vid_opengl_Texture_hpp
# define page_local_vid_opengl_Texture_hpp
# include <GL/gl.h> // GLuint
# include "../../math/fwd.hpp" // RgbaColor
# include "../../math/Vector.hpp"
# include "../../util/class/Uncopyable.hpp"
# include "TextureFlags.hpp"
# include "TextureFormat.hpp"
namespace page
{
namespace res { class Image; }
namespace vid
{
namespace opengl
{
struct Texture : util::Uncopyable<Texture>
{
typedef TextureFlags Flags;
typedef TextureFormat Format;
// construct/destroy
explicit Texture(const math::RgbaColor<> &);
explicit Texture(const res::Image &,
Format = defaultTextureFormat,
Flags = static_cast<Flags>(filterTextureFlag | mipmapTextureFlag),
const math::Vector<2, bool> &clamp = false);
~Texture();
// attributes
const math::Vector<2, unsigned> &GetSize() const;
const math::Vector<2, unsigned> &GetPow2Size() const;
// handle access
GLuint GetHandle() const;
private:
GLuint handle;
math::Vector<2, unsigned> size, pow2Size;
};
// binding
void Bind(const Texture &);
}
}
}
#endif
| [
"davidcosborn@gmail.com"
] | davidcosborn@gmail.com |
8355c4790ef695e43df6b30a32274a958dfe72f1 | f9901dc39ae0fcde444482cfd87b64a178d7cfeb | /LeetCode/cpp/17.cpp | ea8f14cee51d418a77344b20ae8e9c1ed8952167 | [
"MIT"
] | permissive | NoraXie/LeetCode_Archiver | 945509abd319d9c8d25abb3ba84f2f1fb536439a | de23e16ead29336b5ee7aa1898a392a5d6463d27 | refs/heads/master | 2020-08-10T21:42:19.556330 | 2019-08-26T03:50:42 | 2019-08-26T03:50:42 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,012 | cpp | class Solution {
public:
vector<string> letterCombinations(string digits) {
int n = digits.size();
if(n == 0) return vector<string>();
char a = 'a';
for (int i = 0; i < 8; ++i) {
tran.push_back(vector<char>());
for (int j = 0; j < 3; ++j)
tran[i].push_back(a++);
if(i == 5)
tran[i].push_back(a++);
}
tran[7].push_back(a);
string temp;
vector<string> ret;
BackTracking(digits, n, 0, temp, ret);
return ret;
}
void BackTracking(string digits, int &n, int i, string &temp, vector<string> &ret) {
if (i == n) {
ret.push_back(temp);
return;
}
for (int j = 0; j < (tran[digits[i] - '0' - 2]).size(); ++j) {
temp.push_back(tran[digits[i] - '0' - 2][j]);
BackTracking(digits, n, i + 1, temp, ret);
temp.pop_back();
}
}
private:
vector<vector<char>> tran;
};
| [
"zintrulcre@gmail.com"
] | zintrulcre@gmail.com |
d8a3fb0e27f0f23822fe4ffc90a2d424414715c6 | 8da5ec935ef89038592a76029fe50dba30448f22 | /CS_111_Circles/Source.cpp | 6b1e0f3a3318867872dd37250238ac841fdee995 | [] | no_license | ashritbista/Circles-C- | bcda47fb6437d4bdc515838b171b9f75829affd5 | d8c2e46bf93473cd5f54a1ff7d347f15a467fd7a | refs/heads/master | 2021-01-25T09:14:17.733378 | 2017-06-08T23:21:53 | 2017-06-08T23:21:53 | 93,798,170 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 6,526 | cpp | #include <iostream>
#include <sstream>
#include <fstream>
#include <cmath>
#include "Circle.h"
using namespace std;
//constant value
const double PI = 3.1415;
//distance calculator d = sqrt((x1 - x2)^2 + (y1 - y2)^2)
double calcDistance(double x1, double y1, double x2, double y2)
{
double distance = 0.0;
distance = sqrt(pow((x1 - x2), 2) + pow((y1 - y2), 2));
return distance;
}
/*This function calculates the traingle area inside the circle and the area of sector
it returns an array of number where element indexed 0 and 1 are the area of triangle
and elements indexed 2 and 3 are the area of sector. These values are then used to calculate
the intersected area*/
double *areaOfTriangleAndSector(Circle a, Circle b)
{
static double arr[4] = {};
double r1 = a.getRadius(), r2 = b.getRadius(), d = 0.0, theta1 = 0.0, theta2 = 0.0;
double a1 = 0.0, s1 = 0.0, s2 = 0.0;
d = calcDistance(a.getX(), a.getY(), b.getX(), b.getY());
a1 = sqrt((-d + r1 + r2) * (d - r1 + r2) * (d + r1 - r2) * (d + r1 + r2)) / d;
s1 = (a1 + 2.0 * r1) / 2.0;
s2 = (a1 + 2.0 * r2) / 2.0;
arr[0] = sqrt(s1 * (s1 - a1) * (s1 - r1) * (s1 - r1));
arr[1] = sqrt(s2 * (s2 - a1) * (s2 - r2) * (s2 - r2));
theta1 = 2 * asin(a1 / (2 * r1));
theta2 = 2 * asin(a1 / (2 * r2));
arr[2] = (0.5) * pow(r1, 2) * theta1;
arr[3] = (0.5) * pow(r2, 2) * theta2;
return arr;
}
//this function checks to see if the circles in check are tangent to each other
bool isTangent(Circle a, Circle b)
{
double distance = 0.0;
distance = calcDistance(a.getX(), a.getY(), b.getX(), b.getY());
if ((a.getRadius() + b.getRadius()) == distance)
return true;
else
return false;
}
//this function checks to see if one circle is inside another
bool is_inside(Circle a, Circle b)
{
double distance = 0.0, radA = 0.0, radB = 0.0, xA = 0.0, xB = 0.0, yA = 0.0, yB = 0.0;
xA = a.getX(); xB = b.getX();
yA = a.getY(); yB = b.getY();
radA = a.getRadius(); radB = b.getRadius();
distance = calcDistance(xA, yA, xB, yB);
if (distance <= fmax(radA, radB))
{
return true;
}
else
{
return false;
}
}
//this function checks to see if the circles intersect
bool circlesIntersect(Circle a, Circle b)
{
//get the circle data for the 1st circle
double radA = a.getRadius();
double xA = a.getX();
double yA = a.getY();
//get the circle data for the 2nd circle
double radB = b.getRadius();
double xB = b.getX();
double yB = b.getY();
double distance = 0.0;
distance = calcDistance(xA, yA, xB, yB);
if (distance < radA + radB)
{
return true;
}
else
{
return false;
}
}
//this function calculates the area of circle
double calcArea(Circle a[], int count)
{
double area = 0.0, x = 0.0, y = 0.0, rad = 0.0;
for (int i = 0; i < count - 1; i++)
{
rad = a[i].getRadius();
area = area + (PI * rad * rad);
}
return area;
}
//this function extracts the circle's data from the text file and stores it in the array
void get_circle_data(ifstream &file, double* a, int n, int &count)
{
string s = "";
stringstream str;
int arrCount = count;
double x = 0.0, y = 0.0, radius = 0.0;
string tmp = "";
int my_count = 0;
for (int i = 0; i < n; i++)
{
tmp = "";
getline(file, s);
str.clear();
for (unsigned int j = 0; j < s.length(); j++)
{
if (s[0] == '%')
continue;
if (s[j] != ' ')
{
tmp = tmp + s[j];
}
else
{
if (my_count == 0)
{
str << tmp;
str >> x;
a[arrCount] = x;
arrCount++;
my_count++;
tmp = "";
str.clear();
}
else
{
str << tmp;
str >> y;
a[arrCount] = y;
arrCount++;
tmp = "";
str.clear();
}
}
}
if (s[0] != '%')
{
str << tmp;
str >> radius;
a[arrCount] = radius;
arrCount++;
str.clear();
}
}
count = arrCount;
}
int main()
{
int n, arrCount = 0;
double circArea = 0.0;
string filename;
Circle circArr[500] = {};
cout << "Enter a file name: " << endl;
cin >> filename;
cout << endl;
ifstream myfile;
myfile.open(filename.c_str());
if (!myfile.good())
{
cout << "Sorry file not found!" << endl;
return 0;
}
string s;
stringstream ss;
getline(myfile, s);
if (s[0] == '%')
getline(myfile, s);
ss << s;
ss >> n;
//this variable stores the raw data for the circles that will be used to generate circles using the circle class
double *circle_data = new double[n * 3];
get_circle_data(myfile, circle_data, n, arrCount);
Circle mycirc ;
double x = 0.0, y = 0.0, rad = 0.0;
double *intersectData;
double overlap = 0.0, totalArea = 0.0;
int count = 0, circCount = 0;
//We will now populate the circles in the array
while (count < arrCount - 1)
{
x = circle_data[count];
count++;
mycirc.setX(x);
y = circle_data[count];
count++;
mycirc.setY(y);
rad = circle_data[count];
count++;
if (rad >= 0)
{
mycirc.setRadius(rad);
}
else
return 0;
circArr[circCount] = mycirc;
circCount++;
}
for (int i = 0; i < circCount; i++)
{
circArr[i].toString();
cout << endl;
}
cout << endl;
/*This is where most of the work is done
the circles are checked to see if there is any overlapping. If there is, then the
overlapped areas are calculated and the data is stored in the variable "overlapped."*/
for (int i = 0; i < circCount; i++)
{
totalArea = totalArea + PI * pow(circArr[i].getRadius(), 2);
if (i != circCount - 1)
{
for (int j = i + 1; j < circCount; j++)
{
if (circlesIntersect(circArr[i], circArr[j]) && i != j)
{
cout << "Circles ";
circArr[i].toString();
cout << " and ";
circArr[j].toString();
cout << " intersect. " << endl;
cout << endl;
if (is_inside(circArr[i], circArr[j]))
{
cout << endl;
if (circArr[i].getRadius() > circArr[j].getRadius())
overlap += PI * pow(circArr[j].getRadius(), 2);
else
overlap += PI * pow(circArr[i].getRadius(), 2);
}
else if (!isTangent(circArr[i], circArr[j]))
{
intersectData = areaOfTriangleAndSector(circArr[i], circArr[j]);
overlap += abs((*(intersectData + 0) - *(intersectData + 2)));
overlap += abs((*(intersectData + 1) - *(intersectData + 3)));
}
}
}
}
}
totalArea = totalArea + pow(circArr[circCount].getRadius(), 2);
cout << "Total area = " << totalArea << endl;
cout << "Total overlap area = " << overlap << endl;
cout << "Total area after overlap = " << totalArea - overlap << endl;
delete [] circle_data;
cin.ignore();
cin.ignore();
return 0;
} | [
"ashrit93@gmail.com"
] | ashrit93@gmail.com |
4c83059072702c79570cc385888c78a503d2ccd9 | 16807a316c7130d625ed8c377d928a856f30eaa5 | /Library/Il2cppBuildCache/iOS/il2cppOutput/Unity.XR.ARSubsystems.cpp | 44b42ec8d933437a3a979de5a9a7c56479c867ea | [] | no_license | atppatil18/TibcoGameJam2021 | a6267aafed18e5544cbdc23b571f04a92925391b | 029f668a7198958b0eafe5405a2f638a694566f1 | refs/heads/main | 2023-05-15T06:43:00.116495 | 2021-06-10T14:17:29 | 2021-06-10T14:17:29 | 373,867,454 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,905,312 | cpp | #include "pch-cpp.hpp"
#ifndef _MSC_VER
# include <alloca.h>
#else
# include <malloc.h>
#endif
#include <limits>
#include <stdint.h>
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 T1, typename T2, typename T3>
struct VirtualActionInvoker3
{
typedef void (*Action)(void*, T1, T2, T3, const RuntimeMethod*);
static inline void Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1, T2 p2, T3 p3)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
((Action)invokeData.methodPtr)(obj, p1, p2, p3, 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);
}
};
template <typename R, typename T1, typename T2>
struct VirtualFuncInvoker2
{
typedef R (*Func)(void*, T1, T2, const RuntimeMethod*);
static inline R Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1, T2 p2)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
return ((Func)invokeData.methodPtr)(obj, p1, p2, invokeData.method);
}
};
template <typename R, typename T1, typename T2, typename T3>
struct VirtualFuncInvoker3
{
typedef R (*Func)(void*, T1, T2, T3, const RuntimeMethod*);
static inline R Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1, T2 p2, T3 p3)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
return ((Func)invokeData.methodPtr)(obj, p1, p2, p3, invokeData.method);
}
};
template <typename R, typename T1, typename T2, typename T3, typename T4>
struct VirtualFuncInvoker4
{
typedef R (*Func)(void*, T1, T2, T3, T4, const RuntimeMethod*);
static inline R Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1, T2 p2, T3 p3, T4 p4)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
return ((Func)invokeData.methodPtr)(obj, p1, p2, p3, p4, invokeData.method);
}
};
template <typename R, typename T1, typename T2, typename T3, typename T4, typename T5>
struct VirtualFuncInvoker5
{
typedef R (*Func)(void*, T1, T2, T3, T4, T5, const RuntimeMethod*);
static inline R Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1, T2 p2, T3 p3, T4 p4, T5 p5)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
return ((Func)invokeData.methodPtr)(obj, p1, p2, p3, p4, p5, invokeData.method);
}
};
// System.Action`3<System.Int32Enum,UnityEngine.XR.ARSubsystems.XRCpuImage/ConversionParams,Unity.Collections.NativeArray`1<System.Byte>>
struct Action_3_t5C12A3A1B435A4104E4F0DFA238FD12DD10C0804;
// System.Action`3<UnityEngine.XR.ARSubsystems.XRCpuImage/AsyncConversionStatus,UnityEngine.XR.ARSubsystems.XRCpuImage/ConversionParams,Unity.Collections.NativeArray`1<System.Byte>>
struct Action_3_t491A69D5891B04C314FECFC351B618D160286E6E;
// System.Func`1<System.Boolean>
struct Func_1_t76FCDA5C58178ED310C472967481FDE5F47DCF0F;
// System.Collections.Generic.IEnumerable`1<System.String>
struct IEnumerable_1_tBD60400523D840591A17E4CBBACC79397F68FAA2;
// System.Collections.Generic.LinkedList`1<System.Text.RegularExpressions.CachedCodeEntry>
struct LinkedList_1_t0AD3FC1D19E68F4B148AFF908DC3719C9B117D92;
// System.Collections.Generic.List`1<System.Object>
struct List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5;
// System.Collections.Generic.List`1<System.String>
struct List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3;
// System.Collections.Generic.List`1<UnityEngine.XR.ARSubsystems.XRReferenceImage>
struct List_1_tBFEC44C63782254A7C0F22D20FC51F72002482EC;
// System.Collections.Generic.List`1<UnityEngine.XR.ARSubsystems.XRReferenceObject>
struct List_1_t3A1F09045329A30B2867F24E69EC807BE36BEA9B;
// System.Collections.Generic.List`1<UnityEngine.XR.ARSubsystems.XRReferenceObjectEntry>
struct List_1_tB23AEDE769BF4EA511C93F224596EF58939F8E5A;
// UnityEngine.XR.ARSubsystems.Promise`1<System.Int32Enum>
struct Promise_1_t4A177D2785B1022FAEDD19EC4B7D80529BEAFDAB;
// UnityEngine.XR.ARSubsystems.Promise`1<UnityEngine.XR.ARSubsystems.SessionAvailability>
struct Promise_1_tB8B428F557CD6742430DB416C0B99C79CA1AA167;
// UnityEngine.XR.ARSubsystems.Promise`1<UnityEngine.XR.ARSubsystems.SessionInstallationStatus>
struct Promise_1_tB8B3F3631C923F82F653F3D73D6B3082CF7CDD88;
// UnityEngine.SubsystemsImplementation.SubsystemDescriptorWithProvider`2<System.Object,System.Object>
struct SubsystemDescriptorWithProvider_2_t4F631AC12A41E95D188968B1776F2A1F983B90A4;
// UnityEngine.SubsystemsImplementation.SubsystemDescriptorWithProvider`2<UnityEngine.XR.ARSubsystems.XRAnchorSubsystem,UnityEngine.XR.ARSubsystems.XRAnchorSubsystem/Provider>
struct SubsystemDescriptorWithProvider_2_t0A7F13BEDD4EC8DFDD5AEC7D5171B22F3D852CE5;
// UnityEngine.SubsystemsImplementation.SubsystemDescriptorWithProvider`2<UnityEngine.XR.ARSubsystems.XRCameraSubsystem,UnityEngine.XR.ARSubsystems.XRCameraSubsystem/Provider>
struct SubsystemDescriptorWithProvider_2_tA9FA485739D1F05136E95B57BC5FC580309C9038;
// UnityEngine.SubsystemsImplementation.SubsystemDescriptorWithProvider`2<UnityEngine.XR.ARSubsystems.XRDepthSubsystem,UnityEngine.XR.ARSubsystems.XRDepthSubsystem/Provider>
struct SubsystemDescriptorWithProvider_2_t977F6FA0CAD110C500F658A35F19E5D5301AD0BC;
// UnityEngine.SubsystemsImplementation.SubsystemDescriptorWithProvider`2<UnityEngine.XR.ARSubsystems.XREnvironmentProbeSubsystem,UnityEngine.XR.ARSubsystems.XREnvironmentProbeSubsystem/Provider>
struct SubsystemDescriptorWithProvider_2_t66BB4225DD47C0B6DF8312AEF1CDB8DB4CB729D9;
// UnityEngine.SubsystemsImplementation.SubsystemDescriptorWithProvider`2<UnityEngine.XR.ARSubsystems.XRFaceSubsystem,UnityEngine.XR.ARSubsystems.XRFaceSubsystem/Provider>
struct SubsystemDescriptorWithProvider_2_tB12E064D6020E2F12266EBEB553796258028452B;
// UnityEngine.SubsystemsImplementation.SubsystemDescriptorWithProvider`2<UnityEngine.XR.ARSubsystems.XRHumanBodySubsystem,UnityEngine.XR.ARSubsystems.XRHumanBodySubsystem/Provider>
struct SubsystemDescriptorWithProvider_2_t0BF07E59C6A0B8ACC38BF74CC2BC483D05AE541D;
// UnityEngine.SubsystemsImplementation.SubsystemDescriptorWithProvider`2<UnityEngine.XR.ARSubsystems.XRImageTrackingSubsystem,UnityEngine.XR.ARSubsystems.XRImageTrackingSubsystem/Provider>
struct SubsystemDescriptorWithProvider_2_tDB11EA61A7EEC9B491CE74FAFEDB41D9F00B7B34;
// UnityEngine.SubsystemsImplementation.SubsystemDescriptorWithProvider`2<UnityEngine.XR.ARSubsystems.XRObjectTrackingSubsystem,UnityEngine.XR.ARSubsystems.XRObjectTrackingSubsystem/Provider>
struct SubsystemDescriptorWithProvider_2_tB30A449BCFE0FA82C8183709FCA73609BEF8497F;
// UnityEngine.SubsystemsImplementation.SubsystemDescriptorWithProvider`2<UnityEngine.XR.ARSubsystems.XROcclusionSubsystem,UnityEngine.XR.ARSubsystems.XROcclusionSubsystem/Provider>
struct SubsystemDescriptorWithProvider_2_t62816A265C3833F4CF714035B6683894F074039D;
// UnityEngine.SubsystemsImplementation.SubsystemDescriptorWithProvider`2<UnityEngine.XR.ARSubsystems.XRParticipantSubsystem,UnityEngine.XR.ARSubsystems.XRParticipantSubsystem/Provider>
struct SubsystemDescriptorWithProvider_2_t43C05E9C3928E04822F2DA791FFAC4C140DF10A5;
// UnityEngine.SubsystemsImplementation.SubsystemDescriptorWithProvider`2<UnityEngine.XR.ARSubsystems.XRPlaneSubsystem,UnityEngine.XR.ARSubsystems.XRPlaneSubsystem/Provider>
struct SubsystemDescriptorWithProvider_2_t389082A83361A00577FB12B1BFEFA4439DBEAA69;
// UnityEngine.SubsystemsImplementation.SubsystemDescriptorWithProvider`2<UnityEngine.XR.ARSubsystems.XRRaycastSubsystem,UnityEngine.XR.ARSubsystems.XRRaycastSubsystem/Provider>
struct SubsystemDescriptorWithProvider_2_t0E1C52F3F099638F0EFF9E03352A814E50092E22;
// UnityEngine.SubsystemsImplementation.SubsystemDescriptorWithProvider`2<UnityEngine.XR.ARSubsystems.XRSessionSubsystem,UnityEngine.XR.ARSubsystems.XRSessionSubsystem/Provider>
struct SubsystemDescriptorWithProvider_2_tE9888364F17DF110619D7238068EB1EC98053AE5;
// UnityEngine.SubsystemsImplementation.SubsystemProvider`1<System.Object>
struct SubsystemProvider_1_tB5A0B737E782053A89719964DAF99F32E5CBFC46;
// UnityEngine.SubsystemsImplementation.SubsystemProvider`1<UnityEngine.XR.ARSubsystems.XRAnchorSubsystem>
struct SubsystemProvider_1_t302358330269847780327C2298A4FFA7D79AF2BF;
// UnityEngine.SubsystemsImplementation.SubsystemProvider`1<UnityEngine.XR.ARSubsystems.XRCameraSubsystem>
struct SubsystemProvider_1_t3B6396AEE76B5D8268802608E3593AA3D48DB307;
// UnityEngine.SubsystemsImplementation.SubsystemProvider`1<UnityEngine.XR.ARSubsystems.XRDepthSubsystem>
struct SubsystemProvider_1_tBB539901FE99992CAA10A1EFDFA610E048498E98;
// UnityEngine.SubsystemsImplementation.SubsystemProvider`1<UnityEngine.XR.ARSubsystems.XREnvironmentProbeSubsystem>
struct SubsystemProvider_1_tC3DB99A11F9F3210CE2ABA9FE09C127C5B13FF80;
// UnityEngine.SubsystemsImplementation.SubsystemProvider`1<UnityEngine.XR.ARSubsystems.XRFaceSubsystem>
struct SubsystemProvider_1_t23EADEE126E953AEBF796C02B50539998EA56B78;
// UnityEngine.SubsystemsImplementation.SubsystemProvider`1<UnityEngine.XR.ARSubsystems.XRHumanBodySubsystem>
struct SubsystemProvider_1_tBF37BFFB47314B7D87E24F4C4903C90930C0302C;
// UnityEngine.SubsystemsImplementation.SubsystemProvider`1<UnityEngine.XR.ARSubsystems.XRImageTrackingSubsystem>
struct SubsystemProvider_1_t3086BC462E1384FBB8137E64FA6C513FC002E440;
// UnityEngine.SubsystemsImplementation.SubsystemProvider`1<UnityEngine.XR.ARSubsystems.XRObjectTrackingSubsystem>
struct SubsystemProvider_1_t71FE677A1A2F32123FE4C7868D5943892028AE12;
// UnityEngine.SubsystemsImplementation.SubsystemProvider`1<UnityEngine.XR.ARSubsystems.XROcclusionSubsystem>
struct SubsystemProvider_1_t57D5C398A7A30AC3C3674CA126FAE612BC00F597;
// UnityEngine.SubsystemsImplementation.SubsystemProvider`1<UnityEngine.XR.ARSubsystems.XRParticipantSubsystem>
struct SubsystemProvider_1_t3D6D4D936F16F3264F75D1BAB46A4A398F18F204;
// UnityEngine.SubsystemsImplementation.SubsystemProvider`1<UnityEngine.XR.ARSubsystems.XRPlaneSubsystem>
struct SubsystemProvider_1_tF2F3B0C041BDD07A00CD49B25AE6016B61F24816;
// UnityEngine.SubsystemsImplementation.SubsystemProvider`1<UnityEngine.XR.ARSubsystems.XRRaycastSubsystem>
struct SubsystemProvider_1_t7ACBE98539B067B19E2D5BCC2B852277F4A38875;
// UnityEngine.SubsystemsImplementation.SubsystemProvider`1<UnityEngine.XR.ARSubsystems.XRSessionSubsystem>
struct SubsystemProvider_1_tFA56F133FD9BCE90A1C4C7D15FFE2571963D8DE4;
// UnityEngine.SubsystemsImplementation.SubsystemWithProvider`3<System.Object,System.Object,System.Object>
struct SubsystemWithProvider_3_t80ABC03E4A5E84C63AB7C26719F2C5CA1FAA7EC2;
// UnityEngine.SubsystemsImplementation.SubsystemWithProvider`3<UnityEngine.XR.ARSubsystems.XRAnchorSubsystem,UnityEngine.XR.ARSubsystems.XRAnchorSubsystemDescriptor,UnityEngine.XR.ARSubsystems.XRAnchorSubsystem/Provider>
struct SubsystemWithProvider_3_tD91EB2F57F19DA2CDB9A5E0011978CA1EA351BA2;
// UnityEngine.SubsystemsImplementation.SubsystemWithProvider`3<UnityEngine.XR.ARSubsystems.XRCameraSubsystem,UnityEngine.XR.ARSubsystems.XRCameraSubsystemDescriptor,UnityEngine.XR.ARSubsystems.XRCameraSubsystem/Provider>
struct SubsystemWithProvider_3_tA938665692EBC0CA746A276F8413E462E8930FD4;
// UnityEngine.SubsystemsImplementation.SubsystemWithProvider`3<UnityEngine.XR.ARSubsystems.XRDepthSubsystem,UnityEngine.XR.ARSubsystems.XRDepthSubsystemDescriptor,UnityEngine.XR.ARSubsystems.XRDepthSubsystem/Provider>
struct SubsystemWithProvider_3_tD436D6BE4AA164ED727D09EFDE50FF8DCAA50D98;
// UnityEngine.SubsystemsImplementation.SubsystemWithProvider`3<UnityEngine.XR.ARSubsystems.XREnvironmentProbeSubsystem,UnityEngine.XR.ARSubsystems.XREnvironmentProbeSubsystemDescriptor,UnityEngine.XR.ARSubsystems.XREnvironmentProbeSubsystem/Provider>
struct SubsystemWithProvider_3_t8B33A21A2B183DB3F429FD3F0A899D7ED1BB4DEA;
// UnityEngine.SubsystemsImplementation.SubsystemWithProvider`3<UnityEngine.XR.ARSubsystems.XRFaceSubsystem,UnityEngine.XR.ARSubsystems.XRFaceSubsystemDescriptor,UnityEngine.XR.ARSubsystems.XRFaceSubsystem/Provider>
struct SubsystemWithProvider_3_t2E74C29CB9922972A66085C9DAD6E1542BCCE25B;
// UnityEngine.SubsystemsImplementation.SubsystemWithProvider`3<UnityEngine.XR.ARSubsystems.XRHumanBodySubsystem,UnityEngine.XR.ARSubsystems.XRHumanBodySubsystemDescriptor,UnityEngine.XR.ARSubsystems.XRHumanBodySubsystem/Provider>
struct SubsystemWithProvider_3_t152AEC9946809B23BD9A7DE32A2113E12B8CE2C2;
// UnityEngine.SubsystemsImplementation.SubsystemWithProvider`3<UnityEngine.XR.ARSubsystems.XRImageTrackingSubsystem,UnityEngine.XR.ARSubsystems.XRImageTrackingSubsystemDescriptor,UnityEngine.XR.ARSubsystems.XRImageTrackingSubsystem/Provider>
struct SubsystemWithProvider_3_t249D82EF0730E7FF15F2B19C4BB45B2E08CF620B;
// UnityEngine.SubsystemsImplementation.SubsystemWithProvider`3<UnityEngine.XR.ARSubsystems.XRObjectTrackingSubsystem,UnityEngine.XR.ARSubsystems.XRObjectTrackingSubsystemDescriptor,UnityEngine.XR.ARSubsystems.XRObjectTrackingSubsystem/Provider>
struct SubsystemWithProvider_3_t2622D99FF6F2A6B95B2E82547A76A7E7712AA7DB;
// UnityEngine.SubsystemsImplementation.SubsystemWithProvider`3<UnityEngine.XR.ARSubsystems.XROcclusionSubsystem,UnityEngine.XR.ARSubsystems.XROcclusionSubsystemDescriptor,UnityEngine.XR.ARSubsystems.XROcclusionSubsystem/Provider>
struct SubsystemWithProvider_3_t2838D413336061A31AFDEA49065AD29BD1EB3A1B;
// UnityEngine.SubsystemsImplementation.SubsystemWithProvider`3<UnityEngine.XR.ARSubsystems.XRParticipantSubsystem,UnityEngine.XR.ARSubsystems.XRParticipantSubsystemDescriptor,UnityEngine.XR.ARSubsystems.XRParticipantSubsystem/Provider>
struct SubsystemWithProvider_3_t0293B6FD1251DCA5DC0D3396C57B87118ECE01DF;
// UnityEngine.SubsystemsImplementation.SubsystemWithProvider`3<UnityEngine.XR.ARSubsystems.XRPlaneSubsystem,UnityEngine.XR.ARSubsystems.XRPlaneSubsystemDescriptor,UnityEngine.XR.ARSubsystems.XRPlaneSubsystem/Provider>
struct SubsystemWithProvider_3_t2D48685843F3C8CD4AE71F1303F357DCAE9FD683;
// UnityEngine.SubsystemsImplementation.SubsystemWithProvider`3<UnityEngine.XR.ARSubsystems.XRRaycastSubsystem,UnityEngine.XR.ARSubsystems.XRRaycastSubsystemDescriptor,UnityEngine.XR.ARSubsystems.XRRaycastSubsystem/Provider>
struct SubsystemWithProvider_3_t6C72A4BB6DC4A9CC6B00E99D4A5EF1E1C9BBAF1E;
// UnityEngine.SubsystemsImplementation.SubsystemWithProvider`3<UnityEngine.XR.ARSubsystems.XRReferencePointSubsystem,UnityEngine.XR.ARSubsystems.XRReferencePointSubsystemDescriptor,UnityEngine.XR.ARSubsystems.XRReferencePointSubsystem/Provider>
struct SubsystemWithProvider_3_tBEFCA8C8D6BE0554DE28CB542681793993E3C7C3;
// UnityEngine.SubsystemsImplementation.SubsystemWithProvider`3<UnityEngine.XR.ARSubsystems.XRSessionSubsystem,UnityEngine.XR.ARSubsystems.XRSessionSubsystemDescriptor,UnityEngine.XR.ARSubsystems.XRSessionSubsystem/Provider>
struct SubsystemWithProvider_3_t646DFCE31181130FB557E4AFA37198CF3170977F;
// UnityEngine.XR.ARSubsystems.TrackingSubsystem`4<UnityEngine.XR.ARSubsystems.BoundedPlane,System.Object,System.Object,System.Object>
struct TrackingSubsystem_4_t03AE7A9F3FCFC6AD533F1AC3F403168B8140649F;
// UnityEngine.XR.ARSubsystems.TrackingSubsystem`4<UnityEngine.XR.ARSubsystems.BoundedPlane,UnityEngine.XR.ARSubsystems.XRPlaneSubsystem,UnityEngine.XR.ARSubsystems.XRPlaneSubsystemDescriptor,UnityEngine.XR.ARSubsystems.XRPlaneSubsystem/Provider>
struct TrackingSubsystem_4_t4CF696722E0C05A2C0234E78E673F4F17EEC1C94;
// UnityEngine.XR.ARSubsystems.TrackingSubsystem`4<UnityEngine.XR.ARSubsystems.XRAnchor,System.Object,System.Object,System.Object>
struct TrackingSubsystem_4_t346381F1A8322029735E6CB60BE656844AC911E8;
// UnityEngine.XR.ARSubsystems.TrackingSubsystem`4<UnityEngine.XR.ARSubsystems.XRAnchor,UnityEngine.XR.ARSubsystems.XRAnchorSubsystem,UnityEngine.XR.ARSubsystems.XRAnchorSubsystemDescriptor,UnityEngine.XR.ARSubsystems.XRAnchorSubsystem/Provider>
struct TrackingSubsystem_4_t5C7E2B8B7A9943DF8B9FF5B46FB5AFA71E9826F1;
// UnityEngine.XR.ARSubsystems.TrackingSubsystem`4<UnityEngine.XR.ARSubsystems.XREnvironmentProbe,System.Object,System.Object,System.Object>
struct TrackingSubsystem_4_tBD40FD22068207BB90449FC608025235E400C47A;
// UnityEngine.XR.ARSubsystems.TrackingSubsystem`4<UnityEngine.XR.ARSubsystems.XREnvironmentProbe,UnityEngine.XR.ARSubsystems.XREnvironmentProbeSubsystem,UnityEngine.XR.ARSubsystems.XREnvironmentProbeSubsystemDescriptor,UnityEngine.XR.ARSubsystems.XREnvironmentProbeSubsystem/Provider>
struct TrackingSubsystem_4_t3D5C3B3749ABE82CC258AD552288C51FAE67DA1A;
// UnityEngine.XR.ARSubsystems.TrackingSubsystem`4<UnityEngine.XR.ARSubsystems.XRFace,System.Object,System.Object,System.Object>
struct TrackingSubsystem_4_tB043EC909C55FE5BC78AD95436858F4956E3DE4C;
// UnityEngine.XR.ARSubsystems.TrackingSubsystem`4<UnityEngine.XR.ARSubsystems.XRFace,UnityEngine.XR.ARSubsystems.XRFaceSubsystem,UnityEngine.XR.ARSubsystems.XRFaceSubsystemDescriptor,UnityEngine.XR.ARSubsystems.XRFaceSubsystem/Provider>
struct TrackingSubsystem_4_tFC4495C6B04D616F71158509026269F004F79333;
// UnityEngine.XR.ARSubsystems.TrackingSubsystem`4<UnityEngine.XR.ARSubsystems.XRHumanBody,System.Object,System.Object,System.Object>
struct TrackingSubsystem_4_t758226B1C7A7735796B7029A5913BC43628FCCF3;
// UnityEngine.XR.ARSubsystems.TrackingSubsystem`4<UnityEngine.XR.ARSubsystems.XRHumanBody,UnityEngine.XR.ARSubsystems.XRHumanBodySubsystem,UnityEngine.XR.ARSubsystems.XRHumanBodySubsystemDescriptor,UnityEngine.XR.ARSubsystems.XRHumanBodySubsystem/Provider>
struct TrackingSubsystem_4_tB0BB38AE7B56DA9BE6D8463DD64E4766AD686B86;
// UnityEngine.XR.ARSubsystems.TrackingSubsystem`4<UnityEngine.XR.ARSubsystems.XRParticipant,System.Object,System.Object,System.Object>
struct TrackingSubsystem_4_t2CAAD77E4532041B0120AE543DB331C1CECFA765;
// UnityEngine.XR.ARSubsystems.TrackingSubsystem`4<UnityEngine.XR.ARSubsystems.XRParticipant,UnityEngine.XR.ARSubsystems.XRParticipantSubsystem,UnityEngine.XR.ARSubsystems.XRParticipantSubsystemDescriptor,UnityEngine.XR.ARSubsystems.XRParticipantSubsystem/Provider>
struct TrackingSubsystem_4_tF2C9DD677702042D71E5050214FE516389400277;
// UnityEngine.XR.ARSubsystems.TrackingSubsystem`4<UnityEngine.XR.ARSubsystems.XRPointCloud,System.Object,System.Object,System.Object>
struct TrackingSubsystem_4_t1953500C8BD92CD8DCFED1CC3B58B24A60C24E43;
// UnityEngine.XR.ARSubsystems.TrackingSubsystem`4<UnityEngine.XR.ARSubsystems.XRPointCloud,UnityEngine.XR.ARSubsystems.XRDepthSubsystem,UnityEngine.XR.ARSubsystems.XRDepthSubsystemDescriptor,UnityEngine.XR.ARSubsystems.XRDepthSubsystem/Provider>
struct TrackingSubsystem_4_t52B43FDBB6E641E351193D790222EA1C68B2984E;
// UnityEngine.XR.ARSubsystems.TrackingSubsystem`4<UnityEngine.XR.ARSubsystems.XRRaycast,System.Object,System.Object,System.Object>
struct TrackingSubsystem_4_tE9F5623D0E551591334872A367EFF28A72775EEA;
// UnityEngine.XR.ARSubsystems.TrackingSubsystem`4<UnityEngine.XR.ARSubsystems.XRRaycast,UnityEngine.XR.ARSubsystems.XRRaycastSubsystem,UnityEngine.XR.ARSubsystems.XRRaycastSubsystemDescriptor,UnityEngine.XR.ARSubsystems.XRRaycastSubsystem/Provider>
struct TrackingSubsystem_4_t87A57AE1E1117ED73BBD3B84DD595F36FA975077;
// UnityEngine.XR.ARSubsystems.TrackingSubsystem`4<UnityEngine.XR.ARSubsystems.XRReferencePoint,System.Object,System.Object,System.Object>
struct TrackingSubsystem_4_t3385ADCA6DCAB14BAB5A5E886D096E0B5FA530F5;
// UnityEngine.XR.ARSubsystems.TrackingSubsystem`4<UnityEngine.XR.ARSubsystems.XRReferencePoint,UnityEngine.XR.ARSubsystems.XRReferencePointSubsystem,UnityEngine.XR.ARSubsystems.XRReferencePointSubsystemDescriptor,UnityEngine.XR.ARSubsystems.XRReferencePointSubsystem/Provider>
struct TrackingSubsystem_4_t0B2307E3EA3CA1C1A2EE084C333FC42E3F5590B0;
// UnityEngine.XR.ARSubsystems.TrackingSubsystem`4<UnityEngine.XR.ARSubsystems.XRTrackedImage,System.Object,System.Object,System.Object>
struct TrackingSubsystem_4_t227E1B3CD9B70F544BE2BAC33219E40F224A16BA;
// UnityEngine.XR.ARSubsystems.TrackingSubsystem`4<UnityEngine.XR.ARSubsystems.XRTrackedImage,UnityEngine.XR.ARSubsystems.XRImageTrackingSubsystem,UnityEngine.XR.ARSubsystems.XRImageTrackingSubsystemDescriptor,UnityEngine.XR.ARSubsystems.XRImageTrackingSubsystem/Provider>
struct TrackingSubsystem_4_tCE5EA1B7325877FD88C7CF41F681F25B1FC1717A;
// UnityEngine.XR.ARSubsystems.TrackingSubsystem`4<UnityEngine.XR.ARSubsystems.XRTrackedObject,System.Object,System.Object,System.Object>
struct TrackingSubsystem_4_t7F92C20128624C004DAABFC3F72A9994C54898D9;
// UnityEngine.XR.ARSubsystems.TrackingSubsystem`4<UnityEngine.XR.ARSubsystems.XRTrackedObject,UnityEngine.XR.ARSubsystems.XRObjectTrackingSubsystem,UnityEngine.XR.ARSubsystems.XRObjectTrackingSubsystemDescriptor,UnityEngine.XR.ARSubsystems.XRObjectTrackingSubsystem/Provider>
struct TrackingSubsystem_4_t1E41FDFF37B1529EED554D89481040B067E300EB;
// System.Char[]
struct CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34;
// System.Delegate[]
struct DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8;
// System.IntPtr[]
struct IntPtrU5BU5D_t27FC72B0409D75AAF33EC42498E8094E95FEE9A6;
// System.Object[]
struct ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE;
// System.Diagnostics.StackTrace[]
struct StackTraceU5BU5D_t4AD999C288CB6D1F38A299D12B1598D606588971;
// System.String[]
struct StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A;
// System.Type[]
struct TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755;
// UnityEngine.XR.ARSubsystems.XRReferenceImage[]
struct XRReferenceImageU5BU5D_t9A2F6DD5CC64F74EBA9D563B001CA15802CF3900;
// UnityEngine.XR.ARSubsystems.XRReferenceObject[]
struct XRReferenceObjectU5BU5D_t84152A67B96E14F580770A62448BAC37D9D60E20;
// UnityEngine.XR.ARSubsystems.XRReferenceObjectEntry[]
struct XRReferenceObjectEntryU5BU5D_t6E3E31B808CFA8DF32ABCB052DBBDC3C85DE3628;
// System.ArgumentException
struct ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00;
// System.ArgumentNullException
struct ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB;
// System.ArgumentOutOfRangeException
struct ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8;
// System.Attribute
struct Attribute_t037CA9D9F3B742C063DB364D2EEBBF9FC5772C71;
// System.Reflection.Binder
struct Binder_t2BEE27FD84737D1E79BC47FD67F6D3DD2F2DDA30;
// System.Byte
struct Byte_t0111FAB8B8685667EDDAF77683F0D8F86B659056;
// UnityEngine.XR.ARSubsystems.ConfigurationChooser
struct ConfigurationChooser_t0CCF856A226297A702F306A2217CF17D652E72C4;
// UnityEngine.XR.ARSubsystems.DefaultConfigurationChooser
struct DefaultConfigurationChooser_tC3488EB08C98156663D851D9F0F0AD9294D4613F;
// System.Delegate
struct Delegate_t;
// System.DelegateData
struct DelegateData_t17DD30660E330C49381DAA99F934BE75CB11F288;
// Microsoft.CodeAnalysis.EmbeddedAttribute
struct EmbeddedAttribute_t90946B46F8A884CD575D2A26804B242737A86DDA;
// System.Text.RegularExpressions.ExclusiveReference
struct ExclusiveReference_t7F4A5D2416EA34710F520BAD225E61BC1E98D1D8;
// System.Collections.Hashtable
struct Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC;
// System.Collections.IDictionary
struct IDictionary_t99871C56B8EC2452AC5C4CF3831695E617B89D3A;
// System.IndexOutOfRangeException
struct IndexOutOfRangeException_tDC9EF7A0346CE39E54DA1083F07BE6DFC3CE2EDD;
// System.InvalidOperationException
struct InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB;
// System.Runtime.CompilerServices.IsReadOnlyAttribute
struct IsReadOnlyAttribute_t6C6EC35F1D85F983E1108A473F3FEBDD3CCBA525;
// UnityEngine.Material
struct Material_t8927C00353A72755313F046D0CE85178AE8218EE;
// System.Reflection.MemberFilter
struct MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81;
// System.Reflection.MethodInfo
struct MethodInfo_t;
// UnityEngine.XR.ARSubsystems.MutableRuntimeReferenceImageLibrary
struct MutableRuntimeReferenceImageLibrary_t887376CE46B48DEEC6E8655D429BADCA6E3C7EAA;
// System.NotImplementedException
struct NotImplementedException_t26260C4EE0444C5FA022994203060B3A42A3ADE6;
// System.NotSupportedException
struct NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339;
// UnityEngine.Object
struct Object_tF2F3778131EFF286AF62B7B013A170F95A91571A;
// System.Security.Cryptography.RandomNumberGenerator
struct RandomNumberGenerator_t2CB5440F189986116A2FA9F907AE52644047AC50;
// System.Text.RegularExpressions.Regex
struct Regex_t90F443D398F44965EA241A652ED75DF5BA072A1F;
// System.Text.RegularExpressions.RegexCode
struct RegexCode_tF1653432E8EEDED5AB9517D09CA84B5FAA3CC0D5;
// System.Text.RegularExpressions.RegexRunnerFactory
struct RegexRunnerFactory_tA425EC5DC77FC0AAD86EB116E5483E94679CAA96;
// UnityEngine.XR.ARSubsystems.RuntimeReferenceImageLibrary
struct RuntimeReferenceImageLibrary_t76072EC5637B1F0F8FD0A1BFD3AEAF954D6F8D6B;
// System.Runtime.Serialization.SafeSerializationManager
struct SafeSerializationManager_tDE44F029589A028F8A3053C5C06153FAB4AAE29F;
// UnityEngine.ScriptableObject
struct ScriptableObject_t4361E08CEBF052C650D3666C7CEC37EB31DE116A;
// UnityEngine.Shader
struct Shader_tB2355DC4F3CAF20B2F1AB5AABBF37C3555FFBC39;
// System.Text.RegularExpressions.SharedReference
struct SharedReference_t74AB40C102A76A7523C72269A49D2C8FBDD83926;
// System.String
struct String_t;
// UnityEngine.SubsystemsImplementation.SubsystemDescriptorWithProvider
struct SubsystemDescriptorWithProvider_t32DD334657CFBA22F2FBA399258B087104A29C3E;
// UnityEngine.SubsystemsImplementation.SubsystemProvider
struct SubsystemProvider_t39E89FB8DB1EF1D2B0AF93796AEDB19D76A665F9;
// UnityEngine.SubsystemsImplementation.SubsystemWithProvider
struct SubsystemWithProvider_t1C1868CF8676F5596C1AD20A7CE69BDF7C7DE73E;
// UnityEngine.Texture2D
struct Texture2D_t9B604D0D8E28032123641A7E7338FA872E2698BF;
// System.Type
struct Type_t;
// System.Void
struct Void_t700C6383A2A510C2CF4DD86DABD5CA9FF70ADAC5;
// UnityEngine.XR.ARSubsystems.XRAnchorSubsystem
struct XRAnchorSubsystem_t625D9B76C590AB601CF85525DB9396BE84425AA7;
// UnityEngine.XR.ARSubsystems.XRAnchorSubsystemDescriptor
struct XRAnchorSubsystemDescriptor_t3BD7F9922EF5C04185D59349C76D625BC1E44E3B;
// UnityEngine.XR.ARSubsystems.XRCameraSubsystem
struct XRCameraSubsystem_t3B32F6EA8A2E4D23AF240B5D21C34759D2613AC9;
// UnityEngine.XR.ARSubsystems.XRCameraSubsystemDescriptor
struct XRCameraSubsystemDescriptor_t1F8A45C69031E2981B1863518C43793D26E2C5E5;
// UnityEngine.XR.ARSubsystems.XRDepthSubsystem
struct XRDepthSubsystem_t808E21F0192095B08FA03AC535314FB5EF3B7E28;
// UnityEngine.XR.ARSubsystems.XRDepthSubsystemDescriptor
struct XRDepthSubsystemDescriptor_t745DBB7D313FB52F756E0B7AA993FBBC26B412C2;
// UnityEngine.XR.ARSubsystems.XREnvironmentProbeSubsystem
struct XREnvironmentProbeSubsystem_t0C60258F565400E7C5AF0E0B7FA933F2BCF83CB6;
// UnityEngine.XR.ARSubsystems.XREnvironmentProbeSubsystemDescriptor
struct XREnvironmentProbeSubsystemDescriptor_t7C10519F545418330347AC7434FBB10F39DD4243;
// UnityEngine.XR.ARSubsystems.XRFaceSubsystem
struct XRFaceSubsystem_tBC42015E8BB4ED0A5428E01DBB7BE769A6B140FD;
// UnityEngine.XR.ARSubsystems.XRFaceSubsystemDescriptor
struct XRFaceSubsystemDescriptor_t129999D2BF40B1016A8C70A0FDE9763C21DCD618;
// UnityEngine.XR.ARSubsystems.XRHumanBodySubsystem
struct XRHumanBodySubsystem_t71FBF94503DCE781657FA4F362464EA389CD9F2B;
// UnityEngine.XR.ARSubsystems.XRHumanBodySubsystemDescriptor
struct XRHumanBodySubsystemDescriptor_t00E75DD05B03BCC1BF5A794547615692B7A55C04;
// UnityEngine.XR.ARSubsystems.XRImageTrackingSubsystem
struct XRImageTrackingSubsystem_tBC68AD21C11D8D67F3343844E129DF505FF705CE;
// UnityEngine.XR.ARSubsystems.XRImageTrackingSubsystemDescriptor
struct XRImageTrackingSubsystemDescriptor_t3EC191739B144A8AA00CEEE03E8F7FF01D7F833B;
// UnityEngine.XR.ARSubsystems.XRObjectTrackingSubsystem
struct XRObjectTrackingSubsystem_t3F31F4C8BCA868FE69BD8EC75BA5A1116026C881;
// UnityEngine.XR.ARSubsystems.XRObjectTrackingSubsystemDescriptor
struct XRObjectTrackingSubsystemDescriptor_t831B568A9BE175A6A79BB87E25DEFAC519A6C472;
// UnityEngine.XR.ARSubsystems.XROcclusionSubsystem
struct XROcclusionSubsystem_t7546B929F9B5B6EB13B975FE4DB1F4099EE533B8;
// UnityEngine.XR.ARSubsystems.XROcclusionSubsystemDescriptor
struct XROcclusionSubsystemDescriptor_tC9C8F2EFB7768358C203968CA71D353F0DD234FB;
// UnityEngine.XR.ARSubsystems.XRParticipantSubsystem
struct XRParticipantSubsystem_t7F710E46FC5A17967E7CAE126DE9443C752C36FC;
// UnityEngine.XR.ARSubsystems.XRParticipantSubsystemDescriptor
struct XRParticipantSubsystemDescriptor_t533EE70DC8D4B105B9C87B76D35A7D59A84BCA55;
// UnityEngine.XR.ARSubsystems.XRPlaneSubsystem
struct XRPlaneSubsystem_t7C76F9D2C993B0DC38F0A7CDCE745EA7C12417EE;
// UnityEngine.XR.ARSubsystems.XRPlaneSubsystemDescriptor
struct XRPlaneSubsystemDescriptor_t98B66B6D99804656DDDB45C9BDA61C2EE4EDB483;
// UnityEngine.XR.ARSubsystems.XRRaycastSubsystem
struct XRRaycastSubsystem_t62FDAC9AA1BD44C4557AEE3FEF3D2FA24C71B6B8;
// UnityEngine.XR.ARSubsystems.XRRaycastSubsystemDescriptor
struct XRRaycastSubsystemDescriptor_tB9891F63FC4871797BCD04DB7167142BE2049B2C;
// UnityEngine.XR.ARSubsystems.XRReferenceImageLibrary
struct XRReferenceImageLibrary_tC415743C1DDCE2331D5B0F159B2A1D72A70C44B2;
// UnityEngine.XR.ARSubsystems.XRReferenceObjectEntry
struct XRReferenceObjectEntry_t873762C96E954D47B49C3B36CABD423408DC72D2;
// UnityEngine.XR.ARSubsystems.XRReferenceObjectLibrary
struct XRReferenceObjectLibrary_t07704B2996E507F23EE3C99CFC3BB73A83C99A7C;
// UnityEngine.XR.ARSubsystems.XRReferencePointSubsystem
struct XRReferencePointSubsystem_t2EF6E3F26C69D006F83E8E837FB60461D8033634;
// UnityEngine.XR.ARSubsystems.XRReferencePointSubsystemDescriptor
struct XRReferencePointSubsystemDescriptor_t8200CCC29717B3E08EECC476427E1A4E63C4EBDB;
// UnityEngine.XR.ARSubsystems.XRSessionSubsystem
struct XRSessionSubsystem_t8AD3C01568AA19BF038D23A6031FF9814CAF93CD;
// UnityEngine.XR.ARSubsystems.XRSessionSubsystemDescriptor
struct XRSessionSubsystemDescriptor_tC45A49D1179090D5C6D3B3DC1DC31CAB5A627B1C;
// UnityEngine.XR.ARSubsystems.XRAnchorSubsystem/Provider
struct Provider_t9F286D20EB73EBBA4B6E7203C7A9051BE673C2E2;
// UnityEngine.XR.ARSubsystems.XRCameraSubsystem/Provider
struct Provider_t55916B0D2766C320DCA36A0C870BA2FD80F8B6D1;
// UnityEngine.XR.ARSubsystems.XRCpuImage/Api
struct Api_t7C92F00C6416A2C636A44AAC833C3773C567DC3E;
// UnityEngine.XR.ARSubsystems.XRDepthSubsystem/Provider
struct Provider_t8E88C17A70269CD3E96909AFCCA952AAA7DEC0B6;
// UnityEngine.XR.ARSubsystems.XREnvironmentProbeSubsystem/Provider
struct Provider_tAF87FE3E906FDBF14F06488A1AA5E80400EFE190;
// UnityEngine.XR.ARSubsystems.XRFaceSubsystem/Provider
struct Provider_t0133E0DB4F1A68EB3D4814F63B14456832E3EAE7;
// UnityEngine.XR.ARSubsystems.XRHumanBodySubsystem/Provider
struct Provider_t055C90C34B2BCE8D134DF44C12823E320519168C;
// UnityEngine.XR.ARSubsystems.XRImageTrackingSubsystem/Provider
struct Provider_tA7CEF856C3BC486ADEBD656F5535E24262AAAE9E;
// UnityEngine.XR.ARSubsystems.XRObjectTrackingSubsystem/Provider
struct Provider_t35977A2A0AA6C338BC9893668DD32F0294A9C01E;
// UnityEngine.XR.ARSubsystems.XROcclusionSubsystem/Provider
struct Provider_t5B60C630FB68EFEAB6FA2F3D9A732C144003B7FB;
// UnityEngine.XR.ARSubsystems.XRParticipantSubsystem/Provider
struct Provider_t1D0BC515976D24FD30341AC456ACFCB2DE4A344E;
// UnityEngine.XR.ARSubsystems.XRPlaneSubsystem/Provider
struct Provider_t6CB5B1036B0AAED1379F3828D695A6942B72BA12;
// UnityEngine.XR.ARSubsystems.XRRaycastSubsystem/Provider
struct Provider_tF185BE0541D2066CD242583CEFE7709DD22DD227;
// UnityEngine.XR.ARSubsystems.XRReferencePointSubsystem/Provider
struct Provider_t7974F3BD624EC305575E361EE0BCAAA3DC5B253C;
// UnityEngine.XR.ARSubsystems.XRSessionSubsystem/Provider
struct Provider_t4C3675997BB8AF3A6A32C3EC3C93C10E4D3E8D1A;
// UnityEngine.XR.ARSubsystems.XRCpuImage/Api/OnImageRequestCompleteDelegate
struct OnImageRequestCompleteDelegate_t118FB01E93241BFD5BCA5BEF2A6FD082ACAAB4DD;
IL2CPP_EXTERN_C RuntimeClass* Action_3_t491A69D5891B04C314FECFC351B618D160286E6E_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* AddReferenceImageJobState_t6818A53BD54BDCDCA326D660A1575F66DF832633_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* AddReferenceImageJobStatus_t9DCD4D2016D73AAD47038B7967E3C83B06A91899_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Boolean_t07D1E3F34E4813023D64F584DFF7B34C9D922F37_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* BoundedPlane_t9001963C43ACDF4CDEA8BBF97CD783B7969B79C5_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Capabilities_tC6F329DD5C73C6B9E04BE77A3AE0E52390BD8685_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Cinfo_t11C577CFE4A1D91F887A6423F6D1350DA45CA5FC_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Cinfo_t2842A97DA95F40ECADDCA24A291B6114A3A5F71A_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Cinfo_t37F91E88FCD8623834BE1898FC146620538C08B1_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Cinfo_t4E32E30AF6973611F1DD0F47FC041ED3A8775DA6_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Cinfo_tAC330BB49E2D0C7E18C66AB4018927A6EC856E01_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Cinfo_tC49A76BF09DB3F926B17955E1B8D729DC9B272AD_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Cinfo_tED92D7CBD16BE657927A6B7DB64A22DA21EB7D32_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Cinfo_tF42131D7F2B721976AAF20DD0240D9C46397F7F7_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ConfigurationDescriptor_t5CD12F017FCCF861DC33D7C0D6F0121015DEEA78_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Configuration_t29C11C7E576D64F717543048BDA1EBCEF0CF60C0_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ConversionParams_t3DDB9752BA823641A302D0783C14048D9B09B74A_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* DefaultConfigurationChooser_tC3488EB08C98156663D851D9F0F0AD9294D4613F_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Double_t42821932CB52DE2057E685D0E1AF3DE5033D2181_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Enumerator_t9B104B3EE1E7390464361D775D18230CF662A7D5_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* FaceSubsystemParams_t2FC64133455298391F1A1DDC61B151E688301B09_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Feature_t079F5923A4893A9E07B968C27F44AC5FCAC87C83_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Format_tC8D4CDE6941B0CAE3E1C07EC826E7E253846168A_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Guid_t_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IndexOutOfRangeException_tDC9EF7A0346CE39E54DA1083F07BE6DFC3CE2EDD_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Int64_t378EE0D608BD3107E77238E85F30D2BBD46981F3_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IntPtr_t_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* List_1_t3A1F09045329A30B2867F24E69EC807BE36BEA9B_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* List_1_tBFEC44C63782254A7C0F22D20FC51F72002482EC_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Material_t8927C00353A72755313F046D0CE85178AE8218EE_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* NotImplementedException_t26260C4EE0444C5FA022994203060B3A42A3ADE6_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Object_tF2F3778131EFF286AF62B7B013A170F95A91571A_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* OnImageRequestCompleteDelegate_t118FB01E93241BFD5BCA5BEF2A6FD082ACAAB4DD_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* PlaneAlignment_t1BB7048E3969913434FB1B3BCBCA2E81D4E71ADA_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* PlaneClassification_tAC2E2E9609D4396BC311E2987CA3EFA5115EDD10_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Plane_tF421A9F250A5E61AFEE38069538AC8ECB9D3E22D_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* RectInt_tE7B8105A280C1AC73A4157ED41F9B86C9BD91E49_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Regex_t90F443D398F44965EA241A652ED75DF5BA072A1F_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ScreenOrientation_tDD9EF2729A0D580721770597532935B0A7ADE020_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* SerializableGuid_t5F8E8B4FF33F91AF9B16C6CC3F75AE00014505CC_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Single_tE07797BA3C98D4CA9B5A19413C19A76688AB899E_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* SphericalHarmonicsL2_tD2EC2ADCA26B9BE05036C3ABCF3CC049EC73EA64_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* SubsystemDescriptorStore_tE5D99C3159868DE6506269CB6B830621F8BC31A6_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* TextureDimension_tADCCB7C1D30E4D1182651BA9094B4DE61B63EACC_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* TextureFormat_tBED5388A0445FE978F97B41D247275B036407932_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* TrackingState_tB6996ED0D52D2A17DFACC90800705B81D370FC38_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Transformation_t5812B66180F359977F76AB67CC9E923CF0B55938_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Type_t_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* XRAnchorSubsystemDescriptor_t3BD7F9922EF5C04185D59349C76D625BC1E44E3B_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* XRAnchor_t8E92DD70D9FA9B3ED2799305E05228184932099C_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* XRCameraConfiguration_t2393055E5547307393E9C73AB13B95E0785A4F7A_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* XRCameraFrameProperties_t57C3A208DCCC01241BA413286A98B1726773200C_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* XRCameraFrame_t5FD7B7FC22B478AC6B00AD01A0AD6F2295EA1BA8_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* XRCameraIntrinsics_t85F1514E263A6C6DE96DBA5448B44F11F35395FD_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* XRCameraParams_t9FCECBDAEFCC1084042B75393990959B28B64B18_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* XRCameraSubsystemDescriptor_t1F8A45C69031E2981B1863518C43793D26E2C5E5_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* XRCpuImage_tA48C0687D95D3D63D1101E4E08EFCF0ABB2431CE_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* XRDepthSubsystemDescriptor_t745DBB7D313FB52F756E0B7AA993FBBC26B412C2_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* XREnvironmentProbeSubsystemCinfo_t6D9368EC95B6B356A67B7289270F27BB6A4440B2_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* XREnvironmentProbeSubsystemDescriptor_t7C10519F545418330347AC7434FBB10F39DD4243_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* XREnvironmentProbe_t4D75B5DF95135D1BA45222CBE3E7677E823B8D4C_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* XRFaceMesh_t2ADC7E6069DCCCFB439A4A60DB9189338C9E1AD0_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* XRFaceSubsystemDescriptor_t129999D2BF40B1016A8C70A0FDE9763C21DCD618_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* XRFace_tA970995ECE26D43D1CBB9058ABEC72B76D2DA599_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* XRHumanBodyJoint_t80D5022A816E4F24C92A9EABD645794FC0B5E2E4_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* XRHumanBodyPose2DJoint_t901EEB0FA2A9FF2D258978EC36EE0852FEF35BA4_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* XRHumanBodySubsystemCinfo_tAFFD9EF9197B51AA2EAC628F54C90C842B7E54CC_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* XRHumanBodySubsystemDescriptor_t00E75DD05B03BCC1BF5A794547615692B7A55C04_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* XRHumanBody_t1AA9DC3BEBCF86A64BE2B83452AC5704AD08C13B_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* XRImageTrackingSubsystemDescriptor_t3EC191739B144A8AA00CEEE03E8F7FF01D7F833B_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* XROcclusionSubsystemCinfo_tA29FDBA57EBA835927124FC18780DDD9CC4D84FD_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* XROcclusionSubsystemDescriptor_tC9C8F2EFB7768358C203968CA71D353F0DD234FB_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* XRParticipant_t8CFF46A2CDD860A7591AD0FC0EE563458C8FA13F_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* XRPlaneSubsystemDescriptor_t98B66B6D99804656DDDB45C9BDA61C2EE4EDB483_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* XRPointCloudData_t3AFE7A70A93C061F8C3B3B7AEDE07EDF6A86B177_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* XRPointCloud_t08B41A05528E45CE709F8C14CA6C484D360A62F2_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* XRRaycastHit_t94A3D13B245A9D0A7A7F2D0919DCAAC7C8DF8DDB_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* XRRaycastSubsystemDescriptor_tB9891F63FC4871797BCD04DB7167142BE2049B2C_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* XRRaycast_tA18F9107EFF1D692E70EF15233BB6134A5F66C55_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* XRReferenceImage_tB1803A72EB581FB35B2CA944973679132A1D4467_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* XRReferenceObject_t18877E1C9F50FF11192A86805D881349020032AE_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* XRReferencePoint_tF3ACF949B4AE1EC67F527F5D30DD8B912A814634_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* XRSessionSubsystemDescriptor_tC45A49D1179090D5C6D3B3DC1DC31CAB5A627B1C_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* XRSessionUpdateParams_t106E075C3B348969D6F3B634195F295CE47DB77F_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* XRTextureDescriptor_t9CA857DCCC1208B74376787BE4F3008A01B29A57_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* XRTrackedImage_t92B53E0621C6D2E930761110E719F0E9580A722F_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* XRTrackedObject_t247BBE67D4F9308544C4BAD807F321E0C404EC58_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C String_t* _stringLiteral0040832A71810E092F962A5F9A66A6A1866CC7D1;
IL2CPP_EXTERN_C String_t* _stringLiteral00B28FF06B788B9B67C6B259800F404F9F3761FD;
IL2CPP_EXTERN_C String_t* _stringLiteral01CAFAD1F22E5D95AAF12FA8EE6DE7393938DC36;
IL2CPP_EXTERN_C String_t* _stringLiteral02FD50D325E1D2E26EF752CF35F3BA993AC548E4;
IL2CPP_EXTERN_C String_t* _stringLiteral05595EFD90B4CF9D17A431C3346419AA27488DDA;
IL2CPP_EXTERN_C String_t* _stringLiteral062DB096C728515E033CF8C48A1C1F0B9A79384B;
IL2CPP_EXTERN_C String_t* _stringLiteral068B9DAC1E2A8DA48FFC0F566F9C805099D13F1B;
IL2CPP_EXTERN_C String_t* _stringLiteral07563FFFAE8DC96A4647329236D6578484DCFC54;
IL2CPP_EXTERN_C String_t* _stringLiteral0B9AEC2348486B831A3488530ACA1A6FECCC60DE;
IL2CPP_EXTERN_C String_t* _stringLiteral0E07B5AB0A65B017A998AF857D674FE6F98ED3C9;
IL2CPP_EXTERN_C String_t* _stringLiteral0EEB74DAF175D886E4EA5D5BB23B6E48993A80AF;
IL2CPP_EXTERN_C String_t* _stringLiteral0FBF1F3BF0E575F4D92649F1F5678267C887CF89;
IL2CPP_EXTERN_C String_t* _stringLiteral1019523B443E3F92C49FF4D29AF1F20C6CBD4E73;
IL2CPP_EXTERN_C String_t* _stringLiteral132C67C31C67A73009E12AF0BF92B84B55B95E84;
IL2CPP_EXTERN_C String_t* _stringLiteral1399697DAB4124C76C3449E6CBB1E28BB1C2F2A1;
IL2CPP_EXTERN_C String_t* _stringLiteral143DF4D7BE7CC053F3AE25024CDD2EF673D36100;
IL2CPP_EXTERN_C String_t* _stringLiteral158E95C298826281B51D5B4EE894BE864B7D1153;
IL2CPP_EXTERN_C String_t* _stringLiteral15E540EE340CABF2AEBFAE9C5DC5176C42795209;
IL2CPP_EXTERN_C String_t* _stringLiteral169B5F05B3C649D620B99E33CC12246A1C1B6BF5;
IL2CPP_EXTERN_C String_t* _stringLiteral16B03B9B09A75749753D1BD8C49C3482ED00598A;
IL2CPP_EXTERN_C String_t* _stringLiteral17DF22DB953B0B2B32295ED5D22675E806114620;
IL2CPP_EXTERN_C String_t* _stringLiteral1862DB4B99A6D2D4DDE2C775E5AC1AF7CD03A268;
IL2CPP_EXTERN_C String_t* _stringLiteral1889AF12D766B3A68EB9EE79FE4ECA560C23A4F5;
IL2CPP_EXTERN_C String_t* _stringLiteral1C244789BBF6C19E5126D1D3DC6898E243F24F51;
IL2CPP_EXTERN_C String_t* _stringLiteral1C60D08AD178165742EAA66ED6E17B425304C141;
IL2CPP_EXTERN_C String_t* _stringLiteral1DB034D4D0A5AFB7DC73BF7CE25C4958C7427376;
IL2CPP_EXTERN_C String_t* _stringLiteral20BBFE23E73935992537E1127A65E0B5C3687162;
IL2CPP_EXTERN_C String_t* _stringLiteral20BFFC3E3EF9F47EDC311ECA59B9D592C1989F45;
IL2CPP_EXTERN_C String_t* _stringLiteral2386E77CF610F786B06A91AF2C1B3FD2282D2745;
IL2CPP_EXTERN_C String_t* _stringLiteral26548CA46A8BBAF979FA375FE01C8EDF043E08D2;
IL2CPP_EXTERN_C String_t* _stringLiteral27D4391AD2900E18D386A9155EE7DD7ADAF98FBA;
IL2CPP_EXTERN_C String_t* _stringLiteral2ABD255D5E79D438044AA7D302C04ABEC3F505B5;
IL2CPP_EXTERN_C String_t* _stringLiteral2B6D6F48C27C60C3B55391AB377D9DC8F5639AA1;
IL2CPP_EXTERN_C String_t* _stringLiteral2BB40F9B4AC8B2B883083DDA4180950FAFD8BD7E;
IL2CPP_EXTERN_C String_t* _stringLiteral2C29AB53B67E1EC0660A20971C837847B4B69BD2;
IL2CPP_EXTERN_C String_t* _stringLiteral3194FD2CE283EE4DDE49298AADE96B77975C46E5;
IL2CPP_EXTERN_C String_t* _stringLiteral371D4A83362DFDF00E89BA68C82057A64E205D24;
IL2CPP_EXTERN_C String_t* _stringLiteral372BF79AE75002958CBC0912211B035DB3B4217D;
IL2CPP_EXTERN_C String_t* _stringLiteral3817AE5F81736AA82446C7E2BA122DD302D7AF11;
IL2CPP_EXTERN_C String_t* _stringLiteral3A52E7879DE66D0E349B236E72057CAEC73F1854;
IL2CPP_EXTERN_C String_t* _stringLiteral3A788090DA565EF18CC31FECD33EFC9ABE012B5D;
IL2CPP_EXTERN_C String_t* _stringLiteral3AB0DA5C0A0620735E866EA5BC9FCAA876BA5545;
IL2CPP_EXTERN_C String_t* _stringLiteral3AD8505B7B0110F8402179136782389ECCC50E3A;
IL2CPP_EXTERN_C String_t* _stringLiteral3B1384C148B6355F25E67F7DFA0D39159B634A77;
IL2CPP_EXTERN_C String_t* _stringLiteral3B2C1C62D4D1C2A0C8A9AC42DB00D33C654F9AD0;
IL2CPP_EXTERN_C String_t* _stringLiteral3DAA28DA82AA8B836AA22268F5F5B468D3453CE4;
IL2CPP_EXTERN_C String_t* _stringLiteral40C3754113912BBB2324B9A85745EAD27C43B49F;
IL2CPP_EXTERN_C String_t* _stringLiteral40F25DCEA3689A55267487C5F546C2AD0C2BB96B;
IL2CPP_EXTERN_C String_t* _stringLiteral4110120B3B41A2DDAFF9CBA0B77F7BE9DDBB53B3;
IL2CPP_EXTERN_C String_t* _stringLiteral41D4ECEC72974BEA998FBA733A15A0EA3B7DF9B1;
IL2CPP_EXTERN_C String_t* _stringLiteral432E8BB3AE5D710869E78463BD79EB5AF1287DF1;
IL2CPP_EXTERN_C String_t* _stringLiteral43CF1A394DF36BF047EE89F7BFA26227D4379BFB;
IL2CPP_EXTERN_C String_t* _stringLiteral447993BB9CCC280BD731A90A94EAA3AC0C8F2B2C;
IL2CPP_EXTERN_C String_t* _stringLiteral4484D73E5D13E98119AFD8332CD8BC78758E004F;
IL2CPP_EXTERN_C String_t* _stringLiteral4578213F1BD00C014CECBA9C93CB2E9CA2D494EE;
IL2CPP_EXTERN_C String_t* _stringLiteral46F273EF641E07D271D91E0DC24A4392582671F8;
IL2CPP_EXTERN_C String_t* _stringLiteral489BDF1FA9922AB5F829F5BE893907E419364DF4;
IL2CPP_EXTERN_C String_t* _stringLiteral49851190ED9FA7B5B16CED19B807FDDAA864FEE9;
IL2CPP_EXTERN_C String_t* _stringLiteral49DE19A080E7D5ADFAE0565CAFC30E6F99EB7FFD;
IL2CPP_EXTERN_C String_t* _stringLiteral4AFE519EAD888D5A627EF6B063C7310AB640C54D;
IL2CPP_EXTERN_C String_t* _stringLiteral4B80EFD0BD00CE9A8E26DD1EA0F4B58964AF32CD;
IL2CPP_EXTERN_C String_t* _stringLiteral4BA02032FD29B99FE1D3EF320CFADB809174DF13;
IL2CPP_EXTERN_C String_t* _stringLiteral4D7D028B9D260D7794BD2CA2ECD9BB14052C874D;
IL2CPP_EXTERN_C String_t* _stringLiteral4E2CAD93C9B37D75C2F198F913EF6C4D8D9D1F79;
IL2CPP_EXTERN_C String_t* _stringLiteral4F30A45443B0F35B99358BDC46A8811E3BE5B054;
IL2CPP_EXTERN_C String_t* _stringLiteral4F48AB40ED10C58263B4B8A12B919BFBF7F87427;
IL2CPP_EXTERN_C String_t* _stringLiteral50462E987F01EE38DE56F70AE720A4C4512F3F59;
IL2CPP_EXTERN_C String_t* _stringLiteral53AF0584729649EA84EE72BF90D62B91A5A5818D;
IL2CPP_EXTERN_C String_t* _stringLiteral5685B6BCB3992CB9D612CE4663B4E2CC474D63E5;
IL2CPP_EXTERN_C String_t* _stringLiteral5845E8DEE033062F8F4F5EAA72A635E5E10F19CA;
IL2CPP_EXTERN_C String_t* _stringLiteral589FDC1297AD5B0B961700FBC7EC4CD7096E00E8;
IL2CPP_EXTERN_C String_t* _stringLiteral58E5CEADA2059EE9E3025B80075ADE0FEECDE744;
IL2CPP_EXTERN_C String_t* _stringLiteral5A65C5353FCF9B2392130B62992E8D50E5552C89;
IL2CPP_EXTERN_C String_t* _stringLiteral5AA54628701AE2AFACB9F6D58F472757613F8ADB;
IL2CPP_EXTERN_C String_t* _stringLiteral5BA2A4A16421FA9FAB2CAF2E4AFC91121F7BB4FD;
IL2CPP_EXTERN_C String_t* _stringLiteral5DD68446F820F397860B76D203AC09BE189AC257;
IL2CPP_EXTERN_C String_t* _stringLiteral607249559B663C70F82F5656FA321C4A466736D4;
IL2CPP_EXTERN_C String_t* _stringLiteral60F35647DEA77E887634D85B00663788842E59AC;
IL2CPP_EXTERN_C String_t* _stringLiteral631C2A034F2EEC364263FCD6C54F837D6F6BA919;
IL2CPP_EXTERN_C String_t* _stringLiteral66302D2613F26AFE177C77015981C7FA27A369BB;
IL2CPP_EXTERN_C String_t* _stringLiteral67C8FE59E36A25FD95779FB7535B566AF7F8421C;
IL2CPP_EXTERN_C String_t* _stringLiteral697C90518644F8CEC228B3FAAF9208018A265979;
IL2CPP_EXTERN_C String_t* _stringLiteral69848EA3811CFA33C6D149D0D7D3E7BB386BD641;
IL2CPP_EXTERN_C String_t* _stringLiteral6B4169897FC35167B2A79D0323289E30033EE0C7;
IL2CPP_EXTERN_C String_t* _stringLiteral6C36D530882356E81C3DF37AF7B6B8FC59FE1FC0;
IL2CPP_EXTERN_C String_t* _stringLiteral6E08267B4D40BEF3D6FD241002FD8395E431BF8A;
IL2CPP_EXTERN_C String_t* _stringLiteral6F57A13713CB116503D42E8DFD65A84DA07B33BB;
IL2CPP_EXTERN_C String_t* _stringLiteral704C51A0DAD6B36AE5557F6EC82739898E4BFB61;
IL2CPP_EXTERN_C String_t* _stringLiteral7122AD46BE25874E464E4389F96444AA2302A459;
IL2CPP_EXTERN_C String_t* _stringLiteral73B1EF85B3661969EA06515B1FAB6B1BECBB653C;
IL2CPP_EXTERN_C String_t* _stringLiteral758733BDBED83CBFF4F635AC26CA92AAE477F75D;
IL2CPP_EXTERN_C String_t* _stringLiteral772119CD0175AC1E1CADE4F75080F5F07B6BB1F9;
IL2CPP_EXTERN_C String_t* _stringLiteral773B3E33BD417BDFC3619000108985CB0FF49E77;
IL2CPP_EXTERN_C String_t* _stringLiteral774435CB0ABA1D212CE35028C45598E01E1A4BF6;
IL2CPP_EXTERN_C String_t* _stringLiteral7C870909849A9D8B2B4A755041CC27EB6D76483B;
IL2CPP_EXTERN_C String_t* _stringLiteral7DDE72F2A774F9DBACCB80FF4D0729AB6C3FD6CE;
IL2CPP_EXTERN_C String_t* _stringLiteral7E3AA66375763B3002BB9676C66B36DC25F6FD12;
IL2CPP_EXTERN_C String_t* _stringLiteral7F623AA45815B8B51F227F5A19CB68E1BD42852E;
IL2CPP_EXTERN_C String_t* _stringLiteral84202A255CF695123BA6AA8B575C53104873E7C7;
IL2CPP_EXTERN_C String_t* _stringLiteral843AD9485B03D4FA4E70DB5FA0FC7C332F7F871F;
IL2CPP_EXTERN_C String_t* _stringLiteral87C47688E7FBA919124B1A1D7B77CE47A06E36A2;
IL2CPP_EXTERN_C String_t* _stringLiteral88CA26652382EB9056FA8D06D416F308717A3471;
IL2CPP_EXTERN_C String_t* _stringLiteral88D27F4E3C8F87C257FEF5F0843C2B70FE53393D;
IL2CPP_EXTERN_C String_t* _stringLiteral8E24AD325FDF926182510CA7537CB68FEA6D6503;
IL2CPP_EXTERN_C String_t* _stringLiteral8F12A6F28F1AD2AB573BEA595C276D59ADEE1FDA;
IL2CPP_EXTERN_C String_t* _stringLiteral92580D64BA310146F0049A68E639333564037B8B;
IL2CPP_EXTERN_C String_t* _stringLiteral999193589C222540CE490D9CC14E170C46AD6523;
IL2CPP_EXTERN_C String_t* _stringLiteral99C87677D7C931C6716048E6564D746F83638144;
IL2CPP_EXTERN_C String_t* _stringLiteral9B4A21D6CD8062B6CF05C6F0BE263B555730AD00;
IL2CPP_EXTERN_C String_t* _stringLiteral9C9801D3EA3E223E75ECE3A3C518ED695023EE74;
IL2CPP_EXTERN_C String_t* _stringLiteralA2A7E438E876A47A61C6E2144C25AB3FC820856F;
IL2CPP_EXTERN_C String_t* _stringLiteralA391D138A809D167B6D3419E2A0940FC8958C8EF;
IL2CPP_EXTERN_C String_t* _stringLiteralA52B348614D1F733D74BED036C2A2E8757BA6B76;
IL2CPP_EXTERN_C String_t* _stringLiteralA8A8717ECC5E31F30A99C8547616828C8F428B66;
IL2CPP_EXTERN_C String_t* _stringLiteralA9BA2974AED76FB92F26F69C6093F790414376FA;
IL2CPP_EXTERN_C String_t* _stringLiteralAA661F2F4F2AC2A4D1268C73A499D77CA7E0C476;
IL2CPP_EXTERN_C String_t* _stringLiteralB089E7C95CC4D58B7178BE7201F9D364AD80CE19;
IL2CPP_EXTERN_C String_t* _stringLiteralB0C265238CD8DCB2E075C4DB503EA5E606492B12;
IL2CPP_EXTERN_C String_t* _stringLiteralB19032E635CE920B302296D3885543D1639CB459;
IL2CPP_EXTERN_C String_t* _stringLiteralB46EF5E6A66EDA1C58FC6247FCF11ED116219577;
IL2CPP_EXTERN_C String_t* _stringLiteralB51BA3F369D95E685969CC962493A3F0B421BA4D;
IL2CPP_EXTERN_C String_t* _stringLiteralB51DF98769C686D20D8FAD7C8DB324505A9CB947;
IL2CPP_EXTERN_C String_t* _stringLiteralBAFB66877A656B61552112DCE8DB71CD94172E33;
IL2CPP_EXTERN_C String_t* _stringLiteralBDC838375A805C8CCC6514E96BA13E150D629186;
IL2CPP_EXTERN_C String_t* _stringLiteralBEC9FDEA1EB953376E5F17E9CEC1AFAC97FDD26D;
IL2CPP_EXTERN_C String_t* _stringLiteralC0A7EDEBF99915540EBE211C25A14FEFF82DDAA7;
IL2CPP_EXTERN_C String_t* _stringLiteralC127E2685E9BA6170311362A98135614A56E47AF;
IL2CPP_EXTERN_C String_t* _stringLiteralC5EA8CC9CEFFB2863CC8F11B79A2D43FA26C9E3E;
IL2CPP_EXTERN_C String_t* _stringLiteralC6EAFD4C3B23645C412BB41A74CBFEB5A62E11BF;
IL2CPP_EXTERN_C String_t* _stringLiteralCA349D00A92432477BD02869F0B8A81869BF9986;
IL2CPP_EXTERN_C String_t* _stringLiteralCCC539F743E3F97210255E70596588570DD34D8E;
IL2CPP_EXTERN_C String_t* _stringLiteralCD0C03FFF40E6F1D242821369D83EC4658F16D35;
IL2CPP_EXTERN_C String_t* _stringLiteralCD6929759E4F65FD23C942E751989013B1E90A1A;
IL2CPP_EXTERN_C String_t* _stringLiteralCD7EB64BD9799979E78360B72F0170B09EB8E7EC;
IL2CPP_EXTERN_C String_t* _stringLiteralCE83A8FD46D2BCA9E85007E13F35EC64241D98D0;
IL2CPP_EXTERN_C String_t* _stringLiteralCEA8A633C4C95F85CAB2C4D07CAFA53611912B32;
IL2CPP_EXTERN_C String_t* _stringLiteralCECA054A5E04174D340F9D413A054DFB3140C680;
IL2CPP_EXTERN_C String_t* _stringLiteralD2316C6372C4914C9A07CD469B803A77534ADCF4;
IL2CPP_EXTERN_C String_t* _stringLiteralD5763433090039E34F2AC4CEE2907724B1579261;
IL2CPP_EXTERN_C String_t* _stringLiteralD629B7D26A17486767CD11C705978B046E7819F7;
IL2CPP_EXTERN_C String_t* _stringLiteralD7D10F5EBD63494DC1C7F8C9033E7A490800B3AF;
IL2CPP_EXTERN_C String_t* _stringLiteralDA1CD25788E7EE9FDEA55BBF0CEE5D1AD7F125CD;
IL2CPP_EXTERN_C String_t* _stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709;
IL2CPP_EXTERN_C String_t* _stringLiteralDF94EFAB2817C9FA4C96A63F52A6908EB5841345;
IL2CPP_EXTERN_C String_t* _stringLiteralE249513646B3CA3B2119CA7AD27370C9E9012B74;
IL2CPP_EXTERN_C String_t* _stringLiteralE30658D0ADE6E62208BFA543EF45EB5C784EE9B9;
IL2CPP_EXTERN_C String_t* _stringLiteralE38896D7A7A4D523CB8DB8499882C1A4B6CD2517;
IL2CPP_EXTERN_C String_t* _stringLiteralE3B3C6EBFEA166D20BF43554ADFEFAB3308E3F3E;
IL2CPP_EXTERN_C String_t* _stringLiteralE446F5E5E3D5CD70111EE44D96D38C2402691299;
IL2CPP_EXTERN_C String_t* _stringLiteralE4E07AE56B3A0074E42A9FFB34854865ED818489;
IL2CPP_EXTERN_C String_t* _stringLiteralE573BD7F9C4A38697EE4A429FA0C236D6C7038C4;
IL2CPP_EXTERN_C String_t* _stringLiteralE5ECD7F1FA08F134058D380D997446C6D15C2FC0;
IL2CPP_EXTERN_C String_t* _stringLiteralE7538558415E1BD8F7A4C577BB457C0AD0F3C884;
IL2CPP_EXTERN_C String_t* _stringLiteralEC43EDEADFD3245F29A73A73F1B6ABC9B301A4BE;
IL2CPP_EXTERN_C String_t* _stringLiteralEC87B5B72C43840675815A18206B4D3123DFC00E;
IL2CPP_EXTERN_C String_t* _stringLiteralED9546C195BD4988B71713BD762B7E7F364227ED;
IL2CPP_EXTERN_C String_t* _stringLiteralF1FF99A8F97A90CE3EB35AA1C7B40C1DDFC82A9B;
IL2CPP_EXTERN_C String_t* _stringLiteralF3E84B722399601AD7E281754E917478AA9AD48D;
IL2CPP_EXTERN_C String_t* _stringLiteralF627CDA1D5403909B224DFB1DDF5D0F8E00F2EEA;
IL2CPP_EXTERN_C String_t* _stringLiteralF7D4582E4C9630075149B9121887385CB3717408;
IL2CPP_EXTERN_C String_t* _stringLiteralF888230443F7BB68D49D53BBE56D2A722FDD6CA2;
IL2CPP_EXTERN_C String_t* _stringLiteralF9A65D560514A0DBAEA0BD813C4A25CD252C2D66;
IL2CPP_EXTERN_C String_t* _stringLiteralFA562B1F59BDBECDE523EAD6A241FA2473D1BCB4;
IL2CPP_EXTERN_C String_t* _stringLiteralFB004ECFD7B1E474B835B2C92DC67B54C8CA4AE8;
IL2CPP_EXTERN_C String_t* _stringLiteralFBAF124AB08242B7785EC2B6DBC3C6459CB98BC8;
IL2CPP_EXTERN_C String_t* _stringLiteralFC5D6DE16BCDC8814D21BFAE734BA1DDFE197110;
IL2CPP_EXTERN_C String_t* _stringLiteralFD4706B02823C71252FBF63A74CF03433A8DADF0;
IL2CPP_EXTERN_C String_t* _stringLiteralFDA1C52D0E58360F4E8FD608757CCD98D8772D4F;
IL2CPP_EXTERN_C String_t* _stringLiteralFFE3A1B73CD7FC81540FBBE737435B0A887629D5;
IL2CPP_EXTERN_C const RuntimeMethod* Action_3_Invoke_mB0B175A1C7991B2471342D41B290D071E2B33901_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* AddReferenceImageJobState__ctor_mAFC8E35811BAF9292B00B7D06EF4C6895AFDD74C_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Api_ConvertAsync_m7D88B9B493A448A03FBED33FE2C675805A2417F0_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Api_ConvertAsync_mE9BFD28B9BC1C3A063FC0B84B014B3538A155E99_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Api_DisposeAsyncRequest_m06C972C865763DF2DE877124295F4A48B0574ABE_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Api_DisposeImage_m6AEAAF9EF11D19294B441CF6DBB8FEDD58933989_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Api_GetAsyncRequestStatus_m920A8C2BA437BF3581A737DE8AF350094577300B_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Api_NativeHandleValid_m25628942A0D2320EAB96887219972ED8257FC858_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Api_TryConvert_m2FB4CAC6639BE6EDDD65D74A3C296C9A72C1E6FD_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Api_TryGetAsyncRequestData_mCEB60B8F55366677F05AAF1651F46C4B28AFAEA3_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Api_TryGetConvertedDataSize_m50DDC92171F520516E21205E3817BEE0D51A9A51_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Api_TryGetPlane_m9EDAE9347615522A0C95F387DF4D274D655090A8_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Configuration__ctor_m5A3F2286F33BA303B4C8A8E0E34ED6DA993A43BB_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* DefaultConfigurationChooser_ChooseConfiguration_m4CA6F2A0B77732D4EACCA7D6FD3B1B1407ECBBD1_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_Dispose_m79BB9557BF615D18A63059DCFFA3FD69F020132A_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_MoveNext_m61D27731413ABDD017C4CEF8CEDC048933342572_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_get_Current_mD6D071A95173F93E2068090483A476DA2D5DBAF6_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Func_1_Invoke_mCA605B0373C1EE39807AB82AEA983289D3F15C79_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_Add_mD8C90346622A7F72A072D319F0E2AE851BB5885A_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_GetEnumerator_m45E71AF4863349632BEE157CA69F3A54CF72443F_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_GetEnumerator_mCA314B5D3AF7A49BB0A0F9A7678AB806E1634C84_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_IndexOf_m379AA5FE2596B5AD6A4E1EF381A223C3A54CE492_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_IndexOf_m66260729958DA566371F821C7BC904679A0D5745_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_m07F165CAD958CA1F86EA27507BCC2528E3933D2B_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_m30C52A4F2828D86CA3FAB0B1B583948F4DA9F1F9_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_m78DBF761B0A442EE07D9A114BC9981A3866E72CC_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Count_m0793D9FA487681001881232EFD626044240AD7D4_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Count_m199DB87BCE947106FBA38E19FDFE80CB65B61144_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Count_m84A3D8A14DE6FA8E93A6DBA5F857B6E2861FF246_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Item_m198C10E9F0F98950D2C37B38E085E659EBF05243_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Item_mB9758E724C2CACE0CC41D0AA2B78FCCB962CEA37_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* MutableRuntimeReferenceImageLibrary_CreateAddJobState_m27F387722EE946B2B1555C1384B6659E2D884481_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* MutableRuntimeReferenceImageLibrary_GetAddReferenceImageJobStatus_mEE3EB04E40A6295FAD73C3FD08F622A629915315_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* MutableRuntimeReferenceImageLibrary_ScheduleAddImageWithValidationJobImpl_m781DB083DCFA8F856F48773BC38086A6DBBA55DF_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* MutableRuntimeReferenceImageLibrary_ValidateAndThrow_mF2EB8580B66B035A33F2F8E61957EC1BFD16B1C6_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* NativeArrayUnsafeUtility_ConvertExistingDataToNativeArray_TisByte_t0111FAB8B8685667EDDAF77683F0D8F86B659056_m38F468CD9930A95B57C900167F1D8E8BBFE58F8C_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* NativeArray_1_Dispose_m02DA8137FD41E7E6BB40E763EA2F6535B770C375_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* NativeArray_1_Dispose_m366C5B6CC3F2B8D322B33FA8A94C30460A38C174_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* NativeArray_1_Dispose_m69DBDA47FE3991A47E9CFCBFB3292676D22D7655_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* NativeArray_1_Dispose_m867A382096AF527E2B854ADC9ED75ED6BF95D76B_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* NativeArray_1_Dispose_mC03B89A2188FC84335036FA76CEB1925D7DC4294_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* NativeArray_1_Dispose_mE737DADB8C5E4B02C2FB6CB36E86AC6371D806BF_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* NativeArray_1_Equals_m0A873528008D16BDD7E45156AEBC2DF063CB3995_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* NativeArray_1_Equals_m4A9EECE699C4FF2E1E1C4F81D6C26DAA3B756A23_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* NativeArray_1_Equals_m71BD7AE6B5085F75CED3D638275DCFF43B231A5B_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* NativeArray_1_Equals_m982D9159B14354AF45D0234A0ACF47BF81D62A99_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* NativeArray_1_Equals_mA564B751B7D08620960FFA67C404F57AEDDDBC79_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* NativeArray_1_Equals_mF60658EAFF21BD4AC0990C4C8944C20761F178DA_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* NativeArray_1_GetHashCode_m13D81A3581866C33D8C9B13443F7342C9105EF98_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* NativeArray_1_GetHashCode_m1C0484565632411F701F00B79715B0F483A58383_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* NativeArray_1_GetHashCode_m84FE16CA6E708E33854BE0C102597EE6D16DED19_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* NativeArray_1_GetHashCode_mC443459008949D4F14829D441CAE3C82A4D3F86B_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* NativeArray_1_GetHashCode_mC922CA29222CB7251722A89B2C5B48CFD82A8C5A_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* NativeArray_1_GetHashCode_mE3A484ADA1047A341C388F0261DBA091C2F4F9B9_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* NativeArray_1__ctor_m2BCB109D4076B26086589A4C8600C49A9F38FA7A_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* NativeArray_1__ctor_m55427120ACDC71253ECC88FB9FE3C72B9B8DC920_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* NativeArray_1_get_IsCreated_m0B7EB9CC11FCECCC0480F589775E99828F222AE5_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* NativeArray_1_get_IsCreated_m394E202D29B5488CB56139D346E1A64EBBDA2E9C_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* NativeArray_1_get_IsCreated_m558F60AA76D10E2CDBB1B2882F4175B8B9F9F9AB_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* NativeArray_1_get_IsCreated_mC0D0556229A19FBA32063A797CAE4BE1A8417E22_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* NativeArray_1_get_IsCreated_mCD60B11F9FB036F65310E83275A1632E57AAC29C_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* NativeArray_1_get_IsCreated_mF82CF064C6050394DEAC11047A6308998101A4AE_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* NativeSliceUnsafeUtility_GetUnsafePtr_TisByte_t0111FAB8B8685667EDDAF77683F0D8F86B659056_mFF166CCFFA843D77765F18DA5E42EE6B80AE6A76_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* NativeSlice_1_GetEnumerator_m7A5BFDF0746F727192351D810B4DA32D67966CEF_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* NativeSlice_1_get_Length_m7D873C4D8E53FE893929EDA4D6CA223F64A86759_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* NativeSlice_1_op_Implicit_m494BB4F27DEE7CD30ADD66B1A6FC945E828865D5_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Nullable_1_GetHashCode_mE204DC50FD677C7E0F2B981BA2E8AE333EB8B108_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Nullable_1_GetValueOrDefault_m66800983B800C26B67A6999A687EA3767C739406_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Nullable_1__ctor_m92BC32A206E9876BAD178B5E19AD685B8894AB4C_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Nullable_1__ctor_mD5C83DE6764BE7391F906F32B36CCDF7598553AD_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Nullable_1_get_HasValue_m68E887776727FD03427726B3149807754F1B770B_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Nullable_1_get_HasValue_m7455E879CFAAE682AE3786D4D2B1F65C8AA23921_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Nullable_1_get_HasValue_m965388873B2BD6BFE630C83A6B9D18EA421A8793_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Nullable_1_get_HasValue_mD8E0C85C96E8F68E55600773D64912BF77F68545_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Nullable_1_get_Value_m3C3A95F64243501B1C7A94F24C463A2B13DC2E1A_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Nullable_1_get_Value_m47529826F53174F3E761F99E88ACC08B02820E4D_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Nullable_1_get_Value_m81778F362BEC72D4456079CDF5FB0D3487A1BCCC_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Promise_1_CreateResolvedPromise_m0539A4D1183B6650A6841CB26B4034A17958451A_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Promise_1_CreateResolvedPromise_mDFDD3612998EF30142998D55C64B684BA09F4B1A_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Provider_CreateCameraMaterial_mE1F6AD1B1D9F9BA80FE1B8DB3138262545FC018C_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Provider_GetBoundary_mFEC076BA5F9EAEFB5CFD36A8A690CD6B9449A45A_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Provider_GetHumanBodyPose2DJoints_m9CBC5A20BCA6FEC12F844AEBCE285D978C859E00_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Provider_GetSkeleton_mFFD5F2C114C2B8C3A8B54C10CFCF82F2D5C57868_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Provider_Raycast_m848F042E5613BB90E3A933E19E8229D7C94914C0_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Provider_Raycast_mBEE3804BA51E701D3775CC4AC1AFD16FEB97FB72_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Provider_RemoveEnvironmentProbe_m1C8E9F616E2D1F98ECF86A3D6101B9A7ACB949D8_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Provider_TryAcquireEnvironmentDepthConfidenceCpuImage_mC0A1389DBA1C968C2E998C406852881E0F6089FE_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Provider_TryAcquireEnvironmentDepthCpuImage_m038A771570F8067187EA5602FE6287D7F32A8BA4_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Provider_TryAcquireHumanDepthCpuImage_mD9C2C05795A09F724FA8FCCE18C32CD2F5B66F0F_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Provider_TryAcquireHumanStencilCpuImage_mC6011EC7798D37065264EE243943E90D1E6B71FD_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Provider_TryAcquireLatestCpuImage_mAB2F3E8C6C6EE2C1DE5181FAF044999FCD6521CA_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Provider_TryAddEnvironmentProbe_m3290B8D160B758811040A94F335843B1665618D5_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Provider_TryGetEnvironmentDepthConfidence_mB12E08E4B93E1272976BE1F0C09592133B93848F_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Provider_TryGetEnvironmentDepth_m39AA20EFA2DB7D68364B4D677731911BB9B95987_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Provider_TryGetHumanDepth_m4F902130B0B684322ACE0F2D7F72F412F5D42844_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Provider_TryGetHumanStencil_m8231857EC5143647F85BB79A29BAC18430821D36_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Provider_get_frameRate_mC445B76B58305DB89474EBF4A1EAC3DFBB8268D0_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Provider_set_automaticPlacementRequested_m247AC8CC05683266B38C937719C7B0E766C6337B_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Provider_set_currentConfiguration_m99D438CC1ABE5E92215CA7FA369BE61A7652ED66_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Provider_set_environmentTextureHDRRequested_m82BAEA302C0714E7C0194EA11A8FE890E7409A8B_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Provider_set_matchFrameRateRequested_m22D49ABF01EEF1D750FD86A7E6D67BE6A462E0DC_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Provider_set_pose2DRequested_m27B9A484B65FE56A642599F71769CECD31F21B55_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Provider_set_pose3DRequested_mCF7E233FEE430CE3B888B8E65D36E7EB8475697B_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Provider_set_pose3DScaleEstimationRequested_m33837BA93C947D63865DFCA7A83288498EAA8200_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Provider_set_requestedHumanDepthMode_m90E3350AB1E861DDA9B1254B5601665484690258_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Provider_set_requestedHumanStencilMode_m17A4B7518A1749DEEF6E432E290D03D66AAB1004_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Provider_set_requestedMaxNumberOfMovingImages_mCEC5839726AA69CAD5ED6F831170D2B7EDD7567F_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Provider_set_requestedPlaneDetectionMode_m6F76C54F3DDC0811336F80D6CF40CBC64147DAD9_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* RuntimeReferenceImageLibrary_get_Item_mEB525ED69F54BD63CE3942B99521D4D1E04B6CBB_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* SubsystemDescriptorWithProvider_2__ctor_m1CF8865269978062A7763335B78C6D873D10F09E_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* SubsystemDescriptorWithProvider_2__ctor_m1EABAE51FDAFF9CB42468C8DAF4A7964659204AF_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* SubsystemDescriptorWithProvider_2__ctor_m2EC9A500A904A603347A1D66CB451F04DA0AA3A2_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* SubsystemDescriptorWithProvider_2__ctor_m2F3E41C1EE0822F68A7AACCB231B6D3D1DCC8BCC_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* SubsystemDescriptorWithProvider_2__ctor_m44F60A7BB6F0282109ED44817703F6FDE0DAD8E7_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* SubsystemDescriptorWithProvider_2__ctor_m4C7EAD774890F6A7B6A2871F0217E0D8B5EBD60F_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* SubsystemDescriptorWithProvider_2__ctor_m4CBC56B4E2A8A4BC63FC246F6DEA77EED160B4E1_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* SubsystemDescriptorWithProvider_2__ctor_m63E1420F5B2D7E40BDAAD6BC312979C25D61C6EE_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* SubsystemDescriptorWithProvider_2__ctor_m71AD229762C8901343553A86E6D5763202F24677_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* SubsystemDescriptorWithProvider_2__ctor_m72B3AFD426F854BF8E1C6E7B57A5108001019FCF_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* SubsystemDescriptorWithProvider_2__ctor_mABB924981A181423ECB10954AC56B09E9A4D71AA_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* SubsystemDescriptorWithProvider_2__ctor_mC9825ABADBFD661143DBD286E7A4203D29661704_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* SubsystemDescriptorWithProvider_2__ctor_mFC8D6E2104BE79940C9ADC8E1859B991CD8AFB34_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* SubsystemProvider_1__ctor_m1FA71B1964321737193BC8E0C9C0D64FE79DDCC3_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* SubsystemProvider_1__ctor_m3070FB0F5EDD35A102DFE6DB270CB1423E80A059_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* SubsystemProvider_1__ctor_m3216193D514525815B1785B92B434D1CB6BED267_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* SubsystemProvider_1__ctor_m42AA349CD0B3CDE6407D1BA528122A6C6C8B22EF_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* SubsystemProvider_1__ctor_m679358E7941E7FEBDCED0CC52E860E237B09BDE0_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* SubsystemProvider_1__ctor_m756AF5A05933094284FE3141F40DBAE7DBAE8FE1_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* SubsystemProvider_1__ctor_m775D1DA5795E95D8D1220715C2B041DB989B9B02_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* SubsystemProvider_1__ctor_m83A2BF40051F2545CECFD837C92DF3AB37758AFA_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* SubsystemProvider_1__ctor_m85B436C396E4816D5D62F8595921E532535FA734_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* SubsystemProvider_1__ctor_m987248264A49939ACFFFF0D50F3AAAE526E80B67_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* SubsystemProvider_1__ctor_mC4C72A59ABE142F4F35FE24EFAF666ACF8450690_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* SubsystemProvider_1__ctor_mD86DEB0B4DF879B2C514AFA17DEACAA610EFDD66_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* SubsystemProvider_1__ctor_mDB4B33AED139FADE39F8488116F811DA2F601EAF_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* SubsystemWithProvider_3_OnStart_m025E4FC17E65F6E4F5CCAF97A105B69055BFA72C_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* SubsystemWithProvider_3_OnStart_m9491710090F756991A1C20AA8900B7A605EC1DD8_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* SubsystemWithProvider_3_OnStop_m8EE2F25172A34C63EE5D2C8AF6D8FDA7B312B791_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* SubsystemWithProvider_3_OnStop_mA6831ADA346E703D83E088ED2DCF43B0758B9B43_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* SubsystemWithProvider_3__ctor_m3A4219F4F2F45D2AA4C7EE843B67B609B809C059_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* SubsystemWithProvider_3__ctor_m67FD47729C6247AB68009583EC0102BF76D8F45B_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* SubsystemWithProvider_3__ctor_mD3D1B91DF52028332010B72032C7E8388C99CEA4_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* SubsystemWithProvider_3_get_provider_m036F742F9A0CA88CBD4955C5D1D790474832541F_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* SubsystemWithProvider_3_get_provider_m06A1D4B30D132FBC0CBB3D07D2446A864DE2144F_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* SubsystemWithProvider_3_get_provider_m20316B506B5A09573D369C405120B428801947C9_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* SubsystemWithProvider_3_get_provider_m39A0718D1138A6DA7C4C408956D26C48D2DC8F8E_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* SubsystemWithProvider_3_get_provider_m3CF16A15D858F5FDFDE6A86865C734C33D7B563E_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* SubsystemWithProvider_3_get_provider_m54FA9023920512A3EC6956B1E999FFA426604CD8_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* SubsystemWithProvider_3_get_provider_m6EFFE2CA2C3A415FF287A71E20A4601E8108E2C4_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* SubsystemWithProvider_3_get_provider_m7E5E1736FFDB6FDCC80558C7B5AA637026DFD20C_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* SubsystemWithProvider_3_get_provider_mAEFFAE8CA85C4D0C45621AD2B23F88B767CDECD4_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* SubsystemWithProvider_3_get_provider_mC92DCD08C8EA7888D3AA28D11BA2667499A7AA59_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* SubsystemWithProvider_3_get_provider_mD94067B1AF85FAFB63F37DD477718C6280E8EE0D_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* SubsystemWithProvider_3_get_provider_mE1CD1BFCD049073456FC41A22EB19726E965327D_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* SubsystemWithProvider_3_get_provider_mE2E5F5FDEFCDECF51B39FB65EC6483A69504793C_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* SubsystemWithProvider_3_get_provider_mE54D3EECA8ABAA945923C60D72BF523B3D5189B1_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* SubsystemWithProvider_3_get_subsystemDescriptor_m37072FA7A4F1A2CACCCD955D446491B861FF9E6E_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* SubsystemWithProvider_3_get_subsystemDescriptor_m72A7F9F61ACAEE6E71276F89F0D9521BB07CF29F_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* TrackingSubsystem_4__ctor_m16365F5B18A26301BCC266DB0611B79E1F7BF45A_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* TrackingSubsystem_4__ctor_m2360E7F58254317B2E9650982362DF0A70BAB5E4_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* TrackingSubsystem_4__ctor_m28377E8388C9ACB84F4C762BAC6B2E3014F928B3_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* TrackingSubsystem_4__ctor_m32646D8A91C0431E968D07362F32CCB0B06BA69D_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* TrackingSubsystem_4__ctor_m43E33972537CDF7416C9596A64D27D09A749F0D2_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* TrackingSubsystem_4__ctor_m66B311A47D5E648C66011BA6F376723D0BAB98DE_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* TrackingSubsystem_4__ctor_m8DF67D818E5517081896C05CF8F384D577161D69_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* TrackingSubsystem_4__ctor_mBF63E483B756C84A0068727BDBEC29BBC5182F38_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* TrackingSubsystem_4__ctor_mCDE2C2C9D4E42210819D13563C64582F5F97DA39_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* TrackingSubsystem_4__ctor_mEA3C0400FE095A58F53489AFC1F36B907EE04FBA_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* TrackingSubsystem_4__ctor_mEBA68D2AF3E32AF7F962362371B19DD06C4951AF_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* XRAnchorSubsystem_GetChanges_mA9E2E9974DB9E35A550FEE38B33356141E3AE5F7_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* XRCameraSubsystemDescriptor_Create_mEC826CD90D35D17847339952F5022081EF871033_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* XRCameraSubsystem_set_currentConfiguration_mC95F953BE80DD210302A590EBBF46216FDB0F32D_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* XRCpuImage_OnAsyncConversionComplete_m60DC813F1A2B8A59F993D245683847D933D292A9_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* XRDepthSubsystem_GetPointCloudData_mC82CC38D5B56703EE808D9BD61D19B908C2C2364_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* XREnvironmentProbeSubsystemDescriptor_Create_m64B177418E0330A718E4461D29A11FE8518BB09E_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* XREnvironmentProbeSubsystem_RemoveEnvironmentProbe_m3D02CCF782150963FBE6FB1E67EBB3C6054BA422_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* XREnvironmentProbeSubsystem_TryAddEnvironmentProbe_mDA385F973061D7FFCDF6EBFE9EE0C478D557F8A4_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* XREnvironmentProbeSubsystem_set_automaticPlacementRequested_m15DAC8989A0BBE60B0594548EBDE2640D2878E69_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* XRFaceMesh_Resize_TisInt32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_m786BA056A8C6FDF2F6D3B52D2526981B3BA391F0_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* XRFaceMesh_Resize_TisVector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9_mAD9D1AB3912BD722DBA92C5AE79C177DD69AAFFE_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* XRFaceMesh_Resize_TisVector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E_mAA24CEC7C20C34C26A9E7512608B8930B450C6C0_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* XRFaceSubsystem_GetFaceMesh_m9D239EC1EE36EFC8CC755F469A2470FF5C856BD8_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* XRFaceSubsystem_set_requestedMaximumFaceCount_mBA732F461FFA6C2B68CFECBBEB6E478F8ABB0DBB_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* XRHumanBodySubsystemDescriptor_Create_m2B95524971D41DDAC90B9E194A727C814BAB32C6_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* XRImageTrackingSubsystem_OnStart_mAF567D3768F78146ED8BAC36632AC093E6BF80A2_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* XRImageTrackingSubsystem_set_imageLibrary_m59E1F17C158BF96B79D15189DBA63B89A4C796A6_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* XRObjectTrackingSubsystem_OnStart_mB77ED7DD295528980E011D223BC257725DF63FB5_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* XRObjectTrackingSubsystem_set_library_m79D43E82F0D5AD3B58B152275B3375100D40C32C_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* XROcclusionSubsystemDescriptor_Create_m31FA1D0EDAF351742A97C9E655F069AF8544C852_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* XRPlaneSubsystem_GetBoundary_mE3A06B4C37DB403DC6E5DD45A7E30700C73B3CA3_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* XRReferenceImageLibrary_get_Item_mBA540DAACBCA13289FA41DD2291435CBFE2F00F9_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* XRReferencePointSubsystem_GetChanges_m9F0EC9E0522340CBD75626D185D848CFBFE3F456_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* XRSessionSubsystem_InstallAsync_m173C37A6ED69160C9634E89383D515FC28EF59BF_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeType* Provider_t055C90C34B2BCE8D134DF44C12823E320519168C_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* Provider_t55916B0D2766C320DCA36A0C870BA2FD80F8B6D1_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* Provider_t5B60C630FB68EFEAB6FA2F3D9A732C144003B7FB_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* Provider_tAF87FE3E906FDBF14F06488A1AA5E80400EFE190_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* XRCameraSubsystem_t3B32F6EA8A2E4D23AF240B5D21C34759D2613AC9_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* XREnvironmentProbeSubsystem_t0C60258F565400E7C5AF0E0B7FA933F2BCF83CB6_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* XRHumanBodySubsystem_t71FBF94503DCE781657FA4F362464EA389CD9F2B_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* XROcclusionSubsystem_t7546B929F9B5B6EB13B975FE4DB1F4099EE533B8_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 DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8;
struct ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE;
struct StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A;
struct XRReferenceImageU5BU5D_t9A2F6DD5CC64F74EBA9D563B001CA15802CF3900;
struct XRReferenceObjectU5BU5D_t84152A67B96E14F580770A62448BAC37D9D60E20;
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
// <Module>
struct U3CModuleU3E_t1A5F46CB58C39FA8C3A1BEF72944AB765466DF6C
{
public:
public:
};
// System.Object
// System.Collections.Generic.List`1<System.Object>
struct List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5 : public RuntimeObject
{
public:
// T[] System.Collections.Generic.List`1::_items
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* ____items_1;
// System.Int32 System.Collections.Generic.List`1::_size
int32_t ____size_2;
// System.Int32 System.Collections.Generic.List`1::_version
int32_t ____version_3;
// System.Object System.Collections.Generic.List`1::_syncRoot
RuntimeObject * ____syncRoot_4;
public:
inline static int32_t get_offset_of__items_1() { return static_cast<int32_t>(offsetof(List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5, ____items_1)); }
inline ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* get__items_1() const { return ____items_1; }
inline ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE** get_address_of__items_1() { return &____items_1; }
inline void set__items_1(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* value)
{
____items_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&____items_1), (void*)value);
}
inline static int32_t get_offset_of__size_2() { return static_cast<int32_t>(offsetof(List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5, ____size_2)); }
inline int32_t get__size_2() const { return ____size_2; }
inline int32_t* get_address_of__size_2() { return &____size_2; }
inline void set__size_2(int32_t value)
{
____size_2 = value;
}
inline static int32_t get_offset_of__version_3() { return static_cast<int32_t>(offsetof(List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5, ____version_3)); }
inline int32_t get__version_3() const { return ____version_3; }
inline int32_t* get_address_of__version_3() { return &____version_3; }
inline void set__version_3(int32_t value)
{
____version_3 = value;
}
inline static int32_t get_offset_of__syncRoot_4() { return static_cast<int32_t>(offsetof(List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5, ____syncRoot_4)); }
inline RuntimeObject * get__syncRoot_4() const { return ____syncRoot_4; }
inline RuntimeObject ** get_address_of__syncRoot_4() { return &____syncRoot_4; }
inline void set__syncRoot_4(RuntimeObject * value)
{
____syncRoot_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_4), (void*)value);
}
};
struct List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5_StaticFields
{
public:
// T[] System.Collections.Generic.List`1::_emptyArray
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* ____emptyArray_5;
public:
inline static int32_t get_offset_of__emptyArray_5() { return static_cast<int32_t>(offsetof(List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5_StaticFields, ____emptyArray_5)); }
inline ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* get__emptyArray_5() const { return ____emptyArray_5; }
inline ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE** get_address_of__emptyArray_5() { return &____emptyArray_5; }
inline void set__emptyArray_5(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* value)
{
____emptyArray_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&____emptyArray_5), (void*)value);
}
};
// System.Collections.Generic.List`1<System.String>
struct List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3 : public RuntimeObject
{
public:
// T[] System.Collections.Generic.List`1::_items
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* ____items_1;
// System.Int32 System.Collections.Generic.List`1::_size
int32_t ____size_2;
// System.Int32 System.Collections.Generic.List`1::_version
int32_t ____version_3;
// System.Object System.Collections.Generic.List`1::_syncRoot
RuntimeObject * ____syncRoot_4;
public:
inline static int32_t get_offset_of__items_1() { return static_cast<int32_t>(offsetof(List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3, ____items_1)); }
inline StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* get__items_1() const { return ____items_1; }
inline StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A** get_address_of__items_1() { return &____items_1; }
inline void set__items_1(StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* value)
{
____items_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&____items_1), (void*)value);
}
inline static int32_t get_offset_of__size_2() { return static_cast<int32_t>(offsetof(List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3, ____size_2)); }
inline int32_t get__size_2() const { return ____size_2; }
inline int32_t* get_address_of__size_2() { return &____size_2; }
inline void set__size_2(int32_t value)
{
____size_2 = value;
}
inline static int32_t get_offset_of__version_3() { return static_cast<int32_t>(offsetof(List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3, ____version_3)); }
inline int32_t get__version_3() const { return ____version_3; }
inline int32_t* get_address_of__version_3() { return &____version_3; }
inline void set__version_3(int32_t value)
{
____version_3 = value;
}
inline static int32_t get_offset_of__syncRoot_4() { return static_cast<int32_t>(offsetof(List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3, ____syncRoot_4)); }
inline RuntimeObject * get__syncRoot_4() const { return ____syncRoot_4; }
inline RuntimeObject ** get_address_of__syncRoot_4() { return &____syncRoot_4; }
inline void set__syncRoot_4(RuntimeObject * value)
{
____syncRoot_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_4), (void*)value);
}
};
struct List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3_StaticFields
{
public:
// T[] System.Collections.Generic.List`1::_emptyArray
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* ____emptyArray_5;
public:
inline static int32_t get_offset_of__emptyArray_5() { return static_cast<int32_t>(offsetof(List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3_StaticFields, ____emptyArray_5)); }
inline StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* get__emptyArray_5() const { return ____emptyArray_5; }
inline StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A** get_address_of__emptyArray_5() { return &____emptyArray_5; }
inline void set__emptyArray_5(StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* value)
{
____emptyArray_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&____emptyArray_5), (void*)value);
}
};
// System.Collections.Generic.List`1<UnityEngine.XR.ARSubsystems.XRReferenceImage>
struct List_1_tBFEC44C63782254A7C0F22D20FC51F72002482EC : public RuntimeObject
{
public:
// T[] System.Collections.Generic.List`1::_items
XRReferenceImageU5BU5D_t9A2F6DD5CC64F74EBA9D563B001CA15802CF3900* ____items_1;
// System.Int32 System.Collections.Generic.List`1::_size
int32_t ____size_2;
// System.Int32 System.Collections.Generic.List`1::_version
int32_t ____version_3;
// System.Object System.Collections.Generic.List`1::_syncRoot
RuntimeObject * ____syncRoot_4;
public:
inline static int32_t get_offset_of__items_1() { return static_cast<int32_t>(offsetof(List_1_tBFEC44C63782254A7C0F22D20FC51F72002482EC, ____items_1)); }
inline XRReferenceImageU5BU5D_t9A2F6DD5CC64F74EBA9D563B001CA15802CF3900* get__items_1() const { return ____items_1; }
inline XRReferenceImageU5BU5D_t9A2F6DD5CC64F74EBA9D563B001CA15802CF3900** get_address_of__items_1() { return &____items_1; }
inline void set__items_1(XRReferenceImageU5BU5D_t9A2F6DD5CC64F74EBA9D563B001CA15802CF3900* value)
{
____items_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&____items_1), (void*)value);
}
inline static int32_t get_offset_of__size_2() { return static_cast<int32_t>(offsetof(List_1_tBFEC44C63782254A7C0F22D20FC51F72002482EC, ____size_2)); }
inline int32_t get__size_2() const { return ____size_2; }
inline int32_t* get_address_of__size_2() { return &____size_2; }
inline void set__size_2(int32_t value)
{
____size_2 = value;
}
inline static int32_t get_offset_of__version_3() { return static_cast<int32_t>(offsetof(List_1_tBFEC44C63782254A7C0F22D20FC51F72002482EC, ____version_3)); }
inline int32_t get__version_3() const { return ____version_3; }
inline int32_t* get_address_of__version_3() { return &____version_3; }
inline void set__version_3(int32_t value)
{
____version_3 = value;
}
inline static int32_t get_offset_of__syncRoot_4() { return static_cast<int32_t>(offsetof(List_1_tBFEC44C63782254A7C0F22D20FC51F72002482EC, ____syncRoot_4)); }
inline RuntimeObject * get__syncRoot_4() const { return ____syncRoot_4; }
inline RuntimeObject ** get_address_of__syncRoot_4() { return &____syncRoot_4; }
inline void set__syncRoot_4(RuntimeObject * value)
{
____syncRoot_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_4), (void*)value);
}
};
struct List_1_tBFEC44C63782254A7C0F22D20FC51F72002482EC_StaticFields
{
public:
// T[] System.Collections.Generic.List`1::_emptyArray
XRReferenceImageU5BU5D_t9A2F6DD5CC64F74EBA9D563B001CA15802CF3900* ____emptyArray_5;
public:
inline static int32_t get_offset_of__emptyArray_5() { return static_cast<int32_t>(offsetof(List_1_tBFEC44C63782254A7C0F22D20FC51F72002482EC_StaticFields, ____emptyArray_5)); }
inline XRReferenceImageU5BU5D_t9A2F6DD5CC64F74EBA9D563B001CA15802CF3900* get__emptyArray_5() const { return ____emptyArray_5; }
inline XRReferenceImageU5BU5D_t9A2F6DD5CC64F74EBA9D563B001CA15802CF3900** get_address_of__emptyArray_5() { return &____emptyArray_5; }
inline void set__emptyArray_5(XRReferenceImageU5BU5D_t9A2F6DD5CC64F74EBA9D563B001CA15802CF3900* value)
{
____emptyArray_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&____emptyArray_5), (void*)value);
}
};
// System.Collections.Generic.List`1<UnityEngine.XR.ARSubsystems.XRReferenceObject>
struct List_1_t3A1F09045329A30B2867F24E69EC807BE36BEA9B : public RuntimeObject
{
public:
// T[] System.Collections.Generic.List`1::_items
XRReferenceObjectU5BU5D_t84152A67B96E14F580770A62448BAC37D9D60E20* ____items_1;
// System.Int32 System.Collections.Generic.List`1::_size
int32_t ____size_2;
// System.Int32 System.Collections.Generic.List`1::_version
int32_t ____version_3;
// System.Object System.Collections.Generic.List`1::_syncRoot
RuntimeObject * ____syncRoot_4;
public:
inline static int32_t get_offset_of__items_1() { return static_cast<int32_t>(offsetof(List_1_t3A1F09045329A30B2867F24E69EC807BE36BEA9B, ____items_1)); }
inline XRReferenceObjectU5BU5D_t84152A67B96E14F580770A62448BAC37D9D60E20* get__items_1() const { return ____items_1; }
inline XRReferenceObjectU5BU5D_t84152A67B96E14F580770A62448BAC37D9D60E20** get_address_of__items_1() { return &____items_1; }
inline void set__items_1(XRReferenceObjectU5BU5D_t84152A67B96E14F580770A62448BAC37D9D60E20* value)
{
____items_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&____items_1), (void*)value);
}
inline static int32_t get_offset_of__size_2() { return static_cast<int32_t>(offsetof(List_1_t3A1F09045329A30B2867F24E69EC807BE36BEA9B, ____size_2)); }
inline int32_t get__size_2() const { return ____size_2; }
inline int32_t* get_address_of__size_2() { return &____size_2; }
inline void set__size_2(int32_t value)
{
____size_2 = value;
}
inline static int32_t get_offset_of__version_3() { return static_cast<int32_t>(offsetof(List_1_t3A1F09045329A30B2867F24E69EC807BE36BEA9B, ____version_3)); }
inline int32_t get__version_3() const { return ____version_3; }
inline int32_t* get_address_of__version_3() { return &____version_3; }
inline void set__version_3(int32_t value)
{
____version_3 = value;
}
inline static int32_t get_offset_of__syncRoot_4() { return static_cast<int32_t>(offsetof(List_1_t3A1F09045329A30B2867F24E69EC807BE36BEA9B, ____syncRoot_4)); }
inline RuntimeObject * get__syncRoot_4() const { return ____syncRoot_4; }
inline RuntimeObject ** get_address_of__syncRoot_4() { return &____syncRoot_4; }
inline void set__syncRoot_4(RuntimeObject * value)
{
____syncRoot_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_4), (void*)value);
}
};
struct List_1_t3A1F09045329A30B2867F24E69EC807BE36BEA9B_StaticFields
{
public:
// T[] System.Collections.Generic.List`1::_emptyArray
XRReferenceObjectU5BU5D_t84152A67B96E14F580770A62448BAC37D9D60E20* ____emptyArray_5;
public:
inline static int32_t get_offset_of__emptyArray_5() { return static_cast<int32_t>(offsetof(List_1_t3A1F09045329A30B2867F24E69EC807BE36BEA9B_StaticFields, ____emptyArray_5)); }
inline XRReferenceObjectU5BU5D_t84152A67B96E14F580770A62448BAC37D9D60E20* get__emptyArray_5() const { return ____emptyArray_5; }
inline XRReferenceObjectU5BU5D_t84152A67B96E14F580770A62448BAC37D9D60E20** get_address_of__emptyArray_5() { return &____emptyArray_5; }
inline void set__emptyArray_5(XRReferenceObjectU5BU5D_t84152A67B96E14F580770A62448BAC37D9D60E20* value)
{
____emptyArray_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&____emptyArray_5), (void*)value);
}
};
// System.Collections.Generic.List`1<UnityEngine.XR.ARSubsystems.XRReferenceObjectEntry>
struct List_1_tB23AEDE769BF4EA511C93F224596EF58939F8E5A : public RuntimeObject
{
public:
// T[] System.Collections.Generic.List`1::_items
XRReferenceObjectEntryU5BU5D_t6E3E31B808CFA8DF32ABCB052DBBDC3C85DE3628* ____items_1;
// System.Int32 System.Collections.Generic.List`1::_size
int32_t ____size_2;
// System.Int32 System.Collections.Generic.List`1::_version
int32_t ____version_3;
// System.Object System.Collections.Generic.List`1::_syncRoot
RuntimeObject * ____syncRoot_4;
public:
inline static int32_t get_offset_of__items_1() { return static_cast<int32_t>(offsetof(List_1_tB23AEDE769BF4EA511C93F224596EF58939F8E5A, ____items_1)); }
inline XRReferenceObjectEntryU5BU5D_t6E3E31B808CFA8DF32ABCB052DBBDC3C85DE3628* get__items_1() const { return ____items_1; }
inline XRReferenceObjectEntryU5BU5D_t6E3E31B808CFA8DF32ABCB052DBBDC3C85DE3628** get_address_of__items_1() { return &____items_1; }
inline void set__items_1(XRReferenceObjectEntryU5BU5D_t6E3E31B808CFA8DF32ABCB052DBBDC3C85DE3628* value)
{
____items_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&____items_1), (void*)value);
}
inline static int32_t get_offset_of__size_2() { return static_cast<int32_t>(offsetof(List_1_tB23AEDE769BF4EA511C93F224596EF58939F8E5A, ____size_2)); }
inline int32_t get__size_2() const { return ____size_2; }
inline int32_t* get_address_of__size_2() { return &____size_2; }
inline void set__size_2(int32_t value)
{
____size_2 = value;
}
inline static int32_t get_offset_of__version_3() { return static_cast<int32_t>(offsetof(List_1_tB23AEDE769BF4EA511C93F224596EF58939F8E5A, ____version_3)); }
inline int32_t get__version_3() const { return ____version_3; }
inline int32_t* get_address_of__version_3() { return &____version_3; }
inline void set__version_3(int32_t value)
{
____version_3 = value;
}
inline static int32_t get_offset_of__syncRoot_4() { return static_cast<int32_t>(offsetof(List_1_tB23AEDE769BF4EA511C93F224596EF58939F8E5A, ____syncRoot_4)); }
inline RuntimeObject * get__syncRoot_4() const { return ____syncRoot_4; }
inline RuntimeObject ** get_address_of__syncRoot_4() { return &____syncRoot_4; }
inline void set__syncRoot_4(RuntimeObject * value)
{
____syncRoot_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_4), (void*)value);
}
};
struct List_1_tB23AEDE769BF4EA511C93F224596EF58939F8E5A_StaticFields
{
public:
// T[] System.Collections.Generic.List`1::_emptyArray
XRReferenceObjectEntryU5BU5D_t6E3E31B808CFA8DF32ABCB052DBBDC3C85DE3628* ____emptyArray_5;
public:
inline static int32_t get_offset_of__emptyArray_5() { return static_cast<int32_t>(offsetof(List_1_tB23AEDE769BF4EA511C93F224596EF58939F8E5A_StaticFields, ____emptyArray_5)); }
inline XRReferenceObjectEntryU5BU5D_t6E3E31B808CFA8DF32ABCB052DBBDC3C85DE3628* get__emptyArray_5() const { return ____emptyArray_5; }
inline XRReferenceObjectEntryU5BU5D_t6E3E31B808CFA8DF32ABCB052DBBDC3C85DE3628** get_address_of__emptyArray_5() { return &____emptyArray_5; }
inline void set__emptyArray_5(XRReferenceObjectEntryU5BU5D_t6E3E31B808CFA8DF32ABCB052DBBDC3C85DE3628* value)
{
____emptyArray_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&____emptyArray_5), (void*)value);
}
};
struct Il2CppArrayBounds;
// System.Array
// System.Attribute
struct Attribute_t037CA9D9F3B742C063DB364D2EEBBF9FC5772C71 : public RuntimeObject
{
public:
public:
};
// UnityEngine.XR.ARSubsystems.ConfigurationChooser
struct ConfigurationChooser_t0CCF856A226297A702F306A2217CF17D652E72C4 : public RuntimeObject
{
public:
public:
};
// UnityEngine.CustomYieldInstruction
struct CustomYieldInstruction_t4ED1543FBAA3143362854EB1867B42E5D190A5C7 : public RuntimeObject
{
public:
public:
};
// UnityEngine.XR.ARSubsystems.EnvironmentDepthModeExtension
struct EnvironmentDepthModeExtension_t26B6BCCE5A882D9757276BC71D2E69545E5C9EB0 : public RuntimeObject
{
public:
public:
};
// UnityEngine.XR.ARSubsystems.FeatureExtensions
struct FeatureExtensions_t3AE82EEF9BA5B67267E4A8371D344F93AA983603 : public RuntimeObject
{
public:
public:
};
// UnityEngine.XR.ARSubsystems.GuidUtil
struct GuidUtil_t210FF80E02722FD6681CFBB3BF50329E1DD388CD : public RuntimeObject
{
public:
public:
};
// UnityEngine.XR.ARSubsystems.HashCode
struct HashCode_t04F499E8E1D225853C1B731BE6D80A44C9DD1800 : public RuntimeObject
{
public:
public:
};
// System.Reflection.MemberInfo
struct MemberInfo_t : public RuntimeObject
{
public:
public:
};
// UnityEngine.XR.ARSubsystems.NativeCopyUtility
struct NativeCopyUtility_t537698701837049415442B997E0E9BA15843AE3E : public RuntimeObject
{
public:
public:
};
// UnityEngine.XR.ARSubsystems.RuntimeReferenceImageLibrary
struct RuntimeReferenceImageLibrary_t76072EC5637B1F0F8FD0A1BFD3AEAF954D6F8D6B : public RuntimeObject
{
public:
public:
};
// UnityEngine.XR.ARSubsystems.SegmentationDepthModeExtension
struct SegmentationDepthModeExtension_tBF22E29EC930BAF6B46CE01A57C0426FD209212D : public RuntimeObject
{
public:
public:
};
// UnityEngine.XR.ARSubsystems.SegmentationStencilModeExtension
struct SegmentationStencilModeExtension_t6C2DB2995F909095E9C8957B1BC777992EF60431 : public RuntimeObject
{
public:
public:
};
// UnityEngine.XR.ARSubsystems.SessionAvailabilityExtensions
struct SessionAvailabilityExtensions_tDE27B6B971581EFEB9EADCF90B32C418F1378E50 : public RuntimeObject
{
public:
public:
};
// System.String
struct String_t : public RuntimeObject
{
public:
// System.Int32 System.String::m_stringLength
int32_t ___m_stringLength_0;
// System.Char System.String::m_firstChar
Il2CppChar ___m_firstChar_1;
public:
inline static int32_t get_offset_of_m_stringLength_0() { return static_cast<int32_t>(offsetof(String_t, ___m_stringLength_0)); }
inline int32_t get_m_stringLength_0() const { return ___m_stringLength_0; }
inline int32_t* get_address_of_m_stringLength_0() { return &___m_stringLength_0; }
inline void set_m_stringLength_0(int32_t value)
{
___m_stringLength_0 = value;
}
inline static int32_t get_offset_of_m_firstChar_1() { return static_cast<int32_t>(offsetof(String_t, ___m_firstChar_1)); }
inline Il2CppChar get_m_firstChar_1() const { return ___m_firstChar_1; }
inline Il2CppChar* get_address_of_m_firstChar_1() { return &___m_firstChar_1; }
inline void set_m_firstChar_1(Il2CppChar value)
{
___m_firstChar_1 = value;
}
};
struct String_t_StaticFields
{
public:
// System.String System.String::Empty
String_t* ___Empty_5;
public:
inline static int32_t get_offset_of_Empty_5() { return static_cast<int32_t>(offsetof(String_t_StaticFields, ___Empty_5)); }
inline String_t* get_Empty_5() const { return ___Empty_5; }
inline String_t** get_address_of_Empty_5() { return &___Empty_5; }
inline void set_Empty_5(String_t* value)
{
___Empty_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Empty_5), (void*)value);
}
};
// UnityEngine.SubsystemsImplementation.SubsystemDescriptorWithProvider
struct SubsystemDescriptorWithProvider_t32DD334657CFBA22F2FBA399258B087104A29C3E : public RuntimeObject
{
public:
// System.String UnityEngine.SubsystemsImplementation.SubsystemDescriptorWithProvider::<id>k__BackingField
String_t* ___U3CidU3Ek__BackingField_0;
// System.Type UnityEngine.SubsystemsImplementation.SubsystemDescriptorWithProvider::<providerType>k__BackingField
Type_t * ___U3CproviderTypeU3Ek__BackingField_1;
// System.Type UnityEngine.SubsystemsImplementation.SubsystemDescriptorWithProvider::<subsystemTypeOverride>k__BackingField
Type_t * ___U3CsubsystemTypeOverrideU3Ek__BackingField_2;
public:
inline static int32_t get_offset_of_U3CidU3Ek__BackingField_0() { return static_cast<int32_t>(offsetof(SubsystemDescriptorWithProvider_t32DD334657CFBA22F2FBA399258B087104A29C3E, ___U3CidU3Ek__BackingField_0)); }
inline String_t* get_U3CidU3Ek__BackingField_0() const { return ___U3CidU3Ek__BackingField_0; }
inline String_t** get_address_of_U3CidU3Ek__BackingField_0() { return &___U3CidU3Ek__BackingField_0; }
inline void set_U3CidU3Ek__BackingField_0(String_t* value)
{
___U3CidU3Ek__BackingField_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CidU3Ek__BackingField_0), (void*)value);
}
inline static int32_t get_offset_of_U3CproviderTypeU3Ek__BackingField_1() { return static_cast<int32_t>(offsetof(SubsystemDescriptorWithProvider_t32DD334657CFBA22F2FBA399258B087104A29C3E, ___U3CproviderTypeU3Ek__BackingField_1)); }
inline Type_t * get_U3CproviderTypeU3Ek__BackingField_1() const { return ___U3CproviderTypeU3Ek__BackingField_1; }
inline Type_t ** get_address_of_U3CproviderTypeU3Ek__BackingField_1() { return &___U3CproviderTypeU3Ek__BackingField_1; }
inline void set_U3CproviderTypeU3Ek__BackingField_1(Type_t * value)
{
___U3CproviderTypeU3Ek__BackingField_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CproviderTypeU3Ek__BackingField_1), (void*)value);
}
inline static int32_t get_offset_of_U3CsubsystemTypeOverrideU3Ek__BackingField_2() { return static_cast<int32_t>(offsetof(SubsystemDescriptorWithProvider_t32DD334657CFBA22F2FBA399258B087104A29C3E, ___U3CsubsystemTypeOverrideU3Ek__BackingField_2)); }
inline Type_t * get_U3CsubsystemTypeOverrideU3Ek__BackingField_2() const { return ___U3CsubsystemTypeOverrideU3Ek__BackingField_2; }
inline Type_t ** get_address_of_U3CsubsystemTypeOverrideU3Ek__BackingField_2() { return &___U3CsubsystemTypeOverrideU3Ek__BackingField_2; }
inline void set_U3CsubsystemTypeOverrideU3Ek__BackingField_2(Type_t * value)
{
___U3CsubsystemTypeOverrideU3Ek__BackingField_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CsubsystemTypeOverrideU3Ek__BackingField_2), (void*)value);
}
};
// UnityEngine.SubsystemsImplementation.SubsystemProvider
struct SubsystemProvider_t39E89FB8DB1EF1D2B0AF93796AEDB19D76A665F9 : public RuntimeObject
{
public:
// System.Boolean UnityEngine.SubsystemsImplementation.SubsystemProvider::m_Running
bool ___m_Running_0;
public:
inline static int32_t get_offset_of_m_Running_0() { return static_cast<int32_t>(offsetof(SubsystemProvider_t39E89FB8DB1EF1D2B0AF93796AEDB19D76A665F9, ___m_Running_0)); }
inline bool get_m_Running_0() const { return ___m_Running_0; }
inline bool* get_address_of_m_Running_0() { return &___m_Running_0; }
inline void set_m_Running_0(bool value)
{
___m_Running_0 = value;
}
};
// UnityEngine.SubsystemsImplementation.SubsystemWithProvider
struct SubsystemWithProvider_t1C1868CF8676F5596C1AD20A7CE69BDF7C7DE73E : public RuntimeObject
{
public:
// System.Boolean UnityEngine.SubsystemsImplementation.SubsystemWithProvider::<running>k__BackingField
bool ___U3CrunningU3Ek__BackingField_0;
// UnityEngine.SubsystemsImplementation.SubsystemProvider UnityEngine.SubsystemsImplementation.SubsystemWithProvider::<providerBase>k__BackingField
SubsystemProvider_t39E89FB8DB1EF1D2B0AF93796AEDB19D76A665F9 * ___U3CproviderBaseU3Ek__BackingField_1;
public:
inline static int32_t get_offset_of_U3CrunningU3Ek__BackingField_0() { return static_cast<int32_t>(offsetof(SubsystemWithProvider_t1C1868CF8676F5596C1AD20A7CE69BDF7C7DE73E, ___U3CrunningU3Ek__BackingField_0)); }
inline bool get_U3CrunningU3Ek__BackingField_0() const { return ___U3CrunningU3Ek__BackingField_0; }
inline bool* get_address_of_U3CrunningU3Ek__BackingField_0() { return &___U3CrunningU3Ek__BackingField_0; }
inline void set_U3CrunningU3Ek__BackingField_0(bool value)
{
___U3CrunningU3Ek__BackingField_0 = value;
}
inline static int32_t get_offset_of_U3CproviderBaseU3Ek__BackingField_1() { return static_cast<int32_t>(offsetof(SubsystemWithProvider_t1C1868CF8676F5596C1AD20A7CE69BDF7C7DE73E, ___U3CproviderBaseU3Ek__BackingField_1)); }
inline SubsystemProvider_t39E89FB8DB1EF1D2B0AF93796AEDB19D76A665F9 * get_U3CproviderBaseU3Ek__BackingField_1() const { return ___U3CproviderBaseU3Ek__BackingField_1; }
inline SubsystemProvider_t39E89FB8DB1EF1D2B0AF93796AEDB19D76A665F9 ** get_address_of_U3CproviderBaseU3Ek__BackingField_1() { return &___U3CproviderBaseU3Ek__BackingField_1; }
inline void set_U3CproviderBaseU3Ek__BackingField_1(SubsystemProvider_t39E89FB8DB1EF1D2B0AF93796AEDB19D76A665F9 * value)
{
___U3CproviderBaseU3Ek__BackingField_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CproviderBaseU3Ek__BackingField_1), (void*)value);
}
};
// System.ValueType
struct ValueType_tDBF999C1B75C48C68621878250DBF6CDBCF51E52 : public RuntimeObject
{
public:
public:
};
// Native definition for P/Invoke marshalling of System.ValueType
struct ValueType_tDBF999C1B75C48C68621878250DBF6CDBCF51E52_marshaled_pinvoke
{
};
// Native definition for COM marshalling of System.ValueType
struct ValueType_tDBF999C1B75C48C68621878250DBF6CDBCF51E52_marshaled_com
{
};
// UnityEngine.XR.ARSubsystems.XRCpuImage/Api
struct Api_t7C92F00C6416A2C636A44AAC833C3773C567DC3E : public RuntimeObject
{
public:
public:
};
// Unity.Collections.NativeSlice`1<System.Byte>
struct NativeSlice_1_tA05D3BC7EB042685CBFD3369ECB6140D114C911B
{
public:
// System.Byte* Unity.Collections.NativeSlice`1::m_Buffer
uint8_t* ___m_Buffer_0;
// System.Int32 Unity.Collections.NativeSlice`1::m_Stride
int32_t ___m_Stride_1;
// System.Int32 Unity.Collections.NativeSlice`1::m_Length
int32_t ___m_Length_2;
public:
inline static int32_t get_offset_of_m_Buffer_0() { return static_cast<int32_t>(offsetof(NativeSlice_1_tA05D3BC7EB042685CBFD3369ECB6140D114C911B, ___m_Buffer_0)); }
inline uint8_t* get_m_Buffer_0() const { return ___m_Buffer_0; }
inline uint8_t** get_address_of_m_Buffer_0() { return &___m_Buffer_0; }
inline void set_m_Buffer_0(uint8_t* value)
{
___m_Buffer_0 = value;
}
inline static int32_t get_offset_of_m_Stride_1() { return static_cast<int32_t>(offsetof(NativeSlice_1_tA05D3BC7EB042685CBFD3369ECB6140D114C911B, ___m_Stride_1)); }
inline int32_t get_m_Stride_1() const { return ___m_Stride_1; }
inline int32_t* get_address_of_m_Stride_1() { return &___m_Stride_1; }
inline void set_m_Stride_1(int32_t value)
{
___m_Stride_1 = value;
}
inline static int32_t get_offset_of_m_Length_2() { return static_cast<int32_t>(offsetof(NativeSlice_1_tA05D3BC7EB042685CBFD3369ECB6140D114C911B, ___m_Length_2)); }
inline int32_t get_m_Length_2() const { return ___m_Length_2; }
inline int32_t* get_address_of_m_Length_2() { return &___m_Length_2; }
inline void set_m_Length_2(int32_t value)
{
___m_Length_2 = value;
}
};
// Unity.Collections.NativeSlice`1<UnityEngine.XR.ARSubsystems.ConfigurationDescriptor>
struct NativeSlice_1_tEFBDB61DC6CB8E764B0E92727E8B9EA61662F8F2
{
public:
// System.Byte* Unity.Collections.NativeSlice`1::m_Buffer
uint8_t* ___m_Buffer_0;
// System.Int32 Unity.Collections.NativeSlice`1::m_Stride
int32_t ___m_Stride_1;
// System.Int32 Unity.Collections.NativeSlice`1::m_Length
int32_t ___m_Length_2;
public:
inline static int32_t get_offset_of_m_Buffer_0() { return static_cast<int32_t>(offsetof(NativeSlice_1_tEFBDB61DC6CB8E764B0E92727E8B9EA61662F8F2, ___m_Buffer_0)); }
inline uint8_t* get_m_Buffer_0() const { return ___m_Buffer_0; }
inline uint8_t** get_address_of_m_Buffer_0() { return &___m_Buffer_0; }
inline void set_m_Buffer_0(uint8_t* value)
{
___m_Buffer_0 = value;
}
inline static int32_t get_offset_of_m_Stride_1() { return static_cast<int32_t>(offsetof(NativeSlice_1_tEFBDB61DC6CB8E764B0E92727E8B9EA61662F8F2, ___m_Stride_1)); }
inline int32_t get_m_Stride_1() const { return ___m_Stride_1; }
inline int32_t* get_address_of_m_Stride_1() { return &___m_Stride_1; }
inline void set_m_Stride_1(int32_t value)
{
___m_Stride_1 = value;
}
inline static int32_t get_offset_of_m_Length_2() { return static_cast<int32_t>(offsetof(NativeSlice_1_tEFBDB61DC6CB8E764B0E92727E8B9EA61662F8F2, ___m_Length_2)); }
inline int32_t get_m_Length_2() const { return ___m_Length_2; }
inline int32_t* get_address_of_m_Length_2() { return &___m_Length_2; }
inline void set_m_Length_2(int32_t value)
{
___m_Length_2 = value;
}
};
// System.Nullable`1<System.Int32>
struct Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103
{
public:
// T System.Nullable`1::value
int32_t ___value_0;
// System.Boolean System.Nullable`1::has_value
bool ___has_value_1;
public:
inline static int32_t get_offset_of_value_0() { return static_cast<int32_t>(offsetof(Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103, ___value_0)); }
inline int32_t get_value_0() const { return ___value_0; }
inline int32_t* get_address_of_value_0() { return &___value_0; }
inline void set_value_0(int32_t value)
{
___value_0 = value;
}
inline static int32_t get_offset_of_has_value_1() { return static_cast<int32_t>(offsetof(Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103, ___has_value_1)); }
inline bool get_has_value_1() const { return ___has_value_1; }
inline bool* get_address_of_has_value_1() { return &___has_value_1; }
inline void set_has_value_1(bool value)
{
___has_value_1 = value;
}
};
// UnityEngine.SubsystemsImplementation.SubsystemDescriptorWithProvider`2<UnityEngine.XR.ARSubsystems.XRAnchorSubsystem,UnityEngine.XR.ARSubsystems.XRAnchorSubsystem/Provider>
struct SubsystemDescriptorWithProvider_2_t0A7F13BEDD4EC8DFDD5AEC7D5171B22F3D852CE5 : public SubsystemDescriptorWithProvider_t32DD334657CFBA22F2FBA399258B087104A29C3E
{
public:
public:
};
// UnityEngine.SubsystemsImplementation.SubsystemDescriptorWithProvider`2<UnityEngine.XR.ARSubsystems.XRCameraSubsystem,UnityEngine.XR.ARSubsystems.XRCameraSubsystem/Provider>
struct SubsystemDescriptorWithProvider_2_tA9FA485739D1F05136E95B57BC5FC580309C9038 : public SubsystemDescriptorWithProvider_t32DD334657CFBA22F2FBA399258B087104A29C3E
{
public:
public:
};
// UnityEngine.SubsystemsImplementation.SubsystemDescriptorWithProvider`2<UnityEngine.XR.ARSubsystems.XRDepthSubsystem,UnityEngine.XR.ARSubsystems.XRDepthSubsystem/Provider>
struct SubsystemDescriptorWithProvider_2_t977F6FA0CAD110C500F658A35F19E5D5301AD0BC : public SubsystemDescriptorWithProvider_t32DD334657CFBA22F2FBA399258B087104A29C3E
{
public:
public:
};
// UnityEngine.SubsystemsImplementation.SubsystemDescriptorWithProvider`2<UnityEngine.XR.ARSubsystems.XREnvironmentProbeSubsystem,UnityEngine.XR.ARSubsystems.XREnvironmentProbeSubsystem/Provider>
struct SubsystemDescriptorWithProvider_2_t66BB4225DD47C0B6DF8312AEF1CDB8DB4CB729D9 : public SubsystemDescriptorWithProvider_t32DD334657CFBA22F2FBA399258B087104A29C3E
{
public:
public:
};
// UnityEngine.SubsystemsImplementation.SubsystemDescriptorWithProvider`2<UnityEngine.XR.ARSubsystems.XRFaceSubsystem,UnityEngine.XR.ARSubsystems.XRFaceSubsystem/Provider>
struct SubsystemDescriptorWithProvider_2_tB12E064D6020E2F12266EBEB553796258028452B : public SubsystemDescriptorWithProvider_t32DD334657CFBA22F2FBA399258B087104A29C3E
{
public:
public:
};
// UnityEngine.SubsystemsImplementation.SubsystemDescriptorWithProvider`2<UnityEngine.XR.ARSubsystems.XRHumanBodySubsystem,UnityEngine.XR.ARSubsystems.XRHumanBodySubsystem/Provider>
struct SubsystemDescriptorWithProvider_2_t0BF07E59C6A0B8ACC38BF74CC2BC483D05AE541D : public SubsystemDescriptorWithProvider_t32DD334657CFBA22F2FBA399258B087104A29C3E
{
public:
public:
};
// UnityEngine.SubsystemsImplementation.SubsystemDescriptorWithProvider`2<UnityEngine.XR.ARSubsystems.XRImageTrackingSubsystem,UnityEngine.XR.ARSubsystems.XRImageTrackingSubsystem/Provider>
struct SubsystemDescriptorWithProvider_2_tDB11EA61A7EEC9B491CE74FAFEDB41D9F00B7B34 : public SubsystemDescriptorWithProvider_t32DD334657CFBA22F2FBA399258B087104A29C3E
{
public:
public:
};
// UnityEngine.SubsystemsImplementation.SubsystemDescriptorWithProvider`2<UnityEngine.XR.ARSubsystems.XRObjectTrackingSubsystem,UnityEngine.XR.ARSubsystems.XRObjectTrackingSubsystem/Provider>
struct SubsystemDescriptorWithProvider_2_tB30A449BCFE0FA82C8183709FCA73609BEF8497F : public SubsystemDescriptorWithProvider_t32DD334657CFBA22F2FBA399258B087104A29C3E
{
public:
public:
};
// UnityEngine.SubsystemsImplementation.SubsystemDescriptorWithProvider`2<UnityEngine.XR.ARSubsystems.XROcclusionSubsystem,UnityEngine.XR.ARSubsystems.XROcclusionSubsystem/Provider>
struct SubsystemDescriptorWithProvider_2_t62816A265C3833F4CF714035B6683894F074039D : public SubsystemDescriptorWithProvider_t32DD334657CFBA22F2FBA399258B087104A29C3E
{
public:
public:
};
// UnityEngine.SubsystemsImplementation.SubsystemDescriptorWithProvider`2<UnityEngine.XR.ARSubsystems.XRParticipantSubsystem,UnityEngine.XR.ARSubsystems.XRParticipantSubsystem/Provider>
struct SubsystemDescriptorWithProvider_2_t43C05E9C3928E04822F2DA791FFAC4C140DF10A5 : public SubsystemDescriptorWithProvider_t32DD334657CFBA22F2FBA399258B087104A29C3E
{
public:
public:
};
// UnityEngine.SubsystemsImplementation.SubsystemDescriptorWithProvider`2<UnityEngine.XR.ARSubsystems.XRPlaneSubsystem,UnityEngine.XR.ARSubsystems.XRPlaneSubsystem/Provider>
struct SubsystemDescriptorWithProvider_2_t389082A83361A00577FB12B1BFEFA4439DBEAA69 : public SubsystemDescriptorWithProvider_t32DD334657CFBA22F2FBA399258B087104A29C3E
{
public:
public:
};
// UnityEngine.SubsystemsImplementation.SubsystemDescriptorWithProvider`2<UnityEngine.XR.ARSubsystems.XRRaycastSubsystem,UnityEngine.XR.ARSubsystems.XRRaycastSubsystem/Provider>
struct SubsystemDescriptorWithProvider_2_t0E1C52F3F099638F0EFF9E03352A814E50092E22 : public SubsystemDescriptorWithProvider_t32DD334657CFBA22F2FBA399258B087104A29C3E
{
public:
public:
};
// UnityEngine.SubsystemsImplementation.SubsystemDescriptorWithProvider`2<UnityEngine.XR.ARSubsystems.XRReferencePointSubsystem,UnityEngine.XR.ARSubsystems.XRReferencePointSubsystem/Provider>
struct SubsystemDescriptorWithProvider_2_t6B33D56713F4B67214F93287AFE9CF3125A6CD6C : public SubsystemDescriptorWithProvider_t32DD334657CFBA22F2FBA399258B087104A29C3E
{
public:
public:
};
// UnityEngine.SubsystemsImplementation.SubsystemDescriptorWithProvider`2<UnityEngine.XR.ARSubsystems.XRSessionSubsystem,UnityEngine.XR.ARSubsystems.XRSessionSubsystem/Provider>
struct SubsystemDescriptorWithProvider_2_tE9888364F17DF110619D7238068EB1EC98053AE5 : public SubsystemDescriptorWithProvider_t32DD334657CFBA22F2FBA399258B087104A29C3E
{
public:
public:
};
// UnityEngine.SubsystemsImplementation.SubsystemProvider`1<UnityEngine.XR.ARSubsystems.XRAnchorSubsystem>
struct SubsystemProvider_1_t302358330269847780327C2298A4FFA7D79AF2BF : public SubsystemProvider_t39E89FB8DB1EF1D2B0AF93796AEDB19D76A665F9
{
public:
public:
};
// UnityEngine.SubsystemsImplementation.SubsystemProvider`1<UnityEngine.XR.ARSubsystems.XRCameraSubsystem>
struct SubsystemProvider_1_t3B6396AEE76B5D8268802608E3593AA3D48DB307 : public SubsystemProvider_t39E89FB8DB1EF1D2B0AF93796AEDB19D76A665F9
{
public:
public:
};
// UnityEngine.SubsystemsImplementation.SubsystemProvider`1<UnityEngine.XR.ARSubsystems.XRDepthSubsystem>
struct SubsystemProvider_1_tBB539901FE99992CAA10A1EFDFA610E048498E98 : public SubsystemProvider_t39E89FB8DB1EF1D2B0AF93796AEDB19D76A665F9
{
public:
public:
};
// UnityEngine.SubsystemsImplementation.SubsystemProvider`1<UnityEngine.XR.ARSubsystems.XREnvironmentProbeSubsystem>
struct SubsystemProvider_1_tC3DB99A11F9F3210CE2ABA9FE09C127C5B13FF80 : public SubsystemProvider_t39E89FB8DB1EF1D2B0AF93796AEDB19D76A665F9
{
public:
public:
};
// UnityEngine.SubsystemsImplementation.SubsystemProvider`1<UnityEngine.XR.ARSubsystems.XRFaceSubsystem>
struct SubsystemProvider_1_t23EADEE126E953AEBF796C02B50539998EA56B78 : public SubsystemProvider_t39E89FB8DB1EF1D2B0AF93796AEDB19D76A665F9
{
public:
public:
};
// UnityEngine.SubsystemsImplementation.SubsystemProvider`1<UnityEngine.XR.ARSubsystems.XRHumanBodySubsystem>
struct SubsystemProvider_1_tBF37BFFB47314B7D87E24F4C4903C90930C0302C : public SubsystemProvider_t39E89FB8DB1EF1D2B0AF93796AEDB19D76A665F9
{
public:
public:
};
// UnityEngine.SubsystemsImplementation.SubsystemProvider`1<UnityEngine.XR.ARSubsystems.XRImageTrackingSubsystem>
struct SubsystemProvider_1_t3086BC462E1384FBB8137E64FA6C513FC002E440 : public SubsystemProvider_t39E89FB8DB1EF1D2B0AF93796AEDB19D76A665F9
{
public:
public:
};
// UnityEngine.SubsystemsImplementation.SubsystemProvider`1<UnityEngine.XR.ARSubsystems.XRObjectTrackingSubsystem>
struct SubsystemProvider_1_t71FE677A1A2F32123FE4C7868D5943892028AE12 : public SubsystemProvider_t39E89FB8DB1EF1D2B0AF93796AEDB19D76A665F9
{
public:
public:
};
// UnityEngine.SubsystemsImplementation.SubsystemProvider`1<UnityEngine.XR.ARSubsystems.XROcclusionSubsystem>
struct SubsystemProvider_1_t57D5C398A7A30AC3C3674CA126FAE612BC00F597 : public SubsystemProvider_t39E89FB8DB1EF1D2B0AF93796AEDB19D76A665F9
{
public:
public:
};
// UnityEngine.SubsystemsImplementation.SubsystemProvider`1<UnityEngine.XR.ARSubsystems.XRParticipantSubsystem>
struct SubsystemProvider_1_t3D6D4D936F16F3264F75D1BAB46A4A398F18F204 : public SubsystemProvider_t39E89FB8DB1EF1D2B0AF93796AEDB19D76A665F9
{
public:
public:
};
// UnityEngine.SubsystemsImplementation.SubsystemProvider`1<UnityEngine.XR.ARSubsystems.XRPlaneSubsystem>
struct SubsystemProvider_1_tF2F3B0C041BDD07A00CD49B25AE6016B61F24816 : public SubsystemProvider_t39E89FB8DB1EF1D2B0AF93796AEDB19D76A665F9
{
public:
public:
};
// UnityEngine.SubsystemsImplementation.SubsystemProvider`1<UnityEngine.XR.ARSubsystems.XRRaycastSubsystem>
struct SubsystemProvider_1_t7ACBE98539B067B19E2D5BCC2B852277F4A38875 : public SubsystemProvider_t39E89FB8DB1EF1D2B0AF93796AEDB19D76A665F9
{
public:
public:
};
// UnityEngine.SubsystemsImplementation.SubsystemProvider`1<UnityEngine.XR.ARSubsystems.XRReferencePointSubsystem>
struct SubsystemProvider_1_tA41ABDAA9644A18E81CC750DE7DDEA8EB6088742 : public SubsystemProvider_t39E89FB8DB1EF1D2B0AF93796AEDB19D76A665F9
{
public:
public:
};
// UnityEngine.SubsystemsImplementation.SubsystemProvider`1<UnityEngine.XR.ARSubsystems.XRSessionSubsystem>
struct SubsystemProvider_1_tFA56F133FD9BCE90A1C4C7D15FFE2571963D8DE4 : public SubsystemProvider_t39E89FB8DB1EF1D2B0AF93796AEDB19D76A665F9
{
public:
public:
};
// UnityEngine.SubsystemsImplementation.SubsystemWithProvider`3<System.Object,System.Object,System.Object>
struct SubsystemWithProvider_3_t80ABC03E4A5E84C63AB7C26719F2C5CA1FAA7EC2 : public SubsystemWithProvider_t1C1868CF8676F5596C1AD20A7CE69BDF7C7DE73E
{
public:
// TSubsystemDescriptor UnityEngine.SubsystemsImplementation.SubsystemWithProvider`3::<subsystemDescriptor>k__BackingField
RuntimeObject * ___U3CsubsystemDescriptorU3Ek__BackingField_2;
// TProvider UnityEngine.SubsystemsImplementation.SubsystemWithProvider`3::<provider>k__BackingField
RuntimeObject * ___U3CproviderU3Ek__BackingField_3;
public:
inline static int32_t get_offset_of_U3CsubsystemDescriptorU3Ek__BackingField_2() { return static_cast<int32_t>(offsetof(SubsystemWithProvider_3_t80ABC03E4A5E84C63AB7C26719F2C5CA1FAA7EC2, ___U3CsubsystemDescriptorU3Ek__BackingField_2)); }
inline RuntimeObject * get_U3CsubsystemDescriptorU3Ek__BackingField_2() const { return ___U3CsubsystemDescriptorU3Ek__BackingField_2; }
inline RuntimeObject ** get_address_of_U3CsubsystemDescriptorU3Ek__BackingField_2() { return &___U3CsubsystemDescriptorU3Ek__BackingField_2; }
inline void set_U3CsubsystemDescriptorU3Ek__BackingField_2(RuntimeObject * value)
{
___U3CsubsystemDescriptorU3Ek__BackingField_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CsubsystemDescriptorU3Ek__BackingField_2), (void*)value);
}
inline static int32_t get_offset_of_U3CproviderU3Ek__BackingField_3() { return static_cast<int32_t>(offsetof(SubsystemWithProvider_3_t80ABC03E4A5E84C63AB7C26719F2C5CA1FAA7EC2, ___U3CproviderU3Ek__BackingField_3)); }
inline RuntimeObject * get_U3CproviderU3Ek__BackingField_3() const { return ___U3CproviderU3Ek__BackingField_3; }
inline RuntimeObject ** get_address_of_U3CproviderU3Ek__BackingField_3() { return &___U3CproviderU3Ek__BackingField_3; }
inline void set_U3CproviderU3Ek__BackingField_3(RuntimeObject * value)
{
___U3CproviderU3Ek__BackingField_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CproviderU3Ek__BackingField_3), (void*)value);
}
};
// UnityEngine.SubsystemsImplementation.SubsystemWithProvider`3<UnityEngine.XR.ARSubsystems.XRAnchorSubsystem,UnityEngine.XR.ARSubsystems.XRAnchorSubsystemDescriptor,UnityEngine.XR.ARSubsystems.XRAnchorSubsystem/Provider>
struct SubsystemWithProvider_3_tD91EB2F57F19DA2CDB9A5E0011978CA1EA351BA2 : public SubsystemWithProvider_t1C1868CF8676F5596C1AD20A7CE69BDF7C7DE73E
{
public:
// TSubsystemDescriptor UnityEngine.SubsystemsImplementation.SubsystemWithProvider`3::<subsystemDescriptor>k__BackingField
XRAnchorSubsystemDescriptor_t3BD7F9922EF5C04185D59349C76D625BC1E44E3B * ___U3CsubsystemDescriptorU3Ek__BackingField_2;
// TProvider UnityEngine.SubsystemsImplementation.SubsystemWithProvider`3::<provider>k__BackingField
Provider_t9F286D20EB73EBBA4B6E7203C7A9051BE673C2E2 * ___U3CproviderU3Ek__BackingField_3;
public:
inline static int32_t get_offset_of_U3CsubsystemDescriptorU3Ek__BackingField_2() { return static_cast<int32_t>(offsetof(SubsystemWithProvider_3_tD91EB2F57F19DA2CDB9A5E0011978CA1EA351BA2, ___U3CsubsystemDescriptorU3Ek__BackingField_2)); }
inline XRAnchorSubsystemDescriptor_t3BD7F9922EF5C04185D59349C76D625BC1E44E3B * get_U3CsubsystemDescriptorU3Ek__BackingField_2() const { return ___U3CsubsystemDescriptorU3Ek__BackingField_2; }
inline XRAnchorSubsystemDescriptor_t3BD7F9922EF5C04185D59349C76D625BC1E44E3B ** get_address_of_U3CsubsystemDescriptorU3Ek__BackingField_2() { return &___U3CsubsystemDescriptorU3Ek__BackingField_2; }
inline void set_U3CsubsystemDescriptorU3Ek__BackingField_2(XRAnchorSubsystemDescriptor_t3BD7F9922EF5C04185D59349C76D625BC1E44E3B * value)
{
___U3CsubsystemDescriptorU3Ek__BackingField_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CsubsystemDescriptorU3Ek__BackingField_2), (void*)value);
}
inline static int32_t get_offset_of_U3CproviderU3Ek__BackingField_3() { return static_cast<int32_t>(offsetof(SubsystemWithProvider_3_tD91EB2F57F19DA2CDB9A5E0011978CA1EA351BA2, ___U3CproviderU3Ek__BackingField_3)); }
inline Provider_t9F286D20EB73EBBA4B6E7203C7A9051BE673C2E2 * get_U3CproviderU3Ek__BackingField_3() const { return ___U3CproviderU3Ek__BackingField_3; }
inline Provider_t9F286D20EB73EBBA4B6E7203C7A9051BE673C2E2 ** get_address_of_U3CproviderU3Ek__BackingField_3() { return &___U3CproviderU3Ek__BackingField_3; }
inline void set_U3CproviderU3Ek__BackingField_3(Provider_t9F286D20EB73EBBA4B6E7203C7A9051BE673C2E2 * value)
{
___U3CproviderU3Ek__BackingField_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CproviderU3Ek__BackingField_3), (void*)value);
}
};
// UnityEngine.SubsystemsImplementation.SubsystemWithProvider`3<UnityEngine.XR.ARSubsystems.XRCameraSubsystem,UnityEngine.XR.ARSubsystems.XRCameraSubsystemDescriptor,UnityEngine.XR.ARSubsystems.XRCameraSubsystem/Provider>
struct SubsystemWithProvider_3_tA938665692EBC0CA746A276F8413E462E8930FD4 : public SubsystemWithProvider_t1C1868CF8676F5596C1AD20A7CE69BDF7C7DE73E
{
public:
// TSubsystemDescriptor UnityEngine.SubsystemsImplementation.SubsystemWithProvider`3::<subsystemDescriptor>k__BackingField
XRCameraSubsystemDescriptor_t1F8A45C69031E2981B1863518C43793D26E2C5E5 * ___U3CsubsystemDescriptorU3Ek__BackingField_2;
// TProvider UnityEngine.SubsystemsImplementation.SubsystemWithProvider`3::<provider>k__BackingField
Provider_t55916B0D2766C320DCA36A0C870BA2FD80F8B6D1 * ___U3CproviderU3Ek__BackingField_3;
public:
inline static int32_t get_offset_of_U3CsubsystemDescriptorU3Ek__BackingField_2() { return static_cast<int32_t>(offsetof(SubsystemWithProvider_3_tA938665692EBC0CA746A276F8413E462E8930FD4, ___U3CsubsystemDescriptorU3Ek__BackingField_2)); }
inline XRCameraSubsystemDescriptor_t1F8A45C69031E2981B1863518C43793D26E2C5E5 * get_U3CsubsystemDescriptorU3Ek__BackingField_2() const { return ___U3CsubsystemDescriptorU3Ek__BackingField_2; }
inline XRCameraSubsystemDescriptor_t1F8A45C69031E2981B1863518C43793D26E2C5E5 ** get_address_of_U3CsubsystemDescriptorU3Ek__BackingField_2() { return &___U3CsubsystemDescriptorU3Ek__BackingField_2; }
inline void set_U3CsubsystemDescriptorU3Ek__BackingField_2(XRCameraSubsystemDescriptor_t1F8A45C69031E2981B1863518C43793D26E2C5E5 * value)
{
___U3CsubsystemDescriptorU3Ek__BackingField_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CsubsystemDescriptorU3Ek__BackingField_2), (void*)value);
}
inline static int32_t get_offset_of_U3CproviderU3Ek__BackingField_3() { return static_cast<int32_t>(offsetof(SubsystemWithProvider_3_tA938665692EBC0CA746A276F8413E462E8930FD4, ___U3CproviderU3Ek__BackingField_3)); }
inline Provider_t55916B0D2766C320DCA36A0C870BA2FD80F8B6D1 * get_U3CproviderU3Ek__BackingField_3() const { return ___U3CproviderU3Ek__BackingField_3; }
inline Provider_t55916B0D2766C320DCA36A0C870BA2FD80F8B6D1 ** get_address_of_U3CproviderU3Ek__BackingField_3() { return &___U3CproviderU3Ek__BackingField_3; }
inline void set_U3CproviderU3Ek__BackingField_3(Provider_t55916B0D2766C320DCA36A0C870BA2FD80F8B6D1 * value)
{
___U3CproviderU3Ek__BackingField_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CproviderU3Ek__BackingField_3), (void*)value);
}
};
// UnityEngine.SubsystemsImplementation.SubsystemWithProvider`3<UnityEngine.XR.ARSubsystems.XRDepthSubsystem,UnityEngine.XR.ARSubsystems.XRDepthSubsystemDescriptor,UnityEngine.XR.ARSubsystems.XRDepthSubsystem/Provider>
struct SubsystemWithProvider_3_tD436D6BE4AA164ED727D09EFDE50FF8DCAA50D98 : public SubsystemWithProvider_t1C1868CF8676F5596C1AD20A7CE69BDF7C7DE73E
{
public:
// TSubsystemDescriptor UnityEngine.SubsystemsImplementation.SubsystemWithProvider`3::<subsystemDescriptor>k__BackingField
XRDepthSubsystemDescriptor_t745DBB7D313FB52F756E0B7AA993FBBC26B412C2 * ___U3CsubsystemDescriptorU3Ek__BackingField_2;
// TProvider UnityEngine.SubsystemsImplementation.SubsystemWithProvider`3::<provider>k__BackingField
Provider_t8E88C17A70269CD3E96909AFCCA952AAA7DEC0B6 * ___U3CproviderU3Ek__BackingField_3;
public:
inline static int32_t get_offset_of_U3CsubsystemDescriptorU3Ek__BackingField_2() { return static_cast<int32_t>(offsetof(SubsystemWithProvider_3_tD436D6BE4AA164ED727D09EFDE50FF8DCAA50D98, ___U3CsubsystemDescriptorU3Ek__BackingField_2)); }
inline XRDepthSubsystemDescriptor_t745DBB7D313FB52F756E0B7AA993FBBC26B412C2 * get_U3CsubsystemDescriptorU3Ek__BackingField_2() const { return ___U3CsubsystemDescriptorU3Ek__BackingField_2; }
inline XRDepthSubsystemDescriptor_t745DBB7D313FB52F756E0B7AA993FBBC26B412C2 ** get_address_of_U3CsubsystemDescriptorU3Ek__BackingField_2() { return &___U3CsubsystemDescriptorU3Ek__BackingField_2; }
inline void set_U3CsubsystemDescriptorU3Ek__BackingField_2(XRDepthSubsystemDescriptor_t745DBB7D313FB52F756E0B7AA993FBBC26B412C2 * value)
{
___U3CsubsystemDescriptorU3Ek__BackingField_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CsubsystemDescriptorU3Ek__BackingField_2), (void*)value);
}
inline static int32_t get_offset_of_U3CproviderU3Ek__BackingField_3() { return static_cast<int32_t>(offsetof(SubsystemWithProvider_3_tD436D6BE4AA164ED727D09EFDE50FF8DCAA50D98, ___U3CproviderU3Ek__BackingField_3)); }
inline Provider_t8E88C17A70269CD3E96909AFCCA952AAA7DEC0B6 * get_U3CproviderU3Ek__BackingField_3() const { return ___U3CproviderU3Ek__BackingField_3; }
inline Provider_t8E88C17A70269CD3E96909AFCCA952AAA7DEC0B6 ** get_address_of_U3CproviderU3Ek__BackingField_3() { return &___U3CproviderU3Ek__BackingField_3; }
inline void set_U3CproviderU3Ek__BackingField_3(Provider_t8E88C17A70269CD3E96909AFCCA952AAA7DEC0B6 * value)
{
___U3CproviderU3Ek__BackingField_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CproviderU3Ek__BackingField_3), (void*)value);
}
};
// UnityEngine.SubsystemsImplementation.SubsystemWithProvider`3<UnityEngine.XR.ARSubsystems.XREnvironmentProbeSubsystem,UnityEngine.XR.ARSubsystems.XREnvironmentProbeSubsystemDescriptor,UnityEngine.XR.ARSubsystems.XREnvironmentProbeSubsystem/Provider>
struct SubsystemWithProvider_3_t8B33A21A2B183DB3F429FD3F0A899D7ED1BB4DEA : public SubsystemWithProvider_t1C1868CF8676F5596C1AD20A7CE69BDF7C7DE73E
{
public:
// TSubsystemDescriptor UnityEngine.SubsystemsImplementation.SubsystemWithProvider`3::<subsystemDescriptor>k__BackingField
XREnvironmentProbeSubsystemDescriptor_t7C10519F545418330347AC7434FBB10F39DD4243 * ___U3CsubsystemDescriptorU3Ek__BackingField_2;
// TProvider UnityEngine.SubsystemsImplementation.SubsystemWithProvider`3::<provider>k__BackingField
Provider_tAF87FE3E906FDBF14F06488A1AA5E80400EFE190 * ___U3CproviderU3Ek__BackingField_3;
public:
inline static int32_t get_offset_of_U3CsubsystemDescriptorU3Ek__BackingField_2() { return static_cast<int32_t>(offsetof(SubsystemWithProvider_3_t8B33A21A2B183DB3F429FD3F0A899D7ED1BB4DEA, ___U3CsubsystemDescriptorU3Ek__BackingField_2)); }
inline XREnvironmentProbeSubsystemDescriptor_t7C10519F545418330347AC7434FBB10F39DD4243 * get_U3CsubsystemDescriptorU3Ek__BackingField_2() const { return ___U3CsubsystemDescriptorU3Ek__BackingField_2; }
inline XREnvironmentProbeSubsystemDescriptor_t7C10519F545418330347AC7434FBB10F39DD4243 ** get_address_of_U3CsubsystemDescriptorU3Ek__BackingField_2() { return &___U3CsubsystemDescriptorU3Ek__BackingField_2; }
inline void set_U3CsubsystemDescriptorU3Ek__BackingField_2(XREnvironmentProbeSubsystemDescriptor_t7C10519F545418330347AC7434FBB10F39DD4243 * value)
{
___U3CsubsystemDescriptorU3Ek__BackingField_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CsubsystemDescriptorU3Ek__BackingField_2), (void*)value);
}
inline static int32_t get_offset_of_U3CproviderU3Ek__BackingField_3() { return static_cast<int32_t>(offsetof(SubsystemWithProvider_3_t8B33A21A2B183DB3F429FD3F0A899D7ED1BB4DEA, ___U3CproviderU3Ek__BackingField_3)); }
inline Provider_tAF87FE3E906FDBF14F06488A1AA5E80400EFE190 * get_U3CproviderU3Ek__BackingField_3() const { return ___U3CproviderU3Ek__BackingField_3; }
inline Provider_tAF87FE3E906FDBF14F06488A1AA5E80400EFE190 ** get_address_of_U3CproviderU3Ek__BackingField_3() { return &___U3CproviderU3Ek__BackingField_3; }
inline void set_U3CproviderU3Ek__BackingField_3(Provider_tAF87FE3E906FDBF14F06488A1AA5E80400EFE190 * value)
{
___U3CproviderU3Ek__BackingField_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CproviderU3Ek__BackingField_3), (void*)value);
}
};
// UnityEngine.SubsystemsImplementation.SubsystemWithProvider`3<UnityEngine.XR.ARSubsystems.XRFaceSubsystem,UnityEngine.XR.ARSubsystems.XRFaceSubsystemDescriptor,UnityEngine.XR.ARSubsystems.XRFaceSubsystem/Provider>
struct SubsystemWithProvider_3_t2E74C29CB9922972A66085C9DAD6E1542BCCE25B : public SubsystemWithProvider_t1C1868CF8676F5596C1AD20A7CE69BDF7C7DE73E
{
public:
// TSubsystemDescriptor UnityEngine.SubsystemsImplementation.SubsystemWithProvider`3::<subsystemDescriptor>k__BackingField
XRFaceSubsystemDescriptor_t129999D2BF40B1016A8C70A0FDE9763C21DCD618 * ___U3CsubsystemDescriptorU3Ek__BackingField_2;
// TProvider UnityEngine.SubsystemsImplementation.SubsystemWithProvider`3::<provider>k__BackingField
Provider_t0133E0DB4F1A68EB3D4814F63B14456832E3EAE7 * ___U3CproviderU3Ek__BackingField_3;
public:
inline static int32_t get_offset_of_U3CsubsystemDescriptorU3Ek__BackingField_2() { return static_cast<int32_t>(offsetof(SubsystemWithProvider_3_t2E74C29CB9922972A66085C9DAD6E1542BCCE25B, ___U3CsubsystemDescriptorU3Ek__BackingField_2)); }
inline XRFaceSubsystemDescriptor_t129999D2BF40B1016A8C70A0FDE9763C21DCD618 * get_U3CsubsystemDescriptorU3Ek__BackingField_2() const { return ___U3CsubsystemDescriptorU3Ek__BackingField_2; }
inline XRFaceSubsystemDescriptor_t129999D2BF40B1016A8C70A0FDE9763C21DCD618 ** get_address_of_U3CsubsystemDescriptorU3Ek__BackingField_2() { return &___U3CsubsystemDescriptorU3Ek__BackingField_2; }
inline void set_U3CsubsystemDescriptorU3Ek__BackingField_2(XRFaceSubsystemDescriptor_t129999D2BF40B1016A8C70A0FDE9763C21DCD618 * value)
{
___U3CsubsystemDescriptorU3Ek__BackingField_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CsubsystemDescriptorU3Ek__BackingField_2), (void*)value);
}
inline static int32_t get_offset_of_U3CproviderU3Ek__BackingField_3() { return static_cast<int32_t>(offsetof(SubsystemWithProvider_3_t2E74C29CB9922972A66085C9DAD6E1542BCCE25B, ___U3CproviderU3Ek__BackingField_3)); }
inline Provider_t0133E0DB4F1A68EB3D4814F63B14456832E3EAE7 * get_U3CproviderU3Ek__BackingField_3() const { return ___U3CproviderU3Ek__BackingField_3; }
inline Provider_t0133E0DB4F1A68EB3D4814F63B14456832E3EAE7 ** get_address_of_U3CproviderU3Ek__BackingField_3() { return &___U3CproviderU3Ek__BackingField_3; }
inline void set_U3CproviderU3Ek__BackingField_3(Provider_t0133E0DB4F1A68EB3D4814F63B14456832E3EAE7 * value)
{
___U3CproviderU3Ek__BackingField_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CproviderU3Ek__BackingField_3), (void*)value);
}
};
// UnityEngine.SubsystemsImplementation.SubsystemWithProvider`3<UnityEngine.XR.ARSubsystems.XRHumanBodySubsystem,UnityEngine.XR.ARSubsystems.XRHumanBodySubsystemDescriptor,UnityEngine.XR.ARSubsystems.XRHumanBodySubsystem/Provider>
struct SubsystemWithProvider_3_t152AEC9946809B23BD9A7DE32A2113E12B8CE2C2 : public SubsystemWithProvider_t1C1868CF8676F5596C1AD20A7CE69BDF7C7DE73E
{
public:
// TSubsystemDescriptor UnityEngine.SubsystemsImplementation.SubsystemWithProvider`3::<subsystemDescriptor>k__BackingField
XRHumanBodySubsystemDescriptor_t00E75DD05B03BCC1BF5A794547615692B7A55C04 * ___U3CsubsystemDescriptorU3Ek__BackingField_2;
// TProvider UnityEngine.SubsystemsImplementation.SubsystemWithProvider`3::<provider>k__BackingField
Provider_t055C90C34B2BCE8D134DF44C12823E320519168C * ___U3CproviderU3Ek__BackingField_3;
public:
inline static int32_t get_offset_of_U3CsubsystemDescriptorU3Ek__BackingField_2() { return static_cast<int32_t>(offsetof(SubsystemWithProvider_3_t152AEC9946809B23BD9A7DE32A2113E12B8CE2C2, ___U3CsubsystemDescriptorU3Ek__BackingField_2)); }
inline XRHumanBodySubsystemDescriptor_t00E75DD05B03BCC1BF5A794547615692B7A55C04 * get_U3CsubsystemDescriptorU3Ek__BackingField_2() const { return ___U3CsubsystemDescriptorU3Ek__BackingField_2; }
inline XRHumanBodySubsystemDescriptor_t00E75DD05B03BCC1BF5A794547615692B7A55C04 ** get_address_of_U3CsubsystemDescriptorU3Ek__BackingField_2() { return &___U3CsubsystemDescriptorU3Ek__BackingField_2; }
inline void set_U3CsubsystemDescriptorU3Ek__BackingField_2(XRHumanBodySubsystemDescriptor_t00E75DD05B03BCC1BF5A794547615692B7A55C04 * value)
{
___U3CsubsystemDescriptorU3Ek__BackingField_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CsubsystemDescriptorU3Ek__BackingField_2), (void*)value);
}
inline static int32_t get_offset_of_U3CproviderU3Ek__BackingField_3() { return static_cast<int32_t>(offsetof(SubsystemWithProvider_3_t152AEC9946809B23BD9A7DE32A2113E12B8CE2C2, ___U3CproviderU3Ek__BackingField_3)); }
inline Provider_t055C90C34B2BCE8D134DF44C12823E320519168C * get_U3CproviderU3Ek__BackingField_3() const { return ___U3CproviderU3Ek__BackingField_3; }
inline Provider_t055C90C34B2BCE8D134DF44C12823E320519168C ** get_address_of_U3CproviderU3Ek__BackingField_3() { return &___U3CproviderU3Ek__BackingField_3; }
inline void set_U3CproviderU3Ek__BackingField_3(Provider_t055C90C34B2BCE8D134DF44C12823E320519168C * value)
{
___U3CproviderU3Ek__BackingField_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CproviderU3Ek__BackingField_3), (void*)value);
}
};
// UnityEngine.SubsystemsImplementation.SubsystemWithProvider`3<UnityEngine.XR.ARSubsystems.XRImageTrackingSubsystem,UnityEngine.XR.ARSubsystems.XRImageTrackingSubsystemDescriptor,UnityEngine.XR.ARSubsystems.XRImageTrackingSubsystem/Provider>
struct SubsystemWithProvider_3_t249D82EF0730E7FF15F2B19C4BB45B2E08CF620B : public SubsystemWithProvider_t1C1868CF8676F5596C1AD20A7CE69BDF7C7DE73E
{
public:
// TSubsystemDescriptor UnityEngine.SubsystemsImplementation.SubsystemWithProvider`3::<subsystemDescriptor>k__BackingField
XRImageTrackingSubsystemDescriptor_t3EC191739B144A8AA00CEEE03E8F7FF01D7F833B * ___U3CsubsystemDescriptorU3Ek__BackingField_2;
// TProvider UnityEngine.SubsystemsImplementation.SubsystemWithProvider`3::<provider>k__BackingField
Provider_tA7CEF856C3BC486ADEBD656F5535E24262AAAE9E * ___U3CproviderU3Ek__BackingField_3;
public:
inline static int32_t get_offset_of_U3CsubsystemDescriptorU3Ek__BackingField_2() { return static_cast<int32_t>(offsetof(SubsystemWithProvider_3_t249D82EF0730E7FF15F2B19C4BB45B2E08CF620B, ___U3CsubsystemDescriptorU3Ek__BackingField_2)); }
inline XRImageTrackingSubsystemDescriptor_t3EC191739B144A8AA00CEEE03E8F7FF01D7F833B * get_U3CsubsystemDescriptorU3Ek__BackingField_2() const { return ___U3CsubsystemDescriptorU3Ek__BackingField_2; }
inline XRImageTrackingSubsystemDescriptor_t3EC191739B144A8AA00CEEE03E8F7FF01D7F833B ** get_address_of_U3CsubsystemDescriptorU3Ek__BackingField_2() { return &___U3CsubsystemDescriptorU3Ek__BackingField_2; }
inline void set_U3CsubsystemDescriptorU3Ek__BackingField_2(XRImageTrackingSubsystemDescriptor_t3EC191739B144A8AA00CEEE03E8F7FF01D7F833B * value)
{
___U3CsubsystemDescriptorU3Ek__BackingField_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CsubsystemDescriptorU3Ek__BackingField_2), (void*)value);
}
inline static int32_t get_offset_of_U3CproviderU3Ek__BackingField_3() { return static_cast<int32_t>(offsetof(SubsystemWithProvider_3_t249D82EF0730E7FF15F2B19C4BB45B2E08CF620B, ___U3CproviderU3Ek__BackingField_3)); }
inline Provider_tA7CEF856C3BC486ADEBD656F5535E24262AAAE9E * get_U3CproviderU3Ek__BackingField_3() const { return ___U3CproviderU3Ek__BackingField_3; }
inline Provider_tA7CEF856C3BC486ADEBD656F5535E24262AAAE9E ** get_address_of_U3CproviderU3Ek__BackingField_3() { return &___U3CproviderU3Ek__BackingField_3; }
inline void set_U3CproviderU3Ek__BackingField_3(Provider_tA7CEF856C3BC486ADEBD656F5535E24262AAAE9E * value)
{
___U3CproviderU3Ek__BackingField_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CproviderU3Ek__BackingField_3), (void*)value);
}
};
// UnityEngine.SubsystemsImplementation.SubsystemWithProvider`3<UnityEngine.XR.ARSubsystems.XRObjectTrackingSubsystem,UnityEngine.XR.ARSubsystems.XRObjectTrackingSubsystemDescriptor,UnityEngine.XR.ARSubsystems.XRObjectTrackingSubsystem/Provider>
struct SubsystemWithProvider_3_t2622D99FF6F2A6B95B2E82547A76A7E7712AA7DB : public SubsystemWithProvider_t1C1868CF8676F5596C1AD20A7CE69BDF7C7DE73E
{
public:
// TSubsystemDescriptor UnityEngine.SubsystemsImplementation.SubsystemWithProvider`3::<subsystemDescriptor>k__BackingField
XRObjectTrackingSubsystemDescriptor_t831B568A9BE175A6A79BB87E25DEFAC519A6C472 * ___U3CsubsystemDescriptorU3Ek__BackingField_2;
// TProvider UnityEngine.SubsystemsImplementation.SubsystemWithProvider`3::<provider>k__BackingField
Provider_t35977A2A0AA6C338BC9893668DD32F0294A9C01E * ___U3CproviderU3Ek__BackingField_3;
public:
inline static int32_t get_offset_of_U3CsubsystemDescriptorU3Ek__BackingField_2() { return static_cast<int32_t>(offsetof(SubsystemWithProvider_3_t2622D99FF6F2A6B95B2E82547A76A7E7712AA7DB, ___U3CsubsystemDescriptorU3Ek__BackingField_2)); }
inline XRObjectTrackingSubsystemDescriptor_t831B568A9BE175A6A79BB87E25DEFAC519A6C472 * get_U3CsubsystemDescriptorU3Ek__BackingField_2() const { return ___U3CsubsystemDescriptorU3Ek__BackingField_2; }
inline XRObjectTrackingSubsystemDescriptor_t831B568A9BE175A6A79BB87E25DEFAC519A6C472 ** get_address_of_U3CsubsystemDescriptorU3Ek__BackingField_2() { return &___U3CsubsystemDescriptorU3Ek__BackingField_2; }
inline void set_U3CsubsystemDescriptorU3Ek__BackingField_2(XRObjectTrackingSubsystemDescriptor_t831B568A9BE175A6A79BB87E25DEFAC519A6C472 * value)
{
___U3CsubsystemDescriptorU3Ek__BackingField_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CsubsystemDescriptorU3Ek__BackingField_2), (void*)value);
}
inline static int32_t get_offset_of_U3CproviderU3Ek__BackingField_3() { return static_cast<int32_t>(offsetof(SubsystemWithProvider_3_t2622D99FF6F2A6B95B2E82547A76A7E7712AA7DB, ___U3CproviderU3Ek__BackingField_3)); }
inline Provider_t35977A2A0AA6C338BC9893668DD32F0294A9C01E * get_U3CproviderU3Ek__BackingField_3() const { return ___U3CproviderU3Ek__BackingField_3; }
inline Provider_t35977A2A0AA6C338BC9893668DD32F0294A9C01E ** get_address_of_U3CproviderU3Ek__BackingField_3() { return &___U3CproviderU3Ek__BackingField_3; }
inline void set_U3CproviderU3Ek__BackingField_3(Provider_t35977A2A0AA6C338BC9893668DD32F0294A9C01E * value)
{
___U3CproviderU3Ek__BackingField_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CproviderU3Ek__BackingField_3), (void*)value);
}
};
// UnityEngine.SubsystemsImplementation.SubsystemWithProvider`3<UnityEngine.XR.ARSubsystems.XROcclusionSubsystem,UnityEngine.XR.ARSubsystems.XROcclusionSubsystemDescriptor,UnityEngine.XR.ARSubsystems.XROcclusionSubsystem/Provider>
struct SubsystemWithProvider_3_t2838D413336061A31AFDEA49065AD29BD1EB3A1B : public SubsystemWithProvider_t1C1868CF8676F5596C1AD20A7CE69BDF7C7DE73E
{
public:
// TSubsystemDescriptor UnityEngine.SubsystemsImplementation.SubsystemWithProvider`3::<subsystemDescriptor>k__BackingField
XROcclusionSubsystemDescriptor_tC9C8F2EFB7768358C203968CA71D353F0DD234FB * ___U3CsubsystemDescriptorU3Ek__BackingField_2;
// TProvider UnityEngine.SubsystemsImplementation.SubsystemWithProvider`3::<provider>k__BackingField
Provider_t5B60C630FB68EFEAB6FA2F3D9A732C144003B7FB * ___U3CproviderU3Ek__BackingField_3;
public:
inline static int32_t get_offset_of_U3CsubsystemDescriptorU3Ek__BackingField_2() { return static_cast<int32_t>(offsetof(SubsystemWithProvider_3_t2838D413336061A31AFDEA49065AD29BD1EB3A1B, ___U3CsubsystemDescriptorU3Ek__BackingField_2)); }
inline XROcclusionSubsystemDescriptor_tC9C8F2EFB7768358C203968CA71D353F0DD234FB * get_U3CsubsystemDescriptorU3Ek__BackingField_2() const { return ___U3CsubsystemDescriptorU3Ek__BackingField_2; }
inline XROcclusionSubsystemDescriptor_tC9C8F2EFB7768358C203968CA71D353F0DD234FB ** get_address_of_U3CsubsystemDescriptorU3Ek__BackingField_2() { return &___U3CsubsystemDescriptorU3Ek__BackingField_2; }
inline void set_U3CsubsystemDescriptorU3Ek__BackingField_2(XROcclusionSubsystemDescriptor_tC9C8F2EFB7768358C203968CA71D353F0DD234FB * value)
{
___U3CsubsystemDescriptorU3Ek__BackingField_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CsubsystemDescriptorU3Ek__BackingField_2), (void*)value);
}
inline static int32_t get_offset_of_U3CproviderU3Ek__BackingField_3() { return static_cast<int32_t>(offsetof(SubsystemWithProvider_3_t2838D413336061A31AFDEA49065AD29BD1EB3A1B, ___U3CproviderU3Ek__BackingField_3)); }
inline Provider_t5B60C630FB68EFEAB6FA2F3D9A732C144003B7FB * get_U3CproviderU3Ek__BackingField_3() const { return ___U3CproviderU3Ek__BackingField_3; }
inline Provider_t5B60C630FB68EFEAB6FA2F3D9A732C144003B7FB ** get_address_of_U3CproviderU3Ek__BackingField_3() { return &___U3CproviderU3Ek__BackingField_3; }
inline void set_U3CproviderU3Ek__BackingField_3(Provider_t5B60C630FB68EFEAB6FA2F3D9A732C144003B7FB * value)
{
___U3CproviderU3Ek__BackingField_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CproviderU3Ek__BackingField_3), (void*)value);
}
};
// UnityEngine.SubsystemsImplementation.SubsystemWithProvider`3<UnityEngine.XR.ARSubsystems.XRParticipantSubsystem,UnityEngine.XR.ARSubsystems.XRParticipantSubsystemDescriptor,UnityEngine.XR.ARSubsystems.XRParticipantSubsystem/Provider>
struct SubsystemWithProvider_3_t0293B6FD1251DCA5DC0D3396C57B87118ECE01DF : public SubsystemWithProvider_t1C1868CF8676F5596C1AD20A7CE69BDF7C7DE73E
{
public:
// TSubsystemDescriptor UnityEngine.SubsystemsImplementation.SubsystemWithProvider`3::<subsystemDescriptor>k__BackingField
XRParticipantSubsystemDescriptor_t533EE70DC8D4B105B9C87B76D35A7D59A84BCA55 * ___U3CsubsystemDescriptorU3Ek__BackingField_2;
// TProvider UnityEngine.SubsystemsImplementation.SubsystemWithProvider`3::<provider>k__BackingField
Provider_t1D0BC515976D24FD30341AC456ACFCB2DE4A344E * ___U3CproviderU3Ek__BackingField_3;
public:
inline static int32_t get_offset_of_U3CsubsystemDescriptorU3Ek__BackingField_2() { return static_cast<int32_t>(offsetof(SubsystemWithProvider_3_t0293B6FD1251DCA5DC0D3396C57B87118ECE01DF, ___U3CsubsystemDescriptorU3Ek__BackingField_2)); }
inline XRParticipantSubsystemDescriptor_t533EE70DC8D4B105B9C87B76D35A7D59A84BCA55 * get_U3CsubsystemDescriptorU3Ek__BackingField_2() const { return ___U3CsubsystemDescriptorU3Ek__BackingField_2; }
inline XRParticipantSubsystemDescriptor_t533EE70DC8D4B105B9C87B76D35A7D59A84BCA55 ** get_address_of_U3CsubsystemDescriptorU3Ek__BackingField_2() { return &___U3CsubsystemDescriptorU3Ek__BackingField_2; }
inline void set_U3CsubsystemDescriptorU3Ek__BackingField_2(XRParticipantSubsystemDescriptor_t533EE70DC8D4B105B9C87B76D35A7D59A84BCA55 * value)
{
___U3CsubsystemDescriptorU3Ek__BackingField_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CsubsystemDescriptorU3Ek__BackingField_2), (void*)value);
}
inline static int32_t get_offset_of_U3CproviderU3Ek__BackingField_3() { return static_cast<int32_t>(offsetof(SubsystemWithProvider_3_t0293B6FD1251DCA5DC0D3396C57B87118ECE01DF, ___U3CproviderU3Ek__BackingField_3)); }
inline Provider_t1D0BC515976D24FD30341AC456ACFCB2DE4A344E * get_U3CproviderU3Ek__BackingField_3() const { return ___U3CproviderU3Ek__BackingField_3; }
inline Provider_t1D0BC515976D24FD30341AC456ACFCB2DE4A344E ** get_address_of_U3CproviderU3Ek__BackingField_3() { return &___U3CproviderU3Ek__BackingField_3; }
inline void set_U3CproviderU3Ek__BackingField_3(Provider_t1D0BC515976D24FD30341AC456ACFCB2DE4A344E * value)
{
___U3CproviderU3Ek__BackingField_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CproviderU3Ek__BackingField_3), (void*)value);
}
};
// UnityEngine.SubsystemsImplementation.SubsystemWithProvider`3<UnityEngine.XR.ARSubsystems.XRPlaneSubsystem,UnityEngine.XR.ARSubsystems.XRPlaneSubsystemDescriptor,UnityEngine.XR.ARSubsystems.XRPlaneSubsystem/Provider>
struct SubsystemWithProvider_3_t2D48685843F3C8CD4AE71F1303F357DCAE9FD683 : public SubsystemWithProvider_t1C1868CF8676F5596C1AD20A7CE69BDF7C7DE73E
{
public:
// TSubsystemDescriptor UnityEngine.SubsystemsImplementation.SubsystemWithProvider`3::<subsystemDescriptor>k__BackingField
XRPlaneSubsystemDescriptor_t98B66B6D99804656DDDB45C9BDA61C2EE4EDB483 * ___U3CsubsystemDescriptorU3Ek__BackingField_2;
// TProvider UnityEngine.SubsystemsImplementation.SubsystemWithProvider`3::<provider>k__BackingField
Provider_t6CB5B1036B0AAED1379F3828D695A6942B72BA12 * ___U3CproviderU3Ek__BackingField_3;
public:
inline static int32_t get_offset_of_U3CsubsystemDescriptorU3Ek__BackingField_2() { return static_cast<int32_t>(offsetof(SubsystemWithProvider_3_t2D48685843F3C8CD4AE71F1303F357DCAE9FD683, ___U3CsubsystemDescriptorU3Ek__BackingField_2)); }
inline XRPlaneSubsystemDescriptor_t98B66B6D99804656DDDB45C9BDA61C2EE4EDB483 * get_U3CsubsystemDescriptorU3Ek__BackingField_2() const { return ___U3CsubsystemDescriptorU3Ek__BackingField_2; }
inline XRPlaneSubsystemDescriptor_t98B66B6D99804656DDDB45C9BDA61C2EE4EDB483 ** get_address_of_U3CsubsystemDescriptorU3Ek__BackingField_2() { return &___U3CsubsystemDescriptorU3Ek__BackingField_2; }
inline void set_U3CsubsystemDescriptorU3Ek__BackingField_2(XRPlaneSubsystemDescriptor_t98B66B6D99804656DDDB45C9BDA61C2EE4EDB483 * value)
{
___U3CsubsystemDescriptorU3Ek__BackingField_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CsubsystemDescriptorU3Ek__BackingField_2), (void*)value);
}
inline static int32_t get_offset_of_U3CproviderU3Ek__BackingField_3() { return static_cast<int32_t>(offsetof(SubsystemWithProvider_3_t2D48685843F3C8CD4AE71F1303F357DCAE9FD683, ___U3CproviderU3Ek__BackingField_3)); }
inline Provider_t6CB5B1036B0AAED1379F3828D695A6942B72BA12 * get_U3CproviderU3Ek__BackingField_3() const { return ___U3CproviderU3Ek__BackingField_3; }
inline Provider_t6CB5B1036B0AAED1379F3828D695A6942B72BA12 ** get_address_of_U3CproviderU3Ek__BackingField_3() { return &___U3CproviderU3Ek__BackingField_3; }
inline void set_U3CproviderU3Ek__BackingField_3(Provider_t6CB5B1036B0AAED1379F3828D695A6942B72BA12 * value)
{
___U3CproviderU3Ek__BackingField_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CproviderU3Ek__BackingField_3), (void*)value);
}
};
// UnityEngine.SubsystemsImplementation.SubsystemWithProvider`3<UnityEngine.XR.ARSubsystems.XRRaycastSubsystem,UnityEngine.XR.ARSubsystems.XRRaycastSubsystemDescriptor,UnityEngine.XR.ARSubsystems.XRRaycastSubsystem/Provider>
struct SubsystemWithProvider_3_t6C72A4BB6DC4A9CC6B00E99D4A5EF1E1C9BBAF1E : public SubsystemWithProvider_t1C1868CF8676F5596C1AD20A7CE69BDF7C7DE73E
{
public:
// TSubsystemDescriptor UnityEngine.SubsystemsImplementation.SubsystemWithProvider`3::<subsystemDescriptor>k__BackingField
XRRaycastSubsystemDescriptor_tB9891F63FC4871797BCD04DB7167142BE2049B2C * ___U3CsubsystemDescriptorU3Ek__BackingField_2;
// TProvider UnityEngine.SubsystemsImplementation.SubsystemWithProvider`3::<provider>k__BackingField
Provider_tF185BE0541D2066CD242583CEFE7709DD22DD227 * ___U3CproviderU3Ek__BackingField_3;
public:
inline static int32_t get_offset_of_U3CsubsystemDescriptorU3Ek__BackingField_2() { return static_cast<int32_t>(offsetof(SubsystemWithProvider_3_t6C72A4BB6DC4A9CC6B00E99D4A5EF1E1C9BBAF1E, ___U3CsubsystemDescriptorU3Ek__BackingField_2)); }
inline XRRaycastSubsystemDescriptor_tB9891F63FC4871797BCD04DB7167142BE2049B2C * get_U3CsubsystemDescriptorU3Ek__BackingField_2() const { return ___U3CsubsystemDescriptorU3Ek__BackingField_2; }
inline XRRaycastSubsystemDescriptor_tB9891F63FC4871797BCD04DB7167142BE2049B2C ** get_address_of_U3CsubsystemDescriptorU3Ek__BackingField_2() { return &___U3CsubsystemDescriptorU3Ek__BackingField_2; }
inline void set_U3CsubsystemDescriptorU3Ek__BackingField_2(XRRaycastSubsystemDescriptor_tB9891F63FC4871797BCD04DB7167142BE2049B2C * value)
{
___U3CsubsystemDescriptorU3Ek__BackingField_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CsubsystemDescriptorU3Ek__BackingField_2), (void*)value);
}
inline static int32_t get_offset_of_U3CproviderU3Ek__BackingField_3() { return static_cast<int32_t>(offsetof(SubsystemWithProvider_3_t6C72A4BB6DC4A9CC6B00E99D4A5EF1E1C9BBAF1E, ___U3CproviderU3Ek__BackingField_3)); }
inline Provider_tF185BE0541D2066CD242583CEFE7709DD22DD227 * get_U3CproviderU3Ek__BackingField_3() const { return ___U3CproviderU3Ek__BackingField_3; }
inline Provider_tF185BE0541D2066CD242583CEFE7709DD22DD227 ** get_address_of_U3CproviderU3Ek__BackingField_3() { return &___U3CproviderU3Ek__BackingField_3; }
inline void set_U3CproviderU3Ek__BackingField_3(Provider_tF185BE0541D2066CD242583CEFE7709DD22DD227 * value)
{
___U3CproviderU3Ek__BackingField_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CproviderU3Ek__BackingField_3), (void*)value);
}
};
// UnityEngine.SubsystemsImplementation.SubsystemWithProvider`3<UnityEngine.XR.ARSubsystems.XRReferencePointSubsystem,UnityEngine.XR.ARSubsystems.XRReferencePointSubsystemDescriptor,UnityEngine.XR.ARSubsystems.XRReferencePointSubsystem/Provider>
struct SubsystemWithProvider_3_tBEFCA8C8D6BE0554DE28CB542681793993E3C7C3 : public SubsystemWithProvider_t1C1868CF8676F5596C1AD20A7CE69BDF7C7DE73E
{
public:
// TSubsystemDescriptor UnityEngine.SubsystemsImplementation.SubsystemWithProvider`3::<subsystemDescriptor>k__BackingField
XRReferencePointSubsystemDescriptor_t8200CCC29717B3E08EECC476427E1A4E63C4EBDB * ___U3CsubsystemDescriptorU3Ek__BackingField_2;
// TProvider UnityEngine.SubsystemsImplementation.SubsystemWithProvider`3::<provider>k__BackingField
Provider_t7974F3BD624EC305575E361EE0BCAAA3DC5B253C * ___U3CproviderU3Ek__BackingField_3;
public:
inline static int32_t get_offset_of_U3CsubsystemDescriptorU3Ek__BackingField_2() { return static_cast<int32_t>(offsetof(SubsystemWithProvider_3_tBEFCA8C8D6BE0554DE28CB542681793993E3C7C3, ___U3CsubsystemDescriptorU3Ek__BackingField_2)); }
inline XRReferencePointSubsystemDescriptor_t8200CCC29717B3E08EECC476427E1A4E63C4EBDB * get_U3CsubsystemDescriptorU3Ek__BackingField_2() const { return ___U3CsubsystemDescriptorU3Ek__BackingField_2; }
inline XRReferencePointSubsystemDescriptor_t8200CCC29717B3E08EECC476427E1A4E63C4EBDB ** get_address_of_U3CsubsystemDescriptorU3Ek__BackingField_2() { return &___U3CsubsystemDescriptorU3Ek__BackingField_2; }
inline void set_U3CsubsystemDescriptorU3Ek__BackingField_2(XRReferencePointSubsystemDescriptor_t8200CCC29717B3E08EECC476427E1A4E63C4EBDB * value)
{
___U3CsubsystemDescriptorU3Ek__BackingField_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CsubsystemDescriptorU3Ek__BackingField_2), (void*)value);
}
inline static int32_t get_offset_of_U3CproviderU3Ek__BackingField_3() { return static_cast<int32_t>(offsetof(SubsystemWithProvider_3_tBEFCA8C8D6BE0554DE28CB542681793993E3C7C3, ___U3CproviderU3Ek__BackingField_3)); }
inline Provider_t7974F3BD624EC305575E361EE0BCAAA3DC5B253C * get_U3CproviderU3Ek__BackingField_3() const { return ___U3CproviderU3Ek__BackingField_3; }
inline Provider_t7974F3BD624EC305575E361EE0BCAAA3DC5B253C ** get_address_of_U3CproviderU3Ek__BackingField_3() { return &___U3CproviderU3Ek__BackingField_3; }
inline void set_U3CproviderU3Ek__BackingField_3(Provider_t7974F3BD624EC305575E361EE0BCAAA3DC5B253C * value)
{
___U3CproviderU3Ek__BackingField_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CproviderU3Ek__BackingField_3), (void*)value);
}
};
// UnityEngine.SubsystemsImplementation.SubsystemWithProvider`3<UnityEngine.XR.ARSubsystems.XRSessionSubsystem,UnityEngine.XR.ARSubsystems.XRSessionSubsystemDescriptor,UnityEngine.XR.ARSubsystems.XRSessionSubsystem/Provider>
struct SubsystemWithProvider_3_t646DFCE31181130FB557E4AFA37198CF3170977F : public SubsystemWithProvider_t1C1868CF8676F5596C1AD20A7CE69BDF7C7DE73E
{
public:
// TSubsystemDescriptor UnityEngine.SubsystemsImplementation.SubsystemWithProvider`3::<subsystemDescriptor>k__BackingField
XRSessionSubsystemDescriptor_tC45A49D1179090D5C6D3B3DC1DC31CAB5A627B1C * ___U3CsubsystemDescriptorU3Ek__BackingField_2;
// TProvider UnityEngine.SubsystemsImplementation.SubsystemWithProvider`3::<provider>k__BackingField
Provider_t4C3675997BB8AF3A6A32C3EC3C93C10E4D3E8D1A * ___U3CproviderU3Ek__BackingField_3;
public:
inline static int32_t get_offset_of_U3CsubsystemDescriptorU3Ek__BackingField_2() { return static_cast<int32_t>(offsetof(SubsystemWithProvider_3_t646DFCE31181130FB557E4AFA37198CF3170977F, ___U3CsubsystemDescriptorU3Ek__BackingField_2)); }
inline XRSessionSubsystemDescriptor_tC45A49D1179090D5C6D3B3DC1DC31CAB5A627B1C * get_U3CsubsystemDescriptorU3Ek__BackingField_2() const { return ___U3CsubsystemDescriptorU3Ek__BackingField_2; }
inline XRSessionSubsystemDescriptor_tC45A49D1179090D5C6D3B3DC1DC31CAB5A627B1C ** get_address_of_U3CsubsystemDescriptorU3Ek__BackingField_2() { return &___U3CsubsystemDescriptorU3Ek__BackingField_2; }
inline void set_U3CsubsystemDescriptorU3Ek__BackingField_2(XRSessionSubsystemDescriptor_tC45A49D1179090D5C6D3B3DC1DC31CAB5A627B1C * value)
{
___U3CsubsystemDescriptorU3Ek__BackingField_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CsubsystemDescriptorU3Ek__BackingField_2), (void*)value);
}
inline static int32_t get_offset_of_U3CproviderU3Ek__BackingField_3() { return static_cast<int32_t>(offsetof(SubsystemWithProvider_3_t646DFCE31181130FB557E4AFA37198CF3170977F, ___U3CproviderU3Ek__BackingField_3)); }
inline Provider_t4C3675997BB8AF3A6A32C3EC3C93C10E4D3E8D1A * get_U3CproviderU3Ek__BackingField_3() const { return ___U3CproviderU3Ek__BackingField_3; }
inline Provider_t4C3675997BB8AF3A6A32C3EC3C93C10E4D3E8D1A ** get_address_of_U3CproviderU3Ek__BackingField_3() { return &___U3CproviderU3Ek__BackingField_3; }
inline void set_U3CproviderU3Ek__BackingField_3(Provider_t4C3675997BB8AF3A6A32C3EC3C93C10E4D3E8D1A * value)
{
___U3CproviderU3Ek__BackingField_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CproviderU3Ek__BackingField_3), (void*)value);
}
};
// System.Boolean
struct Boolean_t07D1E3F34E4813023D64F584DFF7B34C9D922F37
{
public:
// System.Boolean System.Boolean::m_value
bool ___m_value_0;
public:
inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(Boolean_t07D1E3F34E4813023D64F584DFF7B34C9D922F37, ___m_value_0)); }
inline bool get_m_value_0() const { return ___m_value_0; }
inline bool* get_address_of_m_value_0() { return &___m_value_0; }
inline void set_m_value_0(bool value)
{
___m_value_0 = value;
}
};
struct Boolean_t07D1E3F34E4813023D64F584DFF7B34C9D922F37_StaticFields
{
public:
// System.String System.Boolean::TrueString
String_t* ___TrueString_5;
// System.String System.Boolean::FalseString
String_t* ___FalseString_6;
public:
inline static int32_t get_offset_of_TrueString_5() { return static_cast<int32_t>(offsetof(Boolean_t07D1E3F34E4813023D64F584DFF7B34C9D922F37_StaticFields, ___TrueString_5)); }
inline String_t* get_TrueString_5() const { return ___TrueString_5; }
inline String_t** get_address_of_TrueString_5() { return &___TrueString_5; }
inline void set_TrueString_5(String_t* value)
{
___TrueString_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___TrueString_5), (void*)value);
}
inline static int32_t get_offset_of_FalseString_6() { return static_cast<int32_t>(offsetof(Boolean_t07D1E3F34E4813023D64F584DFF7B34C9D922F37_StaticFields, ___FalseString_6)); }
inline String_t* get_FalseString_6() const { return ___FalseString_6; }
inline String_t** get_address_of_FalseString_6() { return &___FalseString_6; }
inline void set_FalseString_6(String_t* value)
{
___FalseString_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___FalseString_6), (void*)value);
}
};
// System.Byte
struct Byte_t0111FAB8B8685667EDDAF77683F0D8F86B659056
{
public:
// System.Byte System.Byte::m_value
uint8_t ___m_value_0;
public:
inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(Byte_t0111FAB8B8685667EDDAF77683F0D8F86B659056, ___m_value_0)); }
inline uint8_t get_m_value_0() const { return ___m_value_0; }
inline uint8_t* get_address_of_m_value_0() { return &___m_value_0; }
inline void set_m_value_0(uint8_t value)
{
___m_value_0 = value;
}
};
// UnityEngine.Color
struct Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659
{
public:
// System.Single UnityEngine.Color::r
float ___r_0;
// System.Single UnityEngine.Color::g
float ___g_1;
// System.Single UnityEngine.Color::b
float ___b_2;
// System.Single UnityEngine.Color::a
float ___a_3;
public:
inline static int32_t get_offset_of_r_0() { return static_cast<int32_t>(offsetof(Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659, ___r_0)); }
inline float get_r_0() const { return ___r_0; }
inline float* get_address_of_r_0() { return &___r_0; }
inline void set_r_0(float value)
{
___r_0 = value;
}
inline static int32_t get_offset_of_g_1() { return static_cast<int32_t>(offsetof(Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659, ___g_1)); }
inline float get_g_1() const { return ___g_1; }
inline float* get_address_of_g_1() { return &___g_1; }
inline void set_g_1(float value)
{
___g_1 = value;
}
inline static int32_t get_offset_of_b_2() { return static_cast<int32_t>(offsetof(Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659, ___b_2)); }
inline float get_b_2() const { return ___b_2; }
inline float* get_address_of_b_2() { return &___b_2; }
inline void set_b_2(float value)
{
___b_2 = value;
}
inline static int32_t get_offset_of_a_3() { return static_cast<int32_t>(offsetof(Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659, ___a_3)); }
inline float get_a_3() const { return ___a_3; }
inline float* get_address_of_a_3() { return &___a_3; }
inline void set_a_3(float value)
{
___a_3 = value;
}
};
// UnityEngine.XR.ARSubsystems.DefaultConfigurationChooser
struct DefaultConfigurationChooser_tC3488EB08C98156663D851D9F0F0AD9294D4613F : public ConfigurationChooser_t0CCF856A226297A702F306A2217CF17D652E72C4
{
public:
public:
};
// System.Double
struct Double_t42821932CB52DE2057E685D0E1AF3DE5033D2181
{
public:
// System.Double System.Double::m_value
double ___m_value_0;
public:
inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(Double_t42821932CB52DE2057E685D0E1AF3DE5033D2181, ___m_value_0)); }
inline double get_m_value_0() const { return ___m_value_0; }
inline double* get_address_of_m_value_0() { return &___m_value_0; }
inline void set_m_value_0(double value)
{
___m_value_0 = value;
}
};
struct Double_t42821932CB52DE2057E685D0E1AF3DE5033D2181_StaticFields
{
public:
// System.Double System.Double::NegativeZero
double ___NegativeZero_7;
public:
inline static int32_t get_offset_of_NegativeZero_7() { return static_cast<int32_t>(offsetof(Double_t42821932CB52DE2057E685D0E1AF3DE5033D2181_StaticFields, ___NegativeZero_7)); }
inline double get_NegativeZero_7() const { return ___NegativeZero_7; }
inline double* get_address_of_NegativeZero_7() { return &___NegativeZero_7; }
inline void set_NegativeZero_7(double value)
{
___NegativeZero_7 = value;
}
};
// Microsoft.CodeAnalysis.EmbeddedAttribute
struct EmbeddedAttribute_t90946B46F8A884CD575D2A26804B242737A86DDA : public Attribute_t037CA9D9F3B742C063DB364D2EEBBF9FC5772C71
{
public:
public:
};
// System.Enum
struct Enum_t23B90B40F60E677A8025267341651C94AE079CDA : public ValueType_tDBF999C1B75C48C68621878250DBF6CDBCF51E52
{
public:
public:
};
struct Enum_t23B90B40F60E677A8025267341651C94AE079CDA_StaticFields
{
public:
// System.Char[] System.Enum::enumSeperatorCharArray
CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* ___enumSeperatorCharArray_0;
public:
inline static int32_t get_offset_of_enumSeperatorCharArray_0() { return static_cast<int32_t>(offsetof(Enum_t23B90B40F60E677A8025267341651C94AE079CDA_StaticFields, ___enumSeperatorCharArray_0)); }
inline CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* get_enumSeperatorCharArray_0() const { return ___enumSeperatorCharArray_0; }
inline CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34** get_address_of_enumSeperatorCharArray_0() { return &___enumSeperatorCharArray_0; }
inline void set_enumSeperatorCharArray_0(CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* value)
{
___enumSeperatorCharArray_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___enumSeperatorCharArray_0), (void*)value);
}
};
// Native definition for P/Invoke marshalling of System.Enum
struct Enum_t23B90B40F60E677A8025267341651C94AE079CDA_marshaled_pinvoke
{
};
// Native definition for COM marshalling of System.Enum
struct Enum_t23B90B40F60E677A8025267341651C94AE079CDA_marshaled_com
{
};
// System.Runtime.InteropServices.GCHandle
struct GCHandle_t757890BC4BBBEDE5A623A3C110013EDD24613603
{
public:
// System.Int32 System.Runtime.InteropServices.GCHandle::handle
int32_t ___handle_0;
public:
inline static int32_t get_offset_of_handle_0() { return static_cast<int32_t>(offsetof(GCHandle_t757890BC4BBBEDE5A623A3C110013EDD24613603, ___handle_0)); }
inline int32_t get_handle_0() const { return ___handle_0; }
inline int32_t* get_address_of_handle_0() { return &___handle_0; }
inline void set_handle_0(int32_t value)
{
___handle_0 = value;
}
};
// System.Guid
struct Guid_t
{
public:
// System.Int32 System.Guid::_a
int32_t ____a_1;
// System.Int16 System.Guid::_b
int16_t ____b_2;
// System.Int16 System.Guid::_c
int16_t ____c_3;
// System.Byte System.Guid::_d
uint8_t ____d_4;
// System.Byte System.Guid::_e
uint8_t ____e_5;
// System.Byte System.Guid::_f
uint8_t ____f_6;
// System.Byte System.Guid::_g
uint8_t ____g_7;
// System.Byte System.Guid::_h
uint8_t ____h_8;
// System.Byte System.Guid::_i
uint8_t ____i_9;
// System.Byte System.Guid::_j
uint8_t ____j_10;
// System.Byte System.Guid::_k
uint8_t ____k_11;
public:
inline static int32_t get_offset_of__a_1() { return static_cast<int32_t>(offsetof(Guid_t, ____a_1)); }
inline int32_t get__a_1() const { return ____a_1; }
inline int32_t* get_address_of__a_1() { return &____a_1; }
inline void set__a_1(int32_t value)
{
____a_1 = value;
}
inline static int32_t get_offset_of__b_2() { return static_cast<int32_t>(offsetof(Guid_t, ____b_2)); }
inline int16_t get__b_2() const { return ____b_2; }
inline int16_t* get_address_of__b_2() { return &____b_2; }
inline void set__b_2(int16_t value)
{
____b_2 = value;
}
inline static int32_t get_offset_of__c_3() { return static_cast<int32_t>(offsetof(Guid_t, ____c_3)); }
inline int16_t get__c_3() const { return ____c_3; }
inline int16_t* get_address_of__c_3() { return &____c_3; }
inline void set__c_3(int16_t value)
{
____c_3 = value;
}
inline static int32_t get_offset_of__d_4() { return static_cast<int32_t>(offsetof(Guid_t, ____d_4)); }
inline uint8_t get__d_4() const { return ____d_4; }
inline uint8_t* get_address_of__d_4() { return &____d_4; }
inline void set__d_4(uint8_t value)
{
____d_4 = value;
}
inline static int32_t get_offset_of__e_5() { return static_cast<int32_t>(offsetof(Guid_t, ____e_5)); }
inline uint8_t get__e_5() const { return ____e_5; }
inline uint8_t* get_address_of__e_5() { return &____e_5; }
inline void set__e_5(uint8_t value)
{
____e_5 = value;
}
inline static int32_t get_offset_of__f_6() { return static_cast<int32_t>(offsetof(Guid_t, ____f_6)); }
inline uint8_t get__f_6() const { return ____f_6; }
inline uint8_t* get_address_of__f_6() { return &____f_6; }
inline void set__f_6(uint8_t value)
{
____f_6 = value;
}
inline static int32_t get_offset_of__g_7() { return static_cast<int32_t>(offsetof(Guid_t, ____g_7)); }
inline uint8_t get__g_7() const { return ____g_7; }
inline uint8_t* get_address_of__g_7() { return &____g_7; }
inline void set__g_7(uint8_t value)
{
____g_7 = value;
}
inline static int32_t get_offset_of__h_8() { return static_cast<int32_t>(offsetof(Guid_t, ____h_8)); }
inline uint8_t get__h_8() const { return ____h_8; }
inline uint8_t* get_address_of__h_8() { return &____h_8; }
inline void set__h_8(uint8_t value)
{
____h_8 = value;
}
inline static int32_t get_offset_of__i_9() { return static_cast<int32_t>(offsetof(Guid_t, ____i_9)); }
inline uint8_t get__i_9() const { return ____i_9; }
inline uint8_t* get_address_of__i_9() { return &____i_9; }
inline void set__i_9(uint8_t value)
{
____i_9 = value;
}
inline static int32_t get_offset_of__j_10() { return static_cast<int32_t>(offsetof(Guid_t, ____j_10)); }
inline uint8_t get__j_10() const { return ____j_10; }
inline uint8_t* get_address_of__j_10() { return &____j_10; }
inline void set__j_10(uint8_t value)
{
____j_10 = value;
}
inline static int32_t get_offset_of__k_11() { return static_cast<int32_t>(offsetof(Guid_t, ____k_11)); }
inline uint8_t get__k_11() const { return ____k_11; }
inline uint8_t* get_address_of__k_11() { return &____k_11; }
inline void set__k_11(uint8_t value)
{
____k_11 = value;
}
};
struct Guid_t_StaticFields
{
public:
// System.Guid System.Guid::Empty
Guid_t ___Empty_0;
// System.Object System.Guid::_rngAccess
RuntimeObject * ____rngAccess_12;
// System.Security.Cryptography.RandomNumberGenerator System.Guid::_rng
RandomNumberGenerator_t2CB5440F189986116A2FA9F907AE52644047AC50 * ____rng_13;
// System.Security.Cryptography.RandomNumberGenerator System.Guid::_fastRng
RandomNumberGenerator_t2CB5440F189986116A2FA9F907AE52644047AC50 * ____fastRng_14;
public:
inline static int32_t get_offset_of_Empty_0() { return static_cast<int32_t>(offsetof(Guid_t_StaticFields, ___Empty_0)); }
inline Guid_t get_Empty_0() const { return ___Empty_0; }
inline Guid_t * get_address_of_Empty_0() { return &___Empty_0; }
inline void set_Empty_0(Guid_t value)
{
___Empty_0 = value;
}
inline static int32_t get_offset_of__rngAccess_12() { return static_cast<int32_t>(offsetof(Guid_t_StaticFields, ____rngAccess_12)); }
inline RuntimeObject * get__rngAccess_12() const { return ____rngAccess_12; }
inline RuntimeObject ** get_address_of__rngAccess_12() { return &____rngAccess_12; }
inline void set__rngAccess_12(RuntimeObject * value)
{
____rngAccess_12 = value;
Il2CppCodeGenWriteBarrier((void**)(&____rngAccess_12), (void*)value);
}
inline static int32_t get_offset_of__rng_13() { return static_cast<int32_t>(offsetof(Guid_t_StaticFields, ____rng_13)); }
inline RandomNumberGenerator_t2CB5440F189986116A2FA9F907AE52644047AC50 * get__rng_13() const { return ____rng_13; }
inline RandomNumberGenerator_t2CB5440F189986116A2FA9F907AE52644047AC50 ** get_address_of__rng_13() { return &____rng_13; }
inline void set__rng_13(RandomNumberGenerator_t2CB5440F189986116A2FA9F907AE52644047AC50 * value)
{
____rng_13 = value;
Il2CppCodeGenWriteBarrier((void**)(&____rng_13), (void*)value);
}
inline static int32_t get_offset_of__fastRng_14() { return static_cast<int32_t>(offsetof(Guid_t_StaticFields, ____fastRng_14)); }
inline RandomNumberGenerator_t2CB5440F189986116A2FA9F907AE52644047AC50 * get__fastRng_14() const { return ____fastRng_14; }
inline RandomNumberGenerator_t2CB5440F189986116A2FA9F907AE52644047AC50 ** get_address_of__fastRng_14() { return &____fastRng_14; }
inline void set__fastRng_14(RandomNumberGenerator_t2CB5440F189986116A2FA9F907AE52644047AC50 * value)
{
____fastRng_14 = value;
Il2CppCodeGenWriteBarrier((void**)(&____fastRng_14), (void*)value);
}
};
// System.Int32
struct Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046
{
public:
// System.Int32 System.Int32::m_value
int32_t ___m_value_0;
public:
inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046, ___m_value_0)); }
inline int32_t get_m_value_0() const { return ___m_value_0; }
inline int32_t* get_address_of_m_value_0() { return &___m_value_0; }
inline void set_m_value_0(int32_t value)
{
___m_value_0 = value;
}
};
// System.Int64
struct Int64_t378EE0D608BD3107E77238E85F30D2BBD46981F3
{
public:
// System.Int64 System.Int64::m_value
int64_t ___m_value_0;
public:
inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(Int64_t378EE0D608BD3107E77238E85F30D2BBD46981F3, ___m_value_0)); }
inline int64_t get_m_value_0() const { return ___m_value_0; }
inline int64_t* get_address_of_m_value_0() { return &___m_value_0; }
inline void set_m_value_0(int64_t value)
{
___m_value_0 = value;
}
};
// System.IntPtr
struct IntPtr_t
{
public:
// System.Void* System.IntPtr::m_value
void* ___m_value_0;
public:
inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(IntPtr_t, ___m_value_0)); }
inline void* get_m_value_0() const { return ___m_value_0; }
inline void** get_address_of_m_value_0() { return &___m_value_0; }
inline void set_m_value_0(void* value)
{
___m_value_0 = value;
}
};
struct IntPtr_t_StaticFields
{
public:
// System.IntPtr System.IntPtr::Zero
intptr_t ___Zero_1;
public:
inline static int32_t get_offset_of_Zero_1() { return static_cast<int32_t>(offsetof(IntPtr_t_StaticFields, ___Zero_1)); }
inline intptr_t get_Zero_1() const { return ___Zero_1; }
inline intptr_t* get_address_of_Zero_1() { return &___Zero_1; }
inline void set_Zero_1(intptr_t value)
{
___Zero_1 = value;
}
};
// System.Runtime.CompilerServices.IsReadOnlyAttribute
struct IsReadOnlyAttribute_t6C6EC35F1D85F983E1108A473F3FEBDD3CCBA525 : public Attribute_t037CA9D9F3B742C063DB364D2EEBBF9FC5772C71
{
public:
public:
};
// UnityEngine.Matrix4x4
struct Matrix4x4_tDE7FF4F2E2EA284F6EFE00D627789D0E5B8B4461
{
public:
// System.Single UnityEngine.Matrix4x4::m00
float ___m00_0;
// System.Single UnityEngine.Matrix4x4::m10
float ___m10_1;
// System.Single UnityEngine.Matrix4x4::m20
float ___m20_2;
// System.Single UnityEngine.Matrix4x4::m30
float ___m30_3;
// System.Single UnityEngine.Matrix4x4::m01
float ___m01_4;
// System.Single UnityEngine.Matrix4x4::m11
float ___m11_5;
// System.Single UnityEngine.Matrix4x4::m21
float ___m21_6;
// System.Single UnityEngine.Matrix4x4::m31
float ___m31_7;
// System.Single UnityEngine.Matrix4x4::m02
float ___m02_8;
// System.Single UnityEngine.Matrix4x4::m12
float ___m12_9;
// System.Single UnityEngine.Matrix4x4::m22
float ___m22_10;
// System.Single UnityEngine.Matrix4x4::m32
float ___m32_11;
// System.Single UnityEngine.Matrix4x4::m03
float ___m03_12;
// System.Single UnityEngine.Matrix4x4::m13
float ___m13_13;
// System.Single UnityEngine.Matrix4x4::m23
float ___m23_14;
// System.Single UnityEngine.Matrix4x4::m33
float ___m33_15;
public:
inline static int32_t get_offset_of_m00_0() { return static_cast<int32_t>(offsetof(Matrix4x4_tDE7FF4F2E2EA284F6EFE00D627789D0E5B8B4461, ___m00_0)); }
inline float get_m00_0() const { return ___m00_0; }
inline float* get_address_of_m00_0() { return &___m00_0; }
inline void set_m00_0(float value)
{
___m00_0 = value;
}
inline static int32_t get_offset_of_m10_1() { return static_cast<int32_t>(offsetof(Matrix4x4_tDE7FF4F2E2EA284F6EFE00D627789D0E5B8B4461, ___m10_1)); }
inline float get_m10_1() const { return ___m10_1; }
inline float* get_address_of_m10_1() { return &___m10_1; }
inline void set_m10_1(float value)
{
___m10_1 = value;
}
inline static int32_t get_offset_of_m20_2() { return static_cast<int32_t>(offsetof(Matrix4x4_tDE7FF4F2E2EA284F6EFE00D627789D0E5B8B4461, ___m20_2)); }
inline float get_m20_2() const { return ___m20_2; }
inline float* get_address_of_m20_2() { return &___m20_2; }
inline void set_m20_2(float value)
{
___m20_2 = value;
}
inline static int32_t get_offset_of_m30_3() { return static_cast<int32_t>(offsetof(Matrix4x4_tDE7FF4F2E2EA284F6EFE00D627789D0E5B8B4461, ___m30_3)); }
inline float get_m30_3() const { return ___m30_3; }
inline float* get_address_of_m30_3() { return &___m30_3; }
inline void set_m30_3(float value)
{
___m30_3 = value;
}
inline static int32_t get_offset_of_m01_4() { return static_cast<int32_t>(offsetof(Matrix4x4_tDE7FF4F2E2EA284F6EFE00D627789D0E5B8B4461, ___m01_4)); }
inline float get_m01_4() const { return ___m01_4; }
inline float* get_address_of_m01_4() { return &___m01_4; }
inline void set_m01_4(float value)
{
___m01_4 = value;
}
inline static int32_t get_offset_of_m11_5() { return static_cast<int32_t>(offsetof(Matrix4x4_tDE7FF4F2E2EA284F6EFE00D627789D0E5B8B4461, ___m11_5)); }
inline float get_m11_5() const { return ___m11_5; }
inline float* get_address_of_m11_5() { return &___m11_5; }
inline void set_m11_5(float value)
{
___m11_5 = value;
}
inline static int32_t get_offset_of_m21_6() { return static_cast<int32_t>(offsetof(Matrix4x4_tDE7FF4F2E2EA284F6EFE00D627789D0E5B8B4461, ___m21_6)); }
inline float get_m21_6() const { return ___m21_6; }
inline float* get_address_of_m21_6() { return &___m21_6; }
inline void set_m21_6(float value)
{
___m21_6 = value;
}
inline static int32_t get_offset_of_m31_7() { return static_cast<int32_t>(offsetof(Matrix4x4_tDE7FF4F2E2EA284F6EFE00D627789D0E5B8B4461, ___m31_7)); }
inline float get_m31_7() const { return ___m31_7; }
inline float* get_address_of_m31_7() { return &___m31_7; }
inline void set_m31_7(float value)
{
___m31_7 = value;
}
inline static int32_t get_offset_of_m02_8() { return static_cast<int32_t>(offsetof(Matrix4x4_tDE7FF4F2E2EA284F6EFE00D627789D0E5B8B4461, ___m02_8)); }
inline float get_m02_8() const { return ___m02_8; }
inline float* get_address_of_m02_8() { return &___m02_8; }
inline void set_m02_8(float value)
{
___m02_8 = value;
}
inline static int32_t get_offset_of_m12_9() { return static_cast<int32_t>(offsetof(Matrix4x4_tDE7FF4F2E2EA284F6EFE00D627789D0E5B8B4461, ___m12_9)); }
inline float get_m12_9() const { return ___m12_9; }
inline float* get_address_of_m12_9() { return &___m12_9; }
inline void set_m12_9(float value)
{
___m12_9 = value;
}
inline static int32_t get_offset_of_m22_10() { return static_cast<int32_t>(offsetof(Matrix4x4_tDE7FF4F2E2EA284F6EFE00D627789D0E5B8B4461, ___m22_10)); }
inline float get_m22_10() const { return ___m22_10; }
inline float* get_address_of_m22_10() { return &___m22_10; }
inline void set_m22_10(float value)
{
___m22_10 = value;
}
inline static int32_t get_offset_of_m32_11() { return static_cast<int32_t>(offsetof(Matrix4x4_tDE7FF4F2E2EA284F6EFE00D627789D0E5B8B4461, ___m32_11)); }
inline float get_m32_11() const { return ___m32_11; }
inline float* get_address_of_m32_11() { return &___m32_11; }
inline void set_m32_11(float value)
{
___m32_11 = value;
}
inline static int32_t get_offset_of_m03_12() { return static_cast<int32_t>(offsetof(Matrix4x4_tDE7FF4F2E2EA284F6EFE00D627789D0E5B8B4461, ___m03_12)); }
inline float get_m03_12() const { return ___m03_12; }
inline float* get_address_of_m03_12() { return &___m03_12; }
inline void set_m03_12(float value)
{
___m03_12 = value;
}
inline static int32_t get_offset_of_m13_13() { return static_cast<int32_t>(offsetof(Matrix4x4_tDE7FF4F2E2EA284F6EFE00D627789D0E5B8B4461, ___m13_13)); }
inline float get_m13_13() const { return ___m13_13; }
inline float* get_address_of_m13_13() { return &___m13_13; }
inline void set_m13_13(float value)
{
___m13_13 = value;
}
inline static int32_t get_offset_of_m23_14() { return static_cast<int32_t>(offsetof(Matrix4x4_tDE7FF4F2E2EA284F6EFE00D627789D0E5B8B4461, ___m23_14)); }
inline float get_m23_14() const { return ___m23_14; }
inline float* get_address_of_m23_14() { return &___m23_14; }
inline void set_m23_14(float value)
{
___m23_14 = value;
}
inline static int32_t get_offset_of_m33_15() { return static_cast<int32_t>(offsetof(Matrix4x4_tDE7FF4F2E2EA284F6EFE00D627789D0E5B8B4461, ___m33_15)); }
inline float get_m33_15() const { return ___m33_15; }
inline float* get_address_of_m33_15() { return &___m33_15; }
inline void set_m33_15(float value)
{
___m33_15 = value;
}
};
struct Matrix4x4_tDE7FF4F2E2EA284F6EFE00D627789D0E5B8B4461_StaticFields
{
public:
// UnityEngine.Matrix4x4 UnityEngine.Matrix4x4::zeroMatrix
Matrix4x4_tDE7FF4F2E2EA284F6EFE00D627789D0E5B8B4461 ___zeroMatrix_16;
// UnityEngine.Matrix4x4 UnityEngine.Matrix4x4::identityMatrix
Matrix4x4_tDE7FF4F2E2EA284F6EFE00D627789D0E5B8B4461 ___identityMatrix_17;
public:
inline static int32_t get_offset_of_zeroMatrix_16() { return static_cast<int32_t>(offsetof(Matrix4x4_tDE7FF4F2E2EA284F6EFE00D627789D0E5B8B4461_StaticFields, ___zeroMatrix_16)); }
inline Matrix4x4_tDE7FF4F2E2EA284F6EFE00D627789D0E5B8B4461 get_zeroMatrix_16() const { return ___zeroMatrix_16; }
inline Matrix4x4_tDE7FF4F2E2EA284F6EFE00D627789D0E5B8B4461 * get_address_of_zeroMatrix_16() { return &___zeroMatrix_16; }
inline void set_zeroMatrix_16(Matrix4x4_tDE7FF4F2E2EA284F6EFE00D627789D0E5B8B4461 value)
{
___zeroMatrix_16 = value;
}
inline static int32_t get_offset_of_identityMatrix_17() { return static_cast<int32_t>(offsetof(Matrix4x4_tDE7FF4F2E2EA284F6EFE00D627789D0E5B8B4461_StaticFields, ___identityMatrix_17)); }
inline Matrix4x4_tDE7FF4F2E2EA284F6EFE00D627789D0E5B8B4461 get_identityMatrix_17() const { return ___identityMatrix_17; }
inline Matrix4x4_tDE7FF4F2E2EA284F6EFE00D627789D0E5B8B4461 * get_address_of_identityMatrix_17() { return &___identityMatrix_17; }
inline void set_identityMatrix_17(Matrix4x4_tDE7FF4F2E2EA284F6EFE00D627789D0E5B8B4461 value)
{
___identityMatrix_17 = value;
}
};
// UnityEngine.XR.ARSubsystems.MutableRuntimeReferenceImageLibrary
struct MutableRuntimeReferenceImageLibrary_t887376CE46B48DEEC6E8655D429BADCA6E3C7EAA : public RuntimeReferenceImageLibrary_t76072EC5637B1F0F8FD0A1BFD3AEAF954D6F8D6B
{
public:
public:
};
// UnityEngine.Quaternion
struct Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4
{
public:
// System.Single UnityEngine.Quaternion::x
float ___x_0;
// System.Single UnityEngine.Quaternion::y
float ___y_1;
// System.Single UnityEngine.Quaternion::z
float ___z_2;
// System.Single UnityEngine.Quaternion::w
float ___w_3;
public:
inline static int32_t get_offset_of_x_0() { return static_cast<int32_t>(offsetof(Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4, ___x_0)); }
inline float get_x_0() const { return ___x_0; }
inline float* get_address_of_x_0() { return &___x_0; }
inline void set_x_0(float value)
{
___x_0 = value;
}
inline static int32_t get_offset_of_y_1() { return static_cast<int32_t>(offsetof(Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4, ___y_1)); }
inline float get_y_1() const { return ___y_1; }
inline float* get_address_of_y_1() { return &___y_1; }
inline void set_y_1(float value)
{
___y_1 = value;
}
inline static int32_t get_offset_of_z_2() { return static_cast<int32_t>(offsetof(Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4, ___z_2)); }
inline float get_z_2() const { return ___z_2; }
inline float* get_address_of_z_2() { return &___z_2; }
inline void set_z_2(float value)
{
___z_2 = value;
}
inline static int32_t get_offset_of_w_3() { return static_cast<int32_t>(offsetof(Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4, ___w_3)); }
inline float get_w_3() const { return ___w_3; }
inline float* get_address_of_w_3() { return &___w_3; }
inline void set_w_3(float value)
{
___w_3 = value;
}
};
struct Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4_StaticFields
{
public:
// UnityEngine.Quaternion UnityEngine.Quaternion::identityQuaternion
Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 ___identityQuaternion_4;
public:
inline static int32_t get_offset_of_identityQuaternion_4() { return static_cast<int32_t>(offsetof(Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4_StaticFields, ___identityQuaternion_4)); }
inline Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 get_identityQuaternion_4() const { return ___identityQuaternion_4; }
inline Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 * get_address_of_identityQuaternion_4() { return &___identityQuaternion_4; }
inline void set_identityQuaternion_4(Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 value)
{
___identityQuaternion_4 = value;
}
};
// UnityEngine.RectInt
struct RectInt_tE7B8105A280C1AC73A4157ED41F9B86C9BD91E49
{
public:
// System.Int32 UnityEngine.RectInt::m_XMin
int32_t ___m_XMin_0;
// System.Int32 UnityEngine.RectInt::m_YMin
int32_t ___m_YMin_1;
// System.Int32 UnityEngine.RectInt::m_Width
int32_t ___m_Width_2;
// System.Int32 UnityEngine.RectInt::m_Height
int32_t ___m_Height_3;
public:
inline static int32_t get_offset_of_m_XMin_0() { return static_cast<int32_t>(offsetof(RectInt_tE7B8105A280C1AC73A4157ED41F9B86C9BD91E49, ___m_XMin_0)); }
inline int32_t get_m_XMin_0() const { return ___m_XMin_0; }
inline int32_t* get_address_of_m_XMin_0() { return &___m_XMin_0; }
inline void set_m_XMin_0(int32_t value)
{
___m_XMin_0 = value;
}
inline static int32_t get_offset_of_m_YMin_1() { return static_cast<int32_t>(offsetof(RectInt_tE7B8105A280C1AC73A4157ED41F9B86C9BD91E49, ___m_YMin_1)); }
inline int32_t get_m_YMin_1() const { return ___m_YMin_1; }
inline int32_t* get_address_of_m_YMin_1() { return &___m_YMin_1; }
inline void set_m_YMin_1(int32_t value)
{
___m_YMin_1 = value;
}
inline static int32_t get_offset_of_m_Width_2() { return static_cast<int32_t>(offsetof(RectInt_tE7B8105A280C1AC73A4157ED41F9B86C9BD91E49, ___m_Width_2)); }
inline int32_t get_m_Width_2() const { return ___m_Width_2; }
inline int32_t* get_address_of_m_Width_2() { return &___m_Width_2; }
inline void set_m_Width_2(int32_t value)
{
___m_Width_2 = value;
}
inline static int32_t get_offset_of_m_Height_3() { return static_cast<int32_t>(offsetof(RectInt_tE7B8105A280C1AC73A4157ED41F9B86C9BD91E49, ___m_Height_3)); }
inline int32_t get_m_Height_3() const { return ___m_Height_3; }
inline int32_t* get_address_of_m_Height_3() { return &___m_Height_3; }
inline void set_m_Height_3(int32_t value)
{
___m_Height_3 = value;
}
};
// UnityEngine.XR.ARSubsystems.ScopedProfiler
struct ScopedProfiler_t2D56ACC439533AC07E255065961834AAD04BE52E
{
public:
union
{
struct
{
};
uint8_t ScopedProfiler_t2D56ACC439533AC07E255065961834AAD04BE52E__padding[1];
};
public:
};
// UnityEngine.XR.ARSubsystems.SerializableGuid
struct SerializableGuid_t5F8E8B4FF33F91AF9B16C6CC3F75AE00014505CC
{
public:
// System.UInt64 UnityEngine.XR.ARSubsystems.SerializableGuid::m_GuidLow
uint64_t ___m_GuidLow_1;
// System.UInt64 UnityEngine.XR.ARSubsystems.SerializableGuid::m_GuidHigh
uint64_t ___m_GuidHigh_2;
public:
inline static int32_t get_offset_of_m_GuidLow_1() { return static_cast<int32_t>(offsetof(SerializableGuid_t5F8E8B4FF33F91AF9B16C6CC3F75AE00014505CC, ___m_GuidLow_1)); }
inline uint64_t get_m_GuidLow_1() const { return ___m_GuidLow_1; }
inline uint64_t* get_address_of_m_GuidLow_1() { return &___m_GuidLow_1; }
inline void set_m_GuidLow_1(uint64_t value)
{
___m_GuidLow_1 = value;
}
inline static int32_t get_offset_of_m_GuidHigh_2() { return static_cast<int32_t>(offsetof(SerializableGuid_t5F8E8B4FF33F91AF9B16C6CC3F75AE00014505CC, ___m_GuidHigh_2)); }
inline uint64_t get_m_GuidHigh_2() const { return ___m_GuidHigh_2; }
inline uint64_t* get_address_of_m_GuidHigh_2() { return &___m_GuidHigh_2; }
inline void set_m_GuidHigh_2(uint64_t value)
{
___m_GuidHigh_2 = value;
}
};
struct SerializableGuid_t5F8E8B4FF33F91AF9B16C6CC3F75AE00014505CC_StaticFields
{
public:
// UnityEngine.XR.ARSubsystems.SerializableGuid UnityEngine.XR.ARSubsystems.SerializableGuid::k_Empty
SerializableGuid_t5F8E8B4FF33F91AF9B16C6CC3F75AE00014505CC ___k_Empty_0;
public:
inline static int32_t get_offset_of_k_Empty_0() { return static_cast<int32_t>(offsetof(SerializableGuid_t5F8E8B4FF33F91AF9B16C6CC3F75AE00014505CC_StaticFields, ___k_Empty_0)); }
inline SerializableGuid_t5F8E8B4FF33F91AF9B16C6CC3F75AE00014505CC get_k_Empty_0() const { return ___k_Empty_0; }
inline SerializableGuid_t5F8E8B4FF33F91AF9B16C6CC3F75AE00014505CC * get_address_of_k_Empty_0() { return &___k_Empty_0; }
inline void set_k_Empty_0(SerializableGuid_t5F8E8B4FF33F91AF9B16C6CC3F75AE00014505CC value)
{
___k_Empty_0 = value;
}
};
// System.Single
struct Single_tE07797BA3C98D4CA9B5A19413C19A76688AB899E
{
public:
// System.Single System.Single::m_value
float ___m_value_0;
public:
inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(Single_tE07797BA3C98D4CA9B5A19413C19A76688AB899E, ___m_value_0)); }
inline float get_m_value_0() const { return ___m_value_0; }
inline float* get_address_of_m_value_0() { return &___m_value_0; }
inline void set_m_value_0(float value)
{
___m_value_0 = value;
}
};
// UnityEngine.Rendering.SphericalHarmonicsL2
struct SphericalHarmonicsL2_tD2EC2ADCA26B9BE05036C3ABCF3CC049EC73EA64
{
public:
// System.Single UnityEngine.Rendering.SphericalHarmonicsL2::shr0
float ___shr0_0;
// System.Single UnityEngine.Rendering.SphericalHarmonicsL2::shr1
float ___shr1_1;
// System.Single UnityEngine.Rendering.SphericalHarmonicsL2::shr2
float ___shr2_2;
// System.Single UnityEngine.Rendering.SphericalHarmonicsL2::shr3
float ___shr3_3;
// System.Single UnityEngine.Rendering.SphericalHarmonicsL2::shr4
float ___shr4_4;
// System.Single UnityEngine.Rendering.SphericalHarmonicsL2::shr5
float ___shr5_5;
// System.Single UnityEngine.Rendering.SphericalHarmonicsL2::shr6
float ___shr6_6;
// System.Single UnityEngine.Rendering.SphericalHarmonicsL2::shr7
float ___shr7_7;
// System.Single UnityEngine.Rendering.SphericalHarmonicsL2::shr8
float ___shr8_8;
// System.Single UnityEngine.Rendering.SphericalHarmonicsL2::shg0
float ___shg0_9;
// System.Single UnityEngine.Rendering.SphericalHarmonicsL2::shg1
float ___shg1_10;
// System.Single UnityEngine.Rendering.SphericalHarmonicsL2::shg2
float ___shg2_11;
// System.Single UnityEngine.Rendering.SphericalHarmonicsL2::shg3
float ___shg3_12;
// System.Single UnityEngine.Rendering.SphericalHarmonicsL2::shg4
float ___shg4_13;
// System.Single UnityEngine.Rendering.SphericalHarmonicsL2::shg5
float ___shg5_14;
// System.Single UnityEngine.Rendering.SphericalHarmonicsL2::shg6
float ___shg6_15;
// System.Single UnityEngine.Rendering.SphericalHarmonicsL2::shg7
float ___shg7_16;
// System.Single UnityEngine.Rendering.SphericalHarmonicsL2::shg8
float ___shg8_17;
// System.Single UnityEngine.Rendering.SphericalHarmonicsL2::shb0
float ___shb0_18;
// System.Single UnityEngine.Rendering.SphericalHarmonicsL2::shb1
float ___shb1_19;
// System.Single UnityEngine.Rendering.SphericalHarmonicsL2::shb2
float ___shb2_20;
// System.Single UnityEngine.Rendering.SphericalHarmonicsL2::shb3
float ___shb3_21;
// System.Single UnityEngine.Rendering.SphericalHarmonicsL2::shb4
float ___shb4_22;
// System.Single UnityEngine.Rendering.SphericalHarmonicsL2::shb5
float ___shb5_23;
// System.Single UnityEngine.Rendering.SphericalHarmonicsL2::shb6
float ___shb6_24;
// System.Single UnityEngine.Rendering.SphericalHarmonicsL2::shb7
float ___shb7_25;
// System.Single UnityEngine.Rendering.SphericalHarmonicsL2::shb8
float ___shb8_26;
public:
inline static int32_t get_offset_of_shr0_0() { return static_cast<int32_t>(offsetof(SphericalHarmonicsL2_tD2EC2ADCA26B9BE05036C3ABCF3CC049EC73EA64, ___shr0_0)); }
inline float get_shr0_0() const { return ___shr0_0; }
inline float* get_address_of_shr0_0() { return &___shr0_0; }
inline void set_shr0_0(float value)
{
___shr0_0 = value;
}
inline static int32_t get_offset_of_shr1_1() { return static_cast<int32_t>(offsetof(SphericalHarmonicsL2_tD2EC2ADCA26B9BE05036C3ABCF3CC049EC73EA64, ___shr1_1)); }
inline float get_shr1_1() const { return ___shr1_1; }
inline float* get_address_of_shr1_1() { return &___shr1_1; }
inline void set_shr1_1(float value)
{
___shr1_1 = value;
}
inline static int32_t get_offset_of_shr2_2() { return static_cast<int32_t>(offsetof(SphericalHarmonicsL2_tD2EC2ADCA26B9BE05036C3ABCF3CC049EC73EA64, ___shr2_2)); }
inline float get_shr2_2() const { return ___shr2_2; }
inline float* get_address_of_shr2_2() { return &___shr2_2; }
inline void set_shr2_2(float value)
{
___shr2_2 = value;
}
inline static int32_t get_offset_of_shr3_3() { return static_cast<int32_t>(offsetof(SphericalHarmonicsL2_tD2EC2ADCA26B9BE05036C3ABCF3CC049EC73EA64, ___shr3_3)); }
inline float get_shr3_3() const { return ___shr3_3; }
inline float* get_address_of_shr3_3() { return &___shr3_3; }
inline void set_shr3_3(float value)
{
___shr3_3 = value;
}
inline static int32_t get_offset_of_shr4_4() { return static_cast<int32_t>(offsetof(SphericalHarmonicsL2_tD2EC2ADCA26B9BE05036C3ABCF3CC049EC73EA64, ___shr4_4)); }
inline float get_shr4_4() const { return ___shr4_4; }
inline float* get_address_of_shr4_4() { return &___shr4_4; }
inline void set_shr4_4(float value)
{
___shr4_4 = value;
}
inline static int32_t get_offset_of_shr5_5() { return static_cast<int32_t>(offsetof(SphericalHarmonicsL2_tD2EC2ADCA26B9BE05036C3ABCF3CC049EC73EA64, ___shr5_5)); }
inline float get_shr5_5() const { return ___shr5_5; }
inline float* get_address_of_shr5_5() { return &___shr5_5; }
inline void set_shr5_5(float value)
{
___shr5_5 = value;
}
inline static int32_t get_offset_of_shr6_6() { return static_cast<int32_t>(offsetof(SphericalHarmonicsL2_tD2EC2ADCA26B9BE05036C3ABCF3CC049EC73EA64, ___shr6_6)); }
inline float get_shr6_6() const { return ___shr6_6; }
inline float* get_address_of_shr6_6() { return &___shr6_6; }
inline void set_shr6_6(float value)
{
___shr6_6 = value;
}
inline static int32_t get_offset_of_shr7_7() { return static_cast<int32_t>(offsetof(SphericalHarmonicsL2_tD2EC2ADCA26B9BE05036C3ABCF3CC049EC73EA64, ___shr7_7)); }
inline float get_shr7_7() const { return ___shr7_7; }
inline float* get_address_of_shr7_7() { return &___shr7_7; }
inline void set_shr7_7(float value)
{
___shr7_7 = value;
}
inline static int32_t get_offset_of_shr8_8() { return static_cast<int32_t>(offsetof(SphericalHarmonicsL2_tD2EC2ADCA26B9BE05036C3ABCF3CC049EC73EA64, ___shr8_8)); }
inline float get_shr8_8() const { return ___shr8_8; }
inline float* get_address_of_shr8_8() { return &___shr8_8; }
inline void set_shr8_8(float value)
{
___shr8_8 = value;
}
inline static int32_t get_offset_of_shg0_9() { return static_cast<int32_t>(offsetof(SphericalHarmonicsL2_tD2EC2ADCA26B9BE05036C3ABCF3CC049EC73EA64, ___shg0_9)); }
inline float get_shg0_9() const { return ___shg0_9; }
inline float* get_address_of_shg0_9() { return &___shg0_9; }
inline void set_shg0_9(float value)
{
___shg0_9 = value;
}
inline static int32_t get_offset_of_shg1_10() { return static_cast<int32_t>(offsetof(SphericalHarmonicsL2_tD2EC2ADCA26B9BE05036C3ABCF3CC049EC73EA64, ___shg1_10)); }
inline float get_shg1_10() const { return ___shg1_10; }
inline float* get_address_of_shg1_10() { return &___shg1_10; }
inline void set_shg1_10(float value)
{
___shg1_10 = value;
}
inline static int32_t get_offset_of_shg2_11() { return static_cast<int32_t>(offsetof(SphericalHarmonicsL2_tD2EC2ADCA26B9BE05036C3ABCF3CC049EC73EA64, ___shg2_11)); }
inline float get_shg2_11() const { return ___shg2_11; }
inline float* get_address_of_shg2_11() { return &___shg2_11; }
inline void set_shg2_11(float value)
{
___shg2_11 = value;
}
inline static int32_t get_offset_of_shg3_12() { return static_cast<int32_t>(offsetof(SphericalHarmonicsL2_tD2EC2ADCA26B9BE05036C3ABCF3CC049EC73EA64, ___shg3_12)); }
inline float get_shg3_12() const { return ___shg3_12; }
inline float* get_address_of_shg3_12() { return &___shg3_12; }
inline void set_shg3_12(float value)
{
___shg3_12 = value;
}
inline static int32_t get_offset_of_shg4_13() { return static_cast<int32_t>(offsetof(SphericalHarmonicsL2_tD2EC2ADCA26B9BE05036C3ABCF3CC049EC73EA64, ___shg4_13)); }
inline float get_shg4_13() const { return ___shg4_13; }
inline float* get_address_of_shg4_13() { return &___shg4_13; }
inline void set_shg4_13(float value)
{
___shg4_13 = value;
}
inline static int32_t get_offset_of_shg5_14() { return static_cast<int32_t>(offsetof(SphericalHarmonicsL2_tD2EC2ADCA26B9BE05036C3ABCF3CC049EC73EA64, ___shg5_14)); }
inline float get_shg5_14() const { return ___shg5_14; }
inline float* get_address_of_shg5_14() { return &___shg5_14; }
inline void set_shg5_14(float value)
{
___shg5_14 = value;
}
inline static int32_t get_offset_of_shg6_15() { return static_cast<int32_t>(offsetof(SphericalHarmonicsL2_tD2EC2ADCA26B9BE05036C3ABCF3CC049EC73EA64, ___shg6_15)); }
inline float get_shg6_15() const { return ___shg6_15; }
inline float* get_address_of_shg6_15() { return &___shg6_15; }
inline void set_shg6_15(float value)
{
___shg6_15 = value;
}
inline static int32_t get_offset_of_shg7_16() { return static_cast<int32_t>(offsetof(SphericalHarmonicsL2_tD2EC2ADCA26B9BE05036C3ABCF3CC049EC73EA64, ___shg7_16)); }
inline float get_shg7_16() const { return ___shg7_16; }
inline float* get_address_of_shg7_16() { return &___shg7_16; }
inline void set_shg7_16(float value)
{
___shg7_16 = value;
}
inline static int32_t get_offset_of_shg8_17() { return static_cast<int32_t>(offsetof(SphericalHarmonicsL2_tD2EC2ADCA26B9BE05036C3ABCF3CC049EC73EA64, ___shg8_17)); }
inline float get_shg8_17() const { return ___shg8_17; }
inline float* get_address_of_shg8_17() { return &___shg8_17; }
inline void set_shg8_17(float value)
{
___shg8_17 = value;
}
inline static int32_t get_offset_of_shb0_18() { return static_cast<int32_t>(offsetof(SphericalHarmonicsL2_tD2EC2ADCA26B9BE05036C3ABCF3CC049EC73EA64, ___shb0_18)); }
inline float get_shb0_18() const { return ___shb0_18; }
inline float* get_address_of_shb0_18() { return &___shb0_18; }
inline void set_shb0_18(float value)
{
___shb0_18 = value;
}
inline static int32_t get_offset_of_shb1_19() { return static_cast<int32_t>(offsetof(SphericalHarmonicsL2_tD2EC2ADCA26B9BE05036C3ABCF3CC049EC73EA64, ___shb1_19)); }
inline float get_shb1_19() const { return ___shb1_19; }
inline float* get_address_of_shb1_19() { return &___shb1_19; }
inline void set_shb1_19(float value)
{
___shb1_19 = value;
}
inline static int32_t get_offset_of_shb2_20() { return static_cast<int32_t>(offsetof(SphericalHarmonicsL2_tD2EC2ADCA26B9BE05036C3ABCF3CC049EC73EA64, ___shb2_20)); }
inline float get_shb2_20() const { return ___shb2_20; }
inline float* get_address_of_shb2_20() { return &___shb2_20; }
inline void set_shb2_20(float value)
{
___shb2_20 = value;
}
inline static int32_t get_offset_of_shb3_21() { return static_cast<int32_t>(offsetof(SphericalHarmonicsL2_tD2EC2ADCA26B9BE05036C3ABCF3CC049EC73EA64, ___shb3_21)); }
inline float get_shb3_21() const { return ___shb3_21; }
inline float* get_address_of_shb3_21() { return &___shb3_21; }
inline void set_shb3_21(float value)
{
___shb3_21 = value;
}
inline static int32_t get_offset_of_shb4_22() { return static_cast<int32_t>(offsetof(SphericalHarmonicsL2_tD2EC2ADCA26B9BE05036C3ABCF3CC049EC73EA64, ___shb4_22)); }
inline float get_shb4_22() const { return ___shb4_22; }
inline float* get_address_of_shb4_22() { return &___shb4_22; }
inline void set_shb4_22(float value)
{
___shb4_22 = value;
}
inline static int32_t get_offset_of_shb5_23() { return static_cast<int32_t>(offsetof(SphericalHarmonicsL2_tD2EC2ADCA26B9BE05036C3ABCF3CC049EC73EA64, ___shb5_23)); }
inline float get_shb5_23() const { return ___shb5_23; }
inline float* get_address_of_shb5_23() { return &___shb5_23; }
inline void set_shb5_23(float value)
{
___shb5_23 = value;
}
inline static int32_t get_offset_of_shb6_24() { return static_cast<int32_t>(offsetof(SphericalHarmonicsL2_tD2EC2ADCA26B9BE05036C3ABCF3CC049EC73EA64, ___shb6_24)); }
inline float get_shb6_24() const { return ___shb6_24; }
inline float* get_address_of_shb6_24() { return &___shb6_24; }
inline void set_shb6_24(float value)
{
___shb6_24 = value;
}
inline static int32_t get_offset_of_shb7_25() { return static_cast<int32_t>(offsetof(SphericalHarmonicsL2_tD2EC2ADCA26B9BE05036C3ABCF3CC049EC73EA64, ___shb7_25)); }
inline float get_shb7_25() const { return ___shb7_25; }
inline float* get_address_of_shb7_25() { return &___shb7_25; }
inline void set_shb7_25(float value)
{
___shb7_25 = value;
}
inline static int32_t get_offset_of_shb8_26() { return static_cast<int32_t>(offsetof(SphericalHarmonicsL2_tD2EC2ADCA26B9BE05036C3ABCF3CC049EC73EA64, ___shb8_26)); }
inline float get_shb8_26() const { return ___shb8_26; }
inline float* get_address_of_shb8_26() { return &___shb8_26; }
inline void set_shb8_26(float value)
{
___shb8_26 = value;
}
};
// UnityEngine.XR.ARSubsystems.TrackableId
struct TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B
{
public:
// System.UInt64 UnityEngine.XR.ARSubsystems.TrackableId::m_SubId1
uint64_t ___m_SubId1_2;
// System.UInt64 UnityEngine.XR.ARSubsystems.TrackableId::m_SubId2
uint64_t ___m_SubId2_3;
public:
inline static int32_t get_offset_of_m_SubId1_2() { return static_cast<int32_t>(offsetof(TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B, ___m_SubId1_2)); }
inline uint64_t get_m_SubId1_2() const { return ___m_SubId1_2; }
inline uint64_t* get_address_of_m_SubId1_2() { return &___m_SubId1_2; }
inline void set_m_SubId1_2(uint64_t value)
{
___m_SubId1_2 = value;
}
inline static int32_t get_offset_of_m_SubId2_3() { return static_cast<int32_t>(offsetof(TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B, ___m_SubId2_3)); }
inline uint64_t get_m_SubId2_3() const { return ___m_SubId2_3; }
inline uint64_t* get_address_of_m_SubId2_3() { return &___m_SubId2_3; }
inline void set_m_SubId2_3(uint64_t value)
{
___m_SubId2_3 = value;
}
};
struct TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B_StaticFields
{
public:
// System.Text.RegularExpressions.Regex UnityEngine.XR.ARSubsystems.TrackableId::s_TrackableIdRegex
Regex_t90F443D398F44965EA241A652ED75DF5BA072A1F * ___s_TrackableIdRegex_0;
// UnityEngine.XR.ARSubsystems.TrackableId UnityEngine.XR.ARSubsystems.TrackableId::s_InvalidId
TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B ___s_InvalidId_1;
public:
inline static int32_t get_offset_of_s_TrackableIdRegex_0() { return static_cast<int32_t>(offsetof(TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B_StaticFields, ___s_TrackableIdRegex_0)); }
inline Regex_t90F443D398F44965EA241A652ED75DF5BA072A1F * get_s_TrackableIdRegex_0() const { return ___s_TrackableIdRegex_0; }
inline Regex_t90F443D398F44965EA241A652ED75DF5BA072A1F ** get_address_of_s_TrackableIdRegex_0() { return &___s_TrackableIdRegex_0; }
inline void set_s_TrackableIdRegex_0(Regex_t90F443D398F44965EA241A652ED75DF5BA072A1F * value)
{
___s_TrackableIdRegex_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_TrackableIdRegex_0), (void*)value);
}
inline static int32_t get_offset_of_s_InvalidId_1() { return static_cast<int32_t>(offsetof(TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B_StaticFields, ___s_InvalidId_1)); }
inline TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B get_s_InvalidId_1() const { return ___s_InvalidId_1; }
inline TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B * get_address_of_s_InvalidId_1() { return &___s_InvalidId_1; }
inline void set_s_InvalidId_1(TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B value)
{
___s_InvalidId_1 = value;
}
};
// System.UInt16
struct UInt16_t894EA9D4FB7C799B244E7BBF2DF0EEEDBC77A8BD
{
public:
// System.UInt16 System.UInt16::m_value
uint16_t ___m_value_0;
public:
inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(UInt16_t894EA9D4FB7C799B244E7BBF2DF0EEEDBC77A8BD, ___m_value_0)); }
inline uint16_t get_m_value_0() const { return ___m_value_0; }
inline uint16_t* get_address_of_m_value_0() { return &___m_value_0; }
inline void set_m_value_0(uint16_t value)
{
___m_value_0 = value;
}
};
// System.UInt32
struct UInt32_tE60352A06233E4E69DD198BCC67142159F686B15
{
public:
// System.UInt32 System.UInt32::m_value
uint32_t ___m_value_0;
public:
inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(UInt32_tE60352A06233E4E69DD198BCC67142159F686B15, ___m_value_0)); }
inline uint32_t get_m_value_0() const { return ___m_value_0; }
inline uint32_t* get_address_of_m_value_0() { return &___m_value_0; }
inline void set_m_value_0(uint32_t value)
{
___m_value_0 = value;
}
};
// System.UInt64
struct UInt64_tEC57511B3E3CA2DBA1BEBD434C6983E31C943281
{
public:
// System.UInt64 System.UInt64::m_value
uint64_t ___m_value_0;
public:
inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(UInt64_tEC57511B3E3CA2DBA1BEBD434C6983E31C943281, ___m_value_0)); }
inline uint64_t get_m_value_0() const { return ___m_value_0; }
inline uint64_t* get_address_of_m_value_0() { return &___m_value_0; }
inline void set_m_value_0(uint64_t value)
{
___m_value_0 = value;
}
};
// UnityEngine.Vector2
struct Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9
{
public:
// System.Single UnityEngine.Vector2::x
float ___x_0;
// System.Single UnityEngine.Vector2::y
float ___y_1;
public:
inline static int32_t get_offset_of_x_0() { return static_cast<int32_t>(offsetof(Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9, ___x_0)); }
inline float get_x_0() const { return ___x_0; }
inline float* get_address_of_x_0() { return &___x_0; }
inline void set_x_0(float value)
{
___x_0 = value;
}
inline static int32_t get_offset_of_y_1() { return static_cast<int32_t>(offsetof(Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9, ___y_1)); }
inline float get_y_1() const { return ___y_1; }
inline float* get_address_of_y_1() { return &___y_1; }
inline void set_y_1(float value)
{
___y_1 = value;
}
};
struct Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9_StaticFields
{
public:
// UnityEngine.Vector2 UnityEngine.Vector2::zeroVector
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___zeroVector_2;
// UnityEngine.Vector2 UnityEngine.Vector2::oneVector
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___oneVector_3;
// UnityEngine.Vector2 UnityEngine.Vector2::upVector
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___upVector_4;
// UnityEngine.Vector2 UnityEngine.Vector2::downVector
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___downVector_5;
// UnityEngine.Vector2 UnityEngine.Vector2::leftVector
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___leftVector_6;
// UnityEngine.Vector2 UnityEngine.Vector2::rightVector
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___rightVector_7;
// UnityEngine.Vector2 UnityEngine.Vector2::positiveInfinityVector
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___positiveInfinityVector_8;
// UnityEngine.Vector2 UnityEngine.Vector2::negativeInfinityVector
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___negativeInfinityVector_9;
public:
inline static int32_t get_offset_of_zeroVector_2() { return static_cast<int32_t>(offsetof(Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9_StaticFields, ___zeroVector_2)); }
inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 get_zeroVector_2() const { return ___zeroVector_2; }
inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 * get_address_of_zeroVector_2() { return &___zeroVector_2; }
inline void set_zeroVector_2(Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 value)
{
___zeroVector_2 = value;
}
inline static int32_t get_offset_of_oneVector_3() { return static_cast<int32_t>(offsetof(Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9_StaticFields, ___oneVector_3)); }
inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 get_oneVector_3() const { return ___oneVector_3; }
inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 * get_address_of_oneVector_3() { return &___oneVector_3; }
inline void set_oneVector_3(Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 value)
{
___oneVector_3 = value;
}
inline static int32_t get_offset_of_upVector_4() { return static_cast<int32_t>(offsetof(Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9_StaticFields, ___upVector_4)); }
inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 get_upVector_4() const { return ___upVector_4; }
inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 * get_address_of_upVector_4() { return &___upVector_4; }
inline void set_upVector_4(Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 value)
{
___upVector_4 = value;
}
inline static int32_t get_offset_of_downVector_5() { return static_cast<int32_t>(offsetof(Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9_StaticFields, ___downVector_5)); }
inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 get_downVector_5() const { return ___downVector_5; }
inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 * get_address_of_downVector_5() { return &___downVector_5; }
inline void set_downVector_5(Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 value)
{
___downVector_5 = value;
}
inline static int32_t get_offset_of_leftVector_6() { return static_cast<int32_t>(offsetof(Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9_StaticFields, ___leftVector_6)); }
inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 get_leftVector_6() const { return ___leftVector_6; }
inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 * get_address_of_leftVector_6() { return &___leftVector_6; }
inline void set_leftVector_6(Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 value)
{
___leftVector_6 = value;
}
inline static int32_t get_offset_of_rightVector_7() { return static_cast<int32_t>(offsetof(Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9_StaticFields, ___rightVector_7)); }
inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 get_rightVector_7() const { return ___rightVector_7; }
inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 * get_address_of_rightVector_7() { return &___rightVector_7; }
inline void set_rightVector_7(Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 value)
{
___rightVector_7 = value;
}
inline static int32_t get_offset_of_positiveInfinityVector_8() { return static_cast<int32_t>(offsetof(Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9_StaticFields, ___positiveInfinityVector_8)); }
inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 get_positiveInfinityVector_8() const { return ___positiveInfinityVector_8; }
inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 * get_address_of_positiveInfinityVector_8() { return &___positiveInfinityVector_8; }
inline void set_positiveInfinityVector_8(Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 value)
{
___positiveInfinityVector_8 = value;
}
inline static int32_t get_offset_of_negativeInfinityVector_9() { return static_cast<int32_t>(offsetof(Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9_StaticFields, ___negativeInfinityVector_9)); }
inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 get_negativeInfinityVector_9() const { return ___negativeInfinityVector_9; }
inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 * get_address_of_negativeInfinityVector_9() { return &___negativeInfinityVector_9; }
inline void set_negativeInfinityVector_9(Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 value)
{
___negativeInfinityVector_9 = value;
}
};
// UnityEngine.Vector2Int
struct Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9
{
public:
// System.Int32 UnityEngine.Vector2Int::m_X
int32_t ___m_X_0;
// System.Int32 UnityEngine.Vector2Int::m_Y
int32_t ___m_Y_1;
public:
inline static int32_t get_offset_of_m_X_0() { return static_cast<int32_t>(offsetof(Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9, ___m_X_0)); }
inline int32_t get_m_X_0() const { return ___m_X_0; }
inline int32_t* get_address_of_m_X_0() { return &___m_X_0; }
inline void set_m_X_0(int32_t value)
{
___m_X_0 = value;
}
inline static int32_t get_offset_of_m_Y_1() { return static_cast<int32_t>(offsetof(Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9, ___m_Y_1)); }
inline int32_t get_m_Y_1() const { return ___m_Y_1; }
inline int32_t* get_address_of_m_Y_1() { return &___m_Y_1; }
inline void set_m_Y_1(int32_t value)
{
___m_Y_1 = value;
}
};
struct Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9_StaticFields
{
public:
// UnityEngine.Vector2Int UnityEngine.Vector2Int::s_Zero
Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9 ___s_Zero_2;
// UnityEngine.Vector2Int UnityEngine.Vector2Int::s_One
Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9 ___s_One_3;
// UnityEngine.Vector2Int UnityEngine.Vector2Int::s_Up
Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9 ___s_Up_4;
// UnityEngine.Vector2Int UnityEngine.Vector2Int::s_Down
Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9 ___s_Down_5;
// UnityEngine.Vector2Int UnityEngine.Vector2Int::s_Left
Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9 ___s_Left_6;
// UnityEngine.Vector2Int UnityEngine.Vector2Int::s_Right
Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9 ___s_Right_7;
public:
inline static int32_t get_offset_of_s_Zero_2() { return static_cast<int32_t>(offsetof(Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9_StaticFields, ___s_Zero_2)); }
inline Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9 get_s_Zero_2() const { return ___s_Zero_2; }
inline Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9 * get_address_of_s_Zero_2() { return &___s_Zero_2; }
inline void set_s_Zero_2(Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9 value)
{
___s_Zero_2 = value;
}
inline static int32_t get_offset_of_s_One_3() { return static_cast<int32_t>(offsetof(Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9_StaticFields, ___s_One_3)); }
inline Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9 get_s_One_3() const { return ___s_One_3; }
inline Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9 * get_address_of_s_One_3() { return &___s_One_3; }
inline void set_s_One_3(Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9 value)
{
___s_One_3 = value;
}
inline static int32_t get_offset_of_s_Up_4() { return static_cast<int32_t>(offsetof(Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9_StaticFields, ___s_Up_4)); }
inline Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9 get_s_Up_4() const { return ___s_Up_4; }
inline Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9 * get_address_of_s_Up_4() { return &___s_Up_4; }
inline void set_s_Up_4(Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9 value)
{
___s_Up_4 = value;
}
inline static int32_t get_offset_of_s_Down_5() { return static_cast<int32_t>(offsetof(Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9_StaticFields, ___s_Down_5)); }
inline Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9 get_s_Down_5() const { return ___s_Down_5; }
inline Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9 * get_address_of_s_Down_5() { return &___s_Down_5; }
inline void set_s_Down_5(Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9 value)
{
___s_Down_5 = value;
}
inline static int32_t get_offset_of_s_Left_6() { return static_cast<int32_t>(offsetof(Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9_StaticFields, ___s_Left_6)); }
inline Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9 get_s_Left_6() const { return ___s_Left_6; }
inline Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9 * get_address_of_s_Left_6() { return &___s_Left_6; }
inline void set_s_Left_6(Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9 value)
{
___s_Left_6 = value;
}
inline static int32_t get_offset_of_s_Right_7() { return static_cast<int32_t>(offsetof(Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9_StaticFields, ___s_Right_7)); }
inline Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9 get_s_Right_7() const { return ___s_Right_7; }
inline Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9 * get_address_of_s_Right_7() { return &___s_Right_7; }
inline void set_s_Right_7(Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9 value)
{
___s_Right_7 = value;
}
};
// UnityEngine.Vector3
struct Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E
{
public:
// System.Single UnityEngine.Vector3::x
float ___x_2;
// System.Single UnityEngine.Vector3::y
float ___y_3;
// System.Single UnityEngine.Vector3::z
float ___z_4;
public:
inline static int32_t get_offset_of_x_2() { return static_cast<int32_t>(offsetof(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E, ___x_2)); }
inline float get_x_2() const { return ___x_2; }
inline float* get_address_of_x_2() { return &___x_2; }
inline void set_x_2(float value)
{
___x_2 = value;
}
inline static int32_t get_offset_of_y_3() { return static_cast<int32_t>(offsetof(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E, ___y_3)); }
inline float get_y_3() const { return ___y_3; }
inline float* get_address_of_y_3() { return &___y_3; }
inline void set_y_3(float value)
{
___y_3 = value;
}
inline static int32_t get_offset_of_z_4() { return static_cast<int32_t>(offsetof(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E, ___z_4)); }
inline float get_z_4() const { return ___z_4; }
inline float* get_address_of_z_4() { return &___z_4; }
inline void set_z_4(float value)
{
___z_4 = value;
}
};
struct Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E_StaticFields
{
public:
// UnityEngine.Vector3 UnityEngine.Vector3::zeroVector
Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___zeroVector_5;
// UnityEngine.Vector3 UnityEngine.Vector3::oneVector
Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___oneVector_6;
// UnityEngine.Vector3 UnityEngine.Vector3::upVector
Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___upVector_7;
// UnityEngine.Vector3 UnityEngine.Vector3::downVector
Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___downVector_8;
// UnityEngine.Vector3 UnityEngine.Vector3::leftVector
Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___leftVector_9;
// UnityEngine.Vector3 UnityEngine.Vector3::rightVector
Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___rightVector_10;
// UnityEngine.Vector3 UnityEngine.Vector3::forwardVector
Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___forwardVector_11;
// UnityEngine.Vector3 UnityEngine.Vector3::backVector
Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___backVector_12;
// UnityEngine.Vector3 UnityEngine.Vector3::positiveInfinityVector
Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___positiveInfinityVector_13;
// UnityEngine.Vector3 UnityEngine.Vector3::negativeInfinityVector
Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___negativeInfinityVector_14;
public:
inline static int32_t get_offset_of_zeroVector_5() { return static_cast<int32_t>(offsetof(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E_StaticFields, ___zeroVector_5)); }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_zeroVector_5() const { return ___zeroVector_5; }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_zeroVector_5() { return &___zeroVector_5; }
inline void set_zeroVector_5(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value)
{
___zeroVector_5 = value;
}
inline static int32_t get_offset_of_oneVector_6() { return static_cast<int32_t>(offsetof(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E_StaticFields, ___oneVector_6)); }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_oneVector_6() const { return ___oneVector_6; }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_oneVector_6() { return &___oneVector_6; }
inline void set_oneVector_6(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value)
{
___oneVector_6 = value;
}
inline static int32_t get_offset_of_upVector_7() { return static_cast<int32_t>(offsetof(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E_StaticFields, ___upVector_7)); }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_upVector_7() const { return ___upVector_7; }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_upVector_7() { return &___upVector_7; }
inline void set_upVector_7(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value)
{
___upVector_7 = value;
}
inline static int32_t get_offset_of_downVector_8() { return static_cast<int32_t>(offsetof(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E_StaticFields, ___downVector_8)); }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_downVector_8() const { return ___downVector_8; }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_downVector_8() { return &___downVector_8; }
inline void set_downVector_8(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value)
{
___downVector_8 = value;
}
inline static int32_t get_offset_of_leftVector_9() { return static_cast<int32_t>(offsetof(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E_StaticFields, ___leftVector_9)); }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_leftVector_9() const { return ___leftVector_9; }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_leftVector_9() { return &___leftVector_9; }
inline void set_leftVector_9(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value)
{
___leftVector_9 = value;
}
inline static int32_t get_offset_of_rightVector_10() { return static_cast<int32_t>(offsetof(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E_StaticFields, ___rightVector_10)); }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_rightVector_10() const { return ___rightVector_10; }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_rightVector_10() { return &___rightVector_10; }
inline void set_rightVector_10(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value)
{
___rightVector_10 = value;
}
inline static int32_t get_offset_of_forwardVector_11() { return static_cast<int32_t>(offsetof(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E_StaticFields, ___forwardVector_11)); }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_forwardVector_11() const { return ___forwardVector_11; }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_forwardVector_11() { return &___forwardVector_11; }
inline void set_forwardVector_11(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value)
{
___forwardVector_11 = value;
}
inline static int32_t get_offset_of_backVector_12() { return static_cast<int32_t>(offsetof(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E_StaticFields, ___backVector_12)); }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_backVector_12() const { return ___backVector_12; }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_backVector_12() { return &___backVector_12; }
inline void set_backVector_12(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value)
{
___backVector_12 = value;
}
inline static int32_t get_offset_of_positiveInfinityVector_13() { return static_cast<int32_t>(offsetof(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E_StaticFields, ___positiveInfinityVector_13)); }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_positiveInfinityVector_13() const { return ___positiveInfinityVector_13; }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_positiveInfinityVector_13() { return &___positiveInfinityVector_13; }
inline void set_positiveInfinityVector_13(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value)
{
___positiveInfinityVector_13 = value;
}
inline static int32_t get_offset_of_negativeInfinityVector_14() { return static_cast<int32_t>(offsetof(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E_StaticFields, ___negativeInfinityVector_14)); }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_negativeInfinityVector_14() const { return ___negativeInfinityVector_14; }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_negativeInfinityVector_14() { return &___negativeInfinityVector_14; }
inline void set_negativeInfinityVector_14(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value)
{
___negativeInfinityVector_14 = value;
}
};
// System.Void
struct Void_t700C6383A2A510C2CF4DD86DABD5CA9FF70ADAC5
{
public:
union
{
struct
{
};
uint8_t Void_t700C6383A2A510C2CF4DD86DABD5CA9FF70ADAC5__padding[1];
};
public:
};
// UnityEngine.XR.ARSubsystems.XRCameraSubsystemCinfo
struct XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096
{
public:
// System.String UnityEngine.XR.ARSubsystems.XRCameraSubsystemCinfo::<id>k__BackingField
String_t* ___U3CidU3Ek__BackingField_0;
// System.Type UnityEngine.XR.ARSubsystems.XRCameraSubsystemCinfo::<providerType>k__BackingField
Type_t * ___U3CproviderTypeU3Ek__BackingField_1;
// System.Type UnityEngine.XR.ARSubsystems.XRCameraSubsystemCinfo::<subsystemTypeOverride>k__BackingField
Type_t * ___U3CsubsystemTypeOverrideU3Ek__BackingField_2;
// System.Type UnityEngine.XR.ARSubsystems.XRCameraSubsystemCinfo::<implementationType>k__BackingField
Type_t * ___U3CimplementationTypeU3Ek__BackingField_3;
// System.Boolean UnityEngine.XR.ARSubsystems.XRCameraSubsystemCinfo::<supportsAverageBrightness>k__BackingField
bool ___U3CsupportsAverageBrightnessU3Ek__BackingField_4;
// System.Boolean UnityEngine.XR.ARSubsystems.XRCameraSubsystemCinfo::<supportsAverageColorTemperature>k__BackingField
bool ___U3CsupportsAverageColorTemperatureU3Ek__BackingField_5;
// System.Boolean UnityEngine.XR.ARSubsystems.XRCameraSubsystemCinfo::<supportsColorCorrection>k__BackingField
bool ___U3CsupportsColorCorrectionU3Ek__BackingField_6;
// System.Boolean UnityEngine.XR.ARSubsystems.XRCameraSubsystemCinfo::<supportsDisplayMatrix>k__BackingField
bool ___U3CsupportsDisplayMatrixU3Ek__BackingField_7;
// System.Boolean UnityEngine.XR.ARSubsystems.XRCameraSubsystemCinfo::<supportsProjectionMatrix>k__BackingField
bool ___U3CsupportsProjectionMatrixU3Ek__BackingField_8;
// System.Boolean UnityEngine.XR.ARSubsystems.XRCameraSubsystemCinfo::<supportsTimestamp>k__BackingField
bool ___U3CsupportsTimestampU3Ek__BackingField_9;
// System.Boolean UnityEngine.XR.ARSubsystems.XRCameraSubsystemCinfo::<supportsCameraConfigurations>k__BackingField
bool ___U3CsupportsCameraConfigurationsU3Ek__BackingField_10;
// System.Boolean UnityEngine.XR.ARSubsystems.XRCameraSubsystemCinfo::<supportsCameraImage>k__BackingField
bool ___U3CsupportsCameraImageU3Ek__BackingField_11;
// System.Boolean UnityEngine.XR.ARSubsystems.XRCameraSubsystemCinfo::<supportsAverageIntensityInLumens>k__BackingField
bool ___U3CsupportsAverageIntensityInLumensU3Ek__BackingField_12;
// System.Boolean UnityEngine.XR.ARSubsystems.XRCameraSubsystemCinfo::<supportsFaceTrackingAmbientIntensityLightEstimation>k__BackingField
bool ___U3CsupportsFaceTrackingAmbientIntensityLightEstimationU3Ek__BackingField_13;
// System.Boolean UnityEngine.XR.ARSubsystems.XRCameraSubsystemCinfo::<supportsFaceTrackingHDRLightEstimation>k__BackingField
bool ___U3CsupportsFaceTrackingHDRLightEstimationU3Ek__BackingField_14;
// System.Boolean UnityEngine.XR.ARSubsystems.XRCameraSubsystemCinfo::<supportsWorldTrackingAmbientIntensityLightEstimation>k__BackingField
bool ___U3CsupportsWorldTrackingAmbientIntensityLightEstimationU3Ek__BackingField_15;
// System.Boolean UnityEngine.XR.ARSubsystems.XRCameraSubsystemCinfo::<supportsWorldTrackingHDRLightEstimation>k__BackingField
bool ___U3CsupportsWorldTrackingHDRLightEstimationU3Ek__BackingField_16;
// System.Boolean UnityEngine.XR.ARSubsystems.XRCameraSubsystemCinfo::<supportsFocusModes>k__BackingField
bool ___U3CsupportsFocusModesU3Ek__BackingField_17;
// System.Boolean UnityEngine.XR.ARSubsystems.XRCameraSubsystemCinfo::<supportsCameraGrain>k__BackingField
bool ___U3CsupportsCameraGrainU3Ek__BackingField_18;
public:
inline static int32_t get_offset_of_U3CidU3Ek__BackingField_0() { return static_cast<int32_t>(offsetof(XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096, ___U3CidU3Ek__BackingField_0)); }
inline String_t* get_U3CidU3Ek__BackingField_0() const { return ___U3CidU3Ek__BackingField_0; }
inline String_t** get_address_of_U3CidU3Ek__BackingField_0() { return &___U3CidU3Ek__BackingField_0; }
inline void set_U3CidU3Ek__BackingField_0(String_t* value)
{
___U3CidU3Ek__BackingField_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CidU3Ek__BackingField_0), (void*)value);
}
inline static int32_t get_offset_of_U3CproviderTypeU3Ek__BackingField_1() { return static_cast<int32_t>(offsetof(XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096, ___U3CproviderTypeU3Ek__BackingField_1)); }
inline Type_t * get_U3CproviderTypeU3Ek__BackingField_1() const { return ___U3CproviderTypeU3Ek__BackingField_1; }
inline Type_t ** get_address_of_U3CproviderTypeU3Ek__BackingField_1() { return &___U3CproviderTypeU3Ek__BackingField_1; }
inline void set_U3CproviderTypeU3Ek__BackingField_1(Type_t * value)
{
___U3CproviderTypeU3Ek__BackingField_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CproviderTypeU3Ek__BackingField_1), (void*)value);
}
inline static int32_t get_offset_of_U3CsubsystemTypeOverrideU3Ek__BackingField_2() { return static_cast<int32_t>(offsetof(XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096, ___U3CsubsystemTypeOverrideU3Ek__BackingField_2)); }
inline Type_t * get_U3CsubsystemTypeOverrideU3Ek__BackingField_2() const { return ___U3CsubsystemTypeOverrideU3Ek__BackingField_2; }
inline Type_t ** get_address_of_U3CsubsystemTypeOverrideU3Ek__BackingField_2() { return &___U3CsubsystemTypeOverrideU3Ek__BackingField_2; }
inline void set_U3CsubsystemTypeOverrideU3Ek__BackingField_2(Type_t * value)
{
___U3CsubsystemTypeOverrideU3Ek__BackingField_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CsubsystemTypeOverrideU3Ek__BackingField_2), (void*)value);
}
inline static int32_t get_offset_of_U3CimplementationTypeU3Ek__BackingField_3() { return static_cast<int32_t>(offsetof(XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096, ___U3CimplementationTypeU3Ek__BackingField_3)); }
inline Type_t * get_U3CimplementationTypeU3Ek__BackingField_3() const { return ___U3CimplementationTypeU3Ek__BackingField_3; }
inline Type_t ** get_address_of_U3CimplementationTypeU3Ek__BackingField_3() { return &___U3CimplementationTypeU3Ek__BackingField_3; }
inline void set_U3CimplementationTypeU3Ek__BackingField_3(Type_t * value)
{
___U3CimplementationTypeU3Ek__BackingField_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CimplementationTypeU3Ek__BackingField_3), (void*)value);
}
inline static int32_t get_offset_of_U3CsupportsAverageBrightnessU3Ek__BackingField_4() { return static_cast<int32_t>(offsetof(XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096, ___U3CsupportsAverageBrightnessU3Ek__BackingField_4)); }
inline bool get_U3CsupportsAverageBrightnessU3Ek__BackingField_4() const { return ___U3CsupportsAverageBrightnessU3Ek__BackingField_4; }
inline bool* get_address_of_U3CsupportsAverageBrightnessU3Ek__BackingField_4() { return &___U3CsupportsAverageBrightnessU3Ek__BackingField_4; }
inline void set_U3CsupportsAverageBrightnessU3Ek__BackingField_4(bool value)
{
___U3CsupportsAverageBrightnessU3Ek__BackingField_4 = value;
}
inline static int32_t get_offset_of_U3CsupportsAverageColorTemperatureU3Ek__BackingField_5() { return static_cast<int32_t>(offsetof(XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096, ___U3CsupportsAverageColorTemperatureU3Ek__BackingField_5)); }
inline bool get_U3CsupportsAverageColorTemperatureU3Ek__BackingField_5() const { return ___U3CsupportsAverageColorTemperatureU3Ek__BackingField_5; }
inline bool* get_address_of_U3CsupportsAverageColorTemperatureU3Ek__BackingField_5() { return &___U3CsupportsAverageColorTemperatureU3Ek__BackingField_5; }
inline void set_U3CsupportsAverageColorTemperatureU3Ek__BackingField_5(bool value)
{
___U3CsupportsAverageColorTemperatureU3Ek__BackingField_5 = value;
}
inline static int32_t get_offset_of_U3CsupportsColorCorrectionU3Ek__BackingField_6() { return static_cast<int32_t>(offsetof(XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096, ___U3CsupportsColorCorrectionU3Ek__BackingField_6)); }
inline bool get_U3CsupportsColorCorrectionU3Ek__BackingField_6() const { return ___U3CsupportsColorCorrectionU3Ek__BackingField_6; }
inline bool* get_address_of_U3CsupportsColorCorrectionU3Ek__BackingField_6() { return &___U3CsupportsColorCorrectionU3Ek__BackingField_6; }
inline void set_U3CsupportsColorCorrectionU3Ek__BackingField_6(bool value)
{
___U3CsupportsColorCorrectionU3Ek__BackingField_6 = value;
}
inline static int32_t get_offset_of_U3CsupportsDisplayMatrixU3Ek__BackingField_7() { return static_cast<int32_t>(offsetof(XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096, ___U3CsupportsDisplayMatrixU3Ek__BackingField_7)); }
inline bool get_U3CsupportsDisplayMatrixU3Ek__BackingField_7() const { return ___U3CsupportsDisplayMatrixU3Ek__BackingField_7; }
inline bool* get_address_of_U3CsupportsDisplayMatrixU3Ek__BackingField_7() { return &___U3CsupportsDisplayMatrixU3Ek__BackingField_7; }
inline void set_U3CsupportsDisplayMatrixU3Ek__BackingField_7(bool value)
{
___U3CsupportsDisplayMatrixU3Ek__BackingField_7 = value;
}
inline static int32_t get_offset_of_U3CsupportsProjectionMatrixU3Ek__BackingField_8() { return static_cast<int32_t>(offsetof(XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096, ___U3CsupportsProjectionMatrixU3Ek__BackingField_8)); }
inline bool get_U3CsupportsProjectionMatrixU3Ek__BackingField_8() const { return ___U3CsupportsProjectionMatrixU3Ek__BackingField_8; }
inline bool* get_address_of_U3CsupportsProjectionMatrixU3Ek__BackingField_8() { return &___U3CsupportsProjectionMatrixU3Ek__BackingField_8; }
inline void set_U3CsupportsProjectionMatrixU3Ek__BackingField_8(bool value)
{
___U3CsupportsProjectionMatrixU3Ek__BackingField_8 = value;
}
inline static int32_t get_offset_of_U3CsupportsTimestampU3Ek__BackingField_9() { return static_cast<int32_t>(offsetof(XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096, ___U3CsupportsTimestampU3Ek__BackingField_9)); }
inline bool get_U3CsupportsTimestampU3Ek__BackingField_9() const { return ___U3CsupportsTimestampU3Ek__BackingField_9; }
inline bool* get_address_of_U3CsupportsTimestampU3Ek__BackingField_9() { return &___U3CsupportsTimestampU3Ek__BackingField_9; }
inline void set_U3CsupportsTimestampU3Ek__BackingField_9(bool value)
{
___U3CsupportsTimestampU3Ek__BackingField_9 = value;
}
inline static int32_t get_offset_of_U3CsupportsCameraConfigurationsU3Ek__BackingField_10() { return static_cast<int32_t>(offsetof(XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096, ___U3CsupportsCameraConfigurationsU3Ek__BackingField_10)); }
inline bool get_U3CsupportsCameraConfigurationsU3Ek__BackingField_10() const { return ___U3CsupportsCameraConfigurationsU3Ek__BackingField_10; }
inline bool* get_address_of_U3CsupportsCameraConfigurationsU3Ek__BackingField_10() { return &___U3CsupportsCameraConfigurationsU3Ek__BackingField_10; }
inline void set_U3CsupportsCameraConfigurationsU3Ek__BackingField_10(bool value)
{
___U3CsupportsCameraConfigurationsU3Ek__BackingField_10 = value;
}
inline static int32_t get_offset_of_U3CsupportsCameraImageU3Ek__BackingField_11() { return static_cast<int32_t>(offsetof(XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096, ___U3CsupportsCameraImageU3Ek__BackingField_11)); }
inline bool get_U3CsupportsCameraImageU3Ek__BackingField_11() const { return ___U3CsupportsCameraImageU3Ek__BackingField_11; }
inline bool* get_address_of_U3CsupportsCameraImageU3Ek__BackingField_11() { return &___U3CsupportsCameraImageU3Ek__BackingField_11; }
inline void set_U3CsupportsCameraImageU3Ek__BackingField_11(bool value)
{
___U3CsupportsCameraImageU3Ek__BackingField_11 = value;
}
inline static int32_t get_offset_of_U3CsupportsAverageIntensityInLumensU3Ek__BackingField_12() { return static_cast<int32_t>(offsetof(XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096, ___U3CsupportsAverageIntensityInLumensU3Ek__BackingField_12)); }
inline bool get_U3CsupportsAverageIntensityInLumensU3Ek__BackingField_12() const { return ___U3CsupportsAverageIntensityInLumensU3Ek__BackingField_12; }
inline bool* get_address_of_U3CsupportsAverageIntensityInLumensU3Ek__BackingField_12() { return &___U3CsupportsAverageIntensityInLumensU3Ek__BackingField_12; }
inline void set_U3CsupportsAverageIntensityInLumensU3Ek__BackingField_12(bool value)
{
___U3CsupportsAverageIntensityInLumensU3Ek__BackingField_12 = value;
}
inline static int32_t get_offset_of_U3CsupportsFaceTrackingAmbientIntensityLightEstimationU3Ek__BackingField_13() { return static_cast<int32_t>(offsetof(XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096, ___U3CsupportsFaceTrackingAmbientIntensityLightEstimationU3Ek__BackingField_13)); }
inline bool get_U3CsupportsFaceTrackingAmbientIntensityLightEstimationU3Ek__BackingField_13() const { return ___U3CsupportsFaceTrackingAmbientIntensityLightEstimationU3Ek__BackingField_13; }
inline bool* get_address_of_U3CsupportsFaceTrackingAmbientIntensityLightEstimationU3Ek__BackingField_13() { return &___U3CsupportsFaceTrackingAmbientIntensityLightEstimationU3Ek__BackingField_13; }
inline void set_U3CsupportsFaceTrackingAmbientIntensityLightEstimationU3Ek__BackingField_13(bool value)
{
___U3CsupportsFaceTrackingAmbientIntensityLightEstimationU3Ek__BackingField_13 = value;
}
inline static int32_t get_offset_of_U3CsupportsFaceTrackingHDRLightEstimationU3Ek__BackingField_14() { return static_cast<int32_t>(offsetof(XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096, ___U3CsupportsFaceTrackingHDRLightEstimationU3Ek__BackingField_14)); }
inline bool get_U3CsupportsFaceTrackingHDRLightEstimationU3Ek__BackingField_14() const { return ___U3CsupportsFaceTrackingHDRLightEstimationU3Ek__BackingField_14; }
inline bool* get_address_of_U3CsupportsFaceTrackingHDRLightEstimationU3Ek__BackingField_14() { return &___U3CsupportsFaceTrackingHDRLightEstimationU3Ek__BackingField_14; }
inline void set_U3CsupportsFaceTrackingHDRLightEstimationU3Ek__BackingField_14(bool value)
{
___U3CsupportsFaceTrackingHDRLightEstimationU3Ek__BackingField_14 = value;
}
inline static int32_t get_offset_of_U3CsupportsWorldTrackingAmbientIntensityLightEstimationU3Ek__BackingField_15() { return static_cast<int32_t>(offsetof(XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096, ___U3CsupportsWorldTrackingAmbientIntensityLightEstimationU3Ek__BackingField_15)); }
inline bool get_U3CsupportsWorldTrackingAmbientIntensityLightEstimationU3Ek__BackingField_15() const { return ___U3CsupportsWorldTrackingAmbientIntensityLightEstimationU3Ek__BackingField_15; }
inline bool* get_address_of_U3CsupportsWorldTrackingAmbientIntensityLightEstimationU3Ek__BackingField_15() { return &___U3CsupportsWorldTrackingAmbientIntensityLightEstimationU3Ek__BackingField_15; }
inline void set_U3CsupportsWorldTrackingAmbientIntensityLightEstimationU3Ek__BackingField_15(bool value)
{
___U3CsupportsWorldTrackingAmbientIntensityLightEstimationU3Ek__BackingField_15 = value;
}
inline static int32_t get_offset_of_U3CsupportsWorldTrackingHDRLightEstimationU3Ek__BackingField_16() { return static_cast<int32_t>(offsetof(XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096, ___U3CsupportsWorldTrackingHDRLightEstimationU3Ek__BackingField_16)); }
inline bool get_U3CsupportsWorldTrackingHDRLightEstimationU3Ek__BackingField_16() const { return ___U3CsupportsWorldTrackingHDRLightEstimationU3Ek__BackingField_16; }
inline bool* get_address_of_U3CsupportsWorldTrackingHDRLightEstimationU3Ek__BackingField_16() { return &___U3CsupportsWorldTrackingHDRLightEstimationU3Ek__BackingField_16; }
inline void set_U3CsupportsWorldTrackingHDRLightEstimationU3Ek__BackingField_16(bool value)
{
___U3CsupportsWorldTrackingHDRLightEstimationU3Ek__BackingField_16 = value;
}
inline static int32_t get_offset_of_U3CsupportsFocusModesU3Ek__BackingField_17() { return static_cast<int32_t>(offsetof(XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096, ___U3CsupportsFocusModesU3Ek__BackingField_17)); }
inline bool get_U3CsupportsFocusModesU3Ek__BackingField_17() const { return ___U3CsupportsFocusModesU3Ek__BackingField_17; }
inline bool* get_address_of_U3CsupportsFocusModesU3Ek__BackingField_17() { return &___U3CsupportsFocusModesU3Ek__BackingField_17; }
inline void set_U3CsupportsFocusModesU3Ek__BackingField_17(bool value)
{
___U3CsupportsFocusModesU3Ek__BackingField_17 = value;
}
inline static int32_t get_offset_of_U3CsupportsCameraGrainU3Ek__BackingField_18() { return static_cast<int32_t>(offsetof(XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096, ___U3CsupportsCameraGrainU3Ek__BackingField_18)); }
inline bool get_U3CsupportsCameraGrainU3Ek__BackingField_18() const { return ___U3CsupportsCameraGrainU3Ek__BackingField_18; }
inline bool* get_address_of_U3CsupportsCameraGrainU3Ek__BackingField_18() { return &___U3CsupportsCameraGrainU3Ek__BackingField_18; }
inline void set_U3CsupportsCameraGrainU3Ek__BackingField_18(bool value)
{
___U3CsupportsCameraGrainU3Ek__BackingField_18 = value;
}
};
// Native definition for P/Invoke marshalling of UnityEngine.XR.ARSubsystems.XRCameraSubsystemCinfo
struct XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096_marshaled_pinvoke
{
char* ___U3CidU3Ek__BackingField_0;
Type_t * ___U3CproviderTypeU3Ek__BackingField_1;
Type_t * ___U3CsubsystemTypeOverrideU3Ek__BackingField_2;
Type_t * ___U3CimplementationTypeU3Ek__BackingField_3;
int32_t ___U3CsupportsAverageBrightnessU3Ek__BackingField_4;
int32_t ___U3CsupportsAverageColorTemperatureU3Ek__BackingField_5;
int32_t ___U3CsupportsColorCorrectionU3Ek__BackingField_6;
int32_t ___U3CsupportsDisplayMatrixU3Ek__BackingField_7;
int32_t ___U3CsupportsProjectionMatrixU3Ek__BackingField_8;
int32_t ___U3CsupportsTimestampU3Ek__BackingField_9;
int32_t ___U3CsupportsCameraConfigurationsU3Ek__BackingField_10;
int32_t ___U3CsupportsCameraImageU3Ek__BackingField_11;
int32_t ___U3CsupportsAverageIntensityInLumensU3Ek__BackingField_12;
int32_t ___U3CsupportsFaceTrackingAmbientIntensityLightEstimationU3Ek__BackingField_13;
int32_t ___U3CsupportsFaceTrackingHDRLightEstimationU3Ek__BackingField_14;
int32_t ___U3CsupportsWorldTrackingAmbientIntensityLightEstimationU3Ek__BackingField_15;
int32_t ___U3CsupportsWorldTrackingHDRLightEstimationU3Ek__BackingField_16;
int32_t ___U3CsupportsFocusModesU3Ek__BackingField_17;
int32_t ___U3CsupportsCameraGrainU3Ek__BackingField_18;
};
// Native definition for COM marshalling of UnityEngine.XR.ARSubsystems.XRCameraSubsystemCinfo
struct XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096_marshaled_com
{
Il2CppChar* ___U3CidU3Ek__BackingField_0;
Type_t * ___U3CproviderTypeU3Ek__BackingField_1;
Type_t * ___U3CsubsystemTypeOverrideU3Ek__BackingField_2;
Type_t * ___U3CimplementationTypeU3Ek__BackingField_3;
int32_t ___U3CsupportsAverageBrightnessU3Ek__BackingField_4;
int32_t ___U3CsupportsAverageColorTemperatureU3Ek__BackingField_5;
int32_t ___U3CsupportsColorCorrectionU3Ek__BackingField_6;
int32_t ___U3CsupportsDisplayMatrixU3Ek__BackingField_7;
int32_t ___U3CsupportsProjectionMatrixU3Ek__BackingField_8;
int32_t ___U3CsupportsTimestampU3Ek__BackingField_9;
int32_t ___U3CsupportsCameraConfigurationsU3Ek__BackingField_10;
int32_t ___U3CsupportsCameraImageU3Ek__BackingField_11;
int32_t ___U3CsupportsAverageIntensityInLumensU3Ek__BackingField_12;
int32_t ___U3CsupportsFaceTrackingAmbientIntensityLightEstimationU3Ek__BackingField_13;
int32_t ___U3CsupportsFaceTrackingHDRLightEstimationU3Ek__BackingField_14;
int32_t ___U3CsupportsWorldTrackingAmbientIntensityLightEstimationU3Ek__BackingField_15;
int32_t ___U3CsupportsWorldTrackingHDRLightEstimationU3Ek__BackingField_16;
int32_t ___U3CsupportsFocusModesU3Ek__BackingField_17;
int32_t ___U3CsupportsCameraGrainU3Ek__BackingField_18;
};
// UnityEngine.XR.ARSubsystems.XREnvironmentProbeSubsystemCinfo
struct XREnvironmentProbeSubsystemCinfo_t6D9368EC95B6B356A67B7289270F27BB6A4440B2
{
public:
// System.String UnityEngine.XR.ARSubsystems.XREnvironmentProbeSubsystemCinfo::<id>k__BackingField
String_t* ___U3CidU3Ek__BackingField_0;
// System.Type UnityEngine.XR.ARSubsystems.XREnvironmentProbeSubsystemCinfo::<providerType>k__BackingField
Type_t * ___U3CproviderTypeU3Ek__BackingField_1;
// System.Type UnityEngine.XR.ARSubsystems.XREnvironmentProbeSubsystemCinfo::<subsystemTypeOverride>k__BackingField
Type_t * ___U3CsubsystemTypeOverrideU3Ek__BackingField_2;
// System.Type UnityEngine.XR.ARSubsystems.XREnvironmentProbeSubsystemCinfo::<implementationType>k__BackingField
Type_t * ___U3CimplementationTypeU3Ek__BackingField_3;
// System.Boolean UnityEngine.XR.ARSubsystems.XREnvironmentProbeSubsystemCinfo::<supportsManualPlacement>k__BackingField
bool ___U3CsupportsManualPlacementU3Ek__BackingField_4;
// System.Boolean UnityEngine.XR.ARSubsystems.XREnvironmentProbeSubsystemCinfo::<supportsRemovalOfManual>k__BackingField
bool ___U3CsupportsRemovalOfManualU3Ek__BackingField_5;
// System.Boolean UnityEngine.XR.ARSubsystems.XREnvironmentProbeSubsystemCinfo::<supportsAutomaticPlacement>k__BackingField
bool ___U3CsupportsAutomaticPlacementU3Ek__BackingField_6;
// System.Boolean UnityEngine.XR.ARSubsystems.XREnvironmentProbeSubsystemCinfo::<supportsRemovalOfAutomatic>k__BackingField
bool ___U3CsupportsRemovalOfAutomaticU3Ek__BackingField_7;
// System.Boolean UnityEngine.XR.ARSubsystems.XREnvironmentProbeSubsystemCinfo::<supportsEnvironmentTexture>k__BackingField
bool ___U3CsupportsEnvironmentTextureU3Ek__BackingField_8;
// System.Boolean UnityEngine.XR.ARSubsystems.XREnvironmentProbeSubsystemCinfo::<supportsEnvironmentTextureHDR>k__BackingField
bool ___U3CsupportsEnvironmentTextureHDRU3Ek__BackingField_9;
public:
inline static int32_t get_offset_of_U3CidU3Ek__BackingField_0() { return static_cast<int32_t>(offsetof(XREnvironmentProbeSubsystemCinfo_t6D9368EC95B6B356A67B7289270F27BB6A4440B2, ___U3CidU3Ek__BackingField_0)); }
inline String_t* get_U3CidU3Ek__BackingField_0() const { return ___U3CidU3Ek__BackingField_0; }
inline String_t** get_address_of_U3CidU3Ek__BackingField_0() { return &___U3CidU3Ek__BackingField_0; }
inline void set_U3CidU3Ek__BackingField_0(String_t* value)
{
___U3CidU3Ek__BackingField_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CidU3Ek__BackingField_0), (void*)value);
}
inline static int32_t get_offset_of_U3CproviderTypeU3Ek__BackingField_1() { return static_cast<int32_t>(offsetof(XREnvironmentProbeSubsystemCinfo_t6D9368EC95B6B356A67B7289270F27BB6A4440B2, ___U3CproviderTypeU3Ek__BackingField_1)); }
inline Type_t * get_U3CproviderTypeU3Ek__BackingField_1() const { return ___U3CproviderTypeU3Ek__BackingField_1; }
inline Type_t ** get_address_of_U3CproviderTypeU3Ek__BackingField_1() { return &___U3CproviderTypeU3Ek__BackingField_1; }
inline void set_U3CproviderTypeU3Ek__BackingField_1(Type_t * value)
{
___U3CproviderTypeU3Ek__BackingField_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CproviderTypeU3Ek__BackingField_1), (void*)value);
}
inline static int32_t get_offset_of_U3CsubsystemTypeOverrideU3Ek__BackingField_2() { return static_cast<int32_t>(offsetof(XREnvironmentProbeSubsystemCinfo_t6D9368EC95B6B356A67B7289270F27BB6A4440B2, ___U3CsubsystemTypeOverrideU3Ek__BackingField_2)); }
inline Type_t * get_U3CsubsystemTypeOverrideU3Ek__BackingField_2() const { return ___U3CsubsystemTypeOverrideU3Ek__BackingField_2; }
inline Type_t ** get_address_of_U3CsubsystemTypeOverrideU3Ek__BackingField_2() { return &___U3CsubsystemTypeOverrideU3Ek__BackingField_2; }
inline void set_U3CsubsystemTypeOverrideU3Ek__BackingField_2(Type_t * value)
{
___U3CsubsystemTypeOverrideU3Ek__BackingField_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CsubsystemTypeOverrideU3Ek__BackingField_2), (void*)value);
}
inline static int32_t get_offset_of_U3CimplementationTypeU3Ek__BackingField_3() { return static_cast<int32_t>(offsetof(XREnvironmentProbeSubsystemCinfo_t6D9368EC95B6B356A67B7289270F27BB6A4440B2, ___U3CimplementationTypeU3Ek__BackingField_3)); }
inline Type_t * get_U3CimplementationTypeU3Ek__BackingField_3() const { return ___U3CimplementationTypeU3Ek__BackingField_3; }
inline Type_t ** get_address_of_U3CimplementationTypeU3Ek__BackingField_3() { return &___U3CimplementationTypeU3Ek__BackingField_3; }
inline void set_U3CimplementationTypeU3Ek__BackingField_3(Type_t * value)
{
___U3CimplementationTypeU3Ek__BackingField_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CimplementationTypeU3Ek__BackingField_3), (void*)value);
}
inline static int32_t get_offset_of_U3CsupportsManualPlacementU3Ek__BackingField_4() { return static_cast<int32_t>(offsetof(XREnvironmentProbeSubsystemCinfo_t6D9368EC95B6B356A67B7289270F27BB6A4440B2, ___U3CsupportsManualPlacementU3Ek__BackingField_4)); }
inline bool get_U3CsupportsManualPlacementU3Ek__BackingField_4() const { return ___U3CsupportsManualPlacementU3Ek__BackingField_4; }
inline bool* get_address_of_U3CsupportsManualPlacementU3Ek__BackingField_4() { return &___U3CsupportsManualPlacementU3Ek__BackingField_4; }
inline void set_U3CsupportsManualPlacementU3Ek__BackingField_4(bool value)
{
___U3CsupportsManualPlacementU3Ek__BackingField_4 = value;
}
inline static int32_t get_offset_of_U3CsupportsRemovalOfManualU3Ek__BackingField_5() { return static_cast<int32_t>(offsetof(XREnvironmentProbeSubsystemCinfo_t6D9368EC95B6B356A67B7289270F27BB6A4440B2, ___U3CsupportsRemovalOfManualU3Ek__BackingField_5)); }
inline bool get_U3CsupportsRemovalOfManualU3Ek__BackingField_5() const { return ___U3CsupportsRemovalOfManualU3Ek__BackingField_5; }
inline bool* get_address_of_U3CsupportsRemovalOfManualU3Ek__BackingField_5() { return &___U3CsupportsRemovalOfManualU3Ek__BackingField_5; }
inline void set_U3CsupportsRemovalOfManualU3Ek__BackingField_5(bool value)
{
___U3CsupportsRemovalOfManualU3Ek__BackingField_5 = value;
}
inline static int32_t get_offset_of_U3CsupportsAutomaticPlacementU3Ek__BackingField_6() { return static_cast<int32_t>(offsetof(XREnvironmentProbeSubsystemCinfo_t6D9368EC95B6B356A67B7289270F27BB6A4440B2, ___U3CsupportsAutomaticPlacementU3Ek__BackingField_6)); }
inline bool get_U3CsupportsAutomaticPlacementU3Ek__BackingField_6() const { return ___U3CsupportsAutomaticPlacementU3Ek__BackingField_6; }
inline bool* get_address_of_U3CsupportsAutomaticPlacementU3Ek__BackingField_6() { return &___U3CsupportsAutomaticPlacementU3Ek__BackingField_6; }
inline void set_U3CsupportsAutomaticPlacementU3Ek__BackingField_6(bool value)
{
___U3CsupportsAutomaticPlacementU3Ek__BackingField_6 = value;
}
inline static int32_t get_offset_of_U3CsupportsRemovalOfAutomaticU3Ek__BackingField_7() { return static_cast<int32_t>(offsetof(XREnvironmentProbeSubsystemCinfo_t6D9368EC95B6B356A67B7289270F27BB6A4440B2, ___U3CsupportsRemovalOfAutomaticU3Ek__BackingField_7)); }
inline bool get_U3CsupportsRemovalOfAutomaticU3Ek__BackingField_7() const { return ___U3CsupportsRemovalOfAutomaticU3Ek__BackingField_7; }
inline bool* get_address_of_U3CsupportsRemovalOfAutomaticU3Ek__BackingField_7() { return &___U3CsupportsRemovalOfAutomaticU3Ek__BackingField_7; }
inline void set_U3CsupportsRemovalOfAutomaticU3Ek__BackingField_7(bool value)
{
___U3CsupportsRemovalOfAutomaticU3Ek__BackingField_7 = value;
}
inline static int32_t get_offset_of_U3CsupportsEnvironmentTextureU3Ek__BackingField_8() { return static_cast<int32_t>(offsetof(XREnvironmentProbeSubsystemCinfo_t6D9368EC95B6B356A67B7289270F27BB6A4440B2, ___U3CsupportsEnvironmentTextureU3Ek__BackingField_8)); }
inline bool get_U3CsupportsEnvironmentTextureU3Ek__BackingField_8() const { return ___U3CsupportsEnvironmentTextureU3Ek__BackingField_8; }
inline bool* get_address_of_U3CsupportsEnvironmentTextureU3Ek__BackingField_8() { return &___U3CsupportsEnvironmentTextureU3Ek__BackingField_8; }
inline void set_U3CsupportsEnvironmentTextureU3Ek__BackingField_8(bool value)
{
___U3CsupportsEnvironmentTextureU3Ek__BackingField_8 = value;
}
inline static int32_t get_offset_of_U3CsupportsEnvironmentTextureHDRU3Ek__BackingField_9() { return static_cast<int32_t>(offsetof(XREnvironmentProbeSubsystemCinfo_t6D9368EC95B6B356A67B7289270F27BB6A4440B2, ___U3CsupportsEnvironmentTextureHDRU3Ek__BackingField_9)); }
inline bool get_U3CsupportsEnvironmentTextureHDRU3Ek__BackingField_9() const { return ___U3CsupportsEnvironmentTextureHDRU3Ek__BackingField_9; }
inline bool* get_address_of_U3CsupportsEnvironmentTextureHDRU3Ek__BackingField_9() { return &___U3CsupportsEnvironmentTextureHDRU3Ek__BackingField_9; }
inline void set_U3CsupportsEnvironmentTextureHDRU3Ek__BackingField_9(bool value)
{
___U3CsupportsEnvironmentTextureHDRU3Ek__BackingField_9 = value;
}
};
// Native definition for P/Invoke marshalling of UnityEngine.XR.ARSubsystems.XREnvironmentProbeSubsystemCinfo
struct XREnvironmentProbeSubsystemCinfo_t6D9368EC95B6B356A67B7289270F27BB6A4440B2_marshaled_pinvoke
{
char* ___U3CidU3Ek__BackingField_0;
Type_t * ___U3CproviderTypeU3Ek__BackingField_1;
Type_t * ___U3CsubsystemTypeOverrideU3Ek__BackingField_2;
Type_t * ___U3CimplementationTypeU3Ek__BackingField_3;
int32_t ___U3CsupportsManualPlacementU3Ek__BackingField_4;
int32_t ___U3CsupportsRemovalOfManualU3Ek__BackingField_5;
int32_t ___U3CsupportsAutomaticPlacementU3Ek__BackingField_6;
int32_t ___U3CsupportsRemovalOfAutomaticU3Ek__BackingField_7;
int32_t ___U3CsupportsEnvironmentTextureU3Ek__BackingField_8;
int32_t ___U3CsupportsEnvironmentTextureHDRU3Ek__BackingField_9;
};
// Native definition for COM marshalling of UnityEngine.XR.ARSubsystems.XREnvironmentProbeSubsystemCinfo
struct XREnvironmentProbeSubsystemCinfo_t6D9368EC95B6B356A67B7289270F27BB6A4440B2_marshaled_com
{
Il2CppChar* ___U3CidU3Ek__BackingField_0;
Type_t * ___U3CproviderTypeU3Ek__BackingField_1;
Type_t * ___U3CsubsystemTypeOverrideU3Ek__BackingField_2;
Type_t * ___U3CimplementationTypeU3Ek__BackingField_3;
int32_t ___U3CsupportsManualPlacementU3Ek__BackingField_4;
int32_t ___U3CsupportsRemovalOfManualU3Ek__BackingField_5;
int32_t ___U3CsupportsAutomaticPlacementU3Ek__BackingField_6;
int32_t ___U3CsupportsRemovalOfAutomaticU3Ek__BackingField_7;
int32_t ___U3CsupportsEnvironmentTextureU3Ek__BackingField_8;
int32_t ___U3CsupportsEnvironmentTextureHDRU3Ek__BackingField_9;
};
// UnityEngine.XR.ARSubsystems.XRHumanBodySubsystemCinfo
struct XRHumanBodySubsystemCinfo_tAFFD9EF9197B51AA2EAC628F54C90C842B7E54CC
{
public:
// System.String UnityEngine.XR.ARSubsystems.XRHumanBodySubsystemCinfo::<id>k__BackingField
String_t* ___U3CidU3Ek__BackingField_0;
// System.Type UnityEngine.XR.ARSubsystems.XRHumanBodySubsystemCinfo::<providerType>k__BackingField
Type_t * ___U3CproviderTypeU3Ek__BackingField_1;
// System.Type UnityEngine.XR.ARSubsystems.XRHumanBodySubsystemCinfo::<subsystemTypeOverride>k__BackingField
Type_t * ___U3CsubsystemTypeOverrideU3Ek__BackingField_2;
// System.Type UnityEngine.XR.ARSubsystems.XRHumanBodySubsystemCinfo::<implementationType>k__BackingField
Type_t * ___U3CimplementationTypeU3Ek__BackingField_3;
// System.Boolean UnityEngine.XR.ARSubsystems.XRHumanBodySubsystemCinfo::<supportsHumanBody2D>k__BackingField
bool ___U3CsupportsHumanBody2DU3Ek__BackingField_4;
// System.Boolean UnityEngine.XR.ARSubsystems.XRHumanBodySubsystemCinfo::<supportsHumanBody3D>k__BackingField
bool ___U3CsupportsHumanBody3DU3Ek__BackingField_5;
// System.Boolean UnityEngine.XR.ARSubsystems.XRHumanBodySubsystemCinfo::<supportsHumanBody3DScaleEstimation>k__BackingField
bool ___U3CsupportsHumanBody3DScaleEstimationU3Ek__BackingField_6;
public:
inline static int32_t get_offset_of_U3CidU3Ek__BackingField_0() { return static_cast<int32_t>(offsetof(XRHumanBodySubsystemCinfo_tAFFD9EF9197B51AA2EAC628F54C90C842B7E54CC, ___U3CidU3Ek__BackingField_0)); }
inline String_t* get_U3CidU3Ek__BackingField_0() const { return ___U3CidU3Ek__BackingField_0; }
inline String_t** get_address_of_U3CidU3Ek__BackingField_0() { return &___U3CidU3Ek__BackingField_0; }
inline void set_U3CidU3Ek__BackingField_0(String_t* value)
{
___U3CidU3Ek__BackingField_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CidU3Ek__BackingField_0), (void*)value);
}
inline static int32_t get_offset_of_U3CproviderTypeU3Ek__BackingField_1() { return static_cast<int32_t>(offsetof(XRHumanBodySubsystemCinfo_tAFFD9EF9197B51AA2EAC628F54C90C842B7E54CC, ___U3CproviderTypeU3Ek__BackingField_1)); }
inline Type_t * get_U3CproviderTypeU3Ek__BackingField_1() const { return ___U3CproviderTypeU3Ek__BackingField_1; }
inline Type_t ** get_address_of_U3CproviderTypeU3Ek__BackingField_1() { return &___U3CproviderTypeU3Ek__BackingField_1; }
inline void set_U3CproviderTypeU3Ek__BackingField_1(Type_t * value)
{
___U3CproviderTypeU3Ek__BackingField_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CproviderTypeU3Ek__BackingField_1), (void*)value);
}
inline static int32_t get_offset_of_U3CsubsystemTypeOverrideU3Ek__BackingField_2() { return static_cast<int32_t>(offsetof(XRHumanBodySubsystemCinfo_tAFFD9EF9197B51AA2EAC628F54C90C842B7E54CC, ___U3CsubsystemTypeOverrideU3Ek__BackingField_2)); }
inline Type_t * get_U3CsubsystemTypeOverrideU3Ek__BackingField_2() const { return ___U3CsubsystemTypeOverrideU3Ek__BackingField_2; }
inline Type_t ** get_address_of_U3CsubsystemTypeOverrideU3Ek__BackingField_2() { return &___U3CsubsystemTypeOverrideU3Ek__BackingField_2; }
inline void set_U3CsubsystemTypeOverrideU3Ek__BackingField_2(Type_t * value)
{
___U3CsubsystemTypeOverrideU3Ek__BackingField_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CsubsystemTypeOverrideU3Ek__BackingField_2), (void*)value);
}
inline static int32_t get_offset_of_U3CimplementationTypeU3Ek__BackingField_3() { return static_cast<int32_t>(offsetof(XRHumanBodySubsystemCinfo_tAFFD9EF9197B51AA2EAC628F54C90C842B7E54CC, ___U3CimplementationTypeU3Ek__BackingField_3)); }
inline Type_t * get_U3CimplementationTypeU3Ek__BackingField_3() const { return ___U3CimplementationTypeU3Ek__BackingField_3; }
inline Type_t ** get_address_of_U3CimplementationTypeU3Ek__BackingField_3() { return &___U3CimplementationTypeU3Ek__BackingField_3; }
inline void set_U3CimplementationTypeU3Ek__BackingField_3(Type_t * value)
{
___U3CimplementationTypeU3Ek__BackingField_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CimplementationTypeU3Ek__BackingField_3), (void*)value);
}
inline static int32_t get_offset_of_U3CsupportsHumanBody2DU3Ek__BackingField_4() { return static_cast<int32_t>(offsetof(XRHumanBodySubsystemCinfo_tAFFD9EF9197B51AA2EAC628F54C90C842B7E54CC, ___U3CsupportsHumanBody2DU3Ek__BackingField_4)); }
inline bool get_U3CsupportsHumanBody2DU3Ek__BackingField_4() const { return ___U3CsupportsHumanBody2DU3Ek__BackingField_4; }
inline bool* get_address_of_U3CsupportsHumanBody2DU3Ek__BackingField_4() { return &___U3CsupportsHumanBody2DU3Ek__BackingField_4; }
inline void set_U3CsupportsHumanBody2DU3Ek__BackingField_4(bool value)
{
___U3CsupportsHumanBody2DU3Ek__BackingField_4 = value;
}
inline static int32_t get_offset_of_U3CsupportsHumanBody3DU3Ek__BackingField_5() { return static_cast<int32_t>(offsetof(XRHumanBodySubsystemCinfo_tAFFD9EF9197B51AA2EAC628F54C90C842B7E54CC, ___U3CsupportsHumanBody3DU3Ek__BackingField_5)); }
inline bool get_U3CsupportsHumanBody3DU3Ek__BackingField_5() const { return ___U3CsupportsHumanBody3DU3Ek__BackingField_5; }
inline bool* get_address_of_U3CsupportsHumanBody3DU3Ek__BackingField_5() { return &___U3CsupportsHumanBody3DU3Ek__BackingField_5; }
inline void set_U3CsupportsHumanBody3DU3Ek__BackingField_5(bool value)
{
___U3CsupportsHumanBody3DU3Ek__BackingField_5 = value;
}
inline static int32_t get_offset_of_U3CsupportsHumanBody3DScaleEstimationU3Ek__BackingField_6() { return static_cast<int32_t>(offsetof(XRHumanBodySubsystemCinfo_tAFFD9EF9197B51AA2EAC628F54C90C842B7E54CC, ___U3CsupportsHumanBody3DScaleEstimationU3Ek__BackingField_6)); }
inline bool get_U3CsupportsHumanBody3DScaleEstimationU3Ek__BackingField_6() const { return ___U3CsupportsHumanBody3DScaleEstimationU3Ek__BackingField_6; }
inline bool* get_address_of_U3CsupportsHumanBody3DScaleEstimationU3Ek__BackingField_6() { return &___U3CsupportsHumanBody3DScaleEstimationU3Ek__BackingField_6; }
inline void set_U3CsupportsHumanBody3DScaleEstimationU3Ek__BackingField_6(bool value)
{
___U3CsupportsHumanBody3DScaleEstimationU3Ek__BackingField_6 = value;
}
};
// Native definition for P/Invoke marshalling of UnityEngine.XR.ARSubsystems.XRHumanBodySubsystemCinfo
struct XRHumanBodySubsystemCinfo_tAFFD9EF9197B51AA2EAC628F54C90C842B7E54CC_marshaled_pinvoke
{
char* ___U3CidU3Ek__BackingField_0;
Type_t * ___U3CproviderTypeU3Ek__BackingField_1;
Type_t * ___U3CsubsystemTypeOverrideU3Ek__BackingField_2;
Type_t * ___U3CimplementationTypeU3Ek__BackingField_3;
int32_t ___U3CsupportsHumanBody2DU3Ek__BackingField_4;
int32_t ___U3CsupportsHumanBody3DU3Ek__BackingField_5;
int32_t ___U3CsupportsHumanBody3DScaleEstimationU3Ek__BackingField_6;
};
// Native definition for COM marshalling of UnityEngine.XR.ARSubsystems.XRHumanBodySubsystemCinfo
struct XRHumanBodySubsystemCinfo_tAFFD9EF9197B51AA2EAC628F54C90C842B7E54CC_marshaled_com
{
Il2CppChar* ___U3CidU3Ek__BackingField_0;
Type_t * ___U3CproviderTypeU3Ek__BackingField_1;
Type_t * ___U3CsubsystemTypeOverrideU3Ek__BackingField_2;
Type_t * ___U3CimplementationTypeU3Ek__BackingField_3;
int32_t ___U3CsupportsHumanBody2DU3Ek__BackingField_4;
int32_t ___U3CsupportsHumanBody3DU3Ek__BackingField_5;
int32_t ___U3CsupportsHumanBody3DScaleEstimationU3Ek__BackingField_6;
};
// UnityEngine.XR.ARSubsystems.XROcclusionSubsystemCinfo
struct XROcclusionSubsystemCinfo_tA29FDBA57EBA835927124FC18780DDD9CC4D84FD
{
public:
// System.String UnityEngine.XR.ARSubsystems.XROcclusionSubsystemCinfo::<id>k__BackingField
String_t* ___U3CidU3Ek__BackingField_0;
// System.Type UnityEngine.XR.ARSubsystems.XROcclusionSubsystemCinfo::<providerType>k__BackingField
Type_t * ___U3CproviderTypeU3Ek__BackingField_1;
// System.Type UnityEngine.XR.ARSubsystems.XROcclusionSubsystemCinfo::<subsystemTypeOverride>k__BackingField
Type_t * ___U3CsubsystemTypeOverrideU3Ek__BackingField_2;
// System.Type UnityEngine.XR.ARSubsystems.XROcclusionSubsystemCinfo::<implementationType>k__BackingField
Type_t * ___U3CimplementationTypeU3Ek__BackingField_3;
// System.Boolean UnityEngine.XR.ARSubsystems.XROcclusionSubsystemCinfo::<supportsHumanSegmentationStencilImage>k__BackingField
bool ___U3CsupportsHumanSegmentationStencilImageU3Ek__BackingField_4;
// System.Boolean UnityEngine.XR.ARSubsystems.XROcclusionSubsystemCinfo::<supportsHumanSegmentationDepthImage>k__BackingField
bool ___U3CsupportsHumanSegmentationDepthImageU3Ek__BackingField_5;
// System.Func`1<System.Boolean> UnityEngine.XR.ARSubsystems.XROcclusionSubsystemCinfo::<queryForSupportsEnvironmentDepthImage>k__BackingField
Func_1_t76FCDA5C58178ED310C472967481FDE5F47DCF0F * ___U3CqueryForSupportsEnvironmentDepthImageU3Ek__BackingField_6;
// System.Func`1<System.Boolean> UnityEngine.XR.ARSubsystems.XROcclusionSubsystemCinfo::<queryForSupportsEnvironmentDepthConfidenceImage>k__BackingField
Func_1_t76FCDA5C58178ED310C472967481FDE5F47DCF0F * ___U3CqueryForSupportsEnvironmentDepthConfidenceImageU3Ek__BackingField_7;
public:
inline static int32_t get_offset_of_U3CidU3Ek__BackingField_0() { return static_cast<int32_t>(offsetof(XROcclusionSubsystemCinfo_tA29FDBA57EBA835927124FC18780DDD9CC4D84FD, ___U3CidU3Ek__BackingField_0)); }
inline String_t* get_U3CidU3Ek__BackingField_0() const { return ___U3CidU3Ek__BackingField_0; }
inline String_t** get_address_of_U3CidU3Ek__BackingField_0() { return &___U3CidU3Ek__BackingField_0; }
inline void set_U3CidU3Ek__BackingField_0(String_t* value)
{
___U3CidU3Ek__BackingField_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CidU3Ek__BackingField_0), (void*)value);
}
inline static int32_t get_offset_of_U3CproviderTypeU3Ek__BackingField_1() { return static_cast<int32_t>(offsetof(XROcclusionSubsystemCinfo_tA29FDBA57EBA835927124FC18780DDD9CC4D84FD, ___U3CproviderTypeU3Ek__BackingField_1)); }
inline Type_t * get_U3CproviderTypeU3Ek__BackingField_1() const { return ___U3CproviderTypeU3Ek__BackingField_1; }
inline Type_t ** get_address_of_U3CproviderTypeU3Ek__BackingField_1() { return &___U3CproviderTypeU3Ek__BackingField_1; }
inline void set_U3CproviderTypeU3Ek__BackingField_1(Type_t * value)
{
___U3CproviderTypeU3Ek__BackingField_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CproviderTypeU3Ek__BackingField_1), (void*)value);
}
inline static int32_t get_offset_of_U3CsubsystemTypeOverrideU3Ek__BackingField_2() { return static_cast<int32_t>(offsetof(XROcclusionSubsystemCinfo_tA29FDBA57EBA835927124FC18780DDD9CC4D84FD, ___U3CsubsystemTypeOverrideU3Ek__BackingField_2)); }
inline Type_t * get_U3CsubsystemTypeOverrideU3Ek__BackingField_2() const { return ___U3CsubsystemTypeOverrideU3Ek__BackingField_2; }
inline Type_t ** get_address_of_U3CsubsystemTypeOverrideU3Ek__BackingField_2() { return &___U3CsubsystemTypeOverrideU3Ek__BackingField_2; }
inline void set_U3CsubsystemTypeOverrideU3Ek__BackingField_2(Type_t * value)
{
___U3CsubsystemTypeOverrideU3Ek__BackingField_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CsubsystemTypeOverrideU3Ek__BackingField_2), (void*)value);
}
inline static int32_t get_offset_of_U3CimplementationTypeU3Ek__BackingField_3() { return static_cast<int32_t>(offsetof(XROcclusionSubsystemCinfo_tA29FDBA57EBA835927124FC18780DDD9CC4D84FD, ___U3CimplementationTypeU3Ek__BackingField_3)); }
inline Type_t * get_U3CimplementationTypeU3Ek__BackingField_3() const { return ___U3CimplementationTypeU3Ek__BackingField_3; }
inline Type_t ** get_address_of_U3CimplementationTypeU3Ek__BackingField_3() { return &___U3CimplementationTypeU3Ek__BackingField_3; }
inline void set_U3CimplementationTypeU3Ek__BackingField_3(Type_t * value)
{
___U3CimplementationTypeU3Ek__BackingField_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CimplementationTypeU3Ek__BackingField_3), (void*)value);
}
inline static int32_t get_offset_of_U3CsupportsHumanSegmentationStencilImageU3Ek__BackingField_4() { return static_cast<int32_t>(offsetof(XROcclusionSubsystemCinfo_tA29FDBA57EBA835927124FC18780DDD9CC4D84FD, ___U3CsupportsHumanSegmentationStencilImageU3Ek__BackingField_4)); }
inline bool get_U3CsupportsHumanSegmentationStencilImageU3Ek__BackingField_4() const { return ___U3CsupportsHumanSegmentationStencilImageU3Ek__BackingField_4; }
inline bool* get_address_of_U3CsupportsHumanSegmentationStencilImageU3Ek__BackingField_4() { return &___U3CsupportsHumanSegmentationStencilImageU3Ek__BackingField_4; }
inline void set_U3CsupportsHumanSegmentationStencilImageU3Ek__BackingField_4(bool value)
{
___U3CsupportsHumanSegmentationStencilImageU3Ek__BackingField_4 = value;
}
inline static int32_t get_offset_of_U3CsupportsHumanSegmentationDepthImageU3Ek__BackingField_5() { return static_cast<int32_t>(offsetof(XROcclusionSubsystemCinfo_tA29FDBA57EBA835927124FC18780DDD9CC4D84FD, ___U3CsupportsHumanSegmentationDepthImageU3Ek__BackingField_5)); }
inline bool get_U3CsupportsHumanSegmentationDepthImageU3Ek__BackingField_5() const { return ___U3CsupportsHumanSegmentationDepthImageU3Ek__BackingField_5; }
inline bool* get_address_of_U3CsupportsHumanSegmentationDepthImageU3Ek__BackingField_5() { return &___U3CsupportsHumanSegmentationDepthImageU3Ek__BackingField_5; }
inline void set_U3CsupportsHumanSegmentationDepthImageU3Ek__BackingField_5(bool value)
{
___U3CsupportsHumanSegmentationDepthImageU3Ek__BackingField_5 = value;
}
inline static int32_t get_offset_of_U3CqueryForSupportsEnvironmentDepthImageU3Ek__BackingField_6() { return static_cast<int32_t>(offsetof(XROcclusionSubsystemCinfo_tA29FDBA57EBA835927124FC18780DDD9CC4D84FD, ___U3CqueryForSupportsEnvironmentDepthImageU3Ek__BackingField_6)); }
inline Func_1_t76FCDA5C58178ED310C472967481FDE5F47DCF0F * get_U3CqueryForSupportsEnvironmentDepthImageU3Ek__BackingField_6() const { return ___U3CqueryForSupportsEnvironmentDepthImageU3Ek__BackingField_6; }
inline Func_1_t76FCDA5C58178ED310C472967481FDE5F47DCF0F ** get_address_of_U3CqueryForSupportsEnvironmentDepthImageU3Ek__BackingField_6() { return &___U3CqueryForSupportsEnvironmentDepthImageU3Ek__BackingField_6; }
inline void set_U3CqueryForSupportsEnvironmentDepthImageU3Ek__BackingField_6(Func_1_t76FCDA5C58178ED310C472967481FDE5F47DCF0F * value)
{
___U3CqueryForSupportsEnvironmentDepthImageU3Ek__BackingField_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CqueryForSupportsEnvironmentDepthImageU3Ek__BackingField_6), (void*)value);
}
inline static int32_t get_offset_of_U3CqueryForSupportsEnvironmentDepthConfidenceImageU3Ek__BackingField_7() { return static_cast<int32_t>(offsetof(XROcclusionSubsystemCinfo_tA29FDBA57EBA835927124FC18780DDD9CC4D84FD, ___U3CqueryForSupportsEnvironmentDepthConfidenceImageU3Ek__BackingField_7)); }
inline Func_1_t76FCDA5C58178ED310C472967481FDE5F47DCF0F * get_U3CqueryForSupportsEnvironmentDepthConfidenceImageU3Ek__BackingField_7() const { return ___U3CqueryForSupportsEnvironmentDepthConfidenceImageU3Ek__BackingField_7; }
inline Func_1_t76FCDA5C58178ED310C472967481FDE5F47DCF0F ** get_address_of_U3CqueryForSupportsEnvironmentDepthConfidenceImageU3Ek__BackingField_7() { return &___U3CqueryForSupportsEnvironmentDepthConfidenceImageU3Ek__BackingField_7; }
inline void set_U3CqueryForSupportsEnvironmentDepthConfidenceImageU3Ek__BackingField_7(Func_1_t76FCDA5C58178ED310C472967481FDE5F47DCF0F * value)
{
___U3CqueryForSupportsEnvironmentDepthConfidenceImageU3Ek__BackingField_7 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CqueryForSupportsEnvironmentDepthConfidenceImageU3Ek__BackingField_7), (void*)value);
}
};
// Native definition for P/Invoke marshalling of UnityEngine.XR.ARSubsystems.XROcclusionSubsystemCinfo
struct XROcclusionSubsystemCinfo_tA29FDBA57EBA835927124FC18780DDD9CC4D84FD_marshaled_pinvoke
{
char* ___U3CidU3Ek__BackingField_0;
Type_t * ___U3CproviderTypeU3Ek__BackingField_1;
Type_t * ___U3CsubsystemTypeOverrideU3Ek__BackingField_2;
Type_t * ___U3CimplementationTypeU3Ek__BackingField_3;
int32_t ___U3CsupportsHumanSegmentationStencilImageU3Ek__BackingField_4;
int32_t ___U3CsupportsHumanSegmentationDepthImageU3Ek__BackingField_5;
Il2CppMethodPointer ___U3CqueryForSupportsEnvironmentDepthImageU3Ek__BackingField_6;
Il2CppMethodPointer ___U3CqueryForSupportsEnvironmentDepthConfidenceImageU3Ek__BackingField_7;
};
// Native definition for COM marshalling of UnityEngine.XR.ARSubsystems.XROcclusionSubsystemCinfo
struct XROcclusionSubsystemCinfo_tA29FDBA57EBA835927124FC18780DDD9CC4D84FD_marshaled_com
{
Il2CppChar* ___U3CidU3Ek__BackingField_0;
Type_t * ___U3CproviderTypeU3Ek__BackingField_1;
Type_t * ___U3CsubsystemTypeOverrideU3Ek__BackingField_2;
Type_t * ___U3CimplementationTypeU3Ek__BackingField_3;
int32_t ___U3CsupportsHumanSegmentationStencilImageU3Ek__BackingField_4;
int32_t ___U3CsupportsHumanSegmentationDepthImageU3Ek__BackingField_5;
Il2CppMethodPointer ___U3CqueryForSupportsEnvironmentDepthImageU3Ek__BackingField_6;
Il2CppMethodPointer ___U3CqueryForSupportsEnvironmentDepthConfidenceImageU3Ek__BackingField_7;
};
// UnityEngine.XR.ARSubsystems.XRReferenceObject
struct XRReferenceObject_t18877E1C9F50FF11192A86805D881349020032AE
{
public:
// System.UInt64 UnityEngine.XR.ARSubsystems.XRReferenceObject::m_GuidLow
uint64_t ___m_GuidLow_0;
// System.UInt64 UnityEngine.XR.ARSubsystems.XRReferenceObject::m_GuidHigh
uint64_t ___m_GuidHigh_1;
// System.String UnityEngine.XR.ARSubsystems.XRReferenceObject::m_Name
String_t* ___m_Name_2;
// System.Collections.Generic.List`1<UnityEngine.XR.ARSubsystems.XRReferenceObjectEntry> UnityEngine.XR.ARSubsystems.XRReferenceObject::m_Entries
List_1_tB23AEDE769BF4EA511C93F224596EF58939F8E5A * ___m_Entries_3;
public:
inline static int32_t get_offset_of_m_GuidLow_0() { return static_cast<int32_t>(offsetof(XRReferenceObject_t18877E1C9F50FF11192A86805D881349020032AE, ___m_GuidLow_0)); }
inline uint64_t get_m_GuidLow_0() const { return ___m_GuidLow_0; }
inline uint64_t* get_address_of_m_GuidLow_0() { return &___m_GuidLow_0; }
inline void set_m_GuidLow_0(uint64_t value)
{
___m_GuidLow_0 = value;
}
inline static int32_t get_offset_of_m_GuidHigh_1() { return static_cast<int32_t>(offsetof(XRReferenceObject_t18877E1C9F50FF11192A86805D881349020032AE, ___m_GuidHigh_1)); }
inline uint64_t get_m_GuidHigh_1() const { return ___m_GuidHigh_1; }
inline uint64_t* get_address_of_m_GuidHigh_1() { return &___m_GuidHigh_1; }
inline void set_m_GuidHigh_1(uint64_t value)
{
___m_GuidHigh_1 = value;
}
inline static int32_t get_offset_of_m_Name_2() { return static_cast<int32_t>(offsetof(XRReferenceObject_t18877E1C9F50FF11192A86805D881349020032AE, ___m_Name_2)); }
inline String_t* get_m_Name_2() const { return ___m_Name_2; }
inline String_t** get_address_of_m_Name_2() { return &___m_Name_2; }
inline void set_m_Name_2(String_t* value)
{
___m_Name_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Name_2), (void*)value);
}
inline static int32_t get_offset_of_m_Entries_3() { return static_cast<int32_t>(offsetof(XRReferenceObject_t18877E1C9F50FF11192A86805D881349020032AE, ___m_Entries_3)); }
inline List_1_tB23AEDE769BF4EA511C93F224596EF58939F8E5A * get_m_Entries_3() const { return ___m_Entries_3; }
inline List_1_tB23AEDE769BF4EA511C93F224596EF58939F8E5A ** get_address_of_m_Entries_3() { return &___m_Entries_3; }
inline void set_m_Entries_3(List_1_tB23AEDE769BF4EA511C93F224596EF58939F8E5A * value)
{
___m_Entries_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Entries_3), (void*)value);
}
};
// Native definition for P/Invoke marshalling of UnityEngine.XR.ARSubsystems.XRReferenceObject
struct XRReferenceObject_t18877E1C9F50FF11192A86805D881349020032AE_marshaled_pinvoke
{
uint64_t ___m_GuidLow_0;
uint64_t ___m_GuidHigh_1;
char* ___m_Name_2;
List_1_tB23AEDE769BF4EA511C93F224596EF58939F8E5A * ___m_Entries_3;
};
// Native definition for COM marshalling of UnityEngine.XR.ARSubsystems.XRReferenceObject
struct XRReferenceObject_t18877E1C9F50FF11192A86805D881349020032AE_marshaled_com
{
uint64_t ___m_GuidLow_0;
uint64_t ___m_GuidHigh_1;
Il2CppChar* ___m_Name_2;
List_1_tB23AEDE769BF4EA511C93F224596EF58939F8E5A * ___m_Entries_3;
};
// UnityEngine.XR.ARSubsystems.MutableRuntimeReferenceImageLibrary/Enumerator
struct Enumerator_t9B104B3EE1E7390464361D775D18230CF662A7D5
{
public:
// UnityEngine.XR.ARSubsystems.MutableRuntimeReferenceImageLibrary UnityEngine.XR.ARSubsystems.MutableRuntimeReferenceImageLibrary/Enumerator::m_Library
MutableRuntimeReferenceImageLibrary_t887376CE46B48DEEC6E8655D429BADCA6E3C7EAA * ___m_Library_0;
// System.Int32 UnityEngine.XR.ARSubsystems.MutableRuntimeReferenceImageLibrary/Enumerator::m_Index
int32_t ___m_Index_1;
public:
inline static int32_t get_offset_of_m_Library_0() { return static_cast<int32_t>(offsetof(Enumerator_t9B104B3EE1E7390464361D775D18230CF662A7D5, ___m_Library_0)); }
inline MutableRuntimeReferenceImageLibrary_t887376CE46B48DEEC6E8655D429BADCA6E3C7EAA * get_m_Library_0() const { return ___m_Library_0; }
inline MutableRuntimeReferenceImageLibrary_t887376CE46B48DEEC6E8655D429BADCA6E3C7EAA ** get_address_of_m_Library_0() { return &___m_Library_0; }
inline void set_m_Library_0(MutableRuntimeReferenceImageLibrary_t887376CE46B48DEEC6E8655D429BADCA6E3C7EAA * value)
{
___m_Library_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Library_0), (void*)value);
}
inline static int32_t get_offset_of_m_Index_1() { return static_cast<int32_t>(offsetof(Enumerator_t9B104B3EE1E7390464361D775D18230CF662A7D5, ___m_Index_1)); }
inline int32_t get_m_Index_1() const { return ___m_Index_1; }
inline int32_t* get_address_of_m_Index_1() { return &___m_Index_1; }
inline void set_m_Index_1(int32_t value)
{
___m_Index_1 = value;
}
};
// Native definition for P/Invoke marshalling of UnityEngine.XR.ARSubsystems.MutableRuntimeReferenceImageLibrary/Enumerator
struct Enumerator_t9B104B3EE1E7390464361D775D18230CF662A7D5_marshaled_pinvoke
{
MutableRuntimeReferenceImageLibrary_t887376CE46B48DEEC6E8655D429BADCA6E3C7EAA * ___m_Library_0;
int32_t ___m_Index_1;
};
// Native definition for COM marshalling of UnityEngine.XR.ARSubsystems.MutableRuntimeReferenceImageLibrary/Enumerator
struct Enumerator_t9B104B3EE1E7390464361D775D18230CF662A7D5_marshaled_com
{
MutableRuntimeReferenceImageLibrary_t887376CE46B48DEEC6E8655D429BADCA6E3C7EAA * ___m_Library_0;
int32_t ___m_Index_1;
};
// UnityEngine.XR.ARSubsystems.XRAnchorSubsystemDescriptor/Cinfo
struct Cinfo_tF42131D7F2B721976AAF20DD0240D9C46397F7F7
{
public:
// System.String UnityEngine.XR.ARSubsystems.XRAnchorSubsystemDescriptor/Cinfo::<id>k__BackingField
String_t* ___U3CidU3Ek__BackingField_0;
// System.Type UnityEngine.XR.ARSubsystems.XRAnchorSubsystemDescriptor/Cinfo::<providerType>k__BackingField
Type_t * ___U3CproviderTypeU3Ek__BackingField_1;
// System.Type UnityEngine.XR.ARSubsystems.XRAnchorSubsystemDescriptor/Cinfo::<subsystemTypeOverride>k__BackingField
Type_t * ___U3CsubsystemTypeOverrideU3Ek__BackingField_2;
// System.Type UnityEngine.XR.ARSubsystems.XRAnchorSubsystemDescriptor/Cinfo::<subsystemImplementationType>k__BackingField
Type_t * ___U3CsubsystemImplementationTypeU3Ek__BackingField_3;
// System.Boolean UnityEngine.XR.ARSubsystems.XRAnchorSubsystemDescriptor/Cinfo::<supportsTrackableAttachments>k__BackingField
bool ___U3CsupportsTrackableAttachmentsU3Ek__BackingField_4;
public:
inline static int32_t get_offset_of_U3CidU3Ek__BackingField_0() { return static_cast<int32_t>(offsetof(Cinfo_tF42131D7F2B721976AAF20DD0240D9C46397F7F7, ___U3CidU3Ek__BackingField_0)); }
inline String_t* get_U3CidU3Ek__BackingField_0() const { return ___U3CidU3Ek__BackingField_0; }
inline String_t** get_address_of_U3CidU3Ek__BackingField_0() { return &___U3CidU3Ek__BackingField_0; }
inline void set_U3CidU3Ek__BackingField_0(String_t* value)
{
___U3CidU3Ek__BackingField_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CidU3Ek__BackingField_0), (void*)value);
}
inline static int32_t get_offset_of_U3CproviderTypeU3Ek__BackingField_1() { return static_cast<int32_t>(offsetof(Cinfo_tF42131D7F2B721976AAF20DD0240D9C46397F7F7, ___U3CproviderTypeU3Ek__BackingField_1)); }
inline Type_t * get_U3CproviderTypeU3Ek__BackingField_1() const { return ___U3CproviderTypeU3Ek__BackingField_1; }
inline Type_t ** get_address_of_U3CproviderTypeU3Ek__BackingField_1() { return &___U3CproviderTypeU3Ek__BackingField_1; }
inline void set_U3CproviderTypeU3Ek__BackingField_1(Type_t * value)
{
___U3CproviderTypeU3Ek__BackingField_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CproviderTypeU3Ek__BackingField_1), (void*)value);
}
inline static int32_t get_offset_of_U3CsubsystemTypeOverrideU3Ek__BackingField_2() { return static_cast<int32_t>(offsetof(Cinfo_tF42131D7F2B721976AAF20DD0240D9C46397F7F7, ___U3CsubsystemTypeOverrideU3Ek__BackingField_2)); }
inline Type_t * get_U3CsubsystemTypeOverrideU3Ek__BackingField_2() const { return ___U3CsubsystemTypeOverrideU3Ek__BackingField_2; }
inline Type_t ** get_address_of_U3CsubsystemTypeOverrideU3Ek__BackingField_2() { return &___U3CsubsystemTypeOverrideU3Ek__BackingField_2; }
inline void set_U3CsubsystemTypeOverrideU3Ek__BackingField_2(Type_t * value)
{
___U3CsubsystemTypeOverrideU3Ek__BackingField_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CsubsystemTypeOverrideU3Ek__BackingField_2), (void*)value);
}
inline static int32_t get_offset_of_U3CsubsystemImplementationTypeU3Ek__BackingField_3() { return static_cast<int32_t>(offsetof(Cinfo_tF42131D7F2B721976AAF20DD0240D9C46397F7F7, ___U3CsubsystemImplementationTypeU3Ek__BackingField_3)); }
inline Type_t * get_U3CsubsystemImplementationTypeU3Ek__BackingField_3() const { return ___U3CsubsystemImplementationTypeU3Ek__BackingField_3; }
inline Type_t ** get_address_of_U3CsubsystemImplementationTypeU3Ek__BackingField_3() { return &___U3CsubsystemImplementationTypeU3Ek__BackingField_3; }
inline void set_U3CsubsystemImplementationTypeU3Ek__BackingField_3(Type_t * value)
{
___U3CsubsystemImplementationTypeU3Ek__BackingField_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CsubsystemImplementationTypeU3Ek__BackingField_3), (void*)value);
}
inline static int32_t get_offset_of_U3CsupportsTrackableAttachmentsU3Ek__BackingField_4() { return static_cast<int32_t>(offsetof(Cinfo_tF42131D7F2B721976AAF20DD0240D9C46397F7F7, ___U3CsupportsTrackableAttachmentsU3Ek__BackingField_4)); }
inline bool get_U3CsupportsTrackableAttachmentsU3Ek__BackingField_4() const { return ___U3CsupportsTrackableAttachmentsU3Ek__BackingField_4; }
inline bool* get_address_of_U3CsupportsTrackableAttachmentsU3Ek__BackingField_4() { return &___U3CsupportsTrackableAttachmentsU3Ek__BackingField_4; }
inline void set_U3CsupportsTrackableAttachmentsU3Ek__BackingField_4(bool value)
{
___U3CsupportsTrackableAttachmentsU3Ek__BackingField_4 = value;
}
};
// Native definition for P/Invoke marshalling of UnityEngine.XR.ARSubsystems.XRAnchorSubsystemDescriptor/Cinfo
struct Cinfo_tF42131D7F2B721976AAF20DD0240D9C46397F7F7_marshaled_pinvoke
{
char* ___U3CidU3Ek__BackingField_0;
Type_t * ___U3CproviderTypeU3Ek__BackingField_1;
Type_t * ___U3CsubsystemTypeOverrideU3Ek__BackingField_2;
Type_t * ___U3CsubsystemImplementationTypeU3Ek__BackingField_3;
int32_t ___U3CsupportsTrackableAttachmentsU3Ek__BackingField_4;
};
// Native definition for COM marshalling of UnityEngine.XR.ARSubsystems.XRAnchorSubsystemDescriptor/Cinfo
struct Cinfo_tF42131D7F2B721976AAF20DD0240D9C46397F7F7_marshaled_com
{
Il2CppChar* ___U3CidU3Ek__BackingField_0;
Type_t * ___U3CproviderTypeU3Ek__BackingField_1;
Type_t * ___U3CsubsystemTypeOverrideU3Ek__BackingField_2;
Type_t * ___U3CsubsystemImplementationTypeU3Ek__BackingField_3;
int32_t ___U3CsupportsTrackableAttachmentsU3Ek__BackingField_4;
};
// UnityEngine.XR.ARSubsystems.XRImageTrackingSubsystemDescriptor/Cinfo
struct Cinfo_tED92D7CBD16BE657927A6B7DB64A22DA21EB7D32
{
public:
// System.String UnityEngine.XR.ARSubsystems.XRImageTrackingSubsystemDescriptor/Cinfo::<id>k__BackingField
String_t* ___U3CidU3Ek__BackingField_0;
// System.Type UnityEngine.XR.ARSubsystems.XRImageTrackingSubsystemDescriptor/Cinfo::<providerType>k__BackingField
Type_t * ___U3CproviderTypeU3Ek__BackingField_1;
// System.Type UnityEngine.XR.ARSubsystems.XRImageTrackingSubsystemDescriptor/Cinfo::<subsystemTypeOverride>k__BackingField
Type_t * ___U3CsubsystemTypeOverrideU3Ek__BackingField_2;
// System.Type UnityEngine.XR.ARSubsystems.XRImageTrackingSubsystemDescriptor/Cinfo::<subsystemImplementationType>k__BackingField
Type_t * ___U3CsubsystemImplementationTypeU3Ek__BackingField_3;
// System.Boolean UnityEngine.XR.ARSubsystems.XRImageTrackingSubsystemDescriptor/Cinfo::<supportsMovingImages>k__BackingField
bool ___U3CsupportsMovingImagesU3Ek__BackingField_4;
// System.Boolean UnityEngine.XR.ARSubsystems.XRImageTrackingSubsystemDescriptor/Cinfo::<requiresPhysicalImageDimensions>k__BackingField
bool ___U3CrequiresPhysicalImageDimensionsU3Ek__BackingField_5;
// System.Boolean UnityEngine.XR.ARSubsystems.XRImageTrackingSubsystemDescriptor/Cinfo::<supportsMutableLibrary>k__BackingField
bool ___U3CsupportsMutableLibraryU3Ek__BackingField_6;
// System.Boolean UnityEngine.XR.ARSubsystems.XRImageTrackingSubsystemDescriptor/Cinfo::<supportsImageValidation>k__BackingField
bool ___U3CsupportsImageValidationU3Ek__BackingField_7;
public:
inline static int32_t get_offset_of_U3CidU3Ek__BackingField_0() { return static_cast<int32_t>(offsetof(Cinfo_tED92D7CBD16BE657927A6B7DB64A22DA21EB7D32, ___U3CidU3Ek__BackingField_0)); }
inline String_t* get_U3CidU3Ek__BackingField_0() const { return ___U3CidU3Ek__BackingField_0; }
inline String_t** get_address_of_U3CidU3Ek__BackingField_0() { return &___U3CidU3Ek__BackingField_0; }
inline void set_U3CidU3Ek__BackingField_0(String_t* value)
{
___U3CidU3Ek__BackingField_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CidU3Ek__BackingField_0), (void*)value);
}
inline static int32_t get_offset_of_U3CproviderTypeU3Ek__BackingField_1() { return static_cast<int32_t>(offsetof(Cinfo_tED92D7CBD16BE657927A6B7DB64A22DA21EB7D32, ___U3CproviderTypeU3Ek__BackingField_1)); }
inline Type_t * get_U3CproviderTypeU3Ek__BackingField_1() const { return ___U3CproviderTypeU3Ek__BackingField_1; }
inline Type_t ** get_address_of_U3CproviderTypeU3Ek__BackingField_1() { return &___U3CproviderTypeU3Ek__BackingField_1; }
inline void set_U3CproviderTypeU3Ek__BackingField_1(Type_t * value)
{
___U3CproviderTypeU3Ek__BackingField_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CproviderTypeU3Ek__BackingField_1), (void*)value);
}
inline static int32_t get_offset_of_U3CsubsystemTypeOverrideU3Ek__BackingField_2() { return static_cast<int32_t>(offsetof(Cinfo_tED92D7CBD16BE657927A6B7DB64A22DA21EB7D32, ___U3CsubsystemTypeOverrideU3Ek__BackingField_2)); }
inline Type_t * get_U3CsubsystemTypeOverrideU3Ek__BackingField_2() const { return ___U3CsubsystemTypeOverrideU3Ek__BackingField_2; }
inline Type_t ** get_address_of_U3CsubsystemTypeOverrideU3Ek__BackingField_2() { return &___U3CsubsystemTypeOverrideU3Ek__BackingField_2; }
inline void set_U3CsubsystemTypeOverrideU3Ek__BackingField_2(Type_t * value)
{
___U3CsubsystemTypeOverrideU3Ek__BackingField_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CsubsystemTypeOverrideU3Ek__BackingField_2), (void*)value);
}
inline static int32_t get_offset_of_U3CsubsystemImplementationTypeU3Ek__BackingField_3() { return static_cast<int32_t>(offsetof(Cinfo_tED92D7CBD16BE657927A6B7DB64A22DA21EB7D32, ___U3CsubsystemImplementationTypeU3Ek__BackingField_3)); }
inline Type_t * get_U3CsubsystemImplementationTypeU3Ek__BackingField_3() const { return ___U3CsubsystemImplementationTypeU3Ek__BackingField_3; }
inline Type_t ** get_address_of_U3CsubsystemImplementationTypeU3Ek__BackingField_3() { return &___U3CsubsystemImplementationTypeU3Ek__BackingField_3; }
inline void set_U3CsubsystemImplementationTypeU3Ek__BackingField_3(Type_t * value)
{
___U3CsubsystemImplementationTypeU3Ek__BackingField_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CsubsystemImplementationTypeU3Ek__BackingField_3), (void*)value);
}
inline static int32_t get_offset_of_U3CsupportsMovingImagesU3Ek__BackingField_4() { return static_cast<int32_t>(offsetof(Cinfo_tED92D7CBD16BE657927A6B7DB64A22DA21EB7D32, ___U3CsupportsMovingImagesU3Ek__BackingField_4)); }
inline bool get_U3CsupportsMovingImagesU3Ek__BackingField_4() const { return ___U3CsupportsMovingImagesU3Ek__BackingField_4; }
inline bool* get_address_of_U3CsupportsMovingImagesU3Ek__BackingField_4() { return &___U3CsupportsMovingImagesU3Ek__BackingField_4; }
inline void set_U3CsupportsMovingImagesU3Ek__BackingField_4(bool value)
{
___U3CsupportsMovingImagesU3Ek__BackingField_4 = value;
}
inline static int32_t get_offset_of_U3CrequiresPhysicalImageDimensionsU3Ek__BackingField_5() { return static_cast<int32_t>(offsetof(Cinfo_tED92D7CBD16BE657927A6B7DB64A22DA21EB7D32, ___U3CrequiresPhysicalImageDimensionsU3Ek__BackingField_5)); }
inline bool get_U3CrequiresPhysicalImageDimensionsU3Ek__BackingField_5() const { return ___U3CrequiresPhysicalImageDimensionsU3Ek__BackingField_5; }
inline bool* get_address_of_U3CrequiresPhysicalImageDimensionsU3Ek__BackingField_5() { return &___U3CrequiresPhysicalImageDimensionsU3Ek__BackingField_5; }
inline void set_U3CrequiresPhysicalImageDimensionsU3Ek__BackingField_5(bool value)
{
___U3CrequiresPhysicalImageDimensionsU3Ek__BackingField_5 = value;
}
inline static int32_t get_offset_of_U3CsupportsMutableLibraryU3Ek__BackingField_6() { return static_cast<int32_t>(offsetof(Cinfo_tED92D7CBD16BE657927A6B7DB64A22DA21EB7D32, ___U3CsupportsMutableLibraryU3Ek__BackingField_6)); }
inline bool get_U3CsupportsMutableLibraryU3Ek__BackingField_6() const { return ___U3CsupportsMutableLibraryU3Ek__BackingField_6; }
inline bool* get_address_of_U3CsupportsMutableLibraryU3Ek__BackingField_6() { return &___U3CsupportsMutableLibraryU3Ek__BackingField_6; }
inline void set_U3CsupportsMutableLibraryU3Ek__BackingField_6(bool value)
{
___U3CsupportsMutableLibraryU3Ek__BackingField_6 = value;
}
inline static int32_t get_offset_of_U3CsupportsImageValidationU3Ek__BackingField_7() { return static_cast<int32_t>(offsetof(Cinfo_tED92D7CBD16BE657927A6B7DB64A22DA21EB7D32, ___U3CsupportsImageValidationU3Ek__BackingField_7)); }
inline bool get_U3CsupportsImageValidationU3Ek__BackingField_7() const { return ___U3CsupportsImageValidationU3Ek__BackingField_7; }
inline bool* get_address_of_U3CsupportsImageValidationU3Ek__BackingField_7() { return &___U3CsupportsImageValidationU3Ek__BackingField_7; }
inline void set_U3CsupportsImageValidationU3Ek__BackingField_7(bool value)
{
___U3CsupportsImageValidationU3Ek__BackingField_7 = value;
}
};
// Native definition for P/Invoke marshalling of UnityEngine.XR.ARSubsystems.XRImageTrackingSubsystemDescriptor/Cinfo
struct Cinfo_tED92D7CBD16BE657927A6B7DB64A22DA21EB7D32_marshaled_pinvoke
{
char* ___U3CidU3Ek__BackingField_0;
Type_t * ___U3CproviderTypeU3Ek__BackingField_1;
Type_t * ___U3CsubsystemTypeOverrideU3Ek__BackingField_2;
Type_t * ___U3CsubsystemImplementationTypeU3Ek__BackingField_3;
int32_t ___U3CsupportsMovingImagesU3Ek__BackingField_4;
int32_t ___U3CrequiresPhysicalImageDimensionsU3Ek__BackingField_5;
int32_t ___U3CsupportsMutableLibraryU3Ek__BackingField_6;
int32_t ___U3CsupportsImageValidationU3Ek__BackingField_7;
};
// Native definition for COM marshalling of UnityEngine.XR.ARSubsystems.XRImageTrackingSubsystemDescriptor/Cinfo
struct Cinfo_tED92D7CBD16BE657927A6B7DB64A22DA21EB7D32_marshaled_com
{
Il2CppChar* ___U3CidU3Ek__BackingField_0;
Type_t * ___U3CproviderTypeU3Ek__BackingField_1;
Type_t * ___U3CsubsystemTypeOverrideU3Ek__BackingField_2;
Type_t * ___U3CsubsystemImplementationTypeU3Ek__BackingField_3;
int32_t ___U3CsupportsMovingImagesU3Ek__BackingField_4;
int32_t ___U3CrequiresPhysicalImageDimensionsU3Ek__BackingField_5;
int32_t ___U3CsupportsMutableLibraryU3Ek__BackingField_6;
int32_t ___U3CsupportsImageValidationU3Ek__BackingField_7;
};
// UnityEngine.XR.ARSubsystems.XRObjectTrackingSubsystemDescriptor/Capabilities
struct Capabilities_tC6F329DD5C73C6B9E04BE77A3AE0E52390BD8685
{
public:
union
{
struct
{
};
uint8_t Capabilities_tC6F329DD5C73C6B9E04BE77A3AE0E52390BD8685__padding[1];
};
public:
};
// UnityEngine.XR.ARSubsystems.XRPlaneSubsystemDescriptor/Cinfo
struct Cinfo_tC49A76BF09DB3F926B17955E1B8D729DC9B272AD
{
public:
// System.String UnityEngine.XR.ARSubsystems.XRPlaneSubsystemDescriptor/Cinfo::<id>k__BackingField
String_t* ___U3CidU3Ek__BackingField_0;
// System.Type UnityEngine.XR.ARSubsystems.XRPlaneSubsystemDescriptor/Cinfo::<providerType>k__BackingField
Type_t * ___U3CproviderTypeU3Ek__BackingField_1;
// System.Type UnityEngine.XR.ARSubsystems.XRPlaneSubsystemDescriptor/Cinfo::<subsystemTypeOverride>k__BackingField
Type_t * ___U3CsubsystemTypeOverrideU3Ek__BackingField_2;
// System.Type UnityEngine.XR.ARSubsystems.XRPlaneSubsystemDescriptor/Cinfo::<subsystemImplementationType>k__BackingField
Type_t * ___U3CsubsystemImplementationTypeU3Ek__BackingField_3;
// System.Boolean UnityEngine.XR.ARSubsystems.XRPlaneSubsystemDescriptor/Cinfo::<supportsHorizontalPlaneDetection>k__BackingField
bool ___U3CsupportsHorizontalPlaneDetectionU3Ek__BackingField_4;
// System.Boolean UnityEngine.XR.ARSubsystems.XRPlaneSubsystemDescriptor/Cinfo::<supportsVerticalPlaneDetection>k__BackingField
bool ___U3CsupportsVerticalPlaneDetectionU3Ek__BackingField_5;
// System.Boolean UnityEngine.XR.ARSubsystems.XRPlaneSubsystemDescriptor/Cinfo::<supportsArbitraryPlaneDetection>k__BackingField
bool ___U3CsupportsArbitraryPlaneDetectionU3Ek__BackingField_6;
// System.Boolean UnityEngine.XR.ARSubsystems.XRPlaneSubsystemDescriptor/Cinfo::<supportsBoundaryVertices>k__BackingField
bool ___U3CsupportsBoundaryVerticesU3Ek__BackingField_7;
// System.Boolean UnityEngine.XR.ARSubsystems.XRPlaneSubsystemDescriptor/Cinfo::<supportsClassification>k__BackingField
bool ___U3CsupportsClassificationU3Ek__BackingField_8;
public:
inline static int32_t get_offset_of_U3CidU3Ek__BackingField_0() { return static_cast<int32_t>(offsetof(Cinfo_tC49A76BF09DB3F926B17955E1B8D729DC9B272AD, ___U3CidU3Ek__BackingField_0)); }
inline String_t* get_U3CidU3Ek__BackingField_0() const { return ___U3CidU3Ek__BackingField_0; }
inline String_t** get_address_of_U3CidU3Ek__BackingField_0() { return &___U3CidU3Ek__BackingField_0; }
inline void set_U3CidU3Ek__BackingField_0(String_t* value)
{
___U3CidU3Ek__BackingField_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CidU3Ek__BackingField_0), (void*)value);
}
inline static int32_t get_offset_of_U3CproviderTypeU3Ek__BackingField_1() { return static_cast<int32_t>(offsetof(Cinfo_tC49A76BF09DB3F926B17955E1B8D729DC9B272AD, ___U3CproviderTypeU3Ek__BackingField_1)); }
inline Type_t * get_U3CproviderTypeU3Ek__BackingField_1() const { return ___U3CproviderTypeU3Ek__BackingField_1; }
inline Type_t ** get_address_of_U3CproviderTypeU3Ek__BackingField_1() { return &___U3CproviderTypeU3Ek__BackingField_1; }
inline void set_U3CproviderTypeU3Ek__BackingField_1(Type_t * value)
{
___U3CproviderTypeU3Ek__BackingField_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CproviderTypeU3Ek__BackingField_1), (void*)value);
}
inline static int32_t get_offset_of_U3CsubsystemTypeOverrideU3Ek__BackingField_2() { return static_cast<int32_t>(offsetof(Cinfo_tC49A76BF09DB3F926B17955E1B8D729DC9B272AD, ___U3CsubsystemTypeOverrideU3Ek__BackingField_2)); }
inline Type_t * get_U3CsubsystemTypeOverrideU3Ek__BackingField_2() const { return ___U3CsubsystemTypeOverrideU3Ek__BackingField_2; }
inline Type_t ** get_address_of_U3CsubsystemTypeOverrideU3Ek__BackingField_2() { return &___U3CsubsystemTypeOverrideU3Ek__BackingField_2; }
inline void set_U3CsubsystemTypeOverrideU3Ek__BackingField_2(Type_t * value)
{
___U3CsubsystemTypeOverrideU3Ek__BackingField_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CsubsystemTypeOverrideU3Ek__BackingField_2), (void*)value);
}
inline static int32_t get_offset_of_U3CsubsystemImplementationTypeU3Ek__BackingField_3() { return static_cast<int32_t>(offsetof(Cinfo_tC49A76BF09DB3F926B17955E1B8D729DC9B272AD, ___U3CsubsystemImplementationTypeU3Ek__BackingField_3)); }
inline Type_t * get_U3CsubsystemImplementationTypeU3Ek__BackingField_3() const { return ___U3CsubsystemImplementationTypeU3Ek__BackingField_3; }
inline Type_t ** get_address_of_U3CsubsystemImplementationTypeU3Ek__BackingField_3() { return &___U3CsubsystemImplementationTypeU3Ek__BackingField_3; }
inline void set_U3CsubsystemImplementationTypeU3Ek__BackingField_3(Type_t * value)
{
___U3CsubsystemImplementationTypeU3Ek__BackingField_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CsubsystemImplementationTypeU3Ek__BackingField_3), (void*)value);
}
inline static int32_t get_offset_of_U3CsupportsHorizontalPlaneDetectionU3Ek__BackingField_4() { return static_cast<int32_t>(offsetof(Cinfo_tC49A76BF09DB3F926B17955E1B8D729DC9B272AD, ___U3CsupportsHorizontalPlaneDetectionU3Ek__BackingField_4)); }
inline bool get_U3CsupportsHorizontalPlaneDetectionU3Ek__BackingField_4() const { return ___U3CsupportsHorizontalPlaneDetectionU3Ek__BackingField_4; }
inline bool* get_address_of_U3CsupportsHorizontalPlaneDetectionU3Ek__BackingField_4() { return &___U3CsupportsHorizontalPlaneDetectionU3Ek__BackingField_4; }
inline void set_U3CsupportsHorizontalPlaneDetectionU3Ek__BackingField_4(bool value)
{
___U3CsupportsHorizontalPlaneDetectionU3Ek__BackingField_4 = value;
}
inline static int32_t get_offset_of_U3CsupportsVerticalPlaneDetectionU3Ek__BackingField_5() { return static_cast<int32_t>(offsetof(Cinfo_tC49A76BF09DB3F926B17955E1B8D729DC9B272AD, ___U3CsupportsVerticalPlaneDetectionU3Ek__BackingField_5)); }
inline bool get_U3CsupportsVerticalPlaneDetectionU3Ek__BackingField_5() const { return ___U3CsupportsVerticalPlaneDetectionU3Ek__BackingField_5; }
inline bool* get_address_of_U3CsupportsVerticalPlaneDetectionU3Ek__BackingField_5() { return &___U3CsupportsVerticalPlaneDetectionU3Ek__BackingField_5; }
inline void set_U3CsupportsVerticalPlaneDetectionU3Ek__BackingField_5(bool value)
{
___U3CsupportsVerticalPlaneDetectionU3Ek__BackingField_5 = value;
}
inline static int32_t get_offset_of_U3CsupportsArbitraryPlaneDetectionU3Ek__BackingField_6() { return static_cast<int32_t>(offsetof(Cinfo_tC49A76BF09DB3F926B17955E1B8D729DC9B272AD, ___U3CsupportsArbitraryPlaneDetectionU3Ek__BackingField_6)); }
inline bool get_U3CsupportsArbitraryPlaneDetectionU3Ek__BackingField_6() const { return ___U3CsupportsArbitraryPlaneDetectionU3Ek__BackingField_6; }
inline bool* get_address_of_U3CsupportsArbitraryPlaneDetectionU3Ek__BackingField_6() { return &___U3CsupportsArbitraryPlaneDetectionU3Ek__BackingField_6; }
inline void set_U3CsupportsArbitraryPlaneDetectionU3Ek__BackingField_6(bool value)
{
___U3CsupportsArbitraryPlaneDetectionU3Ek__BackingField_6 = value;
}
inline static int32_t get_offset_of_U3CsupportsBoundaryVerticesU3Ek__BackingField_7() { return static_cast<int32_t>(offsetof(Cinfo_tC49A76BF09DB3F926B17955E1B8D729DC9B272AD, ___U3CsupportsBoundaryVerticesU3Ek__BackingField_7)); }
inline bool get_U3CsupportsBoundaryVerticesU3Ek__BackingField_7() const { return ___U3CsupportsBoundaryVerticesU3Ek__BackingField_7; }
inline bool* get_address_of_U3CsupportsBoundaryVerticesU3Ek__BackingField_7() { return &___U3CsupportsBoundaryVerticesU3Ek__BackingField_7; }
inline void set_U3CsupportsBoundaryVerticesU3Ek__BackingField_7(bool value)
{
___U3CsupportsBoundaryVerticesU3Ek__BackingField_7 = value;
}
inline static int32_t get_offset_of_U3CsupportsClassificationU3Ek__BackingField_8() { return static_cast<int32_t>(offsetof(Cinfo_tC49A76BF09DB3F926B17955E1B8D729DC9B272AD, ___U3CsupportsClassificationU3Ek__BackingField_8)); }
inline bool get_U3CsupportsClassificationU3Ek__BackingField_8() const { return ___U3CsupportsClassificationU3Ek__BackingField_8; }
inline bool* get_address_of_U3CsupportsClassificationU3Ek__BackingField_8() { return &___U3CsupportsClassificationU3Ek__BackingField_8; }
inline void set_U3CsupportsClassificationU3Ek__BackingField_8(bool value)
{
___U3CsupportsClassificationU3Ek__BackingField_8 = value;
}
};
// Native definition for P/Invoke marshalling of UnityEngine.XR.ARSubsystems.XRPlaneSubsystemDescriptor/Cinfo
struct Cinfo_tC49A76BF09DB3F926B17955E1B8D729DC9B272AD_marshaled_pinvoke
{
char* ___U3CidU3Ek__BackingField_0;
Type_t * ___U3CproviderTypeU3Ek__BackingField_1;
Type_t * ___U3CsubsystemTypeOverrideU3Ek__BackingField_2;
Type_t * ___U3CsubsystemImplementationTypeU3Ek__BackingField_3;
int32_t ___U3CsupportsHorizontalPlaneDetectionU3Ek__BackingField_4;
int32_t ___U3CsupportsVerticalPlaneDetectionU3Ek__BackingField_5;
int32_t ___U3CsupportsArbitraryPlaneDetectionU3Ek__BackingField_6;
int32_t ___U3CsupportsBoundaryVerticesU3Ek__BackingField_7;
int32_t ___U3CsupportsClassificationU3Ek__BackingField_8;
};
// Native definition for COM marshalling of UnityEngine.XR.ARSubsystems.XRPlaneSubsystemDescriptor/Cinfo
struct Cinfo_tC49A76BF09DB3F926B17955E1B8D729DC9B272AD_marshaled_com
{
Il2CppChar* ___U3CidU3Ek__BackingField_0;
Type_t * ___U3CproviderTypeU3Ek__BackingField_1;
Type_t * ___U3CsubsystemTypeOverrideU3Ek__BackingField_2;
Type_t * ___U3CsubsystemImplementationTypeU3Ek__BackingField_3;
int32_t ___U3CsupportsHorizontalPlaneDetectionU3Ek__BackingField_4;
int32_t ___U3CsupportsVerticalPlaneDetectionU3Ek__BackingField_5;
int32_t ___U3CsupportsArbitraryPlaneDetectionU3Ek__BackingField_6;
int32_t ___U3CsupportsBoundaryVerticesU3Ek__BackingField_7;
int32_t ___U3CsupportsClassificationU3Ek__BackingField_8;
};
// UnityEngine.XR.ARSubsystems.XRSessionSubsystemDescriptor/Cinfo
struct Cinfo_t2842A97DA95F40ECADDCA24A291B6114A3A5F71A
{
public:
// System.Boolean UnityEngine.XR.ARSubsystems.XRSessionSubsystemDescriptor/Cinfo::<supportsInstall>k__BackingField
bool ___U3CsupportsInstallU3Ek__BackingField_0;
// System.Boolean UnityEngine.XR.ARSubsystems.XRSessionSubsystemDescriptor/Cinfo::<supportsMatchFrameRate>k__BackingField
bool ___U3CsupportsMatchFrameRateU3Ek__BackingField_1;
// System.String UnityEngine.XR.ARSubsystems.XRSessionSubsystemDescriptor/Cinfo::<id>k__BackingField
String_t* ___U3CidU3Ek__BackingField_2;
// System.Type UnityEngine.XR.ARSubsystems.XRSessionSubsystemDescriptor/Cinfo::<providerType>k__BackingField
Type_t * ___U3CproviderTypeU3Ek__BackingField_3;
// System.Type UnityEngine.XR.ARSubsystems.XRSessionSubsystemDescriptor/Cinfo::<subsystemTypeOverride>k__BackingField
Type_t * ___U3CsubsystemTypeOverrideU3Ek__BackingField_4;
// System.Type UnityEngine.XR.ARSubsystems.XRSessionSubsystemDescriptor/Cinfo::<subsystemImplementationType>k__BackingField
Type_t * ___U3CsubsystemImplementationTypeU3Ek__BackingField_5;
public:
inline static int32_t get_offset_of_U3CsupportsInstallU3Ek__BackingField_0() { return static_cast<int32_t>(offsetof(Cinfo_t2842A97DA95F40ECADDCA24A291B6114A3A5F71A, ___U3CsupportsInstallU3Ek__BackingField_0)); }
inline bool get_U3CsupportsInstallU3Ek__BackingField_0() const { return ___U3CsupportsInstallU3Ek__BackingField_0; }
inline bool* get_address_of_U3CsupportsInstallU3Ek__BackingField_0() { return &___U3CsupportsInstallU3Ek__BackingField_0; }
inline void set_U3CsupportsInstallU3Ek__BackingField_0(bool value)
{
___U3CsupportsInstallU3Ek__BackingField_0 = value;
}
inline static int32_t get_offset_of_U3CsupportsMatchFrameRateU3Ek__BackingField_1() { return static_cast<int32_t>(offsetof(Cinfo_t2842A97DA95F40ECADDCA24A291B6114A3A5F71A, ___U3CsupportsMatchFrameRateU3Ek__BackingField_1)); }
inline bool get_U3CsupportsMatchFrameRateU3Ek__BackingField_1() const { return ___U3CsupportsMatchFrameRateU3Ek__BackingField_1; }
inline bool* get_address_of_U3CsupportsMatchFrameRateU3Ek__BackingField_1() { return &___U3CsupportsMatchFrameRateU3Ek__BackingField_1; }
inline void set_U3CsupportsMatchFrameRateU3Ek__BackingField_1(bool value)
{
___U3CsupportsMatchFrameRateU3Ek__BackingField_1 = value;
}
inline static int32_t get_offset_of_U3CidU3Ek__BackingField_2() { return static_cast<int32_t>(offsetof(Cinfo_t2842A97DA95F40ECADDCA24A291B6114A3A5F71A, ___U3CidU3Ek__BackingField_2)); }
inline String_t* get_U3CidU3Ek__BackingField_2() const { return ___U3CidU3Ek__BackingField_2; }
inline String_t** get_address_of_U3CidU3Ek__BackingField_2() { return &___U3CidU3Ek__BackingField_2; }
inline void set_U3CidU3Ek__BackingField_2(String_t* value)
{
___U3CidU3Ek__BackingField_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CidU3Ek__BackingField_2), (void*)value);
}
inline static int32_t get_offset_of_U3CproviderTypeU3Ek__BackingField_3() { return static_cast<int32_t>(offsetof(Cinfo_t2842A97DA95F40ECADDCA24A291B6114A3A5F71A, ___U3CproviderTypeU3Ek__BackingField_3)); }
inline Type_t * get_U3CproviderTypeU3Ek__BackingField_3() const { return ___U3CproviderTypeU3Ek__BackingField_3; }
inline Type_t ** get_address_of_U3CproviderTypeU3Ek__BackingField_3() { return &___U3CproviderTypeU3Ek__BackingField_3; }
inline void set_U3CproviderTypeU3Ek__BackingField_3(Type_t * value)
{
___U3CproviderTypeU3Ek__BackingField_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CproviderTypeU3Ek__BackingField_3), (void*)value);
}
inline static int32_t get_offset_of_U3CsubsystemTypeOverrideU3Ek__BackingField_4() { return static_cast<int32_t>(offsetof(Cinfo_t2842A97DA95F40ECADDCA24A291B6114A3A5F71A, ___U3CsubsystemTypeOverrideU3Ek__BackingField_4)); }
inline Type_t * get_U3CsubsystemTypeOverrideU3Ek__BackingField_4() const { return ___U3CsubsystemTypeOverrideU3Ek__BackingField_4; }
inline Type_t ** get_address_of_U3CsubsystemTypeOverrideU3Ek__BackingField_4() { return &___U3CsubsystemTypeOverrideU3Ek__BackingField_4; }
inline void set_U3CsubsystemTypeOverrideU3Ek__BackingField_4(Type_t * value)
{
___U3CsubsystemTypeOverrideU3Ek__BackingField_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CsubsystemTypeOverrideU3Ek__BackingField_4), (void*)value);
}
inline static int32_t get_offset_of_U3CsubsystemImplementationTypeU3Ek__BackingField_5() { return static_cast<int32_t>(offsetof(Cinfo_t2842A97DA95F40ECADDCA24A291B6114A3A5F71A, ___U3CsubsystemImplementationTypeU3Ek__BackingField_5)); }
inline Type_t * get_U3CsubsystemImplementationTypeU3Ek__BackingField_5() const { return ___U3CsubsystemImplementationTypeU3Ek__BackingField_5; }
inline Type_t ** get_address_of_U3CsubsystemImplementationTypeU3Ek__BackingField_5() { return &___U3CsubsystemImplementationTypeU3Ek__BackingField_5; }
inline void set_U3CsubsystemImplementationTypeU3Ek__BackingField_5(Type_t * value)
{
___U3CsubsystemImplementationTypeU3Ek__BackingField_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CsubsystemImplementationTypeU3Ek__BackingField_5), (void*)value);
}
};
// Native definition for P/Invoke marshalling of UnityEngine.XR.ARSubsystems.XRSessionSubsystemDescriptor/Cinfo
struct Cinfo_t2842A97DA95F40ECADDCA24A291B6114A3A5F71A_marshaled_pinvoke
{
int32_t ___U3CsupportsInstallU3Ek__BackingField_0;
int32_t ___U3CsupportsMatchFrameRateU3Ek__BackingField_1;
char* ___U3CidU3Ek__BackingField_2;
Type_t * ___U3CproviderTypeU3Ek__BackingField_3;
Type_t * ___U3CsubsystemTypeOverrideU3Ek__BackingField_4;
Type_t * ___U3CsubsystemImplementationTypeU3Ek__BackingField_5;
};
// Native definition for COM marshalling of UnityEngine.XR.ARSubsystems.XRSessionSubsystemDescriptor/Cinfo
struct Cinfo_t2842A97DA95F40ECADDCA24A291B6114A3A5F71A_marshaled_com
{
int32_t ___U3CsupportsInstallU3Ek__BackingField_0;
int32_t ___U3CsupportsMatchFrameRateU3Ek__BackingField_1;
Il2CppChar* ___U3CidU3Ek__BackingField_2;
Type_t * ___U3CproviderTypeU3Ek__BackingField_3;
Type_t * ___U3CsubsystemTypeOverrideU3Ek__BackingField_4;
Type_t * ___U3CsubsystemImplementationTypeU3Ek__BackingField_5;
};
// Unity.Collections.NativeSlice`1/Enumerator<UnityEngine.XR.ARSubsystems.ConfigurationDescriptor>
struct Enumerator_t4FA921251B8D2F59E29728BD1E99A05D23C68573
{
public:
// Unity.Collections.NativeSlice`1<T> Unity.Collections.NativeSlice`1/Enumerator::m_Array
NativeSlice_1_tEFBDB61DC6CB8E764B0E92727E8B9EA61662F8F2 ___m_Array_0;
// System.Int32 Unity.Collections.NativeSlice`1/Enumerator::m_Index
int32_t ___m_Index_1;
public:
inline static int32_t get_offset_of_m_Array_0() { return static_cast<int32_t>(offsetof(Enumerator_t4FA921251B8D2F59E29728BD1E99A05D23C68573, ___m_Array_0)); }
inline NativeSlice_1_tEFBDB61DC6CB8E764B0E92727E8B9EA61662F8F2 get_m_Array_0() const { return ___m_Array_0; }
inline NativeSlice_1_tEFBDB61DC6CB8E764B0E92727E8B9EA61662F8F2 * get_address_of_m_Array_0() { return &___m_Array_0; }
inline void set_m_Array_0(NativeSlice_1_tEFBDB61DC6CB8E764B0E92727E8B9EA61662F8F2 value)
{
___m_Array_0 = value;
}
inline static int32_t get_offset_of_m_Index_1() { return static_cast<int32_t>(offsetof(Enumerator_t4FA921251B8D2F59E29728BD1E99A05D23C68573, ___m_Index_1)); }
inline int32_t get_m_Index_1() const { return ___m_Index_1; }
inline int32_t* get_address_of_m_Index_1() { return &___m_Index_1; }
inline void set_m_Index_1(int32_t value)
{
___m_Index_1 = value;
}
};
// System.Collections.Generic.List`1/Enumerator<UnityEngine.XR.ARSubsystems.XRReferenceObject>
struct Enumerator_t70FBF5DA5BEDE113A92C759B1356E6AA38D54708
{
public:
// System.Collections.Generic.List`1<T> System.Collections.Generic.List`1/Enumerator::list
List_1_t3A1F09045329A30B2867F24E69EC807BE36BEA9B * ___list_0;
// System.Int32 System.Collections.Generic.List`1/Enumerator::index
int32_t ___index_1;
// System.Int32 System.Collections.Generic.List`1/Enumerator::version
int32_t ___version_2;
// T System.Collections.Generic.List`1/Enumerator::current
XRReferenceObject_t18877E1C9F50FF11192A86805D881349020032AE ___current_3;
public:
inline static int32_t get_offset_of_list_0() { return static_cast<int32_t>(offsetof(Enumerator_t70FBF5DA5BEDE113A92C759B1356E6AA38D54708, ___list_0)); }
inline List_1_t3A1F09045329A30B2867F24E69EC807BE36BEA9B * get_list_0() const { return ___list_0; }
inline List_1_t3A1F09045329A30B2867F24E69EC807BE36BEA9B ** get_address_of_list_0() { return &___list_0; }
inline void set_list_0(List_1_t3A1F09045329A30B2867F24E69EC807BE36BEA9B * value)
{
___list_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___list_0), (void*)value);
}
inline static int32_t get_offset_of_index_1() { return static_cast<int32_t>(offsetof(Enumerator_t70FBF5DA5BEDE113A92C759B1356E6AA38D54708, ___index_1)); }
inline int32_t get_index_1() const { return ___index_1; }
inline int32_t* get_address_of_index_1() { return &___index_1; }
inline void set_index_1(int32_t value)
{
___index_1 = value;
}
inline static int32_t get_offset_of_version_2() { return static_cast<int32_t>(offsetof(Enumerator_t70FBF5DA5BEDE113A92C759B1356E6AA38D54708, ___version_2)); }
inline int32_t get_version_2() const { return ___version_2; }
inline int32_t* get_address_of_version_2() { return &___version_2; }
inline void set_version_2(int32_t value)
{
___version_2 = value;
}
inline static int32_t get_offset_of_current_3() { return static_cast<int32_t>(offsetof(Enumerator_t70FBF5DA5BEDE113A92C759B1356E6AA38D54708, ___current_3)); }
inline XRReferenceObject_t18877E1C9F50FF11192A86805D881349020032AE get_current_3() const { return ___current_3; }
inline XRReferenceObject_t18877E1C9F50FF11192A86805D881349020032AE * get_address_of_current_3() { return &___current_3; }
inline void set_current_3(XRReferenceObject_t18877E1C9F50FF11192A86805D881349020032AE value)
{
___current_3 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___current_3))->___m_Name_2), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&(((&___current_3))->___m_Entries_3), (void*)NULL);
#endif
}
};
// System.Nullable`1<UnityEngine.Vector2>
struct Nullable_1_tF7B8C31618B00224A735E543E66CD257CB7E42FB
{
public:
// T System.Nullable`1::value
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___value_0;
// System.Boolean System.Nullable`1::has_value
bool ___has_value_1;
public:
inline static int32_t get_offset_of_value_0() { return static_cast<int32_t>(offsetof(Nullable_1_tF7B8C31618B00224A735E543E66CD257CB7E42FB, ___value_0)); }
inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 get_value_0() const { return ___value_0; }
inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 * get_address_of_value_0() { return &___value_0; }
inline void set_value_0(Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 value)
{
___value_0 = value;
}
inline static int32_t get_offset_of_has_value_1() { return static_cast<int32_t>(offsetof(Nullable_1_tF7B8C31618B00224A735E543E66CD257CB7E42FB, ___has_value_1)); }
inline bool get_has_value_1() const { return ___has_value_1; }
inline bool* get_address_of_has_value_1() { return &___has_value_1; }
inline void set_has_value_1(bool value)
{
___has_value_1 = value;
}
};
// UnityEngine.XR.ARSubsystems.TrackingSubsystem`4<UnityEngine.XR.ARSubsystems.BoundedPlane,UnityEngine.XR.ARSubsystems.XRPlaneSubsystem,UnityEngine.XR.ARSubsystems.XRPlaneSubsystemDescriptor,UnityEngine.XR.ARSubsystems.XRPlaneSubsystem/Provider>
struct TrackingSubsystem_4_t4CF696722E0C05A2C0234E78E673F4F17EEC1C94 : public SubsystemWithProvider_3_t2D48685843F3C8CD4AE71F1303F357DCAE9FD683
{
public:
public:
};
// UnityEngine.XR.ARSubsystems.TrackingSubsystem`4<UnityEngine.XR.ARSubsystems.XRAnchor,UnityEngine.XR.ARSubsystems.XRAnchorSubsystem,UnityEngine.XR.ARSubsystems.XRAnchorSubsystemDescriptor,UnityEngine.XR.ARSubsystems.XRAnchorSubsystem/Provider>
struct TrackingSubsystem_4_t5C7E2B8B7A9943DF8B9FF5B46FB5AFA71E9826F1 : public SubsystemWithProvider_3_tD91EB2F57F19DA2CDB9A5E0011978CA1EA351BA2
{
public:
public:
};
// UnityEngine.XR.ARSubsystems.TrackingSubsystem`4<UnityEngine.XR.ARSubsystems.XREnvironmentProbe,UnityEngine.XR.ARSubsystems.XREnvironmentProbeSubsystem,UnityEngine.XR.ARSubsystems.XREnvironmentProbeSubsystemDescriptor,UnityEngine.XR.ARSubsystems.XREnvironmentProbeSubsystem/Provider>
struct TrackingSubsystem_4_t3D5C3B3749ABE82CC258AD552288C51FAE67DA1A : public SubsystemWithProvider_3_t8B33A21A2B183DB3F429FD3F0A899D7ED1BB4DEA
{
public:
public:
};
// UnityEngine.XR.ARSubsystems.TrackingSubsystem`4<UnityEngine.XR.ARSubsystems.XRFace,UnityEngine.XR.ARSubsystems.XRFaceSubsystem,UnityEngine.XR.ARSubsystems.XRFaceSubsystemDescriptor,UnityEngine.XR.ARSubsystems.XRFaceSubsystem/Provider>
struct TrackingSubsystem_4_tFC4495C6B04D616F71158509026269F004F79333 : public SubsystemWithProvider_3_t2E74C29CB9922972A66085C9DAD6E1542BCCE25B
{
public:
public:
};
// UnityEngine.XR.ARSubsystems.TrackingSubsystem`4<UnityEngine.XR.ARSubsystems.XRHumanBody,UnityEngine.XR.ARSubsystems.XRHumanBodySubsystem,UnityEngine.XR.ARSubsystems.XRHumanBodySubsystemDescriptor,UnityEngine.XR.ARSubsystems.XRHumanBodySubsystem/Provider>
struct TrackingSubsystem_4_tB0BB38AE7B56DA9BE6D8463DD64E4766AD686B86 : public SubsystemWithProvider_3_t152AEC9946809B23BD9A7DE32A2113E12B8CE2C2
{
public:
public:
};
// UnityEngine.XR.ARSubsystems.TrackingSubsystem`4<UnityEngine.XR.ARSubsystems.XRParticipant,UnityEngine.XR.ARSubsystems.XRParticipantSubsystem,UnityEngine.XR.ARSubsystems.XRParticipantSubsystemDescriptor,UnityEngine.XR.ARSubsystems.XRParticipantSubsystem/Provider>
struct TrackingSubsystem_4_tF2C9DD677702042D71E5050214FE516389400277 : public SubsystemWithProvider_3_t0293B6FD1251DCA5DC0D3396C57B87118ECE01DF
{
public:
public:
};
// UnityEngine.XR.ARSubsystems.TrackingSubsystem`4<UnityEngine.XR.ARSubsystems.XRPointCloud,UnityEngine.XR.ARSubsystems.XRDepthSubsystem,UnityEngine.XR.ARSubsystems.XRDepthSubsystemDescriptor,UnityEngine.XR.ARSubsystems.XRDepthSubsystem/Provider>
struct TrackingSubsystem_4_t52B43FDBB6E641E351193D790222EA1C68B2984E : public SubsystemWithProvider_3_tD436D6BE4AA164ED727D09EFDE50FF8DCAA50D98
{
public:
public:
};
// UnityEngine.XR.ARSubsystems.TrackingSubsystem`4<UnityEngine.XR.ARSubsystems.XRRaycast,UnityEngine.XR.ARSubsystems.XRRaycastSubsystem,UnityEngine.XR.ARSubsystems.XRRaycastSubsystemDescriptor,UnityEngine.XR.ARSubsystems.XRRaycastSubsystem/Provider>
struct TrackingSubsystem_4_t87A57AE1E1117ED73BBD3B84DD595F36FA975077 : public SubsystemWithProvider_3_t6C72A4BB6DC4A9CC6B00E99D4A5EF1E1C9BBAF1E
{
public:
public:
};
// UnityEngine.XR.ARSubsystems.TrackingSubsystem`4<UnityEngine.XR.ARSubsystems.XRReferencePoint,UnityEngine.XR.ARSubsystems.XRReferencePointSubsystem,UnityEngine.XR.ARSubsystems.XRReferencePointSubsystemDescriptor,UnityEngine.XR.ARSubsystems.XRReferencePointSubsystem/Provider>
struct TrackingSubsystem_4_t0B2307E3EA3CA1C1A2EE084C333FC42E3F5590B0 : public SubsystemWithProvider_3_tBEFCA8C8D6BE0554DE28CB542681793993E3C7C3
{
public:
public:
};
// UnityEngine.XR.ARSubsystems.TrackingSubsystem`4<UnityEngine.XR.ARSubsystems.XRTrackedImage,UnityEngine.XR.ARSubsystems.XRImageTrackingSubsystem,UnityEngine.XR.ARSubsystems.XRImageTrackingSubsystemDescriptor,UnityEngine.XR.ARSubsystems.XRImageTrackingSubsystem/Provider>
struct TrackingSubsystem_4_tCE5EA1B7325877FD88C7CF41F681F25B1FC1717A : public SubsystemWithProvider_3_t249D82EF0730E7FF15F2B19C4BB45B2E08CF620B
{
public:
public:
};
// UnityEngine.XR.ARSubsystems.TrackingSubsystem`4<UnityEngine.XR.ARSubsystems.XRTrackedObject,UnityEngine.XR.ARSubsystems.XRObjectTrackingSubsystem,UnityEngine.XR.ARSubsystems.XRObjectTrackingSubsystemDescriptor,UnityEngine.XR.ARSubsystems.XRObjectTrackingSubsystem/Provider>
struct TrackingSubsystem_4_t1E41FDFF37B1529EED554D89481040B067E300EB : public SubsystemWithProvider_3_t2622D99FF6F2A6B95B2E82547A76A7E7712AA7DB
{
public:
public:
};
// UnityEngine.XR.ARSubsystems.AddReferenceImageJobStatus
struct AddReferenceImageJobStatus_t9DCD4D2016D73AAD47038B7967E3C83B06A91899
{
public:
// System.Int32 UnityEngine.XR.ARSubsystems.AddReferenceImageJobStatus::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(AddReferenceImageJobStatus_t9DCD4D2016D73AAD47038B7967E3C83B06A91899, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
// Unity.Collections.Allocator
struct Allocator_t9888223DEF4F46F3419ECFCCD0753599BEE52A05
{
public:
// System.Int32 Unity.Collections.Allocator::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(Allocator_t9888223DEF4F46F3419ECFCCD0753599BEE52A05, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
// System.Reflection.BindingFlags
struct BindingFlags_tAAAB07D9AC588F0D55D844E51D7035E96DF94733
{
public:
// System.Int32 System.Reflection.BindingFlags::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(BindingFlags_tAAAB07D9AC588F0D55D844E51D7035E96DF94733, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
// UnityEngine.XR.ARSubsystems.CameraFocusMode
struct CameraFocusMode_t573CBB96E832D97A59EE6B5EBF79568A5C83042A
{
public:
// System.Int32 UnityEngine.XR.ARSubsystems.CameraFocusMode::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(CameraFocusMode_t573CBB96E832D97A59EE6B5EBF79568A5C83042A, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
// System.Delegate
struct Delegate_t : public RuntimeObject
{
public:
// System.IntPtr System.Delegate::method_ptr
Il2CppMethodPointer ___method_ptr_0;
// System.IntPtr System.Delegate::invoke_impl
intptr_t ___invoke_impl_1;
// System.Object System.Delegate::m_target
RuntimeObject * ___m_target_2;
// System.IntPtr System.Delegate::method
intptr_t ___method_3;
// System.IntPtr System.Delegate::delegate_trampoline
intptr_t ___delegate_trampoline_4;
// System.IntPtr System.Delegate::extra_arg
intptr_t ___extra_arg_5;
// System.IntPtr System.Delegate::method_code
intptr_t ___method_code_6;
// System.Reflection.MethodInfo System.Delegate::method_info
MethodInfo_t * ___method_info_7;
// System.Reflection.MethodInfo System.Delegate::original_method_info
MethodInfo_t * ___original_method_info_8;
// System.DelegateData System.Delegate::data
DelegateData_t17DD30660E330C49381DAA99F934BE75CB11F288 * ___data_9;
// System.Boolean System.Delegate::method_is_virtual
bool ___method_is_virtual_10;
public:
inline static int32_t get_offset_of_method_ptr_0() { return static_cast<int32_t>(offsetof(Delegate_t, ___method_ptr_0)); }
inline Il2CppMethodPointer get_method_ptr_0() const { return ___method_ptr_0; }
inline Il2CppMethodPointer* get_address_of_method_ptr_0() { return &___method_ptr_0; }
inline void set_method_ptr_0(Il2CppMethodPointer value)
{
___method_ptr_0 = value;
}
inline static int32_t get_offset_of_invoke_impl_1() { return static_cast<int32_t>(offsetof(Delegate_t, ___invoke_impl_1)); }
inline intptr_t get_invoke_impl_1() const { return ___invoke_impl_1; }
inline intptr_t* get_address_of_invoke_impl_1() { return &___invoke_impl_1; }
inline void set_invoke_impl_1(intptr_t value)
{
___invoke_impl_1 = value;
}
inline static int32_t get_offset_of_m_target_2() { return static_cast<int32_t>(offsetof(Delegate_t, ___m_target_2)); }
inline RuntimeObject * get_m_target_2() const { return ___m_target_2; }
inline RuntimeObject ** get_address_of_m_target_2() { return &___m_target_2; }
inline void set_m_target_2(RuntimeObject * value)
{
___m_target_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_target_2), (void*)value);
}
inline static int32_t get_offset_of_method_3() { return static_cast<int32_t>(offsetof(Delegate_t, ___method_3)); }
inline intptr_t get_method_3() const { return ___method_3; }
inline intptr_t* get_address_of_method_3() { return &___method_3; }
inline void set_method_3(intptr_t value)
{
___method_3 = value;
}
inline static int32_t get_offset_of_delegate_trampoline_4() { return static_cast<int32_t>(offsetof(Delegate_t, ___delegate_trampoline_4)); }
inline intptr_t get_delegate_trampoline_4() const { return ___delegate_trampoline_4; }
inline intptr_t* get_address_of_delegate_trampoline_4() { return &___delegate_trampoline_4; }
inline void set_delegate_trampoline_4(intptr_t value)
{
___delegate_trampoline_4 = value;
}
inline static int32_t get_offset_of_extra_arg_5() { return static_cast<int32_t>(offsetof(Delegate_t, ___extra_arg_5)); }
inline intptr_t get_extra_arg_5() const { return ___extra_arg_5; }
inline intptr_t* get_address_of_extra_arg_5() { return &___extra_arg_5; }
inline void set_extra_arg_5(intptr_t value)
{
___extra_arg_5 = value;
}
inline static int32_t get_offset_of_method_code_6() { return static_cast<int32_t>(offsetof(Delegate_t, ___method_code_6)); }
inline intptr_t get_method_code_6() const { return ___method_code_6; }
inline intptr_t* get_address_of_method_code_6() { return &___method_code_6; }
inline void set_method_code_6(intptr_t value)
{
___method_code_6 = value;
}
inline static int32_t get_offset_of_method_info_7() { return static_cast<int32_t>(offsetof(Delegate_t, ___method_info_7)); }
inline MethodInfo_t * get_method_info_7() const { return ___method_info_7; }
inline MethodInfo_t ** get_address_of_method_info_7() { return &___method_info_7; }
inline void set_method_info_7(MethodInfo_t * value)
{
___method_info_7 = value;
Il2CppCodeGenWriteBarrier((void**)(&___method_info_7), (void*)value);
}
inline static int32_t get_offset_of_original_method_info_8() { return static_cast<int32_t>(offsetof(Delegate_t, ___original_method_info_8)); }
inline MethodInfo_t * get_original_method_info_8() const { return ___original_method_info_8; }
inline MethodInfo_t ** get_address_of_original_method_info_8() { return &___original_method_info_8; }
inline void set_original_method_info_8(MethodInfo_t * value)
{
___original_method_info_8 = value;
Il2CppCodeGenWriteBarrier((void**)(&___original_method_info_8), (void*)value);
}
inline static int32_t get_offset_of_data_9() { return static_cast<int32_t>(offsetof(Delegate_t, ___data_9)); }
inline DelegateData_t17DD30660E330C49381DAA99F934BE75CB11F288 * get_data_9() const { return ___data_9; }
inline DelegateData_t17DD30660E330C49381DAA99F934BE75CB11F288 ** get_address_of_data_9() { return &___data_9; }
inline void set_data_9(DelegateData_t17DD30660E330C49381DAA99F934BE75CB11F288 * value)
{
___data_9 = value;
Il2CppCodeGenWriteBarrier((void**)(&___data_9), (void*)value);
}
inline static int32_t get_offset_of_method_is_virtual_10() { return static_cast<int32_t>(offsetof(Delegate_t, ___method_is_virtual_10)); }
inline bool get_method_is_virtual_10() const { return ___method_is_virtual_10; }
inline bool* get_address_of_method_is_virtual_10() { return &___method_is_virtual_10; }
inline void set_method_is_virtual_10(bool value)
{
___method_is_virtual_10 = value;
}
};
// Native definition for P/Invoke marshalling of System.Delegate
struct Delegate_t_marshaled_pinvoke
{
intptr_t ___method_ptr_0;
intptr_t ___invoke_impl_1;
Il2CppIUnknown* ___m_target_2;
intptr_t ___method_3;
intptr_t ___delegate_trampoline_4;
intptr_t ___extra_arg_5;
intptr_t ___method_code_6;
MethodInfo_t * ___method_info_7;
MethodInfo_t * ___original_method_info_8;
DelegateData_t17DD30660E330C49381DAA99F934BE75CB11F288 * ___data_9;
int32_t ___method_is_virtual_10;
};
// Native definition for COM marshalling of System.Delegate
struct Delegate_t_marshaled_com
{
intptr_t ___method_ptr_0;
intptr_t ___invoke_impl_1;
Il2CppIUnknown* ___m_target_2;
intptr_t ___method_3;
intptr_t ___delegate_trampoline_4;
intptr_t ___extra_arg_5;
intptr_t ___method_code_6;
MethodInfo_t * ___method_info_7;
MethodInfo_t * ___original_method_info_8;
DelegateData_t17DD30660E330C49381DAA99F934BE75CB11F288 * ___data_9;
int32_t ___method_is_virtual_10;
};
// UnityEngine.XR.ARSubsystems.EnvironmentDepthMode
struct EnvironmentDepthMode_t3510F9A630A7170A2481D60487384089E64D84C7
{
public:
// System.Int32 UnityEngine.XR.ARSubsystems.EnvironmentDepthMode::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(EnvironmentDepthMode_t3510F9A630A7170A2481D60487384089E64D84C7, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
// System.Exception
struct Exception_t : public RuntimeObject
{
public:
// System.String System.Exception::_className
String_t* ____className_1;
// System.String System.Exception::_message
String_t* ____message_2;
// System.Collections.IDictionary System.Exception::_data
RuntimeObject* ____data_3;
// System.Exception System.Exception::_innerException
Exception_t * ____innerException_4;
// System.String System.Exception::_helpURL
String_t* ____helpURL_5;
// System.Object System.Exception::_stackTrace
RuntimeObject * ____stackTrace_6;
// System.String System.Exception::_stackTraceString
String_t* ____stackTraceString_7;
// System.String System.Exception::_remoteStackTraceString
String_t* ____remoteStackTraceString_8;
// System.Int32 System.Exception::_remoteStackIndex
int32_t ____remoteStackIndex_9;
// System.Object System.Exception::_dynamicMethods
RuntimeObject * ____dynamicMethods_10;
// System.Int32 System.Exception::_HResult
int32_t ____HResult_11;
// System.String System.Exception::_source
String_t* ____source_12;
// System.Runtime.Serialization.SafeSerializationManager System.Exception::_safeSerializationManager
SafeSerializationManager_tDE44F029589A028F8A3053C5C06153FAB4AAE29F * ____safeSerializationManager_13;
// System.Diagnostics.StackTrace[] System.Exception::captured_traces
StackTraceU5BU5D_t4AD999C288CB6D1F38A299D12B1598D606588971* ___captured_traces_14;
// System.IntPtr[] System.Exception::native_trace_ips
IntPtrU5BU5D_t27FC72B0409D75AAF33EC42498E8094E95FEE9A6* ___native_trace_ips_15;
public:
inline static int32_t get_offset_of__className_1() { return static_cast<int32_t>(offsetof(Exception_t, ____className_1)); }
inline String_t* get__className_1() const { return ____className_1; }
inline String_t** get_address_of__className_1() { return &____className_1; }
inline void set__className_1(String_t* value)
{
____className_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&____className_1), (void*)value);
}
inline static int32_t get_offset_of__message_2() { return static_cast<int32_t>(offsetof(Exception_t, ____message_2)); }
inline String_t* get__message_2() const { return ____message_2; }
inline String_t** get_address_of__message_2() { return &____message_2; }
inline void set__message_2(String_t* value)
{
____message_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&____message_2), (void*)value);
}
inline static int32_t get_offset_of__data_3() { return static_cast<int32_t>(offsetof(Exception_t, ____data_3)); }
inline RuntimeObject* get__data_3() const { return ____data_3; }
inline RuntimeObject** get_address_of__data_3() { return &____data_3; }
inline void set__data_3(RuntimeObject* value)
{
____data_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&____data_3), (void*)value);
}
inline static int32_t get_offset_of__innerException_4() { return static_cast<int32_t>(offsetof(Exception_t, ____innerException_4)); }
inline Exception_t * get__innerException_4() const { return ____innerException_4; }
inline Exception_t ** get_address_of__innerException_4() { return &____innerException_4; }
inline void set__innerException_4(Exception_t * value)
{
____innerException_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&____innerException_4), (void*)value);
}
inline static int32_t get_offset_of__helpURL_5() { return static_cast<int32_t>(offsetof(Exception_t, ____helpURL_5)); }
inline String_t* get__helpURL_5() const { return ____helpURL_5; }
inline String_t** get_address_of__helpURL_5() { return &____helpURL_5; }
inline void set__helpURL_5(String_t* value)
{
____helpURL_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&____helpURL_5), (void*)value);
}
inline static int32_t get_offset_of__stackTrace_6() { return static_cast<int32_t>(offsetof(Exception_t, ____stackTrace_6)); }
inline RuntimeObject * get__stackTrace_6() const { return ____stackTrace_6; }
inline RuntimeObject ** get_address_of__stackTrace_6() { return &____stackTrace_6; }
inline void set__stackTrace_6(RuntimeObject * value)
{
____stackTrace_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&____stackTrace_6), (void*)value);
}
inline static int32_t get_offset_of__stackTraceString_7() { return static_cast<int32_t>(offsetof(Exception_t, ____stackTraceString_7)); }
inline String_t* get__stackTraceString_7() const { return ____stackTraceString_7; }
inline String_t** get_address_of__stackTraceString_7() { return &____stackTraceString_7; }
inline void set__stackTraceString_7(String_t* value)
{
____stackTraceString_7 = value;
Il2CppCodeGenWriteBarrier((void**)(&____stackTraceString_7), (void*)value);
}
inline static int32_t get_offset_of__remoteStackTraceString_8() { return static_cast<int32_t>(offsetof(Exception_t, ____remoteStackTraceString_8)); }
inline String_t* get__remoteStackTraceString_8() const { return ____remoteStackTraceString_8; }
inline String_t** get_address_of__remoteStackTraceString_8() { return &____remoteStackTraceString_8; }
inline void set__remoteStackTraceString_8(String_t* value)
{
____remoteStackTraceString_8 = value;
Il2CppCodeGenWriteBarrier((void**)(&____remoteStackTraceString_8), (void*)value);
}
inline static int32_t get_offset_of__remoteStackIndex_9() { return static_cast<int32_t>(offsetof(Exception_t, ____remoteStackIndex_9)); }
inline int32_t get__remoteStackIndex_9() const { return ____remoteStackIndex_9; }
inline int32_t* get_address_of__remoteStackIndex_9() { return &____remoteStackIndex_9; }
inline void set__remoteStackIndex_9(int32_t value)
{
____remoteStackIndex_9 = value;
}
inline static int32_t get_offset_of__dynamicMethods_10() { return static_cast<int32_t>(offsetof(Exception_t, ____dynamicMethods_10)); }
inline RuntimeObject * get__dynamicMethods_10() const { return ____dynamicMethods_10; }
inline RuntimeObject ** get_address_of__dynamicMethods_10() { return &____dynamicMethods_10; }
inline void set__dynamicMethods_10(RuntimeObject * value)
{
____dynamicMethods_10 = value;
Il2CppCodeGenWriteBarrier((void**)(&____dynamicMethods_10), (void*)value);
}
inline static int32_t get_offset_of__HResult_11() { return static_cast<int32_t>(offsetof(Exception_t, ____HResult_11)); }
inline int32_t get__HResult_11() const { return ____HResult_11; }
inline int32_t* get_address_of__HResult_11() { return &____HResult_11; }
inline void set__HResult_11(int32_t value)
{
____HResult_11 = value;
}
inline static int32_t get_offset_of__source_12() { return static_cast<int32_t>(offsetof(Exception_t, ____source_12)); }
inline String_t* get__source_12() const { return ____source_12; }
inline String_t** get_address_of__source_12() { return &____source_12; }
inline void set__source_12(String_t* value)
{
____source_12 = value;
Il2CppCodeGenWriteBarrier((void**)(&____source_12), (void*)value);
}
inline static int32_t get_offset_of__safeSerializationManager_13() { return static_cast<int32_t>(offsetof(Exception_t, ____safeSerializationManager_13)); }
inline SafeSerializationManager_tDE44F029589A028F8A3053C5C06153FAB4AAE29F * get__safeSerializationManager_13() const { return ____safeSerializationManager_13; }
inline SafeSerializationManager_tDE44F029589A028F8A3053C5C06153FAB4AAE29F ** get_address_of__safeSerializationManager_13() { return &____safeSerializationManager_13; }
inline void set__safeSerializationManager_13(SafeSerializationManager_tDE44F029589A028F8A3053C5C06153FAB4AAE29F * value)
{
____safeSerializationManager_13 = value;
Il2CppCodeGenWriteBarrier((void**)(&____safeSerializationManager_13), (void*)value);
}
inline static int32_t get_offset_of_captured_traces_14() { return static_cast<int32_t>(offsetof(Exception_t, ___captured_traces_14)); }
inline StackTraceU5BU5D_t4AD999C288CB6D1F38A299D12B1598D606588971* get_captured_traces_14() const { return ___captured_traces_14; }
inline StackTraceU5BU5D_t4AD999C288CB6D1F38A299D12B1598D606588971** get_address_of_captured_traces_14() { return &___captured_traces_14; }
inline void set_captured_traces_14(StackTraceU5BU5D_t4AD999C288CB6D1F38A299D12B1598D606588971* value)
{
___captured_traces_14 = value;
Il2CppCodeGenWriteBarrier((void**)(&___captured_traces_14), (void*)value);
}
inline static int32_t get_offset_of_native_trace_ips_15() { return static_cast<int32_t>(offsetof(Exception_t, ___native_trace_ips_15)); }
inline IntPtrU5BU5D_t27FC72B0409D75AAF33EC42498E8094E95FEE9A6* get_native_trace_ips_15() const { return ___native_trace_ips_15; }
inline IntPtrU5BU5D_t27FC72B0409D75AAF33EC42498E8094E95FEE9A6** get_address_of_native_trace_ips_15() { return &___native_trace_ips_15; }
inline void set_native_trace_ips_15(IntPtrU5BU5D_t27FC72B0409D75AAF33EC42498E8094E95FEE9A6* value)
{
___native_trace_ips_15 = value;
Il2CppCodeGenWriteBarrier((void**)(&___native_trace_ips_15), (void*)value);
}
};
struct Exception_t_StaticFields
{
public:
// System.Object System.Exception::s_EDILock
RuntimeObject * ___s_EDILock_0;
public:
inline static int32_t get_offset_of_s_EDILock_0() { return static_cast<int32_t>(offsetof(Exception_t_StaticFields, ___s_EDILock_0)); }
inline RuntimeObject * get_s_EDILock_0() const { return ___s_EDILock_0; }
inline RuntimeObject ** get_address_of_s_EDILock_0() { return &___s_EDILock_0; }
inline void set_s_EDILock_0(RuntimeObject * value)
{
___s_EDILock_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_EDILock_0), (void*)value);
}
};
// Native definition for P/Invoke marshalling of System.Exception
struct Exception_t_marshaled_pinvoke
{
char* ____className_1;
char* ____message_2;
RuntimeObject* ____data_3;
Exception_t_marshaled_pinvoke* ____innerException_4;
char* ____helpURL_5;
Il2CppIUnknown* ____stackTrace_6;
char* ____stackTraceString_7;
char* ____remoteStackTraceString_8;
int32_t ____remoteStackIndex_9;
Il2CppIUnknown* ____dynamicMethods_10;
int32_t ____HResult_11;
char* ____source_12;
SafeSerializationManager_tDE44F029589A028F8A3053C5C06153FAB4AAE29F * ____safeSerializationManager_13;
StackTraceU5BU5D_t4AD999C288CB6D1F38A299D12B1598D606588971* ___captured_traces_14;
Il2CppSafeArray/*NONE*/* ___native_trace_ips_15;
};
// Native definition for COM marshalling of System.Exception
struct Exception_t_marshaled_com
{
Il2CppChar* ____className_1;
Il2CppChar* ____message_2;
RuntimeObject* ____data_3;
Exception_t_marshaled_com* ____innerException_4;
Il2CppChar* ____helpURL_5;
Il2CppIUnknown* ____stackTrace_6;
Il2CppChar* ____stackTraceString_7;
Il2CppChar* ____remoteStackTraceString_8;
int32_t ____remoteStackIndex_9;
Il2CppIUnknown* ____dynamicMethods_10;
int32_t ____HResult_11;
Il2CppChar* ____source_12;
SafeSerializationManager_tDE44F029589A028F8A3053C5C06153FAB4AAE29F * ____safeSerializationManager_13;
StackTraceU5BU5D_t4AD999C288CB6D1F38A299D12B1598D606588971* ___captured_traces_14;
Il2CppSafeArray/*NONE*/* ___native_trace_ips_15;
};
// UnityEngine.XR.ARSubsystems.FaceSubsystemCapabilities
struct FaceSubsystemCapabilities_t84A18B266F89BCEE6ADA3FB05E21935877632057
{
public:
// System.Int32 UnityEngine.XR.ARSubsystems.FaceSubsystemCapabilities::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(FaceSubsystemCapabilities_t84A18B266F89BCEE6ADA3FB05E21935877632057, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
// UnityEngine.XR.ARSubsystems.Feature
struct Feature_t079F5923A4893A9E07B968C27F44AC5FCAC87C83
{
public:
// System.UInt64 UnityEngine.XR.ARSubsystems.Feature::value__
uint64_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(Feature_t079F5923A4893A9E07B968C27F44AC5FCAC87C83, ___value___2)); }
inline uint64_t get_value___2() const { return ___value___2; }
inline uint64_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(uint64_t value)
{
___value___2 = value;
}
};
// UnityEngine.XR.ARSubsystems.HumanSegmentationDepthMode
struct HumanSegmentationDepthMode_tFF8EE69372C0D9890D3F0566DC0D2781CE584028
{
public:
// System.Int32 UnityEngine.XR.ARSubsystems.HumanSegmentationDepthMode::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(HumanSegmentationDepthMode_tFF8EE69372C0D9890D3F0566DC0D2781CE584028, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
// UnityEngine.XR.ARSubsystems.HumanSegmentationStencilMode
struct HumanSegmentationStencilMode_tB151C7AE42CB87D7EB7A0A12C759BD0BA03AC9DB
{
public:
// System.Int32 UnityEngine.XR.ARSubsystems.HumanSegmentationStencilMode::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(HumanSegmentationStencilMode_tB151C7AE42CB87D7EB7A0A12C759BD0BA03AC9DB, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
// System.Int32Enum
struct Int32Enum_t9B63F771913F2B6D586F1173B44A41FBE26F6B5C
{
public:
// System.Int32 System.Int32Enum::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(Int32Enum_t9B63F771913F2B6D586F1173B44A41FBE26F6B5C, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
// Unity.Jobs.JobHandle
struct JobHandle_t8AEB8D31C25D7774C71D62B0C662525E6E36D847
{
public:
// System.IntPtr Unity.Jobs.JobHandle::jobGroup
intptr_t ___jobGroup_0;
// System.Int32 Unity.Jobs.JobHandle::version
int32_t ___version_1;
public:
inline static int32_t get_offset_of_jobGroup_0() { return static_cast<int32_t>(offsetof(JobHandle_t8AEB8D31C25D7774C71D62B0C662525E6E36D847, ___jobGroup_0)); }
inline intptr_t get_jobGroup_0() const { return ___jobGroup_0; }
inline intptr_t* get_address_of_jobGroup_0() { return &___jobGroup_0; }
inline void set_jobGroup_0(intptr_t value)
{
___jobGroup_0 = value;
}
inline static int32_t get_offset_of_version_1() { return static_cast<int32_t>(offsetof(JobHandle_t8AEB8D31C25D7774C71D62B0C662525E6E36D847, ___version_1)); }
inline int32_t get_version_1() const { return ___version_1; }
inline int32_t* get_address_of_version_1() { return &___version_1; }
inline void set_version_1(int32_t value)
{
___version_1 = value;
}
};
// UnityEngine.XR.ARSubsystems.LightEstimationMode
struct LightEstimationMode_tE07D0ADA96C21197E44E8E906DF0FCECB7DAEC56
{
public:
// System.Int32 UnityEngine.XR.ARSubsystems.LightEstimationMode::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(LightEstimationMode_tE07D0ADA96C21197E44E8E906DF0FCECB7DAEC56, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
// Unity.Collections.NativeArrayOptions
struct NativeArrayOptions_t181E2A9B49F6D62868DE6428E4CDF148AEF558E3
{
public:
// System.Int32 Unity.Collections.NativeArrayOptions::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(NativeArrayOptions_t181E2A9B49F6D62868DE6428E4CDF148AEF558E3, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
// UnityEngine.XR.ARSubsystems.NotTrackingReason
struct NotTrackingReason_t853CA5527FA4E156B45DD1BD3E3E978C78BC49A9
{
public:
// System.Int32 UnityEngine.XR.ARSubsystems.NotTrackingReason::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(NotTrackingReason_t853CA5527FA4E156B45DD1BD3E3E978C78BC49A9, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
// UnityEngine.Object
struct Object_tF2F3778131EFF286AF62B7B013A170F95A91571A : public RuntimeObject
{
public:
// System.IntPtr UnityEngine.Object::m_CachedPtr
intptr_t ___m_CachedPtr_0;
public:
inline static int32_t get_offset_of_m_CachedPtr_0() { return static_cast<int32_t>(offsetof(Object_tF2F3778131EFF286AF62B7B013A170F95A91571A, ___m_CachedPtr_0)); }
inline intptr_t get_m_CachedPtr_0() const { return ___m_CachedPtr_0; }
inline intptr_t* get_address_of_m_CachedPtr_0() { return &___m_CachedPtr_0; }
inline void set_m_CachedPtr_0(intptr_t value)
{
___m_CachedPtr_0 = value;
}
};
struct Object_tF2F3778131EFF286AF62B7B013A170F95A91571A_StaticFields
{
public:
// System.Int32 UnityEngine.Object::OffsetOfInstanceIDInCPlusPlusObject
int32_t ___OffsetOfInstanceIDInCPlusPlusObject_1;
public:
inline static int32_t get_offset_of_OffsetOfInstanceIDInCPlusPlusObject_1() { return static_cast<int32_t>(offsetof(Object_tF2F3778131EFF286AF62B7B013A170F95A91571A_StaticFields, ___OffsetOfInstanceIDInCPlusPlusObject_1)); }
inline int32_t get_OffsetOfInstanceIDInCPlusPlusObject_1() const { return ___OffsetOfInstanceIDInCPlusPlusObject_1; }
inline int32_t* get_address_of_OffsetOfInstanceIDInCPlusPlusObject_1() { return &___OffsetOfInstanceIDInCPlusPlusObject_1; }
inline void set_OffsetOfInstanceIDInCPlusPlusObject_1(int32_t value)
{
___OffsetOfInstanceIDInCPlusPlusObject_1 = value;
}
};
// Native definition for P/Invoke marshalling of UnityEngine.Object
struct Object_tF2F3778131EFF286AF62B7B013A170F95A91571A_marshaled_pinvoke
{
intptr_t ___m_CachedPtr_0;
};
// Native definition for COM marshalling of UnityEngine.Object
struct Object_tF2F3778131EFF286AF62B7B013A170F95A91571A_marshaled_com
{
intptr_t ___m_CachedPtr_0;
};
// UnityEngine.XR.ARSubsystems.OcclusionPreferenceMode
struct OcclusionPreferenceMode_tB85530C1AF1BD2CD83770B19A90C6D3F781EADC1
{
public:
// System.Int32 UnityEngine.XR.ARSubsystems.OcclusionPreferenceMode::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(OcclusionPreferenceMode_tB85530C1AF1BD2CD83770B19A90C6D3F781EADC1, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
// UnityEngine.XR.ARSubsystems.PlaneAlignment
struct PlaneAlignment_t1BB7048E3969913434FB1B3BCBCA2E81D4E71ADA
{
public:
// System.Int32 UnityEngine.XR.ARSubsystems.PlaneAlignment::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(PlaneAlignment_t1BB7048E3969913434FB1B3BCBCA2E81D4E71ADA, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
// UnityEngine.XR.ARSubsystems.PlaneClassification
struct PlaneClassification_tAC2E2E9609D4396BC311E2987CA3EFA5115EDD10
{
public:
// System.Int32 UnityEngine.XR.ARSubsystems.PlaneClassification::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(PlaneClassification_tAC2E2E9609D4396BC311E2987CA3EFA5115EDD10, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
// UnityEngine.XR.ARSubsystems.PlaneDetectionMode
struct PlaneDetectionMode_t22DC72CB3F42DDC9A2472A66F8119475357B48CD
{
public:
// System.Int32 UnityEngine.XR.ARSubsystems.PlaneDetectionMode::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(PlaneDetectionMode_t22DC72CB3F42DDC9A2472A66F8119475357B48CD, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
// UnityEngine.Pose
struct Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A
{
public:
// UnityEngine.Vector3 UnityEngine.Pose::position
Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___position_0;
// UnityEngine.Quaternion UnityEngine.Pose::rotation
Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 ___rotation_1;
public:
inline static int32_t get_offset_of_position_0() { return static_cast<int32_t>(offsetof(Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A, ___position_0)); }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_position_0() const { return ___position_0; }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_position_0() { return &___position_0; }
inline void set_position_0(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value)
{
___position_0 = value;
}
inline static int32_t get_offset_of_rotation_1() { return static_cast<int32_t>(offsetof(Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A, ___rotation_1)); }
inline Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 get_rotation_1() const { return ___rotation_1; }
inline Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 * get_address_of_rotation_1() { return &___rotation_1; }
inline void set_rotation_1(Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 value)
{
___rotation_1 = value;
}
};
struct Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A_StaticFields
{
public:
// UnityEngine.Pose UnityEngine.Pose::k_Identity
Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A ___k_Identity_2;
public:
inline static int32_t get_offset_of_k_Identity_2() { return static_cast<int32_t>(offsetof(Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A_StaticFields, ___k_Identity_2)); }
inline Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A get_k_Identity_2() const { return ___k_Identity_2; }
inline Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A * get_address_of_k_Identity_2() { return &___k_Identity_2; }
inline void set_k_Identity_2(Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A value)
{
___k_Identity_2 = value;
}
};
// UnityEngine.Ray
struct Ray_t2E9E67CC8B03EE6ED2BBF3D2C9C96DDF70E1D5E6
{
public:
// UnityEngine.Vector3 UnityEngine.Ray::m_Origin
Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___m_Origin_0;
// UnityEngine.Vector3 UnityEngine.Ray::m_Direction
Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___m_Direction_1;
public:
inline static int32_t get_offset_of_m_Origin_0() { return static_cast<int32_t>(offsetof(Ray_t2E9E67CC8B03EE6ED2BBF3D2C9C96DDF70E1D5E6, ___m_Origin_0)); }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_m_Origin_0() const { return ___m_Origin_0; }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_m_Origin_0() { return &___m_Origin_0; }
inline void set_m_Origin_0(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value)
{
___m_Origin_0 = value;
}
inline static int32_t get_offset_of_m_Direction_1() { return static_cast<int32_t>(offsetof(Ray_t2E9E67CC8B03EE6ED2BBF3D2C9C96DDF70E1D5E6, ___m_Direction_1)); }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_m_Direction_1() const { return ___m_Direction_1; }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_m_Direction_1() { return &___m_Direction_1; }
inline void set_m_Direction_1(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value)
{
___m_Direction_1 = value;
}
};
// System.Text.RegularExpressions.RegexOptions
struct RegexOptions_t8F8CD5BC6C55FC2B657722FD09ABDFDF5BA6F6A4
{
public:
// System.Int32 System.Text.RegularExpressions.RegexOptions::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(RegexOptions_t8F8CD5BC6C55FC2B657722FD09ABDFDF5BA6F6A4, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
// System.RuntimeTypeHandle
struct RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9
{
public:
// System.IntPtr System.RuntimeTypeHandle::value
intptr_t ___value_0;
public:
inline static int32_t get_offset_of_value_0() { return static_cast<int32_t>(offsetof(RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9, ___value_0)); }
inline intptr_t get_value_0() const { return ___value_0; }
inline intptr_t* get_address_of_value_0() { return &___value_0; }
inline void set_value_0(intptr_t value)
{
___value_0 = value;
}
};
// UnityEngine.ScreenOrientation
struct ScreenOrientation_tDD9EF2729A0D580721770597532935B0A7ADE020
{
public:
// System.Int32 UnityEngine.ScreenOrientation::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(ScreenOrientation_tDD9EF2729A0D580721770597532935B0A7ADE020, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
// UnityEngine.XR.ARSubsystems.SessionAvailability
struct SessionAvailability_tF5E98733E00C91772417EDEF3B3A6FA1DF653FCD
{
public:
// System.Int32 UnityEngine.XR.ARSubsystems.SessionAvailability::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(SessionAvailability_tF5E98733E00C91772417EDEF3B3A6FA1DF653FCD, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
// UnityEngine.XR.ARSubsystems.SessionInstallationStatus
struct SessionInstallationStatus_t5298F0EEA216D050FFE923AE490498BBF0792F7E
{
public:
// System.Int32 UnityEngine.XR.ARSubsystems.SessionInstallationStatus::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(SessionInstallationStatus_t5298F0EEA216D050FFE923AE490498BBF0792F7E, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
// UnityEngine.Rendering.TextureDimension
struct TextureDimension_tADCCB7C1D30E4D1182651BA9094B4DE61B63EACC
{
public:
// System.Int32 UnityEngine.Rendering.TextureDimension::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(TextureDimension_tADCCB7C1D30E4D1182651BA9094B4DE61B63EACC, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
// UnityEngine.TextureFormat
struct TextureFormat_tBED5388A0445FE978F97B41D247275B036407932
{
public:
// System.Int32 UnityEngine.TextureFormat::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(TextureFormat_tBED5388A0445FE978F97B41D247275B036407932, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
// System.TimeSpan
struct TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203
{
public:
// System.Int64 System.TimeSpan::_ticks
int64_t ____ticks_22;
public:
inline static int32_t get_offset_of__ticks_22() { return static_cast<int32_t>(offsetof(TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203, ____ticks_22)); }
inline int64_t get__ticks_22() const { return ____ticks_22; }
inline int64_t* get_address_of__ticks_22() { return &____ticks_22; }
inline void set__ticks_22(int64_t value)
{
____ticks_22 = value;
}
};
struct TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203_StaticFields
{
public:
// System.TimeSpan System.TimeSpan::Zero
TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 ___Zero_19;
// System.TimeSpan System.TimeSpan::MaxValue
TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 ___MaxValue_20;
// System.TimeSpan System.TimeSpan::MinValue
TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 ___MinValue_21;
// System.Boolean modreq(System.Runtime.CompilerServices.IsVolatile) System.TimeSpan::_legacyConfigChecked
bool ____legacyConfigChecked_23;
// System.Boolean modreq(System.Runtime.CompilerServices.IsVolatile) System.TimeSpan::_legacyMode
bool ____legacyMode_24;
public:
inline static int32_t get_offset_of_Zero_19() { return static_cast<int32_t>(offsetof(TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203_StaticFields, ___Zero_19)); }
inline TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 get_Zero_19() const { return ___Zero_19; }
inline TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 * get_address_of_Zero_19() { return &___Zero_19; }
inline void set_Zero_19(TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 value)
{
___Zero_19 = value;
}
inline static int32_t get_offset_of_MaxValue_20() { return static_cast<int32_t>(offsetof(TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203_StaticFields, ___MaxValue_20)); }
inline TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 get_MaxValue_20() const { return ___MaxValue_20; }
inline TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 * get_address_of_MaxValue_20() { return &___MaxValue_20; }
inline void set_MaxValue_20(TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 value)
{
___MaxValue_20 = value;
}
inline static int32_t get_offset_of_MinValue_21() { return static_cast<int32_t>(offsetof(TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203_StaticFields, ___MinValue_21)); }
inline TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 get_MinValue_21() const { return ___MinValue_21; }
inline TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 * get_address_of_MinValue_21() { return &___MinValue_21; }
inline void set_MinValue_21(TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 value)
{
___MinValue_21 = value;
}
inline static int32_t get_offset_of__legacyConfigChecked_23() { return static_cast<int32_t>(offsetof(TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203_StaticFields, ____legacyConfigChecked_23)); }
inline bool get__legacyConfigChecked_23() const { return ____legacyConfigChecked_23; }
inline bool* get_address_of__legacyConfigChecked_23() { return &____legacyConfigChecked_23; }
inline void set__legacyConfigChecked_23(bool value)
{
____legacyConfigChecked_23 = value;
}
inline static int32_t get_offset_of__legacyMode_24() { return static_cast<int32_t>(offsetof(TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203_StaticFields, ____legacyMode_24)); }
inline bool get__legacyMode_24() const { return ____legacyMode_24; }
inline bool* get_address_of__legacyMode_24() { return &____legacyMode_24; }
inline void set__legacyMode_24(bool value)
{
____legacyMode_24 = value;
}
};
// UnityEngine.XR.ARSubsystems.TrackableType
struct TrackableType_t2352F7091A5BE0192C8D908019BA7481A347C85F
{
public:
// System.Int32 UnityEngine.XR.ARSubsystems.TrackableType::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(TrackableType_t2352F7091A5BE0192C8D908019BA7481A347C85F, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
// UnityEngine.XR.ARSubsystems.TrackingState
struct TrackingState_tB6996ED0D52D2A17DFACC90800705B81D370FC38
{
public:
// System.Int32 UnityEngine.XR.ARSubsystems.TrackingState::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(TrackingState_tB6996ED0D52D2A17DFACC90800705B81D370FC38, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
// UnityEngine.XR.ARSubsystems.XRAnchorSubsystemDescriptor
struct XRAnchorSubsystemDescriptor_t3BD7F9922EF5C04185D59349C76D625BC1E44E3B : public SubsystemDescriptorWithProvider_2_t0A7F13BEDD4EC8DFDD5AEC7D5171B22F3D852CE5
{
public:
// System.Boolean UnityEngine.XR.ARSubsystems.XRAnchorSubsystemDescriptor::<supportsTrackableAttachments>k__BackingField
bool ___U3CsupportsTrackableAttachmentsU3Ek__BackingField_3;
public:
inline static int32_t get_offset_of_U3CsupportsTrackableAttachmentsU3Ek__BackingField_3() { return static_cast<int32_t>(offsetof(XRAnchorSubsystemDescriptor_t3BD7F9922EF5C04185D59349C76D625BC1E44E3B, ___U3CsupportsTrackableAttachmentsU3Ek__BackingField_3)); }
inline bool get_U3CsupportsTrackableAttachmentsU3Ek__BackingField_3() const { return ___U3CsupportsTrackableAttachmentsU3Ek__BackingField_3; }
inline bool* get_address_of_U3CsupportsTrackableAttachmentsU3Ek__BackingField_3() { return &___U3CsupportsTrackableAttachmentsU3Ek__BackingField_3; }
inline void set_U3CsupportsTrackableAttachmentsU3Ek__BackingField_3(bool value)
{
___U3CsupportsTrackableAttachmentsU3Ek__BackingField_3 = value;
}
};
// UnityEngine.XR.ARSubsystems.XRCameraConfiguration
struct XRCameraConfiguration_t2393055E5547307393E9C73AB13B95E0785A4F7A
{
public:
// UnityEngine.Vector2Int UnityEngine.XR.ARSubsystems.XRCameraConfiguration::m_Resolution
Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9 ___m_Resolution_0;
// System.Int32 UnityEngine.XR.ARSubsystems.XRCameraConfiguration::m_Framerate
int32_t ___m_Framerate_1;
// System.IntPtr UnityEngine.XR.ARSubsystems.XRCameraConfiguration::m_NativeConfigurationHandle
intptr_t ___m_NativeConfigurationHandle_2;
public:
inline static int32_t get_offset_of_m_Resolution_0() { return static_cast<int32_t>(offsetof(XRCameraConfiguration_t2393055E5547307393E9C73AB13B95E0785A4F7A, ___m_Resolution_0)); }
inline Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9 get_m_Resolution_0() const { return ___m_Resolution_0; }
inline Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9 * get_address_of_m_Resolution_0() { return &___m_Resolution_0; }
inline void set_m_Resolution_0(Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9 value)
{
___m_Resolution_0 = value;
}
inline static int32_t get_offset_of_m_Framerate_1() { return static_cast<int32_t>(offsetof(XRCameraConfiguration_t2393055E5547307393E9C73AB13B95E0785A4F7A, ___m_Framerate_1)); }
inline int32_t get_m_Framerate_1() const { return ___m_Framerate_1; }
inline int32_t* get_address_of_m_Framerate_1() { return &___m_Framerate_1; }
inline void set_m_Framerate_1(int32_t value)
{
___m_Framerate_1 = value;
}
inline static int32_t get_offset_of_m_NativeConfigurationHandle_2() { return static_cast<int32_t>(offsetof(XRCameraConfiguration_t2393055E5547307393E9C73AB13B95E0785A4F7A, ___m_NativeConfigurationHandle_2)); }
inline intptr_t get_m_NativeConfigurationHandle_2() const { return ___m_NativeConfigurationHandle_2; }
inline intptr_t* get_address_of_m_NativeConfigurationHandle_2() { return &___m_NativeConfigurationHandle_2; }
inline void set_m_NativeConfigurationHandle_2(intptr_t value)
{
___m_NativeConfigurationHandle_2 = value;
}
};
// UnityEngine.XR.ARSubsystems.XRCameraFrameProperties
struct XRCameraFrameProperties_t57C3A208DCCC01241BA413286A98B1726773200C
{
public:
// System.Int32 UnityEngine.XR.ARSubsystems.XRCameraFrameProperties::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(XRCameraFrameProperties_t57C3A208DCCC01241BA413286A98B1726773200C, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
// UnityEngine.XR.ARSubsystems.XRCameraIntrinsics
struct XRCameraIntrinsics_t85F1514E263A6C6DE96DBA5448B44F11F35395FD
{
public:
// UnityEngine.Vector2 UnityEngine.XR.ARSubsystems.XRCameraIntrinsics::m_FocalLength
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___m_FocalLength_0;
// UnityEngine.Vector2 UnityEngine.XR.ARSubsystems.XRCameraIntrinsics::m_PrincipalPoint
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___m_PrincipalPoint_1;
// UnityEngine.Vector2Int UnityEngine.XR.ARSubsystems.XRCameraIntrinsics::m_Resolution
Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9 ___m_Resolution_2;
public:
inline static int32_t get_offset_of_m_FocalLength_0() { return static_cast<int32_t>(offsetof(XRCameraIntrinsics_t85F1514E263A6C6DE96DBA5448B44F11F35395FD, ___m_FocalLength_0)); }
inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 get_m_FocalLength_0() const { return ___m_FocalLength_0; }
inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 * get_address_of_m_FocalLength_0() { return &___m_FocalLength_0; }
inline void set_m_FocalLength_0(Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 value)
{
___m_FocalLength_0 = value;
}
inline static int32_t get_offset_of_m_PrincipalPoint_1() { return static_cast<int32_t>(offsetof(XRCameraIntrinsics_t85F1514E263A6C6DE96DBA5448B44F11F35395FD, ___m_PrincipalPoint_1)); }
inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 get_m_PrincipalPoint_1() const { return ___m_PrincipalPoint_1; }
inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 * get_address_of_m_PrincipalPoint_1() { return &___m_PrincipalPoint_1; }
inline void set_m_PrincipalPoint_1(Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 value)
{
___m_PrincipalPoint_1 = value;
}
inline static int32_t get_offset_of_m_Resolution_2() { return static_cast<int32_t>(offsetof(XRCameraIntrinsics_t85F1514E263A6C6DE96DBA5448B44F11F35395FD, ___m_Resolution_2)); }
inline Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9 get_m_Resolution_2() const { return ___m_Resolution_2; }
inline Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9 * get_address_of_m_Resolution_2() { return &___m_Resolution_2; }
inline void set_m_Resolution_2(Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9 value)
{
___m_Resolution_2 = value;
}
};
// UnityEngine.XR.ARSubsystems.XRCameraSubsystem
struct XRCameraSubsystem_t3B32F6EA8A2E4D23AF240B5D21C34759D2613AC9 : public SubsystemWithProvider_3_tA938665692EBC0CA746A276F8413E462E8930FD4
{
public:
public:
};
// UnityEngine.XR.ARSubsystems.XRCameraSubsystemDescriptor
struct XRCameraSubsystemDescriptor_t1F8A45C69031E2981B1863518C43793D26E2C5E5 : public SubsystemDescriptorWithProvider_2_tA9FA485739D1F05136E95B57BC5FC580309C9038
{
public:
// System.Boolean UnityEngine.XR.ARSubsystems.XRCameraSubsystemDescriptor::<supportsAverageBrightness>k__BackingField
bool ___U3CsupportsAverageBrightnessU3Ek__BackingField_3;
// System.Boolean UnityEngine.XR.ARSubsystems.XRCameraSubsystemDescriptor::<supportsAverageColorTemperature>k__BackingField
bool ___U3CsupportsAverageColorTemperatureU3Ek__BackingField_4;
// System.Boolean UnityEngine.XR.ARSubsystems.XRCameraSubsystemDescriptor::<supportsColorCorrection>k__BackingField
bool ___U3CsupportsColorCorrectionU3Ek__BackingField_5;
// System.Boolean UnityEngine.XR.ARSubsystems.XRCameraSubsystemDescriptor::<supportsDisplayMatrix>k__BackingField
bool ___U3CsupportsDisplayMatrixU3Ek__BackingField_6;
// System.Boolean UnityEngine.XR.ARSubsystems.XRCameraSubsystemDescriptor::<supportsProjectionMatrix>k__BackingField
bool ___U3CsupportsProjectionMatrixU3Ek__BackingField_7;
// System.Boolean UnityEngine.XR.ARSubsystems.XRCameraSubsystemDescriptor::<supportsTimestamp>k__BackingField
bool ___U3CsupportsTimestampU3Ek__BackingField_8;
// System.Boolean UnityEngine.XR.ARSubsystems.XRCameraSubsystemDescriptor::<supportsCameraConfigurations>k__BackingField
bool ___U3CsupportsCameraConfigurationsU3Ek__BackingField_9;
// System.Boolean UnityEngine.XR.ARSubsystems.XRCameraSubsystemDescriptor::<supportsCameraImage>k__BackingField
bool ___U3CsupportsCameraImageU3Ek__BackingField_10;
// System.Boolean UnityEngine.XR.ARSubsystems.XRCameraSubsystemDescriptor::<supportsAverageIntensityInLumens>k__BackingField
bool ___U3CsupportsAverageIntensityInLumensU3Ek__BackingField_11;
// System.Boolean UnityEngine.XR.ARSubsystems.XRCameraSubsystemDescriptor::<supportsFocusModes>k__BackingField
bool ___U3CsupportsFocusModesU3Ek__BackingField_12;
// System.Boolean UnityEngine.XR.ARSubsystems.XRCameraSubsystemDescriptor::<supportsFaceTrackingAmbientIntensityLightEstimation>k__BackingField
bool ___U3CsupportsFaceTrackingAmbientIntensityLightEstimationU3Ek__BackingField_13;
// System.Boolean UnityEngine.XR.ARSubsystems.XRCameraSubsystemDescriptor::<supportsFaceTrackingHDRLightEstimation>k__BackingField
bool ___U3CsupportsFaceTrackingHDRLightEstimationU3Ek__BackingField_14;
// System.Boolean UnityEngine.XR.ARSubsystems.XRCameraSubsystemDescriptor::<supportsWorldTrackingAmbientIntensityLightEstimation>k__BackingField
bool ___U3CsupportsWorldTrackingAmbientIntensityLightEstimationU3Ek__BackingField_15;
// System.Boolean UnityEngine.XR.ARSubsystems.XRCameraSubsystemDescriptor::<supportsWorldTrackingHDRLightEstimation>k__BackingField
bool ___U3CsupportsWorldTrackingHDRLightEstimationU3Ek__BackingField_16;
// System.Boolean UnityEngine.XR.ARSubsystems.XRCameraSubsystemDescriptor::<supportsCameraGrain>k__BackingField
bool ___U3CsupportsCameraGrainU3Ek__BackingField_17;
public:
inline static int32_t get_offset_of_U3CsupportsAverageBrightnessU3Ek__BackingField_3() { return static_cast<int32_t>(offsetof(XRCameraSubsystemDescriptor_t1F8A45C69031E2981B1863518C43793D26E2C5E5, ___U3CsupportsAverageBrightnessU3Ek__BackingField_3)); }
inline bool get_U3CsupportsAverageBrightnessU3Ek__BackingField_3() const { return ___U3CsupportsAverageBrightnessU3Ek__BackingField_3; }
inline bool* get_address_of_U3CsupportsAverageBrightnessU3Ek__BackingField_3() { return &___U3CsupportsAverageBrightnessU3Ek__BackingField_3; }
inline void set_U3CsupportsAverageBrightnessU3Ek__BackingField_3(bool value)
{
___U3CsupportsAverageBrightnessU3Ek__BackingField_3 = value;
}
inline static int32_t get_offset_of_U3CsupportsAverageColorTemperatureU3Ek__BackingField_4() { return static_cast<int32_t>(offsetof(XRCameraSubsystemDescriptor_t1F8A45C69031E2981B1863518C43793D26E2C5E5, ___U3CsupportsAverageColorTemperatureU3Ek__BackingField_4)); }
inline bool get_U3CsupportsAverageColorTemperatureU3Ek__BackingField_4() const { return ___U3CsupportsAverageColorTemperatureU3Ek__BackingField_4; }
inline bool* get_address_of_U3CsupportsAverageColorTemperatureU3Ek__BackingField_4() { return &___U3CsupportsAverageColorTemperatureU3Ek__BackingField_4; }
inline void set_U3CsupportsAverageColorTemperatureU3Ek__BackingField_4(bool value)
{
___U3CsupportsAverageColorTemperatureU3Ek__BackingField_4 = value;
}
inline static int32_t get_offset_of_U3CsupportsColorCorrectionU3Ek__BackingField_5() { return static_cast<int32_t>(offsetof(XRCameraSubsystemDescriptor_t1F8A45C69031E2981B1863518C43793D26E2C5E5, ___U3CsupportsColorCorrectionU3Ek__BackingField_5)); }
inline bool get_U3CsupportsColorCorrectionU3Ek__BackingField_5() const { return ___U3CsupportsColorCorrectionU3Ek__BackingField_5; }
inline bool* get_address_of_U3CsupportsColorCorrectionU3Ek__BackingField_5() { return &___U3CsupportsColorCorrectionU3Ek__BackingField_5; }
inline void set_U3CsupportsColorCorrectionU3Ek__BackingField_5(bool value)
{
___U3CsupportsColorCorrectionU3Ek__BackingField_5 = value;
}
inline static int32_t get_offset_of_U3CsupportsDisplayMatrixU3Ek__BackingField_6() { return static_cast<int32_t>(offsetof(XRCameraSubsystemDescriptor_t1F8A45C69031E2981B1863518C43793D26E2C5E5, ___U3CsupportsDisplayMatrixU3Ek__BackingField_6)); }
inline bool get_U3CsupportsDisplayMatrixU3Ek__BackingField_6() const { return ___U3CsupportsDisplayMatrixU3Ek__BackingField_6; }
inline bool* get_address_of_U3CsupportsDisplayMatrixU3Ek__BackingField_6() { return &___U3CsupportsDisplayMatrixU3Ek__BackingField_6; }
inline void set_U3CsupportsDisplayMatrixU3Ek__BackingField_6(bool value)
{
___U3CsupportsDisplayMatrixU3Ek__BackingField_6 = value;
}
inline static int32_t get_offset_of_U3CsupportsProjectionMatrixU3Ek__BackingField_7() { return static_cast<int32_t>(offsetof(XRCameraSubsystemDescriptor_t1F8A45C69031E2981B1863518C43793D26E2C5E5, ___U3CsupportsProjectionMatrixU3Ek__BackingField_7)); }
inline bool get_U3CsupportsProjectionMatrixU3Ek__BackingField_7() const { return ___U3CsupportsProjectionMatrixU3Ek__BackingField_7; }
inline bool* get_address_of_U3CsupportsProjectionMatrixU3Ek__BackingField_7() { return &___U3CsupportsProjectionMatrixU3Ek__BackingField_7; }
inline void set_U3CsupportsProjectionMatrixU3Ek__BackingField_7(bool value)
{
___U3CsupportsProjectionMatrixU3Ek__BackingField_7 = value;
}
inline static int32_t get_offset_of_U3CsupportsTimestampU3Ek__BackingField_8() { return static_cast<int32_t>(offsetof(XRCameraSubsystemDescriptor_t1F8A45C69031E2981B1863518C43793D26E2C5E5, ___U3CsupportsTimestampU3Ek__BackingField_8)); }
inline bool get_U3CsupportsTimestampU3Ek__BackingField_8() const { return ___U3CsupportsTimestampU3Ek__BackingField_8; }
inline bool* get_address_of_U3CsupportsTimestampU3Ek__BackingField_8() { return &___U3CsupportsTimestampU3Ek__BackingField_8; }
inline void set_U3CsupportsTimestampU3Ek__BackingField_8(bool value)
{
___U3CsupportsTimestampU3Ek__BackingField_8 = value;
}
inline static int32_t get_offset_of_U3CsupportsCameraConfigurationsU3Ek__BackingField_9() { return static_cast<int32_t>(offsetof(XRCameraSubsystemDescriptor_t1F8A45C69031E2981B1863518C43793D26E2C5E5, ___U3CsupportsCameraConfigurationsU3Ek__BackingField_9)); }
inline bool get_U3CsupportsCameraConfigurationsU3Ek__BackingField_9() const { return ___U3CsupportsCameraConfigurationsU3Ek__BackingField_9; }
inline bool* get_address_of_U3CsupportsCameraConfigurationsU3Ek__BackingField_9() { return &___U3CsupportsCameraConfigurationsU3Ek__BackingField_9; }
inline void set_U3CsupportsCameraConfigurationsU3Ek__BackingField_9(bool value)
{
___U3CsupportsCameraConfigurationsU3Ek__BackingField_9 = value;
}
inline static int32_t get_offset_of_U3CsupportsCameraImageU3Ek__BackingField_10() { return static_cast<int32_t>(offsetof(XRCameraSubsystemDescriptor_t1F8A45C69031E2981B1863518C43793D26E2C5E5, ___U3CsupportsCameraImageU3Ek__BackingField_10)); }
inline bool get_U3CsupportsCameraImageU3Ek__BackingField_10() const { return ___U3CsupportsCameraImageU3Ek__BackingField_10; }
inline bool* get_address_of_U3CsupportsCameraImageU3Ek__BackingField_10() { return &___U3CsupportsCameraImageU3Ek__BackingField_10; }
inline void set_U3CsupportsCameraImageU3Ek__BackingField_10(bool value)
{
___U3CsupportsCameraImageU3Ek__BackingField_10 = value;
}
inline static int32_t get_offset_of_U3CsupportsAverageIntensityInLumensU3Ek__BackingField_11() { return static_cast<int32_t>(offsetof(XRCameraSubsystemDescriptor_t1F8A45C69031E2981B1863518C43793D26E2C5E5, ___U3CsupportsAverageIntensityInLumensU3Ek__BackingField_11)); }
inline bool get_U3CsupportsAverageIntensityInLumensU3Ek__BackingField_11() const { return ___U3CsupportsAverageIntensityInLumensU3Ek__BackingField_11; }
inline bool* get_address_of_U3CsupportsAverageIntensityInLumensU3Ek__BackingField_11() { return &___U3CsupportsAverageIntensityInLumensU3Ek__BackingField_11; }
inline void set_U3CsupportsAverageIntensityInLumensU3Ek__BackingField_11(bool value)
{
___U3CsupportsAverageIntensityInLumensU3Ek__BackingField_11 = value;
}
inline static int32_t get_offset_of_U3CsupportsFocusModesU3Ek__BackingField_12() { return static_cast<int32_t>(offsetof(XRCameraSubsystemDescriptor_t1F8A45C69031E2981B1863518C43793D26E2C5E5, ___U3CsupportsFocusModesU3Ek__BackingField_12)); }
inline bool get_U3CsupportsFocusModesU3Ek__BackingField_12() const { return ___U3CsupportsFocusModesU3Ek__BackingField_12; }
inline bool* get_address_of_U3CsupportsFocusModesU3Ek__BackingField_12() { return &___U3CsupportsFocusModesU3Ek__BackingField_12; }
inline void set_U3CsupportsFocusModesU3Ek__BackingField_12(bool value)
{
___U3CsupportsFocusModesU3Ek__BackingField_12 = value;
}
inline static int32_t get_offset_of_U3CsupportsFaceTrackingAmbientIntensityLightEstimationU3Ek__BackingField_13() { return static_cast<int32_t>(offsetof(XRCameraSubsystemDescriptor_t1F8A45C69031E2981B1863518C43793D26E2C5E5, ___U3CsupportsFaceTrackingAmbientIntensityLightEstimationU3Ek__BackingField_13)); }
inline bool get_U3CsupportsFaceTrackingAmbientIntensityLightEstimationU3Ek__BackingField_13() const { return ___U3CsupportsFaceTrackingAmbientIntensityLightEstimationU3Ek__BackingField_13; }
inline bool* get_address_of_U3CsupportsFaceTrackingAmbientIntensityLightEstimationU3Ek__BackingField_13() { return &___U3CsupportsFaceTrackingAmbientIntensityLightEstimationU3Ek__BackingField_13; }
inline void set_U3CsupportsFaceTrackingAmbientIntensityLightEstimationU3Ek__BackingField_13(bool value)
{
___U3CsupportsFaceTrackingAmbientIntensityLightEstimationU3Ek__BackingField_13 = value;
}
inline static int32_t get_offset_of_U3CsupportsFaceTrackingHDRLightEstimationU3Ek__BackingField_14() { return static_cast<int32_t>(offsetof(XRCameraSubsystemDescriptor_t1F8A45C69031E2981B1863518C43793D26E2C5E5, ___U3CsupportsFaceTrackingHDRLightEstimationU3Ek__BackingField_14)); }
inline bool get_U3CsupportsFaceTrackingHDRLightEstimationU3Ek__BackingField_14() const { return ___U3CsupportsFaceTrackingHDRLightEstimationU3Ek__BackingField_14; }
inline bool* get_address_of_U3CsupportsFaceTrackingHDRLightEstimationU3Ek__BackingField_14() { return &___U3CsupportsFaceTrackingHDRLightEstimationU3Ek__BackingField_14; }
inline void set_U3CsupportsFaceTrackingHDRLightEstimationU3Ek__BackingField_14(bool value)
{
___U3CsupportsFaceTrackingHDRLightEstimationU3Ek__BackingField_14 = value;
}
inline static int32_t get_offset_of_U3CsupportsWorldTrackingAmbientIntensityLightEstimationU3Ek__BackingField_15() { return static_cast<int32_t>(offsetof(XRCameraSubsystemDescriptor_t1F8A45C69031E2981B1863518C43793D26E2C5E5, ___U3CsupportsWorldTrackingAmbientIntensityLightEstimationU3Ek__BackingField_15)); }
inline bool get_U3CsupportsWorldTrackingAmbientIntensityLightEstimationU3Ek__BackingField_15() const { return ___U3CsupportsWorldTrackingAmbientIntensityLightEstimationU3Ek__BackingField_15; }
inline bool* get_address_of_U3CsupportsWorldTrackingAmbientIntensityLightEstimationU3Ek__BackingField_15() { return &___U3CsupportsWorldTrackingAmbientIntensityLightEstimationU3Ek__BackingField_15; }
inline void set_U3CsupportsWorldTrackingAmbientIntensityLightEstimationU3Ek__BackingField_15(bool value)
{
___U3CsupportsWorldTrackingAmbientIntensityLightEstimationU3Ek__BackingField_15 = value;
}
inline static int32_t get_offset_of_U3CsupportsWorldTrackingHDRLightEstimationU3Ek__BackingField_16() { return static_cast<int32_t>(offsetof(XRCameraSubsystemDescriptor_t1F8A45C69031E2981B1863518C43793D26E2C5E5, ___U3CsupportsWorldTrackingHDRLightEstimationU3Ek__BackingField_16)); }
inline bool get_U3CsupportsWorldTrackingHDRLightEstimationU3Ek__BackingField_16() const { return ___U3CsupportsWorldTrackingHDRLightEstimationU3Ek__BackingField_16; }
inline bool* get_address_of_U3CsupportsWorldTrackingHDRLightEstimationU3Ek__BackingField_16() { return &___U3CsupportsWorldTrackingHDRLightEstimationU3Ek__BackingField_16; }
inline void set_U3CsupportsWorldTrackingHDRLightEstimationU3Ek__BackingField_16(bool value)
{
___U3CsupportsWorldTrackingHDRLightEstimationU3Ek__BackingField_16 = value;
}
inline static int32_t get_offset_of_U3CsupportsCameraGrainU3Ek__BackingField_17() { return static_cast<int32_t>(offsetof(XRCameraSubsystemDescriptor_t1F8A45C69031E2981B1863518C43793D26E2C5E5, ___U3CsupportsCameraGrainU3Ek__BackingField_17)); }
inline bool get_U3CsupportsCameraGrainU3Ek__BackingField_17() const { return ___U3CsupportsCameraGrainU3Ek__BackingField_17; }
inline bool* get_address_of_U3CsupportsCameraGrainU3Ek__BackingField_17() { return &___U3CsupportsCameraGrainU3Ek__BackingField_17; }
inline void set_U3CsupportsCameraGrainU3Ek__BackingField_17(bool value)
{
___U3CsupportsCameraGrainU3Ek__BackingField_17 = value;
}
};
// UnityEngine.XR.ARSubsystems.XRDepthSubsystemDescriptor
struct XRDepthSubsystemDescriptor_t745DBB7D313FB52F756E0B7AA993FBBC26B412C2 : public SubsystemDescriptorWithProvider_2_t977F6FA0CAD110C500F658A35F19E5D5301AD0BC
{
public:
// System.Boolean UnityEngine.XR.ARSubsystems.XRDepthSubsystemDescriptor::<supportsFeaturePoints>k__BackingField
bool ___U3CsupportsFeaturePointsU3Ek__BackingField_3;
// System.Boolean UnityEngine.XR.ARSubsystems.XRDepthSubsystemDescriptor::<supportsUniqueIds>k__BackingField
bool ___U3CsupportsUniqueIdsU3Ek__BackingField_4;
// System.Boolean UnityEngine.XR.ARSubsystems.XRDepthSubsystemDescriptor::<supportsConfidence>k__BackingField
bool ___U3CsupportsConfidenceU3Ek__BackingField_5;
public:
inline static int32_t get_offset_of_U3CsupportsFeaturePointsU3Ek__BackingField_3() { return static_cast<int32_t>(offsetof(XRDepthSubsystemDescriptor_t745DBB7D313FB52F756E0B7AA993FBBC26B412C2, ___U3CsupportsFeaturePointsU3Ek__BackingField_3)); }
inline bool get_U3CsupportsFeaturePointsU3Ek__BackingField_3() const { return ___U3CsupportsFeaturePointsU3Ek__BackingField_3; }
inline bool* get_address_of_U3CsupportsFeaturePointsU3Ek__BackingField_3() { return &___U3CsupportsFeaturePointsU3Ek__BackingField_3; }
inline void set_U3CsupportsFeaturePointsU3Ek__BackingField_3(bool value)
{
___U3CsupportsFeaturePointsU3Ek__BackingField_3 = value;
}
inline static int32_t get_offset_of_U3CsupportsUniqueIdsU3Ek__BackingField_4() { return static_cast<int32_t>(offsetof(XRDepthSubsystemDescriptor_t745DBB7D313FB52F756E0B7AA993FBBC26B412C2, ___U3CsupportsUniqueIdsU3Ek__BackingField_4)); }
inline bool get_U3CsupportsUniqueIdsU3Ek__BackingField_4() const { return ___U3CsupportsUniqueIdsU3Ek__BackingField_4; }
inline bool* get_address_of_U3CsupportsUniqueIdsU3Ek__BackingField_4() { return &___U3CsupportsUniqueIdsU3Ek__BackingField_4; }
inline void set_U3CsupportsUniqueIdsU3Ek__BackingField_4(bool value)
{
___U3CsupportsUniqueIdsU3Ek__BackingField_4 = value;
}
inline static int32_t get_offset_of_U3CsupportsConfidenceU3Ek__BackingField_5() { return static_cast<int32_t>(offsetof(XRDepthSubsystemDescriptor_t745DBB7D313FB52F756E0B7AA993FBBC26B412C2, ___U3CsupportsConfidenceU3Ek__BackingField_5)); }
inline bool get_U3CsupportsConfidenceU3Ek__BackingField_5() const { return ___U3CsupportsConfidenceU3Ek__BackingField_5; }
inline bool* get_address_of_U3CsupportsConfidenceU3Ek__BackingField_5() { return &___U3CsupportsConfidenceU3Ek__BackingField_5; }
inline void set_U3CsupportsConfidenceU3Ek__BackingField_5(bool value)
{
___U3CsupportsConfidenceU3Ek__BackingField_5 = value;
}
};
// UnityEngine.XR.ARSubsystems.XREnvironmentProbeSubsystemDescriptor
struct XREnvironmentProbeSubsystemDescriptor_t7C10519F545418330347AC7434FBB10F39DD4243 : public SubsystemDescriptorWithProvider_2_t66BB4225DD47C0B6DF8312AEF1CDB8DB4CB729D9
{
public:
// System.Boolean UnityEngine.XR.ARSubsystems.XREnvironmentProbeSubsystemDescriptor::<supportsManualPlacement>k__BackingField
bool ___U3CsupportsManualPlacementU3Ek__BackingField_3;
// System.Boolean UnityEngine.XR.ARSubsystems.XREnvironmentProbeSubsystemDescriptor::<supportsRemovalOfManual>k__BackingField
bool ___U3CsupportsRemovalOfManualU3Ek__BackingField_4;
// System.Boolean UnityEngine.XR.ARSubsystems.XREnvironmentProbeSubsystemDescriptor::<supportsAutomaticPlacement>k__BackingField
bool ___U3CsupportsAutomaticPlacementU3Ek__BackingField_5;
// System.Boolean UnityEngine.XR.ARSubsystems.XREnvironmentProbeSubsystemDescriptor::<supportsRemovalOfAutomatic>k__BackingField
bool ___U3CsupportsRemovalOfAutomaticU3Ek__BackingField_6;
// System.Boolean UnityEngine.XR.ARSubsystems.XREnvironmentProbeSubsystemDescriptor::<supportsEnvironmentTexture>k__BackingField
bool ___U3CsupportsEnvironmentTextureU3Ek__BackingField_7;
// System.Boolean UnityEngine.XR.ARSubsystems.XREnvironmentProbeSubsystemDescriptor::<supportsEnvironmentTextureHDR>k__BackingField
bool ___U3CsupportsEnvironmentTextureHDRU3Ek__BackingField_8;
public:
inline static int32_t get_offset_of_U3CsupportsManualPlacementU3Ek__BackingField_3() { return static_cast<int32_t>(offsetof(XREnvironmentProbeSubsystemDescriptor_t7C10519F545418330347AC7434FBB10F39DD4243, ___U3CsupportsManualPlacementU3Ek__BackingField_3)); }
inline bool get_U3CsupportsManualPlacementU3Ek__BackingField_3() const { return ___U3CsupportsManualPlacementU3Ek__BackingField_3; }
inline bool* get_address_of_U3CsupportsManualPlacementU3Ek__BackingField_3() { return &___U3CsupportsManualPlacementU3Ek__BackingField_3; }
inline void set_U3CsupportsManualPlacementU3Ek__BackingField_3(bool value)
{
___U3CsupportsManualPlacementU3Ek__BackingField_3 = value;
}
inline static int32_t get_offset_of_U3CsupportsRemovalOfManualU3Ek__BackingField_4() { return static_cast<int32_t>(offsetof(XREnvironmentProbeSubsystemDescriptor_t7C10519F545418330347AC7434FBB10F39DD4243, ___U3CsupportsRemovalOfManualU3Ek__BackingField_4)); }
inline bool get_U3CsupportsRemovalOfManualU3Ek__BackingField_4() const { return ___U3CsupportsRemovalOfManualU3Ek__BackingField_4; }
inline bool* get_address_of_U3CsupportsRemovalOfManualU3Ek__BackingField_4() { return &___U3CsupportsRemovalOfManualU3Ek__BackingField_4; }
inline void set_U3CsupportsRemovalOfManualU3Ek__BackingField_4(bool value)
{
___U3CsupportsRemovalOfManualU3Ek__BackingField_4 = value;
}
inline static int32_t get_offset_of_U3CsupportsAutomaticPlacementU3Ek__BackingField_5() { return static_cast<int32_t>(offsetof(XREnvironmentProbeSubsystemDescriptor_t7C10519F545418330347AC7434FBB10F39DD4243, ___U3CsupportsAutomaticPlacementU3Ek__BackingField_5)); }
inline bool get_U3CsupportsAutomaticPlacementU3Ek__BackingField_5() const { return ___U3CsupportsAutomaticPlacementU3Ek__BackingField_5; }
inline bool* get_address_of_U3CsupportsAutomaticPlacementU3Ek__BackingField_5() { return &___U3CsupportsAutomaticPlacementU3Ek__BackingField_5; }
inline void set_U3CsupportsAutomaticPlacementU3Ek__BackingField_5(bool value)
{
___U3CsupportsAutomaticPlacementU3Ek__BackingField_5 = value;
}
inline static int32_t get_offset_of_U3CsupportsRemovalOfAutomaticU3Ek__BackingField_6() { return static_cast<int32_t>(offsetof(XREnvironmentProbeSubsystemDescriptor_t7C10519F545418330347AC7434FBB10F39DD4243, ___U3CsupportsRemovalOfAutomaticU3Ek__BackingField_6)); }
inline bool get_U3CsupportsRemovalOfAutomaticU3Ek__BackingField_6() const { return ___U3CsupportsRemovalOfAutomaticU3Ek__BackingField_6; }
inline bool* get_address_of_U3CsupportsRemovalOfAutomaticU3Ek__BackingField_6() { return &___U3CsupportsRemovalOfAutomaticU3Ek__BackingField_6; }
inline void set_U3CsupportsRemovalOfAutomaticU3Ek__BackingField_6(bool value)
{
___U3CsupportsRemovalOfAutomaticU3Ek__BackingField_6 = value;
}
inline static int32_t get_offset_of_U3CsupportsEnvironmentTextureU3Ek__BackingField_7() { return static_cast<int32_t>(offsetof(XREnvironmentProbeSubsystemDescriptor_t7C10519F545418330347AC7434FBB10F39DD4243, ___U3CsupportsEnvironmentTextureU3Ek__BackingField_7)); }
inline bool get_U3CsupportsEnvironmentTextureU3Ek__BackingField_7() const { return ___U3CsupportsEnvironmentTextureU3Ek__BackingField_7; }
inline bool* get_address_of_U3CsupportsEnvironmentTextureU3Ek__BackingField_7() { return &___U3CsupportsEnvironmentTextureU3Ek__BackingField_7; }
inline void set_U3CsupportsEnvironmentTextureU3Ek__BackingField_7(bool value)
{
___U3CsupportsEnvironmentTextureU3Ek__BackingField_7 = value;
}
inline static int32_t get_offset_of_U3CsupportsEnvironmentTextureHDRU3Ek__BackingField_8() { return static_cast<int32_t>(offsetof(XREnvironmentProbeSubsystemDescriptor_t7C10519F545418330347AC7434FBB10F39DD4243, ___U3CsupportsEnvironmentTextureHDRU3Ek__BackingField_8)); }
inline bool get_U3CsupportsEnvironmentTextureHDRU3Ek__BackingField_8() const { return ___U3CsupportsEnvironmentTextureHDRU3Ek__BackingField_8; }
inline bool* get_address_of_U3CsupportsEnvironmentTextureHDRU3Ek__BackingField_8() { return &___U3CsupportsEnvironmentTextureHDRU3Ek__BackingField_8; }
inline void set_U3CsupportsEnvironmentTextureHDRU3Ek__BackingField_8(bool value)
{
___U3CsupportsEnvironmentTextureHDRU3Ek__BackingField_8 = value;
}
};
// UnityEngine.XR.ARSubsystems.XRFaceSubsystemDescriptor
struct XRFaceSubsystemDescriptor_t129999D2BF40B1016A8C70A0FDE9763C21DCD618 : public SubsystemDescriptorWithProvider_2_tB12E064D6020E2F12266EBEB553796258028452B
{
public:
// System.Boolean UnityEngine.XR.ARSubsystems.XRFaceSubsystemDescriptor::<supportsFacePose>k__BackingField
bool ___U3CsupportsFacePoseU3Ek__BackingField_3;
// System.Boolean UnityEngine.XR.ARSubsystems.XRFaceSubsystemDescriptor::<supportsFaceMeshVerticesAndIndices>k__BackingField
bool ___U3CsupportsFaceMeshVerticesAndIndicesU3Ek__BackingField_4;
// System.Boolean UnityEngine.XR.ARSubsystems.XRFaceSubsystemDescriptor::<supportsFaceMeshUVs>k__BackingField
bool ___U3CsupportsFaceMeshUVsU3Ek__BackingField_5;
// System.Boolean UnityEngine.XR.ARSubsystems.XRFaceSubsystemDescriptor::<supportsFaceMeshNormals>k__BackingField
bool ___U3CsupportsFaceMeshNormalsU3Ek__BackingField_6;
// System.Boolean UnityEngine.XR.ARSubsystems.XRFaceSubsystemDescriptor::<supportsEyeTracking>k__BackingField
bool ___U3CsupportsEyeTrackingU3Ek__BackingField_7;
public:
inline static int32_t get_offset_of_U3CsupportsFacePoseU3Ek__BackingField_3() { return static_cast<int32_t>(offsetof(XRFaceSubsystemDescriptor_t129999D2BF40B1016A8C70A0FDE9763C21DCD618, ___U3CsupportsFacePoseU3Ek__BackingField_3)); }
inline bool get_U3CsupportsFacePoseU3Ek__BackingField_3() const { return ___U3CsupportsFacePoseU3Ek__BackingField_3; }
inline bool* get_address_of_U3CsupportsFacePoseU3Ek__BackingField_3() { return &___U3CsupportsFacePoseU3Ek__BackingField_3; }
inline void set_U3CsupportsFacePoseU3Ek__BackingField_3(bool value)
{
___U3CsupportsFacePoseU3Ek__BackingField_3 = value;
}
inline static int32_t get_offset_of_U3CsupportsFaceMeshVerticesAndIndicesU3Ek__BackingField_4() { return static_cast<int32_t>(offsetof(XRFaceSubsystemDescriptor_t129999D2BF40B1016A8C70A0FDE9763C21DCD618, ___U3CsupportsFaceMeshVerticesAndIndicesU3Ek__BackingField_4)); }
inline bool get_U3CsupportsFaceMeshVerticesAndIndicesU3Ek__BackingField_4() const { return ___U3CsupportsFaceMeshVerticesAndIndicesU3Ek__BackingField_4; }
inline bool* get_address_of_U3CsupportsFaceMeshVerticesAndIndicesU3Ek__BackingField_4() { return &___U3CsupportsFaceMeshVerticesAndIndicesU3Ek__BackingField_4; }
inline void set_U3CsupportsFaceMeshVerticesAndIndicesU3Ek__BackingField_4(bool value)
{
___U3CsupportsFaceMeshVerticesAndIndicesU3Ek__BackingField_4 = value;
}
inline static int32_t get_offset_of_U3CsupportsFaceMeshUVsU3Ek__BackingField_5() { return static_cast<int32_t>(offsetof(XRFaceSubsystemDescriptor_t129999D2BF40B1016A8C70A0FDE9763C21DCD618, ___U3CsupportsFaceMeshUVsU3Ek__BackingField_5)); }
inline bool get_U3CsupportsFaceMeshUVsU3Ek__BackingField_5() const { return ___U3CsupportsFaceMeshUVsU3Ek__BackingField_5; }
inline bool* get_address_of_U3CsupportsFaceMeshUVsU3Ek__BackingField_5() { return &___U3CsupportsFaceMeshUVsU3Ek__BackingField_5; }
inline void set_U3CsupportsFaceMeshUVsU3Ek__BackingField_5(bool value)
{
___U3CsupportsFaceMeshUVsU3Ek__BackingField_5 = value;
}
inline static int32_t get_offset_of_U3CsupportsFaceMeshNormalsU3Ek__BackingField_6() { return static_cast<int32_t>(offsetof(XRFaceSubsystemDescriptor_t129999D2BF40B1016A8C70A0FDE9763C21DCD618, ___U3CsupportsFaceMeshNormalsU3Ek__BackingField_6)); }
inline bool get_U3CsupportsFaceMeshNormalsU3Ek__BackingField_6() const { return ___U3CsupportsFaceMeshNormalsU3Ek__BackingField_6; }
inline bool* get_address_of_U3CsupportsFaceMeshNormalsU3Ek__BackingField_6() { return &___U3CsupportsFaceMeshNormalsU3Ek__BackingField_6; }
inline void set_U3CsupportsFaceMeshNormalsU3Ek__BackingField_6(bool value)
{
___U3CsupportsFaceMeshNormalsU3Ek__BackingField_6 = value;
}
inline static int32_t get_offset_of_U3CsupportsEyeTrackingU3Ek__BackingField_7() { return static_cast<int32_t>(offsetof(XRFaceSubsystemDescriptor_t129999D2BF40B1016A8C70A0FDE9763C21DCD618, ___U3CsupportsEyeTrackingU3Ek__BackingField_7)); }
inline bool get_U3CsupportsEyeTrackingU3Ek__BackingField_7() const { return ___U3CsupportsEyeTrackingU3Ek__BackingField_7; }
inline bool* get_address_of_U3CsupportsEyeTrackingU3Ek__BackingField_7() { return &___U3CsupportsEyeTrackingU3Ek__BackingField_7; }
inline void set_U3CsupportsEyeTrackingU3Ek__BackingField_7(bool value)
{
___U3CsupportsEyeTrackingU3Ek__BackingField_7 = value;
}
};
// UnityEngine.XR.ARSubsystems.XRHumanBodyPose2DJoint
struct XRHumanBodyPose2DJoint_t901EEB0FA2A9FF2D258978EC36EE0852FEF35BA4
{
public:
// System.Int32 UnityEngine.XR.ARSubsystems.XRHumanBodyPose2DJoint::m_Index
int32_t ___m_Index_0;
// System.Int32 UnityEngine.XR.ARSubsystems.XRHumanBodyPose2DJoint::m_ParentIndex
int32_t ___m_ParentIndex_1;
// UnityEngine.Vector2 UnityEngine.XR.ARSubsystems.XRHumanBodyPose2DJoint::m_Position
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___m_Position_2;
// System.Int32 UnityEngine.XR.ARSubsystems.XRHumanBodyPose2DJoint::m_Tracked
int32_t ___m_Tracked_3;
public:
inline static int32_t get_offset_of_m_Index_0() { return static_cast<int32_t>(offsetof(XRHumanBodyPose2DJoint_t901EEB0FA2A9FF2D258978EC36EE0852FEF35BA4, ___m_Index_0)); }
inline int32_t get_m_Index_0() const { return ___m_Index_0; }
inline int32_t* get_address_of_m_Index_0() { return &___m_Index_0; }
inline void set_m_Index_0(int32_t value)
{
___m_Index_0 = value;
}
inline static int32_t get_offset_of_m_ParentIndex_1() { return static_cast<int32_t>(offsetof(XRHumanBodyPose2DJoint_t901EEB0FA2A9FF2D258978EC36EE0852FEF35BA4, ___m_ParentIndex_1)); }
inline int32_t get_m_ParentIndex_1() const { return ___m_ParentIndex_1; }
inline int32_t* get_address_of_m_ParentIndex_1() { return &___m_ParentIndex_1; }
inline void set_m_ParentIndex_1(int32_t value)
{
___m_ParentIndex_1 = value;
}
inline static int32_t get_offset_of_m_Position_2() { return static_cast<int32_t>(offsetof(XRHumanBodyPose2DJoint_t901EEB0FA2A9FF2D258978EC36EE0852FEF35BA4, ___m_Position_2)); }
inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 get_m_Position_2() const { return ___m_Position_2; }
inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 * get_address_of_m_Position_2() { return &___m_Position_2; }
inline void set_m_Position_2(Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 value)
{
___m_Position_2 = value;
}
inline static int32_t get_offset_of_m_Tracked_3() { return static_cast<int32_t>(offsetof(XRHumanBodyPose2DJoint_t901EEB0FA2A9FF2D258978EC36EE0852FEF35BA4, ___m_Tracked_3)); }
inline int32_t get_m_Tracked_3() const { return ___m_Tracked_3; }
inline int32_t* get_address_of_m_Tracked_3() { return &___m_Tracked_3; }
inline void set_m_Tracked_3(int32_t value)
{
___m_Tracked_3 = value;
}
};
// UnityEngine.XR.ARSubsystems.XRHumanBodySubsystemDescriptor
struct XRHumanBodySubsystemDescriptor_t00E75DD05B03BCC1BF5A794547615692B7A55C04 : public SubsystemDescriptorWithProvider_2_t0BF07E59C6A0B8ACC38BF74CC2BC483D05AE541D
{
public:
// System.Boolean UnityEngine.XR.ARSubsystems.XRHumanBodySubsystemDescriptor::<supportsHumanBody2D>k__BackingField
bool ___U3CsupportsHumanBody2DU3Ek__BackingField_3;
// System.Boolean UnityEngine.XR.ARSubsystems.XRHumanBodySubsystemDescriptor::<supportsHumanBody3D>k__BackingField
bool ___U3CsupportsHumanBody3DU3Ek__BackingField_4;
// System.Boolean UnityEngine.XR.ARSubsystems.XRHumanBodySubsystemDescriptor::<supportsHumanBody3DScaleEstimation>k__BackingField
bool ___U3CsupportsHumanBody3DScaleEstimationU3Ek__BackingField_5;
public:
inline static int32_t get_offset_of_U3CsupportsHumanBody2DU3Ek__BackingField_3() { return static_cast<int32_t>(offsetof(XRHumanBodySubsystemDescriptor_t00E75DD05B03BCC1BF5A794547615692B7A55C04, ___U3CsupportsHumanBody2DU3Ek__BackingField_3)); }
inline bool get_U3CsupportsHumanBody2DU3Ek__BackingField_3() const { return ___U3CsupportsHumanBody2DU3Ek__BackingField_3; }
inline bool* get_address_of_U3CsupportsHumanBody2DU3Ek__BackingField_3() { return &___U3CsupportsHumanBody2DU3Ek__BackingField_3; }
inline void set_U3CsupportsHumanBody2DU3Ek__BackingField_3(bool value)
{
___U3CsupportsHumanBody2DU3Ek__BackingField_3 = value;
}
inline static int32_t get_offset_of_U3CsupportsHumanBody3DU3Ek__BackingField_4() { return static_cast<int32_t>(offsetof(XRHumanBodySubsystemDescriptor_t00E75DD05B03BCC1BF5A794547615692B7A55C04, ___U3CsupportsHumanBody3DU3Ek__BackingField_4)); }
inline bool get_U3CsupportsHumanBody3DU3Ek__BackingField_4() const { return ___U3CsupportsHumanBody3DU3Ek__BackingField_4; }
inline bool* get_address_of_U3CsupportsHumanBody3DU3Ek__BackingField_4() { return &___U3CsupportsHumanBody3DU3Ek__BackingField_4; }
inline void set_U3CsupportsHumanBody3DU3Ek__BackingField_4(bool value)
{
___U3CsupportsHumanBody3DU3Ek__BackingField_4 = value;
}
inline static int32_t get_offset_of_U3CsupportsHumanBody3DScaleEstimationU3Ek__BackingField_5() { return static_cast<int32_t>(offsetof(XRHumanBodySubsystemDescriptor_t00E75DD05B03BCC1BF5A794547615692B7A55C04, ___U3CsupportsHumanBody3DScaleEstimationU3Ek__BackingField_5)); }
inline bool get_U3CsupportsHumanBody3DScaleEstimationU3Ek__BackingField_5() const { return ___U3CsupportsHumanBody3DScaleEstimationU3Ek__BackingField_5; }
inline bool* get_address_of_U3CsupportsHumanBody3DScaleEstimationU3Ek__BackingField_5() { return &___U3CsupportsHumanBody3DScaleEstimationU3Ek__BackingField_5; }
inline void set_U3CsupportsHumanBody3DScaleEstimationU3Ek__BackingField_5(bool value)
{
___U3CsupportsHumanBody3DScaleEstimationU3Ek__BackingField_5 = value;
}
};
// UnityEngine.XR.ARSubsystems.XRImageTrackingSubsystemDescriptor
struct XRImageTrackingSubsystemDescriptor_t3EC191739B144A8AA00CEEE03E8F7FF01D7F833B : public SubsystemDescriptorWithProvider_2_tDB11EA61A7EEC9B491CE74FAFEDB41D9F00B7B34
{
public:
// System.Boolean UnityEngine.XR.ARSubsystems.XRImageTrackingSubsystemDescriptor::<supportsMovingImages>k__BackingField
bool ___U3CsupportsMovingImagesU3Ek__BackingField_3;
// System.Boolean UnityEngine.XR.ARSubsystems.XRImageTrackingSubsystemDescriptor::<requiresPhysicalImageDimensions>k__BackingField
bool ___U3CrequiresPhysicalImageDimensionsU3Ek__BackingField_4;
// System.Boolean UnityEngine.XR.ARSubsystems.XRImageTrackingSubsystemDescriptor::<supportsMutableLibrary>k__BackingField
bool ___U3CsupportsMutableLibraryU3Ek__BackingField_5;
// System.Boolean UnityEngine.XR.ARSubsystems.XRImageTrackingSubsystemDescriptor::<supportsImageValidation>k__BackingField
bool ___U3CsupportsImageValidationU3Ek__BackingField_6;
public:
inline static int32_t get_offset_of_U3CsupportsMovingImagesU3Ek__BackingField_3() { return static_cast<int32_t>(offsetof(XRImageTrackingSubsystemDescriptor_t3EC191739B144A8AA00CEEE03E8F7FF01D7F833B, ___U3CsupportsMovingImagesU3Ek__BackingField_3)); }
inline bool get_U3CsupportsMovingImagesU3Ek__BackingField_3() const { return ___U3CsupportsMovingImagesU3Ek__BackingField_3; }
inline bool* get_address_of_U3CsupportsMovingImagesU3Ek__BackingField_3() { return &___U3CsupportsMovingImagesU3Ek__BackingField_3; }
inline void set_U3CsupportsMovingImagesU3Ek__BackingField_3(bool value)
{
___U3CsupportsMovingImagesU3Ek__BackingField_3 = value;
}
inline static int32_t get_offset_of_U3CrequiresPhysicalImageDimensionsU3Ek__BackingField_4() { return static_cast<int32_t>(offsetof(XRImageTrackingSubsystemDescriptor_t3EC191739B144A8AA00CEEE03E8F7FF01D7F833B, ___U3CrequiresPhysicalImageDimensionsU3Ek__BackingField_4)); }
inline bool get_U3CrequiresPhysicalImageDimensionsU3Ek__BackingField_4() const { return ___U3CrequiresPhysicalImageDimensionsU3Ek__BackingField_4; }
inline bool* get_address_of_U3CrequiresPhysicalImageDimensionsU3Ek__BackingField_4() { return &___U3CrequiresPhysicalImageDimensionsU3Ek__BackingField_4; }
inline void set_U3CrequiresPhysicalImageDimensionsU3Ek__BackingField_4(bool value)
{
___U3CrequiresPhysicalImageDimensionsU3Ek__BackingField_4 = value;
}
inline static int32_t get_offset_of_U3CsupportsMutableLibraryU3Ek__BackingField_5() { return static_cast<int32_t>(offsetof(XRImageTrackingSubsystemDescriptor_t3EC191739B144A8AA00CEEE03E8F7FF01D7F833B, ___U3CsupportsMutableLibraryU3Ek__BackingField_5)); }
inline bool get_U3CsupportsMutableLibraryU3Ek__BackingField_5() const { return ___U3CsupportsMutableLibraryU3Ek__BackingField_5; }
inline bool* get_address_of_U3CsupportsMutableLibraryU3Ek__BackingField_5() { return &___U3CsupportsMutableLibraryU3Ek__BackingField_5; }
inline void set_U3CsupportsMutableLibraryU3Ek__BackingField_5(bool value)
{
___U3CsupportsMutableLibraryU3Ek__BackingField_5 = value;
}
inline static int32_t get_offset_of_U3CsupportsImageValidationU3Ek__BackingField_6() { return static_cast<int32_t>(offsetof(XRImageTrackingSubsystemDescriptor_t3EC191739B144A8AA00CEEE03E8F7FF01D7F833B, ___U3CsupportsImageValidationU3Ek__BackingField_6)); }
inline bool get_U3CsupportsImageValidationU3Ek__BackingField_6() const { return ___U3CsupportsImageValidationU3Ek__BackingField_6; }
inline bool* get_address_of_U3CsupportsImageValidationU3Ek__BackingField_6() { return &___U3CsupportsImageValidationU3Ek__BackingField_6; }
inline void set_U3CsupportsImageValidationU3Ek__BackingField_6(bool value)
{
___U3CsupportsImageValidationU3Ek__BackingField_6 = value;
}
};
// UnityEngine.XR.ARSubsystems.XRObjectTrackingSubsystemDescriptor
struct XRObjectTrackingSubsystemDescriptor_t831B568A9BE175A6A79BB87E25DEFAC519A6C472 : public SubsystemDescriptorWithProvider_2_tB30A449BCFE0FA82C8183709FCA73609BEF8497F
{
public:
// UnityEngine.XR.ARSubsystems.XRObjectTrackingSubsystemDescriptor/Capabilities UnityEngine.XR.ARSubsystems.XRObjectTrackingSubsystemDescriptor::<capabilities>k__BackingField
Capabilities_tC6F329DD5C73C6B9E04BE77A3AE0E52390BD8685 ___U3CcapabilitiesU3Ek__BackingField_3;
public:
inline static int32_t get_offset_of_U3CcapabilitiesU3Ek__BackingField_3() { return static_cast<int32_t>(offsetof(XRObjectTrackingSubsystemDescriptor_t831B568A9BE175A6A79BB87E25DEFAC519A6C472, ___U3CcapabilitiesU3Ek__BackingField_3)); }
inline Capabilities_tC6F329DD5C73C6B9E04BE77A3AE0E52390BD8685 get_U3CcapabilitiesU3Ek__BackingField_3() const { return ___U3CcapabilitiesU3Ek__BackingField_3; }
inline Capabilities_tC6F329DD5C73C6B9E04BE77A3AE0E52390BD8685 * get_address_of_U3CcapabilitiesU3Ek__BackingField_3() { return &___U3CcapabilitiesU3Ek__BackingField_3; }
inline void set_U3CcapabilitiesU3Ek__BackingField_3(Capabilities_tC6F329DD5C73C6B9E04BE77A3AE0E52390BD8685 value)
{
___U3CcapabilitiesU3Ek__BackingField_3 = value;
}
};
// UnityEngine.XR.ARSubsystems.XROcclusionSubsystem
struct XROcclusionSubsystem_t7546B929F9B5B6EB13B975FE4DB1F4099EE533B8 : public SubsystemWithProvider_3_t2838D413336061A31AFDEA49065AD29BD1EB3A1B
{
public:
public:
};
// UnityEngine.XR.ARSubsystems.XROcclusionSubsystemDescriptor
struct XROcclusionSubsystemDescriptor_tC9C8F2EFB7768358C203968CA71D353F0DD234FB : public SubsystemDescriptorWithProvider_2_t62816A265C3833F4CF714035B6683894F074039D
{
public:
// System.Func`1<System.Boolean> UnityEngine.XR.ARSubsystems.XROcclusionSubsystemDescriptor::m_QueryForSupportsEnvironmentDepthImage
Func_1_t76FCDA5C58178ED310C472967481FDE5F47DCF0F * ___m_QueryForSupportsEnvironmentDepthImage_3;
// System.Func`1<System.Boolean> UnityEngine.XR.ARSubsystems.XROcclusionSubsystemDescriptor::m_QueryForSupportsEnvironmentDepthConfidenceImage
Func_1_t76FCDA5C58178ED310C472967481FDE5F47DCF0F * ___m_QueryForSupportsEnvironmentDepthConfidenceImage_4;
// System.Boolean UnityEngine.XR.ARSubsystems.XROcclusionSubsystemDescriptor::<supportsHumanSegmentationStencilImage>k__BackingField
bool ___U3CsupportsHumanSegmentationStencilImageU3Ek__BackingField_5;
// System.Boolean UnityEngine.XR.ARSubsystems.XROcclusionSubsystemDescriptor::<supportsHumanSegmentationDepthImage>k__BackingField
bool ___U3CsupportsHumanSegmentationDepthImageU3Ek__BackingField_6;
public:
inline static int32_t get_offset_of_m_QueryForSupportsEnvironmentDepthImage_3() { return static_cast<int32_t>(offsetof(XROcclusionSubsystemDescriptor_tC9C8F2EFB7768358C203968CA71D353F0DD234FB, ___m_QueryForSupportsEnvironmentDepthImage_3)); }
inline Func_1_t76FCDA5C58178ED310C472967481FDE5F47DCF0F * get_m_QueryForSupportsEnvironmentDepthImage_3() const { return ___m_QueryForSupportsEnvironmentDepthImage_3; }
inline Func_1_t76FCDA5C58178ED310C472967481FDE5F47DCF0F ** get_address_of_m_QueryForSupportsEnvironmentDepthImage_3() { return &___m_QueryForSupportsEnvironmentDepthImage_3; }
inline void set_m_QueryForSupportsEnvironmentDepthImage_3(Func_1_t76FCDA5C58178ED310C472967481FDE5F47DCF0F * value)
{
___m_QueryForSupportsEnvironmentDepthImage_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_QueryForSupportsEnvironmentDepthImage_3), (void*)value);
}
inline static int32_t get_offset_of_m_QueryForSupportsEnvironmentDepthConfidenceImage_4() { return static_cast<int32_t>(offsetof(XROcclusionSubsystemDescriptor_tC9C8F2EFB7768358C203968CA71D353F0DD234FB, ___m_QueryForSupportsEnvironmentDepthConfidenceImage_4)); }
inline Func_1_t76FCDA5C58178ED310C472967481FDE5F47DCF0F * get_m_QueryForSupportsEnvironmentDepthConfidenceImage_4() const { return ___m_QueryForSupportsEnvironmentDepthConfidenceImage_4; }
inline Func_1_t76FCDA5C58178ED310C472967481FDE5F47DCF0F ** get_address_of_m_QueryForSupportsEnvironmentDepthConfidenceImage_4() { return &___m_QueryForSupportsEnvironmentDepthConfidenceImage_4; }
inline void set_m_QueryForSupportsEnvironmentDepthConfidenceImage_4(Func_1_t76FCDA5C58178ED310C472967481FDE5F47DCF0F * value)
{
___m_QueryForSupportsEnvironmentDepthConfidenceImage_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_QueryForSupportsEnvironmentDepthConfidenceImage_4), (void*)value);
}
inline static int32_t get_offset_of_U3CsupportsHumanSegmentationStencilImageU3Ek__BackingField_5() { return static_cast<int32_t>(offsetof(XROcclusionSubsystemDescriptor_tC9C8F2EFB7768358C203968CA71D353F0DD234FB, ___U3CsupportsHumanSegmentationStencilImageU3Ek__BackingField_5)); }
inline bool get_U3CsupportsHumanSegmentationStencilImageU3Ek__BackingField_5() const { return ___U3CsupportsHumanSegmentationStencilImageU3Ek__BackingField_5; }
inline bool* get_address_of_U3CsupportsHumanSegmentationStencilImageU3Ek__BackingField_5() { return &___U3CsupportsHumanSegmentationStencilImageU3Ek__BackingField_5; }
inline void set_U3CsupportsHumanSegmentationStencilImageU3Ek__BackingField_5(bool value)
{
___U3CsupportsHumanSegmentationStencilImageU3Ek__BackingField_5 = value;
}
inline static int32_t get_offset_of_U3CsupportsHumanSegmentationDepthImageU3Ek__BackingField_6() { return static_cast<int32_t>(offsetof(XROcclusionSubsystemDescriptor_tC9C8F2EFB7768358C203968CA71D353F0DD234FB, ___U3CsupportsHumanSegmentationDepthImageU3Ek__BackingField_6)); }
inline bool get_U3CsupportsHumanSegmentationDepthImageU3Ek__BackingField_6() const { return ___U3CsupportsHumanSegmentationDepthImageU3Ek__BackingField_6; }
inline bool* get_address_of_U3CsupportsHumanSegmentationDepthImageU3Ek__BackingField_6() { return &___U3CsupportsHumanSegmentationDepthImageU3Ek__BackingField_6; }
inline void set_U3CsupportsHumanSegmentationDepthImageU3Ek__BackingField_6(bool value)
{
___U3CsupportsHumanSegmentationDepthImageU3Ek__BackingField_6 = value;
}
};
// UnityEngine.XR.ARSubsystems.XRPlaneSubsystemDescriptor
struct XRPlaneSubsystemDescriptor_t98B66B6D99804656DDDB45C9BDA61C2EE4EDB483 : public SubsystemDescriptorWithProvider_2_t389082A83361A00577FB12B1BFEFA4439DBEAA69
{
public:
// System.Boolean UnityEngine.XR.ARSubsystems.XRPlaneSubsystemDescriptor::<supportsHorizontalPlaneDetection>k__BackingField
bool ___U3CsupportsHorizontalPlaneDetectionU3Ek__BackingField_3;
// System.Boolean UnityEngine.XR.ARSubsystems.XRPlaneSubsystemDescriptor::<supportsVerticalPlaneDetection>k__BackingField
bool ___U3CsupportsVerticalPlaneDetectionU3Ek__BackingField_4;
// System.Boolean UnityEngine.XR.ARSubsystems.XRPlaneSubsystemDescriptor::<supportsArbitraryPlaneDetection>k__BackingField
bool ___U3CsupportsArbitraryPlaneDetectionU3Ek__BackingField_5;
// System.Boolean UnityEngine.XR.ARSubsystems.XRPlaneSubsystemDescriptor::<supportsBoundaryVertices>k__BackingField
bool ___U3CsupportsBoundaryVerticesU3Ek__BackingField_6;
// System.Boolean UnityEngine.XR.ARSubsystems.XRPlaneSubsystemDescriptor::<supportsClassification>k__BackingField
bool ___U3CsupportsClassificationU3Ek__BackingField_7;
public:
inline static int32_t get_offset_of_U3CsupportsHorizontalPlaneDetectionU3Ek__BackingField_3() { return static_cast<int32_t>(offsetof(XRPlaneSubsystemDescriptor_t98B66B6D99804656DDDB45C9BDA61C2EE4EDB483, ___U3CsupportsHorizontalPlaneDetectionU3Ek__BackingField_3)); }
inline bool get_U3CsupportsHorizontalPlaneDetectionU3Ek__BackingField_3() const { return ___U3CsupportsHorizontalPlaneDetectionU3Ek__BackingField_3; }
inline bool* get_address_of_U3CsupportsHorizontalPlaneDetectionU3Ek__BackingField_3() { return &___U3CsupportsHorizontalPlaneDetectionU3Ek__BackingField_3; }
inline void set_U3CsupportsHorizontalPlaneDetectionU3Ek__BackingField_3(bool value)
{
___U3CsupportsHorizontalPlaneDetectionU3Ek__BackingField_3 = value;
}
inline static int32_t get_offset_of_U3CsupportsVerticalPlaneDetectionU3Ek__BackingField_4() { return static_cast<int32_t>(offsetof(XRPlaneSubsystemDescriptor_t98B66B6D99804656DDDB45C9BDA61C2EE4EDB483, ___U3CsupportsVerticalPlaneDetectionU3Ek__BackingField_4)); }
inline bool get_U3CsupportsVerticalPlaneDetectionU3Ek__BackingField_4() const { return ___U3CsupportsVerticalPlaneDetectionU3Ek__BackingField_4; }
inline bool* get_address_of_U3CsupportsVerticalPlaneDetectionU3Ek__BackingField_4() { return &___U3CsupportsVerticalPlaneDetectionU3Ek__BackingField_4; }
inline void set_U3CsupportsVerticalPlaneDetectionU3Ek__BackingField_4(bool value)
{
___U3CsupportsVerticalPlaneDetectionU3Ek__BackingField_4 = value;
}
inline static int32_t get_offset_of_U3CsupportsArbitraryPlaneDetectionU3Ek__BackingField_5() { return static_cast<int32_t>(offsetof(XRPlaneSubsystemDescriptor_t98B66B6D99804656DDDB45C9BDA61C2EE4EDB483, ___U3CsupportsArbitraryPlaneDetectionU3Ek__BackingField_5)); }
inline bool get_U3CsupportsArbitraryPlaneDetectionU3Ek__BackingField_5() const { return ___U3CsupportsArbitraryPlaneDetectionU3Ek__BackingField_5; }
inline bool* get_address_of_U3CsupportsArbitraryPlaneDetectionU3Ek__BackingField_5() { return &___U3CsupportsArbitraryPlaneDetectionU3Ek__BackingField_5; }
inline void set_U3CsupportsArbitraryPlaneDetectionU3Ek__BackingField_5(bool value)
{
___U3CsupportsArbitraryPlaneDetectionU3Ek__BackingField_5 = value;
}
inline static int32_t get_offset_of_U3CsupportsBoundaryVerticesU3Ek__BackingField_6() { return static_cast<int32_t>(offsetof(XRPlaneSubsystemDescriptor_t98B66B6D99804656DDDB45C9BDA61C2EE4EDB483, ___U3CsupportsBoundaryVerticesU3Ek__BackingField_6)); }
inline bool get_U3CsupportsBoundaryVerticesU3Ek__BackingField_6() const { return ___U3CsupportsBoundaryVerticesU3Ek__BackingField_6; }
inline bool* get_address_of_U3CsupportsBoundaryVerticesU3Ek__BackingField_6() { return &___U3CsupportsBoundaryVerticesU3Ek__BackingField_6; }
inline void set_U3CsupportsBoundaryVerticesU3Ek__BackingField_6(bool value)
{
___U3CsupportsBoundaryVerticesU3Ek__BackingField_6 = value;
}
inline static int32_t get_offset_of_U3CsupportsClassificationU3Ek__BackingField_7() { return static_cast<int32_t>(offsetof(XRPlaneSubsystemDescriptor_t98B66B6D99804656DDDB45C9BDA61C2EE4EDB483, ___U3CsupportsClassificationU3Ek__BackingField_7)); }
inline bool get_U3CsupportsClassificationU3Ek__BackingField_7() const { return ___U3CsupportsClassificationU3Ek__BackingField_7; }
inline bool* get_address_of_U3CsupportsClassificationU3Ek__BackingField_7() { return &___U3CsupportsClassificationU3Ek__BackingField_7; }
inline void set_U3CsupportsClassificationU3Ek__BackingField_7(bool value)
{
___U3CsupportsClassificationU3Ek__BackingField_7 = value;
}
};
// UnityEngine.XR.ARSubsystems.XRReferenceImage
struct XRReferenceImage_tB1803A72EB581FB35B2CA944973679132A1D4467
{
public:
// UnityEngine.XR.ARSubsystems.SerializableGuid UnityEngine.XR.ARSubsystems.XRReferenceImage::m_SerializedGuid
SerializableGuid_t5F8E8B4FF33F91AF9B16C6CC3F75AE00014505CC ___m_SerializedGuid_0;
// UnityEngine.XR.ARSubsystems.SerializableGuid UnityEngine.XR.ARSubsystems.XRReferenceImage::m_SerializedTextureGuid
SerializableGuid_t5F8E8B4FF33F91AF9B16C6CC3F75AE00014505CC ___m_SerializedTextureGuid_1;
// UnityEngine.Vector2 UnityEngine.XR.ARSubsystems.XRReferenceImage::m_Size
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___m_Size_2;
// System.Boolean UnityEngine.XR.ARSubsystems.XRReferenceImage::m_SpecifySize
bool ___m_SpecifySize_3;
// System.String UnityEngine.XR.ARSubsystems.XRReferenceImage::m_Name
String_t* ___m_Name_4;
// UnityEngine.Texture2D UnityEngine.XR.ARSubsystems.XRReferenceImage::m_Texture
Texture2D_t9B604D0D8E28032123641A7E7338FA872E2698BF * ___m_Texture_5;
public:
inline static int32_t get_offset_of_m_SerializedGuid_0() { return static_cast<int32_t>(offsetof(XRReferenceImage_tB1803A72EB581FB35B2CA944973679132A1D4467, ___m_SerializedGuid_0)); }
inline SerializableGuid_t5F8E8B4FF33F91AF9B16C6CC3F75AE00014505CC get_m_SerializedGuid_0() const { return ___m_SerializedGuid_0; }
inline SerializableGuid_t5F8E8B4FF33F91AF9B16C6CC3F75AE00014505CC * get_address_of_m_SerializedGuid_0() { return &___m_SerializedGuid_0; }
inline void set_m_SerializedGuid_0(SerializableGuid_t5F8E8B4FF33F91AF9B16C6CC3F75AE00014505CC value)
{
___m_SerializedGuid_0 = value;
}
inline static int32_t get_offset_of_m_SerializedTextureGuid_1() { return static_cast<int32_t>(offsetof(XRReferenceImage_tB1803A72EB581FB35B2CA944973679132A1D4467, ___m_SerializedTextureGuid_1)); }
inline SerializableGuid_t5F8E8B4FF33F91AF9B16C6CC3F75AE00014505CC get_m_SerializedTextureGuid_1() const { return ___m_SerializedTextureGuid_1; }
inline SerializableGuid_t5F8E8B4FF33F91AF9B16C6CC3F75AE00014505CC * get_address_of_m_SerializedTextureGuid_1() { return &___m_SerializedTextureGuid_1; }
inline void set_m_SerializedTextureGuid_1(SerializableGuid_t5F8E8B4FF33F91AF9B16C6CC3F75AE00014505CC value)
{
___m_SerializedTextureGuid_1 = value;
}
inline static int32_t get_offset_of_m_Size_2() { return static_cast<int32_t>(offsetof(XRReferenceImage_tB1803A72EB581FB35B2CA944973679132A1D4467, ___m_Size_2)); }
inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 get_m_Size_2() const { return ___m_Size_2; }
inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 * get_address_of_m_Size_2() { return &___m_Size_2; }
inline void set_m_Size_2(Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 value)
{
___m_Size_2 = value;
}
inline static int32_t get_offset_of_m_SpecifySize_3() { return static_cast<int32_t>(offsetof(XRReferenceImage_tB1803A72EB581FB35B2CA944973679132A1D4467, ___m_SpecifySize_3)); }
inline bool get_m_SpecifySize_3() const { return ___m_SpecifySize_3; }
inline bool* get_address_of_m_SpecifySize_3() { return &___m_SpecifySize_3; }
inline void set_m_SpecifySize_3(bool value)
{
___m_SpecifySize_3 = value;
}
inline static int32_t get_offset_of_m_Name_4() { return static_cast<int32_t>(offsetof(XRReferenceImage_tB1803A72EB581FB35B2CA944973679132A1D4467, ___m_Name_4)); }
inline String_t* get_m_Name_4() const { return ___m_Name_4; }
inline String_t** get_address_of_m_Name_4() { return &___m_Name_4; }
inline void set_m_Name_4(String_t* value)
{
___m_Name_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Name_4), (void*)value);
}
inline static int32_t get_offset_of_m_Texture_5() { return static_cast<int32_t>(offsetof(XRReferenceImage_tB1803A72EB581FB35B2CA944973679132A1D4467, ___m_Texture_5)); }
inline Texture2D_t9B604D0D8E28032123641A7E7338FA872E2698BF * get_m_Texture_5() const { return ___m_Texture_5; }
inline Texture2D_t9B604D0D8E28032123641A7E7338FA872E2698BF ** get_address_of_m_Texture_5() { return &___m_Texture_5; }
inline void set_m_Texture_5(Texture2D_t9B604D0D8E28032123641A7E7338FA872E2698BF * value)
{
___m_Texture_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Texture_5), (void*)value);
}
};
// Native definition for P/Invoke marshalling of UnityEngine.XR.ARSubsystems.XRReferenceImage
struct XRReferenceImage_tB1803A72EB581FB35B2CA944973679132A1D4467_marshaled_pinvoke
{
SerializableGuid_t5F8E8B4FF33F91AF9B16C6CC3F75AE00014505CC ___m_SerializedGuid_0;
SerializableGuid_t5F8E8B4FF33F91AF9B16C6CC3F75AE00014505CC ___m_SerializedTextureGuid_1;
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___m_Size_2;
int32_t ___m_SpecifySize_3;
char* ___m_Name_4;
Texture2D_t9B604D0D8E28032123641A7E7338FA872E2698BF * ___m_Texture_5;
};
// Native definition for COM marshalling of UnityEngine.XR.ARSubsystems.XRReferenceImage
struct XRReferenceImage_tB1803A72EB581FB35B2CA944973679132A1D4467_marshaled_com
{
SerializableGuid_t5F8E8B4FF33F91AF9B16C6CC3F75AE00014505CC ___m_SerializedGuid_0;
SerializableGuid_t5F8E8B4FF33F91AF9B16C6CC3F75AE00014505CC ___m_SerializedTextureGuid_1;
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___m_Size_2;
int32_t ___m_SpecifySize_3;
Il2CppChar* ___m_Name_4;
Texture2D_t9B604D0D8E28032123641A7E7338FA872E2698BF * ___m_Texture_5;
};
// UnityEngine.XR.ARSubsystems.XRReferencePointSubsystemDescriptor
struct XRReferencePointSubsystemDescriptor_t8200CCC29717B3E08EECC476427E1A4E63C4EBDB : public SubsystemDescriptorWithProvider_2_t6B33D56713F4B67214F93287AFE9CF3125A6CD6C
{
public:
public:
};
// UnityEngine.XR.ARSubsystems.XRSessionSubsystemDescriptor
struct XRSessionSubsystemDescriptor_tC45A49D1179090D5C6D3B3DC1DC31CAB5A627B1C : public SubsystemDescriptorWithProvider_2_tE9888364F17DF110619D7238068EB1EC98053AE5
{
public:
// System.Boolean UnityEngine.XR.ARSubsystems.XRSessionSubsystemDescriptor::<supportsInstall>k__BackingField
bool ___U3CsupportsInstallU3Ek__BackingField_3;
// System.Boolean UnityEngine.XR.ARSubsystems.XRSessionSubsystemDescriptor::<supportsMatchFrameRate>k__BackingField
bool ___U3CsupportsMatchFrameRateU3Ek__BackingField_4;
public:
inline static int32_t get_offset_of_U3CsupportsInstallU3Ek__BackingField_3() { return static_cast<int32_t>(offsetof(XRSessionSubsystemDescriptor_tC45A49D1179090D5C6D3B3DC1DC31CAB5A627B1C, ___U3CsupportsInstallU3Ek__BackingField_3)); }
inline bool get_U3CsupportsInstallU3Ek__BackingField_3() const { return ___U3CsupportsInstallU3Ek__BackingField_3; }
inline bool* get_address_of_U3CsupportsInstallU3Ek__BackingField_3() { return &___U3CsupportsInstallU3Ek__BackingField_3; }
inline void set_U3CsupportsInstallU3Ek__BackingField_3(bool value)
{
___U3CsupportsInstallU3Ek__BackingField_3 = value;
}
inline static int32_t get_offset_of_U3CsupportsMatchFrameRateU3Ek__BackingField_4() { return static_cast<int32_t>(offsetof(XRSessionSubsystemDescriptor_tC45A49D1179090D5C6D3B3DC1DC31CAB5A627B1C, ___U3CsupportsMatchFrameRateU3Ek__BackingField_4)); }
inline bool get_U3CsupportsMatchFrameRateU3Ek__BackingField_4() const { return ___U3CsupportsMatchFrameRateU3Ek__BackingField_4; }
inline bool* get_address_of_U3CsupportsMatchFrameRateU3Ek__BackingField_4() { return &___U3CsupportsMatchFrameRateU3Ek__BackingField_4; }
inline void set_U3CsupportsMatchFrameRateU3Ek__BackingField_4(bool value)
{
___U3CsupportsMatchFrameRateU3Ek__BackingField_4 = value;
}
};
// UnityEngine.XR.ARSubsystems.XRAnchorSubsystem/Provider
struct Provider_t9F286D20EB73EBBA4B6E7203C7A9051BE673C2E2 : public SubsystemProvider_1_t302358330269847780327C2298A4FFA7D79AF2BF
{
public:
public:
};
// UnityEngine.XR.ARSubsystems.XRCameraSubsystem/Provider
struct Provider_t55916B0D2766C320DCA36A0C870BA2FD80F8B6D1 : public SubsystemProvider_1_t3B6396AEE76B5D8268802608E3593AA3D48DB307
{
public:
public:
};
// UnityEngine.XR.ARSubsystems.XRCpuImage/AsyncConversionStatus
struct AsyncConversionStatus_t94171EDB7E6E25979DFCEF01F7B6EA6B8A5DAD42
{
public:
// System.Int32 UnityEngine.XR.ARSubsystems.XRCpuImage/AsyncConversionStatus::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(AsyncConversionStatus_t94171EDB7E6E25979DFCEF01F7B6EA6B8A5DAD42, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
// UnityEngine.XR.ARSubsystems.XRCpuImage/Format
struct Format_tC8D4CDE6941B0CAE3E1C07EC826E7E253846168A
{
public:
// System.Int32 UnityEngine.XR.ARSubsystems.XRCpuImage/Format::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(Format_tC8D4CDE6941B0CAE3E1C07EC826E7E253846168A, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
// UnityEngine.XR.ARSubsystems.XRCpuImage/Transformation
struct Transformation_t5812B66180F359977F76AB67CC9E923CF0B55938
{
public:
// System.Int32 UnityEngine.XR.ARSubsystems.XRCpuImage/Transformation::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(Transformation_t5812B66180F359977F76AB67CC9E923CF0B55938, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
// UnityEngine.XR.ARSubsystems.XRDepthSubsystem/Provider
struct Provider_t8E88C17A70269CD3E96909AFCCA952AAA7DEC0B6 : public SubsystemProvider_1_tBB539901FE99992CAA10A1EFDFA610E048498E98
{
public:
public:
};
// UnityEngine.XR.ARSubsystems.XRDepthSubsystemDescriptor/Capabilities
struct Capabilities_t6199DDFE580DA802DBAEC0155BA1C345525286CC
{
public:
// System.Int32 UnityEngine.XR.ARSubsystems.XRDepthSubsystemDescriptor/Capabilities::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(Capabilities_t6199DDFE580DA802DBAEC0155BA1C345525286CC, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
// UnityEngine.XR.ARSubsystems.XREnvironmentProbeSubsystem/Provider
struct Provider_tAF87FE3E906FDBF14F06488A1AA5E80400EFE190 : public SubsystemProvider_1_tC3DB99A11F9F3210CE2ABA9FE09C127C5B13FF80
{
public:
public:
};
// UnityEngine.XR.ARSubsystems.XRFaceMesh/Attributes
struct Attributes_tD47C14745EB853AB5A128A56544CF6C1BC670186
{
public:
// System.Int32 UnityEngine.XR.ARSubsystems.XRFaceMesh/Attributes::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(Attributes_tD47C14745EB853AB5A128A56544CF6C1BC670186, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
// UnityEngine.XR.ARSubsystems.XRFaceSubsystem/Provider
struct Provider_t0133E0DB4F1A68EB3D4814F63B14456832E3EAE7 : public SubsystemProvider_1_t23EADEE126E953AEBF796C02B50539998EA56B78
{
public:
// System.Int32 UnityEngine.XR.ARSubsystems.XRFaceSubsystem/Provider::m_RequestedMaximumFaceCount
int32_t ___m_RequestedMaximumFaceCount_1;
public:
inline static int32_t get_offset_of_m_RequestedMaximumFaceCount_1() { return static_cast<int32_t>(offsetof(Provider_t0133E0DB4F1A68EB3D4814F63B14456832E3EAE7, ___m_RequestedMaximumFaceCount_1)); }
inline int32_t get_m_RequestedMaximumFaceCount_1() const { return ___m_RequestedMaximumFaceCount_1; }
inline int32_t* get_address_of_m_RequestedMaximumFaceCount_1() { return &___m_RequestedMaximumFaceCount_1; }
inline void set_m_RequestedMaximumFaceCount_1(int32_t value)
{
___m_RequestedMaximumFaceCount_1 = value;
}
};
// UnityEngine.XR.ARSubsystems.XRHumanBodySubsystem/Provider
struct Provider_t055C90C34B2BCE8D134DF44C12823E320519168C : public SubsystemProvider_1_tBF37BFFB47314B7D87E24F4C4903C90930C0302C
{
public:
public:
};
// UnityEngine.XR.ARSubsystems.XRImageTrackingSubsystem/Provider
struct Provider_tA7CEF856C3BC486ADEBD656F5535E24262AAAE9E : public SubsystemProvider_1_t3086BC462E1384FBB8137E64FA6C513FC002E440
{
public:
public:
};
// UnityEngine.XR.ARSubsystems.XRObjectTrackingSubsystem/Provider
struct Provider_t35977A2A0AA6C338BC9893668DD32F0294A9C01E : public SubsystemProvider_1_t71FE677A1A2F32123FE4C7868D5943892028AE12
{
public:
public:
};
// UnityEngine.XR.ARSubsystems.XROcclusionSubsystem/Provider
struct Provider_t5B60C630FB68EFEAB6FA2F3D9A732C144003B7FB : public SubsystemProvider_1_t57D5C398A7A30AC3C3674CA126FAE612BC00F597
{
public:
public:
};
// UnityEngine.XR.ARSubsystems.XRParticipantSubsystem/Provider
struct Provider_t1D0BC515976D24FD30341AC456ACFCB2DE4A344E : public SubsystemProvider_1_t3D6D4D936F16F3264F75D1BAB46A4A398F18F204
{
public:
public:
};
// UnityEngine.XR.ARSubsystems.XRParticipantSubsystemDescriptor/Capabilities
struct Capabilities_t9DF0D3D327C4E491811A4DFCF21EBD355596C4D0
{
public:
// System.Int32 UnityEngine.XR.ARSubsystems.XRParticipantSubsystemDescriptor/Capabilities::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(Capabilities_t9DF0D3D327C4E491811A4DFCF21EBD355596C4D0, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
// UnityEngine.XR.ARSubsystems.XRPlaneSubsystem/Provider
struct Provider_t6CB5B1036B0AAED1379F3828D695A6942B72BA12 : public SubsystemProvider_1_tF2F3B0C041BDD07A00CD49B25AE6016B61F24816
{
public:
public:
};
// UnityEngine.XR.ARSubsystems.XRRaycastSubsystem/Provider
struct Provider_tF185BE0541D2066CD242583CEFE7709DD22DD227 : public SubsystemProvider_1_t7ACBE98539B067B19E2D5BCC2B852277F4A38875
{
public:
public:
};
// UnityEngine.XR.ARSubsystems.XRReferencePointSubsystem/Provider
struct Provider_t7974F3BD624EC305575E361EE0BCAAA3DC5B253C : public SubsystemProvider_1_tA41ABDAA9644A18E81CC750DE7DDEA8EB6088742
{
public:
public:
};
// UnityEngine.XR.ARSubsystems.XRSessionSubsystem/Provider
struct Provider_t4C3675997BB8AF3A6A32C3EC3C93C10E4D3E8D1A : public SubsystemProvider_1_tFA56F133FD9BCE90A1C4C7D15FFE2571963D8DE4
{
public:
public:
};
// UnityEngine.XR.ARSubsystems.XRCpuImage/Plane/Cinfo
struct Cinfo_t11C577CFE4A1D91F887A6423F6D1350DA45CA5FC
{
public:
// System.IntPtr UnityEngine.XR.ARSubsystems.XRCpuImage/Plane/Cinfo::m_DataPtr
intptr_t ___m_DataPtr_0;
// System.Int32 UnityEngine.XR.ARSubsystems.XRCpuImage/Plane/Cinfo::m_DataLength
int32_t ___m_DataLength_1;
// System.Int32 UnityEngine.XR.ARSubsystems.XRCpuImage/Plane/Cinfo::m_RowStride
int32_t ___m_RowStride_2;
// System.Int32 UnityEngine.XR.ARSubsystems.XRCpuImage/Plane/Cinfo::m_PixelStride
int32_t ___m_PixelStride_3;
public:
inline static int32_t get_offset_of_m_DataPtr_0() { return static_cast<int32_t>(offsetof(Cinfo_t11C577CFE4A1D91F887A6423F6D1350DA45CA5FC, ___m_DataPtr_0)); }
inline intptr_t get_m_DataPtr_0() const { return ___m_DataPtr_0; }
inline intptr_t* get_address_of_m_DataPtr_0() { return &___m_DataPtr_0; }
inline void set_m_DataPtr_0(intptr_t value)
{
___m_DataPtr_0 = value;
}
inline static int32_t get_offset_of_m_DataLength_1() { return static_cast<int32_t>(offsetof(Cinfo_t11C577CFE4A1D91F887A6423F6D1350DA45CA5FC, ___m_DataLength_1)); }
inline int32_t get_m_DataLength_1() const { return ___m_DataLength_1; }
inline int32_t* get_address_of_m_DataLength_1() { return &___m_DataLength_1; }
inline void set_m_DataLength_1(int32_t value)
{
___m_DataLength_1 = value;
}
inline static int32_t get_offset_of_m_RowStride_2() { return static_cast<int32_t>(offsetof(Cinfo_t11C577CFE4A1D91F887A6423F6D1350DA45CA5FC, ___m_RowStride_2)); }
inline int32_t get_m_RowStride_2() const { return ___m_RowStride_2; }
inline int32_t* get_address_of_m_RowStride_2() { return &___m_RowStride_2; }
inline void set_m_RowStride_2(int32_t value)
{
___m_RowStride_2 = value;
}
inline static int32_t get_offset_of_m_PixelStride_3() { return static_cast<int32_t>(offsetof(Cinfo_t11C577CFE4A1D91F887A6423F6D1350DA45CA5FC, ___m_PixelStride_3)); }
inline int32_t get_m_PixelStride_3() const { return ___m_PixelStride_3; }
inline int32_t* get_address_of_m_PixelStride_3() { return &___m_PixelStride_3; }
inline void set_m_PixelStride_3(int32_t value)
{
___m_PixelStride_3 = value;
}
};
// System.Collections.Generic.List`1/Enumerator<UnityEngine.XR.ARSubsystems.XRReferenceImage>
struct Enumerator_tF7E144ED2E7144FAE6449F9929026EE5345AF091
{
public:
// System.Collections.Generic.List`1<T> System.Collections.Generic.List`1/Enumerator::list
List_1_tBFEC44C63782254A7C0F22D20FC51F72002482EC * ___list_0;
// System.Int32 System.Collections.Generic.List`1/Enumerator::index
int32_t ___index_1;
// System.Int32 System.Collections.Generic.List`1/Enumerator::version
int32_t ___version_2;
// T System.Collections.Generic.List`1/Enumerator::current
XRReferenceImage_tB1803A72EB581FB35B2CA944973679132A1D4467 ___current_3;
public:
inline static int32_t get_offset_of_list_0() { return static_cast<int32_t>(offsetof(Enumerator_tF7E144ED2E7144FAE6449F9929026EE5345AF091, ___list_0)); }
inline List_1_tBFEC44C63782254A7C0F22D20FC51F72002482EC * get_list_0() const { return ___list_0; }
inline List_1_tBFEC44C63782254A7C0F22D20FC51F72002482EC ** get_address_of_list_0() { return &___list_0; }
inline void set_list_0(List_1_tBFEC44C63782254A7C0F22D20FC51F72002482EC * value)
{
___list_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___list_0), (void*)value);
}
inline static int32_t get_offset_of_index_1() { return static_cast<int32_t>(offsetof(Enumerator_tF7E144ED2E7144FAE6449F9929026EE5345AF091, ___index_1)); }
inline int32_t get_index_1() const { return ___index_1; }
inline int32_t* get_address_of_index_1() { return &___index_1; }
inline void set_index_1(int32_t value)
{
___index_1 = value;
}
inline static int32_t get_offset_of_version_2() { return static_cast<int32_t>(offsetof(Enumerator_tF7E144ED2E7144FAE6449F9929026EE5345AF091, ___version_2)); }
inline int32_t get_version_2() const { return ___version_2; }
inline int32_t* get_address_of_version_2() { return &___version_2; }
inline void set_version_2(int32_t value)
{
___version_2 = value;
}
inline static int32_t get_offset_of_current_3() { return static_cast<int32_t>(offsetof(Enumerator_tF7E144ED2E7144FAE6449F9929026EE5345AF091, ___current_3)); }
inline XRReferenceImage_tB1803A72EB581FB35B2CA944973679132A1D4467 get_current_3() const { return ___current_3; }
inline XRReferenceImage_tB1803A72EB581FB35B2CA944973679132A1D4467 * get_address_of_current_3() { return &___current_3; }
inline void set_current_3(XRReferenceImage_tB1803A72EB581FB35B2CA944973679132A1D4467 value)
{
___current_3 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___current_3))->___m_Name_4), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&(((&___current_3))->___m_Texture_5), (void*)NULL);
#endif
}
};
// Unity.Collections.NativeArray`1<UnityEngine.XR.ARSubsystems.BoundedPlane>
struct NativeArray_1_t056649BD2D6D7DDC87945B1C2AEE66C39F4667B3
{
public:
// System.Void* Unity.Collections.NativeArray`1::m_Buffer
void* ___m_Buffer_0;
// System.Int32 Unity.Collections.NativeArray`1::m_Length
int32_t ___m_Length_1;
// Unity.Collections.Allocator Unity.Collections.NativeArray`1::m_AllocatorLabel
int32_t ___m_AllocatorLabel_2;
public:
inline static int32_t get_offset_of_m_Buffer_0() { return static_cast<int32_t>(offsetof(NativeArray_1_t056649BD2D6D7DDC87945B1C2AEE66C39F4667B3, ___m_Buffer_0)); }
inline void* get_m_Buffer_0() const { return ___m_Buffer_0; }
inline void** get_address_of_m_Buffer_0() { return &___m_Buffer_0; }
inline void set_m_Buffer_0(void* value)
{
___m_Buffer_0 = value;
}
inline static int32_t get_offset_of_m_Length_1() { return static_cast<int32_t>(offsetof(NativeArray_1_t056649BD2D6D7DDC87945B1C2AEE66C39F4667B3, ___m_Length_1)); }
inline int32_t get_m_Length_1() const { return ___m_Length_1; }
inline int32_t* get_address_of_m_Length_1() { return &___m_Length_1; }
inline void set_m_Length_1(int32_t value)
{
___m_Length_1 = value;
}
inline static int32_t get_offset_of_m_AllocatorLabel_2() { return static_cast<int32_t>(offsetof(NativeArray_1_t056649BD2D6D7DDC87945B1C2AEE66C39F4667B3, ___m_AllocatorLabel_2)); }
inline int32_t get_m_AllocatorLabel_2() const { return ___m_AllocatorLabel_2; }
inline int32_t* get_address_of_m_AllocatorLabel_2() { return &___m_AllocatorLabel_2; }
inline void set_m_AllocatorLabel_2(int32_t value)
{
___m_AllocatorLabel_2 = value;
}
};
// Unity.Collections.NativeArray`1<System.Byte>
struct NativeArray_1_t3C2855C5B238E8C6739D4C17833F244B95C0F785
{
public:
// System.Void* Unity.Collections.NativeArray`1::m_Buffer
void* ___m_Buffer_0;
// System.Int32 Unity.Collections.NativeArray`1::m_Length
int32_t ___m_Length_1;
// Unity.Collections.Allocator Unity.Collections.NativeArray`1::m_AllocatorLabel
int32_t ___m_AllocatorLabel_2;
public:
inline static int32_t get_offset_of_m_Buffer_0() { return static_cast<int32_t>(offsetof(NativeArray_1_t3C2855C5B238E8C6739D4C17833F244B95C0F785, ___m_Buffer_0)); }
inline void* get_m_Buffer_0() const { return ___m_Buffer_0; }
inline void** get_address_of_m_Buffer_0() { return &___m_Buffer_0; }
inline void set_m_Buffer_0(void* value)
{
___m_Buffer_0 = value;
}
inline static int32_t get_offset_of_m_Length_1() { return static_cast<int32_t>(offsetof(NativeArray_1_t3C2855C5B238E8C6739D4C17833F244B95C0F785, ___m_Length_1)); }
inline int32_t get_m_Length_1() const { return ___m_Length_1; }
inline int32_t* get_address_of_m_Length_1() { return &___m_Length_1; }
inline void set_m_Length_1(int32_t value)
{
___m_Length_1 = value;
}
inline static int32_t get_offset_of_m_AllocatorLabel_2() { return static_cast<int32_t>(offsetof(NativeArray_1_t3C2855C5B238E8C6739D4C17833F244B95C0F785, ___m_AllocatorLabel_2)); }
inline int32_t get_m_AllocatorLabel_2() const { return ___m_AllocatorLabel_2; }
inline int32_t* get_address_of_m_AllocatorLabel_2() { return &___m_AllocatorLabel_2; }
inline void set_m_AllocatorLabel_2(int32_t value)
{
___m_AllocatorLabel_2 = value;
}
};
// Unity.Collections.NativeArray`1<UnityEngine.XR.ARSubsystems.ConfigurationDescriptor>
struct NativeArray_1_tC9A9DFD8C5E8BBF71F83CBC0CCF7C4BC38E3A4CA
{
public:
// System.Void* Unity.Collections.NativeArray`1::m_Buffer
void* ___m_Buffer_0;
// System.Int32 Unity.Collections.NativeArray`1::m_Length
int32_t ___m_Length_1;
// Unity.Collections.Allocator Unity.Collections.NativeArray`1::m_AllocatorLabel
int32_t ___m_AllocatorLabel_2;
public:
inline static int32_t get_offset_of_m_Buffer_0() { return static_cast<int32_t>(offsetof(NativeArray_1_tC9A9DFD8C5E8BBF71F83CBC0CCF7C4BC38E3A4CA, ___m_Buffer_0)); }
inline void* get_m_Buffer_0() const { return ___m_Buffer_0; }
inline void** get_address_of_m_Buffer_0() { return &___m_Buffer_0; }
inline void set_m_Buffer_0(void* value)
{
___m_Buffer_0 = value;
}
inline static int32_t get_offset_of_m_Length_1() { return static_cast<int32_t>(offsetof(NativeArray_1_tC9A9DFD8C5E8BBF71F83CBC0CCF7C4BC38E3A4CA, ___m_Length_1)); }
inline int32_t get_m_Length_1() const { return ___m_Length_1; }
inline int32_t* get_address_of_m_Length_1() { return &___m_Length_1; }
inline void set_m_Length_1(int32_t value)
{
___m_Length_1 = value;
}
inline static int32_t get_offset_of_m_AllocatorLabel_2() { return static_cast<int32_t>(offsetof(NativeArray_1_tC9A9DFD8C5E8BBF71F83CBC0CCF7C4BC38E3A4CA, ___m_AllocatorLabel_2)); }
inline int32_t get_m_AllocatorLabel_2() const { return ___m_AllocatorLabel_2; }
inline int32_t* get_address_of_m_AllocatorLabel_2() { return &___m_AllocatorLabel_2; }
inline void set_m_AllocatorLabel_2(int32_t value)
{
___m_AllocatorLabel_2 = value;
}
};
// Unity.Collections.NativeArray`1<System.Int32>
struct NativeArray_1_tD60079F06B473C85CF6C2BB4F2D203F38191AE99
{
public:
// System.Void* Unity.Collections.NativeArray`1::m_Buffer
void* ___m_Buffer_0;
// System.Int32 Unity.Collections.NativeArray`1::m_Length
int32_t ___m_Length_1;
// Unity.Collections.Allocator Unity.Collections.NativeArray`1::m_AllocatorLabel
int32_t ___m_AllocatorLabel_2;
public:
inline static int32_t get_offset_of_m_Buffer_0() { return static_cast<int32_t>(offsetof(NativeArray_1_tD60079F06B473C85CF6C2BB4F2D203F38191AE99, ___m_Buffer_0)); }
inline void* get_m_Buffer_0() const { return ___m_Buffer_0; }
inline void** get_address_of_m_Buffer_0() { return &___m_Buffer_0; }
inline void set_m_Buffer_0(void* value)
{
___m_Buffer_0 = value;
}
inline static int32_t get_offset_of_m_Length_1() { return static_cast<int32_t>(offsetof(NativeArray_1_tD60079F06B473C85CF6C2BB4F2D203F38191AE99, ___m_Length_1)); }
inline int32_t get_m_Length_1() const { return ___m_Length_1; }
inline int32_t* get_address_of_m_Length_1() { return &___m_Length_1; }
inline void set_m_Length_1(int32_t value)
{
___m_Length_1 = value;
}
inline static int32_t get_offset_of_m_AllocatorLabel_2() { return static_cast<int32_t>(offsetof(NativeArray_1_tD60079F06B473C85CF6C2BB4F2D203F38191AE99, ___m_AllocatorLabel_2)); }
inline int32_t get_m_AllocatorLabel_2() const { return ___m_AllocatorLabel_2; }
inline int32_t* get_address_of_m_AllocatorLabel_2() { return &___m_AllocatorLabel_2; }
inline void set_m_AllocatorLabel_2(int32_t value)
{
___m_AllocatorLabel_2 = value;
}
};
// Unity.Collections.NativeArray`1<System.Single>
struct NativeArray_1_t5F920DC5A531D604D161A0FAD3479B5BFE0D9232
{
public:
// System.Void* Unity.Collections.NativeArray`1::m_Buffer
void* ___m_Buffer_0;
// System.Int32 Unity.Collections.NativeArray`1::m_Length
int32_t ___m_Length_1;
// Unity.Collections.Allocator Unity.Collections.NativeArray`1::m_AllocatorLabel
int32_t ___m_AllocatorLabel_2;
public:
inline static int32_t get_offset_of_m_Buffer_0() { return static_cast<int32_t>(offsetof(NativeArray_1_t5F920DC5A531D604D161A0FAD3479B5BFE0D9232, ___m_Buffer_0)); }
inline void* get_m_Buffer_0() const { return ___m_Buffer_0; }
inline void** get_address_of_m_Buffer_0() { return &___m_Buffer_0; }
inline void set_m_Buffer_0(void* value)
{
___m_Buffer_0 = value;
}
inline static int32_t get_offset_of_m_Length_1() { return static_cast<int32_t>(offsetof(NativeArray_1_t5F920DC5A531D604D161A0FAD3479B5BFE0D9232, ___m_Length_1)); }
inline int32_t get_m_Length_1() const { return ___m_Length_1; }
inline int32_t* get_address_of_m_Length_1() { return &___m_Length_1; }
inline void set_m_Length_1(int32_t value)
{
___m_Length_1 = value;
}
inline static int32_t get_offset_of_m_AllocatorLabel_2() { return static_cast<int32_t>(offsetof(NativeArray_1_t5F920DC5A531D604D161A0FAD3479B5BFE0D9232, ___m_AllocatorLabel_2)); }
inline int32_t get_m_AllocatorLabel_2() const { return ___m_AllocatorLabel_2; }
inline int32_t* get_address_of_m_AllocatorLabel_2() { return &___m_AllocatorLabel_2; }
inline void set_m_AllocatorLabel_2(int32_t value)
{
___m_AllocatorLabel_2 = value;
}
};
// Unity.Collections.NativeArray`1<UnityEngine.XR.ARSubsystems.TrackableId>
struct NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77
{
public:
// System.Void* Unity.Collections.NativeArray`1::m_Buffer
void* ___m_Buffer_0;
// System.Int32 Unity.Collections.NativeArray`1::m_Length
int32_t ___m_Length_1;
// Unity.Collections.Allocator Unity.Collections.NativeArray`1::m_AllocatorLabel
int32_t ___m_AllocatorLabel_2;
public:
inline static int32_t get_offset_of_m_Buffer_0() { return static_cast<int32_t>(offsetof(NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77, ___m_Buffer_0)); }
inline void* get_m_Buffer_0() const { return ___m_Buffer_0; }
inline void** get_address_of_m_Buffer_0() { return &___m_Buffer_0; }
inline void set_m_Buffer_0(void* value)
{
___m_Buffer_0 = value;
}
inline static int32_t get_offset_of_m_Length_1() { return static_cast<int32_t>(offsetof(NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77, ___m_Length_1)); }
inline int32_t get_m_Length_1() const { return ___m_Length_1; }
inline int32_t* get_address_of_m_Length_1() { return &___m_Length_1; }
inline void set_m_Length_1(int32_t value)
{
___m_Length_1 = value;
}
inline static int32_t get_offset_of_m_AllocatorLabel_2() { return static_cast<int32_t>(offsetof(NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77, ___m_AllocatorLabel_2)); }
inline int32_t get_m_AllocatorLabel_2() const { return ___m_AllocatorLabel_2; }
inline int32_t* get_address_of_m_AllocatorLabel_2() { return &___m_AllocatorLabel_2; }
inline void set_m_AllocatorLabel_2(int32_t value)
{
___m_AllocatorLabel_2 = value;
}
};
// Unity.Collections.NativeArray`1<System.UInt64>
struct NativeArray_1_t9D118727A643E61710D0A4DF5B0C8CD1A918A40B
{
public:
// System.Void* Unity.Collections.NativeArray`1::m_Buffer
void* ___m_Buffer_0;
// System.Int32 Unity.Collections.NativeArray`1::m_Length
int32_t ___m_Length_1;
// Unity.Collections.Allocator Unity.Collections.NativeArray`1::m_AllocatorLabel
int32_t ___m_AllocatorLabel_2;
public:
inline static int32_t get_offset_of_m_Buffer_0() { return static_cast<int32_t>(offsetof(NativeArray_1_t9D118727A643E61710D0A4DF5B0C8CD1A918A40B, ___m_Buffer_0)); }
inline void* get_m_Buffer_0() const { return ___m_Buffer_0; }
inline void** get_address_of_m_Buffer_0() { return &___m_Buffer_0; }
inline void set_m_Buffer_0(void* value)
{
___m_Buffer_0 = value;
}
inline static int32_t get_offset_of_m_Length_1() { return static_cast<int32_t>(offsetof(NativeArray_1_t9D118727A643E61710D0A4DF5B0C8CD1A918A40B, ___m_Length_1)); }
inline int32_t get_m_Length_1() const { return ___m_Length_1; }
inline int32_t* get_address_of_m_Length_1() { return &___m_Length_1; }
inline void set_m_Length_1(int32_t value)
{
___m_Length_1 = value;
}
inline static int32_t get_offset_of_m_AllocatorLabel_2() { return static_cast<int32_t>(offsetof(NativeArray_1_t9D118727A643E61710D0A4DF5B0C8CD1A918A40B, ___m_AllocatorLabel_2)); }
inline int32_t get_m_AllocatorLabel_2() const { return ___m_AllocatorLabel_2; }
inline int32_t* get_address_of_m_AllocatorLabel_2() { return &___m_AllocatorLabel_2; }
inline void set_m_AllocatorLabel_2(int32_t value)
{
___m_AllocatorLabel_2 = value;
}
};
// Unity.Collections.NativeArray`1<UnityEngine.Vector2>
struct NativeArray_1_t431C85F30275831D1F5D458AB73DFCE050693BC0
{
public:
// System.Void* Unity.Collections.NativeArray`1::m_Buffer
void* ___m_Buffer_0;
// System.Int32 Unity.Collections.NativeArray`1::m_Length
int32_t ___m_Length_1;
// Unity.Collections.Allocator Unity.Collections.NativeArray`1::m_AllocatorLabel
int32_t ___m_AllocatorLabel_2;
public:
inline static int32_t get_offset_of_m_Buffer_0() { return static_cast<int32_t>(offsetof(NativeArray_1_t431C85F30275831D1F5D458AB73DFCE050693BC0, ___m_Buffer_0)); }
inline void* get_m_Buffer_0() const { return ___m_Buffer_0; }
inline void** get_address_of_m_Buffer_0() { return &___m_Buffer_0; }
inline void set_m_Buffer_0(void* value)
{
___m_Buffer_0 = value;
}
inline static int32_t get_offset_of_m_Length_1() { return static_cast<int32_t>(offsetof(NativeArray_1_t431C85F30275831D1F5D458AB73DFCE050693BC0, ___m_Length_1)); }
inline int32_t get_m_Length_1() const { return ___m_Length_1; }
inline int32_t* get_address_of_m_Length_1() { return &___m_Length_1; }
inline void set_m_Length_1(int32_t value)
{
___m_Length_1 = value;
}
inline static int32_t get_offset_of_m_AllocatorLabel_2() { return static_cast<int32_t>(offsetof(NativeArray_1_t431C85F30275831D1F5D458AB73DFCE050693BC0, ___m_AllocatorLabel_2)); }
inline int32_t get_m_AllocatorLabel_2() const { return ___m_AllocatorLabel_2; }
inline int32_t* get_address_of_m_AllocatorLabel_2() { return &___m_AllocatorLabel_2; }
inline void set_m_AllocatorLabel_2(int32_t value)
{
___m_AllocatorLabel_2 = value;
}
};
// Unity.Collections.NativeArray`1<UnityEngine.Vector3>
struct NativeArray_1_t2577BCA09CA248EFB78BD7FDA7F09D5C395DFF52
{
public:
// System.Void* Unity.Collections.NativeArray`1::m_Buffer
void* ___m_Buffer_0;
// System.Int32 Unity.Collections.NativeArray`1::m_Length
int32_t ___m_Length_1;
// Unity.Collections.Allocator Unity.Collections.NativeArray`1::m_AllocatorLabel
int32_t ___m_AllocatorLabel_2;
public:
inline static int32_t get_offset_of_m_Buffer_0() { return static_cast<int32_t>(offsetof(NativeArray_1_t2577BCA09CA248EFB78BD7FDA7F09D5C395DFF52, ___m_Buffer_0)); }
inline void* get_m_Buffer_0() const { return ___m_Buffer_0; }
inline void** get_address_of_m_Buffer_0() { return &___m_Buffer_0; }
inline void set_m_Buffer_0(void* value)
{
___m_Buffer_0 = value;
}
inline static int32_t get_offset_of_m_Length_1() { return static_cast<int32_t>(offsetof(NativeArray_1_t2577BCA09CA248EFB78BD7FDA7F09D5C395DFF52, ___m_Length_1)); }
inline int32_t get_m_Length_1() const { return ___m_Length_1; }
inline int32_t* get_address_of_m_Length_1() { return &___m_Length_1; }
inline void set_m_Length_1(int32_t value)
{
___m_Length_1 = value;
}
inline static int32_t get_offset_of_m_AllocatorLabel_2() { return static_cast<int32_t>(offsetof(NativeArray_1_t2577BCA09CA248EFB78BD7FDA7F09D5C395DFF52, ___m_AllocatorLabel_2)); }
inline int32_t get_m_AllocatorLabel_2() const { return ___m_AllocatorLabel_2; }
inline int32_t* get_address_of_m_AllocatorLabel_2() { return &___m_AllocatorLabel_2; }
inline void set_m_AllocatorLabel_2(int32_t value)
{
___m_AllocatorLabel_2 = value;
}
};
// Unity.Collections.NativeArray`1<UnityEngine.XR.ARSubsystems.XRAnchor>
struct NativeArray_1_tC0FA6F80F8C779BABF802ACD23BC7304CA5FD5E9
{
public:
// System.Void* Unity.Collections.NativeArray`1::m_Buffer
void* ___m_Buffer_0;
// System.Int32 Unity.Collections.NativeArray`1::m_Length
int32_t ___m_Length_1;
// Unity.Collections.Allocator Unity.Collections.NativeArray`1::m_AllocatorLabel
int32_t ___m_AllocatorLabel_2;
public:
inline static int32_t get_offset_of_m_Buffer_0() { return static_cast<int32_t>(offsetof(NativeArray_1_tC0FA6F80F8C779BABF802ACD23BC7304CA5FD5E9, ___m_Buffer_0)); }
inline void* get_m_Buffer_0() const { return ___m_Buffer_0; }
inline void** get_address_of_m_Buffer_0() { return &___m_Buffer_0; }
inline void set_m_Buffer_0(void* value)
{
___m_Buffer_0 = value;
}
inline static int32_t get_offset_of_m_Length_1() { return static_cast<int32_t>(offsetof(NativeArray_1_tC0FA6F80F8C779BABF802ACD23BC7304CA5FD5E9, ___m_Length_1)); }
inline int32_t get_m_Length_1() const { return ___m_Length_1; }
inline int32_t* get_address_of_m_Length_1() { return &___m_Length_1; }
inline void set_m_Length_1(int32_t value)
{
___m_Length_1 = value;
}
inline static int32_t get_offset_of_m_AllocatorLabel_2() { return static_cast<int32_t>(offsetof(NativeArray_1_tC0FA6F80F8C779BABF802ACD23BC7304CA5FD5E9, ___m_AllocatorLabel_2)); }
inline int32_t get_m_AllocatorLabel_2() const { return ___m_AllocatorLabel_2; }
inline int32_t* get_address_of_m_AllocatorLabel_2() { return &___m_AllocatorLabel_2; }
inline void set_m_AllocatorLabel_2(int32_t value)
{
___m_AllocatorLabel_2 = value;
}
};
// Unity.Collections.NativeArray`1<UnityEngine.XR.ARSubsystems.XRCameraConfiguration>
struct NativeArray_1_t80D42D57D2D76B05EFDA2CF74AE660AB5FDD9545
{
public:
// System.Void* Unity.Collections.NativeArray`1::m_Buffer
void* ___m_Buffer_0;
// System.Int32 Unity.Collections.NativeArray`1::m_Length
int32_t ___m_Length_1;
// Unity.Collections.Allocator Unity.Collections.NativeArray`1::m_AllocatorLabel
int32_t ___m_AllocatorLabel_2;
public:
inline static int32_t get_offset_of_m_Buffer_0() { return static_cast<int32_t>(offsetof(NativeArray_1_t80D42D57D2D76B05EFDA2CF74AE660AB5FDD9545, ___m_Buffer_0)); }
inline void* get_m_Buffer_0() const { return ___m_Buffer_0; }
inline void** get_address_of_m_Buffer_0() { return &___m_Buffer_0; }
inline void set_m_Buffer_0(void* value)
{
___m_Buffer_0 = value;
}
inline static int32_t get_offset_of_m_Length_1() { return static_cast<int32_t>(offsetof(NativeArray_1_t80D42D57D2D76B05EFDA2CF74AE660AB5FDD9545, ___m_Length_1)); }
inline int32_t get_m_Length_1() const { return ___m_Length_1; }
inline int32_t* get_address_of_m_Length_1() { return &___m_Length_1; }
inline void set_m_Length_1(int32_t value)
{
___m_Length_1 = value;
}
inline static int32_t get_offset_of_m_AllocatorLabel_2() { return static_cast<int32_t>(offsetof(NativeArray_1_t80D42D57D2D76B05EFDA2CF74AE660AB5FDD9545, ___m_AllocatorLabel_2)); }
inline int32_t get_m_AllocatorLabel_2() const { return ___m_AllocatorLabel_2; }
inline int32_t* get_address_of_m_AllocatorLabel_2() { return &___m_AllocatorLabel_2; }
inline void set_m_AllocatorLabel_2(int32_t value)
{
___m_AllocatorLabel_2 = value;
}
};
// Unity.Collections.NativeArray`1<UnityEngine.XR.ARSubsystems.XREnvironmentProbe>
struct NativeArray_1_t901047647D1B0577009EA387273335B841552234
{
public:
// System.Void* Unity.Collections.NativeArray`1::m_Buffer
void* ___m_Buffer_0;
// System.Int32 Unity.Collections.NativeArray`1::m_Length
int32_t ___m_Length_1;
// Unity.Collections.Allocator Unity.Collections.NativeArray`1::m_AllocatorLabel
int32_t ___m_AllocatorLabel_2;
public:
inline static int32_t get_offset_of_m_Buffer_0() { return static_cast<int32_t>(offsetof(NativeArray_1_t901047647D1B0577009EA387273335B841552234, ___m_Buffer_0)); }
inline void* get_m_Buffer_0() const { return ___m_Buffer_0; }
inline void** get_address_of_m_Buffer_0() { return &___m_Buffer_0; }
inline void set_m_Buffer_0(void* value)
{
___m_Buffer_0 = value;
}
inline static int32_t get_offset_of_m_Length_1() { return static_cast<int32_t>(offsetof(NativeArray_1_t901047647D1B0577009EA387273335B841552234, ___m_Length_1)); }
inline int32_t get_m_Length_1() const { return ___m_Length_1; }
inline int32_t* get_address_of_m_Length_1() { return &___m_Length_1; }
inline void set_m_Length_1(int32_t value)
{
___m_Length_1 = value;
}
inline static int32_t get_offset_of_m_AllocatorLabel_2() { return static_cast<int32_t>(offsetof(NativeArray_1_t901047647D1B0577009EA387273335B841552234, ___m_AllocatorLabel_2)); }
inline int32_t get_m_AllocatorLabel_2() const { return ___m_AllocatorLabel_2; }
inline int32_t* get_address_of_m_AllocatorLabel_2() { return &___m_AllocatorLabel_2; }
inline void set_m_AllocatorLabel_2(int32_t value)
{
___m_AllocatorLabel_2 = value;
}
};
// Unity.Collections.NativeArray`1<UnityEngine.XR.ARSubsystems.XRFace>
struct NativeArray_1_t176B5BDE49F181D4851D8B2230677A558EFC5E55
{
public:
// System.Void* Unity.Collections.NativeArray`1::m_Buffer
void* ___m_Buffer_0;
// System.Int32 Unity.Collections.NativeArray`1::m_Length
int32_t ___m_Length_1;
// Unity.Collections.Allocator Unity.Collections.NativeArray`1::m_AllocatorLabel
int32_t ___m_AllocatorLabel_2;
public:
inline static int32_t get_offset_of_m_Buffer_0() { return static_cast<int32_t>(offsetof(NativeArray_1_t176B5BDE49F181D4851D8B2230677A558EFC5E55, ___m_Buffer_0)); }
inline void* get_m_Buffer_0() const { return ___m_Buffer_0; }
inline void** get_address_of_m_Buffer_0() { return &___m_Buffer_0; }
inline void set_m_Buffer_0(void* value)
{
___m_Buffer_0 = value;
}
inline static int32_t get_offset_of_m_Length_1() { return static_cast<int32_t>(offsetof(NativeArray_1_t176B5BDE49F181D4851D8B2230677A558EFC5E55, ___m_Length_1)); }
inline int32_t get_m_Length_1() const { return ___m_Length_1; }
inline int32_t* get_address_of_m_Length_1() { return &___m_Length_1; }
inline void set_m_Length_1(int32_t value)
{
___m_Length_1 = value;
}
inline static int32_t get_offset_of_m_AllocatorLabel_2() { return static_cast<int32_t>(offsetof(NativeArray_1_t176B5BDE49F181D4851D8B2230677A558EFC5E55, ___m_AllocatorLabel_2)); }
inline int32_t get_m_AllocatorLabel_2() const { return ___m_AllocatorLabel_2; }
inline int32_t* get_address_of_m_AllocatorLabel_2() { return &___m_AllocatorLabel_2; }
inline void set_m_AllocatorLabel_2(int32_t value)
{
___m_AllocatorLabel_2 = value;
}
};
// Unity.Collections.NativeArray`1<UnityEngine.XR.ARSubsystems.XRHumanBody>
struct NativeArray_1_t6C80982A5077ED9524455B5005D72276BA2ECB62
{
public:
// System.Void* Unity.Collections.NativeArray`1::m_Buffer
void* ___m_Buffer_0;
// System.Int32 Unity.Collections.NativeArray`1::m_Length
int32_t ___m_Length_1;
// Unity.Collections.Allocator Unity.Collections.NativeArray`1::m_AllocatorLabel
int32_t ___m_AllocatorLabel_2;
public:
inline static int32_t get_offset_of_m_Buffer_0() { return static_cast<int32_t>(offsetof(NativeArray_1_t6C80982A5077ED9524455B5005D72276BA2ECB62, ___m_Buffer_0)); }
inline void* get_m_Buffer_0() const { return ___m_Buffer_0; }
inline void** get_address_of_m_Buffer_0() { return &___m_Buffer_0; }
inline void set_m_Buffer_0(void* value)
{
___m_Buffer_0 = value;
}
inline static int32_t get_offset_of_m_Length_1() { return static_cast<int32_t>(offsetof(NativeArray_1_t6C80982A5077ED9524455B5005D72276BA2ECB62, ___m_Length_1)); }
inline int32_t get_m_Length_1() const { return ___m_Length_1; }
inline int32_t* get_address_of_m_Length_1() { return &___m_Length_1; }
inline void set_m_Length_1(int32_t value)
{
___m_Length_1 = value;
}
inline static int32_t get_offset_of_m_AllocatorLabel_2() { return static_cast<int32_t>(offsetof(NativeArray_1_t6C80982A5077ED9524455B5005D72276BA2ECB62, ___m_AllocatorLabel_2)); }
inline int32_t get_m_AllocatorLabel_2() const { return ___m_AllocatorLabel_2; }
inline int32_t* get_address_of_m_AllocatorLabel_2() { return &___m_AllocatorLabel_2; }
inline void set_m_AllocatorLabel_2(int32_t value)
{
___m_AllocatorLabel_2 = value;
}
};
// Unity.Collections.NativeArray`1<UnityEngine.XR.ARSubsystems.XRHumanBodyJoint>
struct NativeArray_1_t733A71EE29E0C7D2F944E30A1729F085DEB1138C
{
public:
// System.Void* Unity.Collections.NativeArray`1::m_Buffer
void* ___m_Buffer_0;
// System.Int32 Unity.Collections.NativeArray`1::m_Length
int32_t ___m_Length_1;
// Unity.Collections.Allocator Unity.Collections.NativeArray`1::m_AllocatorLabel
int32_t ___m_AllocatorLabel_2;
public:
inline static int32_t get_offset_of_m_Buffer_0() { return static_cast<int32_t>(offsetof(NativeArray_1_t733A71EE29E0C7D2F944E30A1729F085DEB1138C, ___m_Buffer_0)); }
inline void* get_m_Buffer_0() const { return ___m_Buffer_0; }
inline void** get_address_of_m_Buffer_0() { return &___m_Buffer_0; }
inline void set_m_Buffer_0(void* value)
{
___m_Buffer_0 = value;
}
inline static int32_t get_offset_of_m_Length_1() { return static_cast<int32_t>(offsetof(NativeArray_1_t733A71EE29E0C7D2F944E30A1729F085DEB1138C, ___m_Length_1)); }
inline int32_t get_m_Length_1() const { return ___m_Length_1; }
inline int32_t* get_address_of_m_Length_1() { return &___m_Length_1; }
inline void set_m_Length_1(int32_t value)
{
___m_Length_1 = value;
}
inline static int32_t get_offset_of_m_AllocatorLabel_2() { return static_cast<int32_t>(offsetof(NativeArray_1_t733A71EE29E0C7D2F944E30A1729F085DEB1138C, ___m_AllocatorLabel_2)); }
inline int32_t get_m_AllocatorLabel_2() const { return ___m_AllocatorLabel_2; }
inline int32_t* get_address_of_m_AllocatorLabel_2() { return &___m_AllocatorLabel_2; }
inline void set_m_AllocatorLabel_2(int32_t value)
{
___m_AllocatorLabel_2 = value;
}
};
// Unity.Collections.NativeArray`1<UnityEngine.XR.ARSubsystems.XRHumanBodyPose2DJoint>
struct NativeArray_1_t7946EB09CA991D07040F6E500BA5CA3CECED5E52
{
public:
// System.Void* Unity.Collections.NativeArray`1::m_Buffer
void* ___m_Buffer_0;
// System.Int32 Unity.Collections.NativeArray`1::m_Length
int32_t ___m_Length_1;
// Unity.Collections.Allocator Unity.Collections.NativeArray`1::m_AllocatorLabel
int32_t ___m_AllocatorLabel_2;
public:
inline static int32_t get_offset_of_m_Buffer_0() { return static_cast<int32_t>(offsetof(NativeArray_1_t7946EB09CA991D07040F6E500BA5CA3CECED5E52, ___m_Buffer_0)); }
inline void* get_m_Buffer_0() const { return ___m_Buffer_0; }
inline void** get_address_of_m_Buffer_0() { return &___m_Buffer_0; }
inline void set_m_Buffer_0(void* value)
{
___m_Buffer_0 = value;
}
inline static int32_t get_offset_of_m_Length_1() { return static_cast<int32_t>(offsetof(NativeArray_1_t7946EB09CA991D07040F6E500BA5CA3CECED5E52, ___m_Length_1)); }
inline int32_t get_m_Length_1() const { return ___m_Length_1; }
inline int32_t* get_address_of_m_Length_1() { return &___m_Length_1; }
inline void set_m_Length_1(int32_t value)
{
___m_Length_1 = value;
}
inline static int32_t get_offset_of_m_AllocatorLabel_2() { return static_cast<int32_t>(offsetof(NativeArray_1_t7946EB09CA991D07040F6E500BA5CA3CECED5E52, ___m_AllocatorLabel_2)); }
inline int32_t get_m_AllocatorLabel_2() const { return ___m_AllocatorLabel_2; }
inline int32_t* get_address_of_m_AllocatorLabel_2() { return &___m_AllocatorLabel_2; }
inline void set_m_AllocatorLabel_2(int32_t value)
{
___m_AllocatorLabel_2 = value;
}
};
// Unity.Collections.NativeArray`1<UnityEngine.XR.ARSubsystems.XRParticipant>
struct NativeArray_1_t20D7C7F2BCDC04B6238E113A2CA21BBDD326A535
{
public:
// System.Void* Unity.Collections.NativeArray`1::m_Buffer
void* ___m_Buffer_0;
// System.Int32 Unity.Collections.NativeArray`1::m_Length
int32_t ___m_Length_1;
// Unity.Collections.Allocator Unity.Collections.NativeArray`1::m_AllocatorLabel
int32_t ___m_AllocatorLabel_2;
public:
inline static int32_t get_offset_of_m_Buffer_0() { return static_cast<int32_t>(offsetof(NativeArray_1_t20D7C7F2BCDC04B6238E113A2CA21BBDD326A535, ___m_Buffer_0)); }
inline void* get_m_Buffer_0() const { return ___m_Buffer_0; }
inline void** get_address_of_m_Buffer_0() { return &___m_Buffer_0; }
inline void set_m_Buffer_0(void* value)
{
___m_Buffer_0 = value;
}
inline static int32_t get_offset_of_m_Length_1() { return static_cast<int32_t>(offsetof(NativeArray_1_t20D7C7F2BCDC04B6238E113A2CA21BBDD326A535, ___m_Length_1)); }
inline int32_t get_m_Length_1() const { return ___m_Length_1; }
inline int32_t* get_address_of_m_Length_1() { return &___m_Length_1; }
inline void set_m_Length_1(int32_t value)
{
___m_Length_1 = value;
}
inline static int32_t get_offset_of_m_AllocatorLabel_2() { return static_cast<int32_t>(offsetof(NativeArray_1_t20D7C7F2BCDC04B6238E113A2CA21BBDD326A535, ___m_AllocatorLabel_2)); }
inline int32_t get_m_AllocatorLabel_2() const { return ___m_AllocatorLabel_2; }
inline int32_t* get_address_of_m_AllocatorLabel_2() { return &___m_AllocatorLabel_2; }
inline void set_m_AllocatorLabel_2(int32_t value)
{
___m_AllocatorLabel_2 = value;
}
};
// Unity.Collections.NativeArray`1<UnityEngine.XR.ARSubsystems.XRPointCloud>
struct NativeArray_1_t535D1A4490F010FAA0D1D1732065C9F9078ED3CA
{
public:
// System.Void* Unity.Collections.NativeArray`1::m_Buffer
void* ___m_Buffer_0;
// System.Int32 Unity.Collections.NativeArray`1::m_Length
int32_t ___m_Length_1;
// Unity.Collections.Allocator Unity.Collections.NativeArray`1::m_AllocatorLabel
int32_t ___m_AllocatorLabel_2;
public:
inline static int32_t get_offset_of_m_Buffer_0() { return static_cast<int32_t>(offsetof(NativeArray_1_t535D1A4490F010FAA0D1D1732065C9F9078ED3CA, ___m_Buffer_0)); }
inline void* get_m_Buffer_0() const { return ___m_Buffer_0; }
inline void** get_address_of_m_Buffer_0() { return &___m_Buffer_0; }
inline void set_m_Buffer_0(void* value)
{
___m_Buffer_0 = value;
}
inline static int32_t get_offset_of_m_Length_1() { return static_cast<int32_t>(offsetof(NativeArray_1_t535D1A4490F010FAA0D1D1732065C9F9078ED3CA, ___m_Length_1)); }
inline int32_t get_m_Length_1() const { return ___m_Length_1; }
inline int32_t* get_address_of_m_Length_1() { return &___m_Length_1; }
inline void set_m_Length_1(int32_t value)
{
___m_Length_1 = value;
}
inline static int32_t get_offset_of_m_AllocatorLabel_2() { return static_cast<int32_t>(offsetof(NativeArray_1_t535D1A4490F010FAA0D1D1732065C9F9078ED3CA, ___m_AllocatorLabel_2)); }
inline int32_t get_m_AllocatorLabel_2() const { return ___m_AllocatorLabel_2; }
inline int32_t* get_address_of_m_AllocatorLabel_2() { return &___m_AllocatorLabel_2; }
inline void set_m_AllocatorLabel_2(int32_t value)
{
___m_AllocatorLabel_2 = value;
}
};
// Unity.Collections.NativeArray`1<UnityEngine.XR.ARSubsystems.XRRaycast>
struct NativeArray_1_t7CC8D0A91D6B929CE8AF86EF904CA11B5437074E
{
public:
// System.Void* Unity.Collections.NativeArray`1::m_Buffer
void* ___m_Buffer_0;
// System.Int32 Unity.Collections.NativeArray`1::m_Length
int32_t ___m_Length_1;
// Unity.Collections.Allocator Unity.Collections.NativeArray`1::m_AllocatorLabel
int32_t ___m_AllocatorLabel_2;
public:
inline static int32_t get_offset_of_m_Buffer_0() { return static_cast<int32_t>(offsetof(NativeArray_1_t7CC8D0A91D6B929CE8AF86EF904CA11B5437074E, ___m_Buffer_0)); }
inline void* get_m_Buffer_0() const { return ___m_Buffer_0; }
inline void** get_address_of_m_Buffer_0() { return &___m_Buffer_0; }
inline void set_m_Buffer_0(void* value)
{
___m_Buffer_0 = value;
}
inline static int32_t get_offset_of_m_Length_1() { return static_cast<int32_t>(offsetof(NativeArray_1_t7CC8D0A91D6B929CE8AF86EF904CA11B5437074E, ___m_Length_1)); }
inline int32_t get_m_Length_1() const { return ___m_Length_1; }
inline int32_t* get_address_of_m_Length_1() { return &___m_Length_1; }
inline void set_m_Length_1(int32_t value)
{
___m_Length_1 = value;
}
inline static int32_t get_offset_of_m_AllocatorLabel_2() { return static_cast<int32_t>(offsetof(NativeArray_1_t7CC8D0A91D6B929CE8AF86EF904CA11B5437074E, ___m_AllocatorLabel_2)); }
inline int32_t get_m_AllocatorLabel_2() const { return ___m_AllocatorLabel_2; }
inline int32_t* get_address_of_m_AllocatorLabel_2() { return &___m_AllocatorLabel_2; }
inline void set_m_AllocatorLabel_2(int32_t value)
{
___m_AllocatorLabel_2 = value;
}
};
// Unity.Collections.NativeArray`1<UnityEngine.XR.ARSubsystems.XRRaycastHit>
struct NativeArray_1_t35F2E89DF840C06C68595E9289A07A26CBB07FCB
{
public:
// System.Void* Unity.Collections.NativeArray`1::m_Buffer
void* ___m_Buffer_0;
// System.Int32 Unity.Collections.NativeArray`1::m_Length
int32_t ___m_Length_1;
// Unity.Collections.Allocator Unity.Collections.NativeArray`1::m_AllocatorLabel
int32_t ___m_AllocatorLabel_2;
public:
inline static int32_t get_offset_of_m_Buffer_0() { return static_cast<int32_t>(offsetof(NativeArray_1_t35F2E89DF840C06C68595E9289A07A26CBB07FCB, ___m_Buffer_0)); }
inline void* get_m_Buffer_0() const { return ___m_Buffer_0; }
inline void** get_address_of_m_Buffer_0() { return &___m_Buffer_0; }
inline void set_m_Buffer_0(void* value)
{
___m_Buffer_0 = value;
}
inline static int32_t get_offset_of_m_Length_1() { return static_cast<int32_t>(offsetof(NativeArray_1_t35F2E89DF840C06C68595E9289A07A26CBB07FCB, ___m_Length_1)); }
inline int32_t get_m_Length_1() const { return ___m_Length_1; }
inline int32_t* get_address_of_m_Length_1() { return &___m_Length_1; }
inline void set_m_Length_1(int32_t value)
{
___m_Length_1 = value;
}
inline static int32_t get_offset_of_m_AllocatorLabel_2() { return static_cast<int32_t>(offsetof(NativeArray_1_t35F2E89DF840C06C68595E9289A07A26CBB07FCB, ___m_AllocatorLabel_2)); }
inline int32_t get_m_AllocatorLabel_2() const { return ___m_AllocatorLabel_2; }
inline int32_t* get_address_of_m_AllocatorLabel_2() { return &___m_AllocatorLabel_2; }
inline void set_m_AllocatorLabel_2(int32_t value)
{
___m_AllocatorLabel_2 = value;
}
};
// Unity.Collections.NativeArray`1<UnityEngine.XR.ARSubsystems.XRReferencePoint>
struct NativeArray_1_t0D3C1B52116423B690835F4DDBD9DEC97545DB43
{
public:
// System.Void* Unity.Collections.NativeArray`1::m_Buffer
void* ___m_Buffer_0;
// System.Int32 Unity.Collections.NativeArray`1::m_Length
int32_t ___m_Length_1;
// Unity.Collections.Allocator Unity.Collections.NativeArray`1::m_AllocatorLabel
int32_t ___m_AllocatorLabel_2;
public:
inline static int32_t get_offset_of_m_Buffer_0() { return static_cast<int32_t>(offsetof(NativeArray_1_t0D3C1B52116423B690835F4DDBD9DEC97545DB43, ___m_Buffer_0)); }
inline void* get_m_Buffer_0() const { return ___m_Buffer_0; }
inline void** get_address_of_m_Buffer_0() { return &___m_Buffer_0; }
inline void set_m_Buffer_0(void* value)
{
___m_Buffer_0 = value;
}
inline static int32_t get_offset_of_m_Length_1() { return static_cast<int32_t>(offsetof(NativeArray_1_t0D3C1B52116423B690835F4DDBD9DEC97545DB43, ___m_Length_1)); }
inline int32_t get_m_Length_1() const { return ___m_Length_1; }
inline int32_t* get_address_of_m_Length_1() { return &___m_Length_1; }
inline void set_m_Length_1(int32_t value)
{
___m_Length_1 = value;
}
inline static int32_t get_offset_of_m_AllocatorLabel_2() { return static_cast<int32_t>(offsetof(NativeArray_1_t0D3C1B52116423B690835F4DDBD9DEC97545DB43, ___m_AllocatorLabel_2)); }
inline int32_t get_m_AllocatorLabel_2() const { return ___m_AllocatorLabel_2; }
inline int32_t* get_address_of_m_AllocatorLabel_2() { return &___m_AllocatorLabel_2; }
inline void set_m_AllocatorLabel_2(int32_t value)
{
___m_AllocatorLabel_2 = value;
}
};
// Unity.Collections.NativeArray`1<UnityEngine.XR.ARSubsystems.XRTextureDescriptor>
struct NativeArray_1_t290DD5A348463DD4415AFE27775047312478F952
{
public:
// System.Void* Unity.Collections.NativeArray`1::m_Buffer
void* ___m_Buffer_0;
// System.Int32 Unity.Collections.NativeArray`1::m_Length
int32_t ___m_Length_1;
// Unity.Collections.Allocator Unity.Collections.NativeArray`1::m_AllocatorLabel
int32_t ___m_AllocatorLabel_2;
public:
inline static int32_t get_offset_of_m_Buffer_0() { return static_cast<int32_t>(offsetof(NativeArray_1_t290DD5A348463DD4415AFE27775047312478F952, ___m_Buffer_0)); }
inline void* get_m_Buffer_0() const { return ___m_Buffer_0; }
inline void** get_address_of_m_Buffer_0() { return &___m_Buffer_0; }
inline void set_m_Buffer_0(void* value)
{
___m_Buffer_0 = value;
}
inline static int32_t get_offset_of_m_Length_1() { return static_cast<int32_t>(offsetof(NativeArray_1_t290DD5A348463DD4415AFE27775047312478F952, ___m_Length_1)); }
inline int32_t get_m_Length_1() const { return ___m_Length_1; }
inline int32_t* get_address_of_m_Length_1() { return &___m_Length_1; }
inline void set_m_Length_1(int32_t value)
{
___m_Length_1 = value;
}
inline static int32_t get_offset_of_m_AllocatorLabel_2() { return static_cast<int32_t>(offsetof(NativeArray_1_t290DD5A348463DD4415AFE27775047312478F952, ___m_AllocatorLabel_2)); }
inline int32_t get_m_AllocatorLabel_2() const { return ___m_AllocatorLabel_2; }
inline int32_t* get_address_of_m_AllocatorLabel_2() { return &___m_AllocatorLabel_2; }
inline void set_m_AllocatorLabel_2(int32_t value)
{
___m_AllocatorLabel_2 = value;
}
};
// Unity.Collections.NativeArray`1<UnityEngine.XR.ARSubsystems.XRTrackedImage>
struct NativeArray_1_tFB9CDB932CB697229DBAB814E66E25DEF44F827F
{
public:
// System.Void* Unity.Collections.NativeArray`1::m_Buffer
void* ___m_Buffer_0;
// System.Int32 Unity.Collections.NativeArray`1::m_Length
int32_t ___m_Length_1;
// Unity.Collections.Allocator Unity.Collections.NativeArray`1::m_AllocatorLabel
int32_t ___m_AllocatorLabel_2;
public:
inline static int32_t get_offset_of_m_Buffer_0() { return static_cast<int32_t>(offsetof(NativeArray_1_tFB9CDB932CB697229DBAB814E66E25DEF44F827F, ___m_Buffer_0)); }
inline void* get_m_Buffer_0() const { return ___m_Buffer_0; }
inline void** get_address_of_m_Buffer_0() { return &___m_Buffer_0; }
inline void set_m_Buffer_0(void* value)
{
___m_Buffer_0 = value;
}
inline static int32_t get_offset_of_m_Length_1() { return static_cast<int32_t>(offsetof(NativeArray_1_tFB9CDB932CB697229DBAB814E66E25DEF44F827F, ___m_Length_1)); }
inline int32_t get_m_Length_1() const { return ___m_Length_1; }
inline int32_t* get_address_of_m_Length_1() { return &___m_Length_1; }
inline void set_m_Length_1(int32_t value)
{
___m_Length_1 = value;
}
inline static int32_t get_offset_of_m_AllocatorLabel_2() { return static_cast<int32_t>(offsetof(NativeArray_1_tFB9CDB932CB697229DBAB814E66E25DEF44F827F, ___m_AllocatorLabel_2)); }
inline int32_t get_m_AllocatorLabel_2() const { return ___m_AllocatorLabel_2; }
inline int32_t* get_address_of_m_AllocatorLabel_2() { return &___m_AllocatorLabel_2; }
inline void set_m_AllocatorLabel_2(int32_t value)
{
___m_AllocatorLabel_2 = value;
}
};
// Unity.Collections.NativeArray`1<UnityEngine.XR.ARSubsystems.XRTrackedObject>
struct NativeArray_1_t91984250D9080A7D07E6D31D2FFD73DBBAA4B9C3
{
public:
// System.Void* Unity.Collections.NativeArray`1::m_Buffer
void* ___m_Buffer_0;
// System.Int32 Unity.Collections.NativeArray`1::m_Length
int32_t ___m_Length_1;
// Unity.Collections.Allocator Unity.Collections.NativeArray`1::m_AllocatorLabel
int32_t ___m_AllocatorLabel_2;
public:
inline static int32_t get_offset_of_m_Buffer_0() { return static_cast<int32_t>(offsetof(NativeArray_1_t91984250D9080A7D07E6D31D2FFD73DBBAA4B9C3, ___m_Buffer_0)); }
inline void* get_m_Buffer_0() const { return ___m_Buffer_0; }
inline void** get_address_of_m_Buffer_0() { return &___m_Buffer_0; }
inline void set_m_Buffer_0(void* value)
{
___m_Buffer_0 = value;
}
inline static int32_t get_offset_of_m_Length_1() { return static_cast<int32_t>(offsetof(NativeArray_1_t91984250D9080A7D07E6D31D2FFD73DBBAA4B9C3, ___m_Length_1)); }
inline int32_t get_m_Length_1() const { return ___m_Length_1; }
inline int32_t* get_address_of_m_Length_1() { return &___m_Length_1; }
inline void set_m_Length_1(int32_t value)
{
___m_Length_1 = value;
}
inline static int32_t get_offset_of_m_AllocatorLabel_2() { return static_cast<int32_t>(offsetof(NativeArray_1_t91984250D9080A7D07E6D31D2FFD73DBBAA4B9C3, ___m_AllocatorLabel_2)); }
inline int32_t get_m_AllocatorLabel_2() const { return ___m_AllocatorLabel_2; }
inline int32_t* get_address_of_m_AllocatorLabel_2() { return &___m_AllocatorLabel_2; }
inline void set_m_AllocatorLabel_2(int32_t value)
{
___m_AllocatorLabel_2 = value;
}
};
// System.Nullable`1<UnityEngine.XR.ARSubsystems.XRCameraConfiguration>
struct Nullable_1_t661141E668063C73311C9DF09B3AE945EA9A1D8C
{
public:
// T System.Nullable`1::value
XRCameraConfiguration_t2393055E5547307393E9C73AB13B95E0785A4F7A ___value_0;
// System.Boolean System.Nullable`1::has_value
bool ___has_value_1;
public:
inline static int32_t get_offset_of_value_0() { return static_cast<int32_t>(offsetof(Nullable_1_t661141E668063C73311C9DF09B3AE945EA9A1D8C, ___value_0)); }
inline XRCameraConfiguration_t2393055E5547307393E9C73AB13B95E0785A4F7A get_value_0() const { return ___value_0; }
inline XRCameraConfiguration_t2393055E5547307393E9C73AB13B95E0785A4F7A * get_address_of_value_0() { return &___value_0; }
inline void set_value_0(XRCameraConfiguration_t2393055E5547307393E9C73AB13B95E0785A4F7A value)
{
___value_0 = value;
}
inline static int32_t get_offset_of_has_value_1() { return static_cast<int32_t>(offsetof(Nullable_1_t661141E668063C73311C9DF09B3AE945EA9A1D8C, ___has_value_1)); }
inline bool get_has_value_1() const { return ___has_value_1; }
inline bool* get_address_of_has_value_1() { return &___has_value_1; }
inline void set_has_value_1(bool value)
{
___has_value_1 = value;
}
};
// UnityEngine.XR.ARSubsystems.Promise`1<UnityEngine.XR.ARSubsystems.SessionAvailability>
struct Promise_1_tB8B428F557CD6742430DB416C0B99C79CA1AA167 : public CustomYieldInstruction_t4ED1543FBAA3143362854EB1867B42E5D190A5C7
{
public:
// T UnityEngine.XR.ARSubsystems.Promise`1::<result>k__BackingField
int32_t ___U3CresultU3Ek__BackingField_0;
// System.Boolean UnityEngine.XR.ARSubsystems.Promise`1::m_Complete
bool ___m_Complete_1;
public:
inline static int32_t get_offset_of_U3CresultU3Ek__BackingField_0() { return static_cast<int32_t>(offsetof(Promise_1_tB8B428F557CD6742430DB416C0B99C79CA1AA167, ___U3CresultU3Ek__BackingField_0)); }
inline int32_t get_U3CresultU3Ek__BackingField_0() const { return ___U3CresultU3Ek__BackingField_0; }
inline int32_t* get_address_of_U3CresultU3Ek__BackingField_0() { return &___U3CresultU3Ek__BackingField_0; }
inline void set_U3CresultU3Ek__BackingField_0(int32_t value)
{
___U3CresultU3Ek__BackingField_0 = value;
}
inline static int32_t get_offset_of_m_Complete_1() { return static_cast<int32_t>(offsetof(Promise_1_tB8B428F557CD6742430DB416C0B99C79CA1AA167, ___m_Complete_1)); }
inline bool get_m_Complete_1() const { return ___m_Complete_1; }
inline bool* get_address_of_m_Complete_1() { return &___m_Complete_1; }
inline void set_m_Complete_1(bool value)
{
___m_Complete_1 = value;
}
};
// UnityEngine.XR.ARSubsystems.Promise`1<UnityEngine.XR.ARSubsystems.SessionInstallationStatus>
struct Promise_1_tB8B3F3631C923F82F653F3D73D6B3082CF7CDD88 : public CustomYieldInstruction_t4ED1543FBAA3143362854EB1867B42E5D190A5C7
{
public:
// T UnityEngine.XR.ARSubsystems.Promise`1::<result>k__BackingField
int32_t ___U3CresultU3Ek__BackingField_0;
// System.Boolean UnityEngine.XR.ARSubsystems.Promise`1::m_Complete
bool ___m_Complete_1;
public:
inline static int32_t get_offset_of_U3CresultU3Ek__BackingField_0() { return static_cast<int32_t>(offsetof(Promise_1_tB8B3F3631C923F82F653F3D73D6B3082CF7CDD88, ___U3CresultU3Ek__BackingField_0)); }
inline int32_t get_U3CresultU3Ek__BackingField_0() const { return ___U3CresultU3Ek__BackingField_0; }
inline int32_t* get_address_of_U3CresultU3Ek__BackingField_0() { return &___U3CresultU3Ek__BackingField_0; }
inline void set_U3CresultU3Ek__BackingField_0(int32_t value)
{
___U3CresultU3Ek__BackingField_0 = value;
}
inline static int32_t get_offset_of_m_Complete_1() { return static_cast<int32_t>(offsetof(Promise_1_tB8B3F3631C923F82F653F3D73D6B3082CF7CDD88, ___m_Complete_1)); }
inline bool get_m_Complete_1() const { return ___m_Complete_1; }
inline bool* get_address_of_m_Complete_1() { return &___m_Complete_1; }
inline void set_m_Complete_1(bool value)
{
___m_Complete_1 = value;
}
};
// UnityEngine.XR.ARSubsystems.AddReferenceImageJobState
struct AddReferenceImageJobState_t6818A53BD54BDCDCA326D660A1575F66DF832633
{
public:
// System.IntPtr UnityEngine.XR.ARSubsystems.AddReferenceImageJobState::m_Handle
intptr_t ___m_Handle_0;
// UnityEngine.XR.ARSubsystems.MutableRuntimeReferenceImageLibrary UnityEngine.XR.ARSubsystems.AddReferenceImageJobState::m_Library
MutableRuntimeReferenceImageLibrary_t887376CE46B48DEEC6E8655D429BADCA6E3C7EAA * ___m_Library_1;
// Unity.Jobs.JobHandle UnityEngine.XR.ARSubsystems.AddReferenceImageJobState::<jobHandle>k__BackingField
JobHandle_t8AEB8D31C25D7774C71D62B0C662525E6E36D847 ___U3CjobHandleU3Ek__BackingField_2;
public:
inline static int32_t get_offset_of_m_Handle_0() { return static_cast<int32_t>(offsetof(AddReferenceImageJobState_t6818A53BD54BDCDCA326D660A1575F66DF832633, ___m_Handle_0)); }
inline intptr_t get_m_Handle_0() const { return ___m_Handle_0; }
inline intptr_t* get_address_of_m_Handle_0() { return &___m_Handle_0; }
inline void set_m_Handle_0(intptr_t value)
{
___m_Handle_0 = value;
}
inline static int32_t get_offset_of_m_Library_1() { return static_cast<int32_t>(offsetof(AddReferenceImageJobState_t6818A53BD54BDCDCA326D660A1575F66DF832633, ___m_Library_1)); }
inline MutableRuntimeReferenceImageLibrary_t887376CE46B48DEEC6E8655D429BADCA6E3C7EAA * get_m_Library_1() const { return ___m_Library_1; }
inline MutableRuntimeReferenceImageLibrary_t887376CE46B48DEEC6E8655D429BADCA6E3C7EAA ** get_address_of_m_Library_1() { return &___m_Library_1; }
inline void set_m_Library_1(MutableRuntimeReferenceImageLibrary_t887376CE46B48DEEC6E8655D429BADCA6E3C7EAA * value)
{
___m_Library_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Library_1), (void*)value);
}
inline static int32_t get_offset_of_U3CjobHandleU3Ek__BackingField_2() { return static_cast<int32_t>(offsetof(AddReferenceImageJobState_t6818A53BD54BDCDCA326D660A1575F66DF832633, ___U3CjobHandleU3Ek__BackingField_2)); }
inline JobHandle_t8AEB8D31C25D7774C71D62B0C662525E6E36D847 get_U3CjobHandleU3Ek__BackingField_2() const { return ___U3CjobHandleU3Ek__BackingField_2; }
inline JobHandle_t8AEB8D31C25D7774C71D62B0C662525E6E36D847 * get_address_of_U3CjobHandleU3Ek__BackingField_2() { return &___U3CjobHandleU3Ek__BackingField_2; }
inline void set_U3CjobHandleU3Ek__BackingField_2(JobHandle_t8AEB8D31C25D7774C71D62B0C662525E6E36D847 value)
{
___U3CjobHandleU3Ek__BackingField_2 = value;
}
};
// Native definition for P/Invoke marshalling of UnityEngine.XR.ARSubsystems.AddReferenceImageJobState
struct AddReferenceImageJobState_t6818A53BD54BDCDCA326D660A1575F66DF832633_marshaled_pinvoke
{
intptr_t ___m_Handle_0;
MutableRuntimeReferenceImageLibrary_t887376CE46B48DEEC6E8655D429BADCA6E3C7EAA * ___m_Library_1;
JobHandle_t8AEB8D31C25D7774C71D62B0C662525E6E36D847 ___U3CjobHandleU3Ek__BackingField_2;
};
// Native definition for COM marshalling of UnityEngine.XR.ARSubsystems.AddReferenceImageJobState
struct AddReferenceImageJobState_t6818A53BD54BDCDCA326D660A1575F66DF832633_marshaled_com
{
intptr_t ___m_Handle_0;
MutableRuntimeReferenceImageLibrary_t887376CE46B48DEEC6E8655D429BADCA6E3C7EAA * ___m_Library_1;
JobHandle_t8AEB8D31C25D7774C71D62B0C662525E6E36D847 ___U3CjobHandleU3Ek__BackingField_2;
};
// UnityEngine.XR.ARSubsystems.BoundedPlane
struct BoundedPlane_t9001963C43ACDF4CDEA8BBF97CD783B7969B79C5
{
public:
// UnityEngine.XR.ARSubsystems.TrackableId UnityEngine.XR.ARSubsystems.BoundedPlane::m_TrackableId
TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B ___m_TrackableId_1;
// UnityEngine.XR.ARSubsystems.TrackableId UnityEngine.XR.ARSubsystems.BoundedPlane::m_SubsumedById
TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B ___m_SubsumedById_2;
// UnityEngine.Vector2 UnityEngine.XR.ARSubsystems.BoundedPlane::m_Center
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___m_Center_3;
// UnityEngine.Pose UnityEngine.XR.ARSubsystems.BoundedPlane::m_Pose
Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A ___m_Pose_4;
// UnityEngine.Vector2 UnityEngine.XR.ARSubsystems.BoundedPlane::m_Size
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___m_Size_5;
// UnityEngine.XR.ARSubsystems.PlaneAlignment UnityEngine.XR.ARSubsystems.BoundedPlane::m_Alignment
int32_t ___m_Alignment_6;
// UnityEngine.XR.ARSubsystems.TrackingState UnityEngine.XR.ARSubsystems.BoundedPlane::m_TrackingState
int32_t ___m_TrackingState_7;
// System.IntPtr UnityEngine.XR.ARSubsystems.BoundedPlane::m_NativePtr
intptr_t ___m_NativePtr_8;
// UnityEngine.XR.ARSubsystems.PlaneClassification UnityEngine.XR.ARSubsystems.BoundedPlane::m_Classification
int32_t ___m_Classification_9;
public:
inline static int32_t get_offset_of_m_TrackableId_1() { return static_cast<int32_t>(offsetof(BoundedPlane_t9001963C43ACDF4CDEA8BBF97CD783B7969B79C5, ___m_TrackableId_1)); }
inline TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B get_m_TrackableId_1() const { return ___m_TrackableId_1; }
inline TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B * get_address_of_m_TrackableId_1() { return &___m_TrackableId_1; }
inline void set_m_TrackableId_1(TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B value)
{
___m_TrackableId_1 = value;
}
inline static int32_t get_offset_of_m_SubsumedById_2() { return static_cast<int32_t>(offsetof(BoundedPlane_t9001963C43ACDF4CDEA8BBF97CD783B7969B79C5, ___m_SubsumedById_2)); }
inline TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B get_m_SubsumedById_2() const { return ___m_SubsumedById_2; }
inline TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B * get_address_of_m_SubsumedById_2() { return &___m_SubsumedById_2; }
inline void set_m_SubsumedById_2(TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B value)
{
___m_SubsumedById_2 = value;
}
inline static int32_t get_offset_of_m_Center_3() { return static_cast<int32_t>(offsetof(BoundedPlane_t9001963C43ACDF4CDEA8BBF97CD783B7969B79C5, ___m_Center_3)); }
inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 get_m_Center_3() const { return ___m_Center_3; }
inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 * get_address_of_m_Center_3() { return &___m_Center_3; }
inline void set_m_Center_3(Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 value)
{
___m_Center_3 = value;
}
inline static int32_t get_offset_of_m_Pose_4() { return static_cast<int32_t>(offsetof(BoundedPlane_t9001963C43ACDF4CDEA8BBF97CD783B7969B79C5, ___m_Pose_4)); }
inline Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A get_m_Pose_4() const { return ___m_Pose_4; }
inline Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A * get_address_of_m_Pose_4() { return &___m_Pose_4; }
inline void set_m_Pose_4(Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A value)
{
___m_Pose_4 = value;
}
inline static int32_t get_offset_of_m_Size_5() { return static_cast<int32_t>(offsetof(BoundedPlane_t9001963C43ACDF4CDEA8BBF97CD783B7969B79C5, ___m_Size_5)); }
inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 get_m_Size_5() const { return ___m_Size_5; }
inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 * get_address_of_m_Size_5() { return &___m_Size_5; }
inline void set_m_Size_5(Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 value)
{
___m_Size_5 = value;
}
inline static int32_t get_offset_of_m_Alignment_6() { return static_cast<int32_t>(offsetof(BoundedPlane_t9001963C43ACDF4CDEA8BBF97CD783B7969B79C5, ___m_Alignment_6)); }
inline int32_t get_m_Alignment_6() const { return ___m_Alignment_6; }
inline int32_t* get_address_of_m_Alignment_6() { return &___m_Alignment_6; }
inline void set_m_Alignment_6(int32_t value)
{
___m_Alignment_6 = value;
}
inline static int32_t get_offset_of_m_TrackingState_7() { return static_cast<int32_t>(offsetof(BoundedPlane_t9001963C43ACDF4CDEA8BBF97CD783B7969B79C5, ___m_TrackingState_7)); }
inline int32_t get_m_TrackingState_7() const { return ___m_TrackingState_7; }
inline int32_t* get_address_of_m_TrackingState_7() { return &___m_TrackingState_7; }
inline void set_m_TrackingState_7(int32_t value)
{
___m_TrackingState_7 = value;
}
inline static int32_t get_offset_of_m_NativePtr_8() { return static_cast<int32_t>(offsetof(BoundedPlane_t9001963C43ACDF4CDEA8BBF97CD783B7969B79C5, ___m_NativePtr_8)); }
inline intptr_t get_m_NativePtr_8() const { return ___m_NativePtr_8; }
inline intptr_t* get_address_of_m_NativePtr_8() { return &___m_NativePtr_8; }
inline void set_m_NativePtr_8(intptr_t value)
{
___m_NativePtr_8 = value;
}
inline static int32_t get_offset_of_m_Classification_9() { return static_cast<int32_t>(offsetof(BoundedPlane_t9001963C43ACDF4CDEA8BBF97CD783B7969B79C5, ___m_Classification_9)); }
inline int32_t get_m_Classification_9() const { return ___m_Classification_9; }
inline int32_t* get_address_of_m_Classification_9() { return &___m_Classification_9; }
inline void set_m_Classification_9(int32_t value)
{
___m_Classification_9 = value;
}
};
struct BoundedPlane_t9001963C43ACDF4CDEA8BBF97CD783B7969B79C5_StaticFields
{
public:
// UnityEngine.XR.ARSubsystems.BoundedPlane UnityEngine.XR.ARSubsystems.BoundedPlane::s_Default
BoundedPlane_t9001963C43ACDF4CDEA8BBF97CD783B7969B79C5 ___s_Default_0;
public:
inline static int32_t get_offset_of_s_Default_0() { return static_cast<int32_t>(offsetof(BoundedPlane_t9001963C43ACDF4CDEA8BBF97CD783B7969B79C5_StaticFields, ___s_Default_0)); }
inline BoundedPlane_t9001963C43ACDF4CDEA8BBF97CD783B7969B79C5 get_s_Default_0() const { return ___s_Default_0; }
inline BoundedPlane_t9001963C43ACDF4CDEA8BBF97CD783B7969B79C5 * get_address_of_s_Default_0() { return &___s_Default_0; }
inline void set_s_Default_0(BoundedPlane_t9001963C43ACDF4CDEA8BBF97CD783B7969B79C5 value)
{
___s_Default_0 = value;
}
};
// UnityEngine.XR.ARSubsystems.ConfigurationDescriptor
struct ConfigurationDescriptor_t5CD12F017FCCF861DC33D7C0D6F0121015DEEA78
{
public:
// System.IntPtr UnityEngine.XR.ARSubsystems.ConfigurationDescriptor::m_Identifier
intptr_t ___m_Identifier_0;
// UnityEngine.XR.ARSubsystems.Feature UnityEngine.XR.ARSubsystems.ConfigurationDescriptor::m_Capabilities
uint64_t ___m_Capabilities_1;
// System.Int32 UnityEngine.XR.ARSubsystems.ConfigurationDescriptor::m_Rank
int32_t ___m_Rank_2;
public:
inline static int32_t get_offset_of_m_Identifier_0() { return static_cast<int32_t>(offsetof(ConfigurationDescriptor_t5CD12F017FCCF861DC33D7C0D6F0121015DEEA78, ___m_Identifier_0)); }
inline intptr_t get_m_Identifier_0() const { return ___m_Identifier_0; }
inline intptr_t* get_address_of_m_Identifier_0() { return &___m_Identifier_0; }
inline void set_m_Identifier_0(intptr_t value)
{
___m_Identifier_0 = value;
}
inline static int32_t get_offset_of_m_Capabilities_1() { return static_cast<int32_t>(offsetof(ConfigurationDescriptor_t5CD12F017FCCF861DC33D7C0D6F0121015DEEA78, ___m_Capabilities_1)); }
inline uint64_t get_m_Capabilities_1() const { return ___m_Capabilities_1; }
inline uint64_t* get_address_of_m_Capabilities_1() { return &___m_Capabilities_1; }
inline void set_m_Capabilities_1(uint64_t value)
{
___m_Capabilities_1 = value;
}
inline static int32_t get_offset_of_m_Rank_2() { return static_cast<int32_t>(offsetof(ConfigurationDescriptor_t5CD12F017FCCF861DC33D7C0D6F0121015DEEA78, ___m_Rank_2)); }
inline int32_t get_m_Rank_2() const { return ___m_Rank_2; }
inline int32_t* get_address_of_m_Rank_2() { return &___m_Rank_2; }
inline void set_m_Rank_2(int32_t value)
{
___m_Rank_2 = value;
}
};
// UnityEngine.XR.ARSubsystems.FaceSubsystemParams
struct FaceSubsystemParams_t2FC64133455298391F1A1DDC61B151E688301B09
{
public:
// System.String UnityEngine.XR.ARSubsystems.FaceSubsystemParams::<id>k__BackingField
String_t* ___U3CidU3Ek__BackingField_0;
// System.Type UnityEngine.XR.ARSubsystems.FaceSubsystemParams::<providerType>k__BackingField
Type_t * ___U3CproviderTypeU3Ek__BackingField_1;
// System.Type UnityEngine.XR.ARSubsystems.FaceSubsystemParams::<subsystemTypeOverride>k__BackingField
Type_t * ___U3CsubsystemTypeOverrideU3Ek__BackingField_2;
// System.Type UnityEngine.XR.ARSubsystems.FaceSubsystemParams::<subsystemImplementationType>k__BackingField
Type_t * ___U3CsubsystemImplementationTypeU3Ek__BackingField_3;
// UnityEngine.XR.ARSubsystems.FaceSubsystemCapabilities UnityEngine.XR.ARSubsystems.FaceSubsystemParams::m_Capabilities
int32_t ___m_Capabilities_4;
public:
inline static int32_t get_offset_of_U3CidU3Ek__BackingField_0() { return static_cast<int32_t>(offsetof(FaceSubsystemParams_t2FC64133455298391F1A1DDC61B151E688301B09, ___U3CidU3Ek__BackingField_0)); }
inline String_t* get_U3CidU3Ek__BackingField_0() const { return ___U3CidU3Ek__BackingField_0; }
inline String_t** get_address_of_U3CidU3Ek__BackingField_0() { return &___U3CidU3Ek__BackingField_0; }
inline void set_U3CidU3Ek__BackingField_0(String_t* value)
{
___U3CidU3Ek__BackingField_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CidU3Ek__BackingField_0), (void*)value);
}
inline static int32_t get_offset_of_U3CproviderTypeU3Ek__BackingField_1() { return static_cast<int32_t>(offsetof(FaceSubsystemParams_t2FC64133455298391F1A1DDC61B151E688301B09, ___U3CproviderTypeU3Ek__BackingField_1)); }
inline Type_t * get_U3CproviderTypeU3Ek__BackingField_1() const { return ___U3CproviderTypeU3Ek__BackingField_1; }
inline Type_t ** get_address_of_U3CproviderTypeU3Ek__BackingField_1() { return &___U3CproviderTypeU3Ek__BackingField_1; }
inline void set_U3CproviderTypeU3Ek__BackingField_1(Type_t * value)
{
___U3CproviderTypeU3Ek__BackingField_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CproviderTypeU3Ek__BackingField_1), (void*)value);
}
inline static int32_t get_offset_of_U3CsubsystemTypeOverrideU3Ek__BackingField_2() { return static_cast<int32_t>(offsetof(FaceSubsystemParams_t2FC64133455298391F1A1DDC61B151E688301B09, ___U3CsubsystemTypeOverrideU3Ek__BackingField_2)); }
inline Type_t * get_U3CsubsystemTypeOverrideU3Ek__BackingField_2() const { return ___U3CsubsystemTypeOverrideU3Ek__BackingField_2; }
inline Type_t ** get_address_of_U3CsubsystemTypeOverrideU3Ek__BackingField_2() { return &___U3CsubsystemTypeOverrideU3Ek__BackingField_2; }
inline void set_U3CsubsystemTypeOverrideU3Ek__BackingField_2(Type_t * value)
{
___U3CsubsystemTypeOverrideU3Ek__BackingField_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CsubsystemTypeOverrideU3Ek__BackingField_2), (void*)value);
}
inline static int32_t get_offset_of_U3CsubsystemImplementationTypeU3Ek__BackingField_3() { return static_cast<int32_t>(offsetof(FaceSubsystemParams_t2FC64133455298391F1A1DDC61B151E688301B09, ___U3CsubsystemImplementationTypeU3Ek__BackingField_3)); }
inline Type_t * get_U3CsubsystemImplementationTypeU3Ek__BackingField_3() const { return ___U3CsubsystemImplementationTypeU3Ek__BackingField_3; }
inline Type_t ** get_address_of_U3CsubsystemImplementationTypeU3Ek__BackingField_3() { return &___U3CsubsystemImplementationTypeU3Ek__BackingField_3; }
inline void set_U3CsubsystemImplementationTypeU3Ek__BackingField_3(Type_t * value)
{
___U3CsubsystemImplementationTypeU3Ek__BackingField_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CsubsystemImplementationTypeU3Ek__BackingField_3), (void*)value);
}
inline static int32_t get_offset_of_m_Capabilities_4() { return static_cast<int32_t>(offsetof(FaceSubsystemParams_t2FC64133455298391F1A1DDC61B151E688301B09, ___m_Capabilities_4)); }
inline int32_t get_m_Capabilities_4() const { return ___m_Capabilities_4; }
inline int32_t* get_address_of_m_Capabilities_4() { return &___m_Capabilities_4; }
inline void set_m_Capabilities_4(int32_t value)
{
___m_Capabilities_4 = value;
}
};
// Native definition for P/Invoke marshalling of UnityEngine.XR.ARSubsystems.FaceSubsystemParams
struct FaceSubsystemParams_t2FC64133455298391F1A1DDC61B151E688301B09_marshaled_pinvoke
{
char* ___U3CidU3Ek__BackingField_0;
Type_t * ___U3CproviderTypeU3Ek__BackingField_1;
Type_t * ___U3CsubsystemTypeOverrideU3Ek__BackingField_2;
Type_t * ___U3CsubsystemImplementationTypeU3Ek__BackingField_3;
int32_t ___m_Capabilities_4;
};
// Native definition for COM marshalling of UnityEngine.XR.ARSubsystems.FaceSubsystemParams
struct FaceSubsystemParams_t2FC64133455298391F1A1DDC61B151E688301B09_marshaled_com
{
Il2CppChar* ___U3CidU3Ek__BackingField_0;
Type_t * ___U3CproviderTypeU3Ek__BackingField_1;
Type_t * ___U3CsubsystemTypeOverrideU3Ek__BackingField_2;
Type_t * ___U3CsubsystemImplementationTypeU3Ek__BackingField_3;
int32_t ___m_Capabilities_4;
};
// UnityEngine.Material
struct Material_t8927C00353A72755313F046D0CE85178AE8218EE : public Object_tF2F3778131EFF286AF62B7B013A170F95A91571A
{
public:
public:
};
// System.MulticastDelegate
struct MulticastDelegate_t : public Delegate_t
{
public:
// System.Delegate[] System.MulticastDelegate::delegates
DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8* ___delegates_11;
public:
inline static int32_t get_offset_of_delegates_11() { return static_cast<int32_t>(offsetof(MulticastDelegate_t, ___delegates_11)); }
inline DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8* get_delegates_11() const { return ___delegates_11; }
inline DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8** get_address_of_delegates_11() { return &___delegates_11; }
inline void set_delegates_11(DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8* value)
{
___delegates_11 = value;
Il2CppCodeGenWriteBarrier((void**)(&___delegates_11), (void*)value);
}
};
// Native definition for P/Invoke marshalling of System.MulticastDelegate
struct MulticastDelegate_t_marshaled_pinvoke : public Delegate_t_marshaled_pinvoke
{
Delegate_t_marshaled_pinvoke** ___delegates_11;
};
// Native definition for COM marshalling of System.MulticastDelegate
struct MulticastDelegate_t_marshaled_com : public Delegate_t_marshaled_com
{
Delegate_t_marshaled_com** ___delegates_11;
};
// System.Text.RegularExpressions.Regex
struct Regex_t90F443D398F44965EA241A652ED75DF5BA072A1F : public RuntimeObject
{
public:
// System.String System.Text.RegularExpressions.Regex::pattern
String_t* ___pattern_0;
// System.Text.RegularExpressions.RegexRunnerFactory System.Text.RegularExpressions.Regex::factory
RegexRunnerFactory_tA425EC5DC77FC0AAD86EB116E5483E94679CAA96 * ___factory_1;
// System.Text.RegularExpressions.RegexOptions System.Text.RegularExpressions.Regex::roptions
int32_t ___roptions_2;
// System.TimeSpan System.Text.RegularExpressions.Regex::internalMatchTimeout
TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 ___internalMatchTimeout_5;
// System.Collections.Hashtable System.Text.RegularExpressions.Regex::caps
Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * ___caps_9;
// System.Collections.Hashtable System.Text.RegularExpressions.Regex::capnames
Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * ___capnames_10;
// System.String[] System.Text.RegularExpressions.Regex::capslist
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* ___capslist_11;
// System.Int32 System.Text.RegularExpressions.Regex::capsize
int32_t ___capsize_12;
// System.Text.RegularExpressions.ExclusiveReference System.Text.RegularExpressions.Regex::runnerref
ExclusiveReference_t7F4A5D2416EA34710F520BAD225E61BC1E98D1D8 * ___runnerref_13;
// System.Text.RegularExpressions.SharedReference System.Text.RegularExpressions.Regex::replref
SharedReference_t74AB40C102A76A7523C72269A49D2C8FBDD83926 * ___replref_14;
// System.Text.RegularExpressions.RegexCode System.Text.RegularExpressions.Regex::code
RegexCode_tF1653432E8EEDED5AB9517D09CA84B5FAA3CC0D5 * ___code_15;
// System.Boolean System.Text.RegularExpressions.Regex::refsInitialized
bool ___refsInitialized_16;
public:
inline static int32_t get_offset_of_pattern_0() { return static_cast<int32_t>(offsetof(Regex_t90F443D398F44965EA241A652ED75DF5BA072A1F, ___pattern_0)); }
inline String_t* get_pattern_0() const { return ___pattern_0; }
inline String_t** get_address_of_pattern_0() { return &___pattern_0; }
inline void set_pattern_0(String_t* value)
{
___pattern_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___pattern_0), (void*)value);
}
inline static int32_t get_offset_of_factory_1() { return static_cast<int32_t>(offsetof(Regex_t90F443D398F44965EA241A652ED75DF5BA072A1F, ___factory_1)); }
inline RegexRunnerFactory_tA425EC5DC77FC0AAD86EB116E5483E94679CAA96 * get_factory_1() const { return ___factory_1; }
inline RegexRunnerFactory_tA425EC5DC77FC0AAD86EB116E5483E94679CAA96 ** get_address_of_factory_1() { return &___factory_1; }
inline void set_factory_1(RegexRunnerFactory_tA425EC5DC77FC0AAD86EB116E5483E94679CAA96 * value)
{
___factory_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___factory_1), (void*)value);
}
inline static int32_t get_offset_of_roptions_2() { return static_cast<int32_t>(offsetof(Regex_t90F443D398F44965EA241A652ED75DF5BA072A1F, ___roptions_2)); }
inline int32_t get_roptions_2() const { return ___roptions_2; }
inline int32_t* get_address_of_roptions_2() { return &___roptions_2; }
inline void set_roptions_2(int32_t value)
{
___roptions_2 = value;
}
inline static int32_t get_offset_of_internalMatchTimeout_5() { return static_cast<int32_t>(offsetof(Regex_t90F443D398F44965EA241A652ED75DF5BA072A1F, ___internalMatchTimeout_5)); }
inline TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 get_internalMatchTimeout_5() const { return ___internalMatchTimeout_5; }
inline TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 * get_address_of_internalMatchTimeout_5() { return &___internalMatchTimeout_5; }
inline void set_internalMatchTimeout_5(TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 value)
{
___internalMatchTimeout_5 = value;
}
inline static int32_t get_offset_of_caps_9() { return static_cast<int32_t>(offsetof(Regex_t90F443D398F44965EA241A652ED75DF5BA072A1F, ___caps_9)); }
inline Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * get_caps_9() const { return ___caps_9; }
inline Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC ** get_address_of_caps_9() { return &___caps_9; }
inline void set_caps_9(Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * value)
{
___caps_9 = value;
Il2CppCodeGenWriteBarrier((void**)(&___caps_9), (void*)value);
}
inline static int32_t get_offset_of_capnames_10() { return static_cast<int32_t>(offsetof(Regex_t90F443D398F44965EA241A652ED75DF5BA072A1F, ___capnames_10)); }
inline Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * get_capnames_10() const { return ___capnames_10; }
inline Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC ** get_address_of_capnames_10() { return &___capnames_10; }
inline void set_capnames_10(Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * value)
{
___capnames_10 = value;
Il2CppCodeGenWriteBarrier((void**)(&___capnames_10), (void*)value);
}
inline static int32_t get_offset_of_capslist_11() { return static_cast<int32_t>(offsetof(Regex_t90F443D398F44965EA241A652ED75DF5BA072A1F, ___capslist_11)); }
inline StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* get_capslist_11() const { return ___capslist_11; }
inline StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A** get_address_of_capslist_11() { return &___capslist_11; }
inline void set_capslist_11(StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* value)
{
___capslist_11 = value;
Il2CppCodeGenWriteBarrier((void**)(&___capslist_11), (void*)value);
}
inline static int32_t get_offset_of_capsize_12() { return static_cast<int32_t>(offsetof(Regex_t90F443D398F44965EA241A652ED75DF5BA072A1F, ___capsize_12)); }
inline int32_t get_capsize_12() const { return ___capsize_12; }
inline int32_t* get_address_of_capsize_12() { return &___capsize_12; }
inline void set_capsize_12(int32_t value)
{
___capsize_12 = value;
}
inline static int32_t get_offset_of_runnerref_13() { return static_cast<int32_t>(offsetof(Regex_t90F443D398F44965EA241A652ED75DF5BA072A1F, ___runnerref_13)); }
inline ExclusiveReference_t7F4A5D2416EA34710F520BAD225E61BC1E98D1D8 * get_runnerref_13() const { return ___runnerref_13; }
inline ExclusiveReference_t7F4A5D2416EA34710F520BAD225E61BC1E98D1D8 ** get_address_of_runnerref_13() { return &___runnerref_13; }
inline void set_runnerref_13(ExclusiveReference_t7F4A5D2416EA34710F520BAD225E61BC1E98D1D8 * value)
{
___runnerref_13 = value;
Il2CppCodeGenWriteBarrier((void**)(&___runnerref_13), (void*)value);
}
inline static int32_t get_offset_of_replref_14() { return static_cast<int32_t>(offsetof(Regex_t90F443D398F44965EA241A652ED75DF5BA072A1F, ___replref_14)); }
inline SharedReference_t74AB40C102A76A7523C72269A49D2C8FBDD83926 * get_replref_14() const { return ___replref_14; }
inline SharedReference_t74AB40C102A76A7523C72269A49D2C8FBDD83926 ** get_address_of_replref_14() { return &___replref_14; }
inline void set_replref_14(SharedReference_t74AB40C102A76A7523C72269A49D2C8FBDD83926 * value)
{
___replref_14 = value;
Il2CppCodeGenWriteBarrier((void**)(&___replref_14), (void*)value);
}
inline static int32_t get_offset_of_code_15() { return static_cast<int32_t>(offsetof(Regex_t90F443D398F44965EA241A652ED75DF5BA072A1F, ___code_15)); }
inline RegexCode_tF1653432E8EEDED5AB9517D09CA84B5FAA3CC0D5 * get_code_15() const { return ___code_15; }
inline RegexCode_tF1653432E8EEDED5AB9517D09CA84B5FAA3CC0D5 ** get_address_of_code_15() { return &___code_15; }
inline void set_code_15(RegexCode_tF1653432E8EEDED5AB9517D09CA84B5FAA3CC0D5 * value)
{
___code_15 = value;
Il2CppCodeGenWriteBarrier((void**)(&___code_15), (void*)value);
}
inline static int32_t get_offset_of_refsInitialized_16() { return static_cast<int32_t>(offsetof(Regex_t90F443D398F44965EA241A652ED75DF5BA072A1F, ___refsInitialized_16)); }
inline bool get_refsInitialized_16() const { return ___refsInitialized_16; }
inline bool* get_address_of_refsInitialized_16() { return &___refsInitialized_16; }
inline void set_refsInitialized_16(bool value)
{
___refsInitialized_16 = value;
}
};
struct Regex_t90F443D398F44965EA241A652ED75DF5BA072A1F_StaticFields
{
public:
// System.TimeSpan System.Text.RegularExpressions.Regex::MaximumMatchTimeout
TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 ___MaximumMatchTimeout_3;
// System.TimeSpan System.Text.RegularExpressions.Regex::InfiniteMatchTimeout
TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 ___InfiniteMatchTimeout_4;
// System.TimeSpan System.Text.RegularExpressions.Regex::FallbackDefaultMatchTimeout
TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 ___FallbackDefaultMatchTimeout_7;
// System.TimeSpan System.Text.RegularExpressions.Regex::DefaultMatchTimeout
TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 ___DefaultMatchTimeout_8;
// System.Collections.Generic.LinkedList`1<System.Text.RegularExpressions.CachedCodeEntry> System.Text.RegularExpressions.Regex::livecode
LinkedList_1_t0AD3FC1D19E68F4B148AFF908DC3719C9B117D92 * ___livecode_17;
// System.Int32 System.Text.RegularExpressions.Regex::cacheSize
int32_t ___cacheSize_18;
public:
inline static int32_t get_offset_of_MaximumMatchTimeout_3() { return static_cast<int32_t>(offsetof(Regex_t90F443D398F44965EA241A652ED75DF5BA072A1F_StaticFields, ___MaximumMatchTimeout_3)); }
inline TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 get_MaximumMatchTimeout_3() const { return ___MaximumMatchTimeout_3; }
inline TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 * get_address_of_MaximumMatchTimeout_3() { return &___MaximumMatchTimeout_3; }
inline void set_MaximumMatchTimeout_3(TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 value)
{
___MaximumMatchTimeout_3 = value;
}
inline static int32_t get_offset_of_InfiniteMatchTimeout_4() { return static_cast<int32_t>(offsetof(Regex_t90F443D398F44965EA241A652ED75DF5BA072A1F_StaticFields, ___InfiniteMatchTimeout_4)); }
inline TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 get_InfiniteMatchTimeout_4() const { return ___InfiniteMatchTimeout_4; }
inline TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 * get_address_of_InfiniteMatchTimeout_4() { return &___InfiniteMatchTimeout_4; }
inline void set_InfiniteMatchTimeout_4(TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 value)
{
___InfiniteMatchTimeout_4 = value;
}
inline static int32_t get_offset_of_FallbackDefaultMatchTimeout_7() { return static_cast<int32_t>(offsetof(Regex_t90F443D398F44965EA241A652ED75DF5BA072A1F_StaticFields, ___FallbackDefaultMatchTimeout_7)); }
inline TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 get_FallbackDefaultMatchTimeout_7() const { return ___FallbackDefaultMatchTimeout_7; }
inline TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 * get_address_of_FallbackDefaultMatchTimeout_7() { return &___FallbackDefaultMatchTimeout_7; }
inline void set_FallbackDefaultMatchTimeout_7(TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 value)
{
___FallbackDefaultMatchTimeout_7 = value;
}
inline static int32_t get_offset_of_DefaultMatchTimeout_8() { return static_cast<int32_t>(offsetof(Regex_t90F443D398F44965EA241A652ED75DF5BA072A1F_StaticFields, ___DefaultMatchTimeout_8)); }
inline TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 get_DefaultMatchTimeout_8() const { return ___DefaultMatchTimeout_8; }
inline TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 * get_address_of_DefaultMatchTimeout_8() { return &___DefaultMatchTimeout_8; }
inline void set_DefaultMatchTimeout_8(TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 value)
{
___DefaultMatchTimeout_8 = value;
}
inline static int32_t get_offset_of_livecode_17() { return static_cast<int32_t>(offsetof(Regex_t90F443D398F44965EA241A652ED75DF5BA072A1F_StaticFields, ___livecode_17)); }
inline LinkedList_1_t0AD3FC1D19E68F4B148AFF908DC3719C9B117D92 * get_livecode_17() const { return ___livecode_17; }
inline LinkedList_1_t0AD3FC1D19E68F4B148AFF908DC3719C9B117D92 ** get_address_of_livecode_17() { return &___livecode_17; }
inline void set_livecode_17(LinkedList_1_t0AD3FC1D19E68F4B148AFF908DC3719C9B117D92 * value)
{
___livecode_17 = value;
Il2CppCodeGenWriteBarrier((void**)(&___livecode_17), (void*)value);
}
inline static int32_t get_offset_of_cacheSize_18() { return static_cast<int32_t>(offsetof(Regex_t90F443D398F44965EA241A652ED75DF5BA072A1F_StaticFields, ___cacheSize_18)); }
inline int32_t get_cacheSize_18() const { return ___cacheSize_18; }
inline int32_t* get_address_of_cacheSize_18() { return &___cacheSize_18; }
inline void set_cacheSize_18(int32_t value)
{
___cacheSize_18 = value;
}
};
// UnityEngine.ScriptableObject
struct ScriptableObject_t4361E08CEBF052C650D3666C7CEC37EB31DE116A : public Object_tF2F3778131EFF286AF62B7B013A170F95A91571A
{
public:
public:
};
// Native definition for P/Invoke marshalling of UnityEngine.ScriptableObject
struct ScriptableObject_t4361E08CEBF052C650D3666C7CEC37EB31DE116A_marshaled_pinvoke : public Object_tF2F3778131EFF286AF62B7B013A170F95A91571A_marshaled_pinvoke
{
};
// Native definition for COM marshalling of UnityEngine.ScriptableObject
struct ScriptableObject_t4361E08CEBF052C650D3666C7CEC37EB31DE116A_marshaled_com : public Object_tF2F3778131EFF286AF62B7B013A170F95A91571A_marshaled_com
{
};
// UnityEngine.Shader
struct Shader_tB2355DC4F3CAF20B2F1AB5AABBF37C3555FFBC39 : public Object_tF2F3778131EFF286AF62B7B013A170F95A91571A
{
public:
public:
};
// System.SystemException
struct SystemException_tC551B4D6EE3772B5F32C71EE8C719F4B43ECCC62 : public Exception_t
{
public:
public:
};
// UnityEngine.Texture
struct Texture_t9FE0218A1EEDF266E8C85879FE123265CACC95AE : public Object_tF2F3778131EFF286AF62B7B013A170F95A91571A
{
public:
public:
};
struct Texture_t9FE0218A1EEDF266E8C85879FE123265CACC95AE_StaticFields
{
public:
// System.Int32 UnityEngine.Texture::GenerateAllMips
int32_t ___GenerateAllMips_4;
public:
inline static int32_t get_offset_of_GenerateAllMips_4() { return static_cast<int32_t>(offsetof(Texture_t9FE0218A1EEDF266E8C85879FE123265CACC95AE_StaticFields, ___GenerateAllMips_4)); }
inline int32_t get_GenerateAllMips_4() const { return ___GenerateAllMips_4; }
inline int32_t* get_address_of_GenerateAllMips_4() { return &___GenerateAllMips_4; }
inline void set_GenerateAllMips_4(int32_t value)
{
___GenerateAllMips_4 = value;
}
};
// System.Type
struct Type_t : public MemberInfo_t
{
public:
// System.RuntimeTypeHandle System.Type::_impl
RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 ____impl_9;
public:
inline static int32_t get_offset_of__impl_9() { return static_cast<int32_t>(offsetof(Type_t, ____impl_9)); }
inline RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 get__impl_9() const { return ____impl_9; }
inline RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 * get_address_of__impl_9() { return &____impl_9; }
inline void set__impl_9(RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 value)
{
____impl_9 = value;
}
};
struct Type_t_StaticFields
{
public:
// System.Reflection.MemberFilter System.Type::FilterAttribute
MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81 * ___FilterAttribute_0;
// System.Reflection.MemberFilter System.Type::FilterName
MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81 * ___FilterName_1;
// System.Reflection.MemberFilter System.Type::FilterNameIgnoreCase
MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81 * ___FilterNameIgnoreCase_2;
// System.Object System.Type::Missing
RuntimeObject * ___Missing_3;
// System.Char System.Type::Delimiter
Il2CppChar ___Delimiter_4;
// System.Type[] System.Type::EmptyTypes
TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755* ___EmptyTypes_5;
// System.Reflection.Binder System.Type::defaultBinder
Binder_t2BEE27FD84737D1E79BC47FD67F6D3DD2F2DDA30 * ___defaultBinder_6;
public:
inline static int32_t get_offset_of_FilterAttribute_0() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___FilterAttribute_0)); }
inline MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81 * get_FilterAttribute_0() const { return ___FilterAttribute_0; }
inline MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81 ** get_address_of_FilterAttribute_0() { return &___FilterAttribute_0; }
inline void set_FilterAttribute_0(MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81 * value)
{
___FilterAttribute_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___FilterAttribute_0), (void*)value);
}
inline static int32_t get_offset_of_FilterName_1() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___FilterName_1)); }
inline MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81 * get_FilterName_1() const { return ___FilterName_1; }
inline MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81 ** get_address_of_FilterName_1() { return &___FilterName_1; }
inline void set_FilterName_1(MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81 * value)
{
___FilterName_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___FilterName_1), (void*)value);
}
inline static int32_t get_offset_of_FilterNameIgnoreCase_2() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___FilterNameIgnoreCase_2)); }
inline MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81 * get_FilterNameIgnoreCase_2() const { return ___FilterNameIgnoreCase_2; }
inline MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81 ** get_address_of_FilterNameIgnoreCase_2() { return &___FilterNameIgnoreCase_2; }
inline void set_FilterNameIgnoreCase_2(MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81 * value)
{
___FilterNameIgnoreCase_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___FilterNameIgnoreCase_2), (void*)value);
}
inline static int32_t get_offset_of_Missing_3() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___Missing_3)); }
inline RuntimeObject * get_Missing_3() const { return ___Missing_3; }
inline RuntimeObject ** get_address_of_Missing_3() { return &___Missing_3; }
inline void set_Missing_3(RuntimeObject * value)
{
___Missing_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Missing_3), (void*)value);
}
inline static int32_t get_offset_of_Delimiter_4() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___Delimiter_4)); }
inline Il2CppChar get_Delimiter_4() const { return ___Delimiter_4; }
inline Il2CppChar* get_address_of_Delimiter_4() { return &___Delimiter_4; }
inline void set_Delimiter_4(Il2CppChar value)
{
___Delimiter_4 = value;
}
inline static int32_t get_offset_of_EmptyTypes_5() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___EmptyTypes_5)); }
inline TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755* get_EmptyTypes_5() const { return ___EmptyTypes_5; }
inline TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755** get_address_of_EmptyTypes_5() { return &___EmptyTypes_5; }
inline void set_EmptyTypes_5(TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755* value)
{
___EmptyTypes_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___EmptyTypes_5), (void*)value);
}
inline static int32_t get_offset_of_defaultBinder_6() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___defaultBinder_6)); }
inline Binder_t2BEE27FD84737D1E79BC47FD67F6D3DD2F2DDA30 * get_defaultBinder_6() const { return ___defaultBinder_6; }
inline Binder_t2BEE27FD84737D1E79BC47FD67F6D3DD2F2DDA30 ** get_address_of_defaultBinder_6() { return &___defaultBinder_6; }
inline void set_defaultBinder_6(Binder_t2BEE27FD84737D1E79BC47FD67F6D3DD2F2DDA30 * value)
{
___defaultBinder_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___defaultBinder_6), (void*)value);
}
};
// UnityEngine.XR.ARSubsystems.XRAnchor
struct XRAnchor_t8E92DD70D9FA9B3ED2799305E05228184932099C
{
public:
// UnityEngine.XR.ARSubsystems.TrackableId UnityEngine.XR.ARSubsystems.XRAnchor::m_Id
TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B ___m_Id_1;
// UnityEngine.Pose UnityEngine.XR.ARSubsystems.XRAnchor::m_Pose
Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A ___m_Pose_2;
// UnityEngine.XR.ARSubsystems.TrackingState UnityEngine.XR.ARSubsystems.XRAnchor::m_TrackingState
int32_t ___m_TrackingState_3;
// System.IntPtr UnityEngine.XR.ARSubsystems.XRAnchor::m_NativePtr
intptr_t ___m_NativePtr_4;
// System.Guid UnityEngine.XR.ARSubsystems.XRAnchor::m_SessionId
Guid_t ___m_SessionId_5;
public:
inline static int32_t get_offset_of_m_Id_1() { return static_cast<int32_t>(offsetof(XRAnchor_t8E92DD70D9FA9B3ED2799305E05228184932099C, ___m_Id_1)); }
inline TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B get_m_Id_1() const { return ___m_Id_1; }
inline TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B * get_address_of_m_Id_1() { return &___m_Id_1; }
inline void set_m_Id_1(TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B value)
{
___m_Id_1 = value;
}
inline static int32_t get_offset_of_m_Pose_2() { return static_cast<int32_t>(offsetof(XRAnchor_t8E92DD70D9FA9B3ED2799305E05228184932099C, ___m_Pose_2)); }
inline Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A get_m_Pose_2() const { return ___m_Pose_2; }
inline Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A * get_address_of_m_Pose_2() { return &___m_Pose_2; }
inline void set_m_Pose_2(Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A value)
{
___m_Pose_2 = value;
}
inline static int32_t get_offset_of_m_TrackingState_3() { return static_cast<int32_t>(offsetof(XRAnchor_t8E92DD70D9FA9B3ED2799305E05228184932099C, ___m_TrackingState_3)); }
inline int32_t get_m_TrackingState_3() const { return ___m_TrackingState_3; }
inline int32_t* get_address_of_m_TrackingState_3() { return &___m_TrackingState_3; }
inline void set_m_TrackingState_3(int32_t value)
{
___m_TrackingState_3 = value;
}
inline static int32_t get_offset_of_m_NativePtr_4() { return static_cast<int32_t>(offsetof(XRAnchor_t8E92DD70D9FA9B3ED2799305E05228184932099C, ___m_NativePtr_4)); }
inline intptr_t get_m_NativePtr_4() const { return ___m_NativePtr_4; }
inline intptr_t* get_address_of_m_NativePtr_4() { return &___m_NativePtr_4; }
inline void set_m_NativePtr_4(intptr_t value)
{
___m_NativePtr_4 = value;
}
inline static int32_t get_offset_of_m_SessionId_5() { return static_cast<int32_t>(offsetof(XRAnchor_t8E92DD70D9FA9B3ED2799305E05228184932099C, ___m_SessionId_5)); }
inline Guid_t get_m_SessionId_5() const { return ___m_SessionId_5; }
inline Guid_t * get_address_of_m_SessionId_5() { return &___m_SessionId_5; }
inline void set_m_SessionId_5(Guid_t value)
{
___m_SessionId_5 = value;
}
};
struct XRAnchor_t8E92DD70D9FA9B3ED2799305E05228184932099C_StaticFields
{
public:
// UnityEngine.XR.ARSubsystems.XRAnchor UnityEngine.XR.ARSubsystems.XRAnchor::s_Default
XRAnchor_t8E92DD70D9FA9B3ED2799305E05228184932099C ___s_Default_0;
public:
inline static int32_t get_offset_of_s_Default_0() { return static_cast<int32_t>(offsetof(XRAnchor_t8E92DD70D9FA9B3ED2799305E05228184932099C_StaticFields, ___s_Default_0)); }
inline XRAnchor_t8E92DD70D9FA9B3ED2799305E05228184932099C get_s_Default_0() const { return ___s_Default_0; }
inline XRAnchor_t8E92DD70D9FA9B3ED2799305E05228184932099C * get_address_of_s_Default_0() { return &___s_Default_0; }
inline void set_s_Default_0(XRAnchor_t8E92DD70D9FA9B3ED2799305E05228184932099C value)
{
___s_Default_0 = value;
}
};
// UnityEngine.XR.ARSubsystems.XRAnchorSubsystem
struct XRAnchorSubsystem_t625D9B76C590AB601CF85525DB9396BE84425AA7 : public TrackingSubsystem_4_t5C7E2B8B7A9943DF8B9FF5B46FB5AFA71E9826F1
{
public:
public:
};
// UnityEngine.XR.ARSubsystems.XRCameraParams
struct XRCameraParams_t9FCECBDAEFCC1084042B75393990959B28B64B18
{
public:
// System.Single UnityEngine.XR.ARSubsystems.XRCameraParams::m_ZNear
float ___m_ZNear_0;
// System.Single UnityEngine.XR.ARSubsystems.XRCameraParams::m_ZFar
float ___m_ZFar_1;
// System.Single UnityEngine.XR.ARSubsystems.XRCameraParams::m_ScreenWidth
float ___m_ScreenWidth_2;
// System.Single UnityEngine.XR.ARSubsystems.XRCameraParams::m_ScreenHeight
float ___m_ScreenHeight_3;
// UnityEngine.ScreenOrientation UnityEngine.XR.ARSubsystems.XRCameraParams::m_ScreenOrientation
int32_t ___m_ScreenOrientation_4;
public:
inline static int32_t get_offset_of_m_ZNear_0() { return static_cast<int32_t>(offsetof(XRCameraParams_t9FCECBDAEFCC1084042B75393990959B28B64B18, ___m_ZNear_0)); }
inline float get_m_ZNear_0() const { return ___m_ZNear_0; }
inline float* get_address_of_m_ZNear_0() { return &___m_ZNear_0; }
inline void set_m_ZNear_0(float value)
{
___m_ZNear_0 = value;
}
inline static int32_t get_offset_of_m_ZFar_1() { return static_cast<int32_t>(offsetof(XRCameraParams_t9FCECBDAEFCC1084042B75393990959B28B64B18, ___m_ZFar_1)); }
inline float get_m_ZFar_1() const { return ___m_ZFar_1; }
inline float* get_address_of_m_ZFar_1() { return &___m_ZFar_1; }
inline void set_m_ZFar_1(float value)
{
___m_ZFar_1 = value;
}
inline static int32_t get_offset_of_m_ScreenWidth_2() { return static_cast<int32_t>(offsetof(XRCameraParams_t9FCECBDAEFCC1084042B75393990959B28B64B18, ___m_ScreenWidth_2)); }
inline float get_m_ScreenWidth_2() const { return ___m_ScreenWidth_2; }
inline float* get_address_of_m_ScreenWidth_2() { return &___m_ScreenWidth_2; }
inline void set_m_ScreenWidth_2(float value)
{
___m_ScreenWidth_2 = value;
}
inline static int32_t get_offset_of_m_ScreenHeight_3() { return static_cast<int32_t>(offsetof(XRCameraParams_t9FCECBDAEFCC1084042B75393990959B28B64B18, ___m_ScreenHeight_3)); }
inline float get_m_ScreenHeight_3() const { return ___m_ScreenHeight_3; }
inline float* get_address_of_m_ScreenHeight_3() { return &___m_ScreenHeight_3; }
inline void set_m_ScreenHeight_3(float value)
{
___m_ScreenHeight_3 = value;
}
inline static int32_t get_offset_of_m_ScreenOrientation_4() { return static_cast<int32_t>(offsetof(XRCameraParams_t9FCECBDAEFCC1084042B75393990959B28B64B18, ___m_ScreenOrientation_4)); }
inline int32_t get_m_ScreenOrientation_4() const { return ___m_ScreenOrientation_4; }
inline int32_t* get_address_of_m_ScreenOrientation_4() { return &___m_ScreenOrientation_4; }
inline void set_m_ScreenOrientation_4(int32_t value)
{
___m_ScreenOrientation_4 = value;
}
};
// UnityEngine.XR.ARSubsystems.XRCpuImage
struct XRCpuImage_tA48C0687D95D3D63D1101E4E08EFCF0ABB2431CE
{
public:
// System.Int32 UnityEngine.XR.ARSubsystems.XRCpuImage::m_NativeHandle
int32_t ___m_NativeHandle_0;
// UnityEngine.XR.ARSubsystems.XRCpuImage/Api UnityEngine.XR.ARSubsystems.XRCpuImage::m_Api
Api_t7C92F00C6416A2C636A44AAC833C3773C567DC3E * ___m_Api_1;
// UnityEngine.Vector2Int UnityEngine.XR.ARSubsystems.XRCpuImage::<dimensions>k__BackingField
Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9 ___U3CdimensionsU3Ek__BackingField_3;
// System.Int32 UnityEngine.XR.ARSubsystems.XRCpuImage::<planeCount>k__BackingField
int32_t ___U3CplaneCountU3Ek__BackingField_4;
// UnityEngine.XR.ARSubsystems.XRCpuImage/Format UnityEngine.XR.ARSubsystems.XRCpuImage::<format>k__BackingField
int32_t ___U3CformatU3Ek__BackingField_5;
// System.Double UnityEngine.XR.ARSubsystems.XRCpuImage::<timestamp>k__BackingField
double ___U3CtimestampU3Ek__BackingField_6;
public:
inline static int32_t get_offset_of_m_NativeHandle_0() { return static_cast<int32_t>(offsetof(XRCpuImage_tA48C0687D95D3D63D1101E4E08EFCF0ABB2431CE, ___m_NativeHandle_0)); }
inline int32_t get_m_NativeHandle_0() const { return ___m_NativeHandle_0; }
inline int32_t* get_address_of_m_NativeHandle_0() { return &___m_NativeHandle_0; }
inline void set_m_NativeHandle_0(int32_t value)
{
___m_NativeHandle_0 = value;
}
inline static int32_t get_offset_of_m_Api_1() { return static_cast<int32_t>(offsetof(XRCpuImage_tA48C0687D95D3D63D1101E4E08EFCF0ABB2431CE, ___m_Api_1)); }
inline Api_t7C92F00C6416A2C636A44AAC833C3773C567DC3E * get_m_Api_1() const { return ___m_Api_1; }
inline Api_t7C92F00C6416A2C636A44AAC833C3773C567DC3E ** get_address_of_m_Api_1() { return &___m_Api_1; }
inline void set_m_Api_1(Api_t7C92F00C6416A2C636A44AAC833C3773C567DC3E * value)
{
___m_Api_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Api_1), (void*)value);
}
inline static int32_t get_offset_of_U3CdimensionsU3Ek__BackingField_3() { return static_cast<int32_t>(offsetof(XRCpuImage_tA48C0687D95D3D63D1101E4E08EFCF0ABB2431CE, ___U3CdimensionsU3Ek__BackingField_3)); }
inline Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9 get_U3CdimensionsU3Ek__BackingField_3() const { return ___U3CdimensionsU3Ek__BackingField_3; }
inline Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9 * get_address_of_U3CdimensionsU3Ek__BackingField_3() { return &___U3CdimensionsU3Ek__BackingField_3; }
inline void set_U3CdimensionsU3Ek__BackingField_3(Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9 value)
{
___U3CdimensionsU3Ek__BackingField_3 = value;
}
inline static int32_t get_offset_of_U3CplaneCountU3Ek__BackingField_4() { return static_cast<int32_t>(offsetof(XRCpuImage_tA48C0687D95D3D63D1101E4E08EFCF0ABB2431CE, ___U3CplaneCountU3Ek__BackingField_4)); }
inline int32_t get_U3CplaneCountU3Ek__BackingField_4() const { return ___U3CplaneCountU3Ek__BackingField_4; }
inline int32_t* get_address_of_U3CplaneCountU3Ek__BackingField_4() { return &___U3CplaneCountU3Ek__BackingField_4; }
inline void set_U3CplaneCountU3Ek__BackingField_4(int32_t value)
{
___U3CplaneCountU3Ek__BackingField_4 = value;
}
inline static int32_t get_offset_of_U3CformatU3Ek__BackingField_5() { return static_cast<int32_t>(offsetof(XRCpuImage_tA48C0687D95D3D63D1101E4E08EFCF0ABB2431CE, ___U3CformatU3Ek__BackingField_5)); }
inline int32_t get_U3CformatU3Ek__BackingField_5() const { return ___U3CformatU3Ek__BackingField_5; }
inline int32_t* get_address_of_U3CformatU3Ek__BackingField_5() { return &___U3CformatU3Ek__BackingField_5; }
inline void set_U3CformatU3Ek__BackingField_5(int32_t value)
{
___U3CformatU3Ek__BackingField_5 = value;
}
inline static int32_t get_offset_of_U3CtimestampU3Ek__BackingField_6() { return static_cast<int32_t>(offsetof(XRCpuImage_tA48C0687D95D3D63D1101E4E08EFCF0ABB2431CE, ___U3CtimestampU3Ek__BackingField_6)); }
inline double get_U3CtimestampU3Ek__BackingField_6() const { return ___U3CtimestampU3Ek__BackingField_6; }
inline double* get_address_of_U3CtimestampU3Ek__BackingField_6() { return &___U3CtimestampU3Ek__BackingField_6; }
inline void set_U3CtimestampU3Ek__BackingField_6(double value)
{
___U3CtimestampU3Ek__BackingField_6 = value;
}
};
struct XRCpuImage_tA48C0687D95D3D63D1101E4E08EFCF0ABB2431CE_StaticFields
{
public:
// UnityEngine.XR.ARSubsystems.XRCpuImage/Api/OnImageRequestCompleteDelegate UnityEngine.XR.ARSubsystems.XRCpuImage::s_OnAsyncConversionCompleteDelegate
OnImageRequestCompleteDelegate_t118FB01E93241BFD5BCA5BEF2A6FD082ACAAB4DD * ___s_OnAsyncConversionCompleteDelegate_2;
public:
inline static int32_t get_offset_of_s_OnAsyncConversionCompleteDelegate_2() { return static_cast<int32_t>(offsetof(XRCpuImage_tA48C0687D95D3D63D1101E4E08EFCF0ABB2431CE_StaticFields, ___s_OnAsyncConversionCompleteDelegate_2)); }
inline OnImageRequestCompleteDelegate_t118FB01E93241BFD5BCA5BEF2A6FD082ACAAB4DD * get_s_OnAsyncConversionCompleteDelegate_2() const { return ___s_OnAsyncConversionCompleteDelegate_2; }
inline OnImageRequestCompleteDelegate_t118FB01E93241BFD5BCA5BEF2A6FD082ACAAB4DD ** get_address_of_s_OnAsyncConversionCompleteDelegate_2() { return &___s_OnAsyncConversionCompleteDelegate_2; }
inline void set_s_OnAsyncConversionCompleteDelegate_2(OnImageRequestCompleteDelegate_t118FB01E93241BFD5BCA5BEF2A6FD082ACAAB4DD * value)
{
___s_OnAsyncConversionCompleteDelegate_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_OnAsyncConversionCompleteDelegate_2), (void*)value);
}
};
// Native definition for P/Invoke marshalling of UnityEngine.XR.ARSubsystems.XRCpuImage
struct XRCpuImage_tA48C0687D95D3D63D1101E4E08EFCF0ABB2431CE_marshaled_pinvoke
{
int32_t ___m_NativeHandle_0;
Api_t7C92F00C6416A2C636A44AAC833C3773C567DC3E * ___m_Api_1;
Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9 ___U3CdimensionsU3Ek__BackingField_3;
int32_t ___U3CplaneCountU3Ek__BackingField_4;
int32_t ___U3CformatU3Ek__BackingField_5;
double ___U3CtimestampU3Ek__BackingField_6;
};
// Native definition for COM marshalling of UnityEngine.XR.ARSubsystems.XRCpuImage
struct XRCpuImage_tA48C0687D95D3D63D1101E4E08EFCF0ABB2431CE_marshaled_com
{
int32_t ___m_NativeHandle_0;
Api_t7C92F00C6416A2C636A44AAC833C3773C567DC3E * ___m_Api_1;
Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9 ___U3CdimensionsU3Ek__BackingField_3;
int32_t ___U3CplaneCountU3Ek__BackingField_4;
int32_t ___U3CformatU3Ek__BackingField_5;
double ___U3CtimestampU3Ek__BackingField_6;
};
// UnityEngine.XR.ARSubsystems.XRDepthSubsystem
struct XRDepthSubsystem_t808E21F0192095B08FA03AC535314FB5EF3B7E28 : public TrackingSubsystem_4_t52B43FDBB6E641E351193D790222EA1C68B2984E
{
public:
public:
};
// UnityEngine.XR.ARSubsystems.XREnvironmentProbeSubsystem
struct XREnvironmentProbeSubsystem_t0C60258F565400E7C5AF0E0B7FA933F2BCF83CB6 : public TrackingSubsystem_4_t3D5C3B3749ABE82CC258AD552288C51FAE67DA1A
{
public:
public:
};
// UnityEngine.XR.ARSubsystems.XRFace
struct XRFace_tA970995ECE26D43D1CBB9058ABEC72B76D2DA599
{
public:
// UnityEngine.XR.ARSubsystems.TrackableId UnityEngine.XR.ARSubsystems.XRFace::m_TrackableId
TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B ___m_TrackableId_0;
// UnityEngine.Pose UnityEngine.XR.ARSubsystems.XRFace::m_Pose
Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A ___m_Pose_1;
// UnityEngine.XR.ARSubsystems.TrackingState UnityEngine.XR.ARSubsystems.XRFace::m_TrackingState
int32_t ___m_TrackingState_2;
// System.IntPtr UnityEngine.XR.ARSubsystems.XRFace::m_NativePtr
intptr_t ___m_NativePtr_3;
// UnityEngine.Pose UnityEngine.XR.ARSubsystems.XRFace::m_LeftEyePose
Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A ___m_LeftEyePose_4;
// UnityEngine.Pose UnityEngine.XR.ARSubsystems.XRFace::m_RightEyePose
Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A ___m_RightEyePose_5;
// UnityEngine.Vector3 UnityEngine.XR.ARSubsystems.XRFace::m_FixationPoint
Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___m_FixationPoint_6;
public:
inline static int32_t get_offset_of_m_TrackableId_0() { return static_cast<int32_t>(offsetof(XRFace_tA970995ECE26D43D1CBB9058ABEC72B76D2DA599, ___m_TrackableId_0)); }
inline TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B get_m_TrackableId_0() const { return ___m_TrackableId_0; }
inline TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B * get_address_of_m_TrackableId_0() { return &___m_TrackableId_0; }
inline void set_m_TrackableId_0(TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B value)
{
___m_TrackableId_0 = value;
}
inline static int32_t get_offset_of_m_Pose_1() { return static_cast<int32_t>(offsetof(XRFace_tA970995ECE26D43D1CBB9058ABEC72B76D2DA599, ___m_Pose_1)); }
inline Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A get_m_Pose_1() const { return ___m_Pose_1; }
inline Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A * get_address_of_m_Pose_1() { return &___m_Pose_1; }
inline void set_m_Pose_1(Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A value)
{
___m_Pose_1 = value;
}
inline static int32_t get_offset_of_m_TrackingState_2() { return static_cast<int32_t>(offsetof(XRFace_tA970995ECE26D43D1CBB9058ABEC72B76D2DA599, ___m_TrackingState_2)); }
inline int32_t get_m_TrackingState_2() const { return ___m_TrackingState_2; }
inline int32_t* get_address_of_m_TrackingState_2() { return &___m_TrackingState_2; }
inline void set_m_TrackingState_2(int32_t value)
{
___m_TrackingState_2 = value;
}
inline static int32_t get_offset_of_m_NativePtr_3() { return static_cast<int32_t>(offsetof(XRFace_tA970995ECE26D43D1CBB9058ABEC72B76D2DA599, ___m_NativePtr_3)); }
inline intptr_t get_m_NativePtr_3() const { return ___m_NativePtr_3; }
inline intptr_t* get_address_of_m_NativePtr_3() { return &___m_NativePtr_3; }
inline void set_m_NativePtr_3(intptr_t value)
{
___m_NativePtr_3 = value;
}
inline static int32_t get_offset_of_m_LeftEyePose_4() { return static_cast<int32_t>(offsetof(XRFace_tA970995ECE26D43D1CBB9058ABEC72B76D2DA599, ___m_LeftEyePose_4)); }
inline Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A get_m_LeftEyePose_4() const { return ___m_LeftEyePose_4; }
inline Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A * get_address_of_m_LeftEyePose_4() { return &___m_LeftEyePose_4; }
inline void set_m_LeftEyePose_4(Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A value)
{
___m_LeftEyePose_4 = value;
}
inline static int32_t get_offset_of_m_RightEyePose_5() { return static_cast<int32_t>(offsetof(XRFace_tA970995ECE26D43D1CBB9058ABEC72B76D2DA599, ___m_RightEyePose_5)); }
inline Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A get_m_RightEyePose_5() const { return ___m_RightEyePose_5; }
inline Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A * get_address_of_m_RightEyePose_5() { return &___m_RightEyePose_5; }
inline void set_m_RightEyePose_5(Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A value)
{
___m_RightEyePose_5 = value;
}
inline static int32_t get_offset_of_m_FixationPoint_6() { return static_cast<int32_t>(offsetof(XRFace_tA970995ECE26D43D1CBB9058ABEC72B76D2DA599, ___m_FixationPoint_6)); }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_m_FixationPoint_6() const { return ___m_FixationPoint_6; }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_m_FixationPoint_6() { return &___m_FixationPoint_6; }
inline void set_m_FixationPoint_6(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value)
{
___m_FixationPoint_6 = value;
}
};
struct XRFace_tA970995ECE26D43D1CBB9058ABEC72B76D2DA599_StaticFields
{
public:
// UnityEngine.XR.ARSubsystems.XRFace UnityEngine.XR.ARSubsystems.XRFace::s_Default
XRFace_tA970995ECE26D43D1CBB9058ABEC72B76D2DA599 ___s_Default_7;
public:
inline static int32_t get_offset_of_s_Default_7() { return static_cast<int32_t>(offsetof(XRFace_tA970995ECE26D43D1CBB9058ABEC72B76D2DA599_StaticFields, ___s_Default_7)); }
inline XRFace_tA970995ECE26D43D1CBB9058ABEC72B76D2DA599 get_s_Default_7() const { return ___s_Default_7; }
inline XRFace_tA970995ECE26D43D1CBB9058ABEC72B76D2DA599 * get_address_of_s_Default_7() { return &___s_Default_7; }
inline void set_s_Default_7(XRFace_tA970995ECE26D43D1CBB9058ABEC72B76D2DA599 value)
{
___s_Default_7 = value;
}
};
// UnityEngine.XR.ARSubsystems.XRFaceSubsystem
struct XRFaceSubsystem_tBC42015E8BB4ED0A5428E01DBB7BE769A6B140FD : public TrackingSubsystem_4_tFC4495C6B04D616F71158509026269F004F79333
{
public:
public:
};
// UnityEngine.XR.ARSubsystems.XRHumanBody
struct XRHumanBody_t1AA9DC3BEBCF86A64BE2B83452AC5704AD08C13B
{
public:
// UnityEngine.XR.ARSubsystems.TrackableId UnityEngine.XR.ARSubsystems.XRHumanBody::m_TrackableId
TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B ___m_TrackableId_0;
// UnityEngine.Pose UnityEngine.XR.ARSubsystems.XRHumanBody::m_Pose
Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A ___m_Pose_1;
// System.Single UnityEngine.XR.ARSubsystems.XRHumanBody::m_EstimatedHeightScaleFactor
float ___m_EstimatedHeightScaleFactor_2;
// UnityEngine.XR.ARSubsystems.TrackingState UnityEngine.XR.ARSubsystems.XRHumanBody::m_TrackingState
int32_t ___m_TrackingState_3;
// System.IntPtr UnityEngine.XR.ARSubsystems.XRHumanBody::m_NativePtr
intptr_t ___m_NativePtr_4;
public:
inline static int32_t get_offset_of_m_TrackableId_0() { return static_cast<int32_t>(offsetof(XRHumanBody_t1AA9DC3BEBCF86A64BE2B83452AC5704AD08C13B, ___m_TrackableId_0)); }
inline TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B get_m_TrackableId_0() const { return ___m_TrackableId_0; }
inline TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B * get_address_of_m_TrackableId_0() { return &___m_TrackableId_0; }
inline void set_m_TrackableId_0(TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B value)
{
___m_TrackableId_0 = value;
}
inline static int32_t get_offset_of_m_Pose_1() { return static_cast<int32_t>(offsetof(XRHumanBody_t1AA9DC3BEBCF86A64BE2B83452AC5704AD08C13B, ___m_Pose_1)); }
inline Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A get_m_Pose_1() const { return ___m_Pose_1; }
inline Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A * get_address_of_m_Pose_1() { return &___m_Pose_1; }
inline void set_m_Pose_1(Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A value)
{
___m_Pose_1 = value;
}
inline static int32_t get_offset_of_m_EstimatedHeightScaleFactor_2() { return static_cast<int32_t>(offsetof(XRHumanBody_t1AA9DC3BEBCF86A64BE2B83452AC5704AD08C13B, ___m_EstimatedHeightScaleFactor_2)); }
inline float get_m_EstimatedHeightScaleFactor_2() const { return ___m_EstimatedHeightScaleFactor_2; }
inline float* get_address_of_m_EstimatedHeightScaleFactor_2() { return &___m_EstimatedHeightScaleFactor_2; }
inline void set_m_EstimatedHeightScaleFactor_2(float value)
{
___m_EstimatedHeightScaleFactor_2 = value;
}
inline static int32_t get_offset_of_m_TrackingState_3() { return static_cast<int32_t>(offsetof(XRHumanBody_t1AA9DC3BEBCF86A64BE2B83452AC5704AD08C13B, ___m_TrackingState_3)); }
inline int32_t get_m_TrackingState_3() const { return ___m_TrackingState_3; }
inline int32_t* get_address_of_m_TrackingState_3() { return &___m_TrackingState_3; }
inline void set_m_TrackingState_3(int32_t value)
{
___m_TrackingState_3 = value;
}
inline static int32_t get_offset_of_m_NativePtr_4() { return static_cast<int32_t>(offsetof(XRHumanBody_t1AA9DC3BEBCF86A64BE2B83452AC5704AD08C13B, ___m_NativePtr_4)); }
inline intptr_t get_m_NativePtr_4() const { return ___m_NativePtr_4; }
inline intptr_t* get_address_of_m_NativePtr_4() { return &___m_NativePtr_4; }
inline void set_m_NativePtr_4(intptr_t value)
{
___m_NativePtr_4 = value;
}
};
struct XRHumanBody_t1AA9DC3BEBCF86A64BE2B83452AC5704AD08C13B_StaticFields
{
public:
// UnityEngine.XR.ARSubsystems.XRHumanBody UnityEngine.XR.ARSubsystems.XRHumanBody::s_Default
XRHumanBody_t1AA9DC3BEBCF86A64BE2B83452AC5704AD08C13B ___s_Default_5;
public:
inline static int32_t get_offset_of_s_Default_5() { return static_cast<int32_t>(offsetof(XRHumanBody_t1AA9DC3BEBCF86A64BE2B83452AC5704AD08C13B_StaticFields, ___s_Default_5)); }
inline XRHumanBody_t1AA9DC3BEBCF86A64BE2B83452AC5704AD08C13B get_s_Default_5() const { return ___s_Default_5; }
inline XRHumanBody_t1AA9DC3BEBCF86A64BE2B83452AC5704AD08C13B * get_address_of_s_Default_5() { return &___s_Default_5; }
inline void set_s_Default_5(XRHumanBody_t1AA9DC3BEBCF86A64BE2B83452AC5704AD08C13B value)
{
___s_Default_5 = value;
}
};
// UnityEngine.XR.ARSubsystems.XRHumanBodyJoint
struct XRHumanBodyJoint_t80D5022A816E4F24C92A9EABD645794FC0B5E2E4
{
public:
// System.Int32 UnityEngine.XR.ARSubsystems.XRHumanBodyJoint::m_Index
int32_t ___m_Index_0;
// System.Int32 UnityEngine.XR.ARSubsystems.XRHumanBodyJoint::m_ParentIndex
int32_t ___m_ParentIndex_1;
// UnityEngine.Vector3 UnityEngine.XR.ARSubsystems.XRHumanBodyJoint::m_LocalScale
Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___m_LocalScale_2;
// UnityEngine.Pose UnityEngine.XR.ARSubsystems.XRHumanBodyJoint::m_LocalPose
Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A ___m_LocalPose_3;
// UnityEngine.Vector3 UnityEngine.XR.ARSubsystems.XRHumanBodyJoint::m_AnchorScale
Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___m_AnchorScale_4;
// UnityEngine.Pose UnityEngine.XR.ARSubsystems.XRHumanBodyJoint::m_AnchorPose
Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A ___m_AnchorPose_5;
// System.Int32 UnityEngine.XR.ARSubsystems.XRHumanBodyJoint::m_Tracked
int32_t ___m_Tracked_6;
public:
inline static int32_t get_offset_of_m_Index_0() { return static_cast<int32_t>(offsetof(XRHumanBodyJoint_t80D5022A816E4F24C92A9EABD645794FC0B5E2E4, ___m_Index_0)); }
inline int32_t get_m_Index_0() const { return ___m_Index_0; }
inline int32_t* get_address_of_m_Index_0() { return &___m_Index_0; }
inline void set_m_Index_0(int32_t value)
{
___m_Index_0 = value;
}
inline static int32_t get_offset_of_m_ParentIndex_1() { return static_cast<int32_t>(offsetof(XRHumanBodyJoint_t80D5022A816E4F24C92A9EABD645794FC0B5E2E4, ___m_ParentIndex_1)); }
inline int32_t get_m_ParentIndex_1() const { return ___m_ParentIndex_1; }
inline int32_t* get_address_of_m_ParentIndex_1() { return &___m_ParentIndex_1; }
inline void set_m_ParentIndex_1(int32_t value)
{
___m_ParentIndex_1 = value;
}
inline static int32_t get_offset_of_m_LocalScale_2() { return static_cast<int32_t>(offsetof(XRHumanBodyJoint_t80D5022A816E4F24C92A9EABD645794FC0B5E2E4, ___m_LocalScale_2)); }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_m_LocalScale_2() const { return ___m_LocalScale_2; }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_m_LocalScale_2() { return &___m_LocalScale_2; }
inline void set_m_LocalScale_2(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value)
{
___m_LocalScale_2 = value;
}
inline static int32_t get_offset_of_m_LocalPose_3() { return static_cast<int32_t>(offsetof(XRHumanBodyJoint_t80D5022A816E4F24C92A9EABD645794FC0B5E2E4, ___m_LocalPose_3)); }
inline Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A get_m_LocalPose_3() const { return ___m_LocalPose_3; }
inline Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A * get_address_of_m_LocalPose_3() { return &___m_LocalPose_3; }
inline void set_m_LocalPose_3(Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A value)
{
___m_LocalPose_3 = value;
}
inline static int32_t get_offset_of_m_AnchorScale_4() { return static_cast<int32_t>(offsetof(XRHumanBodyJoint_t80D5022A816E4F24C92A9EABD645794FC0B5E2E4, ___m_AnchorScale_4)); }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_m_AnchorScale_4() const { return ___m_AnchorScale_4; }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_m_AnchorScale_4() { return &___m_AnchorScale_4; }
inline void set_m_AnchorScale_4(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value)
{
___m_AnchorScale_4 = value;
}
inline static int32_t get_offset_of_m_AnchorPose_5() { return static_cast<int32_t>(offsetof(XRHumanBodyJoint_t80D5022A816E4F24C92A9EABD645794FC0B5E2E4, ___m_AnchorPose_5)); }
inline Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A get_m_AnchorPose_5() const { return ___m_AnchorPose_5; }
inline Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A * get_address_of_m_AnchorPose_5() { return &___m_AnchorPose_5; }
inline void set_m_AnchorPose_5(Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A value)
{
___m_AnchorPose_5 = value;
}
inline static int32_t get_offset_of_m_Tracked_6() { return static_cast<int32_t>(offsetof(XRHumanBodyJoint_t80D5022A816E4F24C92A9EABD645794FC0B5E2E4, ___m_Tracked_6)); }
inline int32_t get_m_Tracked_6() const { return ___m_Tracked_6; }
inline int32_t* get_address_of_m_Tracked_6() { return &___m_Tracked_6; }
inline void set_m_Tracked_6(int32_t value)
{
___m_Tracked_6 = value;
}
};
// UnityEngine.XR.ARSubsystems.XRHumanBodySubsystem
struct XRHumanBodySubsystem_t71FBF94503DCE781657FA4F362464EA389CD9F2B : public TrackingSubsystem_4_tB0BB38AE7B56DA9BE6D8463DD64E4766AD686B86
{
public:
public:
};
// UnityEngine.XR.ARSubsystems.XRImageTrackingSubsystem
struct XRImageTrackingSubsystem_tBC68AD21C11D8D67F3343844E129DF505FF705CE : public TrackingSubsystem_4_tCE5EA1B7325877FD88C7CF41F681F25B1FC1717A
{
public:
// UnityEngine.XR.ARSubsystems.RuntimeReferenceImageLibrary UnityEngine.XR.ARSubsystems.XRImageTrackingSubsystem::m_ImageLibrary
RuntimeReferenceImageLibrary_t76072EC5637B1F0F8FD0A1BFD3AEAF954D6F8D6B * ___m_ImageLibrary_4;
public:
inline static int32_t get_offset_of_m_ImageLibrary_4() { return static_cast<int32_t>(offsetof(XRImageTrackingSubsystem_tBC68AD21C11D8D67F3343844E129DF505FF705CE, ___m_ImageLibrary_4)); }
inline RuntimeReferenceImageLibrary_t76072EC5637B1F0F8FD0A1BFD3AEAF954D6F8D6B * get_m_ImageLibrary_4() const { return ___m_ImageLibrary_4; }
inline RuntimeReferenceImageLibrary_t76072EC5637B1F0F8FD0A1BFD3AEAF954D6F8D6B ** get_address_of_m_ImageLibrary_4() { return &___m_ImageLibrary_4; }
inline void set_m_ImageLibrary_4(RuntimeReferenceImageLibrary_t76072EC5637B1F0F8FD0A1BFD3AEAF954D6F8D6B * value)
{
___m_ImageLibrary_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_ImageLibrary_4), (void*)value);
}
};
// UnityEngine.XR.ARSubsystems.XRObjectTrackingSubsystem
struct XRObjectTrackingSubsystem_t3F31F4C8BCA868FE69BD8EC75BA5A1116026C881 : public TrackingSubsystem_4_t1E41FDFF37B1529EED554D89481040B067E300EB
{
public:
// UnityEngine.XR.ARSubsystems.XRReferenceObjectLibrary UnityEngine.XR.ARSubsystems.XRObjectTrackingSubsystem::m_Library
XRReferenceObjectLibrary_t07704B2996E507F23EE3C99CFC3BB73A83C99A7C * ___m_Library_4;
public:
inline static int32_t get_offset_of_m_Library_4() { return static_cast<int32_t>(offsetof(XRObjectTrackingSubsystem_t3F31F4C8BCA868FE69BD8EC75BA5A1116026C881, ___m_Library_4)); }
inline XRReferenceObjectLibrary_t07704B2996E507F23EE3C99CFC3BB73A83C99A7C * get_m_Library_4() const { return ___m_Library_4; }
inline XRReferenceObjectLibrary_t07704B2996E507F23EE3C99CFC3BB73A83C99A7C ** get_address_of_m_Library_4() { return &___m_Library_4; }
inline void set_m_Library_4(XRReferenceObjectLibrary_t07704B2996E507F23EE3C99CFC3BB73A83C99A7C * value)
{
___m_Library_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Library_4), (void*)value);
}
};
// UnityEngine.XR.ARSubsystems.XRParticipant
struct XRParticipant_t8CFF46A2CDD860A7591AD0FC0EE563458C8FA13F
{
public:
// UnityEngine.XR.ARSubsystems.TrackableId UnityEngine.XR.ARSubsystems.XRParticipant::m_TrackableId
TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B ___m_TrackableId_0;
// UnityEngine.Pose UnityEngine.XR.ARSubsystems.XRParticipant::m_Pose
Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A ___m_Pose_1;
// UnityEngine.XR.ARSubsystems.TrackingState UnityEngine.XR.ARSubsystems.XRParticipant::m_TrackingState
int32_t ___m_TrackingState_2;
// System.IntPtr UnityEngine.XR.ARSubsystems.XRParticipant::m_NativePtr
intptr_t ___m_NativePtr_3;
// System.Guid UnityEngine.XR.ARSubsystems.XRParticipant::m_SessionId
Guid_t ___m_SessionId_4;
public:
inline static int32_t get_offset_of_m_TrackableId_0() { return static_cast<int32_t>(offsetof(XRParticipant_t8CFF46A2CDD860A7591AD0FC0EE563458C8FA13F, ___m_TrackableId_0)); }
inline TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B get_m_TrackableId_0() const { return ___m_TrackableId_0; }
inline TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B * get_address_of_m_TrackableId_0() { return &___m_TrackableId_0; }
inline void set_m_TrackableId_0(TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B value)
{
___m_TrackableId_0 = value;
}
inline static int32_t get_offset_of_m_Pose_1() { return static_cast<int32_t>(offsetof(XRParticipant_t8CFF46A2CDD860A7591AD0FC0EE563458C8FA13F, ___m_Pose_1)); }
inline Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A get_m_Pose_1() const { return ___m_Pose_1; }
inline Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A * get_address_of_m_Pose_1() { return &___m_Pose_1; }
inline void set_m_Pose_1(Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A value)
{
___m_Pose_1 = value;
}
inline static int32_t get_offset_of_m_TrackingState_2() { return static_cast<int32_t>(offsetof(XRParticipant_t8CFF46A2CDD860A7591AD0FC0EE563458C8FA13F, ___m_TrackingState_2)); }
inline int32_t get_m_TrackingState_2() const { return ___m_TrackingState_2; }
inline int32_t* get_address_of_m_TrackingState_2() { return &___m_TrackingState_2; }
inline void set_m_TrackingState_2(int32_t value)
{
___m_TrackingState_2 = value;
}
inline static int32_t get_offset_of_m_NativePtr_3() { return static_cast<int32_t>(offsetof(XRParticipant_t8CFF46A2CDD860A7591AD0FC0EE563458C8FA13F, ___m_NativePtr_3)); }
inline intptr_t get_m_NativePtr_3() const { return ___m_NativePtr_3; }
inline intptr_t* get_address_of_m_NativePtr_3() { return &___m_NativePtr_3; }
inline void set_m_NativePtr_3(intptr_t value)
{
___m_NativePtr_3 = value;
}
inline static int32_t get_offset_of_m_SessionId_4() { return static_cast<int32_t>(offsetof(XRParticipant_t8CFF46A2CDD860A7591AD0FC0EE563458C8FA13F, ___m_SessionId_4)); }
inline Guid_t get_m_SessionId_4() const { return ___m_SessionId_4; }
inline Guid_t * get_address_of_m_SessionId_4() { return &___m_SessionId_4; }
inline void set_m_SessionId_4(Guid_t value)
{
___m_SessionId_4 = value;
}
};
struct XRParticipant_t8CFF46A2CDD860A7591AD0FC0EE563458C8FA13F_StaticFields
{
public:
// UnityEngine.XR.ARSubsystems.XRParticipant UnityEngine.XR.ARSubsystems.XRParticipant::k_Default
XRParticipant_t8CFF46A2CDD860A7591AD0FC0EE563458C8FA13F ___k_Default_5;
public:
inline static int32_t get_offset_of_k_Default_5() { return static_cast<int32_t>(offsetof(XRParticipant_t8CFF46A2CDD860A7591AD0FC0EE563458C8FA13F_StaticFields, ___k_Default_5)); }
inline XRParticipant_t8CFF46A2CDD860A7591AD0FC0EE563458C8FA13F get_k_Default_5() const { return ___k_Default_5; }
inline XRParticipant_t8CFF46A2CDD860A7591AD0FC0EE563458C8FA13F * get_address_of_k_Default_5() { return &___k_Default_5; }
inline void set_k_Default_5(XRParticipant_t8CFF46A2CDD860A7591AD0FC0EE563458C8FA13F value)
{
___k_Default_5 = value;
}
};
// UnityEngine.XR.ARSubsystems.XRParticipantSubsystem
struct XRParticipantSubsystem_t7F710E46FC5A17967E7CAE126DE9443C752C36FC : public TrackingSubsystem_4_tF2C9DD677702042D71E5050214FE516389400277
{
public:
public:
};
// UnityEngine.XR.ARSubsystems.XRParticipantSubsystemDescriptor
struct XRParticipantSubsystemDescriptor_t533EE70DC8D4B105B9C87B76D35A7D59A84BCA55 : public SubsystemDescriptorWithProvider_2_t43C05E9C3928E04822F2DA791FFAC4C140DF10A5
{
public:
// UnityEngine.XR.ARSubsystems.XRParticipantSubsystemDescriptor/Capabilities UnityEngine.XR.ARSubsystems.XRParticipantSubsystemDescriptor::<capabilities>k__BackingField
int32_t ___U3CcapabilitiesU3Ek__BackingField_3;
public:
inline static int32_t get_offset_of_U3CcapabilitiesU3Ek__BackingField_3() { return static_cast<int32_t>(offsetof(XRParticipantSubsystemDescriptor_t533EE70DC8D4B105B9C87B76D35A7D59A84BCA55, ___U3CcapabilitiesU3Ek__BackingField_3)); }
inline int32_t get_U3CcapabilitiesU3Ek__BackingField_3() const { return ___U3CcapabilitiesU3Ek__BackingField_3; }
inline int32_t* get_address_of_U3CcapabilitiesU3Ek__BackingField_3() { return &___U3CcapabilitiesU3Ek__BackingField_3; }
inline void set_U3CcapabilitiesU3Ek__BackingField_3(int32_t value)
{
___U3CcapabilitiesU3Ek__BackingField_3 = value;
}
};
// UnityEngine.XR.ARSubsystems.XRPlaneSubsystem
struct XRPlaneSubsystem_t7C76F9D2C993B0DC38F0A7CDCE745EA7C12417EE : public TrackingSubsystem_4_t4CF696722E0C05A2C0234E78E673F4F17EEC1C94
{
public:
public:
};
// UnityEngine.XR.ARSubsystems.XRPointCloud
struct XRPointCloud_t08B41A05528E45CE709F8C14CA6C484D360A62F2
{
public:
// UnityEngine.XR.ARSubsystems.TrackableId UnityEngine.XR.ARSubsystems.XRPointCloud::m_TrackableId
TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B ___m_TrackableId_1;
// UnityEngine.Pose UnityEngine.XR.ARSubsystems.XRPointCloud::m_Pose
Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A ___m_Pose_2;
// UnityEngine.XR.ARSubsystems.TrackingState UnityEngine.XR.ARSubsystems.XRPointCloud::m_TrackingState
int32_t ___m_TrackingState_3;
// System.IntPtr UnityEngine.XR.ARSubsystems.XRPointCloud::m_NativePtr
intptr_t ___m_NativePtr_4;
public:
inline static int32_t get_offset_of_m_TrackableId_1() { return static_cast<int32_t>(offsetof(XRPointCloud_t08B41A05528E45CE709F8C14CA6C484D360A62F2, ___m_TrackableId_1)); }
inline TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B get_m_TrackableId_1() const { return ___m_TrackableId_1; }
inline TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B * get_address_of_m_TrackableId_1() { return &___m_TrackableId_1; }
inline void set_m_TrackableId_1(TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B value)
{
___m_TrackableId_1 = value;
}
inline static int32_t get_offset_of_m_Pose_2() { return static_cast<int32_t>(offsetof(XRPointCloud_t08B41A05528E45CE709F8C14CA6C484D360A62F2, ___m_Pose_2)); }
inline Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A get_m_Pose_2() const { return ___m_Pose_2; }
inline Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A * get_address_of_m_Pose_2() { return &___m_Pose_2; }
inline void set_m_Pose_2(Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A value)
{
___m_Pose_2 = value;
}
inline static int32_t get_offset_of_m_TrackingState_3() { return static_cast<int32_t>(offsetof(XRPointCloud_t08B41A05528E45CE709F8C14CA6C484D360A62F2, ___m_TrackingState_3)); }
inline int32_t get_m_TrackingState_3() const { return ___m_TrackingState_3; }
inline int32_t* get_address_of_m_TrackingState_3() { return &___m_TrackingState_3; }
inline void set_m_TrackingState_3(int32_t value)
{
___m_TrackingState_3 = value;
}
inline static int32_t get_offset_of_m_NativePtr_4() { return static_cast<int32_t>(offsetof(XRPointCloud_t08B41A05528E45CE709F8C14CA6C484D360A62F2, ___m_NativePtr_4)); }
inline intptr_t get_m_NativePtr_4() const { return ___m_NativePtr_4; }
inline intptr_t* get_address_of_m_NativePtr_4() { return &___m_NativePtr_4; }
inline void set_m_NativePtr_4(intptr_t value)
{
___m_NativePtr_4 = value;
}
};
struct XRPointCloud_t08B41A05528E45CE709F8C14CA6C484D360A62F2_StaticFields
{
public:
// UnityEngine.XR.ARSubsystems.XRPointCloud UnityEngine.XR.ARSubsystems.XRPointCloud::s_Default
XRPointCloud_t08B41A05528E45CE709F8C14CA6C484D360A62F2 ___s_Default_0;
public:
inline static int32_t get_offset_of_s_Default_0() { return static_cast<int32_t>(offsetof(XRPointCloud_t08B41A05528E45CE709F8C14CA6C484D360A62F2_StaticFields, ___s_Default_0)); }
inline XRPointCloud_t08B41A05528E45CE709F8C14CA6C484D360A62F2 get_s_Default_0() const { return ___s_Default_0; }
inline XRPointCloud_t08B41A05528E45CE709F8C14CA6C484D360A62F2 * get_address_of_s_Default_0() { return &___s_Default_0; }
inline void set_s_Default_0(XRPointCloud_t08B41A05528E45CE709F8C14CA6C484D360A62F2 value)
{
___s_Default_0 = value;
}
};
// UnityEngine.XR.ARSubsystems.XRRaycast
struct XRRaycast_tA18F9107EFF1D692E70EF15233BB6134A5F66C55
{
public:
// UnityEngine.XR.ARSubsystems.TrackableId UnityEngine.XR.ARSubsystems.XRRaycast::m_TrackableId
TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B ___m_TrackableId_1;
// UnityEngine.Pose UnityEngine.XR.ARSubsystems.XRRaycast::m_Pose
Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A ___m_Pose_2;
// UnityEngine.XR.ARSubsystems.TrackingState UnityEngine.XR.ARSubsystems.XRRaycast::m_TrackingState
int32_t ___m_TrackingState_3;
// System.IntPtr UnityEngine.XR.ARSubsystems.XRRaycast::m_NativePtr
intptr_t ___m_NativePtr_4;
// System.Single UnityEngine.XR.ARSubsystems.XRRaycast::m_Distance
float ___m_Distance_5;
// UnityEngine.XR.ARSubsystems.TrackableId UnityEngine.XR.ARSubsystems.XRRaycast::m_HitTrackableId
TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B ___m_HitTrackableId_6;
public:
inline static int32_t get_offset_of_m_TrackableId_1() { return static_cast<int32_t>(offsetof(XRRaycast_tA18F9107EFF1D692E70EF15233BB6134A5F66C55, ___m_TrackableId_1)); }
inline TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B get_m_TrackableId_1() const { return ___m_TrackableId_1; }
inline TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B * get_address_of_m_TrackableId_1() { return &___m_TrackableId_1; }
inline void set_m_TrackableId_1(TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B value)
{
___m_TrackableId_1 = value;
}
inline static int32_t get_offset_of_m_Pose_2() { return static_cast<int32_t>(offsetof(XRRaycast_tA18F9107EFF1D692E70EF15233BB6134A5F66C55, ___m_Pose_2)); }
inline Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A get_m_Pose_2() const { return ___m_Pose_2; }
inline Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A * get_address_of_m_Pose_2() { return &___m_Pose_2; }
inline void set_m_Pose_2(Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A value)
{
___m_Pose_2 = value;
}
inline static int32_t get_offset_of_m_TrackingState_3() { return static_cast<int32_t>(offsetof(XRRaycast_tA18F9107EFF1D692E70EF15233BB6134A5F66C55, ___m_TrackingState_3)); }
inline int32_t get_m_TrackingState_3() const { return ___m_TrackingState_3; }
inline int32_t* get_address_of_m_TrackingState_3() { return &___m_TrackingState_3; }
inline void set_m_TrackingState_3(int32_t value)
{
___m_TrackingState_3 = value;
}
inline static int32_t get_offset_of_m_NativePtr_4() { return static_cast<int32_t>(offsetof(XRRaycast_tA18F9107EFF1D692E70EF15233BB6134A5F66C55, ___m_NativePtr_4)); }
inline intptr_t get_m_NativePtr_4() const { return ___m_NativePtr_4; }
inline intptr_t* get_address_of_m_NativePtr_4() { return &___m_NativePtr_4; }
inline void set_m_NativePtr_4(intptr_t value)
{
___m_NativePtr_4 = value;
}
inline static int32_t get_offset_of_m_Distance_5() { return static_cast<int32_t>(offsetof(XRRaycast_tA18F9107EFF1D692E70EF15233BB6134A5F66C55, ___m_Distance_5)); }
inline float get_m_Distance_5() const { return ___m_Distance_5; }
inline float* get_address_of_m_Distance_5() { return &___m_Distance_5; }
inline void set_m_Distance_5(float value)
{
___m_Distance_5 = value;
}
inline static int32_t get_offset_of_m_HitTrackableId_6() { return static_cast<int32_t>(offsetof(XRRaycast_tA18F9107EFF1D692E70EF15233BB6134A5F66C55, ___m_HitTrackableId_6)); }
inline TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B get_m_HitTrackableId_6() const { return ___m_HitTrackableId_6; }
inline TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B * get_address_of_m_HitTrackableId_6() { return &___m_HitTrackableId_6; }
inline void set_m_HitTrackableId_6(TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B value)
{
___m_HitTrackableId_6 = value;
}
};
struct XRRaycast_tA18F9107EFF1D692E70EF15233BB6134A5F66C55_StaticFields
{
public:
// UnityEngine.XR.ARSubsystems.XRRaycast UnityEngine.XR.ARSubsystems.XRRaycast::s_Default
XRRaycast_tA18F9107EFF1D692E70EF15233BB6134A5F66C55 ___s_Default_0;
public:
inline static int32_t get_offset_of_s_Default_0() { return static_cast<int32_t>(offsetof(XRRaycast_tA18F9107EFF1D692E70EF15233BB6134A5F66C55_StaticFields, ___s_Default_0)); }
inline XRRaycast_tA18F9107EFF1D692E70EF15233BB6134A5F66C55 get_s_Default_0() const { return ___s_Default_0; }
inline XRRaycast_tA18F9107EFF1D692E70EF15233BB6134A5F66C55 * get_address_of_s_Default_0() { return &___s_Default_0; }
inline void set_s_Default_0(XRRaycast_tA18F9107EFF1D692E70EF15233BB6134A5F66C55 value)
{
___s_Default_0 = value;
}
};
// UnityEngine.XR.ARSubsystems.XRRaycastHit
struct XRRaycastHit_t94A3D13B245A9D0A7A7F2D0919DCAAC7C8DF8DDB
{
public:
// UnityEngine.XR.ARSubsystems.TrackableId UnityEngine.XR.ARSubsystems.XRRaycastHit::m_TrackableId
TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B ___m_TrackableId_1;
// UnityEngine.Pose UnityEngine.XR.ARSubsystems.XRRaycastHit::m_Pose
Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A ___m_Pose_2;
// System.Single UnityEngine.XR.ARSubsystems.XRRaycastHit::m_Distance
float ___m_Distance_3;
// UnityEngine.XR.ARSubsystems.TrackableType UnityEngine.XR.ARSubsystems.XRRaycastHit::m_HitType
int32_t ___m_HitType_4;
public:
inline static int32_t get_offset_of_m_TrackableId_1() { return static_cast<int32_t>(offsetof(XRRaycastHit_t94A3D13B245A9D0A7A7F2D0919DCAAC7C8DF8DDB, ___m_TrackableId_1)); }
inline TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B get_m_TrackableId_1() const { return ___m_TrackableId_1; }
inline TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B * get_address_of_m_TrackableId_1() { return &___m_TrackableId_1; }
inline void set_m_TrackableId_1(TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B value)
{
___m_TrackableId_1 = value;
}
inline static int32_t get_offset_of_m_Pose_2() { return static_cast<int32_t>(offsetof(XRRaycastHit_t94A3D13B245A9D0A7A7F2D0919DCAAC7C8DF8DDB, ___m_Pose_2)); }
inline Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A get_m_Pose_2() const { return ___m_Pose_2; }
inline Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A * get_address_of_m_Pose_2() { return &___m_Pose_2; }
inline void set_m_Pose_2(Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A value)
{
___m_Pose_2 = value;
}
inline static int32_t get_offset_of_m_Distance_3() { return static_cast<int32_t>(offsetof(XRRaycastHit_t94A3D13B245A9D0A7A7F2D0919DCAAC7C8DF8DDB, ___m_Distance_3)); }
inline float get_m_Distance_3() const { return ___m_Distance_3; }
inline float* get_address_of_m_Distance_3() { return &___m_Distance_3; }
inline void set_m_Distance_3(float value)
{
___m_Distance_3 = value;
}
inline static int32_t get_offset_of_m_HitType_4() { return static_cast<int32_t>(offsetof(XRRaycastHit_t94A3D13B245A9D0A7A7F2D0919DCAAC7C8DF8DDB, ___m_HitType_4)); }
inline int32_t get_m_HitType_4() const { return ___m_HitType_4; }
inline int32_t* get_address_of_m_HitType_4() { return &___m_HitType_4; }
inline void set_m_HitType_4(int32_t value)
{
___m_HitType_4 = value;
}
};
struct XRRaycastHit_t94A3D13B245A9D0A7A7F2D0919DCAAC7C8DF8DDB_StaticFields
{
public:
// UnityEngine.XR.ARSubsystems.XRRaycastHit UnityEngine.XR.ARSubsystems.XRRaycastHit::s_Default
XRRaycastHit_t94A3D13B245A9D0A7A7F2D0919DCAAC7C8DF8DDB ___s_Default_0;
public:
inline static int32_t get_offset_of_s_Default_0() { return static_cast<int32_t>(offsetof(XRRaycastHit_t94A3D13B245A9D0A7A7F2D0919DCAAC7C8DF8DDB_StaticFields, ___s_Default_0)); }
inline XRRaycastHit_t94A3D13B245A9D0A7A7F2D0919DCAAC7C8DF8DDB get_s_Default_0() const { return ___s_Default_0; }
inline XRRaycastHit_t94A3D13B245A9D0A7A7F2D0919DCAAC7C8DF8DDB * get_address_of_s_Default_0() { return &___s_Default_0; }
inline void set_s_Default_0(XRRaycastHit_t94A3D13B245A9D0A7A7F2D0919DCAAC7C8DF8DDB value)
{
___s_Default_0 = value;
}
};
// UnityEngine.XR.ARSubsystems.XRRaycastSubsystem
struct XRRaycastSubsystem_t62FDAC9AA1BD44C4557AEE3FEF3D2FA24C71B6B8 : public TrackingSubsystem_4_t87A57AE1E1117ED73BBD3B84DD595F36FA975077
{
public:
public:
};
// UnityEngine.XR.ARSubsystems.XRRaycastSubsystemDescriptor
struct XRRaycastSubsystemDescriptor_tB9891F63FC4871797BCD04DB7167142BE2049B2C : public SubsystemDescriptorWithProvider_2_t0E1C52F3F099638F0EFF9E03352A814E50092E22
{
public:
// System.Boolean UnityEngine.XR.ARSubsystems.XRRaycastSubsystemDescriptor::<supportsViewportBasedRaycast>k__BackingField
bool ___U3CsupportsViewportBasedRaycastU3Ek__BackingField_3;
// System.Boolean UnityEngine.XR.ARSubsystems.XRRaycastSubsystemDescriptor::<supportsWorldBasedRaycast>k__BackingField
bool ___U3CsupportsWorldBasedRaycastU3Ek__BackingField_4;
// UnityEngine.XR.ARSubsystems.TrackableType UnityEngine.XR.ARSubsystems.XRRaycastSubsystemDescriptor::<supportedTrackableTypes>k__BackingField
int32_t ___U3CsupportedTrackableTypesU3Ek__BackingField_5;
// System.Boolean UnityEngine.XR.ARSubsystems.XRRaycastSubsystemDescriptor::<supportsTrackedRaycasts>k__BackingField
bool ___U3CsupportsTrackedRaycastsU3Ek__BackingField_6;
public:
inline static int32_t get_offset_of_U3CsupportsViewportBasedRaycastU3Ek__BackingField_3() { return static_cast<int32_t>(offsetof(XRRaycastSubsystemDescriptor_tB9891F63FC4871797BCD04DB7167142BE2049B2C, ___U3CsupportsViewportBasedRaycastU3Ek__BackingField_3)); }
inline bool get_U3CsupportsViewportBasedRaycastU3Ek__BackingField_3() const { return ___U3CsupportsViewportBasedRaycastU3Ek__BackingField_3; }
inline bool* get_address_of_U3CsupportsViewportBasedRaycastU3Ek__BackingField_3() { return &___U3CsupportsViewportBasedRaycastU3Ek__BackingField_3; }
inline void set_U3CsupportsViewportBasedRaycastU3Ek__BackingField_3(bool value)
{
___U3CsupportsViewportBasedRaycastU3Ek__BackingField_3 = value;
}
inline static int32_t get_offset_of_U3CsupportsWorldBasedRaycastU3Ek__BackingField_4() { return static_cast<int32_t>(offsetof(XRRaycastSubsystemDescriptor_tB9891F63FC4871797BCD04DB7167142BE2049B2C, ___U3CsupportsWorldBasedRaycastU3Ek__BackingField_4)); }
inline bool get_U3CsupportsWorldBasedRaycastU3Ek__BackingField_4() const { return ___U3CsupportsWorldBasedRaycastU3Ek__BackingField_4; }
inline bool* get_address_of_U3CsupportsWorldBasedRaycastU3Ek__BackingField_4() { return &___U3CsupportsWorldBasedRaycastU3Ek__BackingField_4; }
inline void set_U3CsupportsWorldBasedRaycastU3Ek__BackingField_4(bool value)
{
___U3CsupportsWorldBasedRaycastU3Ek__BackingField_4 = value;
}
inline static int32_t get_offset_of_U3CsupportedTrackableTypesU3Ek__BackingField_5() { return static_cast<int32_t>(offsetof(XRRaycastSubsystemDescriptor_tB9891F63FC4871797BCD04DB7167142BE2049B2C, ___U3CsupportedTrackableTypesU3Ek__BackingField_5)); }
inline int32_t get_U3CsupportedTrackableTypesU3Ek__BackingField_5() const { return ___U3CsupportedTrackableTypesU3Ek__BackingField_5; }
inline int32_t* get_address_of_U3CsupportedTrackableTypesU3Ek__BackingField_5() { return &___U3CsupportedTrackableTypesU3Ek__BackingField_5; }
inline void set_U3CsupportedTrackableTypesU3Ek__BackingField_5(int32_t value)
{
___U3CsupportedTrackableTypesU3Ek__BackingField_5 = value;
}
inline static int32_t get_offset_of_U3CsupportsTrackedRaycastsU3Ek__BackingField_6() { return static_cast<int32_t>(offsetof(XRRaycastSubsystemDescriptor_tB9891F63FC4871797BCD04DB7167142BE2049B2C, ___U3CsupportsTrackedRaycastsU3Ek__BackingField_6)); }
inline bool get_U3CsupportsTrackedRaycastsU3Ek__BackingField_6() const { return ___U3CsupportsTrackedRaycastsU3Ek__BackingField_6; }
inline bool* get_address_of_U3CsupportsTrackedRaycastsU3Ek__BackingField_6() { return &___U3CsupportsTrackedRaycastsU3Ek__BackingField_6; }
inline void set_U3CsupportsTrackedRaycastsU3Ek__BackingField_6(bool value)
{
___U3CsupportsTrackedRaycastsU3Ek__BackingField_6 = value;
}
};
// UnityEngine.XR.ARSubsystems.XRReferencePoint
struct XRReferencePoint_tF3ACF949B4AE1EC67F527F5D30DD8B912A814634
{
public:
// UnityEngine.XR.ARSubsystems.TrackableId UnityEngine.XR.ARSubsystems.XRReferencePoint::m_Id
TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B ___m_Id_1;
// UnityEngine.Pose UnityEngine.XR.ARSubsystems.XRReferencePoint::m_Pose
Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A ___m_Pose_2;
// UnityEngine.XR.ARSubsystems.TrackingState UnityEngine.XR.ARSubsystems.XRReferencePoint::m_TrackingState
int32_t ___m_TrackingState_3;
// System.IntPtr UnityEngine.XR.ARSubsystems.XRReferencePoint::m_NativePtr
intptr_t ___m_NativePtr_4;
// System.Guid UnityEngine.XR.ARSubsystems.XRReferencePoint::m_SessionId
Guid_t ___m_SessionId_5;
public:
inline static int32_t get_offset_of_m_Id_1() { return static_cast<int32_t>(offsetof(XRReferencePoint_tF3ACF949B4AE1EC67F527F5D30DD8B912A814634, ___m_Id_1)); }
inline TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B get_m_Id_1() const { return ___m_Id_1; }
inline TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B * get_address_of_m_Id_1() { return &___m_Id_1; }
inline void set_m_Id_1(TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B value)
{
___m_Id_1 = value;
}
inline static int32_t get_offset_of_m_Pose_2() { return static_cast<int32_t>(offsetof(XRReferencePoint_tF3ACF949B4AE1EC67F527F5D30DD8B912A814634, ___m_Pose_2)); }
inline Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A get_m_Pose_2() const { return ___m_Pose_2; }
inline Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A * get_address_of_m_Pose_2() { return &___m_Pose_2; }
inline void set_m_Pose_2(Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A value)
{
___m_Pose_2 = value;
}
inline static int32_t get_offset_of_m_TrackingState_3() { return static_cast<int32_t>(offsetof(XRReferencePoint_tF3ACF949B4AE1EC67F527F5D30DD8B912A814634, ___m_TrackingState_3)); }
inline int32_t get_m_TrackingState_3() const { return ___m_TrackingState_3; }
inline int32_t* get_address_of_m_TrackingState_3() { return &___m_TrackingState_3; }
inline void set_m_TrackingState_3(int32_t value)
{
___m_TrackingState_3 = value;
}
inline static int32_t get_offset_of_m_NativePtr_4() { return static_cast<int32_t>(offsetof(XRReferencePoint_tF3ACF949B4AE1EC67F527F5D30DD8B912A814634, ___m_NativePtr_4)); }
inline intptr_t get_m_NativePtr_4() const { return ___m_NativePtr_4; }
inline intptr_t* get_address_of_m_NativePtr_4() { return &___m_NativePtr_4; }
inline void set_m_NativePtr_4(intptr_t value)
{
___m_NativePtr_4 = value;
}
inline static int32_t get_offset_of_m_SessionId_5() { return static_cast<int32_t>(offsetof(XRReferencePoint_tF3ACF949B4AE1EC67F527F5D30DD8B912A814634, ___m_SessionId_5)); }
inline Guid_t get_m_SessionId_5() const { return ___m_SessionId_5; }
inline Guid_t * get_address_of_m_SessionId_5() { return &___m_SessionId_5; }
inline void set_m_SessionId_5(Guid_t value)
{
___m_SessionId_5 = value;
}
};
struct XRReferencePoint_tF3ACF949B4AE1EC67F527F5D30DD8B912A814634_StaticFields
{
public:
// UnityEngine.XR.ARSubsystems.XRReferencePoint UnityEngine.XR.ARSubsystems.XRReferencePoint::s_Default
XRReferencePoint_tF3ACF949B4AE1EC67F527F5D30DD8B912A814634 ___s_Default_0;
public:
inline static int32_t get_offset_of_s_Default_0() { return static_cast<int32_t>(offsetof(XRReferencePoint_tF3ACF949B4AE1EC67F527F5D30DD8B912A814634_StaticFields, ___s_Default_0)); }
inline XRReferencePoint_tF3ACF949B4AE1EC67F527F5D30DD8B912A814634 get_s_Default_0() const { return ___s_Default_0; }
inline XRReferencePoint_tF3ACF949B4AE1EC67F527F5D30DD8B912A814634 * get_address_of_s_Default_0() { return &___s_Default_0; }
inline void set_s_Default_0(XRReferencePoint_tF3ACF949B4AE1EC67F527F5D30DD8B912A814634 value)
{
___s_Default_0 = value;
}
};
// UnityEngine.XR.ARSubsystems.XRReferencePointSubsystem
struct XRReferencePointSubsystem_t2EF6E3F26C69D006F83E8E837FB60461D8033634 : public TrackingSubsystem_4_t0B2307E3EA3CA1C1A2EE084C333FC42E3F5590B0
{
public:
public:
};
// UnityEngine.XR.ARSubsystems.XRSessionUpdateParams
struct XRSessionUpdateParams_t106E075C3B348969D6F3B634195F295CE47DB77F
{
public:
// UnityEngine.ScreenOrientation UnityEngine.XR.ARSubsystems.XRSessionUpdateParams::<screenOrientation>k__BackingField
int32_t ___U3CscreenOrientationU3Ek__BackingField_0;
// UnityEngine.Vector2Int UnityEngine.XR.ARSubsystems.XRSessionUpdateParams::<screenDimensions>k__BackingField
Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9 ___U3CscreenDimensionsU3Ek__BackingField_1;
public:
inline static int32_t get_offset_of_U3CscreenOrientationU3Ek__BackingField_0() { return static_cast<int32_t>(offsetof(XRSessionUpdateParams_t106E075C3B348969D6F3B634195F295CE47DB77F, ___U3CscreenOrientationU3Ek__BackingField_0)); }
inline int32_t get_U3CscreenOrientationU3Ek__BackingField_0() const { return ___U3CscreenOrientationU3Ek__BackingField_0; }
inline int32_t* get_address_of_U3CscreenOrientationU3Ek__BackingField_0() { return &___U3CscreenOrientationU3Ek__BackingField_0; }
inline void set_U3CscreenOrientationU3Ek__BackingField_0(int32_t value)
{
___U3CscreenOrientationU3Ek__BackingField_0 = value;
}
inline static int32_t get_offset_of_U3CscreenDimensionsU3Ek__BackingField_1() { return static_cast<int32_t>(offsetof(XRSessionUpdateParams_t106E075C3B348969D6F3B634195F295CE47DB77F, ___U3CscreenDimensionsU3Ek__BackingField_1)); }
inline Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9 get_U3CscreenDimensionsU3Ek__BackingField_1() const { return ___U3CscreenDimensionsU3Ek__BackingField_1; }
inline Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9 * get_address_of_U3CscreenDimensionsU3Ek__BackingField_1() { return &___U3CscreenDimensionsU3Ek__BackingField_1; }
inline void set_U3CscreenDimensionsU3Ek__BackingField_1(Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9 value)
{
___U3CscreenDimensionsU3Ek__BackingField_1 = value;
}
};
// UnityEngine.XR.ARSubsystems.XRTextureDescriptor
struct XRTextureDescriptor_t9CA857DCCC1208B74376787BE4F3008A01B29A57
{
public:
// System.IntPtr UnityEngine.XR.ARSubsystems.XRTextureDescriptor::m_NativeTexture
intptr_t ___m_NativeTexture_0;
// System.Int32 UnityEngine.XR.ARSubsystems.XRTextureDescriptor::m_Width
int32_t ___m_Width_1;
// System.Int32 UnityEngine.XR.ARSubsystems.XRTextureDescriptor::m_Height
int32_t ___m_Height_2;
// System.Int32 UnityEngine.XR.ARSubsystems.XRTextureDescriptor::m_MipmapCount
int32_t ___m_MipmapCount_3;
// UnityEngine.TextureFormat UnityEngine.XR.ARSubsystems.XRTextureDescriptor::m_Format
int32_t ___m_Format_4;
// System.Int32 UnityEngine.XR.ARSubsystems.XRTextureDescriptor::m_PropertyNameId
int32_t ___m_PropertyNameId_5;
// System.Int32 UnityEngine.XR.ARSubsystems.XRTextureDescriptor::m_Depth
int32_t ___m_Depth_6;
// UnityEngine.Rendering.TextureDimension UnityEngine.XR.ARSubsystems.XRTextureDescriptor::m_Dimension
int32_t ___m_Dimension_7;
public:
inline static int32_t get_offset_of_m_NativeTexture_0() { return static_cast<int32_t>(offsetof(XRTextureDescriptor_t9CA857DCCC1208B74376787BE4F3008A01B29A57, ___m_NativeTexture_0)); }
inline intptr_t get_m_NativeTexture_0() const { return ___m_NativeTexture_0; }
inline intptr_t* get_address_of_m_NativeTexture_0() { return &___m_NativeTexture_0; }
inline void set_m_NativeTexture_0(intptr_t value)
{
___m_NativeTexture_0 = value;
}
inline static int32_t get_offset_of_m_Width_1() { return static_cast<int32_t>(offsetof(XRTextureDescriptor_t9CA857DCCC1208B74376787BE4F3008A01B29A57, ___m_Width_1)); }
inline int32_t get_m_Width_1() const { return ___m_Width_1; }
inline int32_t* get_address_of_m_Width_1() { return &___m_Width_1; }
inline void set_m_Width_1(int32_t value)
{
___m_Width_1 = value;
}
inline static int32_t get_offset_of_m_Height_2() { return static_cast<int32_t>(offsetof(XRTextureDescriptor_t9CA857DCCC1208B74376787BE4F3008A01B29A57, ___m_Height_2)); }
inline int32_t get_m_Height_2() const { return ___m_Height_2; }
inline int32_t* get_address_of_m_Height_2() { return &___m_Height_2; }
inline void set_m_Height_2(int32_t value)
{
___m_Height_2 = value;
}
inline static int32_t get_offset_of_m_MipmapCount_3() { return static_cast<int32_t>(offsetof(XRTextureDescriptor_t9CA857DCCC1208B74376787BE4F3008A01B29A57, ___m_MipmapCount_3)); }
inline int32_t get_m_MipmapCount_3() const { return ___m_MipmapCount_3; }
inline int32_t* get_address_of_m_MipmapCount_3() { return &___m_MipmapCount_3; }
inline void set_m_MipmapCount_3(int32_t value)
{
___m_MipmapCount_3 = value;
}
inline static int32_t get_offset_of_m_Format_4() { return static_cast<int32_t>(offsetof(XRTextureDescriptor_t9CA857DCCC1208B74376787BE4F3008A01B29A57, ___m_Format_4)); }
inline int32_t get_m_Format_4() const { return ___m_Format_4; }
inline int32_t* get_address_of_m_Format_4() { return &___m_Format_4; }
inline void set_m_Format_4(int32_t value)
{
___m_Format_4 = value;
}
inline static int32_t get_offset_of_m_PropertyNameId_5() { return static_cast<int32_t>(offsetof(XRTextureDescriptor_t9CA857DCCC1208B74376787BE4F3008A01B29A57, ___m_PropertyNameId_5)); }
inline int32_t get_m_PropertyNameId_5() const { return ___m_PropertyNameId_5; }
inline int32_t* get_address_of_m_PropertyNameId_5() { return &___m_PropertyNameId_5; }
inline void set_m_PropertyNameId_5(int32_t value)
{
___m_PropertyNameId_5 = value;
}
inline static int32_t get_offset_of_m_Depth_6() { return static_cast<int32_t>(offsetof(XRTextureDescriptor_t9CA857DCCC1208B74376787BE4F3008A01B29A57, ___m_Depth_6)); }
inline int32_t get_m_Depth_6() const { return ___m_Depth_6; }
inline int32_t* get_address_of_m_Depth_6() { return &___m_Depth_6; }
inline void set_m_Depth_6(int32_t value)
{
___m_Depth_6 = value;
}
inline static int32_t get_offset_of_m_Dimension_7() { return static_cast<int32_t>(offsetof(XRTextureDescriptor_t9CA857DCCC1208B74376787BE4F3008A01B29A57, ___m_Dimension_7)); }
inline int32_t get_m_Dimension_7() const { return ___m_Dimension_7; }
inline int32_t* get_address_of_m_Dimension_7() { return &___m_Dimension_7; }
inline void set_m_Dimension_7(int32_t value)
{
___m_Dimension_7 = value;
}
};
// UnityEngine.XR.ARSubsystems.XRTrackedImage
struct XRTrackedImage_t92B53E0621C6D2E930761110E719F0E9580A722F
{
public:
// UnityEngine.XR.ARSubsystems.TrackableId UnityEngine.XR.ARSubsystems.XRTrackedImage::m_Id
TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B ___m_Id_1;
// System.Guid UnityEngine.XR.ARSubsystems.XRTrackedImage::m_SourceImageId
Guid_t ___m_SourceImageId_2;
// UnityEngine.Pose UnityEngine.XR.ARSubsystems.XRTrackedImage::m_Pose
Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A ___m_Pose_3;
// UnityEngine.Vector2 UnityEngine.XR.ARSubsystems.XRTrackedImage::m_Size
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___m_Size_4;
// UnityEngine.XR.ARSubsystems.TrackingState UnityEngine.XR.ARSubsystems.XRTrackedImage::m_TrackingState
int32_t ___m_TrackingState_5;
// System.IntPtr UnityEngine.XR.ARSubsystems.XRTrackedImage::m_NativePtr
intptr_t ___m_NativePtr_6;
public:
inline static int32_t get_offset_of_m_Id_1() { return static_cast<int32_t>(offsetof(XRTrackedImage_t92B53E0621C6D2E930761110E719F0E9580A722F, ___m_Id_1)); }
inline TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B get_m_Id_1() const { return ___m_Id_1; }
inline TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B * get_address_of_m_Id_1() { return &___m_Id_1; }
inline void set_m_Id_1(TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B value)
{
___m_Id_1 = value;
}
inline static int32_t get_offset_of_m_SourceImageId_2() { return static_cast<int32_t>(offsetof(XRTrackedImage_t92B53E0621C6D2E930761110E719F0E9580A722F, ___m_SourceImageId_2)); }
inline Guid_t get_m_SourceImageId_2() const { return ___m_SourceImageId_2; }
inline Guid_t * get_address_of_m_SourceImageId_2() { return &___m_SourceImageId_2; }
inline void set_m_SourceImageId_2(Guid_t value)
{
___m_SourceImageId_2 = value;
}
inline static int32_t get_offset_of_m_Pose_3() { return static_cast<int32_t>(offsetof(XRTrackedImage_t92B53E0621C6D2E930761110E719F0E9580A722F, ___m_Pose_3)); }
inline Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A get_m_Pose_3() const { return ___m_Pose_3; }
inline Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A * get_address_of_m_Pose_3() { return &___m_Pose_3; }
inline void set_m_Pose_3(Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A value)
{
___m_Pose_3 = value;
}
inline static int32_t get_offset_of_m_Size_4() { return static_cast<int32_t>(offsetof(XRTrackedImage_t92B53E0621C6D2E930761110E719F0E9580A722F, ___m_Size_4)); }
inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 get_m_Size_4() const { return ___m_Size_4; }
inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 * get_address_of_m_Size_4() { return &___m_Size_4; }
inline void set_m_Size_4(Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 value)
{
___m_Size_4 = value;
}
inline static int32_t get_offset_of_m_TrackingState_5() { return static_cast<int32_t>(offsetof(XRTrackedImage_t92B53E0621C6D2E930761110E719F0E9580A722F, ___m_TrackingState_5)); }
inline int32_t get_m_TrackingState_5() const { return ___m_TrackingState_5; }
inline int32_t* get_address_of_m_TrackingState_5() { return &___m_TrackingState_5; }
inline void set_m_TrackingState_5(int32_t value)
{
___m_TrackingState_5 = value;
}
inline static int32_t get_offset_of_m_NativePtr_6() { return static_cast<int32_t>(offsetof(XRTrackedImage_t92B53E0621C6D2E930761110E719F0E9580A722F, ___m_NativePtr_6)); }
inline intptr_t get_m_NativePtr_6() const { return ___m_NativePtr_6; }
inline intptr_t* get_address_of_m_NativePtr_6() { return &___m_NativePtr_6; }
inline void set_m_NativePtr_6(intptr_t value)
{
___m_NativePtr_6 = value;
}
};
struct XRTrackedImage_t92B53E0621C6D2E930761110E719F0E9580A722F_StaticFields
{
public:
// UnityEngine.XR.ARSubsystems.XRTrackedImage UnityEngine.XR.ARSubsystems.XRTrackedImage::s_Default
XRTrackedImage_t92B53E0621C6D2E930761110E719F0E9580A722F ___s_Default_0;
public:
inline static int32_t get_offset_of_s_Default_0() { return static_cast<int32_t>(offsetof(XRTrackedImage_t92B53E0621C6D2E930761110E719F0E9580A722F_StaticFields, ___s_Default_0)); }
inline XRTrackedImage_t92B53E0621C6D2E930761110E719F0E9580A722F get_s_Default_0() const { return ___s_Default_0; }
inline XRTrackedImage_t92B53E0621C6D2E930761110E719F0E9580A722F * get_address_of_s_Default_0() { return &___s_Default_0; }
inline void set_s_Default_0(XRTrackedImage_t92B53E0621C6D2E930761110E719F0E9580A722F value)
{
___s_Default_0 = value;
}
};
// UnityEngine.XR.ARSubsystems.XRTrackedObject
struct XRTrackedObject_t247BBE67D4F9308544C4BAD807F321E0C404EC58
{
public:
// UnityEngine.XR.ARSubsystems.TrackableId UnityEngine.XR.ARSubsystems.XRTrackedObject::m_TrackableId
TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B ___m_TrackableId_0;
// UnityEngine.Pose UnityEngine.XR.ARSubsystems.XRTrackedObject::m_Pose
Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A ___m_Pose_1;
// UnityEngine.XR.ARSubsystems.TrackingState UnityEngine.XR.ARSubsystems.XRTrackedObject::m_TrackingState
int32_t ___m_TrackingState_2;
// System.IntPtr UnityEngine.XR.ARSubsystems.XRTrackedObject::m_NativePtr
intptr_t ___m_NativePtr_3;
// System.Guid UnityEngine.XR.ARSubsystems.XRTrackedObject::m_ReferenceObjectGuid
Guid_t ___m_ReferenceObjectGuid_4;
public:
inline static int32_t get_offset_of_m_TrackableId_0() { return static_cast<int32_t>(offsetof(XRTrackedObject_t247BBE67D4F9308544C4BAD807F321E0C404EC58, ___m_TrackableId_0)); }
inline TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B get_m_TrackableId_0() const { return ___m_TrackableId_0; }
inline TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B * get_address_of_m_TrackableId_0() { return &___m_TrackableId_0; }
inline void set_m_TrackableId_0(TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B value)
{
___m_TrackableId_0 = value;
}
inline static int32_t get_offset_of_m_Pose_1() { return static_cast<int32_t>(offsetof(XRTrackedObject_t247BBE67D4F9308544C4BAD807F321E0C404EC58, ___m_Pose_1)); }
inline Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A get_m_Pose_1() const { return ___m_Pose_1; }
inline Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A * get_address_of_m_Pose_1() { return &___m_Pose_1; }
inline void set_m_Pose_1(Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A value)
{
___m_Pose_1 = value;
}
inline static int32_t get_offset_of_m_TrackingState_2() { return static_cast<int32_t>(offsetof(XRTrackedObject_t247BBE67D4F9308544C4BAD807F321E0C404EC58, ___m_TrackingState_2)); }
inline int32_t get_m_TrackingState_2() const { return ___m_TrackingState_2; }
inline int32_t* get_address_of_m_TrackingState_2() { return &___m_TrackingState_2; }
inline void set_m_TrackingState_2(int32_t value)
{
___m_TrackingState_2 = value;
}
inline static int32_t get_offset_of_m_NativePtr_3() { return static_cast<int32_t>(offsetof(XRTrackedObject_t247BBE67D4F9308544C4BAD807F321E0C404EC58, ___m_NativePtr_3)); }
inline intptr_t get_m_NativePtr_3() const { return ___m_NativePtr_3; }
inline intptr_t* get_address_of_m_NativePtr_3() { return &___m_NativePtr_3; }
inline void set_m_NativePtr_3(intptr_t value)
{
___m_NativePtr_3 = value;
}
inline static int32_t get_offset_of_m_ReferenceObjectGuid_4() { return static_cast<int32_t>(offsetof(XRTrackedObject_t247BBE67D4F9308544C4BAD807F321E0C404EC58, ___m_ReferenceObjectGuid_4)); }
inline Guid_t get_m_ReferenceObjectGuid_4() const { return ___m_ReferenceObjectGuid_4; }
inline Guid_t * get_address_of_m_ReferenceObjectGuid_4() { return &___m_ReferenceObjectGuid_4; }
inline void set_m_ReferenceObjectGuid_4(Guid_t value)
{
___m_ReferenceObjectGuid_4 = value;
}
};
struct XRTrackedObject_t247BBE67D4F9308544C4BAD807F321E0C404EC58_StaticFields
{
public:
// UnityEngine.XR.ARSubsystems.XRTrackedObject UnityEngine.XR.ARSubsystems.XRTrackedObject::s_Default
XRTrackedObject_t247BBE67D4F9308544C4BAD807F321E0C404EC58 ___s_Default_5;
public:
inline static int32_t get_offset_of_s_Default_5() { return static_cast<int32_t>(offsetof(XRTrackedObject_t247BBE67D4F9308544C4BAD807F321E0C404EC58_StaticFields, ___s_Default_5)); }
inline XRTrackedObject_t247BBE67D4F9308544C4BAD807F321E0C404EC58 get_s_Default_5() const { return ___s_Default_5; }
inline XRTrackedObject_t247BBE67D4F9308544C4BAD807F321E0C404EC58 * get_address_of_s_Default_5() { return &___s_Default_5; }
inline void set_s_Default_5(XRTrackedObject_t247BBE67D4F9308544C4BAD807F321E0C404EC58 value)
{
___s_Default_5 = value;
}
};
// UnityEngine.XR.ARSubsystems.XRCpuImage/Cinfo
struct Cinfo_t4E32E30AF6973611F1DD0F47FC041ED3A8775DA6
{
public:
// System.Int32 UnityEngine.XR.ARSubsystems.XRCpuImage/Cinfo::m_NativeHandle
int32_t ___m_NativeHandle_0;
// UnityEngine.Vector2Int UnityEngine.XR.ARSubsystems.XRCpuImage/Cinfo::m_Dimensions
Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9 ___m_Dimensions_1;
// System.Int32 UnityEngine.XR.ARSubsystems.XRCpuImage/Cinfo::m_PlaneCount
int32_t ___m_PlaneCount_2;
// System.Double UnityEngine.XR.ARSubsystems.XRCpuImage/Cinfo::m_Timestamp
double ___m_Timestamp_3;
// UnityEngine.XR.ARSubsystems.XRCpuImage/Format UnityEngine.XR.ARSubsystems.XRCpuImage/Cinfo::m_Format
int32_t ___m_Format_4;
public:
inline static int32_t get_offset_of_m_NativeHandle_0() { return static_cast<int32_t>(offsetof(Cinfo_t4E32E30AF6973611F1DD0F47FC041ED3A8775DA6, ___m_NativeHandle_0)); }
inline int32_t get_m_NativeHandle_0() const { return ___m_NativeHandle_0; }
inline int32_t* get_address_of_m_NativeHandle_0() { return &___m_NativeHandle_0; }
inline void set_m_NativeHandle_0(int32_t value)
{
___m_NativeHandle_0 = value;
}
inline static int32_t get_offset_of_m_Dimensions_1() { return static_cast<int32_t>(offsetof(Cinfo_t4E32E30AF6973611F1DD0F47FC041ED3A8775DA6, ___m_Dimensions_1)); }
inline Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9 get_m_Dimensions_1() const { return ___m_Dimensions_1; }
inline Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9 * get_address_of_m_Dimensions_1() { return &___m_Dimensions_1; }
inline void set_m_Dimensions_1(Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9 value)
{
___m_Dimensions_1 = value;
}
inline static int32_t get_offset_of_m_PlaneCount_2() { return static_cast<int32_t>(offsetof(Cinfo_t4E32E30AF6973611F1DD0F47FC041ED3A8775DA6, ___m_PlaneCount_2)); }
inline int32_t get_m_PlaneCount_2() const { return ___m_PlaneCount_2; }
inline int32_t* get_address_of_m_PlaneCount_2() { return &___m_PlaneCount_2; }
inline void set_m_PlaneCount_2(int32_t value)
{
___m_PlaneCount_2 = value;
}
inline static int32_t get_offset_of_m_Timestamp_3() { return static_cast<int32_t>(offsetof(Cinfo_t4E32E30AF6973611F1DD0F47FC041ED3A8775DA6, ___m_Timestamp_3)); }
inline double get_m_Timestamp_3() const { return ___m_Timestamp_3; }
inline double* get_address_of_m_Timestamp_3() { return &___m_Timestamp_3; }
inline void set_m_Timestamp_3(double value)
{
___m_Timestamp_3 = value;
}
inline static int32_t get_offset_of_m_Format_4() { return static_cast<int32_t>(offsetof(Cinfo_t4E32E30AF6973611F1DD0F47FC041ED3A8775DA6, ___m_Format_4)); }
inline int32_t get_m_Format_4() const { return ___m_Format_4; }
inline int32_t* get_address_of_m_Format_4() { return &___m_Format_4; }
inline void set_m_Format_4(int32_t value)
{
___m_Format_4 = value;
}
};
// UnityEngine.XR.ARSubsystems.XRCpuImage/ConversionParams
struct ConversionParams_t3DDB9752BA823641A302D0783C14048D9B09B74A
{
public:
// UnityEngine.RectInt UnityEngine.XR.ARSubsystems.XRCpuImage/ConversionParams::m_InputRect
RectInt_tE7B8105A280C1AC73A4157ED41F9B86C9BD91E49 ___m_InputRect_0;
// UnityEngine.Vector2Int UnityEngine.XR.ARSubsystems.XRCpuImage/ConversionParams::m_OutputDimensions
Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9 ___m_OutputDimensions_1;
// UnityEngine.TextureFormat UnityEngine.XR.ARSubsystems.XRCpuImage/ConversionParams::m_Format
int32_t ___m_Format_2;
// UnityEngine.XR.ARSubsystems.XRCpuImage/Transformation UnityEngine.XR.ARSubsystems.XRCpuImage/ConversionParams::m_Transformation
int32_t ___m_Transformation_3;
public:
inline static int32_t get_offset_of_m_InputRect_0() { return static_cast<int32_t>(offsetof(ConversionParams_t3DDB9752BA823641A302D0783C14048D9B09B74A, ___m_InputRect_0)); }
inline RectInt_tE7B8105A280C1AC73A4157ED41F9B86C9BD91E49 get_m_InputRect_0() const { return ___m_InputRect_0; }
inline RectInt_tE7B8105A280C1AC73A4157ED41F9B86C9BD91E49 * get_address_of_m_InputRect_0() { return &___m_InputRect_0; }
inline void set_m_InputRect_0(RectInt_tE7B8105A280C1AC73A4157ED41F9B86C9BD91E49 value)
{
___m_InputRect_0 = value;
}
inline static int32_t get_offset_of_m_OutputDimensions_1() { return static_cast<int32_t>(offsetof(ConversionParams_t3DDB9752BA823641A302D0783C14048D9B09B74A, ___m_OutputDimensions_1)); }
inline Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9 get_m_OutputDimensions_1() const { return ___m_OutputDimensions_1; }
inline Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9 * get_address_of_m_OutputDimensions_1() { return &___m_OutputDimensions_1; }
inline void set_m_OutputDimensions_1(Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9 value)
{
___m_OutputDimensions_1 = value;
}
inline static int32_t get_offset_of_m_Format_2() { return static_cast<int32_t>(offsetof(ConversionParams_t3DDB9752BA823641A302D0783C14048D9B09B74A, ___m_Format_2)); }
inline int32_t get_m_Format_2() const { return ___m_Format_2; }
inline int32_t* get_address_of_m_Format_2() { return &___m_Format_2; }
inline void set_m_Format_2(int32_t value)
{
___m_Format_2 = value;
}
inline static int32_t get_offset_of_m_Transformation_3() { return static_cast<int32_t>(offsetof(ConversionParams_t3DDB9752BA823641A302D0783C14048D9B09B74A, ___m_Transformation_3)); }
inline int32_t get_m_Transformation_3() const { return ___m_Transformation_3; }
inline int32_t* get_address_of_m_Transformation_3() { return &___m_Transformation_3; }
inline void set_m_Transformation_3(int32_t value)
{
___m_Transformation_3 = value;
}
};
// UnityEngine.XR.ARSubsystems.XRDepthSubsystemDescriptor/Cinfo
struct Cinfo_t37F91E88FCD8623834BE1898FC146620538C08B1
{
public:
// System.String UnityEngine.XR.ARSubsystems.XRDepthSubsystemDescriptor/Cinfo::id
String_t* ___id_0;
// System.Type UnityEngine.XR.ARSubsystems.XRDepthSubsystemDescriptor/Cinfo::<providerType>k__BackingField
Type_t * ___U3CproviderTypeU3Ek__BackingField_1;
// System.Type UnityEngine.XR.ARSubsystems.XRDepthSubsystemDescriptor/Cinfo::<subsystemTypeOverride>k__BackingField
Type_t * ___U3CsubsystemTypeOverrideU3Ek__BackingField_2;
// System.Type UnityEngine.XR.ARSubsystems.XRDepthSubsystemDescriptor/Cinfo::implementationType
Type_t * ___implementationType_3;
// UnityEngine.XR.ARSubsystems.XRDepthSubsystemDescriptor/Capabilities UnityEngine.XR.ARSubsystems.XRDepthSubsystemDescriptor/Cinfo::<capabilities>k__BackingField
int32_t ___U3CcapabilitiesU3Ek__BackingField_4;
public:
inline static int32_t get_offset_of_id_0() { return static_cast<int32_t>(offsetof(Cinfo_t37F91E88FCD8623834BE1898FC146620538C08B1, ___id_0)); }
inline String_t* get_id_0() const { return ___id_0; }
inline String_t** get_address_of_id_0() { return &___id_0; }
inline void set_id_0(String_t* value)
{
___id_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___id_0), (void*)value);
}
inline static int32_t get_offset_of_U3CproviderTypeU3Ek__BackingField_1() { return static_cast<int32_t>(offsetof(Cinfo_t37F91E88FCD8623834BE1898FC146620538C08B1, ___U3CproviderTypeU3Ek__BackingField_1)); }
inline Type_t * get_U3CproviderTypeU3Ek__BackingField_1() const { return ___U3CproviderTypeU3Ek__BackingField_1; }
inline Type_t ** get_address_of_U3CproviderTypeU3Ek__BackingField_1() { return &___U3CproviderTypeU3Ek__BackingField_1; }
inline void set_U3CproviderTypeU3Ek__BackingField_1(Type_t * value)
{
___U3CproviderTypeU3Ek__BackingField_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CproviderTypeU3Ek__BackingField_1), (void*)value);
}
inline static int32_t get_offset_of_U3CsubsystemTypeOverrideU3Ek__BackingField_2() { return static_cast<int32_t>(offsetof(Cinfo_t37F91E88FCD8623834BE1898FC146620538C08B1, ___U3CsubsystemTypeOverrideU3Ek__BackingField_2)); }
inline Type_t * get_U3CsubsystemTypeOverrideU3Ek__BackingField_2() const { return ___U3CsubsystemTypeOverrideU3Ek__BackingField_2; }
inline Type_t ** get_address_of_U3CsubsystemTypeOverrideU3Ek__BackingField_2() { return &___U3CsubsystemTypeOverrideU3Ek__BackingField_2; }
inline void set_U3CsubsystemTypeOverrideU3Ek__BackingField_2(Type_t * value)
{
___U3CsubsystemTypeOverrideU3Ek__BackingField_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CsubsystemTypeOverrideU3Ek__BackingField_2), (void*)value);
}
inline static int32_t get_offset_of_implementationType_3() { return static_cast<int32_t>(offsetof(Cinfo_t37F91E88FCD8623834BE1898FC146620538C08B1, ___implementationType_3)); }
inline Type_t * get_implementationType_3() const { return ___implementationType_3; }
inline Type_t ** get_address_of_implementationType_3() { return &___implementationType_3; }
inline void set_implementationType_3(Type_t * value)
{
___implementationType_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___implementationType_3), (void*)value);
}
inline static int32_t get_offset_of_U3CcapabilitiesU3Ek__BackingField_4() { return static_cast<int32_t>(offsetof(Cinfo_t37F91E88FCD8623834BE1898FC146620538C08B1, ___U3CcapabilitiesU3Ek__BackingField_4)); }
inline int32_t get_U3CcapabilitiesU3Ek__BackingField_4() const { return ___U3CcapabilitiesU3Ek__BackingField_4; }
inline int32_t* get_address_of_U3CcapabilitiesU3Ek__BackingField_4() { return &___U3CcapabilitiesU3Ek__BackingField_4; }
inline void set_U3CcapabilitiesU3Ek__BackingField_4(int32_t value)
{
___U3CcapabilitiesU3Ek__BackingField_4 = value;
}
};
// Native definition for P/Invoke marshalling of UnityEngine.XR.ARSubsystems.XRDepthSubsystemDescriptor/Cinfo
struct Cinfo_t37F91E88FCD8623834BE1898FC146620538C08B1_marshaled_pinvoke
{
char* ___id_0;
Type_t * ___U3CproviderTypeU3Ek__BackingField_1;
Type_t * ___U3CsubsystemTypeOverrideU3Ek__BackingField_2;
Type_t * ___implementationType_3;
int32_t ___U3CcapabilitiesU3Ek__BackingField_4;
};
// Native definition for COM marshalling of UnityEngine.XR.ARSubsystems.XRDepthSubsystemDescriptor/Cinfo
struct Cinfo_t37F91E88FCD8623834BE1898FC146620538C08B1_marshaled_com
{
Il2CppChar* ___id_0;
Type_t * ___U3CproviderTypeU3Ek__BackingField_1;
Type_t * ___U3CsubsystemTypeOverrideU3Ek__BackingField_2;
Type_t * ___implementationType_3;
int32_t ___U3CcapabilitiesU3Ek__BackingField_4;
};
// UnityEngine.XR.ARSubsystems.XRRaycastSubsystemDescriptor/Cinfo
struct Cinfo_tAC330BB49E2D0C7E18C66AB4018927A6EC856E01
{
public:
// System.String UnityEngine.XR.ARSubsystems.XRRaycastSubsystemDescriptor/Cinfo::<id>k__BackingField
String_t* ___U3CidU3Ek__BackingField_0;
// System.Type UnityEngine.XR.ARSubsystems.XRRaycastSubsystemDescriptor/Cinfo::<providerType>k__BackingField
Type_t * ___U3CproviderTypeU3Ek__BackingField_1;
// System.Type UnityEngine.XR.ARSubsystems.XRRaycastSubsystemDescriptor/Cinfo::<subsystemTypeOverride>k__BackingField
Type_t * ___U3CsubsystemTypeOverrideU3Ek__BackingField_2;
// System.Type UnityEngine.XR.ARSubsystems.XRRaycastSubsystemDescriptor/Cinfo::<subsystemImplementationType>k__BackingField
Type_t * ___U3CsubsystemImplementationTypeU3Ek__BackingField_3;
// System.Boolean UnityEngine.XR.ARSubsystems.XRRaycastSubsystemDescriptor/Cinfo::<supportsViewportBasedRaycast>k__BackingField
bool ___U3CsupportsViewportBasedRaycastU3Ek__BackingField_4;
// System.Boolean UnityEngine.XR.ARSubsystems.XRRaycastSubsystemDescriptor/Cinfo::<supportsWorldBasedRaycast>k__BackingField
bool ___U3CsupportsWorldBasedRaycastU3Ek__BackingField_5;
// UnityEngine.XR.ARSubsystems.TrackableType UnityEngine.XR.ARSubsystems.XRRaycastSubsystemDescriptor/Cinfo::<supportedTrackableTypes>k__BackingField
int32_t ___U3CsupportedTrackableTypesU3Ek__BackingField_6;
// System.Boolean UnityEngine.XR.ARSubsystems.XRRaycastSubsystemDescriptor/Cinfo::<supportsTrackedRaycasts>k__BackingField
bool ___U3CsupportsTrackedRaycastsU3Ek__BackingField_7;
public:
inline static int32_t get_offset_of_U3CidU3Ek__BackingField_0() { return static_cast<int32_t>(offsetof(Cinfo_tAC330BB49E2D0C7E18C66AB4018927A6EC856E01, ___U3CidU3Ek__BackingField_0)); }
inline String_t* get_U3CidU3Ek__BackingField_0() const { return ___U3CidU3Ek__BackingField_0; }
inline String_t** get_address_of_U3CidU3Ek__BackingField_0() { return &___U3CidU3Ek__BackingField_0; }
inline void set_U3CidU3Ek__BackingField_0(String_t* value)
{
___U3CidU3Ek__BackingField_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CidU3Ek__BackingField_0), (void*)value);
}
inline static int32_t get_offset_of_U3CproviderTypeU3Ek__BackingField_1() { return static_cast<int32_t>(offsetof(Cinfo_tAC330BB49E2D0C7E18C66AB4018927A6EC856E01, ___U3CproviderTypeU3Ek__BackingField_1)); }
inline Type_t * get_U3CproviderTypeU3Ek__BackingField_1() const { return ___U3CproviderTypeU3Ek__BackingField_1; }
inline Type_t ** get_address_of_U3CproviderTypeU3Ek__BackingField_1() { return &___U3CproviderTypeU3Ek__BackingField_1; }
inline void set_U3CproviderTypeU3Ek__BackingField_1(Type_t * value)
{
___U3CproviderTypeU3Ek__BackingField_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CproviderTypeU3Ek__BackingField_1), (void*)value);
}
inline static int32_t get_offset_of_U3CsubsystemTypeOverrideU3Ek__BackingField_2() { return static_cast<int32_t>(offsetof(Cinfo_tAC330BB49E2D0C7E18C66AB4018927A6EC856E01, ___U3CsubsystemTypeOverrideU3Ek__BackingField_2)); }
inline Type_t * get_U3CsubsystemTypeOverrideU3Ek__BackingField_2() const { return ___U3CsubsystemTypeOverrideU3Ek__BackingField_2; }
inline Type_t ** get_address_of_U3CsubsystemTypeOverrideU3Ek__BackingField_2() { return &___U3CsubsystemTypeOverrideU3Ek__BackingField_2; }
inline void set_U3CsubsystemTypeOverrideU3Ek__BackingField_2(Type_t * value)
{
___U3CsubsystemTypeOverrideU3Ek__BackingField_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CsubsystemTypeOverrideU3Ek__BackingField_2), (void*)value);
}
inline static int32_t get_offset_of_U3CsubsystemImplementationTypeU3Ek__BackingField_3() { return static_cast<int32_t>(offsetof(Cinfo_tAC330BB49E2D0C7E18C66AB4018927A6EC856E01, ___U3CsubsystemImplementationTypeU3Ek__BackingField_3)); }
inline Type_t * get_U3CsubsystemImplementationTypeU3Ek__BackingField_3() const { return ___U3CsubsystemImplementationTypeU3Ek__BackingField_3; }
inline Type_t ** get_address_of_U3CsubsystemImplementationTypeU3Ek__BackingField_3() { return &___U3CsubsystemImplementationTypeU3Ek__BackingField_3; }
inline void set_U3CsubsystemImplementationTypeU3Ek__BackingField_3(Type_t * value)
{
___U3CsubsystemImplementationTypeU3Ek__BackingField_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CsubsystemImplementationTypeU3Ek__BackingField_3), (void*)value);
}
inline static int32_t get_offset_of_U3CsupportsViewportBasedRaycastU3Ek__BackingField_4() { return static_cast<int32_t>(offsetof(Cinfo_tAC330BB49E2D0C7E18C66AB4018927A6EC856E01, ___U3CsupportsViewportBasedRaycastU3Ek__BackingField_4)); }
inline bool get_U3CsupportsViewportBasedRaycastU3Ek__BackingField_4() const { return ___U3CsupportsViewportBasedRaycastU3Ek__BackingField_4; }
inline bool* get_address_of_U3CsupportsViewportBasedRaycastU3Ek__BackingField_4() { return &___U3CsupportsViewportBasedRaycastU3Ek__BackingField_4; }
inline void set_U3CsupportsViewportBasedRaycastU3Ek__BackingField_4(bool value)
{
___U3CsupportsViewportBasedRaycastU3Ek__BackingField_4 = value;
}
inline static int32_t get_offset_of_U3CsupportsWorldBasedRaycastU3Ek__BackingField_5() { return static_cast<int32_t>(offsetof(Cinfo_tAC330BB49E2D0C7E18C66AB4018927A6EC856E01, ___U3CsupportsWorldBasedRaycastU3Ek__BackingField_5)); }
inline bool get_U3CsupportsWorldBasedRaycastU3Ek__BackingField_5() const { return ___U3CsupportsWorldBasedRaycastU3Ek__BackingField_5; }
inline bool* get_address_of_U3CsupportsWorldBasedRaycastU3Ek__BackingField_5() { return &___U3CsupportsWorldBasedRaycastU3Ek__BackingField_5; }
inline void set_U3CsupportsWorldBasedRaycastU3Ek__BackingField_5(bool value)
{
___U3CsupportsWorldBasedRaycastU3Ek__BackingField_5 = value;
}
inline static int32_t get_offset_of_U3CsupportedTrackableTypesU3Ek__BackingField_6() { return static_cast<int32_t>(offsetof(Cinfo_tAC330BB49E2D0C7E18C66AB4018927A6EC856E01, ___U3CsupportedTrackableTypesU3Ek__BackingField_6)); }
inline int32_t get_U3CsupportedTrackableTypesU3Ek__BackingField_6() const { return ___U3CsupportedTrackableTypesU3Ek__BackingField_6; }
inline int32_t* get_address_of_U3CsupportedTrackableTypesU3Ek__BackingField_6() { return &___U3CsupportedTrackableTypesU3Ek__BackingField_6; }
inline void set_U3CsupportedTrackableTypesU3Ek__BackingField_6(int32_t value)
{
___U3CsupportedTrackableTypesU3Ek__BackingField_6 = value;
}
inline static int32_t get_offset_of_U3CsupportsTrackedRaycastsU3Ek__BackingField_7() { return static_cast<int32_t>(offsetof(Cinfo_tAC330BB49E2D0C7E18C66AB4018927A6EC856E01, ___U3CsupportsTrackedRaycastsU3Ek__BackingField_7)); }
inline bool get_U3CsupportsTrackedRaycastsU3Ek__BackingField_7() const { return ___U3CsupportsTrackedRaycastsU3Ek__BackingField_7; }
inline bool* get_address_of_U3CsupportsTrackedRaycastsU3Ek__BackingField_7() { return &___U3CsupportsTrackedRaycastsU3Ek__BackingField_7; }
inline void set_U3CsupportsTrackedRaycastsU3Ek__BackingField_7(bool value)
{
___U3CsupportsTrackedRaycastsU3Ek__BackingField_7 = value;
}
};
// Native definition for P/Invoke marshalling of UnityEngine.XR.ARSubsystems.XRRaycastSubsystemDescriptor/Cinfo
struct Cinfo_tAC330BB49E2D0C7E18C66AB4018927A6EC856E01_marshaled_pinvoke
{
char* ___U3CidU3Ek__BackingField_0;
Type_t * ___U3CproviderTypeU3Ek__BackingField_1;
Type_t * ___U3CsubsystemTypeOverrideU3Ek__BackingField_2;
Type_t * ___U3CsubsystemImplementationTypeU3Ek__BackingField_3;
int32_t ___U3CsupportsViewportBasedRaycastU3Ek__BackingField_4;
int32_t ___U3CsupportsWorldBasedRaycastU3Ek__BackingField_5;
int32_t ___U3CsupportedTrackableTypesU3Ek__BackingField_6;
int32_t ___U3CsupportsTrackedRaycastsU3Ek__BackingField_7;
};
// Native definition for COM marshalling of UnityEngine.XR.ARSubsystems.XRRaycastSubsystemDescriptor/Cinfo
struct Cinfo_tAC330BB49E2D0C7E18C66AB4018927A6EC856E01_marshaled_com
{
Il2CppChar* ___U3CidU3Ek__BackingField_0;
Type_t * ___U3CproviderTypeU3Ek__BackingField_1;
Type_t * ___U3CsubsystemTypeOverrideU3Ek__BackingField_2;
Type_t * ___U3CsubsystemImplementationTypeU3Ek__BackingField_3;
int32_t ___U3CsupportsViewportBasedRaycastU3Ek__BackingField_4;
int32_t ___U3CsupportsWorldBasedRaycastU3Ek__BackingField_5;
int32_t ___U3CsupportedTrackableTypesU3Ek__BackingField_6;
int32_t ___U3CsupportsTrackedRaycastsU3Ek__BackingField_7;
};
// System.Action`3<UnityEngine.XR.ARSubsystems.XRCpuImage/AsyncConversionStatus,UnityEngine.XR.ARSubsystems.XRCpuImage/ConversionParams,Unity.Collections.NativeArray`1<System.Byte>>
struct Action_3_t491A69D5891B04C314FECFC351B618D160286E6E : public MulticastDelegate_t
{
public:
public:
};
// System.Func`1<System.Boolean>
struct Func_1_t76FCDA5C58178ED310C472967481FDE5F47DCF0F : public MulticastDelegate_t
{
public:
public:
};
// UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.BoundedPlane>
struct TrackableChanges_1_t8B0834EED4AC44A71FC9071BDA349BA9D8FE0717
{
public:
// System.Boolean UnityEngine.XR.ARSubsystems.TrackableChanges`1::<isCreated>k__BackingField
bool ___U3CisCreatedU3Ek__BackingField_0;
// Unity.Collections.NativeArray`1<T> UnityEngine.XR.ARSubsystems.TrackableChanges`1::m_Added
NativeArray_1_t056649BD2D6D7DDC87945B1C2AEE66C39F4667B3 ___m_Added_1;
// Unity.Collections.NativeArray`1<T> UnityEngine.XR.ARSubsystems.TrackableChanges`1::m_Updated
NativeArray_1_t056649BD2D6D7DDC87945B1C2AEE66C39F4667B3 ___m_Updated_2;
// Unity.Collections.NativeArray`1<UnityEngine.XR.ARSubsystems.TrackableId> UnityEngine.XR.ARSubsystems.TrackableChanges`1::m_Removed
NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 ___m_Removed_3;
public:
inline static int32_t get_offset_of_U3CisCreatedU3Ek__BackingField_0() { return static_cast<int32_t>(offsetof(TrackableChanges_1_t8B0834EED4AC44A71FC9071BDA349BA9D8FE0717, ___U3CisCreatedU3Ek__BackingField_0)); }
inline bool get_U3CisCreatedU3Ek__BackingField_0() const { return ___U3CisCreatedU3Ek__BackingField_0; }
inline bool* get_address_of_U3CisCreatedU3Ek__BackingField_0() { return &___U3CisCreatedU3Ek__BackingField_0; }
inline void set_U3CisCreatedU3Ek__BackingField_0(bool value)
{
___U3CisCreatedU3Ek__BackingField_0 = value;
}
inline static int32_t get_offset_of_m_Added_1() { return static_cast<int32_t>(offsetof(TrackableChanges_1_t8B0834EED4AC44A71FC9071BDA349BA9D8FE0717, ___m_Added_1)); }
inline NativeArray_1_t056649BD2D6D7DDC87945B1C2AEE66C39F4667B3 get_m_Added_1() const { return ___m_Added_1; }
inline NativeArray_1_t056649BD2D6D7DDC87945B1C2AEE66C39F4667B3 * get_address_of_m_Added_1() { return &___m_Added_1; }
inline void set_m_Added_1(NativeArray_1_t056649BD2D6D7DDC87945B1C2AEE66C39F4667B3 value)
{
___m_Added_1 = value;
}
inline static int32_t get_offset_of_m_Updated_2() { return static_cast<int32_t>(offsetof(TrackableChanges_1_t8B0834EED4AC44A71FC9071BDA349BA9D8FE0717, ___m_Updated_2)); }
inline NativeArray_1_t056649BD2D6D7DDC87945B1C2AEE66C39F4667B3 get_m_Updated_2() const { return ___m_Updated_2; }
inline NativeArray_1_t056649BD2D6D7DDC87945B1C2AEE66C39F4667B3 * get_address_of_m_Updated_2() { return &___m_Updated_2; }
inline void set_m_Updated_2(NativeArray_1_t056649BD2D6D7DDC87945B1C2AEE66C39F4667B3 value)
{
___m_Updated_2 = value;
}
inline static int32_t get_offset_of_m_Removed_3() { return static_cast<int32_t>(offsetof(TrackableChanges_1_t8B0834EED4AC44A71FC9071BDA349BA9D8FE0717, ___m_Removed_3)); }
inline NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 get_m_Removed_3() const { return ___m_Removed_3; }
inline NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 * get_address_of_m_Removed_3() { return &___m_Removed_3; }
inline void set_m_Removed_3(NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 value)
{
___m_Removed_3 = value;
}
};
// UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.XRAnchor>
struct TrackableChanges_1_tF38314CFF715F232D6DA3415FD2F68CE504CFF9B
{
public:
// System.Boolean UnityEngine.XR.ARSubsystems.TrackableChanges`1::<isCreated>k__BackingField
bool ___U3CisCreatedU3Ek__BackingField_0;
// Unity.Collections.NativeArray`1<T> UnityEngine.XR.ARSubsystems.TrackableChanges`1::m_Added
NativeArray_1_tC0FA6F80F8C779BABF802ACD23BC7304CA5FD5E9 ___m_Added_1;
// Unity.Collections.NativeArray`1<T> UnityEngine.XR.ARSubsystems.TrackableChanges`1::m_Updated
NativeArray_1_tC0FA6F80F8C779BABF802ACD23BC7304CA5FD5E9 ___m_Updated_2;
// Unity.Collections.NativeArray`1<UnityEngine.XR.ARSubsystems.TrackableId> UnityEngine.XR.ARSubsystems.TrackableChanges`1::m_Removed
NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 ___m_Removed_3;
public:
inline static int32_t get_offset_of_U3CisCreatedU3Ek__BackingField_0() { return static_cast<int32_t>(offsetof(TrackableChanges_1_tF38314CFF715F232D6DA3415FD2F68CE504CFF9B, ___U3CisCreatedU3Ek__BackingField_0)); }
inline bool get_U3CisCreatedU3Ek__BackingField_0() const { return ___U3CisCreatedU3Ek__BackingField_0; }
inline bool* get_address_of_U3CisCreatedU3Ek__BackingField_0() { return &___U3CisCreatedU3Ek__BackingField_0; }
inline void set_U3CisCreatedU3Ek__BackingField_0(bool value)
{
___U3CisCreatedU3Ek__BackingField_0 = value;
}
inline static int32_t get_offset_of_m_Added_1() { return static_cast<int32_t>(offsetof(TrackableChanges_1_tF38314CFF715F232D6DA3415FD2F68CE504CFF9B, ___m_Added_1)); }
inline NativeArray_1_tC0FA6F80F8C779BABF802ACD23BC7304CA5FD5E9 get_m_Added_1() const { return ___m_Added_1; }
inline NativeArray_1_tC0FA6F80F8C779BABF802ACD23BC7304CA5FD5E9 * get_address_of_m_Added_1() { return &___m_Added_1; }
inline void set_m_Added_1(NativeArray_1_tC0FA6F80F8C779BABF802ACD23BC7304CA5FD5E9 value)
{
___m_Added_1 = value;
}
inline static int32_t get_offset_of_m_Updated_2() { return static_cast<int32_t>(offsetof(TrackableChanges_1_tF38314CFF715F232D6DA3415FD2F68CE504CFF9B, ___m_Updated_2)); }
inline NativeArray_1_tC0FA6F80F8C779BABF802ACD23BC7304CA5FD5E9 get_m_Updated_2() const { return ___m_Updated_2; }
inline NativeArray_1_tC0FA6F80F8C779BABF802ACD23BC7304CA5FD5E9 * get_address_of_m_Updated_2() { return &___m_Updated_2; }
inline void set_m_Updated_2(NativeArray_1_tC0FA6F80F8C779BABF802ACD23BC7304CA5FD5E9 value)
{
___m_Updated_2 = value;
}
inline static int32_t get_offset_of_m_Removed_3() { return static_cast<int32_t>(offsetof(TrackableChanges_1_tF38314CFF715F232D6DA3415FD2F68CE504CFF9B, ___m_Removed_3)); }
inline NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 get_m_Removed_3() const { return ___m_Removed_3; }
inline NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 * get_address_of_m_Removed_3() { return &___m_Removed_3; }
inline void set_m_Removed_3(NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 value)
{
___m_Removed_3 = value;
}
};
// UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.XREnvironmentProbe>
struct TrackableChanges_1_tBC1B6352E3D11F9F7BC4E567480BDF8AE39A547F
{
public:
// System.Boolean UnityEngine.XR.ARSubsystems.TrackableChanges`1::<isCreated>k__BackingField
bool ___U3CisCreatedU3Ek__BackingField_0;
// Unity.Collections.NativeArray`1<T> UnityEngine.XR.ARSubsystems.TrackableChanges`1::m_Added
NativeArray_1_t901047647D1B0577009EA387273335B841552234 ___m_Added_1;
// Unity.Collections.NativeArray`1<T> UnityEngine.XR.ARSubsystems.TrackableChanges`1::m_Updated
NativeArray_1_t901047647D1B0577009EA387273335B841552234 ___m_Updated_2;
// Unity.Collections.NativeArray`1<UnityEngine.XR.ARSubsystems.TrackableId> UnityEngine.XR.ARSubsystems.TrackableChanges`1::m_Removed
NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 ___m_Removed_3;
public:
inline static int32_t get_offset_of_U3CisCreatedU3Ek__BackingField_0() { return static_cast<int32_t>(offsetof(TrackableChanges_1_tBC1B6352E3D11F9F7BC4E567480BDF8AE39A547F, ___U3CisCreatedU3Ek__BackingField_0)); }
inline bool get_U3CisCreatedU3Ek__BackingField_0() const { return ___U3CisCreatedU3Ek__BackingField_0; }
inline bool* get_address_of_U3CisCreatedU3Ek__BackingField_0() { return &___U3CisCreatedU3Ek__BackingField_0; }
inline void set_U3CisCreatedU3Ek__BackingField_0(bool value)
{
___U3CisCreatedU3Ek__BackingField_0 = value;
}
inline static int32_t get_offset_of_m_Added_1() { return static_cast<int32_t>(offsetof(TrackableChanges_1_tBC1B6352E3D11F9F7BC4E567480BDF8AE39A547F, ___m_Added_1)); }
inline NativeArray_1_t901047647D1B0577009EA387273335B841552234 get_m_Added_1() const { return ___m_Added_1; }
inline NativeArray_1_t901047647D1B0577009EA387273335B841552234 * get_address_of_m_Added_1() { return &___m_Added_1; }
inline void set_m_Added_1(NativeArray_1_t901047647D1B0577009EA387273335B841552234 value)
{
___m_Added_1 = value;
}
inline static int32_t get_offset_of_m_Updated_2() { return static_cast<int32_t>(offsetof(TrackableChanges_1_tBC1B6352E3D11F9F7BC4E567480BDF8AE39A547F, ___m_Updated_2)); }
inline NativeArray_1_t901047647D1B0577009EA387273335B841552234 get_m_Updated_2() const { return ___m_Updated_2; }
inline NativeArray_1_t901047647D1B0577009EA387273335B841552234 * get_address_of_m_Updated_2() { return &___m_Updated_2; }
inline void set_m_Updated_2(NativeArray_1_t901047647D1B0577009EA387273335B841552234 value)
{
___m_Updated_2 = value;
}
inline static int32_t get_offset_of_m_Removed_3() { return static_cast<int32_t>(offsetof(TrackableChanges_1_tBC1B6352E3D11F9F7BC4E567480BDF8AE39A547F, ___m_Removed_3)); }
inline NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 get_m_Removed_3() const { return ___m_Removed_3; }
inline NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 * get_address_of_m_Removed_3() { return &___m_Removed_3; }
inline void set_m_Removed_3(NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 value)
{
___m_Removed_3 = value;
}
};
// UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.XRFace>
struct TrackableChanges_1_t4155663F6D60090D5E988A2EB1E4A782792ADA63
{
public:
// System.Boolean UnityEngine.XR.ARSubsystems.TrackableChanges`1::<isCreated>k__BackingField
bool ___U3CisCreatedU3Ek__BackingField_0;
// Unity.Collections.NativeArray`1<T> UnityEngine.XR.ARSubsystems.TrackableChanges`1::m_Added
NativeArray_1_t176B5BDE49F181D4851D8B2230677A558EFC5E55 ___m_Added_1;
// Unity.Collections.NativeArray`1<T> UnityEngine.XR.ARSubsystems.TrackableChanges`1::m_Updated
NativeArray_1_t176B5BDE49F181D4851D8B2230677A558EFC5E55 ___m_Updated_2;
// Unity.Collections.NativeArray`1<UnityEngine.XR.ARSubsystems.TrackableId> UnityEngine.XR.ARSubsystems.TrackableChanges`1::m_Removed
NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 ___m_Removed_3;
public:
inline static int32_t get_offset_of_U3CisCreatedU3Ek__BackingField_0() { return static_cast<int32_t>(offsetof(TrackableChanges_1_t4155663F6D60090D5E988A2EB1E4A782792ADA63, ___U3CisCreatedU3Ek__BackingField_0)); }
inline bool get_U3CisCreatedU3Ek__BackingField_0() const { return ___U3CisCreatedU3Ek__BackingField_0; }
inline bool* get_address_of_U3CisCreatedU3Ek__BackingField_0() { return &___U3CisCreatedU3Ek__BackingField_0; }
inline void set_U3CisCreatedU3Ek__BackingField_0(bool value)
{
___U3CisCreatedU3Ek__BackingField_0 = value;
}
inline static int32_t get_offset_of_m_Added_1() { return static_cast<int32_t>(offsetof(TrackableChanges_1_t4155663F6D60090D5E988A2EB1E4A782792ADA63, ___m_Added_1)); }
inline NativeArray_1_t176B5BDE49F181D4851D8B2230677A558EFC5E55 get_m_Added_1() const { return ___m_Added_1; }
inline NativeArray_1_t176B5BDE49F181D4851D8B2230677A558EFC5E55 * get_address_of_m_Added_1() { return &___m_Added_1; }
inline void set_m_Added_1(NativeArray_1_t176B5BDE49F181D4851D8B2230677A558EFC5E55 value)
{
___m_Added_1 = value;
}
inline static int32_t get_offset_of_m_Updated_2() { return static_cast<int32_t>(offsetof(TrackableChanges_1_t4155663F6D60090D5E988A2EB1E4A782792ADA63, ___m_Updated_2)); }
inline NativeArray_1_t176B5BDE49F181D4851D8B2230677A558EFC5E55 get_m_Updated_2() const { return ___m_Updated_2; }
inline NativeArray_1_t176B5BDE49F181D4851D8B2230677A558EFC5E55 * get_address_of_m_Updated_2() { return &___m_Updated_2; }
inline void set_m_Updated_2(NativeArray_1_t176B5BDE49F181D4851D8B2230677A558EFC5E55 value)
{
___m_Updated_2 = value;
}
inline static int32_t get_offset_of_m_Removed_3() { return static_cast<int32_t>(offsetof(TrackableChanges_1_t4155663F6D60090D5E988A2EB1E4A782792ADA63, ___m_Removed_3)); }
inline NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 get_m_Removed_3() const { return ___m_Removed_3; }
inline NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 * get_address_of_m_Removed_3() { return &___m_Removed_3; }
inline void set_m_Removed_3(NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 value)
{
___m_Removed_3 = value;
}
};
// UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.XRHumanBody>
struct TrackableChanges_1_t4BEBDDB9C8CBFF65EC7028CE5BA562A5728C8B82
{
public:
// System.Boolean UnityEngine.XR.ARSubsystems.TrackableChanges`1::<isCreated>k__BackingField
bool ___U3CisCreatedU3Ek__BackingField_0;
// Unity.Collections.NativeArray`1<T> UnityEngine.XR.ARSubsystems.TrackableChanges`1::m_Added
NativeArray_1_t6C80982A5077ED9524455B5005D72276BA2ECB62 ___m_Added_1;
// Unity.Collections.NativeArray`1<T> UnityEngine.XR.ARSubsystems.TrackableChanges`1::m_Updated
NativeArray_1_t6C80982A5077ED9524455B5005D72276BA2ECB62 ___m_Updated_2;
// Unity.Collections.NativeArray`1<UnityEngine.XR.ARSubsystems.TrackableId> UnityEngine.XR.ARSubsystems.TrackableChanges`1::m_Removed
NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 ___m_Removed_3;
public:
inline static int32_t get_offset_of_U3CisCreatedU3Ek__BackingField_0() { return static_cast<int32_t>(offsetof(TrackableChanges_1_t4BEBDDB9C8CBFF65EC7028CE5BA562A5728C8B82, ___U3CisCreatedU3Ek__BackingField_0)); }
inline bool get_U3CisCreatedU3Ek__BackingField_0() const { return ___U3CisCreatedU3Ek__BackingField_0; }
inline bool* get_address_of_U3CisCreatedU3Ek__BackingField_0() { return &___U3CisCreatedU3Ek__BackingField_0; }
inline void set_U3CisCreatedU3Ek__BackingField_0(bool value)
{
___U3CisCreatedU3Ek__BackingField_0 = value;
}
inline static int32_t get_offset_of_m_Added_1() { return static_cast<int32_t>(offsetof(TrackableChanges_1_t4BEBDDB9C8CBFF65EC7028CE5BA562A5728C8B82, ___m_Added_1)); }
inline NativeArray_1_t6C80982A5077ED9524455B5005D72276BA2ECB62 get_m_Added_1() const { return ___m_Added_1; }
inline NativeArray_1_t6C80982A5077ED9524455B5005D72276BA2ECB62 * get_address_of_m_Added_1() { return &___m_Added_1; }
inline void set_m_Added_1(NativeArray_1_t6C80982A5077ED9524455B5005D72276BA2ECB62 value)
{
___m_Added_1 = value;
}
inline static int32_t get_offset_of_m_Updated_2() { return static_cast<int32_t>(offsetof(TrackableChanges_1_t4BEBDDB9C8CBFF65EC7028CE5BA562A5728C8B82, ___m_Updated_2)); }
inline NativeArray_1_t6C80982A5077ED9524455B5005D72276BA2ECB62 get_m_Updated_2() const { return ___m_Updated_2; }
inline NativeArray_1_t6C80982A5077ED9524455B5005D72276BA2ECB62 * get_address_of_m_Updated_2() { return &___m_Updated_2; }
inline void set_m_Updated_2(NativeArray_1_t6C80982A5077ED9524455B5005D72276BA2ECB62 value)
{
___m_Updated_2 = value;
}
inline static int32_t get_offset_of_m_Removed_3() { return static_cast<int32_t>(offsetof(TrackableChanges_1_t4BEBDDB9C8CBFF65EC7028CE5BA562A5728C8B82, ___m_Removed_3)); }
inline NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 get_m_Removed_3() const { return ___m_Removed_3; }
inline NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 * get_address_of_m_Removed_3() { return &___m_Removed_3; }
inline void set_m_Removed_3(NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 value)
{
___m_Removed_3 = value;
}
};
// UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.XRParticipant>
struct TrackableChanges_1_tCBDEADFC15FC0570F012431A5227C2E6B92BAC3F
{
public:
// System.Boolean UnityEngine.XR.ARSubsystems.TrackableChanges`1::<isCreated>k__BackingField
bool ___U3CisCreatedU3Ek__BackingField_0;
// Unity.Collections.NativeArray`1<T> UnityEngine.XR.ARSubsystems.TrackableChanges`1::m_Added
NativeArray_1_t20D7C7F2BCDC04B6238E113A2CA21BBDD326A535 ___m_Added_1;
// Unity.Collections.NativeArray`1<T> UnityEngine.XR.ARSubsystems.TrackableChanges`1::m_Updated
NativeArray_1_t20D7C7F2BCDC04B6238E113A2CA21BBDD326A535 ___m_Updated_2;
// Unity.Collections.NativeArray`1<UnityEngine.XR.ARSubsystems.TrackableId> UnityEngine.XR.ARSubsystems.TrackableChanges`1::m_Removed
NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 ___m_Removed_3;
public:
inline static int32_t get_offset_of_U3CisCreatedU3Ek__BackingField_0() { return static_cast<int32_t>(offsetof(TrackableChanges_1_tCBDEADFC15FC0570F012431A5227C2E6B92BAC3F, ___U3CisCreatedU3Ek__BackingField_0)); }
inline bool get_U3CisCreatedU3Ek__BackingField_0() const { return ___U3CisCreatedU3Ek__BackingField_0; }
inline bool* get_address_of_U3CisCreatedU3Ek__BackingField_0() { return &___U3CisCreatedU3Ek__BackingField_0; }
inline void set_U3CisCreatedU3Ek__BackingField_0(bool value)
{
___U3CisCreatedU3Ek__BackingField_0 = value;
}
inline static int32_t get_offset_of_m_Added_1() { return static_cast<int32_t>(offsetof(TrackableChanges_1_tCBDEADFC15FC0570F012431A5227C2E6B92BAC3F, ___m_Added_1)); }
inline NativeArray_1_t20D7C7F2BCDC04B6238E113A2CA21BBDD326A535 get_m_Added_1() const { return ___m_Added_1; }
inline NativeArray_1_t20D7C7F2BCDC04B6238E113A2CA21BBDD326A535 * get_address_of_m_Added_1() { return &___m_Added_1; }
inline void set_m_Added_1(NativeArray_1_t20D7C7F2BCDC04B6238E113A2CA21BBDD326A535 value)
{
___m_Added_1 = value;
}
inline static int32_t get_offset_of_m_Updated_2() { return static_cast<int32_t>(offsetof(TrackableChanges_1_tCBDEADFC15FC0570F012431A5227C2E6B92BAC3F, ___m_Updated_2)); }
inline NativeArray_1_t20D7C7F2BCDC04B6238E113A2CA21BBDD326A535 get_m_Updated_2() const { return ___m_Updated_2; }
inline NativeArray_1_t20D7C7F2BCDC04B6238E113A2CA21BBDD326A535 * get_address_of_m_Updated_2() { return &___m_Updated_2; }
inline void set_m_Updated_2(NativeArray_1_t20D7C7F2BCDC04B6238E113A2CA21BBDD326A535 value)
{
___m_Updated_2 = value;
}
inline static int32_t get_offset_of_m_Removed_3() { return static_cast<int32_t>(offsetof(TrackableChanges_1_tCBDEADFC15FC0570F012431A5227C2E6B92BAC3F, ___m_Removed_3)); }
inline NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 get_m_Removed_3() const { return ___m_Removed_3; }
inline NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 * get_address_of_m_Removed_3() { return &___m_Removed_3; }
inline void set_m_Removed_3(NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 value)
{
___m_Removed_3 = value;
}
};
// UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.XRPointCloud>
struct TrackableChanges_1_t77AFD32F12A88AC162E5B41E66265CAF9D8E6435
{
public:
// System.Boolean UnityEngine.XR.ARSubsystems.TrackableChanges`1::<isCreated>k__BackingField
bool ___U3CisCreatedU3Ek__BackingField_0;
// Unity.Collections.NativeArray`1<T> UnityEngine.XR.ARSubsystems.TrackableChanges`1::m_Added
NativeArray_1_t535D1A4490F010FAA0D1D1732065C9F9078ED3CA ___m_Added_1;
// Unity.Collections.NativeArray`1<T> UnityEngine.XR.ARSubsystems.TrackableChanges`1::m_Updated
NativeArray_1_t535D1A4490F010FAA0D1D1732065C9F9078ED3CA ___m_Updated_2;
// Unity.Collections.NativeArray`1<UnityEngine.XR.ARSubsystems.TrackableId> UnityEngine.XR.ARSubsystems.TrackableChanges`1::m_Removed
NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 ___m_Removed_3;
public:
inline static int32_t get_offset_of_U3CisCreatedU3Ek__BackingField_0() { return static_cast<int32_t>(offsetof(TrackableChanges_1_t77AFD32F12A88AC162E5B41E66265CAF9D8E6435, ___U3CisCreatedU3Ek__BackingField_0)); }
inline bool get_U3CisCreatedU3Ek__BackingField_0() const { return ___U3CisCreatedU3Ek__BackingField_0; }
inline bool* get_address_of_U3CisCreatedU3Ek__BackingField_0() { return &___U3CisCreatedU3Ek__BackingField_0; }
inline void set_U3CisCreatedU3Ek__BackingField_0(bool value)
{
___U3CisCreatedU3Ek__BackingField_0 = value;
}
inline static int32_t get_offset_of_m_Added_1() { return static_cast<int32_t>(offsetof(TrackableChanges_1_t77AFD32F12A88AC162E5B41E66265CAF9D8E6435, ___m_Added_1)); }
inline NativeArray_1_t535D1A4490F010FAA0D1D1732065C9F9078ED3CA get_m_Added_1() const { return ___m_Added_1; }
inline NativeArray_1_t535D1A4490F010FAA0D1D1732065C9F9078ED3CA * get_address_of_m_Added_1() { return &___m_Added_1; }
inline void set_m_Added_1(NativeArray_1_t535D1A4490F010FAA0D1D1732065C9F9078ED3CA value)
{
___m_Added_1 = value;
}
inline static int32_t get_offset_of_m_Updated_2() { return static_cast<int32_t>(offsetof(TrackableChanges_1_t77AFD32F12A88AC162E5B41E66265CAF9D8E6435, ___m_Updated_2)); }
inline NativeArray_1_t535D1A4490F010FAA0D1D1732065C9F9078ED3CA get_m_Updated_2() const { return ___m_Updated_2; }
inline NativeArray_1_t535D1A4490F010FAA0D1D1732065C9F9078ED3CA * get_address_of_m_Updated_2() { return &___m_Updated_2; }
inline void set_m_Updated_2(NativeArray_1_t535D1A4490F010FAA0D1D1732065C9F9078ED3CA value)
{
___m_Updated_2 = value;
}
inline static int32_t get_offset_of_m_Removed_3() { return static_cast<int32_t>(offsetof(TrackableChanges_1_t77AFD32F12A88AC162E5B41E66265CAF9D8E6435, ___m_Removed_3)); }
inline NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 get_m_Removed_3() const { return ___m_Removed_3; }
inline NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 * get_address_of_m_Removed_3() { return &___m_Removed_3; }
inline void set_m_Removed_3(NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 value)
{
___m_Removed_3 = value;
}
};
// UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.XRRaycast>
struct TrackableChanges_1_t092C2BBB89690C350B949DDFFA9F551F85536ED3
{
public:
// System.Boolean UnityEngine.XR.ARSubsystems.TrackableChanges`1::<isCreated>k__BackingField
bool ___U3CisCreatedU3Ek__BackingField_0;
// Unity.Collections.NativeArray`1<T> UnityEngine.XR.ARSubsystems.TrackableChanges`1::m_Added
NativeArray_1_t7CC8D0A91D6B929CE8AF86EF904CA11B5437074E ___m_Added_1;
// Unity.Collections.NativeArray`1<T> UnityEngine.XR.ARSubsystems.TrackableChanges`1::m_Updated
NativeArray_1_t7CC8D0A91D6B929CE8AF86EF904CA11B5437074E ___m_Updated_2;
// Unity.Collections.NativeArray`1<UnityEngine.XR.ARSubsystems.TrackableId> UnityEngine.XR.ARSubsystems.TrackableChanges`1::m_Removed
NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 ___m_Removed_3;
public:
inline static int32_t get_offset_of_U3CisCreatedU3Ek__BackingField_0() { return static_cast<int32_t>(offsetof(TrackableChanges_1_t092C2BBB89690C350B949DDFFA9F551F85536ED3, ___U3CisCreatedU3Ek__BackingField_0)); }
inline bool get_U3CisCreatedU3Ek__BackingField_0() const { return ___U3CisCreatedU3Ek__BackingField_0; }
inline bool* get_address_of_U3CisCreatedU3Ek__BackingField_0() { return &___U3CisCreatedU3Ek__BackingField_0; }
inline void set_U3CisCreatedU3Ek__BackingField_0(bool value)
{
___U3CisCreatedU3Ek__BackingField_0 = value;
}
inline static int32_t get_offset_of_m_Added_1() { return static_cast<int32_t>(offsetof(TrackableChanges_1_t092C2BBB89690C350B949DDFFA9F551F85536ED3, ___m_Added_1)); }
inline NativeArray_1_t7CC8D0A91D6B929CE8AF86EF904CA11B5437074E get_m_Added_1() const { return ___m_Added_1; }
inline NativeArray_1_t7CC8D0A91D6B929CE8AF86EF904CA11B5437074E * get_address_of_m_Added_1() { return &___m_Added_1; }
inline void set_m_Added_1(NativeArray_1_t7CC8D0A91D6B929CE8AF86EF904CA11B5437074E value)
{
___m_Added_1 = value;
}
inline static int32_t get_offset_of_m_Updated_2() { return static_cast<int32_t>(offsetof(TrackableChanges_1_t092C2BBB89690C350B949DDFFA9F551F85536ED3, ___m_Updated_2)); }
inline NativeArray_1_t7CC8D0A91D6B929CE8AF86EF904CA11B5437074E get_m_Updated_2() const { return ___m_Updated_2; }
inline NativeArray_1_t7CC8D0A91D6B929CE8AF86EF904CA11B5437074E * get_address_of_m_Updated_2() { return &___m_Updated_2; }
inline void set_m_Updated_2(NativeArray_1_t7CC8D0A91D6B929CE8AF86EF904CA11B5437074E value)
{
___m_Updated_2 = value;
}
inline static int32_t get_offset_of_m_Removed_3() { return static_cast<int32_t>(offsetof(TrackableChanges_1_t092C2BBB89690C350B949DDFFA9F551F85536ED3, ___m_Removed_3)); }
inline NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 get_m_Removed_3() const { return ___m_Removed_3; }
inline NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 * get_address_of_m_Removed_3() { return &___m_Removed_3; }
inline void set_m_Removed_3(NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 value)
{
___m_Removed_3 = value;
}
};
// UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.XRReferencePoint>
struct TrackableChanges_1_t4F3E80A7CED9B2D7CD7F28650988E9EE62523358
{
public:
// System.Boolean UnityEngine.XR.ARSubsystems.TrackableChanges`1::<isCreated>k__BackingField
bool ___U3CisCreatedU3Ek__BackingField_0;
// Unity.Collections.NativeArray`1<T> UnityEngine.XR.ARSubsystems.TrackableChanges`1::m_Added
NativeArray_1_t0D3C1B52116423B690835F4DDBD9DEC97545DB43 ___m_Added_1;
// Unity.Collections.NativeArray`1<T> UnityEngine.XR.ARSubsystems.TrackableChanges`1::m_Updated
NativeArray_1_t0D3C1B52116423B690835F4DDBD9DEC97545DB43 ___m_Updated_2;
// Unity.Collections.NativeArray`1<UnityEngine.XR.ARSubsystems.TrackableId> UnityEngine.XR.ARSubsystems.TrackableChanges`1::m_Removed
NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 ___m_Removed_3;
public:
inline static int32_t get_offset_of_U3CisCreatedU3Ek__BackingField_0() { return static_cast<int32_t>(offsetof(TrackableChanges_1_t4F3E80A7CED9B2D7CD7F28650988E9EE62523358, ___U3CisCreatedU3Ek__BackingField_0)); }
inline bool get_U3CisCreatedU3Ek__BackingField_0() const { return ___U3CisCreatedU3Ek__BackingField_0; }
inline bool* get_address_of_U3CisCreatedU3Ek__BackingField_0() { return &___U3CisCreatedU3Ek__BackingField_0; }
inline void set_U3CisCreatedU3Ek__BackingField_0(bool value)
{
___U3CisCreatedU3Ek__BackingField_0 = value;
}
inline static int32_t get_offset_of_m_Added_1() { return static_cast<int32_t>(offsetof(TrackableChanges_1_t4F3E80A7CED9B2D7CD7F28650988E9EE62523358, ___m_Added_1)); }
inline NativeArray_1_t0D3C1B52116423B690835F4DDBD9DEC97545DB43 get_m_Added_1() const { return ___m_Added_1; }
inline NativeArray_1_t0D3C1B52116423B690835F4DDBD9DEC97545DB43 * get_address_of_m_Added_1() { return &___m_Added_1; }
inline void set_m_Added_1(NativeArray_1_t0D3C1B52116423B690835F4DDBD9DEC97545DB43 value)
{
___m_Added_1 = value;
}
inline static int32_t get_offset_of_m_Updated_2() { return static_cast<int32_t>(offsetof(TrackableChanges_1_t4F3E80A7CED9B2D7CD7F28650988E9EE62523358, ___m_Updated_2)); }
inline NativeArray_1_t0D3C1B52116423B690835F4DDBD9DEC97545DB43 get_m_Updated_2() const { return ___m_Updated_2; }
inline NativeArray_1_t0D3C1B52116423B690835F4DDBD9DEC97545DB43 * get_address_of_m_Updated_2() { return &___m_Updated_2; }
inline void set_m_Updated_2(NativeArray_1_t0D3C1B52116423B690835F4DDBD9DEC97545DB43 value)
{
___m_Updated_2 = value;
}
inline static int32_t get_offset_of_m_Removed_3() { return static_cast<int32_t>(offsetof(TrackableChanges_1_t4F3E80A7CED9B2D7CD7F28650988E9EE62523358, ___m_Removed_3)); }
inline NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 get_m_Removed_3() const { return ___m_Removed_3; }
inline NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 * get_address_of_m_Removed_3() { return &___m_Removed_3; }
inline void set_m_Removed_3(NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 value)
{
___m_Removed_3 = value;
}
};
// UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.XRTrackedImage>
struct TrackableChanges_1_tDE6975A36D16B9E01B5B7D815A77EDD62A3EA629
{
public:
// System.Boolean UnityEngine.XR.ARSubsystems.TrackableChanges`1::<isCreated>k__BackingField
bool ___U3CisCreatedU3Ek__BackingField_0;
// Unity.Collections.NativeArray`1<T> UnityEngine.XR.ARSubsystems.TrackableChanges`1::m_Added
NativeArray_1_tFB9CDB932CB697229DBAB814E66E25DEF44F827F ___m_Added_1;
// Unity.Collections.NativeArray`1<T> UnityEngine.XR.ARSubsystems.TrackableChanges`1::m_Updated
NativeArray_1_tFB9CDB932CB697229DBAB814E66E25DEF44F827F ___m_Updated_2;
// Unity.Collections.NativeArray`1<UnityEngine.XR.ARSubsystems.TrackableId> UnityEngine.XR.ARSubsystems.TrackableChanges`1::m_Removed
NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 ___m_Removed_3;
public:
inline static int32_t get_offset_of_U3CisCreatedU3Ek__BackingField_0() { return static_cast<int32_t>(offsetof(TrackableChanges_1_tDE6975A36D16B9E01B5B7D815A77EDD62A3EA629, ___U3CisCreatedU3Ek__BackingField_0)); }
inline bool get_U3CisCreatedU3Ek__BackingField_0() const { return ___U3CisCreatedU3Ek__BackingField_0; }
inline bool* get_address_of_U3CisCreatedU3Ek__BackingField_0() { return &___U3CisCreatedU3Ek__BackingField_0; }
inline void set_U3CisCreatedU3Ek__BackingField_0(bool value)
{
___U3CisCreatedU3Ek__BackingField_0 = value;
}
inline static int32_t get_offset_of_m_Added_1() { return static_cast<int32_t>(offsetof(TrackableChanges_1_tDE6975A36D16B9E01B5B7D815A77EDD62A3EA629, ___m_Added_1)); }
inline NativeArray_1_tFB9CDB932CB697229DBAB814E66E25DEF44F827F get_m_Added_1() const { return ___m_Added_1; }
inline NativeArray_1_tFB9CDB932CB697229DBAB814E66E25DEF44F827F * get_address_of_m_Added_1() { return &___m_Added_1; }
inline void set_m_Added_1(NativeArray_1_tFB9CDB932CB697229DBAB814E66E25DEF44F827F value)
{
___m_Added_1 = value;
}
inline static int32_t get_offset_of_m_Updated_2() { return static_cast<int32_t>(offsetof(TrackableChanges_1_tDE6975A36D16B9E01B5B7D815A77EDD62A3EA629, ___m_Updated_2)); }
inline NativeArray_1_tFB9CDB932CB697229DBAB814E66E25DEF44F827F get_m_Updated_2() const { return ___m_Updated_2; }
inline NativeArray_1_tFB9CDB932CB697229DBAB814E66E25DEF44F827F * get_address_of_m_Updated_2() { return &___m_Updated_2; }
inline void set_m_Updated_2(NativeArray_1_tFB9CDB932CB697229DBAB814E66E25DEF44F827F value)
{
___m_Updated_2 = value;
}
inline static int32_t get_offset_of_m_Removed_3() { return static_cast<int32_t>(offsetof(TrackableChanges_1_tDE6975A36D16B9E01B5B7D815A77EDD62A3EA629, ___m_Removed_3)); }
inline NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 get_m_Removed_3() const { return ___m_Removed_3; }
inline NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 * get_address_of_m_Removed_3() { return &___m_Removed_3; }
inline void set_m_Removed_3(NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 value)
{
___m_Removed_3 = value;
}
};
// UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.XRTrackedObject>
struct TrackableChanges_1_t388C13B0BF202AE5F24D0BB3AE0D672AA355E1B1
{
public:
// System.Boolean UnityEngine.XR.ARSubsystems.TrackableChanges`1::<isCreated>k__BackingField
bool ___U3CisCreatedU3Ek__BackingField_0;
// Unity.Collections.NativeArray`1<T> UnityEngine.XR.ARSubsystems.TrackableChanges`1::m_Added
NativeArray_1_t91984250D9080A7D07E6D31D2FFD73DBBAA4B9C3 ___m_Added_1;
// Unity.Collections.NativeArray`1<T> UnityEngine.XR.ARSubsystems.TrackableChanges`1::m_Updated
NativeArray_1_t91984250D9080A7D07E6D31D2FFD73DBBAA4B9C3 ___m_Updated_2;
// Unity.Collections.NativeArray`1<UnityEngine.XR.ARSubsystems.TrackableId> UnityEngine.XR.ARSubsystems.TrackableChanges`1::m_Removed
NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 ___m_Removed_3;
public:
inline static int32_t get_offset_of_U3CisCreatedU3Ek__BackingField_0() { return static_cast<int32_t>(offsetof(TrackableChanges_1_t388C13B0BF202AE5F24D0BB3AE0D672AA355E1B1, ___U3CisCreatedU3Ek__BackingField_0)); }
inline bool get_U3CisCreatedU3Ek__BackingField_0() const { return ___U3CisCreatedU3Ek__BackingField_0; }
inline bool* get_address_of_U3CisCreatedU3Ek__BackingField_0() { return &___U3CisCreatedU3Ek__BackingField_0; }
inline void set_U3CisCreatedU3Ek__BackingField_0(bool value)
{
___U3CisCreatedU3Ek__BackingField_0 = value;
}
inline static int32_t get_offset_of_m_Added_1() { return static_cast<int32_t>(offsetof(TrackableChanges_1_t388C13B0BF202AE5F24D0BB3AE0D672AA355E1B1, ___m_Added_1)); }
inline NativeArray_1_t91984250D9080A7D07E6D31D2FFD73DBBAA4B9C3 get_m_Added_1() const { return ___m_Added_1; }
inline NativeArray_1_t91984250D9080A7D07E6D31D2FFD73DBBAA4B9C3 * get_address_of_m_Added_1() { return &___m_Added_1; }
inline void set_m_Added_1(NativeArray_1_t91984250D9080A7D07E6D31D2FFD73DBBAA4B9C3 value)
{
___m_Added_1 = value;
}
inline static int32_t get_offset_of_m_Updated_2() { return static_cast<int32_t>(offsetof(TrackableChanges_1_t388C13B0BF202AE5F24D0BB3AE0D672AA355E1B1, ___m_Updated_2)); }
inline NativeArray_1_t91984250D9080A7D07E6D31D2FFD73DBBAA4B9C3 get_m_Updated_2() const { return ___m_Updated_2; }
inline NativeArray_1_t91984250D9080A7D07E6D31D2FFD73DBBAA4B9C3 * get_address_of_m_Updated_2() { return &___m_Updated_2; }
inline void set_m_Updated_2(NativeArray_1_t91984250D9080A7D07E6D31D2FFD73DBBAA4B9C3 value)
{
___m_Updated_2 = value;
}
inline static int32_t get_offset_of_m_Removed_3() { return static_cast<int32_t>(offsetof(TrackableChanges_1_t388C13B0BF202AE5F24D0BB3AE0D672AA355E1B1, ___m_Removed_3)); }
inline NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 get_m_Removed_3() const { return ___m_Removed_3; }
inline NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 * get_address_of_m_Removed_3() { return &___m_Removed_3; }
inline void set_m_Removed_3(NativeArray_1_t991E9C764228B2B65D9688847CCDA8CE903F5D77 value)
{
___m_Removed_3 = value;
}
};
// System.ArgumentException
struct ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 : public SystemException_tC551B4D6EE3772B5F32C71EE8C719F4B43ECCC62
{
public:
// System.String System.ArgumentException::m_paramName
String_t* ___m_paramName_17;
public:
inline static int32_t get_offset_of_m_paramName_17() { return static_cast<int32_t>(offsetof(ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00, ___m_paramName_17)); }
inline String_t* get_m_paramName_17() const { return ___m_paramName_17; }
inline String_t** get_address_of_m_paramName_17() { return &___m_paramName_17; }
inline void set_m_paramName_17(String_t* value)
{
___m_paramName_17 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_paramName_17), (void*)value);
}
};
// UnityEngine.XR.ARSubsystems.Configuration
struct Configuration_t29C11C7E576D64F717543048BDA1EBCEF0CF60C0
{
public:
// UnityEngine.XR.ARSubsystems.ConfigurationDescriptor UnityEngine.XR.ARSubsystems.Configuration::<descriptor>k__BackingField
ConfigurationDescriptor_t5CD12F017FCCF861DC33D7C0D6F0121015DEEA78 ___U3CdescriptorU3Ek__BackingField_0;
// UnityEngine.XR.ARSubsystems.Feature UnityEngine.XR.ARSubsystems.Configuration::<features>k__BackingField
uint64_t ___U3CfeaturesU3Ek__BackingField_1;
public:
inline static int32_t get_offset_of_U3CdescriptorU3Ek__BackingField_0() { return static_cast<int32_t>(offsetof(Configuration_t29C11C7E576D64F717543048BDA1EBCEF0CF60C0, ___U3CdescriptorU3Ek__BackingField_0)); }
inline ConfigurationDescriptor_t5CD12F017FCCF861DC33D7C0D6F0121015DEEA78 get_U3CdescriptorU3Ek__BackingField_0() const { return ___U3CdescriptorU3Ek__BackingField_0; }
inline ConfigurationDescriptor_t5CD12F017FCCF861DC33D7C0D6F0121015DEEA78 * get_address_of_U3CdescriptorU3Ek__BackingField_0() { return &___U3CdescriptorU3Ek__BackingField_0; }
inline void set_U3CdescriptorU3Ek__BackingField_0(ConfigurationDescriptor_t5CD12F017FCCF861DC33D7C0D6F0121015DEEA78 value)
{
___U3CdescriptorU3Ek__BackingField_0 = value;
}
inline static int32_t get_offset_of_U3CfeaturesU3Ek__BackingField_1() { return static_cast<int32_t>(offsetof(Configuration_t29C11C7E576D64F717543048BDA1EBCEF0CF60C0, ___U3CfeaturesU3Ek__BackingField_1)); }
inline uint64_t get_U3CfeaturesU3Ek__BackingField_1() const { return ___U3CfeaturesU3Ek__BackingField_1; }
inline uint64_t* get_address_of_U3CfeaturesU3Ek__BackingField_1() { return &___U3CfeaturesU3Ek__BackingField_1; }
inline void set_U3CfeaturesU3Ek__BackingField_1(uint64_t value)
{
___U3CfeaturesU3Ek__BackingField_1 = value;
}
};
// System.IndexOutOfRangeException
struct IndexOutOfRangeException_tDC9EF7A0346CE39E54DA1083F07BE6DFC3CE2EDD : public SystemException_tC551B4D6EE3772B5F32C71EE8C719F4B43ECCC62
{
public:
public:
};
// System.InvalidOperationException
struct InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB : public SystemException_tC551B4D6EE3772B5F32C71EE8C719F4B43ECCC62
{
public:
public:
};
// System.NotImplementedException
struct NotImplementedException_t26260C4EE0444C5FA022994203060B3A42A3ADE6 : public SystemException_tC551B4D6EE3772B5F32C71EE8C719F4B43ECCC62
{
public:
public:
};
// System.NotSupportedException
struct NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 : public SystemException_tC551B4D6EE3772B5F32C71EE8C719F4B43ECCC62
{
public:
public:
};
// UnityEngine.Texture2D
struct Texture2D_t9B604D0D8E28032123641A7E7338FA872E2698BF : public Texture_t9FE0218A1EEDF266E8C85879FE123265CACC95AE
{
public:
public:
};
// UnityEngine.XR.ARSubsystems.XRCameraFrame
struct XRCameraFrame_t5FD7B7FC22B478AC6B00AD01A0AD6F2295EA1BA8
{
public:
// System.Int64 UnityEngine.XR.ARSubsystems.XRCameraFrame::m_TimestampNs
int64_t ___m_TimestampNs_0;
// System.Single UnityEngine.XR.ARSubsystems.XRCameraFrame::m_AverageBrightness
float ___m_AverageBrightness_1;
// System.Single UnityEngine.XR.ARSubsystems.XRCameraFrame::m_AverageColorTemperature
float ___m_AverageColorTemperature_2;
// UnityEngine.Color UnityEngine.XR.ARSubsystems.XRCameraFrame::m_ColorCorrection
Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 ___m_ColorCorrection_3;
// UnityEngine.Matrix4x4 UnityEngine.XR.ARSubsystems.XRCameraFrame::m_ProjectionMatrix
Matrix4x4_tDE7FF4F2E2EA284F6EFE00D627789D0E5B8B4461 ___m_ProjectionMatrix_4;
// UnityEngine.Matrix4x4 UnityEngine.XR.ARSubsystems.XRCameraFrame::m_DisplayMatrix
Matrix4x4_tDE7FF4F2E2EA284F6EFE00D627789D0E5B8B4461 ___m_DisplayMatrix_5;
// UnityEngine.XR.ARSubsystems.TrackingState UnityEngine.XR.ARSubsystems.XRCameraFrame::m_TrackingState
int32_t ___m_TrackingState_6;
// System.IntPtr UnityEngine.XR.ARSubsystems.XRCameraFrame::m_NativePtr
intptr_t ___m_NativePtr_7;
// UnityEngine.XR.ARSubsystems.XRCameraFrameProperties UnityEngine.XR.ARSubsystems.XRCameraFrame::m_Properties
int32_t ___m_Properties_8;
// System.Single UnityEngine.XR.ARSubsystems.XRCameraFrame::m_AverageIntensityInLumens
float ___m_AverageIntensityInLumens_9;
// System.Double UnityEngine.XR.ARSubsystems.XRCameraFrame::m_ExposureDuration
double ___m_ExposureDuration_10;
// System.Single UnityEngine.XR.ARSubsystems.XRCameraFrame::m_ExposureOffset
float ___m_ExposureOffset_11;
// System.Single UnityEngine.XR.ARSubsystems.XRCameraFrame::m_MainLightIntensityLumens
float ___m_MainLightIntensityLumens_12;
// UnityEngine.Color UnityEngine.XR.ARSubsystems.XRCameraFrame::m_MainLightColor
Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 ___m_MainLightColor_13;
// UnityEngine.Vector3 UnityEngine.XR.ARSubsystems.XRCameraFrame::m_MainLightDirection
Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___m_MainLightDirection_14;
// UnityEngine.Rendering.SphericalHarmonicsL2 UnityEngine.XR.ARSubsystems.XRCameraFrame::m_AmbientSphericalHarmonics
SphericalHarmonicsL2_tD2EC2ADCA26B9BE05036C3ABCF3CC049EC73EA64 ___m_AmbientSphericalHarmonics_15;
// UnityEngine.XR.ARSubsystems.XRTextureDescriptor UnityEngine.XR.ARSubsystems.XRCameraFrame::m_CameraGrain
XRTextureDescriptor_t9CA857DCCC1208B74376787BE4F3008A01B29A57 ___m_CameraGrain_16;
// System.Single UnityEngine.XR.ARSubsystems.XRCameraFrame::m_NoiseIntensity
float ___m_NoiseIntensity_17;
public:
inline static int32_t get_offset_of_m_TimestampNs_0() { return static_cast<int32_t>(offsetof(XRCameraFrame_t5FD7B7FC22B478AC6B00AD01A0AD6F2295EA1BA8, ___m_TimestampNs_0)); }
inline int64_t get_m_TimestampNs_0() const { return ___m_TimestampNs_0; }
inline int64_t* get_address_of_m_TimestampNs_0() { return &___m_TimestampNs_0; }
inline void set_m_TimestampNs_0(int64_t value)
{
___m_TimestampNs_0 = value;
}
inline static int32_t get_offset_of_m_AverageBrightness_1() { return static_cast<int32_t>(offsetof(XRCameraFrame_t5FD7B7FC22B478AC6B00AD01A0AD6F2295EA1BA8, ___m_AverageBrightness_1)); }
inline float get_m_AverageBrightness_1() const { return ___m_AverageBrightness_1; }
inline float* get_address_of_m_AverageBrightness_1() { return &___m_AverageBrightness_1; }
inline void set_m_AverageBrightness_1(float value)
{
___m_AverageBrightness_1 = value;
}
inline static int32_t get_offset_of_m_AverageColorTemperature_2() { return static_cast<int32_t>(offsetof(XRCameraFrame_t5FD7B7FC22B478AC6B00AD01A0AD6F2295EA1BA8, ___m_AverageColorTemperature_2)); }
inline float get_m_AverageColorTemperature_2() const { return ___m_AverageColorTemperature_2; }
inline float* get_address_of_m_AverageColorTemperature_2() { return &___m_AverageColorTemperature_2; }
inline void set_m_AverageColorTemperature_2(float value)
{
___m_AverageColorTemperature_2 = value;
}
inline static int32_t get_offset_of_m_ColorCorrection_3() { return static_cast<int32_t>(offsetof(XRCameraFrame_t5FD7B7FC22B478AC6B00AD01A0AD6F2295EA1BA8, ___m_ColorCorrection_3)); }
inline Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 get_m_ColorCorrection_3() const { return ___m_ColorCorrection_3; }
inline Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 * get_address_of_m_ColorCorrection_3() { return &___m_ColorCorrection_3; }
inline void set_m_ColorCorrection_3(Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 value)
{
___m_ColorCorrection_3 = value;
}
inline static int32_t get_offset_of_m_ProjectionMatrix_4() { return static_cast<int32_t>(offsetof(XRCameraFrame_t5FD7B7FC22B478AC6B00AD01A0AD6F2295EA1BA8, ___m_ProjectionMatrix_4)); }
inline Matrix4x4_tDE7FF4F2E2EA284F6EFE00D627789D0E5B8B4461 get_m_ProjectionMatrix_4() const { return ___m_ProjectionMatrix_4; }
inline Matrix4x4_tDE7FF4F2E2EA284F6EFE00D627789D0E5B8B4461 * get_address_of_m_ProjectionMatrix_4() { return &___m_ProjectionMatrix_4; }
inline void set_m_ProjectionMatrix_4(Matrix4x4_tDE7FF4F2E2EA284F6EFE00D627789D0E5B8B4461 value)
{
___m_ProjectionMatrix_4 = value;
}
inline static int32_t get_offset_of_m_DisplayMatrix_5() { return static_cast<int32_t>(offsetof(XRCameraFrame_t5FD7B7FC22B478AC6B00AD01A0AD6F2295EA1BA8, ___m_DisplayMatrix_5)); }
inline Matrix4x4_tDE7FF4F2E2EA284F6EFE00D627789D0E5B8B4461 get_m_DisplayMatrix_5() const { return ___m_DisplayMatrix_5; }
inline Matrix4x4_tDE7FF4F2E2EA284F6EFE00D627789D0E5B8B4461 * get_address_of_m_DisplayMatrix_5() { return &___m_DisplayMatrix_5; }
inline void set_m_DisplayMatrix_5(Matrix4x4_tDE7FF4F2E2EA284F6EFE00D627789D0E5B8B4461 value)
{
___m_DisplayMatrix_5 = value;
}
inline static int32_t get_offset_of_m_TrackingState_6() { return static_cast<int32_t>(offsetof(XRCameraFrame_t5FD7B7FC22B478AC6B00AD01A0AD6F2295EA1BA8, ___m_TrackingState_6)); }
inline int32_t get_m_TrackingState_6() const { return ___m_TrackingState_6; }
inline int32_t* get_address_of_m_TrackingState_6() { return &___m_TrackingState_6; }
inline void set_m_TrackingState_6(int32_t value)
{
___m_TrackingState_6 = value;
}
inline static int32_t get_offset_of_m_NativePtr_7() { return static_cast<int32_t>(offsetof(XRCameraFrame_t5FD7B7FC22B478AC6B00AD01A0AD6F2295EA1BA8, ___m_NativePtr_7)); }
inline intptr_t get_m_NativePtr_7() const { return ___m_NativePtr_7; }
inline intptr_t* get_address_of_m_NativePtr_7() { return &___m_NativePtr_7; }
inline void set_m_NativePtr_7(intptr_t value)
{
___m_NativePtr_7 = value;
}
inline static int32_t get_offset_of_m_Properties_8() { return static_cast<int32_t>(offsetof(XRCameraFrame_t5FD7B7FC22B478AC6B00AD01A0AD6F2295EA1BA8, ___m_Properties_8)); }
inline int32_t get_m_Properties_8() const { return ___m_Properties_8; }
inline int32_t* get_address_of_m_Properties_8() { return &___m_Properties_8; }
inline void set_m_Properties_8(int32_t value)
{
___m_Properties_8 = value;
}
inline static int32_t get_offset_of_m_AverageIntensityInLumens_9() { return static_cast<int32_t>(offsetof(XRCameraFrame_t5FD7B7FC22B478AC6B00AD01A0AD6F2295EA1BA8, ___m_AverageIntensityInLumens_9)); }
inline float get_m_AverageIntensityInLumens_9() const { return ___m_AverageIntensityInLumens_9; }
inline float* get_address_of_m_AverageIntensityInLumens_9() { return &___m_AverageIntensityInLumens_9; }
inline void set_m_AverageIntensityInLumens_9(float value)
{
___m_AverageIntensityInLumens_9 = value;
}
inline static int32_t get_offset_of_m_ExposureDuration_10() { return static_cast<int32_t>(offsetof(XRCameraFrame_t5FD7B7FC22B478AC6B00AD01A0AD6F2295EA1BA8, ___m_ExposureDuration_10)); }
inline double get_m_ExposureDuration_10() const { return ___m_ExposureDuration_10; }
inline double* get_address_of_m_ExposureDuration_10() { return &___m_ExposureDuration_10; }
inline void set_m_ExposureDuration_10(double value)
{
___m_ExposureDuration_10 = value;
}
inline static int32_t get_offset_of_m_ExposureOffset_11() { return static_cast<int32_t>(offsetof(XRCameraFrame_t5FD7B7FC22B478AC6B00AD01A0AD6F2295EA1BA8, ___m_ExposureOffset_11)); }
inline float get_m_ExposureOffset_11() const { return ___m_ExposureOffset_11; }
inline float* get_address_of_m_ExposureOffset_11() { return &___m_ExposureOffset_11; }
inline void set_m_ExposureOffset_11(float value)
{
___m_ExposureOffset_11 = value;
}
inline static int32_t get_offset_of_m_MainLightIntensityLumens_12() { return static_cast<int32_t>(offsetof(XRCameraFrame_t5FD7B7FC22B478AC6B00AD01A0AD6F2295EA1BA8, ___m_MainLightIntensityLumens_12)); }
inline float get_m_MainLightIntensityLumens_12() const { return ___m_MainLightIntensityLumens_12; }
inline float* get_address_of_m_MainLightIntensityLumens_12() { return &___m_MainLightIntensityLumens_12; }
inline void set_m_MainLightIntensityLumens_12(float value)
{
___m_MainLightIntensityLumens_12 = value;
}
inline static int32_t get_offset_of_m_MainLightColor_13() { return static_cast<int32_t>(offsetof(XRCameraFrame_t5FD7B7FC22B478AC6B00AD01A0AD6F2295EA1BA8, ___m_MainLightColor_13)); }
inline Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 get_m_MainLightColor_13() const { return ___m_MainLightColor_13; }
inline Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 * get_address_of_m_MainLightColor_13() { return &___m_MainLightColor_13; }
inline void set_m_MainLightColor_13(Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 value)
{
___m_MainLightColor_13 = value;
}
inline static int32_t get_offset_of_m_MainLightDirection_14() { return static_cast<int32_t>(offsetof(XRCameraFrame_t5FD7B7FC22B478AC6B00AD01A0AD6F2295EA1BA8, ___m_MainLightDirection_14)); }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_m_MainLightDirection_14() const { return ___m_MainLightDirection_14; }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_m_MainLightDirection_14() { return &___m_MainLightDirection_14; }
inline void set_m_MainLightDirection_14(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value)
{
___m_MainLightDirection_14 = value;
}
inline static int32_t get_offset_of_m_AmbientSphericalHarmonics_15() { return static_cast<int32_t>(offsetof(XRCameraFrame_t5FD7B7FC22B478AC6B00AD01A0AD6F2295EA1BA8, ___m_AmbientSphericalHarmonics_15)); }
inline SphericalHarmonicsL2_tD2EC2ADCA26B9BE05036C3ABCF3CC049EC73EA64 get_m_AmbientSphericalHarmonics_15() const { return ___m_AmbientSphericalHarmonics_15; }
inline SphericalHarmonicsL2_tD2EC2ADCA26B9BE05036C3ABCF3CC049EC73EA64 * get_address_of_m_AmbientSphericalHarmonics_15() { return &___m_AmbientSphericalHarmonics_15; }
inline void set_m_AmbientSphericalHarmonics_15(SphericalHarmonicsL2_tD2EC2ADCA26B9BE05036C3ABCF3CC049EC73EA64 value)
{
___m_AmbientSphericalHarmonics_15 = value;
}
inline static int32_t get_offset_of_m_CameraGrain_16() { return static_cast<int32_t>(offsetof(XRCameraFrame_t5FD7B7FC22B478AC6B00AD01A0AD6F2295EA1BA8, ___m_CameraGrain_16)); }
inline XRTextureDescriptor_t9CA857DCCC1208B74376787BE4F3008A01B29A57 get_m_CameraGrain_16() const { return ___m_CameraGrain_16; }
inline XRTextureDescriptor_t9CA857DCCC1208B74376787BE4F3008A01B29A57 * get_address_of_m_CameraGrain_16() { return &___m_CameraGrain_16; }
inline void set_m_CameraGrain_16(XRTextureDescriptor_t9CA857DCCC1208B74376787BE4F3008A01B29A57 value)
{
___m_CameraGrain_16 = value;
}
inline static int32_t get_offset_of_m_NoiseIntensity_17() { return static_cast<int32_t>(offsetof(XRCameraFrame_t5FD7B7FC22B478AC6B00AD01A0AD6F2295EA1BA8, ___m_NoiseIntensity_17)); }
inline float get_m_NoiseIntensity_17() const { return ___m_NoiseIntensity_17; }
inline float* get_address_of_m_NoiseIntensity_17() { return &___m_NoiseIntensity_17; }
inline void set_m_NoiseIntensity_17(float value)
{
___m_NoiseIntensity_17 = value;
}
};
// UnityEngine.XR.ARSubsystems.XREnvironmentProbe
struct XREnvironmentProbe_t4D75B5DF95135D1BA45222CBE3E7677E823B8D4C
{
public:
// UnityEngine.XR.ARSubsystems.TrackableId UnityEngine.XR.ARSubsystems.XREnvironmentProbe::m_TrackableId
TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B ___m_TrackableId_1;
// UnityEngine.Vector3 UnityEngine.XR.ARSubsystems.XREnvironmentProbe::m_Scale
Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___m_Scale_2;
// UnityEngine.Pose UnityEngine.XR.ARSubsystems.XREnvironmentProbe::m_Pose
Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A ___m_Pose_3;
// UnityEngine.Vector3 UnityEngine.XR.ARSubsystems.XREnvironmentProbe::m_Size
Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___m_Size_4;
// UnityEngine.XR.ARSubsystems.XRTextureDescriptor UnityEngine.XR.ARSubsystems.XREnvironmentProbe::m_TextureDescriptor
XRTextureDescriptor_t9CA857DCCC1208B74376787BE4F3008A01B29A57 ___m_TextureDescriptor_5;
// UnityEngine.XR.ARSubsystems.TrackingState UnityEngine.XR.ARSubsystems.XREnvironmentProbe::m_TrackingState
int32_t ___m_TrackingState_6;
// System.IntPtr UnityEngine.XR.ARSubsystems.XREnvironmentProbe::m_NativePtr
intptr_t ___m_NativePtr_7;
public:
inline static int32_t get_offset_of_m_TrackableId_1() { return static_cast<int32_t>(offsetof(XREnvironmentProbe_t4D75B5DF95135D1BA45222CBE3E7677E823B8D4C, ___m_TrackableId_1)); }
inline TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B get_m_TrackableId_1() const { return ___m_TrackableId_1; }
inline TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B * get_address_of_m_TrackableId_1() { return &___m_TrackableId_1; }
inline void set_m_TrackableId_1(TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B value)
{
___m_TrackableId_1 = value;
}
inline static int32_t get_offset_of_m_Scale_2() { return static_cast<int32_t>(offsetof(XREnvironmentProbe_t4D75B5DF95135D1BA45222CBE3E7677E823B8D4C, ___m_Scale_2)); }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_m_Scale_2() const { return ___m_Scale_2; }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_m_Scale_2() { return &___m_Scale_2; }
inline void set_m_Scale_2(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value)
{
___m_Scale_2 = value;
}
inline static int32_t get_offset_of_m_Pose_3() { return static_cast<int32_t>(offsetof(XREnvironmentProbe_t4D75B5DF95135D1BA45222CBE3E7677E823B8D4C, ___m_Pose_3)); }
inline Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A get_m_Pose_3() const { return ___m_Pose_3; }
inline Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A * get_address_of_m_Pose_3() { return &___m_Pose_3; }
inline void set_m_Pose_3(Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A value)
{
___m_Pose_3 = value;
}
inline static int32_t get_offset_of_m_Size_4() { return static_cast<int32_t>(offsetof(XREnvironmentProbe_t4D75B5DF95135D1BA45222CBE3E7677E823B8D4C, ___m_Size_4)); }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_m_Size_4() const { return ___m_Size_4; }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_m_Size_4() { return &___m_Size_4; }
inline void set_m_Size_4(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value)
{
___m_Size_4 = value;
}
inline static int32_t get_offset_of_m_TextureDescriptor_5() { return static_cast<int32_t>(offsetof(XREnvironmentProbe_t4D75B5DF95135D1BA45222CBE3E7677E823B8D4C, ___m_TextureDescriptor_5)); }
inline XRTextureDescriptor_t9CA857DCCC1208B74376787BE4F3008A01B29A57 get_m_TextureDescriptor_5() const { return ___m_TextureDescriptor_5; }
inline XRTextureDescriptor_t9CA857DCCC1208B74376787BE4F3008A01B29A57 * get_address_of_m_TextureDescriptor_5() { return &___m_TextureDescriptor_5; }
inline void set_m_TextureDescriptor_5(XRTextureDescriptor_t9CA857DCCC1208B74376787BE4F3008A01B29A57 value)
{
___m_TextureDescriptor_5 = value;
}
inline static int32_t get_offset_of_m_TrackingState_6() { return static_cast<int32_t>(offsetof(XREnvironmentProbe_t4D75B5DF95135D1BA45222CBE3E7677E823B8D4C, ___m_TrackingState_6)); }
inline int32_t get_m_TrackingState_6() const { return ___m_TrackingState_6; }
inline int32_t* get_address_of_m_TrackingState_6() { return &___m_TrackingState_6; }
inline void set_m_TrackingState_6(int32_t value)
{
___m_TrackingState_6 = value;
}
inline static int32_t get_offset_of_m_NativePtr_7() { return static_cast<int32_t>(offsetof(XREnvironmentProbe_t4D75B5DF95135D1BA45222CBE3E7677E823B8D4C, ___m_NativePtr_7)); }
inline intptr_t get_m_NativePtr_7() const { return ___m_NativePtr_7; }
inline intptr_t* get_address_of_m_NativePtr_7() { return &___m_NativePtr_7; }
inline void set_m_NativePtr_7(intptr_t value)
{
___m_NativePtr_7 = value;
}
};
struct XREnvironmentProbe_t4D75B5DF95135D1BA45222CBE3E7677E823B8D4C_StaticFields
{
public:
// UnityEngine.XR.ARSubsystems.XREnvironmentProbe UnityEngine.XR.ARSubsystems.XREnvironmentProbe::s_Default
XREnvironmentProbe_t4D75B5DF95135D1BA45222CBE3E7677E823B8D4C ___s_Default_0;
public:
inline static int32_t get_offset_of_s_Default_0() { return static_cast<int32_t>(offsetof(XREnvironmentProbe_t4D75B5DF95135D1BA45222CBE3E7677E823B8D4C_StaticFields, ___s_Default_0)); }
inline XREnvironmentProbe_t4D75B5DF95135D1BA45222CBE3E7677E823B8D4C get_s_Default_0() const { return ___s_Default_0; }
inline XREnvironmentProbe_t4D75B5DF95135D1BA45222CBE3E7677E823B8D4C * get_address_of_s_Default_0() { return &___s_Default_0; }
inline void set_s_Default_0(XREnvironmentProbe_t4D75B5DF95135D1BA45222CBE3E7677E823B8D4C value)
{
___s_Default_0 = value;
}
};
// UnityEngine.XR.ARSubsystems.XRFaceMesh
struct XRFaceMesh_t2ADC7E6069DCCCFB439A4A60DB9189338C9E1AD0
{
public:
// Unity.Collections.NativeArray`1<UnityEngine.Vector3> UnityEngine.XR.ARSubsystems.XRFaceMesh::m_Vertices
NativeArray_1_t2577BCA09CA248EFB78BD7FDA7F09D5C395DFF52 ___m_Vertices_0;
// Unity.Collections.NativeArray`1<UnityEngine.Vector3> UnityEngine.XR.ARSubsystems.XRFaceMesh::m_Normals
NativeArray_1_t2577BCA09CA248EFB78BD7FDA7F09D5C395DFF52 ___m_Normals_1;
// Unity.Collections.NativeArray`1<System.Int32> UnityEngine.XR.ARSubsystems.XRFaceMesh::m_Indices
NativeArray_1_tD60079F06B473C85CF6C2BB4F2D203F38191AE99 ___m_Indices_2;
// Unity.Collections.NativeArray`1<UnityEngine.Vector2> UnityEngine.XR.ARSubsystems.XRFaceMesh::m_UVs
NativeArray_1_t431C85F30275831D1F5D458AB73DFCE050693BC0 ___m_UVs_3;
public:
inline static int32_t get_offset_of_m_Vertices_0() { return static_cast<int32_t>(offsetof(XRFaceMesh_t2ADC7E6069DCCCFB439A4A60DB9189338C9E1AD0, ___m_Vertices_0)); }
inline NativeArray_1_t2577BCA09CA248EFB78BD7FDA7F09D5C395DFF52 get_m_Vertices_0() const { return ___m_Vertices_0; }
inline NativeArray_1_t2577BCA09CA248EFB78BD7FDA7F09D5C395DFF52 * get_address_of_m_Vertices_0() { return &___m_Vertices_0; }
inline void set_m_Vertices_0(NativeArray_1_t2577BCA09CA248EFB78BD7FDA7F09D5C395DFF52 value)
{
___m_Vertices_0 = value;
}
inline static int32_t get_offset_of_m_Normals_1() { return static_cast<int32_t>(offsetof(XRFaceMesh_t2ADC7E6069DCCCFB439A4A60DB9189338C9E1AD0, ___m_Normals_1)); }
inline NativeArray_1_t2577BCA09CA248EFB78BD7FDA7F09D5C395DFF52 get_m_Normals_1() const { return ___m_Normals_1; }
inline NativeArray_1_t2577BCA09CA248EFB78BD7FDA7F09D5C395DFF52 * get_address_of_m_Normals_1() { return &___m_Normals_1; }
inline void set_m_Normals_1(NativeArray_1_t2577BCA09CA248EFB78BD7FDA7F09D5C395DFF52 value)
{
___m_Normals_1 = value;
}
inline static int32_t get_offset_of_m_Indices_2() { return static_cast<int32_t>(offsetof(XRFaceMesh_t2ADC7E6069DCCCFB439A4A60DB9189338C9E1AD0, ___m_Indices_2)); }
inline NativeArray_1_tD60079F06B473C85CF6C2BB4F2D203F38191AE99 get_m_Indices_2() const { return ___m_Indices_2; }
inline NativeArray_1_tD60079F06B473C85CF6C2BB4F2D203F38191AE99 * get_address_of_m_Indices_2() { return &___m_Indices_2; }
inline void set_m_Indices_2(NativeArray_1_tD60079F06B473C85CF6C2BB4F2D203F38191AE99 value)
{
___m_Indices_2 = value;
}
inline static int32_t get_offset_of_m_UVs_3() { return static_cast<int32_t>(offsetof(XRFaceMesh_t2ADC7E6069DCCCFB439A4A60DB9189338C9E1AD0, ___m_UVs_3)); }
inline NativeArray_1_t431C85F30275831D1F5D458AB73DFCE050693BC0 get_m_UVs_3() const { return ___m_UVs_3; }
inline NativeArray_1_t431C85F30275831D1F5D458AB73DFCE050693BC0 * get_address_of_m_UVs_3() { return &___m_UVs_3; }
inline void set_m_UVs_3(NativeArray_1_t431C85F30275831D1F5D458AB73DFCE050693BC0 value)
{
___m_UVs_3 = value;
}
};
// UnityEngine.XR.ARSubsystems.XRPointCloudData
struct XRPointCloudData_t3AFE7A70A93C061F8C3B3B7AEDE07EDF6A86B177
{
public:
// Unity.Collections.NativeArray`1<UnityEngine.Vector3> UnityEngine.XR.ARSubsystems.XRPointCloudData::m_Positions
NativeArray_1_t2577BCA09CA248EFB78BD7FDA7F09D5C395DFF52 ___m_Positions_0;
// Unity.Collections.NativeArray`1<System.Single> UnityEngine.XR.ARSubsystems.XRPointCloudData::m_ConfidenceValues
NativeArray_1_t5F920DC5A531D604D161A0FAD3479B5BFE0D9232 ___m_ConfidenceValues_1;
// Unity.Collections.NativeArray`1<System.UInt64> UnityEngine.XR.ARSubsystems.XRPointCloudData::m_Identifiers
NativeArray_1_t9D118727A643E61710D0A4DF5B0C8CD1A918A40B ___m_Identifiers_2;
public:
inline static int32_t get_offset_of_m_Positions_0() { return static_cast<int32_t>(offsetof(XRPointCloudData_t3AFE7A70A93C061F8C3B3B7AEDE07EDF6A86B177, ___m_Positions_0)); }
inline NativeArray_1_t2577BCA09CA248EFB78BD7FDA7F09D5C395DFF52 get_m_Positions_0() const { return ___m_Positions_0; }
inline NativeArray_1_t2577BCA09CA248EFB78BD7FDA7F09D5C395DFF52 * get_address_of_m_Positions_0() { return &___m_Positions_0; }
inline void set_m_Positions_0(NativeArray_1_t2577BCA09CA248EFB78BD7FDA7F09D5C395DFF52 value)
{
___m_Positions_0 = value;
}
inline static int32_t get_offset_of_m_ConfidenceValues_1() { return static_cast<int32_t>(offsetof(XRPointCloudData_t3AFE7A70A93C061F8C3B3B7AEDE07EDF6A86B177, ___m_ConfidenceValues_1)); }
inline NativeArray_1_t5F920DC5A531D604D161A0FAD3479B5BFE0D9232 get_m_ConfidenceValues_1() const { return ___m_ConfidenceValues_1; }
inline NativeArray_1_t5F920DC5A531D604D161A0FAD3479B5BFE0D9232 * get_address_of_m_ConfidenceValues_1() { return &___m_ConfidenceValues_1; }
inline void set_m_ConfidenceValues_1(NativeArray_1_t5F920DC5A531D604D161A0FAD3479B5BFE0D9232 value)
{
___m_ConfidenceValues_1 = value;
}
inline static int32_t get_offset_of_m_Identifiers_2() { return static_cast<int32_t>(offsetof(XRPointCloudData_t3AFE7A70A93C061F8C3B3B7AEDE07EDF6A86B177, ___m_Identifiers_2)); }
inline NativeArray_1_t9D118727A643E61710D0A4DF5B0C8CD1A918A40B get_m_Identifiers_2() const { return ___m_Identifiers_2; }
inline NativeArray_1_t9D118727A643E61710D0A4DF5B0C8CD1A918A40B * get_address_of_m_Identifiers_2() { return &___m_Identifiers_2; }
inline void set_m_Identifiers_2(NativeArray_1_t9D118727A643E61710D0A4DF5B0C8CD1A918A40B value)
{
___m_Identifiers_2 = value;
}
};
// UnityEngine.XR.ARSubsystems.XRReferenceImageLibrary
struct XRReferenceImageLibrary_tC415743C1DDCE2331D5B0F159B2A1D72A70C44B2 : public ScriptableObject_t4361E08CEBF052C650D3666C7CEC37EB31DE116A
{
public:
// System.UInt64 UnityEngine.XR.ARSubsystems.XRReferenceImageLibrary::m_GuidLow
uint64_t ___m_GuidLow_4;
// System.UInt64 UnityEngine.XR.ARSubsystems.XRReferenceImageLibrary::m_GuidHigh
uint64_t ___m_GuidHigh_5;
// System.Collections.Generic.List`1<UnityEngine.XR.ARSubsystems.XRReferenceImage> UnityEngine.XR.ARSubsystems.XRReferenceImageLibrary::m_Images
List_1_tBFEC44C63782254A7C0F22D20FC51F72002482EC * ___m_Images_6;
public:
inline static int32_t get_offset_of_m_GuidLow_4() { return static_cast<int32_t>(offsetof(XRReferenceImageLibrary_tC415743C1DDCE2331D5B0F159B2A1D72A70C44B2, ___m_GuidLow_4)); }
inline uint64_t get_m_GuidLow_4() const { return ___m_GuidLow_4; }
inline uint64_t* get_address_of_m_GuidLow_4() { return &___m_GuidLow_4; }
inline void set_m_GuidLow_4(uint64_t value)
{
___m_GuidLow_4 = value;
}
inline static int32_t get_offset_of_m_GuidHigh_5() { return static_cast<int32_t>(offsetof(XRReferenceImageLibrary_tC415743C1DDCE2331D5B0F159B2A1D72A70C44B2, ___m_GuidHigh_5)); }
inline uint64_t get_m_GuidHigh_5() const { return ___m_GuidHigh_5; }
inline uint64_t* get_address_of_m_GuidHigh_5() { return &___m_GuidHigh_5; }
inline void set_m_GuidHigh_5(uint64_t value)
{
___m_GuidHigh_5 = value;
}
inline static int32_t get_offset_of_m_Images_6() { return static_cast<int32_t>(offsetof(XRReferenceImageLibrary_tC415743C1DDCE2331D5B0F159B2A1D72A70C44B2, ___m_Images_6)); }
inline List_1_tBFEC44C63782254A7C0F22D20FC51F72002482EC * get_m_Images_6() const { return ___m_Images_6; }
inline List_1_tBFEC44C63782254A7C0F22D20FC51F72002482EC ** get_address_of_m_Images_6() { return &___m_Images_6; }
inline void set_m_Images_6(List_1_tBFEC44C63782254A7C0F22D20FC51F72002482EC * value)
{
___m_Images_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Images_6), (void*)value);
}
};
// UnityEngine.XR.ARSubsystems.XRReferenceObjectEntry
struct XRReferenceObjectEntry_t873762C96E954D47B49C3B36CABD423408DC72D2 : public ScriptableObject_t4361E08CEBF052C650D3666C7CEC37EB31DE116A
{
public:
public:
};
// UnityEngine.XR.ARSubsystems.XRReferenceObjectLibrary
struct XRReferenceObjectLibrary_t07704B2996E507F23EE3C99CFC3BB73A83C99A7C : public ScriptableObject_t4361E08CEBF052C650D3666C7CEC37EB31DE116A
{
public:
// System.UInt64 UnityEngine.XR.ARSubsystems.XRReferenceObjectLibrary::m_GuidLow
uint64_t ___m_GuidLow_4;
// System.UInt64 UnityEngine.XR.ARSubsystems.XRReferenceObjectLibrary::m_GuidHigh
uint64_t ___m_GuidHigh_5;
// System.Collections.Generic.List`1<UnityEngine.XR.ARSubsystems.XRReferenceObject> UnityEngine.XR.ARSubsystems.XRReferenceObjectLibrary::m_ReferenceObjects
List_1_t3A1F09045329A30B2867F24E69EC807BE36BEA9B * ___m_ReferenceObjects_6;
public:
inline static int32_t get_offset_of_m_GuidLow_4() { return static_cast<int32_t>(offsetof(XRReferenceObjectLibrary_t07704B2996E507F23EE3C99CFC3BB73A83C99A7C, ___m_GuidLow_4)); }
inline uint64_t get_m_GuidLow_4() const { return ___m_GuidLow_4; }
inline uint64_t* get_address_of_m_GuidLow_4() { return &___m_GuidLow_4; }
inline void set_m_GuidLow_4(uint64_t value)
{
___m_GuidLow_4 = value;
}
inline static int32_t get_offset_of_m_GuidHigh_5() { return static_cast<int32_t>(offsetof(XRReferenceObjectLibrary_t07704B2996E507F23EE3C99CFC3BB73A83C99A7C, ___m_GuidHigh_5)); }
inline uint64_t get_m_GuidHigh_5() const { return ___m_GuidHigh_5; }
inline uint64_t* get_address_of_m_GuidHigh_5() { return &___m_GuidHigh_5; }
inline void set_m_GuidHigh_5(uint64_t value)
{
___m_GuidHigh_5 = value;
}
inline static int32_t get_offset_of_m_ReferenceObjects_6() { return static_cast<int32_t>(offsetof(XRReferenceObjectLibrary_t07704B2996E507F23EE3C99CFC3BB73A83C99A7C, ___m_ReferenceObjects_6)); }
inline List_1_t3A1F09045329A30B2867F24E69EC807BE36BEA9B * get_m_ReferenceObjects_6() const { return ___m_ReferenceObjects_6; }
inline List_1_t3A1F09045329A30B2867F24E69EC807BE36BEA9B ** get_address_of_m_ReferenceObjects_6() { return &___m_ReferenceObjects_6; }
inline void set_m_ReferenceObjects_6(List_1_t3A1F09045329A30B2867F24E69EC807BE36BEA9B * value)
{
___m_ReferenceObjects_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_ReferenceObjects_6), (void*)value);
}
};
// UnityEngine.XR.ARSubsystems.XRCpuImage/Plane
struct Plane_tF421A9F250A5E61AFEE38069538AC8ECB9D3E22D
{
public:
// System.Int32 UnityEngine.XR.ARSubsystems.XRCpuImage/Plane::<rowStride>k__BackingField
int32_t ___U3CrowStrideU3Ek__BackingField_0;
// System.Int32 UnityEngine.XR.ARSubsystems.XRCpuImage/Plane::<pixelStride>k__BackingField
int32_t ___U3CpixelStrideU3Ek__BackingField_1;
// Unity.Collections.NativeArray`1<System.Byte> UnityEngine.XR.ARSubsystems.XRCpuImage/Plane::<data>k__BackingField
NativeArray_1_t3C2855C5B238E8C6739D4C17833F244B95C0F785 ___U3CdataU3Ek__BackingField_2;
public:
inline static int32_t get_offset_of_U3CrowStrideU3Ek__BackingField_0() { return static_cast<int32_t>(offsetof(Plane_tF421A9F250A5E61AFEE38069538AC8ECB9D3E22D, ___U3CrowStrideU3Ek__BackingField_0)); }
inline int32_t get_U3CrowStrideU3Ek__BackingField_0() const { return ___U3CrowStrideU3Ek__BackingField_0; }
inline int32_t* get_address_of_U3CrowStrideU3Ek__BackingField_0() { return &___U3CrowStrideU3Ek__BackingField_0; }
inline void set_U3CrowStrideU3Ek__BackingField_0(int32_t value)
{
___U3CrowStrideU3Ek__BackingField_0 = value;
}
inline static int32_t get_offset_of_U3CpixelStrideU3Ek__BackingField_1() { return static_cast<int32_t>(offsetof(Plane_tF421A9F250A5E61AFEE38069538AC8ECB9D3E22D, ___U3CpixelStrideU3Ek__BackingField_1)); }
inline int32_t get_U3CpixelStrideU3Ek__BackingField_1() const { return ___U3CpixelStrideU3Ek__BackingField_1; }
inline int32_t* get_address_of_U3CpixelStrideU3Ek__BackingField_1() { return &___U3CpixelStrideU3Ek__BackingField_1; }
inline void set_U3CpixelStrideU3Ek__BackingField_1(int32_t value)
{
___U3CpixelStrideU3Ek__BackingField_1 = value;
}
inline static int32_t get_offset_of_U3CdataU3Ek__BackingField_2() { return static_cast<int32_t>(offsetof(Plane_tF421A9F250A5E61AFEE38069538AC8ECB9D3E22D, ___U3CdataU3Ek__BackingField_2)); }
inline NativeArray_1_t3C2855C5B238E8C6739D4C17833F244B95C0F785 get_U3CdataU3Ek__BackingField_2() const { return ___U3CdataU3Ek__BackingField_2; }
inline NativeArray_1_t3C2855C5B238E8C6739D4C17833F244B95C0F785 * get_address_of_U3CdataU3Ek__BackingField_2() { return &___U3CdataU3Ek__BackingField_2; }
inline void set_U3CdataU3Ek__BackingField_2(NativeArray_1_t3C2855C5B238E8C6739D4C17833F244B95C0F785 value)
{
___U3CdataU3Ek__BackingField_2 = value;
}
};
// UnityEngine.XR.ARSubsystems.XRCpuImage/Api/OnImageRequestCompleteDelegate
struct OnImageRequestCompleteDelegate_t118FB01E93241BFD5BCA5BEF2A6FD082ACAAB4DD : public MulticastDelegate_t
{
public:
public:
};
// System.Nullable`1<UnityEngine.XR.ARSubsystems.Configuration>
struct Nullable_1_t0FF36C2ABCA6430FFCD4ED32922F18F36382E494
{
public:
// T System.Nullable`1::value
Configuration_t29C11C7E576D64F717543048BDA1EBCEF0CF60C0 ___value_0;
// System.Boolean System.Nullable`1::has_value
bool ___has_value_1;
public:
inline static int32_t get_offset_of_value_0() { return static_cast<int32_t>(offsetof(Nullable_1_t0FF36C2ABCA6430FFCD4ED32922F18F36382E494, ___value_0)); }
inline Configuration_t29C11C7E576D64F717543048BDA1EBCEF0CF60C0 get_value_0() const { return ___value_0; }
inline Configuration_t29C11C7E576D64F717543048BDA1EBCEF0CF60C0 * get_address_of_value_0() { return &___value_0; }
inline void set_value_0(Configuration_t29C11C7E576D64F717543048BDA1EBCEF0CF60C0 value)
{
___value_0 = value;
}
inline static int32_t get_offset_of_has_value_1() { return static_cast<int32_t>(offsetof(Nullable_1_t0FF36C2ABCA6430FFCD4ED32922F18F36382E494, ___has_value_1)); }
inline bool get_has_value_1() const { return ___has_value_1; }
inline bool* get_address_of_has_value_1() { return &___has_value_1; }
inline void set_has_value_1(bool value)
{
___has_value_1 = value;
}
};
// System.ArgumentNullException
struct ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB : public ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00
{
public:
public:
};
// System.ArgumentOutOfRangeException
struct ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 : public ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00
{
public:
// System.Object System.ArgumentOutOfRangeException::m_actualValue
RuntimeObject * ___m_actualValue_19;
public:
inline static int32_t get_offset_of_m_actualValue_19() { return static_cast<int32_t>(offsetof(ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8, ___m_actualValue_19)); }
inline RuntimeObject * get_m_actualValue_19() const { return ___m_actualValue_19; }
inline RuntimeObject ** get_address_of_m_actualValue_19() { return &___m_actualValue_19; }
inline void set_m_actualValue_19(RuntimeObject * value)
{
___m_actualValue_19 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_actualValue_19), (void*)value);
}
};
struct ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8_StaticFields
{
public:
// System.String modreq(System.Runtime.CompilerServices.IsVolatile) System.ArgumentOutOfRangeException::_rangeMessage
String_t* ____rangeMessage_18;
public:
inline static int32_t get_offset_of__rangeMessage_18() { return static_cast<int32_t>(offsetof(ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8_StaticFields, ____rangeMessage_18)); }
inline String_t* get__rangeMessage_18() const { return ____rangeMessage_18; }
inline String_t** get_address_of__rangeMessage_18() { return &____rangeMessage_18; }
inline void set__rangeMessage_18(String_t* value)
{
____rangeMessage_18 = value;
Il2CppCodeGenWriteBarrier((void**)(&____rangeMessage_18), (void*)value);
}
};
// UnityEngine.XR.ARSubsystems.XRSessionSubsystem
struct XRSessionSubsystem_t8AD3C01568AA19BF038D23A6031FF9814CAF93CD : public SubsystemWithProvider_3_t646DFCE31181130FB557E4AFA37198CF3170977F
{
public:
// System.Nullable`1<UnityEngine.XR.ARSubsystems.Configuration> UnityEngine.XR.ARSubsystems.XRSessionSubsystem::<currentConfiguration>k__BackingField
Nullable_1_t0FF36C2ABCA6430FFCD4ED32922F18F36382E494 ___U3CcurrentConfigurationU3Ek__BackingField_4;
// UnityEngine.XR.ARSubsystems.ConfigurationChooser UnityEngine.XR.ARSubsystems.XRSessionSubsystem::m_DefaultConfigurationChooser
ConfigurationChooser_t0CCF856A226297A702F306A2217CF17D652E72C4 * ___m_DefaultConfigurationChooser_5;
// UnityEngine.XR.ARSubsystems.ConfigurationChooser UnityEngine.XR.ARSubsystems.XRSessionSubsystem::m_ConfigurationChooser
ConfigurationChooser_t0CCF856A226297A702F306A2217CF17D652E72C4 * ___m_ConfigurationChooser_6;
public:
inline static int32_t get_offset_of_U3CcurrentConfigurationU3Ek__BackingField_4() { return static_cast<int32_t>(offsetof(XRSessionSubsystem_t8AD3C01568AA19BF038D23A6031FF9814CAF93CD, ___U3CcurrentConfigurationU3Ek__BackingField_4)); }
inline Nullable_1_t0FF36C2ABCA6430FFCD4ED32922F18F36382E494 get_U3CcurrentConfigurationU3Ek__BackingField_4() const { return ___U3CcurrentConfigurationU3Ek__BackingField_4; }
inline Nullable_1_t0FF36C2ABCA6430FFCD4ED32922F18F36382E494 * get_address_of_U3CcurrentConfigurationU3Ek__BackingField_4() { return &___U3CcurrentConfigurationU3Ek__BackingField_4; }
inline void set_U3CcurrentConfigurationU3Ek__BackingField_4(Nullable_1_t0FF36C2ABCA6430FFCD4ED32922F18F36382E494 value)
{
___U3CcurrentConfigurationU3Ek__BackingField_4 = value;
}
inline static int32_t get_offset_of_m_DefaultConfigurationChooser_5() { return static_cast<int32_t>(offsetof(XRSessionSubsystem_t8AD3C01568AA19BF038D23A6031FF9814CAF93CD, ___m_DefaultConfigurationChooser_5)); }
inline ConfigurationChooser_t0CCF856A226297A702F306A2217CF17D652E72C4 * get_m_DefaultConfigurationChooser_5() const { return ___m_DefaultConfigurationChooser_5; }
inline ConfigurationChooser_t0CCF856A226297A702F306A2217CF17D652E72C4 ** get_address_of_m_DefaultConfigurationChooser_5() { return &___m_DefaultConfigurationChooser_5; }
inline void set_m_DefaultConfigurationChooser_5(ConfigurationChooser_t0CCF856A226297A702F306A2217CF17D652E72C4 * value)
{
___m_DefaultConfigurationChooser_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_DefaultConfigurationChooser_5), (void*)value);
}
inline static int32_t get_offset_of_m_ConfigurationChooser_6() { return static_cast<int32_t>(offsetof(XRSessionSubsystem_t8AD3C01568AA19BF038D23A6031FF9814CAF93CD, ___m_ConfigurationChooser_6)); }
inline ConfigurationChooser_t0CCF856A226297A702F306A2217CF17D652E72C4 * get_m_ConfigurationChooser_6() const { return ___m_ConfigurationChooser_6; }
inline ConfigurationChooser_t0CCF856A226297A702F306A2217CF17D652E72C4 ** get_address_of_m_ConfigurationChooser_6() { return &___m_ConfigurationChooser_6; }
inline void set_m_ConfigurationChooser_6(ConfigurationChooser_t0CCF856A226297A702F306A2217CF17D652E72C4 * value)
{
___m_ConfigurationChooser_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_ConfigurationChooser_6), (void*)value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
// System.Object[]
struct ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE : public RuntimeArray
{
public:
ALIGN_FIELD (8) RuntimeObject * m_Items[1];
public:
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);
}
};
// System.String[]
struct StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A : public RuntimeArray
{
public:
ALIGN_FIELD (8) String_t* m_Items[1];
public:
inline String_t* GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline String_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, String_t* value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
inline String_t* GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline String_t** GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, String_t* value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
};
// System.Delegate[]
struct DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8 : public RuntimeArray
{
public:
ALIGN_FIELD (8) Delegate_t * m_Items[1];
public:
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);
}
};
// UnityEngine.XR.ARSubsystems.XRReferenceImage[]
struct XRReferenceImageU5BU5D_t9A2F6DD5CC64F74EBA9D563B001CA15802CF3900 : public RuntimeArray
{
public:
ALIGN_FIELD (8) XRReferenceImage_tB1803A72EB581FB35B2CA944973679132A1D4467 m_Items[1];
public:
inline XRReferenceImage_tB1803A72EB581FB35B2CA944973679132A1D4467 GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline XRReferenceImage_tB1803A72EB581FB35B2CA944973679132A1D4467 * 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, XRReferenceImage_tB1803A72EB581FB35B2CA944973679132A1D4467 value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___m_Name_4), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___m_Texture_5), (void*)NULL);
#endif
}
inline XRReferenceImage_tB1803A72EB581FB35B2CA944973679132A1D4467 GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline XRReferenceImage_tB1803A72EB581FB35B2CA944973679132A1D4467 * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, XRReferenceImage_tB1803A72EB581FB35B2CA944973679132A1D4467 value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___m_Name_4), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___m_Texture_5), (void*)NULL);
#endif
}
};
// UnityEngine.XR.ARSubsystems.XRReferenceObject[]
struct XRReferenceObjectU5BU5D_t84152A67B96E14F580770A62448BAC37D9D60E20 : public RuntimeArray
{
public:
ALIGN_FIELD (8) XRReferenceObject_t18877E1C9F50FF11192A86805D881349020032AE m_Items[1];
public:
inline XRReferenceObject_t18877E1C9F50FF11192A86805D881349020032AE GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline XRReferenceObject_t18877E1C9F50FF11192A86805D881349020032AE * 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, XRReferenceObject_t18877E1C9F50FF11192A86805D881349020032AE value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___m_Name_2), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___m_Entries_3), (void*)NULL);
#endif
}
inline XRReferenceObject_t18877E1C9F50FF11192A86805D881349020032AE GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline XRReferenceObject_t18877E1C9F50FF11192A86805D881349020032AE * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, XRReferenceObject_t18877E1C9F50FF11192A86805D881349020032AE value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___m_Name_2), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___m_Entries_3), (void*)NULL);
#endif
}
};
// System.Int32 Unity.Collections.NativeSlice`1<UnityEngine.XR.ARSubsystems.ConfigurationDescriptor>::get_Length()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t NativeSlice_1_get_Length_m7D873C4D8E53FE893929EDA4D6CA223F64A86759_gshared_inline (NativeSlice_1_tEFBDB61DC6CB8E764B0E92727E8B9EA61662F8F2 * __this, const RuntimeMethod* method);
// Unity.Collections.NativeSlice`1/Enumerator<!0> Unity.Collections.NativeSlice`1<UnityEngine.XR.ARSubsystems.ConfigurationDescriptor>::GetEnumerator()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Enumerator_t4FA921251B8D2F59E29728BD1E99A05D23C68573 NativeSlice_1_GetEnumerator_m7A5BFDF0746F727192351D810B4DA32D67966CEF_gshared (NativeSlice_1_tEFBDB61DC6CB8E764B0E92727E8B9EA61662F8F2 * __this, const RuntimeMethod* method);
// !0 Unity.Collections.NativeSlice`1/Enumerator<UnityEngine.XR.ARSubsystems.ConfigurationDescriptor>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ConfigurationDescriptor_t5CD12F017FCCF861DC33D7C0D6F0121015DEEA78 Enumerator_get_Current_mD6D071A95173F93E2068090483A476DA2D5DBAF6_gshared (Enumerator_t4FA921251B8D2F59E29728BD1E99A05D23C68573 * __this, const RuntimeMethod* method);
// System.Boolean Unity.Collections.NativeSlice`1/Enumerator<UnityEngine.XR.ARSubsystems.ConfigurationDescriptor>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m61D27731413ABDD017C4CEF8CEDC048933342572_gshared (Enumerator_t4FA921251B8D2F59E29728BD1E99A05D23C68573 * __this, const RuntimeMethod* method);
// System.Void Unity.Collections.NativeSlice`1/Enumerator<UnityEngine.XR.ARSubsystems.ConfigurationDescriptor>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_m79BB9557BF615D18A63059DCFFA3FD69F020132A_gshared (Enumerator_t4FA921251B8D2F59E29728BD1E99A05D23C68573 * __this, const RuntimeMethod* method);
// System.Void System.Collections.Generic.List`1<System.Object>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1__ctor_m0F0E00088CF56FEACC9E32D8B7D91B93D91DAA3B_gshared (List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5 * __this, const RuntimeMethod* method);
// System.Void System.Collections.Generic.List`1<System.Object>::Add(!0)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_Add_mF15250BF947CA27BE9A23C08BAC6DB6F180B0EDD_gshared (List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5 * __this, RuntimeObject * ___item0, const RuntimeMethod* method);
// System.Int32 System.Collections.Generic.List`1<System.Object>::get_Count()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t List_1_get_Count_m5D847939ABB9A78203B062CAFFE975792174D00F_gshared_inline (List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5 * __this, const RuntimeMethod* method);
// System.Void* Unity.Collections.LowLevel.Unsafe.NativeSliceUnsafeUtility::GetUnsafePtr<System.Byte>(Unity.Collections.NativeSlice`1<!!0>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void* NativeSliceUnsafeUtility_GetUnsafePtr_TisByte_t0111FAB8B8685667EDDAF77683F0D8F86B659056_mFF166CCFFA843D77765F18DA5E42EE6B80AE6A76_gshared (NativeSlice_1_tA05D3BC7EB042685CBFD3369ECB6140D114C911B ___nativeSlice0, const RuntimeMethod* method);
// System.Void UnityEngine.XR.ARSubsystems.TrackingSubsystem`4<UnityEngine.XR.ARSubsystems.XRAnchor,System.Object,System.Object,System.Object>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TrackingSubsystem_4__ctor_m4E56D6762DBAF4B85197189BE61C13DE30BA9EA0_gshared (TrackingSubsystem_4_t346381F1A8322029735E6CB60BE656844AC911E8 * __this, const RuntimeMethod* method);
// !2 UnityEngine.SubsystemsImplementation.SubsystemWithProvider`3<System.Object,System.Object,System.Object>::get_provider()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject * SubsystemWithProvider_3_get_provider_m6D630D758837E2C1BBCC328AAF4512ADFA1F48F3_gshared_inline (SubsystemWithProvider_3_t80ABC03E4A5E84C63AB7C26719F2C5CA1FAA7EC2 * __this, const RuntimeMethod* method);
// System.Void UnityEngine.SubsystemsImplementation.SubsystemDescriptorWithProvider`2<System.Object,System.Object>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SubsystemDescriptorWithProvider_2__ctor_mF969744E314332AC762279256CF288A3769ABC93_gshared (SubsystemDescriptorWithProvider_2_t4F631AC12A41E95D188968B1776F2A1F983B90A4 * __this, const RuntimeMethod* method);
// System.Void System.Nullable`1<System.Int32>::.ctor(!0)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Nullable_1__ctor_mD5C83DE6764BE7391F906F32B36CCDF7598553AD_gshared (Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 * __this, int32_t ___value0, const RuntimeMethod* method);
// System.Boolean System.Nullable`1<System.Int32>::get_HasValue()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Nullable_1_get_HasValue_m7455E879CFAAE682AE3786D4D2B1F65C8AA23921_gshared_inline (Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 * __this, const RuntimeMethod* method);
// !0 System.Nullable`1<System.Int32>::get_Value()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Nullable_1_get_Value_m81778F362BEC72D4456079CDF5FB0D3487A1BCCC_gshared (Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 * __this, const RuntimeMethod* method);
// System.Int32 System.Nullable`1<System.Int32>::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Nullable_1_GetHashCode_mE204DC50FD677C7E0F2B981BA2E8AE333EB8B108_gshared (Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 * __this, const RuntimeMethod* method);
// !0 System.Nullable`1<System.Int32>::GetValueOrDefault()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t Nullable_1_GetValueOrDefault_m66800983B800C26B67A6999A687EA3767C739406_gshared_inline (Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 * __this, const RuntimeMethod* method);
// System.Void UnityEngine.SubsystemsImplementation.SubsystemWithProvider`3<System.Object,System.Object,System.Object>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SubsystemWithProvider_3__ctor_m547D656ED6A22E04230EE777D2EB7A68BA51212F_gshared (SubsystemWithProvider_3_t80ABC03E4A5E84C63AB7C26719F2C5CA1FAA7EC2 * __this, const RuntimeMethod* method);
// System.Boolean System.Nullable`1<UnityEngine.XR.ARSubsystems.XRCameraConfiguration>::get_HasValue()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Nullable_1_get_HasValue_mD8E0C85C96E8F68E55600773D64912BF77F68545_gshared_inline (Nullable_1_t661141E668063C73311C9DF09B3AE945EA9A1D8C * __this, const RuntimeMethod* method);
// Unity.Collections.NativeArray`1<!!0> Unity.Collections.LowLevel.Unsafe.NativeArrayUnsafeUtility::ConvertExistingDataToNativeArray<System.Byte>(System.Void*,System.Int32,Unity.Collections.Allocator)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NativeArray_1_t3C2855C5B238E8C6739D4C17833F244B95C0F785 NativeArrayUnsafeUtility_ConvertExistingDataToNativeArray_TisByte_t0111FAB8B8685667EDDAF77683F0D8F86B659056_m38F468CD9930A95B57C900167F1D8E8BBFE58F8C_gshared (void* ___dataPointer0, int32_t ___length1, int32_t ___allocator2, const RuntimeMethod* method);
// System.Void System.Action`3<System.Int32Enum,UnityEngine.XR.ARSubsystems.XRCpuImage/ConversionParams,Unity.Collections.NativeArray`1<System.Byte>>::Invoke(!0,!1,!2)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Action_3_Invoke_mA41DB8B227D9369224A864925E983298985196F8_gshared (Action_3_t5C12A3A1B435A4104E4F0DFA238FD12DD10C0804 * __this, int32_t ___arg10, ConversionParams_t3DDB9752BA823641A302D0783C14048D9B09B74A ___arg21, NativeArray_1_t3C2855C5B238E8C6739D4C17833F244B95C0F785 ___arg32, const RuntimeMethod* method);
// System.Void UnityEngine.XR.ARSubsystems.TrackingSubsystem`4<UnityEngine.XR.ARSubsystems.XRPointCloud,System.Object,System.Object,System.Object>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TrackingSubsystem_4__ctor_mC95093BD2646F8DAEE7E7D9D836D9149439CB30A_gshared (TrackingSubsystem_4_t1953500C8BD92CD8DCFED1CC3B58B24A60C24E43 * __this, const RuntimeMethod* method);
// System.Void UnityEngine.XR.ARSubsystems.TrackingSubsystem`4<UnityEngine.XR.ARSubsystems.XREnvironmentProbe,System.Object,System.Object,System.Object>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TrackingSubsystem_4__ctor_m975B52EF0629E5F911DF3B2540956C2ECAC19F1C_gshared (TrackingSubsystem_4_tBD40FD22068207BB90449FC608025235E400C47A * __this, const RuntimeMethod* method);
// !1 UnityEngine.SubsystemsImplementation.SubsystemWithProvider`3<System.Object,System.Object,System.Object>::get_subsystemDescriptor()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject * SubsystemWithProvider_3_get_subsystemDescriptor_m7FBB308E48CF5F204D7EB25F2E4BE1FC4F940998_gshared_inline (SubsystemWithProvider_3_t80ABC03E4A5E84C63AB7C26719F2C5CA1FAA7EC2 * __this, const RuntimeMethod* method);
// System.Void UnityEngine.XR.ARSubsystems.XRFaceMesh::Resize<UnityEngine.Vector3>(System.Int32,Unity.Collections.Allocator,Unity.Collections.NativeArray`1<T>&,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRFaceMesh_Resize_TisVector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E_mAA24CEC7C20C34C26A9E7512608B8930B450C6C0_gshared (int32_t ___length0, int32_t ___allocator1, NativeArray_1_t2577BCA09CA248EFB78BD7FDA7F09D5C395DFF52 * ___array2, bool ___shouldExist3, const RuntimeMethod* method);
// System.Void UnityEngine.XR.ARSubsystems.XRFaceMesh::Resize<UnityEngine.Vector2>(System.Int32,Unity.Collections.Allocator,Unity.Collections.NativeArray`1<T>&,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRFaceMesh_Resize_TisVector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9_mAD9D1AB3912BD722DBA92C5AE79C177DD69AAFFE_gshared (int32_t ___length0, int32_t ___allocator1, NativeArray_1_t431C85F30275831D1F5D458AB73DFCE050693BC0 * ___array2, bool ___shouldExist3, const RuntimeMethod* method);
// System.Void UnityEngine.XR.ARSubsystems.XRFaceMesh::Resize<System.Int32>(System.Int32,Unity.Collections.Allocator,Unity.Collections.NativeArray`1<T>&,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRFaceMesh_Resize_TisInt32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_m786BA056A8C6FDF2F6D3B52D2526981B3BA391F0_gshared (int32_t ___length0, int32_t ___allocator1, NativeArray_1_tD60079F06B473C85CF6C2BB4F2D203F38191AE99 * ___array2, bool ___shouldExist3, const RuntimeMethod* method);
// System.Boolean Unity.Collections.NativeArray`1<UnityEngine.Vector3>::get_IsCreated()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool NativeArray_1_get_IsCreated_mCD60B11F9FB036F65310E83275A1632E57AAC29C_gshared (NativeArray_1_t2577BCA09CA248EFB78BD7FDA7F09D5C395DFF52 * __this, const RuntimeMethod* method);
// System.Void Unity.Collections.NativeArray`1<UnityEngine.Vector3>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NativeArray_1_Dispose_m867A382096AF527E2B854ADC9ED75ED6BF95D76B_gshared (NativeArray_1_t2577BCA09CA248EFB78BD7FDA7F09D5C395DFF52 * __this, const RuntimeMethod* method);
// System.Boolean Unity.Collections.NativeArray`1<System.Int32>::get_IsCreated()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool NativeArray_1_get_IsCreated_m0B7EB9CC11FCECCC0480F589775E99828F222AE5_gshared (NativeArray_1_tD60079F06B473C85CF6C2BB4F2D203F38191AE99 * __this, const RuntimeMethod* method);
// System.Void Unity.Collections.NativeArray`1<System.Int32>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NativeArray_1_Dispose_m69DBDA47FE3991A47E9CFCBFB3292676D22D7655_gshared (NativeArray_1_tD60079F06B473C85CF6C2BB4F2D203F38191AE99 * __this, const RuntimeMethod* method);
// System.Boolean Unity.Collections.NativeArray`1<UnityEngine.Vector2>::get_IsCreated()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool NativeArray_1_get_IsCreated_mF82CF064C6050394DEAC11047A6308998101A4AE_gshared (NativeArray_1_t431C85F30275831D1F5D458AB73DFCE050693BC0 * __this, const RuntimeMethod* method);
// System.Void Unity.Collections.NativeArray`1<UnityEngine.Vector2>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NativeArray_1_Dispose_mE737DADB8C5E4B02C2FB6CB36E86AC6371D806BF_gshared (NativeArray_1_t431C85F30275831D1F5D458AB73DFCE050693BC0 * __this, const RuntimeMethod* method);
// System.Int32 Unity.Collections.NativeArray`1<UnityEngine.Vector3>::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t NativeArray_1_GetHashCode_mE3A484ADA1047A341C388F0261DBA091C2F4F9B9_gshared (NativeArray_1_t2577BCA09CA248EFB78BD7FDA7F09D5C395DFF52 * __this, const RuntimeMethod* method);
// System.Int32 Unity.Collections.NativeArray`1<System.Int32>::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t NativeArray_1_GetHashCode_m1C0484565632411F701F00B79715B0F483A58383_gshared (NativeArray_1_tD60079F06B473C85CF6C2BB4F2D203F38191AE99 * __this, const RuntimeMethod* method);
// System.Int32 Unity.Collections.NativeArray`1<UnityEngine.Vector2>::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t NativeArray_1_GetHashCode_mC922CA29222CB7251722A89B2C5B48CFD82A8C5A_gshared (NativeArray_1_t431C85F30275831D1F5D458AB73DFCE050693BC0 * __this, const RuntimeMethod* method);
// System.Boolean Unity.Collections.NativeArray`1<UnityEngine.Vector3>::Equals(Unity.Collections.NativeArray`1<!0>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool NativeArray_1_Equals_m0A873528008D16BDD7E45156AEBC2DF063CB3995_gshared (NativeArray_1_t2577BCA09CA248EFB78BD7FDA7F09D5C395DFF52 * __this, NativeArray_1_t2577BCA09CA248EFB78BD7FDA7F09D5C395DFF52 ___other0, const RuntimeMethod* method);
// System.Boolean Unity.Collections.NativeArray`1<System.Int32>::Equals(Unity.Collections.NativeArray`1<!0>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool NativeArray_1_Equals_m4A9EECE699C4FF2E1E1C4F81D6C26DAA3B756A23_gshared (NativeArray_1_tD60079F06B473C85CF6C2BB4F2D203F38191AE99 * __this, NativeArray_1_tD60079F06B473C85CF6C2BB4F2D203F38191AE99 ___other0, const RuntimeMethod* method);
// System.Boolean Unity.Collections.NativeArray`1<UnityEngine.Vector2>::Equals(Unity.Collections.NativeArray`1<!0>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool NativeArray_1_Equals_mA564B751B7D08620960FFA67C404F57AEDDDBC79_gshared (NativeArray_1_t431C85F30275831D1F5D458AB73DFCE050693BC0 * __this, NativeArray_1_t431C85F30275831D1F5D458AB73DFCE050693BC0 ___other0, const RuntimeMethod* method);
// System.Void UnityEngine.XR.ARSubsystems.TrackingSubsystem`4<UnityEngine.XR.ARSubsystems.XRFace,System.Object,System.Object,System.Object>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TrackingSubsystem_4__ctor_m88ED6F3499AFB910896A8FCC211F32BC4ACDB87D_gshared (TrackingSubsystem_4_tB043EC909C55FE5BC78AD95436858F4956E3DE4C * __this, const RuntimeMethod* method);
// System.Void UnityEngine.XR.ARSubsystems.TrackingSubsystem`4<UnityEngine.XR.ARSubsystems.XRHumanBody,System.Object,System.Object,System.Object>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TrackingSubsystem_4__ctor_m1D64645D50A5AF5DE737B76E812A9282AE5C75D0_gshared (TrackingSubsystem_4_t758226B1C7A7735796B7029A5913BC43628FCCF3 * __this, const RuntimeMethod* method);
// System.Void UnityEngine.XR.ARSubsystems.TrackingSubsystem`4<UnityEngine.XR.ARSubsystems.XRTrackedImage,System.Object,System.Object,System.Object>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TrackingSubsystem_4__ctor_m6EC254893EEB06ED242EB316FA3C224F9B1EF255_gshared (TrackingSubsystem_4_t227E1B3CD9B70F544BE2BAC33219E40F224A16BA * __this, const RuntimeMethod* method);
// System.Void UnityEngine.SubsystemsImplementation.SubsystemWithProvider`3<System.Object,System.Object,System.Object>::OnStart()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SubsystemWithProvider_3_OnStart_m096AF64E438BB77AB850AB2AF80FD6C8C76688BF_gshared (SubsystemWithProvider_3_t80ABC03E4A5E84C63AB7C26719F2C5CA1FAA7EC2 * __this, const RuntimeMethod* method);
// System.Void UnityEngine.SubsystemsImplementation.SubsystemWithProvider`3<System.Object,System.Object,System.Object>::OnStop()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SubsystemWithProvider_3_OnStop_mEB7A1FF35674710DE4B94A0B1DB33A65DC6DABCD_gshared (SubsystemWithProvider_3_t80ABC03E4A5E84C63AB7C26719F2C5CA1FAA7EC2 * __this, const RuntimeMethod* method);
// System.Void UnityEngine.XR.ARSubsystems.TrackingSubsystem`4<UnityEngine.XR.ARSubsystems.XRTrackedObject,System.Object,System.Object,System.Object>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TrackingSubsystem_4__ctor_mD06E8532EADAB0CF5854F1190D0302D2A5C301EB_gshared (TrackingSubsystem_4_t7F92C20128624C004DAABFC3F72A9994C54898D9 * __this, const RuntimeMethod* method);
// !0 System.Func`1<System.Boolean>::Invoke()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Func_1_Invoke_mCA605B0373C1EE39807AB82AEA983289D3F15C79_gshared (Func_1_t76FCDA5C58178ED310C472967481FDE5F47DCF0F * __this, const RuntimeMethod* method);
// System.Void UnityEngine.XR.ARSubsystems.TrackingSubsystem`4<UnityEngine.XR.ARSubsystems.XRParticipant,System.Object,System.Object,System.Object>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TrackingSubsystem_4__ctor_m00DE04D7B62F9F06D59F884D4382E11CB0476D80_gshared (TrackingSubsystem_4_t2CAAD77E4532041B0120AE543DB331C1CECFA765 * __this, const RuntimeMethod* method);
// System.Void UnityEngine.XR.ARSubsystems.TrackingSubsystem`4<UnityEngine.XR.ARSubsystems.BoundedPlane,System.Object,System.Object,System.Object>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TrackingSubsystem_4__ctor_m495E6B5CCD50BDC48525BBF2A817EBED5A305233_gshared (TrackingSubsystem_4_t03AE7A9F3FCFC6AD533F1AC3F403168B8140649F * __this, const RuntimeMethod* method);
// System.Boolean Unity.Collections.NativeArray`1<System.Single>::get_IsCreated()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool NativeArray_1_get_IsCreated_m394E202D29B5488CB56139D346E1A64EBBDA2E9C_gshared (NativeArray_1_t5F920DC5A531D604D161A0FAD3479B5BFE0D9232 * __this, const RuntimeMethod* method);
// System.Void Unity.Collections.NativeArray`1<System.Single>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NativeArray_1_Dispose_mC03B89A2188FC84335036FA76CEB1925D7DC4294_gshared (NativeArray_1_t5F920DC5A531D604D161A0FAD3479B5BFE0D9232 * __this, const RuntimeMethod* method);
// System.Boolean Unity.Collections.NativeArray`1<System.UInt64>::get_IsCreated()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool NativeArray_1_get_IsCreated_mC0D0556229A19FBA32063A797CAE4BE1A8417E22_gshared (NativeArray_1_t9D118727A643E61710D0A4DF5B0C8CD1A918A40B * __this, const RuntimeMethod* method);
// System.Void Unity.Collections.NativeArray`1<System.UInt64>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NativeArray_1_Dispose_m02DA8137FD41E7E6BB40E763EA2F6535B770C375_gshared (NativeArray_1_t9D118727A643E61710D0A4DF5B0C8CD1A918A40B * __this, const RuntimeMethod* method);
// System.Int32 Unity.Collections.NativeArray`1<System.Single>::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t NativeArray_1_GetHashCode_mC443459008949D4F14829D441CAE3C82A4D3F86B_gshared (NativeArray_1_t5F920DC5A531D604D161A0FAD3479B5BFE0D9232 * __this, const RuntimeMethod* method);
// System.Int32 Unity.Collections.NativeArray`1<System.UInt64>::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t NativeArray_1_GetHashCode_m84FE16CA6E708E33854BE0C102597EE6D16DED19_gshared (NativeArray_1_t9D118727A643E61710D0A4DF5B0C8CD1A918A40B * __this, const RuntimeMethod* method);
// System.Boolean Unity.Collections.NativeArray`1<System.Single>::Equals(Unity.Collections.NativeArray`1<!0>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool NativeArray_1_Equals_m71BD7AE6B5085F75CED3D638275DCFF43B231A5B_gshared (NativeArray_1_t5F920DC5A531D604D161A0FAD3479B5BFE0D9232 * __this, NativeArray_1_t5F920DC5A531D604D161A0FAD3479B5BFE0D9232 ___other0, const RuntimeMethod* method);
// System.Boolean Unity.Collections.NativeArray`1<System.UInt64>::Equals(Unity.Collections.NativeArray`1<!0>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool NativeArray_1_Equals_m982D9159B14354AF45D0234A0ACF47BF81D62A99_gshared (NativeArray_1_t9D118727A643E61710D0A4DF5B0C8CD1A918A40B * __this, NativeArray_1_t9D118727A643E61710D0A4DF5B0C8CD1A918A40B ___other0, const RuntimeMethod* method);
// System.Void UnityEngine.XR.ARSubsystems.TrackingSubsystem`4<UnityEngine.XR.ARSubsystems.XRRaycast,System.Object,System.Object,System.Object>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TrackingSubsystem_4__ctor_mFF3892B28340E6F3ED1F3DC251FF933173F496B6_gshared (TrackingSubsystem_4_tE9F5623D0E551591334872A367EFF28A72775EEA * __this, const RuntimeMethod* method);
// System.Boolean System.Nullable`1<UnityEngine.Vector2>::get_HasValue()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Nullable_1_get_HasValue_m68E887776727FD03427726B3149807754F1B770B_gshared_inline (Nullable_1_tF7B8C31618B00224A735E543E66CD257CB7E42FB * __this, const RuntimeMethod* method);
// !0 System.Nullable`1<UnityEngine.Vector2>::get_Value()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 Nullable_1_get_Value_m47529826F53174F3E761F99E88ACC08B02820E4D_gshared (Nullable_1_tF7B8C31618B00224A735E543E66CD257CB7E42FB * __this, const RuntimeMethod* method);
// System.Int32 System.Collections.Generic.List`1<UnityEngine.XR.ARSubsystems.XRReferenceImage>::get_Count()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t List_1_get_Count_m0793D9FA487681001881232EFD626044240AD7D4_gshared_inline (List_1_tBFEC44C63782254A7C0F22D20FC51F72002482EC * __this, const RuntimeMethod* method);
// System.Collections.Generic.List`1/Enumerator<!0> System.Collections.Generic.List`1<UnityEngine.XR.ARSubsystems.XRReferenceImage>::GetEnumerator()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Enumerator_tF7E144ED2E7144FAE6449F9929026EE5345AF091 List_1_GetEnumerator_mCA314B5D3AF7A49BB0A0F9A7678AB806E1634C84_gshared (List_1_tBFEC44C63782254A7C0F22D20FC51F72002482EC * __this, const RuntimeMethod* method);
// !0 System.Collections.Generic.List`1<UnityEngine.XR.ARSubsystems.XRReferenceImage>::get_Item(System.Int32)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR XRReferenceImage_tB1803A72EB581FB35B2CA944973679132A1D4467 List_1_get_Item_mB9758E724C2CACE0CC41D0AA2B78FCCB962CEA37_gshared_inline (List_1_tBFEC44C63782254A7C0F22D20FC51F72002482EC * __this, int32_t ___index0, const RuntimeMethod* method);
// System.Int32 System.Collections.Generic.List`1<UnityEngine.XR.ARSubsystems.XRReferenceImage>::IndexOf(!0)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t List_1_IndexOf_m66260729958DA566371F821C7BC904679A0D5745_gshared (List_1_tBFEC44C63782254A7C0F22D20FC51F72002482EC * __this, XRReferenceImage_tB1803A72EB581FB35B2CA944973679132A1D4467 ___item0, const RuntimeMethod* method);
// System.Void System.Collections.Generic.List`1<UnityEngine.XR.ARSubsystems.XRReferenceImage>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1__ctor_m07F165CAD958CA1F86EA27507BCC2528E3933D2B_gshared (List_1_tBFEC44C63782254A7C0F22D20FC51F72002482EC * __this, const RuntimeMethod* method);
// System.Int32 System.Collections.Generic.List`1<UnityEngine.XR.ARSubsystems.XRReferenceObject>::get_Count()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t List_1_get_Count_m84A3D8A14DE6FA8E93A6DBA5F857B6E2861FF246_gshared_inline (List_1_t3A1F09045329A30B2867F24E69EC807BE36BEA9B * __this, const RuntimeMethod* method);
// System.Collections.Generic.List`1/Enumerator<!0> System.Collections.Generic.List`1<UnityEngine.XR.ARSubsystems.XRReferenceObject>::GetEnumerator()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Enumerator_t70FBF5DA5BEDE113A92C759B1356E6AA38D54708 List_1_GetEnumerator_m45E71AF4863349632BEE157CA69F3A54CF72443F_gshared (List_1_t3A1F09045329A30B2867F24E69EC807BE36BEA9B * __this, const RuntimeMethod* method);
// !0 System.Collections.Generic.List`1<UnityEngine.XR.ARSubsystems.XRReferenceObject>::get_Item(System.Int32)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR XRReferenceObject_t18877E1C9F50FF11192A86805D881349020032AE List_1_get_Item_m198C10E9F0F98950D2C37B38E085E659EBF05243_gshared_inline (List_1_t3A1F09045329A30B2867F24E69EC807BE36BEA9B * __this, int32_t ___index0, const RuntimeMethod* method);
// System.Int32 System.Collections.Generic.List`1<UnityEngine.XR.ARSubsystems.XRReferenceObject>::IndexOf(!0)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t List_1_IndexOf_m379AA5FE2596B5AD6A4E1EF381A223C3A54CE492_gshared (List_1_t3A1F09045329A30B2867F24E69EC807BE36BEA9B * __this, XRReferenceObject_t18877E1C9F50FF11192A86805D881349020032AE ___item0, const RuntimeMethod* method);
// System.Void System.Collections.Generic.List`1<UnityEngine.XR.ARSubsystems.XRReferenceObject>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1__ctor_m78DBF761B0A442EE07D9A114BC9981A3866E72CC_gshared (List_1_t3A1F09045329A30B2867F24E69EC807BE36BEA9B * __this, const RuntimeMethod* method);
// System.Void UnityEngine.XR.ARSubsystems.TrackingSubsystem`4<UnityEngine.XR.ARSubsystems.XRReferencePoint,System.Object,System.Object,System.Object>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TrackingSubsystem_4__ctor_mE19523A7606EFAD4BE7A4A102D5224D66B5FE0DE_gshared (TrackingSubsystem_4_t3385ADCA6DCAB14BAB5A5E886D096E0B5FA530F5 * __this, const RuntimeMethod* method);
// System.Boolean Unity.Collections.NativeArray`1<UnityEngine.XR.ARSubsystems.ConfigurationDescriptor>::get_IsCreated()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool NativeArray_1_get_IsCreated_m558F60AA76D10E2CDBB1B2882F4175B8B9F9F9AB_gshared (NativeArray_1_tC9A9DFD8C5E8BBF71F83CBC0CCF7C4BC38E3A4CA * __this, const RuntimeMethod* method);
// Unity.Collections.NativeSlice`1<!0> Unity.Collections.NativeSlice`1<UnityEngine.XR.ARSubsystems.ConfigurationDescriptor>::op_Implicit(Unity.Collections.NativeArray`1<!0>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NativeSlice_1_tEFBDB61DC6CB8E764B0E92727E8B9EA61662F8F2 NativeSlice_1_op_Implicit_m494BB4F27DEE7CD30ADD66B1A6FC945E828865D5_gshared (NativeArray_1_tC9A9DFD8C5E8BBF71F83CBC0CCF7C4BC38E3A4CA ___array0, const RuntimeMethod* method);
// System.Void System.Nullable`1<UnityEngine.XR.ARSubsystems.Configuration>::.ctor(!0)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Nullable_1__ctor_m92BC32A206E9876BAD178B5E19AD685B8894AB4C_gshared (Nullable_1_t0FF36C2ABCA6430FFCD4ED32922F18F36382E494 * __this, Configuration_t29C11C7E576D64F717543048BDA1EBCEF0CF60C0 ___value0, const RuntimeMethod* method);
// System.Void Unity.Collections.NativeArray`1<UnityEngine.XR.ARSubsystems.ConfigurationDescriptor>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NativeArray_1_Dispose_m366C5B6CC3F2B8D322B33FA8A94C30460A38C174_gshared (NativeArray_1_tC9A9DFD8C5E8BBF71F83CBC0CCF7C4BC38E3A4CA * __this, const RuntimeMethod* method);
// System.Boolean System.Nullable`1<UnityEngine.XR.ARSubsystems.Configuration>::get_HasValue()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Nullable_1_get_HasValue_m965388873B2BD6BFE630C83A6B9D18EA421A8793_gshared_inline (Nullable_1_t0FF36C2ABCA6430FFCD4ED32922F18F36382E494 * __this, const RuntimeMethod* method);
// !0 System.Nullable`1<UnityEngine.XR.ARSubsystems.Configuration>::get_Value()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Configuration_t29C11C7E576D64F717543048BDA1EBCEF0CF60C0 Nullable_1_get_Value_m3C3A95F64243501B1C7A94F24C463A2B13DC2E1A_gshared (Nullable_1_t0FF36C2ABCA6430FFCD4ED32922F18F36382E494 * __this, const RuntimeMethod* method);
// System.Void UnityEngine.SubsystemsImplementation.SubsystemProvider`1<System.Object>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SubsystemProvider_1__ctor_mB62E93FA12EE8AA30CF2373596DCFC4661014EFC_gshared (SubsystemProvider_1_tB5A0B737E782053A89719964DAF99F32E5CBFC46 * __this, const RuntimeMethod* method);
// System.Void Unity.Collections.NativeArray`1<UnityEngine.XR.ARSubsystems.XRCameraConfiguration>::.ctor(System.Int32,Unity.Collections.Allocator,Unity.Collections.NativeArrayOptions)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NativeArray_1__ctor_m55427120ACDC71253ECC88FB9FE3C72B9B8DC920_gshared (NativeArray_1_t80D42D57D2D76B05EFDA2CF74AE660AB5FDD9545 * __this, int32_t ___length0, int32_t ___allocator1, int32_t ___options2, const RuntimeMethod* method);
// System.Void Unity.Collections.NativeArray`1<UnityEngine.XR.ARSubsystems.XRTextureDescriptor>::.ctor(System.Int32,Unity.Collections.Allocator,Unity.Collections.NativeArrayOptions)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NativeArray_1__ctor_m2BCB109D4076B26086589A4C8600C49A9F38FA7A_gshared (NativeArray_1_t290DD5A348463DD4415AFE27775047312478F952 * __this, int32_t ___length0, int32_t ___allocator1, int32_t ___options2, const RuntimeMethod* method);
// System.Int32 Unity.Collections.NativeArray`1<System.Byte>::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t NativeArray_1_GetHashCode_m13D81A3581866C33D8C9B13443F7342C9105EF98_gshared (NativeArray_1_t3C2855C5B238E8C6739D4C17833F244B95C0F785 * __this, const RuntimeMethod* method);
// System.Boolean Unity.Collections.NativeArray`1<System.Byte>::Equals(Unity.Collections.NativeArray`1<!0>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool NativeArray_1_Equals_mF60658EAFF21BD4AC0990C4C8944C20761F178DA_gshared (NativeArray_1_t3C2855C5B238E8C6739D4C17833F244B95C0F785 * __this, NativeArray_1_t3C2855C5B238E8C6739D4C17833F244B95C0F785 ___other0, const RuntimeMethod* method);
// UnityEngine.XR.ARSubsystems.Promise`1<T> UnityEngine.XR.ARSubsystems.Promise`1<System.Int32Enum>::CreateResolvedPromise(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Promise_1_t4A177D2785B1022FAEDD19EC4B7D80529BEAFDAB * Promise_1_CreateResolvedPromise_m83C2B68BEF595E94B0BA8474C48C1D891ED05E44_gshared (int32_t ___result0, const RuntimeMethod* method);
// System.Void System.ArgumentNullException::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentNullException__ctor_m81AB157B93BFE2FBFDB08B88F84B444293042F97 (ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB * __this, String_t* ___paramName0, const RuntimeMethod* method);
// System.Void UnityEngine.XR.ARSubsystems.AddReferenceImageJobState::.ctor(System.IntPtr,Unity.Jobs.JobHandle,UnityEngine.XR.ARSubsystems.MutableRuntimeReferenceImageLibrary)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AddReferenceImageJobState__ctor_mAFC8E35811BAF9292B00B7D06EF4C6895AFDD74C (AddReferenceImageJobState_t6818A53BD54BDCDCA326D660A1575F66DF832633 * __this, intptr_t ___nativePtr0, JobHandle_t8AEB8D31C25D7774C71D62B0C662525E6E36D847 ___jobHandle1, MutableRuntimeReferenceImageLibrary_t887376CE46B48DEEC6E8655D429BADCA6E3C7EAA * ___library2, const RuntimeMethod* method);
// Unity.Jobs.JobHandle UnityEngine.XR.ARSubsystems.AddReferenceImageJobState::get_jobHandle()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR JobHandle_t8AEB8D31C25D7774C71D62B0C662525E6E36D847 AddReferenceImageJobState_get_jobHandle_mD67B6C7B795C0EAAF2B27C2C23A0CDF0597DDD41_inline (AddReferenceImageJobState_t6818A53BD54BDCDCA326D660A1575F66DF832633 * __this, const RuntimeMethod* method);
// System.IntPtr UnityEngine.XR.ARSubsystems.AddReferenceImageJobState::AsIntPtr()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR intptr_t AddReferenceImageJobState_AsIntPtr_m3918B9BEE2FA6B991CFA1BE13F1B211656B8A78B_inline (AddReferenceImageJobState_t6818A53BD54BDCDCA326D660A1575F66DF832633 * __this, const RuntimeMethod* method);
// UnityEngine.XR.ARSubsystems.AddReferenceImageJobStatus UnityEngine.XR.ARSubsystems.AddReferenceImageJobState::get_status()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t AddReferenceImageJobState_get_status_mEB3B5CAB4B567D06A94B438A171D4F21F335D850 (AddReferenceImageJobState_t6818A53BD54BDCDCA326D660A1575F66DF832633 * __this, const RuntimeMethod* method);
// System.String System.IntPtr::ToString()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* IntPtr_ToString_mC499BFB66CB492853717FFACA63599701FC1E91C (intptr_t* __this, const RuntimeMethod* method);
// System.String System.String::Format(System.String,System.Object,System.Object,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Format_m039737CCD992C5BFC8D16DFD681F5E8786E87FA6 (String_t* ___format0, RuntimeObject * ___arg01, RuntimeObject * ___arg12, RuntimeObject * ___arg23, const RuntimeMethod* method);
// System.String UnityEngine.XR.ARSubsystems.AddReferenceImageJobState::ToString()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* AddReferenceImageJobState_ToString_mF0C9F0307F13953D372C0BA03F3DFFAC3DE6E912 (AddReferenceImageJobState_t6818A53BD54BDCDCA326D660A1575F66DF832633 * __this, const RuntimeMethod* method);
// System.Int32 System.IntPtr::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t IntPtr_GetHashCode_m55E65FB52EFE7C0EBC3C28E66A5D7542F3B1D35D (intptr_t* __this, const RuntimeMethod* method);
// System.Int32 UnityEngine.XR.ARSubsystems.HashCode::ReferenceHash(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t HashCode_ReferenceHash_mE6CC6EA3C87D9F040876D66CF582D6FF68FC359C (RuntimeObject * ___obj0, const RuntimeMethod* method);
// System.Int32 UnityEngine.XR.ARSubsystems.HashCode::Combine(System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t HashCode_Combine_m23C951F115303C9E040D18947821969B602863FC (int32_t ___hash10, int32_t ___hash21, const RuntimeMethod* method);
// System.Int32 UnityEngine.XR.ARSubsystems.AddReferenceImageJobState::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t AddReferenceImageJobState_GetHashCode_m7A9EFB3628AFD98DE738E0766DD6267C90303E47 (AddReferenceImageJobState_t6818A53BD54BDCDCA326D660A1575F66DF832633 * __this, const RuntimeMethod* method);
// System.Boolean UnityEngine.XR.ARSubsystems.AddReferenceImageJobState::Equals(UnityEngine.XR.ARSubsystems.AddReferenceImageJobState)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool AddReferenceImageJobState_Equals_mDF37DF091DA56B8CFD7EF4AE078984D7A4072AB5 (AddReferenceImageJobState_t6818A53BD54BDCDCA326D660A1575F66DF832633 * __this, AddReferenceImageJobState_t6818A53BD54BDCDCA326D660A1575F66DF832633 ___other0, const RuntimeMethod* method);
// System.Boolean UnityEngine.XR.ARSubsystems.AddReferenceImageJobState::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool AddReferenceImageJobState_Equals_m2B2E0068F7BDF4DB619306E672D9B4FDF1AAD495 (AddReferenceImageJobState_t6818A53BD54BDCDCA326D660A1575F66DF832633 * __this, RuntimeObject * ___obj0, const RuntimeMethod* method);
// System.Boolean System.IntPtr::op_Equality(System.IntPtr,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool IntPtr_op_Equality_mD94F3FE43A65684EFF984A7B95E70D2520C0AC73 (intptr_t ___value10, intptr_t ___value21, const RuntimeMethod* method);
// System.Void UnityEngine.XR.ARSubsystems.BoundedPlane::.ctor(UnityEngine.XR.ARSubsystems.TrackableId,UnityEngine.XR.ARSubsystems.TrackableId,UnityEngine.Pose,UnityEngine.Vector2,UnityEngine.Vector2,UnityEngine.XR.ARSubsystems.PlaneAlignment,UnityEngine.XR.ARSubsystems.TrackingState,System.IntPtr,UnityEngine.XR.ARSubsystems.PlaneClassification)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BoundedPlane__ctor_mDCFBC1B53B86B650BBB103C9FC25E7872CBF804B (BoundedPlane_t9001963C43ACDF4CDEA8BBF97CD783B7969B79C5 * __this, TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B ___trackableId0, TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B ___subsumedBy1, Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A ___pose2, Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___center3, Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___size4, int32_t ___alignment5, int32_t ___trackingState6, intptr_t ___nativePtr7, int32_t ___classification8, const RuntimeMethod* method);
// UnityEngine.XR.ARSubsystems.TrackableId UnityEngine.XR.ARSubsystems.BoundedPlane::get_trackableId()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B BoundedPlane_get_trackableId_m32943441D74DC226DC907A05B5B6C6EBBC70F95B_inline (BoundedPlane_t9001963C43ACDF4CDEA8BBF97CD783B7969B79C5 * __this, const RuntimeMethod* method);
// UnityEngine.XR.ARSubsystems.TrackableId UnityEngine.XR.ARSubsystems.BoundedPlane::get_subsumedById()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B BoundedPlane_get_subsumedById_mD61EFD7A91B5F290F63A1AE59153B75BB33B89CF_inline (BoundedPlane_t9001963C43ACDF4CDEA8BBF97CD783B7969B79C5 * __this, const RuntimeMethod* method);
// UnityEngine.Pose UnityEngine.XR.ARSubsystems.BoundedPlane::get_pose()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A BoundedPlane_get_pose_m8302E13809156362584FA0AE137DD911D30665BA_inline (BoundedPlane_t9001963C43ACDF4CDEA8BBF97CD783B7969B79C5 * __this, const RuntimeMethod* method);
// UnityEngine.Vector2 UnityEngine.XR.ARSubsystems.BoundedPlane::get_center()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 BoundedPlane_get_center_mA4667303D86B331F7EC5F278910145E7633EA973_inline (BoundedPlane_t9001963C43ACDF4CDEA8BBF97CD783B7969B79C5 * __this, const RuntimeMethod* method);
// UnityEngine.Vector2 UnityEngine.Vector2::op_Multiply(UnityEngine.Vector2,System.Single)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 Vector2_op_Multiply_mC7A7802352867555020A90205EBABA56EE5E36CB_inline (Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___a0, float ___d1, const RuntimeMethod* method);
// UnityEngine.Vector2 UnityEngine.XR.ARSubsystems.BoundedPlane::get_extents()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 BoundedPlane_get_extents_mEED7F74BBACA8EA90D43ED12EC9D10C9059118CD (BoundedPlane_t9001963C43ACDF4CDEA8BBF97CD783B7969B79C5 * __this, const RuntimeMethod* method);
// UnityEngine.Vector2 UnityEngine.XR.ARSubsystems.BoundedPlane::get_size()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 BoundedPlane_get_size_m204F4F37C0FB6F7294682D961B53F4F9639E3882_inline (BoundedPlane_t9001963C43ACDF4CDEA8BBF97CD783B7969B79C5 * __this, const RuntimeMethod* method);
// UnityEngine.XR.ARSubsystems.PlaneAlignment UnityEngine.XR.ARSubsystems.BoundedPlane::get_alignment()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t BoundedPlane_get_alignment_m72B849B54224B1493DFF448BCF2AB8634751DC71_inline (BoundedPlane_t9001963C43ACDF4CDEA8BBF97CD783B7969B79C5 * __this, const RuntimeMethod* method);
// UnityEngine.XR.ARSubsystems.TrackingState UnityEngine.XR.ARSubsystems.BoundedPlane::get_trackingState()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t BoundedPlane_get_trackingState_mBF10ADD6DD969A0DA7FCC8299FFA56AEB9B837CA_inline (BoundedPlane_t9001963C43ACDF4CDEA8BBF97CD783B7969B79C5 * __this, const RuntimeMethod* method);
// System.IntPtr UnityEngine.XR.ARSubsystems.BoundedPlane::get_nativePtr()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR intptr_t BoundedPlane_get_nativePtr_m626921F0179BF37BC5F06C2587D298FB40F31FE9_inline (BoundedPlane_t9001963C43ACDF4CDEA8BBF97CD783B7969B79C5 * __this, const RuntimeMethod* method);
// UnityEngine.XR.ARSubsystems.PlaneClassification UnityEngine.XR.ARSubsystems.BoundedPlane::get_classification()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t BoundedPlane_get_classification_m842651162BFE9633C414B16CD1D86FBBE86589A3_inline (BoundedPlane_t9001963C43ACDF4CDEA8BBF97CD783B7969B79C5 * __this, const RuntimeMethod* method);
// System.Int64 System.IntPtr::ToInt64()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t IntPtr_ToInt64_m521F809F5D9ECAF93E808CFFFE45F67620C7879A (intptr_t* __this, const RuntimeMethod* method);
// System.String System.String::Format(System.String,System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Format_mCED6767EA5FEE6F15ABCD5B4F9150D1284C2795B (String_t* ___format0, ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* ___args1, const RuntimeMethod* method);
// System.String UnityEngine.XR.ARSubsystems.BoundedPlane::ToString()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* BoundedPlane_ToString_m0A542F5D2CB72755643184989BE3B9E6899D731A (BoundedPlane_t9001963C43ACDF4CDEA8BBF97CD783B7969B79C5 * __this, const RuntimeMethod* method);
// System.Boolean UnityEngine.XR.ARSubsystems.BoundedPlane::Equals(UnityEngine.XR.ARSubsystems.BoundedPlane)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool BoundedPlane_Equals_m3A984C969EC0ACE7B83F661C80AA82C54D455D1A (BoundedPlane_t9001963C43ACDF4CDEA8BBF97CD783B7969B79C5 * __this, BoundedPlane_t9001963C43ACDF4CDEA8BBF97CD783B7969B79C5 ___other0, const RuntimeMethod* method);
// System.Boolean UnityEngine.XR.ARSubsystems.BoundedPlane::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool BoundedPlane_Equals_m5B2E8A0932BC0242B51091CDDFED85901156A005 (BoundedPlane_t9001963C43ACDF4CDEA8BBF97CD783B7969B79C5 * __this, RuntimeObject * ___obj0, const RuntimeMethod* method);
// System.Int32 UnityEngine.XR.ARSubsystems.TrackableId::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t TrackableId_GetHashCode_mFD297FC6DB40FB5B28C6E9B7A2CF2785D75C4E86 (TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B * __this, const RuntimeMethod* method);
// System.Int32 UnityEngine.Pose::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Pose_GetHashCode_mE1DD7FBCCB1C979B252F0B117276BA11CF4D2367 (Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A * __this, const RuntimeMethod* method);
// System.Int32 UnityEngine.Vector2::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Vector2_GetHashCode_m9A5DD8406289F38806CC42C394E324C1C2AB3732 (Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 * __this, const RuntimeMethod* method);
// System.Int32 System.Int32::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Int32_GetHashCode_mEDD3F492A5F7CF021125AE3F38E2B8F8743FC667 (int32_t* __this, const RuntimeMethod* method);
// System.Int32 UnityEngine.XR.ARSubsystems.BoundedPlane::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t BoundedPlane_GetHashCode_m99D4D46A432C2E00A182A86788A750522BFBCAEF (BoundedPlane_t9001963C43ACDF4CDEA8BBF97CD783B7969B79C5 * __this, const RuntimeMethod* method);
// System.Boolean UnityEngine.XR.ARSubsystems.TrackableId::Equals(UnityEngine.XR.ARSubsystems.TrackableId)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TrackableId_Equals_m1DF35616359175E3D66DE18250E8CDA1E6462B06 (TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B * __this, TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B ___other0, const RuntimeMethod* method);
// System.Boolean UnityEngine.Pose::Equals(UnityEngine.Pose)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Pose_Equals_mFAE0041090F2032B8FCE63A0F289DD206134BF15 (Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A * __this, Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A ___other0, const RuntimeMethod* method);
// System.Boolean UnityEngine.Vector2::Equals(UnityEngine.Vector2)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Vector2_Equals_m6E08A16717F2B9EE8B24EBA6B234A03098D5F05D_inline (Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 * __this, Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___other0, const RuntimeMethod* method);
// UnityEngine.XR.ARSubsystems.TrackableId UnityEngine.XR.ARSubsystems.TrackableId::get_invalidId()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B TrackableId_get_invalidId_m06B698EFFA7748E185299C72B5CEC1AA5B221F85_inline (const RuntimeMethod* method);
// UnityEngine.Pose UnityEngine.Pose::get_identity()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A Pose_get_identity_m334B16AC3024785914BCC5A2B949750A010878BF (const RuntimeMethod* method);
// UnityEngine.Vector2 UnityEngine.Vector2::get_zero()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 Vector2_get_zero_m621041B9DF5FAE86C1EF4CB28C224FEA089CB828 (const RuntimeMethod* method);
// UnityEngine.XR.ARSubsystems.ConfigurationDescriptor UnityEngine.XR.ARSubsystems.Configuration::get_descriptor()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ConfigurationDescriptor_t5CD12F017FCCF861DC33D7C0D6F0121015DEEA78 Configuration_get_descriptor_mD7539C193666CFFB9258CE40D88EB7DA3C48DDDA_inline (Configuration_t29C11C7E576D64F717543048BDA1EBCEF0CF60C0 * __this, const RuntimeMethod* method);
// System.Void UnityEngine.XR.ARSubsystems.Configuration::set_descriptor(UnityEngine.XR.ARSubsystems.ConfigurationDescriptor)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Configuration_set_descriptor_mC8DB7CFDB5C7E267B15CFD3DE2133A1B482020E9_inline (Configuration_t29C11C7E576D64F717543048BDA1EBCEF0CF60C0 * __this, ConfigurationDescriptor_t5CD12F017FCCF861DC33D7C0D6F0121015DEEA78 ___value0, const RuntimeMethod* method);
// UnityEngine.XR.ARSubsystems.Feature UnityEngine.XR.ARSubsystems.Configuration::get_features()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR uint64_t Configuration_get_features_m8F2353DC080AF51D657C4CBD8E9DB4DAEAB72B5A_inline (Configuration_t29C11C7E576D64F717543048BDA1EBCEF0CF60C0 * __this, const RuntimeMethod* method);
// System.Void UnityEngine.XR.ARSubsystems.Configuration::set_features(UnityEngine.XR.ARSubsystems.Feature)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Configuration_set_features_m778B95140CCFD2CF143489375C8B15258B5CA149_inline (Configuration_t29C11C7E576D64F717543048BDA1EBCEF0CF60C0 * __this, uint64_t ___value0, const RuntimeMethod* method);
// UnityEngine.XR.ARSubsystems.Feature UnityEngine.XR.ARSubsystems.ConfigurationDescriptor::get_capabilities()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR uint64_t ConfigurationDescriptor_get_capabilities_mD48908AE629D6E78D84F355B59CF742ABFD7C649_inline (ConfigurationDescriptor_t5CD12F017FCCF861DC33D7C0D6F0121015DEEA78 * __this, const RuntimeMethod* method);
// System.Boolean UnityEngine.XR.ARSubsystems.FeatureExtensions::All(UnityEngine.XR.ARSubsystems.Feature,UnityEngine.XR.ARSubsystems.Feature)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool FeatureExtensions_All_mE045F59D960EB11FE1A7B31076D0132109B28160 (uint64_t ___self0, uint64_t ___features1, const RuntimeMethod* method);
// UnityEngine.XR.ARSubsystems.Feature UnityEngine.XR.ARSubsystems.FeatureExtensions::SetDifference(UnityEngine.XR.ARSubsystems.Feature,UnityEngine.XR.ARSubsystems.Feature)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t FeatureExtensions_SetDifference_m9699D6212D9BD79EE52C44EF08FF7461E7F2C1C5 (uint64_t ___self0, uint64_t ___features1, const RuntimeMethod* method);
// System.String UnityEngine.XR.ARSubsystems.FeatureExtensions::ToStringList(UnityEngine.XR.ARSubsystems.Feature,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* FeatureExtensions_ToStringList_m1B8E6CA945AE2E060DB1D4DFA60CCD72AADC082D (uint64_t ___features0, String_t* ___separator1, const RuntimeMethod* method);
// System.String System.String::Concat(System.String,System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Concat_m89EAB4C6A96B0E5C3F87300D6BE78D386B9EFC44 (String_t* ___str00, String_t* ___str11, String_t* ___str22, const RuntimeMethod* method);
// System.Void System.NotSupportedException::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NotSupportedException__ctor_m40BC57BDA6E0E119B73700CC809A14B57DC65A90 (NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 * __this, String_t* ___message0, const RuntimeMethod* method);
// UnityEngine.XR.ARSubsystems.Feature UnityEngine.XR.ARSubsystems.FeatureExtensions::Cameras(UnityEngine.XR.ARSubsystems.Feature)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t FeatureExtensions_Cameras_m3814978160FF343F4B295277B62A10A90BE46F7F (uint64_t ___self0, const RuntimeMethod* method);
// System.Boolean UnityEngine.XR.ARSubsystems.FeatureExtensions::Any(UnityEngine.XR.ARSubsystems.Feature,UnityEngine.XR.ARSubsystems.Feature)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool FeatureExtensions_Any_mE55A6DE2870496D907915F6C117FC22D107B54A9 (uint64_t ___self0, uint64_t ___features1, const RuntimeMethod* method);
// System.Int32 UnityEngine.XR.ARSubsystems.FeatureExtensions::Count(UnityEngine.XR.ARSubsystems.Feature)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t FeatureExtensions_Count_m5EF2EFA14A36261D35A95A6D5A39A107D223F6B6 (uint64_t ___self0, const RuntimeMethod* method);
// System.String System.String::Concat(System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Concat_m4B4AB72618348C5DFBFBA8DED84B9E2EBDB55E1B (String_t* ___str00, String_t* ___str11, const RuntimeMethod* method);
// System.Void System.InvalidOperationException::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * __this, String_t* ___message0, const RuntimeMethod* method);
// UnityEngine.XR.ARSubsystems.Feature UnityEngine.XR.ARSubsystems.FeatureExtensions::TrackingModes(UnityEngine.XR.ARSubsystems.Feature)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t FeatureExtensions_TrackingModes_m42E19D4C37D0B9A70CACE5810FBE94B8A517D127 (uint64_t ___self0, const RuntimeMethod* method);
// System.Void UnityEngine.XR.ARSubsystems.Configuration::.ctor(UnityEngine.XR.ARSubsystems.ConfigurationDescriptor,UnityEngine.XR.ARSubsystems.Feature)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Configuration__ctor_m5A3F2286F33BA303B4C8A8E0E34ED6DA993A43BB (Configuration_t29C11C7E576D64F717543048BDA1EBCEF0CF60C0 * __this, ConfigurationDescriptor_t5CD12F017FCCF861DC33D7C0D6F0121015DEEA78 ___descriptor0, uint64_t ___features1, const RuntimeMethod* method);
// System.Int32 UnityEngine.XR.ARSubsystems.ConfigurationDescriptor::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ConfigurationDescriptor_GetHashCode_m1B74FC9C9B33BBED2192C1A47570C13A40008091 (ConfigurationDescriptor_t5CD12F017FCCF861DC33D7C0D6F0121015DEEA78 * __this, const RuntimeMethod* method);
// System.Int32 System.UInt64::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t UInt64_GetHashCode_mCDF662897A3F02CED11A9F9E66C5BF4E28C02B33 (uint64_t* __this, const RuntimeMethod* method);
// System.Int32 UnityEngine.XR.ARSubsystems.Configuration::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Configuration_GetHashCode_m1714C8505EE74B796DB7AF17A409448C385A83F2 (Configuration_t29C11C7E576D64F717543048BDA1EBCEF0CF60C0 * __this, const RuntimeMethod* method);
// System.Boolean UnityEngine.XR.ARSubsystems.ConfigurationDescriptor::Equals(UnityEngine.XR.ARSubsystems.ConfigurationDescriptor)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ConfigurationDescriptor_Equals_m6908A703D5C6F693555FCC9A616D85E430012363 (ConfigurationDescriptor_t5CD12F017FCCF861DC33D7C0D6F0121015DEEA78 * __this, ConfigurationDescriptor_t5CD12F017FCCF861DC33D7C0D6F0121015DEEA78 ___other0, const RuntimeMethod* method);
// System.Boolean UnityEngine.XR.ARSubsystems.Configuration::Equals(UnityEngine.XR.ARSubsystems.Configuration)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Configuration_Equals_m3EABF1A712E3AB8B1BCB70F71A4DA0B29BD3AB23 (Configuration_t29C11C7E576D64F717543048BDA1EBCEF0CF60C0 * __this, Configuration_t29C11C7E576D64F717543048BDA1EBCEF0CF60C0 ___other0, const RuntimeMethod* method);
// System.Boolean UnityEngine.XR.ARSubsystems.Configuration::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Configuration_Equals_m7C598F62999ABC2566CDCD656FF0ACA11DBC9807 (Configuration_t29C11C7E576D64F717543048BDA1EBCEF0CF60C0 * __this, RuntimeObject * ___obj0, const RuntimeMethod* method);
// System.Void System.Object::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405 (RuntimeObject * __this, const RuntimeMethod* method);
// System.IntPtr UnityEngine.XR.ARSubsystems.ConfigurationDescriptor::get_identifier()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR intptr_t ConfigurationDescriptor_get_identifier_m829E6611B4E4B0E33E8E87902FDFCDAEC0F2B8A0_inline (ConfigurationDescriptor_t5CD12F017FCCF861DC33D7C0D6F0121015DEEA78 * __this, const RuntimeMethod* method);
// System.Int32 UnityEngine.XR.ARSubsystems.ConfigurationDescriptor::get_rank()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t ConfigurationDescriptor_get_rank_mF775801AAD4BC8E980682B569F676BD536BA78B8_inline (ConfigurationDescriptor_t5CD12F017FCCF861DC33D7C0D6F0121015DEEA78 * __this, const RuntimeMethod* method);
// System.String System.String::Format(System.String,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Format_mB3D38E5238C3164DB4D7D29339D9E225A4496D17 (String_t* ___format0, RuntimeObject * ___arg01, const RuntimeMethod* method);
// System.Int32 System.IntPtr::ToInt32()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t IntPtr_ToInt32_m94C1C0E438A3B7E040B0A087FDDC0D4F90BABB08 (intptr_t* __this, const RuntimeMethod* method);
// System.String UnityEngine.XR.ARSubsystems.ConfigurationDescriptor::HexString(System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* ConfigurationDescriptor_HexString_m06E793AFE575A13CBC943EBFDCAB4BA290AAF8F3 (ConfigurationDescriptor_t5CD12F017FCCF861DC33D7C0D6F0121015DEEA78 * __this, intptr_t ___ptr0, const RuntimeMethod* method);
// System.String UnityEngine.XR.ARSubsystems.ConfigurationDescriptor::ToString()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* ConfigurationDescriptor_ToString_mF67E92AE3930DFD749F7186D49FFC600E2B197EE (ConfigurationDescriptor_t5CD12F017FCCF861DC33D7C0D6F0121015DEEA78 * __this, const RuntimeMethod* method);
// System.Int32 UnityEngine.XR.ARSubsystems.HashCode::Combine(System.Int32,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t HashCode_Combine_m18C3D10955CD71D976A5200FB0F5531F2F1F6BE1 (int32_t ___hash10, int32_t ___hash21, int32_t ___hash32, const RuntimeMethod* method);
// System.Boolean UnityEngine.XR.ARSubsystems.ConfigurationDescriptor::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ConfigurationDescriptor_Equals_m4123FDB2B2A6BDDCA3979394FD76CEEFAE534EDB (ConfigurationDescriptor_t5CD12F017FCCF861DC33D7C0D6F0121015DEEA78 * __this, RuntimeObject * ___obj0, const RuntimeMethod* method);
// System.Int32 Unity.Collections.NativeSlice`1<UnityEngine.XR.ARSubsystems.ConfigurationDescriptor>::get_Length()
inline int32_t NativeSlice_1_get_Length_m7D873C4D8E53FE893929EDA4D6CA223F64A86759_inline (NativeSlice_1_tEFBDB61DC6CB8E764B0E92727E8B9EA61662F8F2 * __this, const RuntimeMethod* method)
{
return (( int32_t (*) (NativeSlice_1_tEFBDB61DC6CB8E764B0E92727E8B9EA61662F8F2 *, const RuntimeMethod*))NativeSlice_1_get_Length_m7D873C4D8E53FE893929EDA4D6CA223F64A86759_gshared_inline)(__this, method);
}
// System.Void System.ArgumentException::.ctor(System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentException__ctor_m71044C2110E357B71A1C30D2561C3F861AF1DC0D (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * __this, String_t* ___message0, String_t* ___paramName1, const RuntimeMethod* method);
// UnityEngine.XR.ARSubsystems.Feature UnityEngine.XR.ARSubsystems.FeatureExtensions::Intersection(UnityEngine.XR.ARSubsystems.Feature,UnityEngine.XR.ARSubsystems.Feature)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t FeatureExtensions_Intersection_m2CA900F610313CDD88F981646EBE46B1AD8AC5E9 (uint64_t ___self0, uint64_t ___features1, const RuntimeMethod* method);
// Unity.Collections.NativeSlice`1/Enumerator<!0> Unity.Collections.NativeSlice`1<UnityEngine.XR.ARSubsystems.ConfigurationDescriptor>::GetEnumerator()
inline Enumerator_t4FA921251B8D2F59E29728BD1E99A05D23C68573 NativeSlice_1_GetEnumerator_m7A5BFDF0746F727192351D810B4DA32D67966CEF (NativeSlice_1_tEFBDB61DC6CB8E764B0E92727E8B9EA61662F8F2 * __this, const RuntimeMethod* method)
{
return (( Enumerator_t4FA921251B8D2F59E29728BD1E99A05D23C68573 (*) (NativeSlice_1_tEFBDB61DC6CB8E764B0E92727E8B9EA61662F8F2 *, const RuntimeMethod*))NativeSlice_1_GetEnumerator_m7A5BFDF0746F727192351D810B4DA32D67966CEF_gshared)(__this, method);
}
// !0 Unity.Collections.NativeSlice`1/Enumerator<UnityEngine.XR.ARSubsystems.ConfigurationDescriptor>::get_Current()
inline ConfigurationDescriptor_t5CD12F017FCCF861DC33D7C0D6F0121015DEEA78 Enumerator_get_Current_mD6D071A95173F93E2068090483A476DA2D5DBAF6 (Enumerator_t4FA921251B8D2F59E29728BD1E99A05D23C68573 * __this, const RuntimeMethod* method)
{
return (( ConfigurationDescriptor_t5CD12F017FCCF861DC33D7C0D6F0121015DEEA78 (*) (Enumerator_t4FA921251B8D2F59E29728BD1E99A05D23C68573 *, const RuntimeMethod*))Enumerator_get_Current_mD6D071A95173F93E2068090483A476DA2D5DBAF6_gshared)(__this, method);
}
// System.Boolean Unity.Collections.NativeSlice`1/Enumerator<UnityEngine.XR.ARSubsystems.ConfigurationDescriptor>::MoveNext()
inline bool Enumerator_MoveNext_m61D27731413ABDD017C4CEF8CEDC048933342572 (Enumerator_t4FA921251B8D2F59E29728BD1E99A05D23C68573 * __this, const RuntimeMethod* method)
{
return (( bool (*) (Enumerator_t4FA921251B8D2F59E29728BD1E99A05D23C68573 *, const RuntimeMethod*))Enumerator_MoveNext_m61D27731413ABDD017C4CEF8CEDC048933342572_gshared)(__this, method);
}
// System.Void Unity.Collections.NativeSlice`1/Enumerator<UnityEngine.XR.ARSubsystems.ConfigurationDescriptor>::Dispose()
inline void Enumerator_Dispose_m79BB9557BF615D18A63059DCFFA3FD69F020132A (Enumerator_t4FA921251B8D2F59E29728BD1E99A05D23C68573 * __this, const RuntimeMethod* method)
{
(( void (*) (Enumerator_t4FA921251B8D2F59E29728BD1E99A05D23C68573 *, const RuntimeMethod*))Enumerator_Dispose_m79BB9557BF615D18A63059DCFFA3FD69F020132A_gshared)(__this, method);
}
// System.Void UnityEngine.XR.ARSubsystems.ConfigurationChooser::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConfigurationChooser__ctor_mDD8DB2D97E4DD5B6CC29809BBFDDDEA149A1150A (ConfigurationChooser_t0CCF856A226297A702F306A2217CF17D652E72C4 * __this, const RuntimeMethod* method);
// System.Void System.Attribute::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Attribute__ctor_m5C1862A7DFC2C25A4797A8C5F681FBB5CB53ECE1 (Attribute_t037CA9D9F3B742C063DB364D2EEBBF9FC5772C71 * __this, const RuntimeMethod* method);
// System.String UnityEngine.XR.ARSubsystems.FaceSubsystemParams::get_id()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* FaceSubsystemParams_get_id_mE2ED204CE1D85C4ADCFB4436EACF3BF8B6893DEB_inline (FaceSubsystemParams_t2FC64133455298391F1A1DDC61B151E688301B09 * __this, const RuntimeMethod* method);
// System.Void UnityEngine.XR.ARSubsystems.FaceSubsystemParams::set_id(System.String)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void FaceSubsystemParams_set_id_m89149E2175F86663FDFEB008B36BDAF40EA1585A_inline (FaceSubsystemParams_t2FC64133455298391F1A1DDC61B151E688301B09 * __this, String_t* ___value0, const RuntimeMethod* method);
// System.Type UnityEngine.XR.ARSubsystems.FaceSubsystemParams::get_providerType()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Type_t * FaceSubsystemParams_get_providerType_m8984786E19DCC5F9B87060A9BC29F25A4A4A4B3A_inline (FaceSubsystemParams_t2FC64133455298391F1A1DDC61B151E688301B09 * __this, const RuntimeMethod* method);
// System.Void UnityEngine.XR.ARSubsystems.FaceSubsystemParams::set_providerType(System.Type)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void FaceSubsystemParams_set_providerType_m5D660A72F34CA0D1C887F5BA68045B1D3973C7B3_inline (FaceSubsystemParams_t2FC64133455298391F1A1DDC61B151E688301B09 * __this, Type_t * ___value0, const RuntimeMethod* method);
// System.Type UnityEngine.XR.ARSubsystems.FaceSubsystemParams::get_subsystemTypeOverride()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Type_t * FaceSubsystemParams_get_subsystemTypeOverride_m1B3FD6EA4014688FC34533C9729176AA668C8321_inline (FaceSubsystemParams_t2FC64133455298391F1A1DDC61B151E688301B09 * __this, const RuntimeMethod* method);
// System.Void UnityEngine.XR.ARSubsystems.FaceSubsystemParams::set_subsystemTypeOverride(System.Type)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void FaceSubsystemParams_set_subsystemTypeOverride_mAC64FBAE73E16ACDA48708A4FFB77626437F8306_inline (FaceSubsystemParams_t2FC64133455298391F1A1DDC61B151E688301B09 * __this, Type_t * ___value0, const RuntimeMethod* method);
// System.Boolean UnityEngine.XR.ARSubsystems.FaceSubsystemParams::get_supportsFacePose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool FaceSubsystemParams_get_supportsFacePose_m59079DE37AD698A2132CFEA0EDA5FD4585FC6161 (FaceSubsystemParams_t2FC64133455298391F1A1DDC61B151E688301B09 * __this, const RuntimeMethod* method);
// System.Void UnityEngine.XR.ARSubsystems.FaceSubsystemParams::set_supportsFacePose(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FaceSubsystemParams_set_supportsFacePose_mD799A27D00AC28F2E8228E7A3E38464B643BC99A (FaceSubsystemParams_t2FC64133455298391F1A1DDC61B151E688301B09 * __this, bool ___value0, const RuntimeMethod* method);
// System.Boolean UnityEngine.XR.ARSubsystems.FaceSubsystemParams::get_supportsFaceMeshVerticesAndIndices()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool FaceSubsystemParams_get_supportsFaceMeshVerticesAndIndices_mCC93952A6D71E81739E596CEB86A242CD6C9A8AF (FaceSubsystemParams_t2FC64133455298391F1A1DDC61B151E688301B09 * __this, const RuntimeMethod* method);
// System.Void UnityEngine.XR.ARSubsystems.FaceSubsystemParams::set_supportsFaceMeshVerticesAndIndices(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FaceSubsystemParams_set_supportsFaceMeshVerticesAndIndices_mD137C1594ADBC51EC3017FDFAE248043C4CCBC75 (FaceSubsystemParams_t2FC64133455298391F1A1DDC61B151E688301B09 * __this, bool ___value0, const RuntimeMethod* method);
// System.Boolean UnityEngine.XR.ARSubsystems.FaceSubsystemParams::get_supportsFaceMeshUVs()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool FaceSubsystemParams_get_supportsFaceMeshUVs_m86C9DD63849FC891FE62F75B87E7BA894B506BBC (FaceSubsystemParams_t2FC64133455298391F1A1DDC61B151E688301B09 * __this, const RuntimeMethod* method);
// System.Void UnityEngine.XR.ARSubsystems.FaceSubsystemParams::set_supportsFaceMeshUVs(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FaceSubsystemParams_set_supportsFaceMeshUVs_m9FFBE6EF8118BB7F4A0BA3B50249DA55ED52B39E (FaceSubsystemParams_t2FC64133455298391F1A1DDC61B151E688301B09 * __this, bool ___value0, const RuntimeMethod* method);
// System.Boolean UnityEngine.XR.ARSubsystems.FaceSubsystemParams::get_supportsFaceMeshNormals()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool FaceSubsystemParams_get_supportsFaceMeshNormals_mB5897C36478E2B76A4491DA2C70C89B54AAB92DC (FaceSubsystemParams_t2FC64133455298391F1A1DDC61B151E688301B09 * __this, const RuntimeMethod* method);
// System.Boolean UnityEngine.XR.ARSubsystems.FaceSubsystemParams::get_supportsEyeTracking()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool FaceSubsystemParams_get_supportsEyeTracking_mC02E124E7C88BBE8BE1D6ABBBFD3C2C68DF2109F (FaceSubsystemParams_t2FC64133455298391F1A1DDC61B151E688301B09 * __this, const RuntimeMethod* method);
// System.Void UnityEngine.XR.ARSubsystems.FaceSubsystemParams::set_supportsEyeTracking(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FaceSubsystemParams_set_supportsEyeTracking_m52CC3ABEBE97C53ECBB91C0E4A86F388176C3645 (FaceSubsystemParams_t2FC64133455298391F1A1DDC61B151E688301B09 * __this, bool ___value0, const RuntimeMethod* method);
// System.Boolean UnityEngine.XR.ARSubsystems.FaceSubsystemParams::Equals(UnityEngine.XR.ARSubsystems.FaceSubsystemParams)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool FaceSubsystemParams_Equals_mAC3B0F001EB7DC4968B350FCE682D21D3C10A4DC (FaceSubsystemParams_t2FC64133455298391F1A1DDC61B151E688301B09 * __this, FaceSubsystemParams_t2FC64133455298391F1A1DDC61B151E688301B09 ___other0, const RuntimeMethod* method);
// System.Boolean UnityEngine.XR.ARSubsystems.FaceSubsystemParams::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool FaceSubsystemParams_Equals_mFD36A65AEE79AE0A2C08525BB4AE5B99801CEE2A (FaceSubsystemParams_t2FC64133455298391F1A1DDC61B151E688301B09 * __this, RuntimeObject * ___obj0, const RuntimeMethod* method);
// System.Int32 UnityEngine.XR.ARSubsystems.FaceSubsystemParams::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t FaceSubsystemParams_GetHashCode_m83F03C046AA998C73A317CAFBA4C97E2BA468786 (FaceSubsystemParams_t2FC64133455298391F1A1DDC61B151E688301B09 * __this, const RuntimeMethod* method);
// System.Void System.Collections.Generic.List`1<System.String>::.ctor()
inline void List_1__ctor_m30C52A4F2828D86CA3FAB0B1B583948F4DA9F1F9 (List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3 * __this, const RuntimeMethod* method)
{
(( void (*) (List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3 *, const RuntimeMethod*))List_1__ctor_m0F0E00088CF56FEACC9E32D8B7D91B93D91DAA3B_gshared)(__this, method);
}
// UnityEngine.XR.ARSubsystems.Feature UnityEngine.XR.ARSubsystems.FeatureExtensions::LowestBit(UnityEngine.XR.ARSubsystems.Feature)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t FeatureExtensions_LowestBit_mD88FDDA9224F7FB3B74A3EC59BB76C86B4923267 (uint64_t ___self0, const RuntimeMethod* method);
// System.Void System.Collections.Generic.List`1<System.String>::Add(!0)
inline void List_1_Add_mD8C90346622A7F72A072D319F0E2AE851BB5885A (List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3 * __this, String_t* ___item0, const RuntimeMethod* method)
{
(( void (*) (List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3 *, String_t*, const RuntimeMethod*))List_1_Add_mF15250BF947CA27BE9A23C08BAC6DB6F180B0EDD_gshared)(__this, ___item0, method);
}
// System.Int32 System.Collections.Generic.List`1<System.String>::get_Count()
inline int32_t List_1_get_Count_m199DB87BCE947106FBA38E19FDFE80CB65B61144_inline (List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3 * __this, const RuntimeMethod* method)
{
return (( int32_t (*) (List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3 *, const RuntimeMethod*))List_1_get_Count_m5D847939ABB9A78203B062CAFFE975792174D00F_gshared_inline)(__this, method);
}
// System.String System.String::Join(System.String,System.Collections.Generic.IEnumerable`1<System.String>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Join_m7E55204B5C94F9EB939D144E7EE684D016F90509 (String_t* ___separator0, RuntimeObject* ___values1, const RuntimeMethod* method);
// System.Void System.Guid::.ctor(System.UInt32,System.UInt16,System.UInt16,System.Byte,System.Byte,System.Byte,System.Byte,System.Byte,System.Byte,System.Byte,System.Byte)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Guid__ctor_mCA4942FD1AE16397F0501AAF416E106BB041F287 (Guid_t * __this, uint32_t ___a0, uint16_t ___b1, uint16_t ___c2, uint8_t ___d3, uint8_t ___e4, uint8_t ___f5, uint8_t ___g6, uint8_t ___h7, uint8_t ___i8, uint8_t ___j9, uint8_t ___k10, const RuntimeMethod* method);
// System.Int32 UnityEngine.XR.ARSubsystems.HashCode::Combine(System.Int32,System.Int32,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t HashCode_Combine_mCF5A2D8E169AE770B379DCD8DE5229296453BD82 (int32_t ___hash10, int32_t ___hash21, int32_t ___hash32, int32_t ___hash43, const RuntimeMethod* method);
// System.Int32 UnityEngine.XR.ARSubsystems.HashCode::Combine(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t HashCode_Combine_m02E9A65274F198CF9266FDB496C74880155F9B94 (int32_t ___hash10, int32_t ___hash21, int32_t ___hash32, int32_t ___hash43, int32_t ___hash54, const RuntimeMethod* method);
// System.Int32 UnityEngine.XR.ARSubsystems.HashCode::Combine(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t HashCode_Combine_m11604D056548DE17CE3E26439850FA96C2ED1FBA (int32_t ___hash10, int32_t ___hash21, int32_t ___hash32, int32_t ___hash43, int32_t ___hash54, int32_t ___hash65, const RuntimeMethod* method);
// System.Boolean Unity.Jobs.JobHandle::get_IsCompleted()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool JobHandle_get_IsCompleted_m2747303E2CD600A78AC8F3ED1EA40D3F507C75A2 (JobHandle_t8AEB8D31C25D7774C71D62B0C662525E6E36D847 * __this, const RuntimeMethod* method);
// System.Void System.NotImplementedException::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NotImplementedException__ctor_mA2E9CE7F00CB335581A296D2596082D57E45BA83 (NotImplementedException_t26260C4EE0444C5FA022994203060B3A42A3ADE6 * __this, const RuntimeMethod* method);
// System.Void UnityEngine.XR.ARSubsystems.MutableRuntimeReferenceImageLibrary::ValidateAndThrow(Unity.Collections.NativeSlice`1<System.Byte>,UnityEngine.Vector2Int,UnityEngine.TextureFormat,UnityEngine.XR.ARSubsystems.XRReferenceImage&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MutableRuntimeReferenceImageLibrary_ValidateAndThrow_mF2EB8580B66B035A33F2F8E61957EC1BFD16B1C6 (MutableRuntimeReferenceImageLibrary_t887376CE46B48DEEC6E8655D429BADCA6E3C7EAA * __this, NativeSlice_1_tA05D3BC7EB042685CBFD3369ECB6140D114C911B ___imageBytes0, Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9 ___sizeInPixels1, int32_t ___format2, XRReferenceImage_tB1803A72EB581FB35B2CA944973679132A1D4467 * ___referenceImage3, const RuntimeMethod* method);
// UnityEngine.XR.ARSubsystems.AddReferenceImageJobState UnityEngine.XR.ARSubsystems.MutableRuntimeReferenceImageLibrary::CreateAddJobState(System.IntPtr,Unity.Jobs.JobHandle)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR AddReferenceImageJobState_t6818A53BD54BDCDCA326D660A1575F66DF832633 MutableRuntimeReferenceImageLibrary_CreateAddJobState_m27F387722EE946B2B1555C1384B6659E2D884481 (MutableRuntimeReferenceImageLibrary_t887376CE46B48DEEC6E8655D429BADCA6E3C7EAA * __this, intptr_t ___handle0, JobHandle_t8AEB8D31C25D7774C71D62B0C662525E6E36D847 ___jobHandle1, const RuntimeMethod* method);
// System.Void* Unity.Collections.LowLevel.Unsafe.NativeSliceUnsafeUtility::GetUnsafePtr<System.Byte>(Unity.Collections.NativeSlice`1<!!0>)
inline void* NativeSliceUnsafeUtility_GetUnsafePtr_TisByte_t0111FAB8B8685667EDDAF77683F0D8F86B659056_mFF166CCFFA843D77765F18DA5E42EE6B80AE6A76 (NativeSlice_1_tA05D3BC7EB042685CBFD3369ECB6140D114C911B ___nativeSlice0, const RuntimeMethod* method)
{
return (( void* (*) (NativeSlice_1_tA05D3BC7EB042685CBFD3369ECB6140D114C911B , const RuntimeMethod*))NativeSliceUnsafeUtility_GetUnsafePtr_TisByte_t0111FAB8B8685667EDDAF77683F0D8F86B659056_mFF166CCFFA843D77765F18DA5E42EE6B80AE6A76_gshared)(___nativeSlice0, method);
}
// System.Guid UnityEngine.XR.ARSubsystems.XRReferenceImage::get_guid()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Guid_t XRReferenceImage_get_guid_m1C4FCDF5CE4DB41074E50AB2B3D8B4A20CE290BE (XRReferenceImage_tB1803A72EB581FB35B2CA944973679132A1D4467 * __this, const RuntimeMethod* method);
// System.Boolean System.Guid::Equals(System.Guid)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Guid_Equals_m602304DBC4842AB53670762A6DB52D30C3973258 (Guid_t * __this, Guid_t ___g0, const RuntimeMethod* method);
// UnityEngine.XR.ARSubsystems.SerializableGuid UnityEngine.XR.ARSubsystems.MutableRuntimeReferenceImageLibrary::GenerateNewGuid()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SerializableGuid_t5F8E8B4FF33F91AF9B16C6CC3F75AE00014505CC MutableRuntimeReferenceImageLibrary_GenerateNewGuid_m860BB18E71B6B1DC40530F33333AE0477097E7E0 (const RuntimeMethod* method);
// System.String UnityEngine.XR.ARSubsystems.XRReferenceImage::get_name()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* XRReferenceImage_get_name_mE8F3368C2587552333AB78EA72A02E5B73E355C7_inline (XRReferenceImage_tB1803A72EB581FB35B2CA944973679132A1D4467 * __this, const RuntimeMethod* method);
// System.Boolean System.String::IsNullOrEmpty(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool String_IsNullOrEmpty_m9AFBB5335B441B94E884B8A9D4A27AD60E3D7F7C (String_t* ___value0, const RuntimeMethod* method);
// System.Boolean UnityEngine.XR.ARSubsystems.XRReferenceImage::get_specifySize()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool XRReferenceImage_get_specifySize_mAC02B5D0DBF9D66C2668206B7603C58149EE7D8B_inline (XRReferenceImage_tB1803A72EB581FB35B2CA944973679132A1D4467 * __this, const RuntimeMethod* method);
// UnityEngine.Vector2 UnityEngine.XR.ARSubsystems.XRReferenceImage::get_size()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 XRReferenceImage_get_size_m135B7EF1ED61FE27A8793503E8FC84543642C166_inline (XRReferenceImage_tB1803A72EB581FB35B2CA944973679132A1D4467 * __this, const RuntimeMethod* method);
// System.Void System.ArgumentOutOfRangeException::.ctor(System.String,System.Object,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentOutOfRangeException__ctor_m7C5B3BE7792B7C73E7D82C4DBAD4ACA2DAE71AA9 (ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 * __this, String_t* ___paramName0, RuntimeObject * ___actualValue1, String_t* ___message2, const RuntimeMethod* method);
// System.Boolean UnityEngine.XR.ARSubsystems.MutableRuntimeReferenceImageLibrary::IsTextureFormatSupported(UnityEngine.TextureFormat)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool MutableRuntimeReferenceImageLibrary_IsTextureFormatSupported_m487AD78AC89C314E106AB9D84E702FD5310F76B9 (MutableRuntimeReferenceImageLibrary_t887376CE46B48DEEC6E8655D429BADCA6E3C7EAA * __this, int32_t ___format0, const RuntimeMethod* method);
// System.Int32 UnityEngine.Vector2Int::get_x()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t Vector2Int_get_x_mDBEFBCDF9C7924767344ED2CEE1307885AED947B_inline (Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9 * __this, const RuntimeMethod* method);
// System.Int32 UnityEngine.Vector2Int::get_y()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t Vector2Int_get_y_m282591DEB0E70B02F4F4DDFAB90116AEC8E6B86C_inline (Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9 * __this, const RuntimeMethod* method);
// System.Void UnityEngine.XR.ARSubsystems.MutableRuntimeReferenceImageLibrary/Enumerator::.ctor(UnityEngine.XR.ARSubsystems.MutableRuntimeReferenceImageLibrary)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m614C5DEAACB06ED98FFE5BBE716D9F16124A4F81 (Enumerator_t9B104B3EE1E7390464361D775D18230CF662A7D5 * __this, MutableRuntimeReferenceImageLibrary_t887376CE46B48DEEC6E8655D429BADCA6E3C7EAA * ___lib0, const RuntimeMethod* method);
// System.Guid System.Guid::NewGuid()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Guid_t Guid_NewGuid_m5BD19325820690ED6ECA31D67BC2CD474DC4FDB0 (const RuntimeMethod* method);
// System.UInt64 UnityEngine.XR.ARSubsystems.TrackableId::get_subId1()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR uint64_t TrackableId_get_subId1_m219B741FAF6D36DB7B8CFDC588EA93677FCE174B_inline (TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B * __this, const RuntimeMethod* method);
// System.UInt64 UnityEngine.XR.ARSubsystems.TrackableId::get_subId2()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR uint64_t TrackableId_get_subId2_m136D4970BDCC7323020913A9B5303584AA105B34_inline (TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B * __this, const RuntimeMethod* method);
// System.Void UnityEngine.XR.ARSubsystems.SerializableGuid::.ctor(System.UInt64,System.UInt64)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SerializableGuid__ctor_m0A96C8F8254451C083274363A1C68E5FB5CDF107 (SerializableGuid_t5F8E8B4FF33F91AF9B16C6CC3F75AE00014505CC * __this, uint64_t ___guidLow0, uint64_t ___guidHigh1, const RuntimeMethod* method);
// System.Void UnityEngine.XR.ARSubsystems.RuntimeReferenceImageLibrary::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RuntimeReferenceImageLibrary__ctor_m24529C1F2AF8B3A8358098F220E770116883A299 (RuntimeReferenceImageLibrary_t76072EC5637B1F0F8FD0A1BFD3AEAF954D6F8D6B * __this, const RuntimeMethod* method);
// System.String System.String::Format(System.String,System.Object,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Format_m8D1CB0410C35E052A53AE957C914C841E54BAB66 (String_t* ___format0, RuntimeObject * ___arg01, RuntimeObject * ___arg12, const RuntimeMethod* method);
// System.Void UnityEngine.XR.ARSubsystems.ScopedProfiler::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ScopedProfiler__ctor_m3426FC301C7541283DA4382EFAFDBDFD08358DAD (ScopedProfiler_t2D56ACC439533AC07E255065961834AAD04BE52E * __this, String_t* ___name0, const RuntimeMethod* method);
// System.Void UnityEngine.XR.ARSubsystems.ScopedProfiler::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ScopedProfiler_Dispose_mB6720C4212A51CBC86104AF46E081B1CB410BC1A (ScopedProfiler_t2D56ACC439533AC07E255065961834AAD04BE52E * __this, const RuntimeMethod* method);
// System.Guid UnityEngine.XR.ARSubsystems.GuidUtil::Compose(System.UInt64,System.UInt64)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Guid_t GuidUtil_Compose_m0EE004B20CD802F981C34180EFA91C39A9400DCB (uint64_t ___low0, uint64_t ___high1, const RuntimeMethod* method);
// System.Guid UnityEngine.XR.ARSubsystems.SerializableGuid::get_guid()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Guid_t SerializableGuid_get_guid_m54618233E4BD08410123A50B4E8DAC66FCE46032 (SerializableGuid_t5F8E8B4FF33F91AF9B16C6CC3F75AE00014505CC * __this, const RuntimeMethod* method);
// System.Int32 UnityEngine.XR.ARSubsystems.SerializableGuid::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t SerializableGuid_GetHashCode_m200045FC79E206A9FD4B9A1578A3C66CCBF41481 (SerializableGuid_t5F8E8B4FF33F91AF9B16C6CC3F75AE00014505CC * __this, const RuntimeMethod* method);
// System.Boolean UnityEngine.XR.ARSubsystems.SerializableGuid::Equals(UnityEngine.XR.ARSubsystems.SerializableGuid)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool SerializableGuid_Equals_m1ADEE5CED29ED1D62E794F2CECCDEADF416878A6 (SerializableGuid_t5F8E8B4FF33F91AF9B16C6CC3F75AE00014505CC * __this, SerializableGuid_t5F8E8B4FF33F91AF9B16C6CC3F75AE00014505CC ___other0, const RuntimeMethod* method);
// System.Boolean UnityEngine.XR.ARSubsystems.SerializableGuid::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool SerializableGuid_Equals_m20C468F42E878759B4DB1703B99E3EF7FA0DE550 (SerializableGuid_t5F8E8B4FF33F91AF9B16C6CC3F75AE00014505CC * __this, RuntimeObject * ___obj0, const RuntimeMethod* method);
// System.String System.Guid::ToString()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Guid_ToString_mA3AB7742FB0E04808F580868E82BDEB93187FB75 (Guid_t * __this, const RuntimeMethod* method);
// System.String UnityEngine.XR.ARSubsystems.SerializableGuid::ToString()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* SerializableGuid_ToString_m593CC03163539B5043119F380A189EDCBF100D32 (SerializableGuid_t5F8E8B4FF33F91AF9B16C6CC3F75AE00014505CC * __this, const RuntimeMethod* method);
// System.Void UnityEngine.XR.ARSubsystems.TrackableId::.ctor(System.UInt64,System.UInt64)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TrackableId__ctor_mB9B301A9CD03355A4E03A2B1A102B6B75F190792 (TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B * __this, uint64_t ___subId10, uint64_t ___subId21, const RuntimeMethod* method);
// System.String System.UInt64::ToString(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* UInt64_ToString_mFE48F1D174A1F741AB0795C1164BF45BF37F86E6 (uint64_t* __this, String_t* ___format0, const RuntimeMethod* method);
// System.String UnityEngine.XR.ARSubsystems.TrackableId::ToString()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* TrackableId_ToString_mCD45FD4FF5DF6DE30A38AD05D02CFA7B2B696BB1 (TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B * __this, const RuntimeMethod* method);
// System.Boolean UnityEngine.XR.ARSubsystems.TrackableId::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TrackableId_Equals_mA542615B3B7AAD52AEBBEFBCE7E6987B2DE3849D (TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B * __this, RuntimeObject * ___obj0, const RuntimeMethod* method);
// System.Void System.Text.RegularExpressions.Regex::.ctor(System.String,System.Text.RegularExpressions.RegexOptions)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Regex__ctor_m5BA9C047FEB3C93AD388668FA855CB1A63FB62A4 (Regex_t90F443D398F44965EA241A652ED75DF5BA072A1F * __this, String_t* ___pattern0, int32_t ___options1, const RuntimeMethod* method);
// UnityEngine.XR.ARSubsystems.TrackableId UnityEngine.XR.ARSubsystems.XRAnchor::get_trackableId()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B XRAnchor_get_trackableId_mE8C852BEAA9025FD1CB643F41836CA72C25E7B92_inline (XRAnchor_t8E92DD70D9FA9B3ED2799305E05228184932099C * __this, const RuntimeMethod* method);
// UnityEngine.Pose UnityEngine.XR.ARSubsystems.XRAnchor::get_pose()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A XRAnchor_get_pose_mD135777376B2898B0A151AD5AA8FD4BBD7C7C5FF_inline (XRAnchor_t8E92DD70D9FA9B3ED2799305E05228184932099C * __this, const RuntimeMethod* method);
// UnityEngine.XR.ARSubsystems.TrackingState UnityEngine.XR.ARSubsystems.XRAnchor::get_trackingState()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t XRAnchor_get_trackingState_m2B3E621BA332B1E74CF8EC94FA8B18EDAF68F462_inline (XRAnchor_t8E92DD70D9FA9B3ED2799305E05228184932099C * __this, const RuntimeMethod* method);
// System.IntPtr UnityEngine.XR.ARSubsystems.XRAnchor::get_nativePtr()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR intptr_t XRAnchor_get_nativePtr_m47E36685E001BF3810BF6A45B8DF8128080DAEFB_inline (XRAnchor_t8E92DD70D9FA9B3ED2799305E05228184932099C * __this, const RuntimeMethod* method);
// System.Guid UnityEngine.XR.ARSubsystems.XRAnchor::get_sessionId()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Guid_t XRAnchor_get_sessionId_m61DAD2C82C4D725E773BFAB2E8A8BE50EDEEC379_inline (XRAnchor_t8E92DD70D9FA9B3ED2799305E05228184932099C * __this, const RuntimeMethod* method);
// System.Int32 System.Guid::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Guid_GetHashCode_mD32F5054E937C98B3D082594B3849808F1E92AE7 (Guid_t * __this, const RuntimeMethod* method);
// System.Int32 UnityEngine.XR.ARSubsystems.XRAnchor::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XRAnchor_GetHashCode_m3928C95D8DE59840CB82D9FD13EDEEAEA2A89376 (XRAnchor_t8E92DD70D9FA9B3ED2799305E05228184932099C * __this, const RuntimeMethod* method);
// System.Boolean UnityEngine.XR.ARSubsystems.XRAnchor::Equals(UnityEngine.XR.ARSubsystems.XRAnchor)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XRAnchor_Equals_mE6AC873FF43B605D47F5AB76F0ADAD9A6EDEA25B (XRAnchor_t8E92DD70D9FA9B3ED2799305E05228184932099C * __this, XRAnchor_t8E92DD70D9FA9B3ED2799305E05228184932099C ___other0, const RuntimeMethod* method);
// System.Boolean UnityEngine.XR.ARSubsystems.XRAnchor::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XRAnchor_Equals_m8C35DEBDDAC21262E3344152D76539DF1AF7F060 (XRAnchor_t8E92DD70D9FA9B3ED2799305E05228184932099C * __this, RuntimeObject * ___obj0, const RuntimeMethod* method);
// System.Void UnityEngine.XR.ARSubsystems.TrackingSubsystem`4<UnityEngine.XR.ARSubsystems.XRAnchor,UnityEngine.XR.ARSubsystems.XRAnchorSubsystem,UnityEngine.XR.ARSubsystems.XRAnchorSubsystemDescriptor,UnityEngine.XR.ARSubsystems.XRAnchorSubsystem/Provider>::.ctor()
inline void TrackingSubsystem_4__ctor_mBF63E483B756C84A0068727BDBEC29BBC5182F38 (TrackingSubsystem_4_t5C7E2B8B7A9943DF8B9FF5B46FB5AFA71E9826F1 * __this, const RuntimeMethod* method)
{
(( void (*) (TrackingSubsystem_4_t5C7E2B8B7A9943DF8B9FF5B46FB5AFA71E9826F1 *, const RuntimeMethod*))TrackingSubsystem_4__ctor_m4E56D6762DBAF4B85197189BE61C13DE30BA9EA0_gshared)(__this, method);
}
// System.Boolean UnityEngine.SubsystemsImplementation.SubsystemWithProvider::get_running()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool SubsystemWithProvider_get_running_m42399652EC4AB466AFBAC9035FA77C1BD6C72406_inline (SubsystemWithProvider_t1C1868CF8676F5596C1AD20A7CE69BDF7C7DE73E * __this, const RuntimeMethod* method);
// !2 UnityEngine.SubsystemsImplementation.SubsystemWithProvider`3<UnityEngine.XR.ARSubsystems.XRAnchorSubsystem,UnityEngine.XR.ARSubsystems.XRAnchorSubsystemDescriptor,UnityEngine.XR.ARSubsystems.XRAnchorSubsystem/Provider>::get_provider()
inline Provider_t9F286D20EB73EBBA4B6E7203C7A9051BE673C2E2 * SubsystemWithProvider_3_get_provider_mE54D3EECA8ABAA945923C60D72BF523B3D5189B1_inline (SubsystemWithProvider_3_tD91EB2F57F19DA2CDB9A5E0011978CA1EA351BA2 * __this, const RuntimeMethod* method)
{
return (( Provider_t9F286D20EB73EBBA4B6E7203C7A9051BE673C2E2 * (*) (SubsystemWithProvider_3_tD91EB2F57F19DA2CDB9A5E0011978CA1EA351BA2 *, const RuntimeMethod*))SubsystemWithProvider_3_get_provider_m6D630D758837E2C1BBCC328AAF4512ADFA1F48F3_gshared_inline)(__this, method);
}
// UnityEngine.XR.ARSubsystems.XRAnchor UnityEngine.XR.ARSubsystems.XRAnchor::get_defaultValue()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR XRAnchor_t8E92DD70D9FA9B3ED2799305E05228184932099C XRAnchor_get_defaultValue_m4E0B24D0D2E64DE1B2BE81F781410CFB6031B6CF_inline (const RuntimeMethod* method);
// System.Void UnityEngine.XR.ARSubsystems.XRAnchorSubsystemDescriptor::.ctor(UnityEngine.XR.ARSubsystems.XRAnchorSubsystemDescriptor/Cinfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRAnchorSubsystemDescriptor__ctor_m5393EA2BCAFE2CB48EDD6DDCCD50C40FC7035331 (XRAnchorSubsystemDescriptor_t3BD7F9922EF5C04185D59349C76D625BC1E44E3B * __this, Cinfo_tF42131D7F2B721976AAF20DD0240D9C46397F7F7 ___cinfo0, const RuntimeMethod* method);
// System.Void UnityEngine.SubsystemsImplementation.SubsystemDescriptorStore::RegisterDescriptor(UnityEngine.SubsystemsImplementation.SubsystemDescriptorWithProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SubsystemDescriptorStore_RegisterDescriptor_m5586866BB233EF26B98640851816DD1764657688 (SubsystemDescriptorWithProvider_t32DD334657CFBA22F2FBA399258B087104A29C3E * ___descriptor0, const RuntimeMethod* method);
// System.Void UnityEngine.SubsystemsImplementation.SubsystemDescriptorWithProvider`2<UnityEngine.XR.ARSubsystems.XRAnchorSubsystem,UnityEngine.XR.ARSubsystems.XRAnchorSubsystem/Provider>::.ctor()
inline void SubsystemDescriptorWithProvider_2__ctor_m1CF8865269978062A7763335B78C6D873D10F09E (SubsystemDescriptorWithProvider_2_t0A7F13BEDD4EC8DFDD5AEC7D5171B22F3D852CE5 * __this, const RuntimeMethod* method)
{
(( void (*) (SubsystemDescriptorWithProvider_2_t0A7F13BEDD4EC8DFDD5AEC7D5171B22F3D852CE5 *, const RuntimeMethod*))SubsystemDescriptorWithProvider_2__ctor_mF969744E314332AC762279256CF288A3769ABC93_gshared)(__this, method);
}
// System.String UnityEngine.XR.ARSubsystems.XRAnchorSubsystemDescriptor/Cinfo::get_id()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* Cinfo_get_id_m7C38252CE360F061914361192300AECA8CB5307B_inline (Cinfo_tF42131D7F2B721976AAF20DD0240D9C46397F7F7 * __this, const RuntimeMethod* method);
// System.Void UnityEngine.SubsystemsImplementation.SubsystemDescriptorWithProvider::set_id(System.String)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void SubsystemDescriptorWithProvider_set_id_mEC6863CDB21597618394D2ED4182A9ED3ACBF220_inline (SubsystemDescriptorWithProvider_t32DD334657CFBA22F2FBA399258B087104A29C3E * __this, String_t* ___value0, const RuntimeMethod* method);
// System.Type UnityEngine.XR.ARSubsystems.XRAnchorSubsystemDescriptor/Cinfo::get_providerType()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Type_t * Cinfo_get_providerType_m6A1DFCD062C95265E8E1C6502D44D6C464B50EED_inline (Cinfo_tF42131D7F2B721976AAF20DD0240D9C46397F7F7 * __this, const RuntimeMethod* method);
// System.Void UnityEngine.SubsystemsImplementation.SubsystemDescriptorWithProvider::set_providerType(System.Type)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void SubsystemDescriptorWithProvider_set_providerType_m672B1F3CC7A12E8569D801F7C79538753C0D9C2D_inline (SubsystemDescriptorWithProvider_t32DD334657CFBA22F2FBA399258B087104A29C3E * __this, Type_t * ___value0, const RuntimeMethod* method);
// System.Type UnityEngine.XR.ARSubsystems.XRAnchorSubsystemDescriptor/Cinfo::get_subsystemTypeOverride()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Type_t * Cinfo_get_subsystemTypeOverride_m169F49BB024275E13DF95C274191A675CC0F66B9_inline (Cinfo_tF42131D7F2B721976AAF20DD0240D9C46397F7F7 * __this, const RuntimeMethod* method);
// System.Void UnityEngine.SubsystemsImplementation.SubsystemDescriptorWithProvider::set_subsystemTypeOverride(System.Type)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void SubsystemDescriptorWithProvider_set_subsystemTypeOverride_mA453100A7A8FAB35FBE7154E63B5A17D518F41B6_inline (SubsystemDescriptorWithProvider_t32DD334657CFBA22F2FBA399258B087104A29C3E * __this, Type_t * ___value0, const RuntimeMethod* method);
// System.Boolean UnityEngine.XR.ARSubsystems.XRAnchorSubsystemDescriptor/Cinfo::get_supportsTrackableAttachments()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Cinfo_get_supportsTrackableAttachments_m13B6C9977641F3E284C69AA3554EBD19478538B8_inline (Cinfo_tF42131D7F2B721976AAF20DD0240D9C46397F7F7 * __this, const RuntimeMethod* method);
// System.Void UnityEngine.XR.ARSubsystems.XRAnchorSubsystemDescriptor::set_supportsTrackableAttachments(System.Boolean)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XRAnchorSubsystemDescriptor_set_supportsTrackableAttachments_m11271C1EBC306EB3FDA99D24D45D88DB31DCCC38_inline (XRAnchorSubsystemDescriptor_t3BD7F9922EF5C04185D59349C76D625BC1E44E3B * __this, bool ___value0, const RuntimeMethod* method);
// System.Int32 UnityEngine.XR.ARSubsystems.XRCameraConfiguration::get_width()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XRCameraConfiguration_get_width_m019869C624524B8C4EA0021D9331F2AD856A25C3 (XRCameraConfiguration_t2393055E5547307393E9C73AB13B95E0785A4F7A * __this, const RuntimeMethod* method);
// System.Int32 UnityEngine.XR.ARSubsystems.XRCameraConfiguration::get_height()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XRCameraConfiguration_get_height_mAAC1B9AE539EF89D59585A6BFC8F925F94AA14D3 (XRCameraConfiguration_t2393055E5547307393E9C73AB13B95E0785A4F7A * __this, const RuntimeMethod* method);
// System.Void System.Nullable`1<System.Int32>::.ctor(!0)
inline void Nullable_1__ctor_mD5C83DE6764BE7391F906F32B36CCDF7598553AD (Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 * __this, int32_t ___value0, const RuntimeMethod* method)
{
(( void (*) (Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 *, int32_t, const RuntimeMethod*))Nullable_1__ctor_mD5C83DE6764BE7391F906F32B36CCDF7598553AD_gshared)(__this, ___value0, method);
}
// System.Nullable`1<System.Int32> UnityEngine.XR.ARSubsystems.XRCameraConfiguration::get_framerate()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 XRCameraConfiguration_get_framerate_m3DCC7B7F2FEAFDFB5ED0A580153FBAAA22B60B96 (XRCameraConfiguration_t2393055E5547307393E9C73AB13B95E0785A4F7A * __this, const RuntimeMethod* method);
// System.Boolean System.Nullable`1<System.Int32>::get_HasValue()
inline bool Nullable_1_get_HasValue_m7455E879CFAAE682AE3786D4D2B1F65C8AA23921_inline (Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 * __this, const RuntimeMethod* method)
{
return (( bool (*) (Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 *, const RuntimeMethod*))Nullable_1_get_HasValue_m7455E879CFAAE682AE3786D4D2B1F65C8AA23921_gshared_inline)(__this, method);
}
// !0 System.Nullable`1<System.Int32>::get_Value()
inline int32_t Nullable_1_get_Value_m81778F362BEC72D4456079CDF5FB0D3487A1BCCC (Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 * __this, const RuntimeMethod* method)
{
return (( int32_t (*) (Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 *, const RuntimeMethod*))Nullable_1_get_Value_m81778F362BEC72D4456079CDF5FB0D3487A1BCCC_gshared)(__this, method);
}
// System.String UnityEngine.XR.ARSubsystems.XRCameraConfiguration::ToString()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XRCameraConfiguration_ToString_m570541033A53E9657C809B420CEFDF63D944070B (XRCameraConfiguration_t2393055E5547307393E9C73AB13B95E0785A4F7A * __this, const RuntimeMethod* method);
// System.Int32 UnityEngine.Vector2Int::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Vector2Int_GetHashCode_mB963D0B9A29E161BC4B73F97AEAF2F843FC8EF71 (Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9 * __this, const RuntimeMethod* method);
// System.Int32 System.Nullable`1<System.Int32>::GetHashCode()
inline int32_t Nullable_1_GetHashCode_mE204DC50FD677C7E0F2B981BA2E8AE333EB8B108 (Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 * __this, const RuntimeMethod* method)
{
return (( int32_t (*) (Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 *, const RuntimeMethod*))Nullable_1_GetHashCode_mE204DC50FD677C7E0F2B981BA2E8AE333EB8B108_gshared)(__this, method);
}
// System.Int32 UnityEngine.XR.ARSubsystems.XRCameraConfiguration::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XRCameraConfiguration_GetHashCode_mBAD6720F670B108F1D17BAEBAF619989A011D63A (XRCameraConfiguration_t2393055E5547307393E9C73AB13B95E0785A4F7A * __this, const RuntimeMethod* method);
// System.Boolean UnityEngine.XR.ARSubsystems.XRCameraConfiguration::Equals(UnityEngine.XR.ARSubsystems.XRCameraConfiguration)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XRCameraConfiguration_Equals_m8CD36FE1F7DA4B3B3520877DC415D066B77FEFEB (XRCameraConfiguration_t2393055E5547307393E9C73AB13B95E0785A4F7A * __this, XRCameraConfiguration_t2393055E5547307393E9C73AB13B95E0785A4F7A ___other0, const RuntimeMethod* method);
// System.Boolean UnityEngine.XR.ARSubsystems.XRCameraConfiguration::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XRCameraConfiguration_Equals_mDC2D17183F91C897762D8F8B24D2CA2F96E1A48C (XRCameraConfiguration_t2393055E5547307393E9C73AB13B95E0785A4F7A * __this, RuntimeObject * ___obj0, const RuntimeMethod* method);
// System.Boolean UnityEngine.Vector2Int::op_Equality(UnityEngine.Vector2Int,UnityEngine.Vector2Int)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Vector2Int_op_Equality_m00B7F2874DE276B3F10044CED9F633AFE80D366D_inline (Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9 ___lhs0, Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9 ___rhs1, const RuntimeMethod* method);
// !0 System.Nullable`1<System.Int32>::GetValueOrDefault()
inline int32_t Nullable_1_GetValueOrDefault_m66800983B800C26B67A6999A687EA3767C739406_inline (Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 * __this, const RuntimeMethod* method)
{
return (( int32_t (*) (Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 *, const RuntimeMethod*))Nullable_1_GetValueOrDefault_m66800983B800C26B67A6999A687EA3767C739406_gshared_inline)(__this, method);
}
// System.Int64 UnityEngine.XR.ARSubsystems.XRCameraFrame::get_timestampNs()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int64_t XRCameraFrame_get_timestampNs_m8F3730A23C9FF6A729F8D1939581D88716438DF7_inline (XRCameraFrame_t5FD7B7FC22B478AC6B00AD01A0AD6F2295EA1BA8 * __this, const RuntimeMethod* method);
// System.Single UnityEngine.XR.ARSubsystems.XRCameraFrame::get_averageBrightness()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float XRCameraFrame_get_averageBrightness_m34CB9F000CCBD2004F7E3CDBA987170A4B049F8E_inline (XRCameraFrame_t5FD7B7FC22B478AC6B00AD01A0AD6F2295EA1BA8 * __this, const RuntimeMethod* method);
// System.Single UnityEngine.XR.ARSubsystems.XRCameraFrame::get_averageColorTemperature()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float XRCameraFrame_get_averageColorTemperature_mD5EA9E87E76F7BCBFF709ABF309B142FB9D03DFC_inline (XRCameraFrame_t5FD7B7FC22B478AC6B00AD01A0AD6F2295EA1BA8 * __this, const RuntimeMethod* method);
// UnityEngine.Color UnityEngine.XR.ARSubsystems.XRCameraFrame::get_colorCorrection()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 XRCameraFrame_get_colorCorrection_mFB47669447DE0255EE2491929D9DF85CF7DF1B1A_inline (XRCameraFrame_t5FD7B7FC22B478AC6B00AD01A0AD6F2295EA1BA8 * __this, const RuntimeMethod* method);
// UnityEngine.Matrix4x4 UnityEngine.XR.ARSubsystems.XRCameraFrame::get_projectionMatrix()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Matrix4x4_tDE7FF4F2E2EA284F6EFE00D627789D0E5B8B4461 XRCameraFrame_get_projectionMatrix_mC489D4A0698634FDA99D0BBE0A93E42F5C82E985_inline (XRCameraFrame_t5FD7B7FC22B478AC6B00AD01A0AD6F2295EA1BA8 * __this, const RuntimeMethod* method);
// UnityEngine.Matrix4x4 UnityEngine.XR.ARSubsystems.XRCameraFrame::get_displayMatrix()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Matrix4x4_tDE7FF4F2E2EA284F6EFE00D627789D0E5B8B4461 XRCameraFrame_get_displayMatrix_m7D157BB20E2863E0415A42140B6396C4D3E30E31_inline (XRCameraFrame_t5FD7B7FC22B478AC6B00AD01A0AD6F2295EA1BA8 * __this, const RuntimeMethod* method);
// System.Single UnityEngine.XR.ARSubsystems.XRCameraFrame::get_averageIntensityInLumens()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float XRCameraFrame_get_averageIntensityInLumens_mC250C5B79A5B4C0F75D89BD1EC6FB07AB130B62F_inline (XRCameraFrame_t5FD7B7FC22B478AC6B00AD01A0AD6F2295EA1BA8 * __this, const RuntimeMethod* method);
// System.Double UnityEngine.XR.ARSubsystems.XRCameraFrame::get_exposureDuration()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR double XRCameraFrame_get_exposureDuration_m7957768DDB0AE596767478A9F8239A98BFD23207_inline (XRCameraFrame_t5FD7B7FC22B478AC6B00AD01A0AD6F2295EA1BA8 * __this, const RuntimeMethod* method);
// System.Single UnityEngine.XR.ARSubsystems.XRCameraFrame::get_exposureOffset()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float XRCameraFrame_get_exposureOffset_m276A794A6640F25AA7B1B0FB69C8296F7DDAAE53_inline (XRCameraFrame_t5FD7B7FC22B478AC6B00AD01A0AD6F2295EA1BA8 * __this, const RuntimeMethod* method);
// System.Single UnityEngine.XR.ARSubsystems.XRCameraFrame::get_mainLightIntensityLumens()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float XRCameraFrame_get_mainLightIntensityLumens_mDBCBCEA85B23C484CAF7D66ED52681E4AE4C506B_inline (XRCameraFrame_t5FD7B7FC22B478AC6B00AD01A0AD6F2295EA1BA8 * __this, const RuntimeMethod* method);
// UnityEngine.Color UnityEngine.XR.ARSubsystems.XRCameraFrame::get_mainLightColor()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 XRCameraFrame_get_mainLightColor_m3696EC5D7104849121C9A6CF3524AAC7382BED03_inline (XRCameraFrame_t5FD7B7FC22B478AC6B00AD01A0AD6F2295EA1BA8 * __this, const RuntimeMethod* method);
// UnityEngine.Vector3 UnityEngine.XR.ARSubsystems.XRCameraFrame::get_mainLightDirection()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E XRCameraFrame_get_mainLightDirection_mB7E086F4A8A89BD7404BB702DF980D7B5B124445_inline (XRCameraFrame_t5FD7B7FC22B478AC6B00AD01A0AD6F2295EA1BA8 * __this, const RuntimeMethod* method);
// UnityEngine.Rendering.SphericalHarmonicsL2 UnityEngine.XR.ARSubsystems.XRCameraFrame::get_ambientSphericalHarmonics()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR SphericalHarmonicsL2_tD2EC2ADCA26B9BE05036C3ABCF3CC049EC73EA64 XRCameraFrame_get_ambientSphericalHarmonics_m5859CDC5CE50F33C62EA59CE9BFC58C6F3CDB269_inline (XRCameraFrame_t5FD7B7FC22B478AC6B00AD01A0AD6F2295EA1BA8 * __this, const RuntimeMethod* method);
// UnityEngine.XR.ARSubsystems.XRTextureDescriptor UnityEngine.XR.ARSubsystems.XRCameraFrame::get_cameraGrain()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR XRTextureDescriptor_t9CA857DCCC1208B74376787BE4F3008A01B29A57 XRCameraFrame_get_cameraGrain_m7E8B37489D5380BE507656FFC9FE30B0333CED2A_inline (XRCameraFrame_t5FD7B7FC22B478AC6B00AD01A0AD6F2295EA1BA8 * __this, const RuntimeMethod* method);
// System.Single UnityEngine.XR.ARSubsystems.XRCameraFrame::get_noiseIntensity()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float XRCameraFrame_get_noiseIntensity_mA6150FB06579A1A6E637139C97E93304D6A83D3A_inline (XRCameraFrame_t5FD7B7FC22B478AC6B00AD01A0AD6F2295EA1BA8 * __this, const RuntimeMethod* method);
// System.Boolean UnityEngine.XR.ARSubsystems.XRCameraFrame::get_hasTimestamp()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XRCameraFrame_get_hasTimestamp_m2FBE2F396A15CC469756E3C876519B7FF3349897 (XRCameraFrame_t5FD7B7FC22B478AC6B00AD01A0AD6F2295EA1BA8 * __this, const RuntimeMethod* method);
// System.Boolean UnityEngine.XR.ARSubsystems.XRCameraFrame::get_hasAverageBrightness()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XRCameraFrame_get_hasAverageBrightness_m3B006851943F915530A8628BF3311C946CC8FC68 (XRCameraFrame_t5FD7B7FC22B478AC6B00AD01A0AD6F2295EA1BA8 * __this, const RuntimeMethod* method);
// System.Boolean UnityEngine.XR.ARSubsystems.XRCameraFrame::get_hasAverageColorTemperature()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XRCameraFrame_get_hasAverageColorTemperature_mEE8976398F8AE074090A1D3BE2DBB5F3484C04DF (XRCameraFrame_t5FD7B7FC22B478AC6B00AD01A0AD6F2295EA1BA8 * __this, const RuntimeMethod* method);
// System.Boolean UnityEngine.XR.ARSubsystems.XRCameraFrame::get_hasColorCorrection()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XRCameraFrame_get_hasColorCorrection_m687F2028F9A79A04CC6CA75C0305134DAB4DB9FE (XRCameraFrame_t5FD7B7FC22B478AC6B00AD01A0AD6F2295EA1BA8 * __this, const RuntimeMethod* method);
// System.Boolean UnityEngine.XR.ARSubsystems.XRCameraFrame::get_hasProjectionMatrix()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XRCameraFrame_get_hasProjectionMatrix_mA7A707C6E990D729C152E149063DE2BD0A456B4A (XRCameraFrame_t5FD7B7FC22B478AC6B00AD01A0AD6F2295EA1BA8 * __this, const RuntimeMethod* method);
// System.Boolean UnityEngine.XR.ARSubsystems.XRCameraFrame::get_hasDisplayMatrix()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XRCameraFrame_get_hasDisplayMatrix_mB369CC19C7B3E2640E2C2747A1E117A5773E5052 (XRCameraFrame_t5FD7B7FC22B478AC6B00AD01A0AD6F2295EA1BA8 * __this, const RuntimeMethod* method);
// System.Boolean UnityEngine.XR.ARSubsystems.XRCameraFrame::get_hasAverageIntensityInLumens()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XRCameraFrame_get_hasAverageIntensityInLumens_m2251DD714F7E6E9098DB738DF536FE191425379E (XRCameraFrame_t5FD7B7FC22B478AC6B00AD01A0AD6F2295EA1BA8 * __this, const RuntimeMethod* method);
// System.Boolean UnityEngine.XR.ARSubsystems.XRCameraFrame::get_hasExposureDuration()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XRCameraFrame_get_hasExposureDuration_mDF9AC5D38E767A61439850FCEE55E7CC40592EDC (XRCameraFrame_t5FD7B7FC22B478AC6B00AD01A0AD6F2295EA1BA8 * __this, const RuntimeMethod* method);
// System.Boolean UnityEngine.XR.ARSubsystems.XRCameraFrame::get_hasExposureOffset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XRCameraFrame_get_hasExposureOffset_m6696D6E287E1FB413669FA175ACD45E8D6799A37 (XRCameraFrame_t5FD7B7FC22B478AC6B00AD01A0AD6F2295EA1BA8 * __this, const RuntimeMethod* method);
// System.Boolean UnityEngine.XR.ARSubsystems.XRCameraFrame::get_hasMainLightIntensityLumens()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XRCameraFrame_get_hasMainLightIntensityLumens_mE0C9564F7A24636366E063F9086ECA81FDB055BF (XRCameraFrame_t5FD7B7FC22B478AC6B00AD01A0AD6F2295EA1BA8 * __this, const RuntimeMethod* method);
// System.Boolean UnityEngine.XR.ARSubsystems.XRCameraFrame::get_hasMainLightColor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XRCameraFrame_get_hasMainLightColor_m2B1D25F6224C098D66503F6768C6930D84451AB3 (XRCameraFrame_t5FD7B7FC22B478AC6B00AD01A0AD6F2295EA1BA8 * __this, const RuntimeMethod* method);
// System.Boolean UnityEngine.XR.ARSubsystems.XRCameraFrame::get_hasMainLightDirection()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XRCameraFrame_get_hasMainLightDirection_m75FB7306D3E483962E22DFB5DD2BB3A5398A7CC3 (XRCameraFrame_t5FD7B7FC22B478AC6B00AD01A0AD6F2295EA1BA8 * __this, const RuntimeMethod* method);
// System.Boolean UnityEngine.XR.ARSubsystems.XRCameraFrame::get_hasAmbientSphericalHarmonics()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XRCameraFrame_get_hasAmbientSphericalHarmonics_mA2B45AEE57B7DA5081B81C8483F1FBB90ABE3090 (XRCameraFrame_t5FD7B7FC22B478AC6B00AD01A0AD6F2295EA1BA8 * __this, const RuntimeMethod* method);
// System.Boolean UnityEngine.XR.ARSubsystems.XRCameraFrame::get_hasCameraGrain()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XRCameraFrame_get_hasCameraGrain_m14C3641296BF7BC49501E3D5E810A24A2D50922D (XRCameraFrame_t5FD7B7FC22B478AC6B00AD01A0AD6F2295EA1BA8 * __this, const RuntimeMethod* method);
// System.Boolean UnityEngine.XR.ARSubsystems.XRCameraFrame::get_hasNoiseIntensity()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XRCameraFrame_get_hasNoiseIntensity_mA5A08A29C34AC2AFFE5792725E4506F0B32EF75C (XRCameraFrame_t5FD7B7FC22B478AC6B00AD01A0AD6F2295EA1BA8 * __this, const RuntimeMethod* method);
// System.Boolean System.Int64::Equals(System.Int64)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Int64_Equals_m22F1F9E00328D15F2EF44D9A82F185C9A8D0A697 (int64_t* __this, int64_t ___obj0, const RuntimeMethod* method);
// System.Boolean System.Single::Equals(System.Single)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Single_Equals_m298A3A849F30B9900813BE6DD98AE6810CDBE914 (float* __this, float ___obj0, const RuntimeMethod* method);
// System.Boolean UnityEngine.Matrix4x4::Equals(UnityEngine.Matrix4x4)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Matrix4x4_Equals_mAE7AC284A922B094E4ACCC04A1C48B247E9A7997 (Matrix4x4_tDE7FF4F2E2EA284F6EFE00D627789D0E5B8B4461 * __this, Matrix4x4_tDE7FF4F2E2EA284F6EFE00D627789D0E5B8B4461 ___other0, const RuntimeMethod* method);
// System.Boolean System.Double::Equals(System.Double)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Double_Equals_m8C171E8C7F556087E707D1396DB29D1D8B21A46B (double* __this, double ___obj0, const RuntimeMethod* method);
// System.Boolean UnityEngine.Vector3::Equals(UnityEngine.Vector3)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Vector3_Equals_mA92800CD98ED6A42DD7C55C5DB22DAB4DEAA6397 (Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * __this, Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___other0, const RuntimeMethod* method);
// System.Boolean UnityEngine.Color::Equals(UnityEngine.Color)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Color_Equals_mB531F532B5F7BE6168CFD4A6C89358C16F058D00 (Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 * __this, Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 ___other0, const RuntimeMethod* method);
// System.Boolean UnityEngine.Rendering.SphericalHarmonicsL2::Equals(UnityEngine.Rendering.SphericalHarmonicsL2)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool SphericalHarmonicsL2_Equals_mE2AE9E68662F1944744A5F3FF7AA65391597C622 (SphericalHarmonicsL2_tD2EC2ADCA26B9BE05036C3ABCF3CC049EC73EA64 * __this, SphericalHarmonicsL2_tD2EC2ADCA26B9BE05036C3ABCF3CC049EC73EA64 ___other0, const RuntimeMethod* method);
// System.Boolean UnityEngine.XR.ARSubsystems.XRTextureDescriptor::Equals(UnityEngine.XR.ARSubsystems.XRTextureDescriptor)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XRTextureDescriptor_Equals_mD2A71E4A2D68686E74A648896FAC0FCDF02BE0B1 (XRTextureDescriptor_t9CA857DCCC1208B74376787BE4F3008A01B29A57 * __this, XRTextureDescriptor_t9CA857DCCC1208B74376787BE4F3008A01B29A57 ___other0, const RuntimeMethod* method);
// System.Boolean UnityEngine.XR.ARSubsystems.XRCameraFrame::Equals(UnityEngine.XR.ARSubsystems.XRCameraFrame)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XRCameraFrame_Equals_mEF403AD303261AE21BFE6F482EB3EF728EB49DD6 (XRCameraFrame_t5FD7B7FC22B478AC6B00AD01A0AD6F2295EA1BA8 * __this, XRCameraFrame_t5FD7B7FC22B478AC6B00AD01A0AD6F2295EA1BA8 ___other0, const RuntimeMethod* method);
// System.Boolean UnityEngine.XR.ARSubsystems.XRCameraFrame::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XRCameraFrame_Equals_m82C80589000BA2F428E4774763F668045BF085D6 (XRCameraFrame_t5FD7B7FC22B478AC6B00AD01A0AD6F2295EA1BA8 * __this, RuntimeObject * ___obj0, const RuntimeMethod* method);
// System.Int32 System.Int64::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Int64_GetHashCode_mF049F7E1956554FB36DA6671F55BE2CAA4937CC5 (int64_t* __this, const RuntimeMethod* method);
// System.Int32 System.Single::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Single_GetHashCode_m7662E1812DDDBC85D464398740CFFC3588DFB2C9 (float* __this, const RuntimeMethod* method);
// System.Int32 UnityEngine.Color::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Color_GetHashCode_mAF5E7EE6AFA983D3FA5E3D316E672EE1511F97CF (Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 * __this, const RuntimeMethod* method);
// System.Int32 UnityEngine.Matrix4x4::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Matrix4x4_GetHashCode_m102B903082CD1C786C221268A19679820E365B59 (Matrix4x4_tDE7FF4F2E2EA284F6EFE00D627789D0E5B8B4461 * __this, const RuntimeMethod* method);
// System.Int32 System.Double::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Double_GetHashCode_m33CB20AA5674C6F4367B7B08340B33FB979F9F39 (double* __this, const RuntimeMethod* method);
// System.Int32 UnityEngine.Vector3::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Vector3_GetHashCode_m9F18401DA6025110A012F55BBB5ACABD36FA9A0A (Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * __this, const RuntimeMethod* method);
// System.Int32 UnityEngine.Rendering.SphericalHarmonicsL2::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t SphericalHarmonicsL2_GetHashCode_m01ABB0C93C13460EF74534071BAECCF6C2B3D989 (SphericalHarmonicsL2_tD2EC2ADCA26B9BE05036C3ABCF3CC049EC73EA64 * __this, const RuntimeMethod* method);
// System.Int32 UnityEngine.XR.ARSubsystems.XRTextureDescriptor::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XRTextureDescriptor_GetHashCode_m8628ACEB1A4A6203BCD28B01D59B588715C83291 (XRTextureDescriptor_t9CA857DCCC1208B74376787BE4F3008A01B29A57 * __this, const RuntimeMethod* method);
// System.Int32 UnityEngine.XR.ARSubsystems.XRCameraFrame::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XRCameraFrame_GetHashCode_mCEC92150EE3B5237ACB46471128479997F78185D (XRCameraFrame_t5FD7B7FC22B478AC6B00AD01A0AD6F2295EA1BA8 * __this, const RuntimeMethod* method);
// System.String System.Single::ToString(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Single_ToString_m15F10F2AFF80750906CEFCFB456EBA84F9D2E8D7 (float* __this, String_t* ___format0, const RuntimeMethod* method);
// System.String UnityEngine.Matrix4x4::ToString(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Matrix4x4_ToString_m37E63359FC45C7959EDF563DA8EF495E63E201CB (Matrix4x4_tDE7FF4F2E2EA284F6EFE00D627789D0E5B8B4461 * __this, String_t* ___format0, const RuntimeMethod* method);
// System.String System.Double::ToString(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Double_ToString_m01772ACCBAF392BB24F3A8803DF40ADCF148D64C (double* __this, String_t* ___format0, const RuntimeMethod* method);
// System.String UnityEngine.Vector3::ToString(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Vector3_ToString_mBD710BF9F46219074EE5B095F064EAB4F73B64C1 (Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * __this, String_t* ___format0, const RuntimeMethod* method);
// System.String UnityEngine.Color::ToString(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Color_ToString_m1A3325552FB2DF96E8D22AF93C1C1A503C409A45 (Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 * __this, String_t* ___format0, const RuntimeMethod* method);
// System.String System.IntPtr::ToString(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* IntPtr_ToString_m7CDFDC84936276E62AB76AA238F7571B54DF90B4 (intptr_t* __this, String_t* ___format0, const RuntimeMethod* method);
// System.String System.String::Concat(System.String[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Concat_mFEA7EFA1A6E75B96B1B7BC4526AAC864BFF83CC9 (StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* ___values0, const RuntimeMethod* method);
// System.String UnityEngine.XR.ARSubsystems.XRCameraFrame::ToString()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XRCameraFrame_ToString_mE4A2FE2CA4AF1D844B950D0029023F98B189A6D8 (XRCameraFrame_t5FD7B7FC22B478AC6B00AD01A0AD6F2295EA1BA8 * __this, const RuntimeMethod* method);
// System.Boolean UnityEngine.Vector2Int::Equals(UnityEngine.Vector2Int)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Vector2Int_Equals_m96F4F602CE85AFD675A8096AB9D5E2D4544382FF_inline (Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9 * __this, Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9 ___other0, const RuntimeMethod* method);
// System.Boolean UnityEngine.XR.ARSubsystems.XRCameraIntrinsics::Equals(UnityEngine.XR.ARSubsystems.XRCameraIntrinsics)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XRCameraIntrinsics_Equals_mA7D92292854DA38258811FDC946BA82E1D5E001D (XRCameraIntrinsics_t85F1514E263A6C6DE96DBA5448B44F11F35395FD * __this, XRCameraIntrinsics_t85F1514E263A6C6DE96DBA5448B44F11F35395FD ___other0, const RuntimeMethod* method);
// System.Boolean UnityEngine.XR.ARSubsystems.XRCameraIntrinsics::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XRCameraIntrinsics_Equals_m037475660705484B0E8730157EA7A731998466AD (XRCameraIntrinsics_t85F1514E263A6C6DE96DBA5448B44F11F35395FD * __this, RuntimeObject * ___obj0, const RuntimeMethod* method);
// System.Int32 UnityEngine.XR.ARSubsystems.XRCameraIntrinsics::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XRCameraIntrinsics_GetHashCode_mD1D3D0F34AA1723CC454040334B46D5CD7809377 (XRCameraIntrinsics_t85F1514E263A6C6DE96DBA5448B44F11F35395FD * __this, const RuntimeMethod* method);
// System.String UnityEngine.XR.ARSubsystems.XRCameraIntrinsics::ToString()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XRCameraIntrinsics_ToString_mFD230300DEC4F7FB2DCF30F4F02036D97213B2C9 (XRCameraIntrinsics_t85F1514E263A6C6DE96DBA5448B44F11F35395FD * __this, const RuntimeMethod* method);
// System.Void UnityEngine.XR.ARSubsystems.XRCameraParams::set_zNear(System.Single)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XRCameraParams_set_zNear_mE207AB998D78E35497B1E941A20C7864D454EE45_inline (XRCameraParams_t9FCECBDAEFCC1084042B75393990959B28B64B18 * __this, float ___value0, const RuntimeMethod* method);
// System.Void UnityEngine.XR.ARSubsystems.XRCameraParams::set_zFar(System.Single)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XRCameraParams_set_zFar_m4ABC4E0271EE81FEA88B1608B19ED3CFDA8E523B_inline (XRCameraParams_t9FCECBDAEFCC1084042B75393990959B28B64B18 * __this, float ___value0, const RuntimeMethod* method);
// System.Void UnityEngine.XR.ARSubsystems.XRCameraParams::set_screenWidth(System.Single)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XRCameraParams_set_screenWidth_m4E9ABE5FEE32FB446FDF6EC5B00961ACC66B48FB_inline (XRCameraParams_t9FCECBDAEFCC1084042B75393990959B28B64B18 * __this, float ___value0, const RuntimeMethod* method);
// System.Void UnityEngine.XR.ARSubsystems.XRCameraParams::set_screenHeight(System.Single)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XRCameraParams_set_screenHeight_m31C5E67C7403556AFF8B72CC4BB09EA3C3AA05A3_inline (XRCameraParams_t9FCECBDAEFCC1084042B75393990959B28B64B18 * __this, float ___value0, const RuntimeMethod* method);
// System.Void UnityEngine.XR.ARSubsystems.XRCameraParams::set_screenOrientation(UnityEngine.ScreenOrientation)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XRCameraParams_set_screenOrientation_mCF2AD6E975E790E5BE14E2A1EB71A73E8AA7E7D9_inline (XRCameraParams_t9FCECBDAEFCC1084042B75393990959B28B64B18 * __this, int32_t ___value0, const RuntimeMethod* method);
// System.Boolean UnityEngine.XR.ARSubsystems.XRCameraParams::Equals(UnityEngine.XR.ARSubsystems.XRCameraParams)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XRCameraParams_Equals_m392E8AB6ECAEA915E0E1C9A20831EBE24346E4C0 (XRCameraParams_t9FCECBDAEFCC1084042B75393990959B28B64B18 * __this, XRCameraParams_t9FCECBDAEFCC1084042B75393990959B28B64B18 ___other0, const RuntimeMethod* method);
// System.Boolean UnityEngine.XR.ARSubsystems.XRCameraParams::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XRCameraParams_Equals_mDE9A6E9D2127F369FA129FD19E73A790FF48E8F2 (XRCameraParams_t9FCECBDAEFCC1084042B75393990959B28B64B18 * __this, RuntimeObject * ___obj0, const RuntimeMethod* method);
// System.Int32 UnityEngine.XR.ARSubsystems.XRCameraParams::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XRCameraParams_GetHashCode_m5C9955238ED690EA6A338097DB818F37ECBFDC72 (XRCameraParams_t9FCECBDAEFCC1084042B75393990959B28B64B18 * __this, const RuntimeMethod* method);
// System.String System.Single::ToString()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Single_ToString_m80E7ABED4F4D73F2BE19DDB80D3D92FCD8DFA010 (float* __this, const RuntimeMethod* method);
// System.String UnityEngine.XR.ARSubsystems.XRCameraParams::ToString()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XRCameraParams_ToString_m4CAB10F6C7424973F8A9E72F70283A53C384AF3F (XRCameraParams_t9FCECBDAEFCC1084042B75393990959B28B64B18 * __this, const RuntimeMethod* method);
// System.Void UnityEngine.SubsystemsImplementation.SubsystemWithProvider`3<UnityEngine.XR.ARSubsystems.XRCameraSubsystem,UnityEngine.XR.ARSubsystems.XRCameraSubsystemDescriptor,UnityEngine.XR.ARSubsystems.XRCameraSubsystem/Provider>::.ctor()
inline void SubsystemWithProvider_3__ctor_m67FD47729C6247AB68009583EC0102BF76D8F45B (SubsystemWithProvider_3_tA938665692EBC0CA746A276F8413E462E8930FD4 * __this, const RuntimeMethod* method)
{
(( void (*) (SubsystemWithProvider_3_tA938665692EBC0CA746A276F8413E462E8930FD4 *, const RuntimeMethod*))SubsystemWithProvider_3__ctor_m547D656ED6A22E04230EE777D2EB7A68BA51212F_gshared)(__this, method);
}
// !2 UnityEngine.SubsystemsImplementation.SubsystemWithProvider`3<UnityEngine.XR.ARSubsystems.XRCameraSubsystem,UnityEngine.XR.ARSubsystems.XRCameraSubsystemDescriptor,UnityEngine.XR.ARSubsystems.XRCameraSubsystem/Provider>::get_provider()
inline Provider_t55916B0D2766C320DCA36A0C870BA2FD80F8B6D1 * SubsystemWithProvider_3_get_provider_m06A1D4B30D132FBC0CBB3D07D2446A864DE2144F_inline (SubsystemWithProvider_3_tA938665692EBC0CA746A276F8413E462E8930FD4 * __this, const RuntimeMethod* method)
{
return (( Provider_t55916B0D2766C320DCA36A0C870BA2FD80F8B6D1 * (*) (SubsystemWithProvider_3_tA938665692EBC0CA746A276F8413E462E8930FD4 *, const RuntimeMethod*))SubsystemWithProvider_3_get_provider_m6D630D758837E2C1BBCC328AAF4512ADFA1F48F3_gshared_inline)(__this, method);
}
// UnityEngine.XR.ARSubsystems.Feature UnityEngine.XR.ARSubsystems.FeatureExtensions::LightEstimation(UnityEngine.XR.ARSubsystems.Feature)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t FeatureExtensions_LightEstimation_m7FF62D53AE0E08C1B8923FAB371C228B7DF190C5 (uint64_t ___self0, const RuntimeMethod* method);
// System.Boolean System.Nullable`1<UnityEngine.XR.ARSubsystems.XRCameraConfiguration>::get_HasValue()
inline bool Nullable_1_get_HasValue_mD8E0C85C96E8F68E55600773D64912BF77F68545_inline (Nullable_1_t661141E668063C73311C9DF09B3AE945EA9A1D8C * __this, const RuntimeMethod* method)
{
return (( bool (*) (Nullable_1_t661141E668063C73311C9DF09B3AE945EA9A1D8C *, const RuntimeMethod*))Nullable_1_get_HasValue_mD8E0C85C96E8F68E55600773D64912BF77F68545_gshared_inline)(__this, method);
}
// System.Void System.ArgumentNullException::.ctor(System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentNullException__ctor_mAD2F05A24C92A657CBCA8C43A9A373C53739A283 (ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB * __this, String_t* ___paramName0, String_t* ___message1, const RuntimeMethod* method);
// System.Void UnityEngine.XR.ARSubsystems.XRCpuImage::.ctor(UnityEngine.XR.ARSubsystems.XRCpuImage/Api,UnityEngine.XR.ARSubsystems.XRCpuImage/Cinfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRCpuImage__ctor_mA44BE98BA315639462481743B96A650B89F7C26E (XRCpuImage_tA48C0687D95D3D63D1101E4E08EFCF0ABB2431CE * __this, Api_t7C92F00C6416A2C636A44AAC833C3773C567DC3E * ___api0, Cinfo_t4E32E30AF6973611F1DD0F47FC041ED3A8775DA6 ___cinfo1, const RuntimeMethod* method);
// UnityEngine.XR.ARSubsystems.XRCameraSubsystemDescriptor UnityEngine.XR.ARSubsystems.XRCameraSubsystemDescriptor::Create(UnityEngine.XR.ARSubsystems.XRCameraSubsystemCinfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XRCameraSubsystemDescriptor_t1F8A45C69031E2981B1863518C43793D26E2C5E5 * XRCameraSubsystemDescriptor_Create_mEC826CD90D35D17847339952F5022081EF871033 (XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096 ___cameraSubsystemParams0, const RuntimeMethod* method);
// System.String UnityEngine.XR.ARSubsystems.XRCameraSubsystemCinfo::get_id()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* XRCameraSubsystemCinfo_get_id_m606888326128C053029E1B09A00F2CB97B214291_inline (XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096 * __this, const RuntimeMethod* method);
// System.Void UnityEngine.XR.ARSubsystems.XRCameraSubsystemCinfo::set_id(System.String)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XRCameraSubsystemCinfo_set_id_m768994793A205C7D5CE603B354D350A34D47720D_inline (XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096 * __this, String_t* ___value0, const RuntimeMethod* method);
// System.Type UnityEngine.XR.ARSubsystems.XRCameraSubsystemCinfo::get_providerType()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Type_t * XRCameraSubsystemCinfo_get_providerType_m181531F5B642DA8E3E10FC62879495B0A8D53110_inline (XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096 * __this, const RuntimeMethod* method);
// System.Void UnityEngine.XR.ARSubsystems.XRCameraSubsystemCinfo::set_providerType(System.Type)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XRCameraSubsystemCinfo_set_providerType_m78F56C5CEF9FF62F60DE6073B8AD0FB0AFD00730_inline (XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096 * __this, Type_t * ___value0, const RuntimeMethod* method);
// System.Type UnityEngine.XR.ARSubsystems.XRCameraSubsystemCinfo::get_subsystemTypeOverride()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Type_t * XRCameraSubsystemCinfo_get_subsystemTypeOverride_mED0FB455C8C39164EF2594FC9405B78C1E2EB809_inline (XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096 * __this, const RuntimeMethod* method);
// System.Void UnityEngine.XR.ARSubsystems.XRCameraSubsystemCinfo::set_subsystemTypeOverride(System.Type)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XRCameraSubsystemCinfo_set_subsystemTypeOverride_mD4D22BB1EC102CA40AF084B06DA3C957139EF2D4_inline (XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096 * __this, Type_t * ___value0, const RuntimeMethod* method);
// System.Boolean UnityEngine.XR.ARSubsystems.XRCameraSubsystemCinfo::get_supportsAverageBrightness()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool XRCameraSubsystemCinfo_get_supportsAverageBrightness_mF49B2D16DE8FBC5452C17D87672FBE1EB814145E_inline (XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096 * __this, const RuntimeMethod* method);
// System.Void UnityEngine.XR.ARSubsystems.XRCameraSubsystemCinfo::set_supportsAverageBrightness(System.Boolean)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XRCameraSubsystemCinfo_set_supportsAverageBrightness_mC20A88BD3C8D137A1F34888C64DC5FFF37787759_inline (XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096 * __this, bool ___value0, const RuntimeMethod* method);
// System.Boolean UnityEngine.XR.ARSubsystems.XRCameraSubsystemCinfo::get_supportsAverageColorTemperature()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool XRCameraSubsystemCinfo_get_supportsAverageColorTemperature_m789041AE11DC92E73ED6C228C5A5B55A87AE736B_inline (XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096 * __this, const RuntimeMethod* method);
// System.Void UnityEngine.XR.ARSubsystems.XRCameraSubsystemCinfo::set_supportsAverageColorTemperature(System.Boolean)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XRCameraSubsystemCinfo_set_supportsAverageColorTemperature_m77727C8CBAB59D0D078B0A634EB0A56F1BF368E4_inline (XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096 * __this, bool ___value0, const RuntimeMethod* method);
// System.Boolean UnityEngine.XR.ARSubsystems.XRCameraSubsystemCinfo::get_supportsColorCorrection()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool XRCameraSubsystemCinfo_get_supportsColorCorrection_m6910005DB05086FEBDBFFFE47BFFDBB96453E5C7_inline (XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096 * __this, const RuntimeMethod* method);
// System.Void UnityEngine.XR.ARSubsystems.XRCameraSubsystemCinfo::set_supportsColorCorrection(System.Boolean)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XRCameraSubsystemCinfo_set_supportsColorCorrection_m1CBB9181A21D2A964705AD5E22F78735DCFE2C01_inline (XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096 * __this, bool ___value0, const RuntimeMethod* method);
// System.Boolean UnityEngine.XR.ARSubsystems.XRCameraSubsystemCinfo::get_supportsDisplayMatrix()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool XRCameraSubsystemCinfo_get_supportsDisplayMatrix_m2107BE8860B1A4D050A80801F6286F0E9798820D_inline (XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096 * __this, const RuntimeMethod* method);
// System.Void UnityEngine.XR.ARSubsystems.XRCameraSubsystemCinfo::set_supportsDisplayMatrix(System.Boolean)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XRCameraSubsystemCinfo_set_supportsDisplayMatrix_m2E11C0B7442273252613BDB41BB8B6F02698FBEA_inline (XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096 * __this, bool ___value0, const RuntimeMethod* method);
// System.Boolean UnityEngine.XR.ARSubsystems.XRCameraSubsystemCinfo::get_supportsProjectionMatrix()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool XRCameraSubsystemCinfo_get_supportsProjectionMatrix_mAC44711CBD0AEF5600FAF7A65364692FE9FA9D9E_inline (XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096 * __this, const RuntimeMethod* method);
// System.Void UnityEngine.XR.ARSubsystems.XRCameraSubsystemCinfo::set_supportsProjectionMatrix(System.Boolean)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XRCameraSubsystemCinfo_set_supportsProjectionMatrix_mFC886F8859FDF308D7980935474AA0E66ECF66B4_inline (XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096 * __this, bool ___value0, const RuntimeMethod* method);
// System.Boolean UnityEngine.XR.ARSubsystems.XRCameraSubsystemCinfo::get_supportsTimestamp()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool XRCameraSubsystemCinfo_get_supportsTimestamp_m0B95FB498C6682EE15E2461F8A5C555B3E397543_inline (XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096 * __this, const RuntimeMethod* method);
// System.Void UnityEngine.XR.ARSubsystems.XRCameraSubsystemCinfo::set_supportsTimestamp(System.Boolean)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XRCameraSubsystemCinfo_set_supportsTimestamp_mAA6157EC368F6358F155571E257A578729D368D4_inline (XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096 * __this, bool ___value0, const RuntimeMethod* method);
// System.Boolean UnityEngine.XR.ARSubsystems.XRCameraSubsystemCinfo::get_supportsCameraConfigurations()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool XRCameraSubsystemCinfo_get_supportsCameraConfigurations_mF0168147B6D556F8289DCE665D070EE427430CDD_inline (XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096 * __this, const RuntimeMethod* method);
// System.Void UnityEngine.XR.ARSubsystems.XRCameraSubsystemCinfo::set_supportsCameraConfigurations(System.Boolean)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XRCameraSubsystemCinfo_set_supportsCameraConfigurations_mD0F431DDAB4F82DDC6E35AB7583572D25244E0F0_inline (XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096 * __this, bool ___value0, const RuntimeMethod* method);
// System.Boolean UnityEngine.XR.ARSubsystems.XRCameraSubsystemCinfo::get_supportsCameraImage()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool XRCameraSubsystemCinfo_get_supportsCameraImage_m404883CC80418B38CB13D3ED6DAAFE6D81978A6F_inline (XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096 * __this, const RuntimeMethod* method);
// System.Void UnityEngine.XR.ARSubsystems.XRCameraSubsystemCinfo::set_supportsCameraImage(System.Boolean)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XRCameraSubsystemCinfo_set_supportsCameraImage_m2140EBB7ACEA9B1634F56DE2DCB85F26CB8C4D7D_inline (XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096 * __this, bool ___value0, const RuntimeMethod* method);
// System.Boolean UnityEngine.XR.ARSubsystems.XRCameraSubsystemCinfo::get_supportsAverageIntensityInLumens()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool XRCameraSubsystemCinfo_get_supportsAverageIntensityInLumens_m5B91C231C060B22D44F1579CF361500D7B54173E_inline (XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096 * __this, const RuntimeMethod* method);
// System.Void UnityEngine.XR.ARSubsystems.XRCameraSubsystemCinfo::set_supportsAverageIntensityInLumens(System.Boolean)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XRCameraSubsystemCinfo_set_supportsAverageIntensityInLumens_m49462C178EF35B3E688EE6711FD3E41E9C1976AB_inline (XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096 * __this, bool ___value0, const RuntimeMethod* method);
// System.Boolean UnityEngine.XR.ARSubsystems.XRCameraSubsystemCinfo::get_supportsFaceTrackingAmbientIntensityLightEstimation()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool XRCameraSubsystemCinfo_get_supportsFaceTrackingAmbientIntensityLightEstimation_mBE329A85F8992A65715EC3F97AC0CEEE5B0DE9D8_inline (XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096 * __this, const RuntimeMethod* method);
// System.Void UnityEngine.XR.ARSubsystems.XRCameraSubsystemCinfo::set_supportsFaceTrackingAmbientIntensityLightEstimation(System.Boolean)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XRCameraSubsystemCinfo_set_supportsFaceTrackingAmbientIntensityLightEstimation_m93740733F66607C53F3928946A79CE732EAF9EF9_inline (XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096 * __this, bool ___value0, const RuntimeMethod* method);
// System.Boolean UnityEngine.XR.ARSubsystems.XRCameraSubsystemCinfo::get_supportsFaceTrackingHDRLightEstimation()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool XRCameraSubsystemCinfo_get_supportsFaceTrackingHDRLightEstimation_mAA8871A8B5D8CDC9D7D5FEA47E72423BC02D969B_inline (XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096 * __this, const RuntimeMethod* method);
// System.Void UnityEngine.XR.ARSubsystems.XRCameraSubsystemCinfo::set_supportsFaceTrackingHDRLightEstimation(System.Boolean)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XRCameraSubsystemCinfo_set_supportsFaceTrackingHDRLightEstimation_mD76A9A9A127118388FBD2E971246303BB2BE0F0C_inline (XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096 * __this, bool ___value0, const RuntimeMethod* method);
// System.Boolean UnityEngine.XR.ARSubsystems.XRCameraSubsystemCinfo::get_supportsWorldTrackingAmbientIntensityLightEstimation()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool XRCameraSubsystemCinfo_get_supportsWorldTrackingAmbientIntensityLightEstimation_mC5C8DDCB2DB3F82EA868AF171039DF6ECFF9C7EC_inline (XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096 * __this, const RuntimeMethod* method);
// System.Void UnityEngine.XR.ARSubsystems.XRCameraSubsystemCinfo::set_supportsWorldTrackingAmbientIntensityLightEstimation(System.Boolean)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XRCameraSubsystemCinfo_set_supportsWorldTrackingAmbientIntensityLightEstimation_mE9B47A05DA11B6C6FFCB6FFED773ADB464130C5B_inline (XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096 * __this, bool ___value0, const RuntimeMethod* method);
// System.Boolean UnityEngine.XR.ARSubsystems.XRCameraSubsystemCinfo::get_supportsWorldTrackingHDRLightEstimation()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool XRCameraSubsystemCinfo_get_supportsWorldTrackingHDRLightEstimation_m96A9EF59A86DAFBA2A14AFAA79840480E8CDD01D_inline (XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096 * __this, const RuntimeMethod* method);
// System.Void UnityEngine.XR.ARSubsystems.XRCameraSubsystemCinfo::set_supportsWorldTrackingHDRLightEstimation(System.Boolean)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XRCameraSubsystemCinfo_set_supportsWorldTrackingHDRLightEstimation_m92AC9270D4D5FA4C61ED353406511B3877E5D9D4_inline (XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096 * __this, bool ___value0, const RuntimeMethod* method);
// System.Boolean UnityEngine.XR.ARSubsystems.XRCameraSubsystemCinfo::get_supportsFocusModes()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool XRCameraSubsystemCinfo_get_supportsFocusModes_mA2196338BFF377734A338E919D372089A98417D9_inline (XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096 * __this, const RuntimeMethod* method);
// System.Void UnityEngine.XR.ARSubsystems.XRCameraSubsystemCinfo::set_supportsFocusModes(System.Boolean)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XRCameraSubsystemCinfo_set_supportsFocusModes_m2F70E7EFC54E2F930DEA28DC4922125E01FE3026_inline (XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096 * __this, bool ___value0, const RuntimeMethod* method);
// System.Boolean UnityEngine.XR.ARSubsystems.XRCameraSubsystemCinfo::get_supportsCameraGrain()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool XRCameraSubsystemCinfo_get_supportsCameraGrain_mFC3B0475E51415F6BCDAB93671CD421826DA9B9B_inline (XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096 * __this, const RuntimeMethod* method);
// System.Void UnityEngine.XR.ARSubsystems.XRCameraSubsystemCinfo::set_supportsCameraGrain(System.Boolean)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XRCameraSubsystemCinfo_set_supportsCameraGrain_m8BF26C263FED0D5106C436091BD8C25BFF8FD755_inline (XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096 * __this, bool ___value0, const RuntimeMethod* method);
// System.Boolean System.Boolean::Equals(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Boolean_Equals_mC63D03B4DE1BBC68835530A9E0384FDDB0AC1A3D (bool* __this, bool ___obj0, const RuntimeMethod* method);
// System.Boolean UnityEngine.XR.ARSubsystems.XRCameraSubsystemCinfo::Equals(UnityEngine.XR.ARSubsystems.XRCameraSubsystemCinfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XRCameraSubsystemCinfo_Equals_m8C071329439DF323FF57A936181A09F933886EAB (XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096 * __this, XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096 ___other0, const RuntimeMethod* method);
// System.Boolean UnityEngine.XR.ARSubsystems.XRCameraSubsystemCinfo::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XRCameraSubsystemCinfo_Equals_m8DA28DF625D849C92AE0770EBB43184C2CE4FEE4 (XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096 * __this, RuntimeObject * ___obj0, const RuntimeMethod* method);
// System.Int32 System.Boolean::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Boolean_GetHashCode_m03AF8B3CECAE9106C44A00E3B33E51CBFC45C411 (bool* __this, const RuntimeMethod* method);
// System.Int32 UnityEngine.XR.ARSubsystems.XRCameraSubsystemCinfo::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XRCameraSubsystemCinfo_GetHashCode_mA8D0D3E3ABB46889F31B045A1D6F8A06EC8701D0 (XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096 * __this, const RuntimeMethod* method);
// System.Void UnityEngine.SubsystemsImplementation.SubsystemDescriptorWithProvider`2<UnityEngine.XR.ARSubsystems.XRCameraSubsystem,UnityEngine.XR.ARSubsystems.XRCameraSubsystem/Provider>::.ctor()
inline void SubsystemDescriptorWithProvider_2__ctor_m1EABAE51FDAFF9CB42468C8DAF4A7964659204AF (SubsystemDescriptorWithProvider_2_tA9FA485739D1F05136E95B57BC5FC580309C9038 * __this, const RuntimeMethod* method)
{
(( void (*) (SubsystemDescriptorWithProvider_2_tA9FA485739D1F05136E95B57BC5FC580309C9038 *, const RuntimeMethod*))SubsystemDescriptorWithProvider_2__ctor_mF969744E314332AC762279256CF288A3769ABC93_gshared)(__this, method);
}
// System.Void UnityEngine.XR.ARSubsystems.XRCameraSubsystemDescriptor::set_supportsAverageBrightness(System.Boolean)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XRCameraSubsystemDescriptor_set_supportsAverageBrightness_m93E308790E7E9F9EB2D4A0AA12EF64F5ACF32275_inline (XRCameraSubsystemDescriptor_t1F8A45C69031E2981B1863518C43793D26E2C5E5 * __this, bool ___value0, const RuntimeMethod* method);
// System.Void UnityEngine.XR.ARSubsystems.XRCameraSubsystemDescriptor::set_supportsAverageColorTemperature(System.Boolean)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XRCameraSubsystemDescriptor_set_supportsAverageColorTemperature_m79788019F8E730D1FC139530E9615FE5CBABDDCB_inline (XRCameraSubsystemDescriptor_t1F8A45C69031E2981B1863518C43793D26E2C5E5 * __this, bool ___value0, const RuntimeMethod* method);
// System.Void UnityEngine.XR.ARSubsystems.XRCameraSubsystemDescriptor::set_supportsColorCorrection(System.Boolean)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XRCameraSubsystemDescriptor_set_supportsColorCorrection_m3CD5EFDB6CBC26159DA439F9D83FDFD184AA5B71_inline (XRCameraSubsystemDescriptor_t1F8A45C69031E2981B1863518C43793D26E2C5E5 * __this, bool ___value0, const RuntimeMethod* method);
// System.Void UnityEngine.XR.ARSubsystems.XRCameraSubsystemDescriptor::set_supportsDisplayMatrix(System.Boolean)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XRCameraSubsystemDescriptor_set_supportsDisplayMatrix_mE32DBA05CC497A4639E3BDA570E51244BD5E524A_inline (XRCameraSubsystemDescriptor_t1F8A45C69031E2981B1863518C43793D26E2C5E5 * __this, bool ___value0, const RuntimeMethod* method);
// System.Void UnityEngine.XR.ARSubsystems.XRCameraSubsystemDescriptor::set_supportsProjectionMatrix(System.Boolean)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XRCameraSubsystemDescriptor_set_supportsProjectionMatrix_mECDFAEA74911ED30529FDB70DE87AA3818AA285F_inline (XRCameraSubsystemDescriptor_t1F8A45C69031E2981B1863518C43793D26E2C5E5 * __this, bool ___value0, const RuntimeMethod* method);
// System.Void UnityEngine.XR.ARSubsystems.XRCameraSubsystemDescriptor::set_supportsTimestamp(System.Boolean)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XRCameraSubsystemDescriptor_set_supportsTimestamp_mDE3970574677648ED3EC4520657BED04613128D3_inline (XRCameraSubsystemDescriptor_t1F8A45C69031E2981B1863518C43793D26E2C5E5 * __this, bool ___value0, const RuntimeMethod* method);
// System.Void UnityEngine.XR.ARSubsystems.XRCameraSubsystemDescriptor::set_supportsCameraConfigurations(System.Boolean)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XRCameraSubsystemDescriptor_set_supportsCameraConfigurations_mE49020DC68025F21123ACCCB96C0ACB0A99A923C_inline (XRCameraSubsystemDescriptor_t1F8A45C69031E2981B1863518C43793D26E2C5E5 * __this, bool ___value0, const RuntimeMethod* method);
// System.Void UnityEngine.XR.ARSubsystems.XRCameraSubsystemDescriptor::set_supportsCameraImage(System.Boolean)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XRCameraSubsystemDescriptor_set_supportsCameraImage_m3D2848F2DDBED1D1B613D6CF8E6055D8163EF3F7_inline (XRCameraSubsystemDescriptor_t1F8A45C69031E2981B1863518C43793D26E2C5E5 * __this, bool ___value0, const RuntimeMethod* method);
// System.Void UnityEngine.XR.ARSubsystems.XRCameraSubsystemDescriptor::set_supportsAverageIntensityInLumens(System.Boolean)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XRCameraSubsystemDescriptor_set_supportsAverageIntensityInLumens_m65A10731DEF111F2BE9325DC6CC26E5B765D07C6_inline (XRCameraSubsystemDescriptor_t1F8A45C69031E2981B1863518C43793D26E2C5E5 * __this, bool ___value0, const RuntimeMethod* method);
// System.Void UnityEngine.XR.ARSubsystems.XRCameraSubsystemDescriptor::set_supportsFocusModes(System.Boolean)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XRCameraSubsystemDescriptor_set_supportsFocusModes_mB7D094AE9379B0C31386397C907C1A1C1A4189BB_inline (XRCameraSubsystemDescriptor_t1F8A45C69031E2981B1863518C43793D26E2C5E5 * __this, bool ___value0, const RuntimeMethod* method);
// System.Void UnityEngine.XR.ARSubsystems.XRCameraSubsystemDescriptor::set_supportsFaceTrackingAmbientIntensityLightEstimation(System.Boolean)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XRCameraSubsystemDescriptor_set_supportsFaceTrackingAmbientIntensityLightEstimation_mA1E7039E19BAF3A62B025C1FD9E39112C92759BB_inline (XRCameraSubsystemDescriptor_t1F8A45C69031E2981B1863518C43793D26E2C5E5 * __this, bool ___value0, const RuntimeMethod* method);
// System.Void UnityEngine.XR.ARSubsystems.XRCameraSubsystemDescriptor::set_supportsFaceTrackingHDRLightEstimation(System.Boolean)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XRCameraSubsystemDescriptor_set_supportsFaceTrackingHDRLightEstimation_mE2E9D893DE652FC15DBD89A46E092957ED012565_inline (XRCameraSubsystemDescriptor_t1F8A45C69031E2981B1863518C43793D26E2C5E5 * __this, bool ___value0, const RuntimeMethod* method);
// System.Void UnityEngine.XR.ARSubsystems.XRCameraSubsystemDescriptor::set_supportsWorldTrackingAmbientIntensityLightEstimation(System.Boolean)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XRCameraSubsystemDescriptor_set_supportsWorldTrackingAmbientIntensityLightEstimation_mB1C4D288FD5B48EC53B047348A3E25BE66C1F6BD_inline (XRCameraSubsystemDescriptor_t1F8A45C69031E2981B1863518C43793D26E2C5E5 * __this, bool ___value0, const RuntimeMethod* method);
// System.Void UnityEngine.XR.ARSubsystems.XRCameraSubsystemDescriptor::set_supportsWorldTrackingHDRLightEstimation(System.Boolean)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XRCameraSubsystemDescriptor_set_supportsWorldTrackingHDRLightEstimation_mA05D37FA61B46B9215CA459E52A84D398B19715E_inline (XRCameraSubsystemDescriptor_t1F8A45C69031E2981B1863518C43793D26E2C5E5 * __this, bool ___value0, const RuntimeMethod* method);
// System.Void UnityEngine.XR.ARSubsystems.XRCameraSubsystemDescriptor::set_supportsCameraGrain(System.Boolean)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XRCameraSubsystemDescriptor_set_supportsCameraGrain_m0DE607C6E20FA0A160E9421AD11B86DC267E3632_inline (XRCameraSubsystemDescriptor_t1F8A45C69031E2981B1863518C43793D26E2C5E5 * __this, bool ___value0, const RuntimeMethod* method);
// System.Boolean System.Type::op_Equality(System.Type,System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Type_op_Equality_mA438719A1FDF103C7BBBB08AEF564E7FAEEA0046 (Type_t * ___left0, Type_t * ___right1, const RuntimeMethod* method);
// System.Type System.Type::GetTypeFromHandle(System.RuntimeTypeHandle)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t * Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E (RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 ___handle0, const RuntimeMethod* method);
// System.Boolean System.Type::op_Inequality(System.Type,System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Type_op_Inequality_m6DDC5E923203A79BF505F9275B694AD3FAA36DB0 (Type_t * ___left0, Type_t * ___right1, const RuntimeMethod* method);
// System.Void UnityEngine.XR.ARSubsystems.XRCameraSubsystemDescriptor::.ctor(UnityEngine.XR.ARSubsystems.XRCameraSubsystemCinfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRCameraSubsystemDescriptor__ctor_m3279B88FEF25A569F67987BDC39A0678B72D1CB6 (XRCameraSubsystemDescriptor_t1F8A45C69031E2981B1863518C43793D26E2C5E5 * __this, XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096 ___cameraSubsystemParams0, const RuntimeMethod* method);
// System.Void UnityEngine.XR.ARSubsystems.XRCpuImage::OnAsyncConversionComplete(UnityEngine.XR.ARSubsystems.XRCpuImage/AsyncConversionStatus,UnityEngine.XR.ARSubsystems.XRCpuImage/ConversionParams,System.IntPtr,System.Int32,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRCpuImage_OnAsyncConversionComplete_m60DC813F1A2B8A59F993D245683847D933D292A9 (int32_t ___status0, ConversionParams_t3DDB9752BA823641A302D0783C14048D9B09B74A ___conversionParams1, intptr_t ___dataPtr2, int32_t ___dataLength3, intptr_t ___context4, const RuntimeMethod* method);
// UnityEngine.Vector2Int UnityEngine.XR.ARSubsystems.XRCpuImage::get_dimensions()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9 XRCpuImage_get_dimensions_m1A176BDB3319F09F3AF628AB17C126B62929A2A5_inline (XRCpuImage_tA48C0687D95D3D63D1101E4E08EFCF0ABB2431CE * __this, const RuntimeMethod* method);
// System.Void UnityEngine.XR.ARSubsystems.XRCpuImage::set_dimensions(UnityEngine.Vector2Int)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XRCpuImage_set_dimensions_m8672F4307A096265FA73685BDDA6D605B9C10ED5_inline (XRCpuImage_tA48C0687D95D3D63D1101E4E08EFCF0ABB2431CE * __this, Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9 ___value0, const RuntimeMethod* method);
// System.Int32 UnityEngine.XR.ARSubsystems.XRCpuImage::get_width()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XRCpuImage_get_width_m8DE20D99BCFA242F105F3B39AD68D398F3C2B4CE (XRCpuImage_tA48C0687D95D3D63D1101E4E08EFCF0ABB2431CE * __this, const RuntimeMethod* method);
// System.Int32 UnityEngine.XR.ARSubsystems.XRCpuImage::get_height()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XRCpuImage_get_height_m7BB3967EC96DB5EEF99E0935E5AA1DFB991D7ADD (XRCpuImage_tA48C0687D95D3D63D1101E4E08EFCF0ABB2431CE * __this, const RuntimeMethod* method);
// System.Int32 UnityEngine.XR.ARSubsystems.XRCpuImage::get_planeCount()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t XRCpuImage_get_planeCount_m5F63BAD93F18A9D85D74377CFE1891860740D750_inline (XRCpuImage_tA48C0687D95D3D63D1101E4E08EFCF0ABB2431CE * __this, const RuntimeMethod* method);
// System.Void UnityEngine.XR.ARSubsystems.XRCpuImage::set_planeCount(System.Int32)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XRCpuImage_set_planeCount_mC261323C60A65DD0EBA30325554C5F92F13149EA_inline (XRCpuImage_tA48C0687D95D3D63D1101E4E08EFCF0ABB2431CE * __this, int32_t ___value0, const RuntimeMethod* method);
// UnityEngine.XR.ARSubsystems.XRCpuImage/Format UnityEngine.XR.ARSubsystems.XRCpuImage::get_format()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t XRCpuImage_get_format_m80FEE2CEC6A37A417D5B86294C1ECA50A49FDEAB_inline (XRCpuImage_tA48C0687D95D3D63D1101E4E08EFCF0ABB2431CE * __this, const RuntimeMethod* method);
// System.Void UnityEngine.XR.ARSubsystems.XRCpuImage::set_format(UnityEngine.XR.ARSubsystems.XRCpuImage/Format)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XRCpuImage_set_format_m02654636810F940049F1A57FEA7987F71FA47DF6_inline (XRCpuImage_tA48C0687D95D3D63D1101E4E08EFCF0ABB2431CE * __this, int32_t ___value0, const RuntimeMethod* method);
// System.Void UnityEngine.XR.ARSubsystems.XRCpuImage::set_timestamp(System.Double)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XRCpuImage_set_timestamp_m6FAE47FB68497C3757580D1FD94D0A4B7C2C783E_inline (XRCpuImage_tA48C0687D95D3D63D1101E4E08EFCF0ABB2431CE * __this, double ___value0, const RuntimeMethod* method);
// System.Int32 UnityEngine.XR.ARSubsystems.XRCpuImage/Cinfo::get_nativeHandle()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t Cinfo_get_nativeHandle_mAB50E5453B3ED928372EC45DF5E0F4E2ADF341BC_inline (Cinfo_t4E32E30AF6973611F1DD0F47FC041ED3A8775DA6 * __this, const RuntimeMethod* method);
// UnityEngine.Vector2Int UnityEngine.XR.ARSubsystems.XRCpuImage/Cinfo::get_dimensions()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9 Cinfo_get_dimensions_mA8AFF01543915A325187A41369F6DA11231A3E50_inline (Cinfo_t4E32E30AF6973611F1DD0F47FC041ED3A8775DA6 * __this, const RuntimeMethod* method);
// System.Int32 UnityEngine.XR.ARSubsystems.XRCpuImage/Cinfo::get_planeCount()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t Cinfo_get_planeCount_m88E3C67F9E06017A46B7FF90368B24A6F48E1271_inline (Cinfo_t4E32E30AF6973611F1DD0F47FC041ED3A8775DA6 * __this, const RuntimeMethod* method);
// System.Double UnityEngine.XR.ARSubsystems.XRCpuImage/Cinfo::get_timestamp()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR double Cinfo_get_timestamp_mAF782E097B2324BD673D8D98C68CA2D6CA4891EF_inline (Cinfo_t4E32E30AF6973611F1DD0F47FC041ED3A8775DA6 * __this, const RuntimeMethod* method);
// UnityEngine.XR.ARSubsystems.XRCpuImage/Format UnityEngine.XR.ARSubsystems.XRCpuImage/Cinfo::get_format()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t Cinfo_get_format_m42CBF60A496CB04541CC04C97E1745AFBC7259BD_inline (Cinfo_t4E32E30AF6973611F1DD0F47FC041ED3A8775DA6 * __this, const RuntimeMethod* method);
// System.Runtime.InteropServices.GCHandle System.Runtime.InteropServices.GCHandle::FromIntPtr(System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR GCHandle_t757890BC4BBBEDE5A623A3C110013EDD24613603 GCHandle_FromIntPtr_m033776D73699CAC85FAE41FD5A52895EFB9E3AB8 (intptr_t ___value0, const RuntimeMethod* method);
// System.Object System.Runtime.InteropServices.GCHandle::get_Target()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * GCHandle_get_Target_m6C296AD6520ECDAFC9498E9387677F522871F883 (GCHandle_t757890BC4BBBEDE5A623A3C110013EDD24613603 * __this, const RuntimeMethod* method);
// System.Void* System.IntPtr::op_Explicit(System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void* IntPtr_op_Explicit_mE8B472FDC632CBD121F7ADF4F94546D6610BACDD (intptr_t ___value0, const RuntimeMethod* method);
// Unity.Collections.NativeArray`1<!!0> Unity.Collections.LowLevel.Unsafe.NativeArrayUnsafeUtility::ConvertExistingDataToNativeArray<System.Byte>(System.Void*,System.Int32,Unity.Collections.Allocator)
inline NativeArray_1_t3C2855C5B238E8C6739D4C17833F244B95C0F785 NativeArrayUnsafeUtility_ConvertExistingDataToNativeArray_TisByte_t0111FAB8B8685667EDDAF77683F0D8F86B659056_m38F468CD9930A95B57C900167F1D8E8BBFE58F8C (void* ___dataPointer0, int32_t ___length1, int32_t ___allocator2, const RuntimeMethod* method)
{
return (( NativeArray_1_t3C2855C5B238E8C6739D4C17833F244B95C0F785 (*) (void*, int32_t, int32_t, const RuntimeMethod*))NativeArrayUnsafeUtility_ConvertExistingDataToNativeArray_TisByte_t0111FAB8B8685667EDDAF77683F0D8F86B659056_m38F468CD9930A95B57C900167F1D8E8BBFE58F8C_gshared)(___dataPointer0, ___length1, ___allocator2, method);
}
// System.Void System.Action`3<UnityEngine.XR.ARSubsystems.XRCpuImage/AsyncConversionStatus,UnityEngine.XR.ARSubsystems.XRCpuImage/ConversionParams,Unity.Collections.NativeArray`1<System.Byte>>::Invoke(!0,!1,!2)
inline void Action_3_Invoke_mB0B175A1C7991B2471342D41B290D071E2B33901 (Action_3_t491A69D5891B04C314FECFC351B618D160286E6E * __this, int32_t ___arg10, ConversionParams_t3DDB9752BA823641A302D0783C14048D9B09B74A ___arg21, NativeArray_1_t3C2855C5B238E8C6739D4C17833F244B95C0F785 ___arg32, const RuntimeMethod* method)
{
(( void (*) (Action_3_t491A69D5891B04C314FECFC351B618D160286E6E *, int32_t, ConversionParams_t3DDB9752BA823641A302D0783C14048D9B09B74A , NativeArray_1_t3C2855C5B238E8C6739D4C17833F244B95C0F785 , const RuntimeMethod*))Action_3_Invoke_mA41DB8B227D9369224A864925E983298985196F8_gshared)(__this, ___arg10, ___arg21, ___arg32, method);
}
// System.Void System.Runtime.InteropServices.GCHandle::Free()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GCHandle_Free_mB4E9415544FC9F0075C02AB17E270E49AF006025 (GCHandle_t757890BC4BBBEDE5A623A3C110013EDD24613603 * __this, const RuntimeMethod* method);
// System.Void UnityEngine.XR.ARSubsystems.XRCpuImage::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRCpuImage_Dispose_m462B3360E99D206E1151C7B8ED30420BF4A91B7A (XRCpuImage_tA48C0687D95D3D63D1101E4E08EFCF0ABB2431CE * __this, const RuntimeMethod* method);
// System.Int32 UnityEngine.XR.ARSubsystems.XRCpuImage::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XRCpuImage_GetHashCode_m5A2490A4F9DD6A4BE95B6E43C2E4DFA67057DD29 (XRCpuImage_tA48C0687D95D3D63D1101E4E08EFCF0ABB2431CE * __this, const RuntimeMethod* method);
// System.Boolean UnityEngine.XR.ARSubsystems.XRCpuImage::Equals(UnityEngine.XR.ARSubsystems.XRCpuImage)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XRCpuImage_Equals_mE183B37EE7FA276B21EC0CE087BEFCDE540C8D24 (XRCpuImage_tA48C0687D95D3D63D1101E4E08EFCF0ABB2431CE * __this, XRCpuImage_tA48C0687D95D3D63D1101E4E08EFCF0ABB2431CE ___other0, const RuntimeMethod* method);
// System.Boolean UnityEngine.XR.ARSubsystems.XRCpuImage::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XRCpuImage_Equals_m6ADCC3C2CDB259DD1D6BB1648CBA3722AD129441 (XRCpuImage_tA48C0687D95D3D63D1101E4E08EFCF0ABB2431CE * __this, RuntimeObject * ___obj0, const RuntimeMethod* method);
// System.String UnityEngine.XR.ARSubsystems.XRCpuImage::ToString()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XRCpuImage_ToString_mE31499DDD8365EC75336BFF9C7393BCA2C1B2E5A (XRCpuImage_tA48C0687D95D3D63D1101E4E08EFCF0ABB2431CE * __this, const RuntimeMethod* method);
// System.Void UnityEngine.XR.ARSubsystems.XRCpuImage/Api/OnImageRequestCompleteDelegate::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OnImageRequestCompleteDelegate__ctor_mB4E3DC02E880D5890B499CFD8BC47B4C47CCD2BC (OnImageRequestCompleteDelegate_t118FB01E93241BFD5BCA5BEF2A6FD082ACAAB4DD * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method);
// !2 UnityEngine.SubsystemsImplementation.SubsystemWithProvider`3<UnityEngine.XR.ARSubsystems.XRDepthSubsystem,UnityEngine.XR.ARSubsystems.XRDepthSubsystemDescriptor,UnityEngine.XR.ARSubsystems.XRDepthSubsystem/Provider>::get_provider()
inline Provider_t8E88C17A70269CD3E96909AFCCA952AAA7DEC0B6 * SubsystemWithProvider_3_get_provider_mD94067B1AF85FAFB63F37DD477718C6280E8EE0D_inline (SubsystemWithProvider_3_tD436D6BE4AA164ED727D09EFDE50FF8DCAA50D98 * __this, const RuntimeMethod* method)
{
return (( Provider_t8E88C17A70269CD3E96909AFCCA952AAA7DEC0B6 * (*) (SubsystemWithProvider_3_tD436D6BE4AA164ED727D09EFDE50FF8DCAA50D98 *, const RuntimeMethod*))SubsystemWithProvider_3_get_provider_m6D630D758837E2C1BBCC328AAF4512ADFA1F48F3_gshared_inline)(__this, method);
}
// UnityEngine.XR.ARSubsystems.XRPointCloud UnityEngine.XR.ARSubsystems.XRPointCloud::get_defaultValue()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR XRPointCloud_t08B41A05528E45CE709F8C14CA6C484D360A62F2 XRPointCloud_get_defaultValue_m484986BE6FCCFD493B66A7BC4895B0AC49F043E2_inline (const RuntimeMethod* method);
// System.Void UnityEngine.XR.ARSubsystems.TrackingSubsystem`4<UnityEngine.XR.ARSubsystems.XRPointCloud,UnityEngine.XR.ARSubsystems.XRDepthSubsystem,UnityEngine.XR.ARSubsystems.XRDepthSubsystemDescriptor,UnityEngine.XR.ARSubsystems.XRDepthSubsystem/Provider>::.ctor()
inline void TrackingSubsystem_4__ctor_m2360E7F58254317B2E9650982362DF0A70BAB5E4 (TrackingSubsystem_4_t52B43FDBB6E641E351193D790222EA1C68B2984E * __this, const RuntimeMethod* method)
{
(( void (*) (TrackingSubsystem_4_t52B43FDBB6E641E351193D790222EA1C68B2984E *, const RuntimeMethod*))TrackingSubsystem_4__ctor_mC95093BD2646F8DAEE7E7D9D836D9149439CB30A_gshared)(__this, method);
}
// System.Void UnityEngine.SubsystemsImplementation.SubsystemDescriptorWithProvider`2<UnityEngine.XR.ARSubsystems.XRDepthSubsystem,UnityEngine.XR.ARSubsystems.XRDepthSubsystem/Provider>::.ctor()
inline void SubsystemDescriptorWithProvider_2__ctor_m4C7EAD774890F6A7B6A2871F0217E0D8B5EBD60F (SubsystemDescriptorWithProvider_2_t977F6FA0CAD110C500F658A35F19E5D5301AD0BC * __this, const RuntimeMethod* method)
{
(( void (*) (SubsystemDescriptorWithProvider_2_t977F6FA0CAD110C500F658A35F19E5D5301AD0BC *, const RuntimeMethod*))SubsystemDescriptorWithProvider_2__ctor_mF969744E314332AC762279256CF288A3769ABC93_gshared)(__this, method);
}
// System.Type UnityEngine.XR.ARSubsystems.XRDepthSubsystemDescriptor/Cinfo::get_providerType()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Type_t * Cinfo_get_providerType_m7168F2BEAB1E7D53C4A1308A0BE686CB6ACAC37D_inline (Cinfo_t37F91E88FCD8623834BE1898FC146620538C08B1 * __this, const RuntimeMethod* method);
// System.Type UnityEngine.XR.ARSubsystems.XRDepthSubsystemDescriptor/Cinfo::get_subsystemTypeOverride()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Type_t * Cinfo_get_subsystemTypeOverride_mA17A612B4FB9125843E254DB825177C3B1834235_inline (Cinfo_t37F91E88FCD8623834BE1898FC146620538C08B1 * __this, const RuntimeMethod* method);
// System.Boolean UnityEngine.XR.ARSubsystems.XRDepthSubsystemDescriptor/Cinfo::get_supportsFeaturePoints()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Cinfo_get_supportsFeaturePoints_mAE8F24562D2A19594A5AB98BDA0FC1C35730B5BA (Cinfo_t37F91E88FCD8623834BE1898FC146620538C08B1 * __this, const RuntimeMethod* method);
// System.Void UnityEngine.XR.ARSubsystems.XRDepthSubsystemDescriptor::set_supportsFeaturePoints(System.Boolean)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XRDepthSubsystemDescriptor_set_supportsFeaturePoints_mA0C105DA50CA07BC488A7E1BDDB3CD72225BE00C_inline (XRDepthSubsystemDescriptor_t745DBB7D313FB52F756E0B7AA993FBBC26B412C2 * __this, bool ___value0, const RuntimeMethod* method);
// System.Boolean UnityEngine.XR.ARSubsystems.XRDepthSubsystemDescriptor/Cinfo::get_supportsUniqueIds()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Cinfo_get_supportsUniqueIds_m6A1B72F6B917B3B001388027A7324A84146E5B7F (Cinfo_t37F91E88FCD8623834BE1898FC146620538C08B1 * __this, const RuntimeMethod* method);
// System.Void UnityEngine.XR.ARSubsystems.XRDepthSubsystemDescriptor::set_supportsUniqueIds(System.Boolean)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XRDepthSubsystemDescriptor_set_supportsUniqueIds_m0BBF2BAA5E4E1A704B29F62FE895F5A29A5D93CD_inline (XRDepthSubsystemDescriptor_t745DBB7D313FB52F756E0B7AA993FBBC26B412C2 * __this, bool ___value0, const RuntimeMethod* method);
// System.Boolean UnityEngine.XR.ARSubsystems.XRDepthSubsystemDescriptor/Cinfo::get_supportsConfidence()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Cinfo_get_supportsConfidence_m483E36BDB283478D5E1F6F6F3C96A279EB6DE01A (Cinfo_t37F91E88FCD8623834BE1898FC146620538C08B1 * __this, const RuntimeMethod* method);
// System.Void UnityEngine.XR.ARSubsystems.XRDepthSubsystemDescriptor::set_supportsConfidence(System.Boolean)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XRDepthSubsystemDescriptor_set_supportsConfidence_m877945BE2EB06E5FB0699BEDA781CDC7E88DBC9A_inline (XRDepthSubsystemDescriptor_t745DBB7D313FB52F756E0B7AA993FBBC26B412C2 * __this, bool ___value0, const RuntimeMethod* method);
// System.Void UnityEngine.XR.ARSubsystems.XRDepthSubsystemDescriptor::.ctor(UnityEngine.XR.ARSubsystems.XRDepthSubsystemDescriptor/Cinfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRDepthSubsystemDescriptor__ctor_m8107883A37944FA3C8451BA4F8CF88B902BB56DD (XRDepthSubsystemDescriptor_t745DBB7D313FB52F756E0B7AA993FBBC26B412C2 * __this, Cinfo_t37F91E88FCD8623834BE1898FC146620538C08B1 ___descriptorParams0, const RuntimeMethod* method);
// UnityEngine.XR.ARSubsystems.TrackableId UnityEngine.XR.ARSubsystems.XREnvironmentProbe::get_trackableId()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B XREnvironmentProbe_get_trackableId_m3C275681C5223EDD967B1F37E2A0FAFF03A80066_inline (XREnvironmentProbe_t4D75B5DF95135D1BA45222CBE3E7677E823B8D4C * __this, const RuntimeMethod* method);
// System.Void UnityEngine.XR.ARSubsystems.XREnvironmentProbe::set_trackableId(UnityEngine.XR.ARSubsystems.TrackableId)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XREnvironmentProbe_set_trackableId_m2FAAA910E6D06256C1ECCCCF8C6D3E72A056199D_inline (XREnvironmentProbe_t4D75B5DF95135D1BA45222CBE3E7677E823B8D4C * __this, TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B ___value0, const RuntimeMethod* method);
// UnityEngine.Vector3 UnityEngine.XR.ARSubsystems.XREnvironmentProbe::get_scale()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E XREnvironmentProbe_get_scale_m73AF4CF41515A2EDAD35FFBA598D23207F9D2BD3_inline (XREnvironmentProbe_t4D75B5DF95135D1BA45222CBE3E7677E823B8D4C * __this, const RuntimeMethod* method);
// UnityEngine.Pose UnityEngine.XR.ARSubsystems.XREnvironmentProbe::get_pose()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A XREnvironmentProbe_get_pose_m03ABF5D0F413C9892349CF3891D5214147DD4C09_inline (XREnvironmentProbe_t4D75B5DF95135D1BA45222CBE3E7677E823B8D4C * __this, const RuntimeMethod* method);
// System.Void UnityEngine.XR.ARSubsystems.XREnvironmentProbe::set_pose(UnityEngine.Pose)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XREnvironmentProbe_set_pose_mAC84C3A2D8788D587F0503EA1CE051294A8A87E9_inline (XREnvironmentProbe_t4D75B5DF95135D1BA45222CBE3E7677E823B8D4C * __this, Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A ___value0, const RuntimeMethod* method);
// UnityEngine.Vector3 UnityEngine.XR.ARSubsystems.XREnvironmentProbe::get_size()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E XREnvironmentProbe_get_size_mC31926635D53201B3C0E7E76B3ADBE2883374135_inline (XREnvironmentProbe_t4D75B5DF95135D1BA45222CBE3E7677E823B8D4C * __this, const RuntimeMethod* method);
// UnityEngine.XR.ARSubsystems.XRTextureDescriptor UnityEngine.XR.ARSubsystems.XREnvironmentProbe::get_textureDescriptor()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR XRTextureDescriptor_t9CA857DCCC1208B74376787BE4F3008A01B29A57 XREnvironmentProbe_get_textureDescriptor_mDA5B2F0E63647BBC038FB4E476F609625109FA13_inline (XREnvironmentProbe_t4D75B5DF95135D1BA45222CBE3E7677E823B8D4C * __this, const RuntimeMethod* method);
// UnityEngine.XR.ARSubsystems.TrackingState UnityEngine.XR.ARSubsystems.XREnvironmentProbe::get_trackingState()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t XREnvironmentProbe_get_trackingState_m47E2E959CA905F4498489EEFF1C1DCEC4958582C_inline (XREnvironmentProbe_t4D75B5DF95135D1BA45222CBE3E7677E823B8D4C * __this, const RuntimeMethod* method);
// System.IntPtr UnityEngine.XR.ARSubsystems.XREnvironmentProbe::get_nativePtr()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR intptr_t XREnvironmentProbe_get_nativePtr_m00FA5612D1CB3AB7F8F11B1ECBD7AA139FEE60F4_inline (XREnvironmentProbe_t4D75B5DF95135D1BA45222CBE3E7677E823B8D4C * __this, const RuntimeMethod* method);
// System.Boolean UnityEngine.XR.ARSubsystems.XREnvironmentProbe::Equals(UnityEngine.XR.ARSubsystems.XREnvironmentProbe)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XREnvironmentProbe_Equals_mAB858DCB46B0A972BE91B46AE6BA4C2AB6B8479B (XREnvironmentProbe_t4D75B5DF95135D1BA45222CBE3E7677E823B8D4C * __this, XREnvironmentProbe_t4D75B5DF95135D1BA45222CBE3E7677E823B8D4C ___other0, const RuntimeMethod* method);
// System.Boolean UnityEngine.XR.ARSubsystems.XREnvironmentProbe::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XREnvironmentProbe_Equals_m940DA5EE99C70171A86520CA30C33C0E778A15E7 (XREnvironmentProbe_t4D75B5DF95135D1BA45222CBE3E7677E823B8D4C * __this, RuntimeObject * ___obj0, const RuntimeMethod* method);
// System.Int32 UnityEngine.XR.ARSubsystems.XREnvironmentProbe::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XREnvironmentProbe_GetHashCode_mE6E401BB29C7F44E680E6561A8AB7CD92B3F2472 (XREnvironmentProbe_t4D75B5DF95135D1BA45222CBE3E7677E823B8D4C * __this, const RuntimeMethod* method);
// System.String UnityEngine.XR.ARSubsystems.XREnvironmentProbe::ToString(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XREnvironmentProbe_ToString_m68F8E47BA9E4040BF7352D68F61FB17177000009 (XREnvironmentProbe_t4D75B5DF95135D1BA45222CBE3E7677E823B8D4C * __this, String_t* ___floatingPointformat0, const RuntimeMethod* method);
// System.String UnityEngine.XR.ARSubsystems.XREnvironmentProbe::ToString()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XREnvironmentProbe_ToString_mBF2604257F8CA6CE56C5D389E8D08339725B8B93 (XREnvironmentProbe_t4D75B5DF95135D1BA45222CBE3E7677E823B8D4C * __this, const RuntimeMethod* method);
// System.String UnityEngine.Pose::ToString(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Pose_ToString_mF545EBBC9D7E041E8FC673068C8DB7E29B696C82 (Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A * __this, String_t* ___format0, const RuntimeMethod* method);
// System.String UnityEngine.XR.ARSubsystems.XRTextureDescriptor::ToString()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XRTextureDescriptor_ToString_m13E8A051346374949A95D217BBAAD298893A25EB (XRTextureDescriptor_t9CA857DCCC1208B74376787BE4F3008A01B29A57 * __this, const RuntimeMethod* method);
// System.Void UnityEngine.XR.ARSubsystems.TrackingSubsystem`4<UnityEngine.XR.ARSubsystems.XREnvironmentProbe,UnityEngine.XR.ARSubsystems.XREnvironmentProbeSubsystem,UnityEngine.XR.ARSubsystems.XREnvironmentProbeSubsystemDescriptor,UnityEngine.XR.ARSubsystems.XREnvironmentProbeSubsystem/Provider>::.ctor()
inline void TrackingSubsystem_4__ctor_m16365F5B18A26301BCC266DB0611B79E1F7BF45A (TrackingSubsystem_4_t3D5C3B3749ABE82CC258AD552288C51FAE67DA1A * __this, const RuntimeMethod* method)
{
(( void (*) (TrackingSubsystem_4_t3D5C3B3749ABE82CC258AD552288C51FAE67DA1A *, const RuntimeMethod*))TrackingSubsystem_4__ctor_m975B52EF0629E5F911DF3B2540956C2ECAC19F1C_gshared)(__this, method);
}
// !2 UnityEngine.SubsystemsImplementation.SubsystemWithProvider`3<UnityEngine.XR.ARSubsystems.XREnvironmentProbeSubsystem,UnityEngine.XR.ARSubsystems.XREnvironmentProbeSubsystemDescriptor,UnityEngine.XR.ARSubsystems.XREnvironmentProbeSubsystem/Provider>::get_provider()
inline Provider_tAF87FE3E906FDBF14F06488A1AA5E80400EFE190 * SubsystemWithProvider_3_get_provider_mAEFFAE8CA85C4D0C45621AD2B23F88B767CDECD4_inline (SubsystemWithProvider_3_t8B33A21A2B183DB3F429FD3F0A899D7ED1BB4DEA * __this, const RuntimeMethod* method)
{
return (( Provider_tAF87FE3E906FDBF14F06488A1AA5E80400EFE190 * (*) (SubsystemWithProvider_3_t8B33A21A2B183DB3F429FD3F0A899D7ED1BB4DEA *, const RuntimeMethod*))SubsystemWithProvider_3_get_provider_m6D630D758837E2C1BBCC328AAF4512ADFA1F48F3_gshared_inline)(__this, method);
}
// !1 UnityEngine.SubsystemsImplementation.SubsystemWithProvider`3<UnityEngine.XR.ARSubsystems.XREnvironmentProbeSubsystem,UnityEngine.XR.ARSubsystems.XREnvironmentProbeSubsystemDescriptor,UnityEngine.XR.ARSubsystems.XREnvironmentProbeSubsystem/Provider>::get_subsystemDescriptor()
inline XREnvironmentProbeSubsystemDescriptor_t7C10519F545418330347AC7434FBB10F39DD4243 * SubsystemWithProvider_3_get_subsystemDescriptor_m72A7F9F61ACAEE6E71276F89F0D9521BB07CF29F_inline (SubsystemWithProvider_3_t8B33A21A2B183DB3F429FD3F0A899D7ED1BB4DEA * __this, const RuntimeMethod* method)
{
return (( XREnvironmentProbeSubsystemDescriptor_t7C10519F545418330347AC7434FBB10F39DD4243 * (*) (SubsystemWithProvider_3_t8B33A21A2B183DB3F429FD3F0A899D7ED1BB4DEA *, const RuntimeMethod*))SubsystemWithProvider_3_get_subsystemDescriptor_m7FBB308E48CF5F204D7EB25F2E4BE1FC4F940998_gshared_inline)(__this, method);
}
// System.Boolean UnityEngine.XR.ARSubsystems.XREnvironmentProbeSubsystemDescriptor::get_supportsAutomaticPlacement()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool XREnvironmentProbeSubsystemDescriptor_get_supportsAutomaticPlacement_m12205A40FBD5214E81576F99E35D9996F0E20509_inline (XREnvironmentProbeSubsystemDescriptor_t7C10519F545418330347AC7434FBB10F39DD4243 * __this, const RuntimeMethod* method);
// UnityEngine.XR.ARSubsystems.XREnvironmentProbe UnityEngine.XR.ARSubsystems.XREnvironmentProbe::get_defaultValue()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR XREnvironmentProbe_t4D75B5DF95135D1BA45222CBE3E7677E823B8D4C XREnvironmentProbe_get_defaultValue_m150C4FBAC331EF916AABC17F68BDC6243D5B5EB8_inline (const RuntimeMethod* method);
// UnityEngine.XR.ARSubsystems.XREnvironmentProbeSubsystemDescriptor UnityEngine.XR.ARSubsystems.XREnvironmentProbeSubsystemDescriptor::Create(UnityEngine.XR.ARSubsystems.XREnvironmentProbeSubsystemCinfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XREnvironmentProbeSubsystemDescriptor_t7C10519F545418330347AC7434FBB10F39DD4243 * XREnvironmentProbeSubsystemDescriptor_Create_m64B177418E0330A718E4461D29A11FE8518BB09E (XREnvironmentProbeSubsystemCinfo_t6D9368EC95B6B356A67B7289270F27BB6A4440B2 ___environmentProbeSubsystemCinfo0, const RuntimeMethod* method);
// System.String UnityEngine.XR.ARSubsystems.XREnvironmentProbeSubsystemCinfo::get_id()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* XREnvironmentProbeSubsystemCinfo_get_id_mBEA40C4012D8253E65C525083E3454C93BC6F3BE_inline (XREnvironmentProbeSubsystemCinfo_t6D9368EC95B6B356A67B7289270F27BB6A4440B2 * __this, const RuntimeMethod* method);
// System.Void UnityEngine.XR.ARSubsystems.XREnvironmentProbeSubsystemCinfo::set_id(System.String)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XREnvironmentProbeSubsystemCinfo_set_id_m5C48BD3E879410D5C622BE7DC74D5C798E151731_inline (XREnvironmentProbeSubsystemCinfo_t6D9368EC95B6B356A67B7289270F27BB6A4440B2 * __this, String_t* ___value0, const RuntimeMethod* method);
// System.Type UnityEngine.XR.ARSubsystems.XREnvironmentProbeSubsystemCinfo::get_providerType()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Type_t * XREnvironmentProbeSubsystemCinfo_get_providerType_m3A3572178EED86B4F98254B4FAB73016B4459AA1_inline (XREnvironmentProbeSubsystemCinfo_t6D9368EC95B6B356A67B7289270F27BB6A4440B2 * __this, const RuntimeMethod* method);
// System.Void UnityEngine.XR.ARSubsystems.XREnvironmentProbeSubsystemCinfo::set_providerType(System.Type)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XREnvironmentProbeSubsystemCinfo_set_providerType_m70C42D1F210DE19AB5E7D82F2D0BDB467E94FC2F_inline (XREnvironmentProbeSubsystemCinfo_t6D9368EC95B6B356A67B7289270F27BB6A4440B2 * __this, Type_t * ___value0, const RuntimeMethod* method);
// System.Type UnityEngine.XR.ARSubsystems.XREnvironmentProbeSubsystemCinfo::get_subsystemTypeOverride()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Type_t * XREnvironmentProbeSubsystemCinfo_get_subsystemTypeOverride_m258F6355EE3F5ED52ADF4A79777AD092AD9B2F22_inline (XREnvironmentProbeSubsystemCinfo_t6D9368EC95B6B356A67B7289270F27BB6A4440B2 * __this, const RuntimeMethod* method);
// System.Void UnityEngine.XR.ARSubsystems.XREnvironmentProbeSubsystemCinfo::set_subsystemTypeOverride(System.Type)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XREnvironmentProbeSubsystemCinfo_set_subsystemTypeOverride_mB35BB7FC1C0C42E0A7773365C147F539E7AC27EE_inline (XREnvironmentProbeSubsystemCinfo_t6D9368EC95B6B356A67B7289270F27BB6A4440B2 * __this, Type_t * ___value0, const RuntimeMethod* method);
// System.Boolean UnityEngine.XR.ARSubsystems.XREnvironmentProbeSubsystemCinfo::get_supportsManualPlacement()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool XREnvironmentProbeSubsystemCinfo_get_supportsManualPlacement_m194C593950367B1C7EFB50D6F00E5705597065BF_inline (XREnvironmentProbeSubsystemCinfo_t6D9368EC95B6B356A67B7289270F27BB6A4440B2 * __this, const RuntimeMethod* method);
// System.Void UnityEngine.XR.ARSubsystems.XREnvironmentProbeSubsystemCinfo::set_supportsManualPlacement(System.Boolean)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XREnvironmentProbeSubsystemCinfo_set_supportsManualPlacement_m2D1156DE760E47CBDDC345AD5CAE5D23AC23E524_inline (XREnvironmentProbeSubsystemCinfo_t6D9368EC95B6B356A67B7289270F27BB6A4440B2 * __this, bool ___value0, const RuntimeMethod* method);
// System.Boolean UnityEngine.XR.ARSubsystems.XREnvironmentProbeSubsystemCinfo::get_supportsRemovalOfManual()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool XREnvironmentProbeSubsystemCinfo_get_supportsRemovalOfManual_m7B2DFDB097FAD2FC7FE6AE7F7A8172FA7B34D406_inline (XREnvironmentProbeSubsystemCinfo_t6D9368EC95B6B356A67B7289270F27BB6A4440B2 * __this, const RuntimeMethod* method);
// System.Void UnityEngine.XR.ARSubsystems.XREnvironmentProbeSubsystemCinfo::set_supportsRemovalOfManual(System.Boolean)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XREnvironmentProbeSubsystemCinfo_set_supportsRemovalOfManual_m01CE117FEA37EE9BEF79903754E396C35B859419_inline (XREnvironmentProbeSubsystemCinfo_t6D9368EC95B6B356A67B7289270F27BB6A4440B2 * __this, bool ___value0, const RuntimeMethod* method);
// System.Boolean UnityEngine.XR.ARSubsystems.XREnvironmentProbeSubsystemCinfo::get_supportsAutomaticPlacement()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool XREnvironmentProbeSubsystemCinfo_get_supportsAutomaticPlacement_m2EAA567973D53F9FFCF91AAD4233F91957281B11_inline (XREnvironmentProbeSubsystemCinfo_t6D9368EC95B6B356A67B7289270F27BB6A4440B2 * __this, const RuntimeMethod* method);
// System.Void UnityEngine.XR.ARSubsystems.XREnvironmentProbeSubsystemCinfo::set_supportsAutomaticPlacement(System.Boolean)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XREnvironmentProbeSubsystemCinfo_set_supportsAutomaticPlacement_mC4DBFBBD4DBB44D6B1154C4759A3175F9AC33D46_inline (XREnvironmentProbeSubsystemCinfo_t6D9368EC95B6B356A67B7289270F27BB6A4440B2 * __this, bool ___value0, const RuntimeMethod* method);
// System.Boolean UnityEngine.XR.ARSubsystems.XREnvironmentProbeSubsystemCinfo::get_supportsRemovalOfAutomatic()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool XREnvironmentProbeSubsystemCinfo_get_supportsRemovalOfAutomatic_mFC9AA46EA023D8A0968ED80B1F88F10AA50F549F_inline (XREnvironmentProbeSubsystemCinfo_t6D9368EC95B6B356A67B7289270F27BB6A4440B2 * __this, const RuntimeMethod* method);
// System.Void UnityEngine.XR.ARSubsystems.XREnvironmentProbeSubsystemCinfo::set_supportsRemovalOfAutomatic(System.Boolean)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XREnvironmentProbeSubsystemCinfo_set_supportsRemovalOfAutomatic_m6FCC1E3ACDC01E4447E385A1B89C96DEE16B7EF2_inline (XREnvironmentProbeSubsystemCinfo_t6D9368EC95B6B356A67B7289270F27BB6A4440B2 * __this, bool ___value0, const RuntimeMethod* method);
// System.Boolean UnityEngine.XR.ARSubsystems.XREnvironmentProbeSubsystemCinfo::get_supportsEnvironmentTexture()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool XREnvironmentProbeSubsystemCinfo_get_supportsEnvironmentTexture_m3593704263A383A9EC79E765CCC01632707E4A48_inline (XREnvironmentProbeSubsystemCinfo_t6D9368EC95B6B356A67B7289270F27BB6A4440B2 * __this, const RuntimeMethod* method);
// System.Void UnityEngine.XR.ARSubsystems.XREnvironmentProbeSubsystemCinfo::set_supportsEnvironmentTexture(System.Boolean)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XREnvironmentProbeSubsystemCinfo_set_supportsEnvironmentTexture_mE30B73C6AC37C6DF8F5B7DBDBC90A975A498D3E4_inline (XREnvironmentProbeSubsystemCinfo_t6D9368EC95B6B356A67B7289270F27BB6A4440B2 * __this, bool ___value0, const RuntimeMethod* method);
// System.Boolean UnityEngine.XR.ARSubsystems.XREnvironmentProbeSubsystemCinfo::get_supportsEnvironmentTextureHDR()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool XREnvironmentProbeSubsystemCinfo_get_supportsEnvironmentTextureHDR_mDD0F30AB731A6010F6F96DBA660415B55FCD580A_inline (XREnvironmentProbeSubsystemCinfo_t6D9368EC95B6B356A67B7289270F27BB6A4440B2 * __this, const RuntimeMethod* method);
// System.Void UnityEngine.XR.ARSubsystems.XREnvironmentProbeSubsystemCinfo::set_supportsEnvironmentTextureHDR(System.Boolean)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XREnvironmentProbeSubsystemCinfo_set_supportsEnvironmentTextureHDR_mA465A23A4DC052895F8F634892B7C8E3A49F4777_inline (XREnvironmentProbeSubsystemCinfo_t6D9368EC95B6B356A67B7289270F27BB6A4440B2 * __this, bool ___value0, const RuntimeMethod* method);
// System.Boolean UnityEngine.XR.ARSubsystems.XREnvironmentProbeSubsystemCinfo::Equals(UnityEngine.XR.ARSubsystems.XREnvironmentProbeSubsystemCinfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XREnvironmentProbeSubsystemCinfo_Equals_mECAF625FF6A6D6CB7652827D34BCF4228243102C (XREnvironmentProbeSubsystemCinfo_t6D9368EC95B6B356A67B7289270F27BB6A4440B2 * __this, XREnvironmentProbeSubsystemCinfo_t6D9368EC95B6B356A67B7289270F27BB6A4440B2 ___other0, const RuntimeMethod* method);
// System.Boolean UnityEngine.XR.ARSubsystems.XREnvironmentProbeSubsystemCinfo::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XREnvironmentProbeSubsystemCinfo_Equals_mE09A9486010D3E88E94AE06CF3BF499D3A2FC6EF (XREnvironmentProbeSubsystemCinfo_t6D9368EC95B6B356A67B7289270F27BB6A4440B2 * __this, RuntimeObject * ___obj0, const RuntimeMethod* method);
// System.Int32 UnityEngine.XR.ARSubsystems.XREnvironmentProbeSubsystemCinfo::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XREnvironmentProbeSubsystemCinfo_GetHashCode_mADDFE56D58883EC3832D901FF566989CB00B5D02 (XREnvironmentProbeSubsystemCinfo_t6D9368EC95B6B356A67B7289270F27BB6A4440B2 * __this, const RuntimeMethod* method);
// System.Void UnityEngine.SubsystemsImplementation.SubsystemDescriptorWithProvider`2<UnityEngine.XR.ARSubsystems.XREnvironmentProbeSubsystem,UnityEngine.XR.ARSubsystems.XREnvironmentProbeSubsystem/Provider>::.ctor()
inline void SubsystemDescriptorWithProvider_2__ctor_m72B3AFD426F854BF8E1C6E7B57A5108001019FCF (SubsystemDescriptorWithProvider_2_t66BB4225DD47C0B6DF8312AEF1CDB8DB4CB729D9 * __this, const RuntimeMethod* method)
{
(( void (*) (SubsystemDescriptorWithProvider_2_t66BB4225DD47C0B6DF8312AEF1CDB8DB4CB729D9 *, const RuntimeMethod*))SubsystemDescriptorWithProvider_2__ctor_mF969744E314332AC762279256CF288A3769ABC93_gshared)(__this, method);
}
// System.Void UnityEngine.XR.ARSubsystems.XREnvironmentProbeSubsystemDescriptor::set_supportsManualPlacement(System.Boolean)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XREnvironmentProbeSubsystemDescriptor_set_supportsManualPlacement_mCE20C35437C72E053599F9F900EFE7D5A1B0ECF3_inline (XREnvironmentProbeSubsystemDescriptor_t7C10519F545418330347AC7434FBB10F39DD4243 * __this, bool ___value0, const RuntimeMethod* method);
// System.Void UnityEngine.XR.ARSubsystems.XREnvironmentProbeSubsystemDescriptor::set_supportsRemovalOfManual(System.Boolean)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XREnvironmentProbeSubsystemDescriptor_set_supportsRemovalOfManual_m148569DAD1997E9EFC75977FD58B2E2A0E6A3A29_inline (XREnvironmentProbeSubsystemDescriptor_t7C10519F545418330347AC7434FBB10F39DD4243 * __this, bool ___value0, const RuntimeMethod* method);
// System.Void UnityEngine.XR.ARSubsystems.XREnvironmentProbeSubsystemDescriptor::set_supportsAutomaticPlacement(System.Boolean)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XREnvironmentProbeSubsystemDescriptor_set_supportsAutomaticPlacement_mE62CB20894AB742E406F1762C9B8C2CE1DA1B359_inline (XREnvironmentProbeSubsystemDescriptor_t7C10519F545418330347AC7434FBB10F39DD4243 * __this, bool ___value0, const RuntimeMethod* method);
// System.Void UnityEngine.XR.ARSubsystems.XREnvironmentProbeSubsystemDescriptor::set_supportsRemovalOfAutomatic(System.Boolean)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XREnvironmentProbeSubsystemDescriptor_set_supportsRemovalOfAutomatic_m3210C35AC07979BAFDFA3EA0F6A3677285D6E282_inline (XREnvironmentProbeSubsystemDescriptor_t7C10519F545418330347AC7434FBB10F39DD4243 * __this, bool ___value0, const RuntimeMethod* method);
// System.Void UnityEngine.XR.ARSubsystems.XREnvironmentProbeSubsystemDescriptor::set_supportsEnvironmentTexture(System.Boolean)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XREnvironmentProbeSubsystemDescriptor_set_supportsEnvironmentTexture_m67C606821F3D139A11628F487EFE764A2A562CC4_inline (XREnvironmentProbeSubsystemDescriptor_t7C10519F545418330347AC7434FBB10F39DD4243 * __this, bool ___value0, const RuntimeMethod* method);
// System.Void UnityEngine.XR.ARSubsystems.XREnvironmentProbeSubsystemDescriptor::set_supportsEnvironmentTextureHDR(System.Boolean)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XREnvironmentProbeSubsystemDescriptor_set_supportsEnvironmentTextureHDR_m813F1381535676A236CE05D522515683E6CA795A_inline (XREnvironmentProbeSubsystemDescriptor_t7C10519F545418330347AC7434FBB10F39DD4243 * __this, bool ___value0, const RuntimeMethod* method);
// System.Void UnityEngine.XR.ARSubsystems.XREnvironmentProbeSubsystemDescriptor::.ctor(UnityEngine.XR.ARSubsystems.XREnvironmentProbeSubsystemCinfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XREnvironmentProbeSubsystemDescriptor__ctor_m759C9A99C0F48E2422698CABD21C05A9F9E2ACB6 (XREnvironmentProbeSubsystemDescriptor_t7C10519F545418330347AC7434FBB10F39DD4243 * __this, XREnvironmentProbeSubsystemCinfo_t6D9368EC95B6B356A67B7289270F27BB6A4440B2 ___environmentProbeSubsystemCinfo0, const RuntimeMethod* method);
// UnityEngine.XR.ARSubsystems.TrackableId UnityEngine.XR.ARSubsystems.XRFace::get_trackableId()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B XRFace_get_trackableId_m997871151FF642B1908F7E352C952A44AB4DD17C_inline (XRFace_tA970995ECE26D43D1CBB9058ABEC72B76D2DA599 * __this, const RuntimeMethod* method);
// UnityEngine.Pose UnityEngine.XR.ARSubsystems.XRFace::get_pose()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A XRFace_get_pose_m482AC4907DC02C0B5D67B84320DA7F9D12A43A75_inline (XRFace_tA970995ECE26D43D1CBB9058ABEC72B76D2DA599 * __this, const RuntimeMethod* method);
// UnityEngine.XR.ARSubsystems.TrackingState UnityEngine.XR.ARSubsystems.XRFace::get_trackingState()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t XRFace_get_trackingState_m8953B01AB6213402157B69083B318D3F2CDCF26A_inline (XRFace_tA970995ECE26D43D1CBB9058ABEC72B76D2DA599 * __this, const RuntimeMethod* method);
// System.IntPtr UnityEngine.XR.ARSubsystems.XRFace::get_nativePtr()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR intptr_t XRFace_get_nativePtr_mCE6C767CB9DBBCDE7B289D8EBDE1DFC86707BC95_inline (XRFace_tA970995ECE26D43D1CBB9058ABEC72B76D2DA599 * __this, const RuntimeMethod* method);
// UnityEngine.Pose UnityEngine.XR.ARSubsystems.XRFace::get_leftEyePose()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A XRFace_get_leftEyePose_mEAF86B00D307A5D96D671A85EA1BBF88D82586BF_inline (XRFace_tA970995ECE26D43D1CBB9058ABEC72B76D2DA599 * __this, const RuntimeMethod* method);
// UnityEngine.Pose UnityEngine.XR.ARSubsystems.XRFace::get_rightEyePose()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A XRFace_get_rightEyePose_m3FA7FDE9C2D9841FB7496B691FCAB1F35475F2B1_inline (XRFace_tA970995ECE26D43D1CBB9058ABEC72B76D2DA599 * __this, const RuntimeMethod* method);
// UnityEngine.Vector3 UnityEngine.XR.ARSubsystems.XRFace::get_fixationPoint()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E XRFace_get_fixationPoint_mAEA40B8C8F2C0D0A3B777ACFDE327017C9DF294D_inline (XRFace_tA970995ECE26D43D1CBB9058ABEC72B76D2DA599 * __this, const RuntimeMethod* method);
// System.Boolean UnityEngine.XR.ARSubsystems.XRFace::Equals(UnityEngine.XR.ARSubsystems.XRFace)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XRFace_Equals_mF05C24C98D5E1ED344943307E03FE4776CCB4217 (XRFace_tA970995ECE26D43D1CBB9058ABEC72B76D2DA599 * __this, XRFace_tA970995ECE26D43D1CBB9058ABEC72B76D2DA599 ___other0, const RuntimeMethod* method);
// System.Boolean UnityEngine.XR.ARSubsystems.XRFace::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XRFace_Equals_mC8676C7F35F0FF582368E8114BDB981C83C82A88 (XRFace_tA970995ECE26D43D1CBB9058ABEC72B76D2DA599 * __this, RuntimeObject * ___obj0, const RuntimeMethod* method);
// System.Int32 UnityEngine.XR.ARSubsystems.XRFace::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XRFace_GetHashCode_mDFFE26F3662B1DF33124A0393FA9FDE444167CEC (XRFace_tA970995ECE26D43D1CBB9058ABEC72B76D2DA599 * __this, const RuntimeMethod* method);
// System.Void UnityEngine.XR.ARSubsystems.XRFaceMesh::Resize<UnityEngine.Vector3>(System.Int32,Unity.Collections.Allocator,Unity.Collections.NativeArray`1<T>&,System.Boolean)
inline void XRFaceMesh_Resize_TisVector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E_mAA24CEC7C20C34C26A9E7512608B8930B450C6C0 (int32_t ___length0, int32_t ___allocator1, NativeArray_1_t2577BCA09CA248EFB78BD7FDA7F09D5C395DFF52 * ___array2, bool ___shouldExist3, const RuntimeMethod* method)
{
(( void (*) (int32_t, int32_t, NativeArray_1_t2577BCA09CA248EFB78BD7FDA7F09D5C395DFF52 *, bool, const RuntimeMethod*))XRFaceMesh_Resize_TisVector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E_mAA24CEC7C20C34C26A9E7512608B8930B450C6C0_gshared)(___length0, ___allocator1, ___array2, ___shouldExist3, method);
}
// System.Void UnityEngine.XR.ARSubsystems.XRFaceMesh::Resize<UnityEngine.Vector2>(System.Int32,Unity.Collections.Allocator,Unity.Collections.NativeArray`1<T>&,System.Boolean)
inline void XRFaceMesh_Resize_TisVector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9_mAD9D1AB3912BD722DBA92C5AE79C177DD69AAFFE (int32_t ___length0, int32_t ___allocator1, NativeArray_1_t431C85F30275831D1F5D458AB73DFCE050693BC0 * ___array2, bool ___shouldExist3, const RuntimeMethod* method)
{
(( void (*) (int32_t, int32_t, NativeArray_1_t431C85F30275831D1F5D458AB73DFCE050693BC0 *, bool, const RuntimeMethod*))XRFaceMesh_Resize_TisVector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9_mAD9D1AB3912BD722DBA92C5AE79C177DD69AAFFE_gshared)(___length0, ___allocator1, ___array2, ___shouldExist3, method);
}
// System.Void UnityEngine.XR.ARSubsystems.XRFaceMesh::Resize<System.Int32>(System.Int32,Unity.Collections.Allocator,Unity.Collections.NativeArray`1<T>&,System.Boolean)
inline void XRFaceMesh_Resize_TisInt32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_m786BA056A8C6FDF2F6D3B52D2526981B3BA391F0 (int32_t ___length0, int32_t ___allocator1, NativeArray_1_tD60079F06B473C85CF6C2BB4F2D203F38191AE99 * ___array2, bool ___shouldExist3, const RuntimeMethod* method)
{
(( void (*) (int32_t, int32_t, NativeArray_1_tD60079F06B473C85CF6C2BB4F2D203F38191AE99 *, bool, const RuntimeMethod*))XRFaceMesh_Resize_TisInt32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_m786BA056A8C6FDF2F6D3B52D2526981B3BA391F0_gshared)(___length0, ___allocator1, ___array2, ___shouldExist3, method);
}
// System.Void UnityEngine.XR.ARSubsystems.XRFaceMesh::Resize(System.Int32,System.Int32,UnityEngine.XR.ARSubsystems.XRFaceMesh/Attributes,Unity.Collections.Allocator)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRFaceMesh_Resize_m15BF7254A68B9910F518990A33CF037F310ED1E6 (XRFaceMesh_t2ADC7E6069DCCCFB439A4A60DB9189338C9E1AD0 * __this, int32_t ___vertexCount0, int32_t ___triangleCount1, int32_t ___attributes2, int32_t ___allocator3, const RuntimeMethod* method);
// Unity.Collections.NativeArray`1<UnityEngine.Vector3> UnityEngine.XR.ARSubsystems.XRFaceMesh::get_vertices()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR NativeArray_1_t2577BCA09CA248EFB78BD7FDA7F09D5C395DFF52 XRFaceMesh_get_vertices_m19DE0A4E73ED17C8B6427BE86071E10DB65740DD_inline (XRFaceMesh_t2ADC7E6069DCCCFB439A4A60DB9189338C9E1AD0 * __this, const RuntimeMethod* method);
// Unity.Collections.NativeArray`1<UnityEngine.Vector3> UnityEngine.XR.ARSubsystems.XRFaceMesh::get_normals()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR NativeArray_1_t2577BCA09CA248EFB78BD7FDA7F09D5C395DFF52 XRFaceMesh_get_normals_m82DE916E7AE8A9BF4768D289E01CD0C65E1001ED_inline (XRFaceMesh_t2ADC7E6069DCCCFB439A4A60DB9189338C9E1AD0 * __this, const RuntimeMethod* method);
// Unity.Collections.NativeArray`1<System.Int32> UnityEngine.XR.ARSubsystems.XRFaceMesh::get_indices()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR NativeArray_1_tD60079F06B473C85CF6C2BB4F2D203F38191AE99 XRFaceMesh_get_indices_m93B77F79BB4C67AF1AFFAD29ED8D8F48AF4616FE_inline (XRFaceMesh_t2ADC7E6069DCCCFB439A4A60DB9189338C9E1AD0 * __this, const RuntimeMethod* method);
// Unity.Collections.NativeArray`1<UnityEngine.Vector2> UnityEngine.XR.ARSubsystems.XRFaceMesh::get_uvs()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR NativeArray_1_t431C85F30275831D1F5D458AB73DFCE050693BC0 XRFaceMesh_get_uvs_m89943E9CD34232EF09B81F13EF259C33F1183B49_inline (XRFaceMesh_t2ADC7E6069DCCCFB439A4A60DB9189338C9E1AD0 * __this, const RuntimeMethod* method);
// System.Boolean Unity.Collections.NativeArray`1<UnityEngine.Vector3>::get_IsCreated()
inline bool NativeArray_1_get_IsCreated_mCD60B11F9FB036F65310E83275A1632E57AAC29C (NativeArray_1_t2577BCA09CA248EFB78BD7FDA7F09D5C395DFF52 * __this, const RuntimeMethod* method)
{
return (( bool (*) (NativeArray_1_t2577BCA09CA248EFB78BD7FDA7F09D5C395DFF52 *, const RuntimeMethod*))NativeArray_1_get_IsCreated_mCD60B11F9FB036F65310E83275A1632E57AAC29C_gshared)(__this, method);
}
// System.Void Unity.Collections.NativeArray`1<UnityEngine.Vector3>::Dispose()
inline void NativeArray_1_Dispose_m867A382096AF527E2B854ADC9ED75ED6BF95D76B (NativeArray_1_t2577BCA09CA248EFB78BD7FDA7F09D5C395DFF52 * __this, const RuntimeMethod* method)
{
(( void (*) (NativeArray_1_t2577BCA09CA248EFB78BD7FDA7F09D5C395DFF52 *, const RuntimeMethod*))NativeArray_1_Dispose_m867A382096AF527E2B854ADC9ED75ED6BF95D76B_gshared)(__this, method);
}
// System.Boolean Unity.Collections.NativeArray`1<System.Int32>::get_IsCreated()
inline bool NativeArray_1_get_IsCreated_m0B7EB9CC11FCECCC0480F589775E99828F222AE5 (NativeArray_1_tD60079F06B473C85CF6C2BB4F2D203F38191AE99 * __this, const RuntimeMethod* method)
{
return (( bool (*) (NativeArray_1_tD60079F06B473C85CF6C2BB4F2D203F38191AE99 *, const RuntimeMethod*))NativeArray_1_get_IsCreated_m0B7EB9CC11FCECCC0480F589775E99828F222AE5_gshared)(__this, method);
}
// System.Void Unity.Collections.NativeArray`1<System.Int32>::Dispose()
inline void NativeArray_1_Dispose_m69DBDA47FE3991A47E9CFCBFB3292676D22D7655 (NativeArray_1_tD60079F06B473C85CF6C2BB4F2D203F38191AE99 * __this, const RuntimeMethod* method)
{
(( void (*) (NativeArray_1_tD60079F06B473C85CF6C2BB4F2D203F38191AE99 *, const RuntimeMethod*))NativeArray_1_Dispose_m69DBDA47FE3991A47E9CFCBFB3292676D22D7655_gshared)(__this, method);
}
// System.Boolean Unity.Collections.NativeArray`1<UnityEngine.Vector2>::get_IsCreated()
inline bool NativeArray_1_get_IsCreated_mF82CF064C6050394DEAC11047A6308998101A4AE (NativeArray_1_t431C85F30275831D1F5D458AB73DFCE050693BC0 * __this, const RuntimeMethod* method)
{
return (( bool (*) (NativeArray_1_t431C85F30275831D1F5D458AB73DFCE050693BC0 *, const RuntimeMethod*))NativeArray_1_get_IsCreated_mF82CF064C6050394DEAC11047A6308998101A4AE_gshared)(__this, method);
}
// System.Void Unity.Collections.NativeArray`1<UnityEngine.Vector2>::Dispose()
inline void NativeArray_1_Dispose_mE737DADB8C5E4B02C2FB6CB36E86AC6371D806BF (NativeArray_1_t431C85F30275831D1F5D458AB73DFCE050693BC0 * __this, const RuntimeMethod* method)
{
(( void (*) (NativeArray_1_t431C85F30275831D1F5D458AB73DFCE050693BC0 *, const RuntimeMethod*))NativeArray_1_Dispose_mE737DADB8C5E4B02C2FB6CB36E86AC6371D806BF_gshared)(__this, method);
}
// System.Void UnityEngine.XR.ARSubsystems.XRFaceMesh::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRFaceMesh_Dispose_m84478F08EEB3D131E0E7785CF4195D424B94543E (XRFaceMesh_t2ADC7E6069DCCCFB439A4A60DB9189338C9E1AD0 * __this, const RuntimeMethod* method);
// System.Int32 Unity.Collections.NativeArray`1<UnityEngine.Vector3>::GetHashCode()
inline int32_t NativeArray_1_GetHashCode_mE3A484ADA1047A341C388F0261DBA091C2F4F9B9 (NativeArray_1_t2577BCA09CA248EFB78BD7FDA7F09D5C395DFF52 * __this, const RuntimeMethod* method)
{
return (( int32_t (*) (NativeArray_1_t2577BCA09CA248EFB78BD7FDA7F09D5C395DFF52 *, const RuntimeMethod*))NativeArray_1_GetHashCode_mE3A484ADA1047A341C388F0261DBA091C2F4F9B9_gshared)(__this, method);
}
// System.Int32 Unity.Collections.NativeArray`1<System.Int32>::GetHashCode()
inline int32_t NativeArray_1_GetHashCode_m1C0484565632411F701F00B79715B0F483A58383 (NativeArray_1_tD60079F06B473C85CF6C2BB4F2D203F38191AE99 * __this, const RuntimeMethod* method)
{
return (( int32_t (*) (NativeArray_1_tD60079F06B473C85CF6C2BB4F2D203F38191AE99 *, const RuntimeMethod*))NativeArray_1_GetHashCode_m1C0484565632411F701F00B79715B0F483A58383_gshared)(__this, method);
}
// System.Int32 Unity.Collections.NativeArray`1<UnityEngine.Vector2>::GetHashCode()
inline int32_t NativeArray_1_GetHashCode_mC922CA29222CB7251722A89B2C5B48CFD82A8C5A (NativeArray_1_t431C85F30275831D1F5D458AB73DFCE050693BC0 * __this, const RuntimeMethod* method)
{
return (( int32_t (*) (NativeArray_1_t431C85F30275831D1F5D458AB73DFCE050693BC0 *, const RuntimeMethod*))NativeArray_1_GetHashCode_mC922CA29222CB7251722A89B2C5B48CFD82A8C5A_gshared)(__this, method);
}
// System.Int32 UnityEngine.XR.ARSubsystems.XRFaceMesh::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XRFaceMesh_GetHashCode_mC53C827B010796E1A20690766F1A2A1F70DB614D (XRFaceMesh_t2ADC7E6069DCCCFB439A4A60DB9189338C9E1AD0 * __this, const RuntimeMethod* method);
// System.Boolean UnityEngine.XR.ARSubsystems.XRFaceMesh::Equals(UnityEngine.XR.ARSubsystems.XRFaceMesh)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XRFaceMesh_Equals_m2BB9E69AD22C8521466B981BA077007536189F0C (XRFaceMesh_t2ADC7E6069DCCCFB439A4A60DB9189338C9E1AD0 * __this, XRFaceMesh_t2ADC7E6069DCCCFB439A4A60DB9189338C9E1AD0 ___other0, const RuntimeMethod* method);
// System.Boolean UnityEngine.XR.ARSubsystems.XRFaceMesh::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XRFaceMesh_Equals_mCAC3BFCE776A814088BA4D5361CB771BCC4BE87A (XRFaceMesh_t2ADC7E6069DCCCFB439A4A60DB9189338C9E1AD0 * __this, RuntimeObject * ___obj0, const RuntimeMethod* method);
// System.String UnityEngine.XR.ARSubsystems.XRFaceMesh::ToString()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XRFaceMesh_ToString_m1997FC173A5BB7E5EFC51893E3BDD26D34F27897 (XRFaceMesh_t2ADC7E6069DCCCFB439A4A60DB9189338C9E1AD0 * __this, const RuntimeMethod* method);
// System.Boolean Unity.Collections.NativeArray`1<UnityEngine.Vector3>::Equals(Unity.Collections.NativeArray`1<!0>)
inline bool NativeArray_1_Equals_m0A873528008D16BDD7E45156AEBC2DF063CB3995 (NativeArray_1_t2577BCA09CA248EFB78BD7FDA7F09D5C395DFF52 * __this, NativeArray_1_t2577BCA09CA248EFB78BD7FDA7F09D5C395DFF52 ___other0, const RuntimeMethod* method)
{
return (( bool (*) (NativeArray_1_t2577BCA09CA248EFB78BD7FDA7F09D5C395DFF52 *, NativeArray_1_t2577BCA09CA248EFB78BD7FDA7F09D5C395DFF52 , const RuntimeMethod*))NativeArray_1_Equals_m0A873528008D16BDD7E45156AEBC2DF063CB3995_gshared)(__this, ___other0, method);
}
// System.Boolean Unity.Collections.NativeArray`1<System.Int32>::Equals(Unity.Collections.NativeArray`1<!0>)
inline bool NativeArray_1_Equals_m4A9EECE699C4FF2E1E1C4F81D6C26DAA3B756A23 (NativeArray_1_tD60079F06B473C85CF6C2BB4F2D203F38191AE99 * __this, NativeArray_1_tD60079F06B473C85CF6C2BB4F2D203F38191AE99 ___other0, const RuntimeMethod* method)
{
return (( bool (*) (NativeArray_1_tD60079F06B473C85CF6C2BB4F2D203F38191AE99 *, NativeArray_1_tD60079F06B473C85CF6C2BB4F2D203F38191AE99 , const RuntimeMethod*))NativeArray_1_Equals_m4A9EECE699C4FF2E1E1C4F81D6C26DAA3B756A23_gshared)(__this, ___other0, method);
}
// System.Boolean Unity.Collections.NativeArray`1<UnityEngine.Vector2>::Equals(Unity.Collections.NativeArray`1<!0>)
inline bool NativeArray_1_Equals_mA564B751B7D08620960FFA67C404F57AEDDDBC79 (NativeArray_1_t431C85F30275831D1F5D458AB73DFCE050693BC0 * __this, NativeArray_1_t431C85F30275831D1F5D458AB73DFCE050693BC0 ___other0, const RuntimeMethod* method)
{
return (( bool (*) (NativeArray_1_t431C85F30275831D1F5D458AB73DFCE050693BC0 *, NativeArray_1_t431C85F30275831D1F5D458AB73DFCE050693BC0 , const RuntimeMethod*))NativeArray_1_Equals_mA564B751B7D08620960FFA67C404F57AEDDDBC79_gshared)(__this, ___other0, method);
}
// System.Void UnityEngine.XR.ARSubsystems.TrackingSubsystem`4<UnityEngine.XR.ARSubsystems.XRFace,UnityEngine.XR.ARSubsystems.XRFaceSubsystem,UnityEngine.XR.ARSubsystems.XRFaceSubsystemDescriptor,UnityEngine.XR.ARSubsystems.XRFaceSubsystem/Provider>::.ctor()
inline void TrackingSubsystem_4__ctor_m28377E8388C9ACB84F4C762BAC6B2E3014F928B3 (TrackingSubsystem_4_tFC4495C6B04D616F71158509026269F004F79333 * __this, const RuntimeMethod* method)
{
(( void (*) (TrackingSubsystem_4_tFC4495C6B04D616F71158509026269F004F79333 *, const RuntimeMethod*))TrackingSubsystem_4__ctor_m88ED6F3499AFB910896A8FCC211F32BC4ACDB87D_gshared)(__this, method);
}
// !2 UnityEngine.SubsystemsImplementation.SubsystemWithProvider`3<UnityEngine.XR.ARSubsystems.XRFaceSubsystem,UnityEngine.XR.ARSubsystems.XRFaceSubsystemDescriptor,UnityEngine.XR.ARSubsystems.XRFaceSubsystem/Provider>::get_provider()
inline Provider_t0133E0DB4F1A68EB3D4814F63B14456832E3EAE7 * SubsystemWithProvider_3_get_provider_mE2E5F5FDEFCDECF51B39FB65EC6483A69504793C_inline (SubsystemWithProvider_3_t2E74C29CB9922972A66085C9DAD6E1542BCCE25B * __this, const RuntimeMethod* method)
{
return (( Provider_t0133E0DB4F1A68EB3D4814F63B14456832E3EAE7 * (*) (SubsystemWithProvider_3_t2E74C29CB9922972A66085C9DAD6E1542BCCE25B *, const RuntimeMethod*))SubsystemWithProvider_3_get_provider_m6D630D758837E2C1BBCC328AAF4512ADFA1F48F3_gshared_inline)(__this, method);
}
// System.Void System.ArgumentOutOfRangeException::.ctor(System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentOutOfRangeException__ctor_mE43AFC74F5F3932913C023A04B24905E093C5005 (ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 * __this, String_t* ___paramName0, String_t* ___message1, const RuntimeMethod* method);
// UnityEngine.XR.ARSubsystems.XRFace UnityEngine.XR.ARSubsystems.XRFace::get_defaultValue()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR XRFace_tA970995ECE26D43D1CBB9058ABEC72B76D2DA599 XRFace_get_defaultValue_m747D549873462D18EA28AA56D1A0870F6DE4F2D4_inline (const RuntimeMethod* method);
// System.Void UnityEngine.SubsystemsImplementation.SubsystemDescriptorWithProvider`2<UnityEngine.XR.ARSubsystems.XRFaceSubsystem,UnityEngine.XR.ARSubsystems.XRFaceSubsystem/Provider>::.ctor()
inline void SubsystemDescriptorWithProvider_2__ctor_m2EC9A500A904A603347A1D66CB451F04DA0AA3A2 (SubsystemDescriptorWithProvider_2_tB12E064D6020E2F12266EBEB553796258028452B * __this, const RuntimeMethod* method)
{
(( void (*) (SubsystemDescriptorWithProvider_2_tB12E064D6020E2F12266EBEB553796258028452B *, const RuntimeMethod*))SubsystemDescriptorWithProvider_2__ctor_mF969744E314332AC762279256CF288A3769ABC93_gshared)(__this, method);
}
// System.Void UnityEngine.XR.ARSubsystems.XRFaceSubsystemDescriptor::.ctor(UnityEngine.XR.ARSubsystems.FaceSubsystemParams)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRFaceSubsystemDescriptor__ctor_m1B6850C5017E4E5709D0D0A44B4605429C21DB5A (XRFaceSubsystemDescriptor_t129999D2BF40B1016A8C70A0FDE9763C21DCD618 * __this, FaceSubsystemParams_t2FC64133455298391F1A1DDC61B151E688301B09 ___descriptorParams0, const RuntimeMethod* method);
// UnityEngine.XR.ARSubsystems.TrackableId UnityEngine.XR.ARSubsystems.XRHumanBody::get_trackableId()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B XRHumanBody_get_trackableId_m1132E7F157E2F1649C9849D0CCCFCCAE12659035_inline (XRHumanBody_t1AA9DC3BEBCF86A64BE2B83452AC5704AD08C13B * __this, const RuntimeMethod* method);
// System.Void UnityEngine.XR.ARSubsystems.XRHumanBody::set_trackableId(UnityEngine.XR.ARSubsystems.TrackableId)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XRHumanBody_set_trackableId_mD3C8385C017B211CB843FBE09F865FCFF6736AD5_inline (XRHumanBody_t1AA9DC3BEBCF86A64BE2B83452AC5704AD08C13B * __this, TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B ___value0, const RuntimeMethod* method);
// UnityEngine.Pose UnityEngine.XR.ARSubsystems.XRHumanBody::get_pose()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A XRHumanBody_get_pose_m5F377842C281F643E6205DF173FAD26A71FD85CB_inline (XRHumanBody_t1AA9DC3BEBCF86A64BE2B83452AC5704AD08C13B * __this, const RuntimeMethod* method);
// System.Void UnityEngine.XR.ARSubsystems.XRHumanBody::set_pose(UnityEngine.Pose)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XRHumanBody_set_pose_m041B85CE78A0EEF68E9D04C79D5E896481521F13_inline (XRHumanBody_t1AA9DC3BEBCF86A64BE2B83452AC5704AD08C13B * __this, Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A ___value0, const RuntimeMethod* method);
// System.Single UnityEngine.XR.ARSubsystems.XRHumanBody::get_estimatedHeightScaleFactor()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float XRHumanBody_get_estimatedHeightScaleFactor_mCCF772B1264F243207D413D87F9DEB51BAA66625_inline (XRHumanBody_t1AA9DC3BEBCF86A64BE2B83452AC5704AD08C13B * __this, const RuntimeMethod* method);
// System.Void UnityEngine.XR.ARSubsystems.XRHumanBody::set_estimatedHeightScaleFactor(System.Single)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XRHumanBody_set_estimatedHeightScaleFactor_m08C6119D250F4EC14458EF86245F41DE6480928B_inline (XRHumanBody_t1AA9DC3BEBCF86A64BE2B83452AC5704AD08C13B * __this, float ___value0, const RuntimeMethod* method);
// UnityEngine.XR.ARSubsystems.TrackingState UnityEngine.XR.ARSubsystems.XRHumanBody::get_trackingState()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t XRHumanBody_get_trackingState_m1F6F709DD208442C6E3B253BF1E6F5448B0D7913_inline (XRHumanBody_t1AA9DC3BEBCF86A64BE2B83452AC5704AD08C13B * __this, const RuntimeMethod* method);
// System.Boolean UnityEngine.XR.ARSubsystems.XRHumanBody::Equals(UnityEngine.XR.ARSubsystems.XRHumanBody)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XRHumanBody_Equals_mF1FC1064B3CE595A1D798D2BC6A0A4441E06FEA0 (XRHumanBody_t1AA9DC3BEBCF86A64BE2B83452AC5704AD08C13B * __this, XRHumanBody_t1AA9DC3BEBCF86A64BE2B83452AC5704AD08C13B ___other0, const RuntimeMethod* method);
// System.Boolean UnityEngine.XR.ARSubsystems.XRHumanBody::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XRHumanBody_Equals_mEF4C0F409A971526C9B7E8098F41FCF1B53B7F41 (XRHumanBody_t1AA9DC3BEBCF86A64BE2B83452AC5704AD08C13B * __this, RuntimeObject * ___obj0, const RuntimeMethod* method);
// System.Int32 UnityEngine.XR.ARSubsystems.XRHumanBody::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XRHumanBody_GetHashCode_m6FBB44640B5771F3C0F07996B0391578ADA3ED29 (XRHumanBody_t1AA9DC3BEBCF86A64BE2B83452AC5704AD08C13B * __this, const RuntimeMethod* method);
// System.Boolean UnityEngine.XR.ARSubsystems.XRHumanBodyJoint::get_tracked()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XRHumanBodyJoint_get_tracked_mFE794D3F10CC9FE8B3BBA7EA3DAA2EAD43265030 (XRHumanBodyJoint_t80D5022A816E4F24C92A9EABD645794FC0B5E2E4 * __this, const RuntimeMethod* method);
// System.Boolean System.Int32::Equals(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Int32_Equals_mA73E9B3A01B9B9151C262C1E1A56C6AB4891A5E4 (int32_t* __this, int32_t ___obj0, const RuntimeMethod* method);
// System.Boolean UnityEngine.XR.ARSubsystems.XRHumanBodyJoint::Equals(UnityEngine.XR.ARSubsystems.XRHumanBodyJoint)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XRHumanBodyJoint_Equals_mF61C132B282799A4A8591EEDFD1C93A5ACB5D690 (XRHumanBodyJoint_t80D5022A816E4F24C92A9EABD645794FC0B5E2E4 * __this, XRHumanBodyJoint_t80D5022A816E4F24C92A9EABD645794FC0B5E2E4 ___other0, const RuntimeMethod* method);
// System.Boolean UnityEngine.XR.ARSubsystems.XRHumanBodyJoint::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XRHumanBodyJoint_Equals_m4FC5F349868C29B492300324ECEA4327199724B5 (XRHumanBodyJoint_t80D5022A816E4F24C92A9EABD645794FC0B5E2E4 * __this, RuntimeObject * ___obj0, const RuntimeMethod* method);
// System.Int32 UnityEngine.XR.ARSubsystems.XRHumanBodyJoint::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XRHumanBodyJoint_GetHashCode_mB2B4313B997EB976CF9A0621A8B0B41988F41FEC (XRHumanBodyJoint_t80D5022A816E4F24C92A9EABD645794FC0B5E2E4 * __this, const RuntimeMethod* method);
// System.String UnityEngine.XR.ARSubsystems.XRHumanBodyJoint::ToString(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XRHumanBodyJoint_ToString_m9615CDC8865E5F53A0C1EFC11ED448D8E10517BA (XRHumanBodyJoint_t80D5022A816E4F24C92A9EABD645794FC0B5E2E4 * __this, String_t* ___format0, const RuntimeMethod* method);
// System.String UnityEngine.XR.ARSubsystems.XRHumanBodyJoint::ToString()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XRHumanBodyJoint_ToString_m4A5CA8FD181EF51596129156F8B5D1714B23A0B8 (XRHumanBodyJoint_t80D5022A816E4F24C92A9EABD645794FC0B5E2E4 * __this, const RuntimeMethod* method);
// System.String System.Boolean::ToString()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Boolean_ToString_m59BB8456DD05A874BBD756E57EA8AD983287015C (bool* __this, const RuntimeMethod* method);
// System.Boolean UnityEngine.XR.ARSubsystems.XRHumanBodyPose2DJoint::get_tracked()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XRHumanBodyPose2DJoint_get_tracked_m2482827731EF34E90A03BE36B02CD58DC4ED27BA (XRHumanBodyPose2DJoint_t901EEB0FA2A9FF2D258978EC36EE0852FEF35BA4 * __this, const RuntimeMethod* method);
// System.Boolean UnityEngine.XR.ARSubsystems.XRHumanBodyPose2DJoint::Equals(UnityEngine.XR.ARSubsystems.XRHumanBodyPose2DJoint)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XRHumanBodyPose2DJoint_Equals_m13D561FB80FAB3235153ECAA81CDF0A1AB61EBE0 (XRHumanBodyPose2DJoint_t901EEB0FA2A9FF2D258978EC36EE0852FEF35BA4 * __this, XRHumanBodyPose2DJoint_t901EEB0FA2A9FF2D258978EC36EE0852FEF35BA4 ___other0, const RuntimeMethod* method);
// System.Boolean UnityEngine.XR.ARSubsystems.XRHumanBodyPose2DJoint::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XRHumanBodyPose2DJoint_Equals_mFD1372A220FB78E1834F741C3C866AA7068614FA (XRHumanBodyPose2DJoint_t901EEB0FA2A9FF2D258978EC36EE0852FEF35BA4 * __this, RuntimeObject * ___obj0, const RuntimeMethod* method);
// System.Int32 UnityEngine.XR.ARSubsystems.XRHumanBodyPose2DJoint::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XRHumanBodyPose2DJoint_GetHashCode_mA55B9AAABC7536E6C93C93F59F4DB417E95F721A (XRHumanBodyPose2DJoint_t901EEB0FA2A9FF2D258978EC36EE0852FEF35BA4 * __this, const RuntimeMethod* method);
// System.String UnityEngine.XR.ARSubsystems.XRHumanBodyPose2DJoint::ToString(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XRHumanBodyPose2DJoint_ToString_m0AE3FBFE9BF812C8589AE2F567A79D756700256E (XRHumanBodyPose2DJoint_t901EEB0FA2A9FF2D258978EC36EE0852FEF35BA4 * __this, String_t* ___format0, const RuntimeMethod* method);
// System.String UnityEngine.XR.ARSubsystems.XRHumanBodyPose2DJoint::ToString()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XRHumanBodyPose2DJoint_ToString_m0776D12ECE559F6F987CB879DC6578E4B69630F8 (XRHumanBodyPose2DJoint_t901EEB0FA2A9FF2D258978EC36EE0852FEF35BA4 * __this, const RuntimeMethod* method);
// System.String UnityEngine.Vector2::ToString(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Vector2_ToString_mDE7D19340491399AD591D38016AD973C3D3A5218 (Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 * __this, String_t* ___format0, const RuntimeMethod* method);
// !2 UnityEngine.SubsystemsImplementation.SubsystemWithProvider`3<UnityEngine.XR.ARSubsystems.XRHumanBodySubsystem,UnityEngine.XR.ARSubsystems.XRHumanBodySubsystemDescriptor,UnityEngine.XR.ARSubsystems.XRHumanBodySubsystem/Provider>::get_provider()
inline Provider_t055C90C34B2BCE8D134DF44C12823E320519168C * SubsystemWithProvider_3_get_provider_m39A0718D1138A6DA7C4C408956D26C48D2DC8F8E_inline (SubsystemWithProvider_3_t152AEC9946809B23BD9A7DE32A2113E12B8CE2C2 * __this, const RuntimeMethod* method)
{
return (( Provider_t055C90C34B2BCE8D134DF44C12823E320519168C * (*) (SubsystemWithProvider_3_t152AEC9946809B23BD9A7DE32A2113E12B8CE2C2 *, const RuntimeMethod*))SubsystemWithProvider_3_get_provider_m6D630D758837E2C1BBCC328AAF4512ADFA1F48F3_gshared_inline)(__this, method);
}
// System.Void UnityEngine.XR.ARSubsystems.TrackingSubsystem`4<UnityEngine.XR.ARSubsystems.XRHumanBody,UnityEngine.XR.ARSubsystems.XRHumanBodySubsystem,UnityEngine.XR.ARSubsystems.XRHumanBodySubsystemDescriptor,UnityEngine.XR.ARSubsystems.XRHumanBodySubsystem/Provider>::.ctor()
inline void TrackingSubsystem_4__ctor_mEA3C0400FE095A58F53489AFC1F36B907EE04FBA (TrackingSubsystem_4_tB0BB38AE7B56DA9BE6D8463DD64E4766AD686B86 * __this, const RuntimeMethod* method)
{
(( void (*) (TrackingSubsystem_4_tB0BB38AE7B56DA9BE6D8463DD64E4766AD686B86 *, const RuntimeMethod*))TrackingSubsystem_4__ctor_m1D64645D50A5AF5DE737B76E812A9282AE5C75D0_gshared)(__this, method);
}
// UnityEngine.XR.ARSubsystems.XRHumanBody UnityEngine.XR.ARSubsystems.XRHumanBody::get_defaultValue()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR XRHumanBody_t1AA9DC3BEBCF86A64BE2B83452AC5704AD08C13B XRHumanBody_get_defaultValue_m0A3A0C5BAFB5C20A12014597FA6690AE6470ACA4_inline (const RuntimeMethod* method);
// System.Int32 UnityEngine.Screen::get_width()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Screen_get_width_m52188F76E8AAF57BE373018CB14083BB74C43C1C (const RuntimeMethod* method);
// System.Int32 UnityEngine.Screen::get_height()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Screen_get_height_m110C90A573EE67895DC4F59E9165235EA22039EE (const RuntimeMethod* method);
// UnityEngine.ScreenOrientation UnityEngine.Screen::get_orientation()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Screen_get_orientation_m1C42BB2AF3CA157B8015FA7AB36F8BB1329660E7 (const RuntimeMethod* method);
// UnityEngine.XR.ARSubsystems.XRHumanBodySubsystemDescriptor UnityEngine.XR.ARSubsystems.XRHumanBodySubsystemDescriptor::Create(UnityEngine.XR.ARSubsystems.XRHumanBodySubsystemCinfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XRHumanBodySubsystemDescriptor_t00E75DD05B03BCC1BF5A794547615692B7A55C04 * XRHumanBodySubsystemDescriptor_Create_m2B95524971D41DDAC90B9E194A727C814BAB32C6 (XRHumanBodySubsystemCinfo_tAFFD9EF9197B51AA2EAC628F54C90C842B7E54CC ___humanBodySubsystemCinfo0, const RuntimeMethod* method);
// System.String UnityEngine.XR.ARSubsystems.XRHumanBodySubsystemCinfo::get_id()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* XRHumanBodySubsystemCinfo_get_id_m6ECD1B43CC3A0BF83286383CA417ECAFB750CB74_inline (XRHumanBodySubsystemCinfo_tAFFD9EF9197B51AA2EAC628F54C90C842B7E54CC * __this, const RuntimeMethod* method);
// System.Void UnityEngine.XR.ARSubsystems.XRHumanBodySubsystemCinfo::set_id(System.String)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XRHumanBodySubsystemCinfo_set_id_m379B96A2CE563FFD6CAC41112068975C8875B3A7_inline (XRHumanBodySubsystemCinfo_tAFFD9EF9197B51AA2EAC628F54C90C842B7E54CC * __this, String_t* ___value0, const RuntimeMethod* method);
// System.Type UnityEngine.XR.ARSubsystems.XRHumanBodySubsystemCinfo::get_providerType()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Type_t * XRHumanBodySubsystemCinfo_get_providerType_m9FEA7CEFDEEACC1D13C859C31A2325E50A6132DD_inline (XRHumanBodySubsystemCinfo_tAFFD9EF9197B51AA2EAC628F54C90C842B7E54CC * __this, const RuntimeMethod* method);
// System.Void UnityEngine.XR.ARSubsystems.XRHumanBodySubsystemCinfo::set_providerType(System.Type)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XRHumanBodySubsystemCinfo_set_providerType_mA34C98EF6EDDFADFF83C4062C0AF33F3C7BA61A5_inline (XRHumanBodySubsystemCinfo_tAFFD9EF9197B51AA2EAC628F54C90C842B7E54CC * __this, Type_t * ___value0, const RuntimeMethod* method);
// System.Type UnityEngine.XR.ARSubsystems.XRHumanBodySubsystemCinfo::get_subsystemTypeOverride()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Type_t * XRHumanBodySubsystemCinfo_get_subsystemTypeOverride_mB03C7A5BC048D86AAE6334A221E1DF2FEE059754_inline (XRHumanBodySubsystemCinfo_tAFFD9EF9197B51AA2EAC628F54C90C842B7E54CC * __this, const RuntimeMethod* method);
// System.Void UnityEngine.XR.ARSubsystems.XRHumanBodySubsystemCinfo::set_subsystemTypeOverride(System.Type)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XRHumanBodySubsystemCinfo_set_subsystemTypeOverride_m73A633BECC2393CEB62B95FCF9CD7B32BFDB19FF_inline (XRHumanBodySubsystemCinfo_tAFFD9EF9197B51AA2EAC628F54C90C842B7E54CC * __this, Type_t * ___value0, const RuntimeMethod* method);
// System.Boolean UnityEngine.XR.ARSubsystems.XRHumanBodySubsystemCinfo::get_supportsHumanBody2D()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool XRHumanBodySubsystemCinfo_get_supportsHumanBody2D_m26CC2FAAFF325E448010E9DFFDC2CF78C5118E71_inline (XRHumanBodySubsystemCinfo_tAFFD9EF9197B51AA2EAC628F54C90C842B7E54CC * __this, const RuntimeMethod* method);
// System.Void UnityEngine.XR.ARSubsystems.XRHumanBodySubsystemCinfo::set_supportsHumanBody2D(System.Boolean)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XRHumanBodySubsystemCinfo_set_supportsHumanBody2D_m33B2A01C8E5F61DFE604BDCD2D438EC0B3C45551_inline (XRHumanBodySubsystemCinfo_tAFFD9EF9197B51AA2EAC628F54C90C842B7E54CC * __this, bool ___value0, const RuntimeMethod* method);
// System.Boolean UnityEngine.XR.ARSubsystems.XRHumanBodySubsystemCinfo::get_supportsHumanBody3D()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool XRHumanBodySubsystemCinfo_get_supportsHumanBody3D_m43BFDC9F4E92ECDE599A826C24D951AF90D76331_inline (XRHumanBodySubsystemCinfo_tAFFD9EF9197B51AA2EAC628F54C90C842B7E54CC * __this, const RuntimeMethod* method);
// System.Void UnityEngine.XR.ARSubsystems.XRHumanBodySubsystemCinfo::set_supportsHumanBody3D(System.Boolean)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XRHumanBodySubsystemCinfo_set_supportsHumanBody3D_mE30720F10B501314868ABDBE2EDCE11D0A333D24_inline (XRHumanBodySubsystemCinfo_tAFFD9EF9197B51AA2EAC628F54C90C842B7E54CC * __this, bool ___value0, const RuntimeMethod* method);
// System.Boolean UnityEngine.XR.ARSubsystems.XRHumanBodySubsystemCinfo::get_supportsHumanBody3DScaleEstimation()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool XRHumanBodySubsystemCinfo_get_supportsHumanBody3DScaleEstimation_mDC1321982924ADE85F14D4AA959D2B593D378380_inline (XRHumanBodySubsystemCinfo_tAFFD9EF9197B51AA2EAC628F54C90C842B7E54CC * __this, const RuntimeMethod* method);
// System.Void UnityEngine.XR.ARSubsystems.XRHumanBodySubsystemCinfo::set_supportsHumanBody3DScaleEstimation(System.Boolean)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XRHumanBodySubsystemCinfo_set_supportsHumanBody3DScaleEstimation_m72411E882EB28AB5BD33F4D266918FA3DB355782_inline (XRHumanBodySubsystemCinfo_tAFFD9EF9197B51AA2EAC628F54C90C842B7E54CC * __this, bool ___value0, const RuntimeMethod* method);
// System.Boolean UnityEngine.XR.ARSubsystems.XRHumanBodySubsystemCinfo::Equals(UnityEngine.XR.ARSubsystems.XRHumanBodySubsystemCinfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XRHumanBodySubsystemCinfo_Equals_m0109935097AF2BEE70F4AABB3B8701C50D300F2A (XRHumanBodySubsystemCinfo_tAFFD9EF9197B51AA2EAC628F54C90C842B7E54CC * __this, XRHumanBodySubsystemCinfo_tAFFD9EF9197B51AA2EAC628F54C90C842B7E54CC ___other0, const RuntimeMethod* method);
// System.Boolean UnityEngine.XR.ARSubsystems.XRHumanBodySubsystemCinfo::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XRHumanBodySubsystemCinfo_Equals_mC6D157C1801D45FFAA926C64D9C7AFFE6EDAC698 (XRHumanBodySubsystemCinfo_tAFFD9EF9197B51AA2EAC628F54C90C842B7E54CC * __this, RuntimeObject * ___obj0, const RuntimeMethod* method);
// System.Int32 UnityEngine.XR.ARSubsystems.XRHumanBodySubsystemCinfo::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XRHumanBodySubsystemCinfo_GetHashCode_m24E654BBE6D31E8A07F1B139BDEFF49BF4D77BAF (XRHumanBodySubsystemCinfo_tAFFD9EF9197B51AA2EAC628F54C90C842B7E54CC * __this, const RuntimeMethod* method);
// System.Void UnityEngine.SubsystemsImplementation.SubsystemDescriptorWithProvider`2<UnityEngine.XR.ARSubsystems.XRHumanBodySubsystem,UnityEngine.XR.ARSubsystems.XRHumanBodySubsystem/Provider>::.ctor()
inline void SubsystemDescriptorWithProvider_2__ctor_m71AD229762C8901343553A86E6D5763202F24677 (SubsystemDescriptorWithProvider_2_t0BF07E59C6A0B8ACC38BF74CC2BC483D05AE541D * __this, const RuntimeMethod* method)
{
(( void (*) (SubsystemDescriptorWithProvider_2_t0BF07E59C6A0B8ACC38BF74CC2BC483D05AE541D *, const RuntimeMethod*))SubsystemDescriptorWithProvider_2__ctor_mF969744E314332AC762279256CF288A3769ABC93_gshared)(__this, method);
}
// System.Void UnityEngine.XR.ARSubsystems.XRHumanBodySubsystemDescriptor::set_supportsHumanBody2D(System.Boolean)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XRHumanBodySubsystemDescriptor_set_supportsHumanBody2D_m69569A3382D7FB0F2E2FE8DCEA0B0132F2746024_inline (XRHumanBodySubsystemDescriptor_t00E75DD05B03BCC1BF5A794547615692B7A55C04 * __this, bool ___value0, const RuntimeMethod* method);
// System.Void UnityEngine.XR.ARSubsystems.XRHumanBodySubsystemDescriptor::set_supportsHumanBody3D(System.Boolean)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XRHumanBodySubsystemDescriptor_set_supportsHumanBody3D_m379699D5A666066DDDFBEAA9BCC983EB81BC8AC6_inline (XRHumanBodySubsystemDescriptor_t00E75DD05B03BCC1BF5A794547615692B7A55C04 * __this, bool ___value0, const RuntimeMethod* method);
// System.Void UnityEngine.XR.ARSubsystems.XRHumanBodySubsystemDescriptor::set_supportsHumanBody3DScaleEstimation(System.Boolean)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XRHumanBodySubsystemDescriptor_set_supportsHumanBody3DScaleEstimation_m1AA010D35D673EFBB060AEED35E04E6141453E81_inline (XRHumanBodySubsystemDescriptor_t00E75DD05B03BCC1BF5A794547615692B7A55C04 * __this, bool ___value0, const RuntimeMethod* method);
// System.Void UnityEngine.XR.ARSubsystems.XRHumanBodySubsystemDescriptor::.ctor(UnityEngine.XR.ARSubsystems.XRHumanBodySubsystemCinfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRHumanBodySubsystemDescriptor__ctor_m9E59594DCE6AD50BFD4F71DCF1E5C2178EB0F6B6 (XRHumanBodySubsystemDescriptor_t00E75DD05B03BCC1BF5A794547615692B7A55C04 * __this, XRHumanBodySubsystemCinfo_tAFFD9EF9197B51AA2EAC628F54C90C842B7E54CC ___humanBodySubsystemCinfo0, const RuntimeMethod* method);
// System.Void UnityEngine.XR.ARSubsystems.TrackingSubsystem`4<UnityEngine.XR.ARSubsystems.XRTrackedImage,UnityEngine.XR.ARSubsystems.XRImageTrackingSubsystem,UnityEngine.XR.ARSubsystems.XRImageTrackingSubsystemDescriptor,UnityEngine.XR.ARSubsystems.XRImageTrackingSubsystem/Provider>::.ctor()
inline void TrackingSubsystem_4__ctor_m32646D8A91C0431E968D07362F32CCB0B06BA69D (TrackingSubsystem_4_tCE5EA1B7325877FD88C7CF41F681F25B1FC1717A * __this, const RuntimeMethod* method)
{
(( void (*) (TrackingSubsystem_4_tCE5EA1B7325877FD88C7CF41F681F25B1FC1717A *, const RuntimeMethod*))TrackingSubsystem_4__ctor_m6EC254893EEB06ED242EB316FA3C224F9B1EF255_gshared)(__this, method);
}
// !2 UnityEngine.SubsystemsImplementation.SubsystemWithProvider`3<UnityEngine.XR.ARSubsystems.XRImageTrackingSubsystem,UnityEngine.XR.ARSubsystems.XRImageTrackingSubsystemDescriptor,UnityEngine.XR.ARSubsystems.XRImageTrackingSubsystem/Provider>::get_provider()
inline Provider_tA7CEF856C3BC486ADEBD656F5535E24262AAAE9E * SubsystemWithProvider_3_get_provider_m036F742F9A0CA88CBD4955C5D1D790474832541F_inline (SubsystemWithProvider_3_t249D82EF0730E7FF15F2B19C4BB45B2E08CF620B * __this, const RuntimeMethod* method)
{
return (( Provider_tA7CEF856C3BC486ADEBD656F5535E24262AAAE9E * (*) (SubsystemWithProvider_3_t249D82EF0730E7FF15F2B19C4BB45B2E08CF620B *, const RuntimeMethod*))SubsystemWithProvider_3_get_provider_m6D630D758837E2C1BBCC328AAF4512ADFA1F48F3_gshared_inline)(__this, method);
}
// System.Void UnityEngine.SubsystemsImplementation.SubsystemWithProvider`3<UnityEngine.XR.ARSubsystems.XRImageTrackingSubsystem,UnityEngine.XR.ARSubsystems.XRImageTrackingSubsystemDescriptor,UnityEngine.XR.ARSubsystems.XRImageTrackingSubsystem/Provider>::OnStart()
inline void SubsystemWithProvider_3_OnStart_m9491710090F756991A1C20AA8900B7A605EC1DD8 (SubsystemWithProvider_3_t249D82EF0730E7FF15F2B19C4BB45B2E08CF620B * __this, const RuntimeMethod* method)
{
(( void (*) (SubsystemWithProvider_3_t249D82EF0730E7FF15F2B19C4BB45B2E08CF620B *, const RuntimeMethod*))SubsystemWithProvider_3_OnStart_m096AF64E438BB77AB850AB2AF80FD6C8C76688BF_gshared)(__this, method);
}
// System.Void UnityEngine.SubsystemsImplementation.SubsystemWithProvider`3<UnityEngine.XR.ARSubsystems.XRImageTrackingSubsystem,UnityEngine.XR.ARSubsystems.XRImageTrackingSubsystemDescriptor,UnityEngine.XR.ARSubsystems.XRImageTrackingSubsystem/Provider>::OnStop()
inline void SubsystemWithProvider_3_OnStop_mA6831ADA346E703D83E088ED2DCF43B0758B9B43 (SubsystemWithProvider_3_t249D82EF0730E7FF15F2B19C4BB45B2E08CF620B * __this, const RuntimeMethod* method)
{
(( void (*) (SubsystemWithProvider_3_t249D82EF0730E7FF15F2B19C4BB45B2E08CF620B *, const RuntimeMethod*))SubsystemWithProvider_3_OnStop_mEB7A1FF35674710DE4B94A0B1DB33A65DC6DABCD_gshared)(__this, method);
}
// UnityEngine.XR.ARSubsystems.XRTrackedImage UnityEngine.XR.ARSubsystems.XRTrackedImage::get_defaultValue()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR XRTrackedImage_t92B53E0621C6D2E930761110E719F0E9580A722F XRTrackedImage_get_defaultValue_mF1D23DA4557C85FAEB70039F5D14156F1176E84E_inline (const RuntimeMethod* method);
// System.Void UnityEngine.XR.ARSubsystems.XRImageTrackingSubsystemDescriptor::.ctor(UnityEngine.XR.ARSubsystems.XRImageTrackingSubsystemDescriptor/Cinfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRImageTrackingSubsystemDescriptor__ctor_m2A19512EFC73A1237D84A4DFAB41683FB03D6D55 (XRImageTrackingSubsystemDescriptor_t3EC191739B144A8AA00CEEE03E8F7FF01D7F833B * __this, Cinfo_tED92D7CBD16BE657927A6B7DB64A22DA21EB7D32 ___cinfo0, const RuntimeMethod* method);
// System.Void UnityEngine.SubsystemsImplementation.SubsystemDescriptorWithProvider`2<UnityEngine.XR.ARSubsystems.XRImageTrackingSubsystem,UnityEngine.XR.ARSubsystems.XRImageTrackingSubsystem/Provider>::.ctor()
inline void SubsystemDescriptorWithProvider_2__ctor_mABB924981A181423ECB10954AC56B09E9A4D71AA (SubsystemDescriptorWithProvider_2_tDB11EA61A7EEC9B491CE74FAFEDB41D9F00B7B34 * __this, const RuntimeMethod* method)
{
(( void (*) (SubsystemDescriptorWithProvider_2_tDB11EA61A7EEC9B491CE74FAFEDB41D9F00B7B34 *, const RuntimeMethod*))SubsystemDescriptorWithProvider_2__ctor_mF969744E314332AC762279256CF288A3769ABC93_gshared)(__this, method);
}
// System.String UnityEngine.XR.ARSubsystems.XRImageTrackingSubsystemDescriptor/Cinfo::get_id()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* Cinfo_get_id_m7ACB39F94D161A19473B51245A60F0FE3380E9C6_inline (Cinfo_tED92D7CBD16BE657927A6B7DB64A22DA21EB7D32 * __this, const RuntimeMethod* method);
// System.Type UnityEngine.XR.ARSubsystems.XRImageTrackingSubsystemDescriptor/Cinfo::get_providerType()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Type_t * Cinfo_get_providerType_m865B26BBCBE9E542D09269A2CA6BD1FC47976AF2_inline (Cinfo_tED92D7CBD16BE657927A6B7DB64A22DA21EB7D32 * __this, const RuntimeMethod* method);
// System.Type UnityEngine.XR.ARSubsystems.XRImageTrackingSubsystemDescriptor/Cinfo::get_subsystemTypeOverride()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Type_t * Cinfo_get_subsystemTypeOverride_m0008239CE298C4881102FED287EC52224601A3A5_inline (Cinfo_tED92D7CBD16BE657927A6B7DB64A22DA21EB7D32 * __this, const RuntimeMethod* method);
// System.Boolean UnityEngine.XR.ARSubsystems.XRImageTrackingSubsystemDescriptor/Cinfo::get_supportsMovingImages()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Cinfo_get_supportsMovingImages_m7B1E2171F1304A73339266B64548CF305EFEEA91_inline (Cinfo_tED92D7CBD16BE657927A6B7DB64A22DA21EB7D32 * __this, const RuntimeMethod* method);
// System.Boolean UnityEngine.XR.ARSubsystems.XRImageTrackingSubsystemDescriptor/Cinfo::get_requiresPhysicalImageDimensions()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Cinfo_get_requiresPhysicalImageDimensions_mEED8602BF9D390F19582D3F706A9C93333AFB0C7_inline (Cinfo_tED92D7CBD16BE657927A6B7DB64A22DA21EB7D32 * __this, const RuntimeMethod* method);
// System.Boolean UnityEngine.XR.ARSubsystems.XRImageTrackingSubsystemDescriptor/Cinfo::get_supportsMutableLibrary()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Cinfo_get_supportsMutableLibrary_mCD0988DBB5810975CB97BEDD9B2E6B6C168D6E19_inline (Cinfo_tED92D7CBD16BE657927A6B7DB64A22DA21EB7D32 * __this, const RuntimeMethod* method);
// System.Boolean UnityEngine.XR.ARSubsystems.XRImageTrackingSubsystemDescriptor/Cinfo::get_supportsImageValidation()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Cinfo_get_supportsImageValidation_m417DC16FCA795DB24C8CAA2C81A5E84855D077BD_inline (Cinfo_tED92D7CBD16BE657927A6B7DB64A22DA21EB7D32 * __this, const RuntimeMethod* method);
// System.Void UnityEngine.XR.ARSubsystems.TrackingSubsystem`4<UnityEngine.XR.ARSubsystems.XRTrackedObject,UnityEngine.XR.ARSubsystems.XRObjectTrackingSubsystem,UnityEngine.XR.ARSubsystems.XRObjectTrackingSubsystemDescriptor,UnityEngine.XR.ARSubsystems.XRObjectTrackingSubsystem/Provider>::.ctor()
inline void TrackingSubsystem_4__ctor_mCDE2C2C9D4E42210819D13563C64582F5F97DA39 (TrackingSubsystem_4_t1E41FDFF37B1529EED554D89481040B067E300EB * __this, const RuntimeMethod* method)
{
(( void (*) (TrackingSubsystem_4_t1E41FDFF37B1529EED554D89481040B067E300EB *, const RuntimeMethod*))TrackingSubsystem_4__ctor_mD06E8532EADAB0CF5854F1190D0302D2A5C301EB_gshared)(__this, method);
}
// System.Boolean UnityEngine.Object::op_Equality(UnityEngine.Object,UnityEngine.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Object_op_Equality_mEE9EC7EB5C7DC3E95B94AB904E1986FC4D566D54 (Object_tF2F3778131EFF286AF62B7B013A170F95A91571A * ___x0, Object_tF2F3778131EFF286AF62B7B013A170F95A91571A * ___y1, const RuntimeMethod* method);
// !2 UnityEngine.SubsystemsImplementation.SubsystemWithProvider`3<UnityEngine.XR.ARSubsystems.XRObjectTrackingSubsystem,UnityEngine.XR.ARSubsystems.XRObjectTrackingSubsystemDescriptor,UnityEngine.XR.ARSubsystems.XRObjectTrackingSubsystem/Provider>::get_provider()
inline Provider_t35977A2A0AA6C338BC9893668DD32F0294A9C01E * SubsystemWithProvider_3_get_provider_m7E5E1736FFDB6FDCC80558C7B5AA637026DFD20C_inline (SubsystemWithProvider_3_t2622D99FF6F2A6B95B2E82547A76A7E7712AA7DB * __this, const RuntimeMethod* method)
{
return (( Provider_t35977A2A0AA6C338BC9893668DD32F0294A9C01E * (*) (SubsystemWithProvider_3_t2622D99FF6F2A6B95B2E82547A76A7E7712AA7DB *, const RuntimeMethod*))SubsystemWithProvider_3_get_provider_m6D630D758837E2C1BBCC328AAF4512ADFA1F48F3_gshared_inline)(__this, method);
}
// System.Void UnityEngine.SubsystemsImplementation.SubsystemWithProvider`3<UnityEngine.XR.ARSubsystems.XRObjectTrackingSubsystem,UnityEngine.XR.ARSubsystems.XRObjectTrackingSubsystemDescriptor,UnityEngine.XR.ARSubsystems.XRObjectTrackingSubsystem/Provider>::OnStart()
inline void SubsystemWithProvider_3_OnStart_m025E4FC17E65F6E4F5CCAF97A105B69055BFA72C (SubsystemWithProvider_3_t2622D99FF6F2A6B95B2E82547A76A7E7712AA7DB * __this, const RuntimeMethod* method)
{
(( void (*) (SubsystemWithProvider_3_t2622D99FF6F2A6B95B2E82547A76A7E7712AA7DB *, const RuntimeMethod*))SubsystemWithProvider_3_OnStart_m096AF64E438BB77AB850AB2AF80FD6C8C76688BF_gshared)(__this, method);
}
// System.Void UnityEngine.SubsystemsImplementation.SubsystemWithProvider`3<UnityEngine.XR.ARSubsystems.XRObjectTrackingSubsystem,UnityEngine.XR.ARSubsystems.XRObjectTrackingSubsystemDescriptor,UnityEngine.XR.ARSubsystems.XRObjectTrackingSubsystem/Provider>::OnStop()
inline void SubsystemWithProvider_3_OnStop_m8EE2F25172A34C63EE5D2C8AF6D8FDA7B312B791 (SubsystemWithProvider_3_t2622D99FF6F2A6B95B2E82547A76A7E7712AA7DB * __this, const RuntimeMethod* method)
{
(( void (*) (SubsystemWithProvider_3_t2622D99FF6F2A6B95B2E82547A76A7E7712AA7DB *, const RuntimeMethod*))SubsystemWithProvider_3_OnStop_mEB7A1FF35674710DE4B94A0B1DB33A65DC6DABCD_gshared)(__this, method);
}
// UnityEngine.XR.ARSubsystems.XRTrackedObject UnityEngine.XR.ARSubsystems.XRTrackedObject::get_defaultValue()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR XRTrackedObject_t247BBE67D4F9308544C4BAD807F321E0C404EC58 XRTrackedObject_get_defaultValue_m3AC573CBE63C302081874718C743040E3A8C3F89_inline (const RuntimeMethod* method);
// System.Void UnityEngine.SubsystemsImplementation.SubsystemDescriptorWithProvider`2<UnityEngine.XR.ARSubsystems.XRObjectTrackingSubsystem,UnityEngine.XR.ARSubsystems.XRObjectTrackingSubsystem/Provider>::.ctor()
inline void SubsystemDescriptorWithProvider_2__ctor_mFC8D6E2104BE79940C9ADC8E1859B991CD8AFB34 (SubsystemDescriptorWithProvider_2_tB30A449BCFE0FA82C8183709FCA73609BEF8497F * __this, const RuntimeMethod* method)
{
(( void (*) (SubsystemDescriptorWithProvider_2_tB30A449BCFE0FA82C8183709FCA73609BEF8497F *, const RuntimeMethod*))SubsystemDescriptorWithProvider_2__ctor_mF969744E314332AC762279256CF288A3769ABC93_gshared)(__this, method);
}
// System.Void UnityEngine.XR.ARSubsystems.XRObjectTrackingSubsystemDescriptor::set_capabilities(UnityEngine.XR.ARSubsystems.XRObjectTrackingSubsystemDescriptor/Capabilities)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XRObjectTrackingSubsystemDescriptor_set_capabilities_m0ACF0721272F505AC624521AF7FA03C87033D759_inline (XRObjectTrackingSubsystemDescriptor_t831B568A9BE175A6A79BB87E25DEFAC519A6C472 * __this, Capabilities_tC6F329DD5C73C6B9E04BE77A3AE0E52390BD8685 ___value0, const RuntimeMethod* method);
// !2 UnityEngine.SubsystemsImplementation.SubsystemWithProvider`3<UnityEngine.XR.ARSubsystems.XROcclusionSubsystem,UnityEngine.XR.ARSubsystems.XROcclusionSubsystemDescriptor,UnityEngine.XR.ARSubsystems.XROcclusionSubsystem/Provider>::get_provider()
inline Provider_t5B60C630FB68EFEAB6FA2F3D9A732C144003B7FB * SubsystemWithProvider_3_get_provider_m6EFFE2CA2C3A415FF287A71E20A4601E8108E2C4_inline (SubsystemWithProvider_3_t2838D413336061A31AFDEA49065AD29BD1EB3A1B * __this, const RuntimeMethod* method)
{
return (( Provider_t5B60C630FB68EFEAB6FA2F3D9A732C144003B7FB * (*) (SubsystemWithProvider_3_t2838D413336061A31AFDEA49065AD29BD1EB3A1B *, const RuntimeMethod*))SubsystemWithProvider_3_get_provider_m6D630D758837E2C1BBCC328AAF4512ADFA1F48F3_gshared_inline)(__this, method);
}
// System.Void UnityEngine.SubsystemsImplementation.SubsystemWithProvider`3<UnityEngine.XR.ARSubsystems.XROcclusionSubsystem,UnityEngine.XR.ARSubsystems.XROcclusionSubsystemDescriptor,UnityEngine.XR.ARSubsystems.XROcclusionSubsystem/Provider>::.ctor()
inline void SubsystemWithProvider_3__ctor_m3A4219F4F2F45D2AA4C7EE843B67B609B809C059 (SubsystemWithProvider_3_t2838D413336061A31AFDEA49065AD29BD1EB3A1B * __this, const RuntimeMethod* method)
{
(( void (*) (SubsystemWithProvider_3_t2838D413336061A31AFDEA49065AD29BD1EB3A1B *, const RuntimeMethod*))SubsystemWithProvider_3__ctor_m547D656ED6A22E04230EE777D2EB7A68BA51212F_gshared)(__this, method);
}
// UnityEngine.XR.ARSubsystems.XROcclusionSubsystemDescriptor UnityEngine.XR.ARSubsystems.XROcclusionSubsystemDescriptor::Create(UnityEngine.XR.ARSubsystems.XROcclusionSubsystemCinfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XROcclusionSubsystemDescriptor_tC9C8F2EFB7768358C203968CA71D353F0DD234FB * XROcclusionSubsystemDescriptor_Create_m31FA1D0EDAF351742A97C9E655F069AF8544C852 (XROcclusionSubsystemCinfo_tA29FDBA57EBA835927124FC18780DDD9CC4D84FD ___occlusionSubsystemCinfo0, const RuntimeMethod* method);
// System.String UnityEngine.XR.ARSubsystems.XROcclusionSubsystemCinfo::get_id()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* XROcclusionSubsystemCinfo_get_id_m52AA71D202632FA1607B0FEF64946642B6C3608C_inline (XROcclusionSubsystemCinfo_tA29FDBA57EBA835927124FC18780DDD9CC4D84FD * __this, const RuntimeMethod* method);
// System.Void UnityEngine.XR.ARSubsystems.XROcclusionSubsystemCinfo::set_id(System.String)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XROcclusionSubsystemCinfo_set_id_m19076B4B5E6D6AA32BE751C1F2611CB7C3C152A0_inline (XROcclusionSubsystemCinfo_tA29FDBA57EBA835927124FC18780DDD9CC4D84FD * __this, String_t* ___value0, const RuntimeMethod* method);
// System.Type UnityEngine.XR.ARSubsystems.XROcclusionSubsystemCinfo::get_providerType()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Type_t * XROcclusionSubsystemCinfo_get_providerType_m8D7C8F76AE3FAEEC4952D6FF75134CE4DADFFA22_inline (XROcclusionSubsystemCinfo_tA29FDBA57EBA835927124FC18780DDD9CC4D84FD * __this, const RuntimeMethod* method);
// System.Void UnityEngine.XR.ARSubsystems.XROcclusionSubsystemCinfo::set_providerType(System.Type)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XROcclusionSubsystemCinfo_set_providerType_mA9E2685FC29652BBF41CD7398D8A434B72B68556_inline (XROcclusionSubsystemCinfo_tA29FDBA57EBA835927124FC18780DDD9CC4D84FD * __this, Type_t * ___value0, const RuntimeMethod* method);
// System.Type UnityEngine.XR.ARSubsystems.XROcclusionSubsystemCinfo::get_subsystemTypeOverride()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Type_t * XROcclusionSubsystemCinfo_get_subsystemTypeOverride_m60945479B5A62376EEA5633F4FF21D4BD137C125_inline (XROcclusionSubsystemCinfo_tA29FDBA57EBA835927124FC18780DDD9CC4D84FD * __this, const RuntimeMethod* method);
// System.Void UnityEngine.XR.ARSubsystems.XROcclusionSubsystemCinfo::set_subsystemTypeOverride(System.Type)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XROcclusionSubsystemCinfo_set_subsystemTypeOverride_mC5D9DB3F2CDC007F826FC2AB790F1622DFBA0F63_inline (XROcclusionSubsystemCinfo_tA29FDBA57EBA835927124FC18780DDD9CC4D84FD * __this, Type_t * ___value0, const RuntimeMethod* method);
// System.Boolean UnityEngine.XR.ARSubsystems.XROcclusionSubsystemCinfo::get_supportsHumanSegmentationStencilImage()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool XROcclusionSubsystemCinfo_get_supportsHumanSegmentationStencilImage_m3F2F9B49E2326FE8A773C655848F6497A5F8A797_inline (XROcclusionSubsystemCinfo_tA29FDBA57EBA835927124FC18780DDD9CC4D84FD * __this, const RuntimeMethod* method);
// System.Void UnityEngine.XR.ARSubsystems.XROcclusionSubsystemCinfo::set_supportsHumanSegmentationStencilImage(System.Boolean)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XROcclusionSubsystemCinfo_set_supportsHumanSegmentationStencilImage_mEC6C58C95DF515008316ED9A33A37ABBFBFD88BD_inline (XROcclusionSubsystemCinfo_tA29FDBA57EBA835927124FC18780DDD9CC4D84FD * __this, bool ___value0, const RuntimeMethod* method);
// System.Boolean UnityEngine.XR.ARSubsystems.XROcclusionSubsystemCinfo::get_supportsHumanSegmentationDepthImage()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool XROcclusionSubsystemCinfo_get_supportsHumanSegmentationDepthImage_mBFFC1F3611B38652EEFD21E2D7433B71F36A172D_inline (XROcclusionSubsystemCinfo_tA29FDBA57EBA835927124FC18780DDD9CC4D84FD * __this, const RuntimeMethod* method);
// System.Void UnityEngine.XR.ARSubsystems.XROcclusionSubsystemCinfo::set_supportsHumanSegmentationDepthImage(System.Boolean)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XROcclusionSubsystemCinfo_set_supportsHumanSegmentationDepthImage_mF08FD3863AEB93D47CCF50BD197780D2AB6F0705_inline (XROcclusionSubsystemCinfo_tA29FDBA57EBA835927124FC18780DDD9CC4D84FD * __this, bool ___value0, const RuntimeMethod* method);
// System.Func`1<System.Boolean> UnityEngine.XR.ARSubsystems.XROcclusionSubsystemCinfo::get_queryForSupportsEnvironmentDepthImage()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Func_1_t76FCDA5C58178ED310C472967481FDE5F47DCF0F * XROcclusionSubsystemCinfo_get_queryForSupportsEnvironmentDepthImage_m7E021A482EB4D3F52CA43ABEF71FD654304330AC_inline (XROcclusionSubsystemCinfo_tA29FDBA57EBA835927124FC18780DDD9CC4D84FD * __this, const RuntimeMethod* method);
// System.Void UnityEngine.XR.ARSubsystems.XROcclusionSubsystemCinfo::set_queryForSupportsEnvironmentDepthImage(System.Func`1<System.Boolean>)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XROcclusionSubsystemCinfo_set_queryForSupportsEnvironmentDepthImage_m51449A6122E2D967180669F6C0425F5D1E038F7E_inline (XROcclusionSubsystemCinfo_tA29FDBA57EBA835927124FC18780DDD9CC4D84FD * __this, Func_1_t76FCDA5C58178ED310C472967481FDE5F47DCF0F * ___value0, const RuntimeMethod* method);
// System.Func`1<System.Boolean> UnityEngine.XR.ARSubsystems.XROcclusionSubsystemCinfo::get_queryForSupportsEnvironmentDepthConfidenceImage()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Func_1_t76FCDA5C58178ED310C472967481FDE5F47DCF0F * XROcclusionSubsystemCinfo_get_queryForSupportsEnvironmentDepthConfidenceImage_m3A9518505C78739C2476A7E64F6942D83C582DD5_inline (XROcclusionSubsystemCinfo_tA29FDBA57EBA835927124FC18780DDD9CC4D84FD * __this, const RuntimeMethod* method);
// System.Void UnityEngine.XR.ARSubsystems.XROcclusionSubsystemCinfo::set_queryForSupportsEnvironmentDepthConfidenceImage(System.Func`1<System.Boolean>)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XROcclusionSubsystemCinfo_set_queryForSupportsEnvironmentDepthConfidenceImage_m24C48D100ECEEC534C92273C21C18FBCCD98C740_inline (XROcclusionSubsystemCinfo_tA29FDBA57EBA835927124FC18780DDD9CC4D84FD * __this, Func_1_t76FCDA5C58178ED310C472967481FDE5F47DCF0F * ___value0, const RuntimeMethod* method);
// System.Boolean UnityEngine.XR.ARSubsystems.XROcclusionSubsystemCinfo::Equals(UnityEngine.XR.ARSubsystems.XROcclusionSubsystemCinfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XROcclusionSubsystemCinfo_Equals_mBF75B2160741AC5D0F43480949D690FE94ECCE18 (XROcclusionSubsystemCinfo_tA29FDBA57EBA835927124FC18780DDD9CC4D84FD * __this, XROcclusionSubsystemCinfo_tA29FDBA57EBA835927124FC18780DDD9CC4D84FD ___other0, const RuntimeMethod* method);
// System.Boolean UnityEngine.XR.ARSubsystems.XROcclusionSubsystemCinfo::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XROcclusionSubsystemCinfo_Equals_m046DEDAFD67F305D51E59636AF310702B5152EEB (XROcclusionSubsystemCinfo_tA29FDBA57EBA835927124FC18780DDD9CC4D84FD * __this, RuntimeObject * ___obj0, const RuntimeMethod* method);
// System.Int32 UnityEngine.XR.ARSubsystems.XROcclusionSubsystemCinfo::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XROcclusionSubsystemCinfo_GetHashCode_m8A26E07DD1C840DFEC9373E26990B3DA40F1D8A1 (XROcclusionSubsystemCinfo_tA29FDBA57EBA835927124FC18780DDD9CC4D84FD * __this, const RuntimeMethod* method);
// System.Void UnityEngine.SubsystemsImplementation.SubsystemDescriptorWithProvider`2<UnityEngine.XR.ARSubsystems.XROcclusionSubsystem,UnityEngine.XR.ARSubsystems.XROcclusionSubsystem/Provider>::.ctor()
inline void SubsystemDescriptorWithProvider_2__ctor_m4CBC56B4E2A8A4BC63FC246F6DEA77EED160B4E1 (SubsystemDescriptorWithProvider_2_t62816A265C3833F4CF714035B6683894F074039D * __this, const RuntimeMethod* method)
{
(( void (*) (SubsystemDescriptorWithProvider_2_t62816A265C3833F4CF714035B6683894F074039D *, const RuntimeMethod*))SubsystemDescriptorWithProvider_2__ctor_mF969744E314332AC762279256CF288A3769ABC93_gshared)(__this, method);
}
// System.Void UnityEngine.XR.ARSubsystems.XROcclusionSubsystemDescriptor::set_supportsHumanSegmentationStencilImage(System.Boolean)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XROcclusionSubsystemDescriptor_set_supportsHumanSegmentationStencilImage_m8D7F47CF55EE1F758A1CF9A53700B78FAAD3A9DE_inline (XROcclusionSubsystemDescriptor_tC9C8F2EFB7768358C203968CA71D353F0DD234FB * __this, bool ___value0, const RuntimeMethod* method);
// System.Void UnityEngine.XR.ARSubsystems.XROcclusionSubsystemDescriptor::set_supportsHumanSegmentationDepthImage(System.Boolean)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XROcclusionSubsystemDescriptor_set_supportsHumanSegmentationDepthImage_mD48BEC8C3460FA7B6BC492D70DF7E70C468DB38F_inline (XROcclusionSubsystemDescriptor_tC9C8F2EFB7768358C203968CA71D353F0DD234FB * __this, bool ___value0, const RuntimeMethod* method);
// !0 System.Func`1<System.Boolean>::Invoke()
inline bool Func_1_Invoke_mCA605B0373C1EE39807AB82AEA983289D3F15C79 (Func_1_t76FCDA5C58178ED310C472967481FDE5F47DCF0F * __this, const RuntimeMethod* method)
{
return (( bool (*) (Func_1_t76FCDA5C58178ED310C472967481FDE5F47DCF0F *, const RuntimeMethod*))Func_1_Invoke_mCA605B0373C1EE39807AB82AEA983289D3F15C79_gshared)(__this, method);
}
// System.Void UnityEngine.XR.ARSubsystems.XROcclusionSubsystemDescriptor::.ctor(UnityEngine.XR.ARSubsystems.XROcclusionSubsystemCinfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XROcclusionSubsystemDescriptor__ctor_mC7893752CE0EB8F9130E7127BFC306B11BE4AA42 (XROcclusionSubsystemDescriptor_tC9C8F2EFB7768358C203968CA71D353F0DD234FB * __this, XROcclusionSubsystemCinfo_tA29FDBA57EBA835927124FC18780DDD9CC4D84FD ___occlusionSubsystemCinfo0, const RuntimeMethod* method);
// UnityEngine.XR.ARSubsystems.TrackableId UnityEngine.XR.ARSubsystems.XRParticipant::get_trackableId()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B XRParticipant_get_trackableId_mFE20FF09B28F44F916FD7175C9D1B50658DB8D13_inline (XRParticipant_t8CFF46A2CDD860A7591AD0FC0EE563458C8FA13F * __this, const RuntimeMethod* method);
// UnityEngine.Pose UnityEngine.XR.ARSubsystems.XRParticipant::get_pose()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A XRParticipant_get_pose_m8BC5243C4975CE29D2E98B803908FE7B0B2A1D1B_inline (XRParticipant_t8CFF46A2CDD860A7591AD0FC0EE563458C8FA13F * __this, const RuntimeMethod* method);
// UnityEngine.XR.ARSubsystems.TrackingState UnityEngine.XR.ARSubsystems.XRParticipant::get_trackingState()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t XRParticipant_get_trackingState_m0510505F8AE642CCCEBD2D784CB898CEDD59A08F_inline (XRParticipant_t8CFF46A2CDD860A7591AD0FC0EE563458C8FA13F * __this, const RuntimeMethod* method);
// System.IntPtr UnityEngine.XR.ARSubsystems.XRParticipant::get_nativePtr()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR intptr_t XRParticipant_get_nativePtr_mF4BBE0CC8C5CFA70984EAAD24CFF13E9BCFE0FE4_inline (XRParticipant_t8CFF46A2CDD860A7591AD0FC0EE563458C8FA13F * __this, const RuntimeMethod* method);
// System.Guid UnityEngine.XR.ARSubsystems.XRParticipant::get_sessionId()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Guid_t XRParticipant_get_sessionId_m25D8BC6B31A8216FF6959B2C4792CCC7040A2300_inline (XRParticipant_t8CFF46A2CDD860A7591AD0FC0EE563458C8FA13F * __this, const RuntimeMethod* method);
// System.Int32 UnityEngine.XR.ARSubsystems.XRParticipant::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XRParticipant_GetHashCode_mF04382E10454D77B4F1AA3AF615488B98D9D62EC (XRParticipant_t8CFF46A2CDD860A7591AD0FC0EE563458C8FA13F * __this, const RuntimeMethod* method);
// System.Boolean UnityEngine.XR.ARSubsystems.XRParticipant::Equals(UnityEngine.XR.ARSubsystems.XRParticipant)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XRParticipant_Equals_mE1679D0AAFE2566EA4CE5AF7992F1ADD3D2AFEDA (XRParticipant_t8CFF46A2CDD860A7591AD0FC0EE563458C8FA13F * __this, XRParticipant_t8CFF46A2CDD860A7591AD0FC0EE563458C8FA13F ___other0, const RuntimeMethod* method);
// System.Boolean UnityEngine.XR.ARSubsystems.XRParticipant::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XRParticipant_Equals_mBA488A840ABD4DBB6432E2D03126062EC1A6768C (XRParticipant_t8CFF46A2CDD860A7591AD0FC0EE563458C8FA13F * __this, RuntimeObject * ___obj0, const RuntimeMethod* method);
// System.Void UnityEngine.XR.ARSubsystems.TrackingSubsystem`4<UnityEngine.XR.ARSubsystems.XRParticipant,UnityEngine.XR.ARSubsystems.XRParticipantSubsystem,UnityEngine.XR.ARSubsystems.XRParticipantSubsystemDescriptor,UnityEngine.XR.ARSubsystems.XRParticipantSubsystem/Provider>::.ctor()
inline void TrackingSubsystem_4__ctor_m43E33972537CDF7416C9596A64D27D09A749F0D2 (TrackingSubsystem_4_tF2C9DD677702042D71E5050214FE516389400277 * __this, const RuntimeMethod* method)
{
(( void (*) (TrackingSubsystem_4_tF2C9DD677702042D71E5050214FE516389400277 *, const RuntimeMethod*))TrackingSubsystem_4__ctor_m00DE04D7B62F9F06D59F884D4382E11CB0476D80_gshared)(__this, method);
}
// !2 UnityEngine.SubsystemsImplementation.SubsystemWithProvider`3<UnityEngine.XR.ARSubsystems.XRParticipantSubsystem,UnityEngine.XR.ARSubsystems.XRParticipantSubsystemDescriptor,UnityEngine.XR.ARSubsystems.XRParticipantSubsystem/Provider>::get_provider()
inline Provider_t1D0BC515976D24FD30341AC456ACFCB2DE4A344E * SubsystemWithProvider_3_get_provider_m3CF16A15D858F5FDFDE6A86865C734C33D7B563E_inline (SubsystemWithProvider_3_t0293B6FD1251DCA5DC0D3396C57B87118ECE01DF * __this, const RuntimeMethod* method)
{
return (( Provider_t1D0BC515976D24FD30341AC456ACFCB2DE4A344E * (*) (SubsystemWithProvider_3_t0293B6FD1251DCA5DC0D3396C57B87118ECE01DF *, const RuntimeMethod*))SubsystemWithProvider_3_get_provider_m6D630D758837E2C1BBCC328AAF4512ADFA1F48F3_gshared_inline)(__this, method);
}
// UnityEngine.XR.ARSubsystems.XRParticipant UnityEngine.XR.ARSubsystems.XRParticipant::get_defaultParticipant()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR XRParticipant_t8CFF46A2CDD860A7591AD0FC0EE563458C8FA13F XRParticipant_get_defaultParticipant_mD2641CE602FDDA1E32641A60101077BF5E10B49D_inline (const RuntimeMethod* method);
// System.Void UnityEngine.SubsystemsImplementation.SubsystemDescriptorWithProvider`2<UnityEngine.XR.ARSubsystems.XRParticipantSubsystem,UnityEngine.XR.ARSubsystems.XRParticipantSubsystem/Provider>::.ctor()
inline void SubsystemDescriptorWithProvider_2__ctor_m2F3E41C1EE0822F68A7AACCB231B6D3D1DCC8BCC (SubsystemDescriptorWithProvider_2_t43C05E9C3928E04822F2DA791FFAC4C140DF10A5 * __this, const RuntimeMethod* method)
{
(( void (*) (SubsystemDescriptorWithProvider_2_t43C05E9C3928E04822F2DA791FFAC4C140DF10A5 *, const RuntimeMethod*))SubsystemDescriptorWithProvider_2__ctor_mF969744E314332AC762279256CF288A3769ABC93_gshared)(__this, method);
}
// System.Void UnityEngine.XR.ARSubsystems.XRParticipantSubsystemDescriptor::set_capabilities(UnityEngine.XR.ARSubsystems.XRParticipantSubsystemDescriptor/Capabilities)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XRParticipantSubsystemDescriptor_set_capabilities_m3CDF9EDC1BF57F513846DE87A9E4996ED543759A_inline (XRParticipantSubsystemDescriptor_t533EE70DC8D4B105B9C87B76D35A7D59A84BCA55 * __this, int32_t ___value0, const RuntimeMethod* method);
// System.Void UnityEngine.XR.ARSubsystems.TrackingSubsystem`4<UnityEngine.XR.ARSubsystems.BoundedPlane,UnityEngine.XR.ARSubsystems.XRPlaneSubsystem,UnityEngine.XR.ARSubsystems.XRPlaneSubsystemDescriptor,UnityEngine.XR.ARSubsystems.XRPlaneSubsystem/Provider>::.ctor()
inline void TrackingSubsystem_4__ctor_m66B311A47D5E648C66011BA6F376723D0BAB98DE (TrackingSubsystem_4_t4CF696722E0C05A2C0234E78E673F4F17EEC1C94 * __this, const RuntimeMethod* method)
{
(( void (*) (TrackingSubsystem_4_t4CF696722E0C05A2C0234E78E673F4F17EEC1C94 *, const RuntimeMethod*))TrackingSubsystem_4__ctor_m495E6B5CCD50BDC48525BBF2A817EBED5A305233_gshared)(__this, method);
}
// !2 UnityEngine.SubsystemsImplementation.SubsystemWithProvider`3<UnityEngine.XR.ARSubsystems.XRPlaneSubsystem,UnityEngine.XR.ARSubsystems.XRPlaneSubsystemDescriptor,UnityEngine.XR.ARSubsystems.XRPlaneSubsystem/Provider>::get_provider()
inline Provider_t6CB5B1036B0AAED1379F3828D695A6942B72BA12 * SubsystemWithProvider_3_get_provider_mE1CD1BFCD049073456FC41A22EB19726E965327D_inline (SubsystemWithProvider_3_t2D48685843F3C8CD4AE71F1303F357DCAE9FD683 * __this, const RuntimeMethod* method)
{
return (( Provider_t6CB5B1036B0AAED1379F3828D695A6942B72BA12 * (*) (SubsystemWithProvider_3_t2D48685843F3C8CD4AE71F1303F357DCAE9FD683 *, const RuntimeMethod*))SubsystemWithProvider_3_get_provider_m6D630D758837E2C1BBCC328AAF4512ADFA1F48F3_gshared_inline)(__this, method);
}
// UnityEngine.XR.ARSubsystems.BoundedPlane UnityEngine.XR.ARSubsystems.BoundedPlane::get_defaultValue()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR BoundedPlane_t9001963C43ACDF4CDEA8BBF97CD783B7969B79C5 BoundedPlane_get_defaultValue_m0C1F8EA6D681C3333CF429425254F63E1BE99003_inline (const RuntimeMethod* method);
// System.Void UnityEngine.XR.ARSubsystems.XRPlaneSubsystemDescriptor::.ctor(UnityEngine.XR.ARSubsystems.XRPlaneSubsystemDescriptor/Cinfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRPlaneSubsystemDescriptor__ctor_mC8788AC7F6940BA1E88AE0277C1D099DD0EEB935 (XRPlaneSubsystemDescriptor_t98B66B6D99804656DDDB45C9BDA61C2EE4EDB483 * __this, Cinfo_tC49A76BF09DB3F926B17955E1B8D729DC9B272AD ___cinfo0, const RuntimeMethod* method);
// System.Void UnityEngine.SubsystemsImplementation.SubsystemDescriptorWithProvider`2<UnityEngine.XR.ARSubsystems.XRPlaneSubsystem,UnityEngine.XR.ARSubsystems.XRPlaneSubsystem/Provider>::.ctor()
inline void SubsystemDescriptorWithProvider_2__ctor_mC9825ABADBFD661143DBD286E7A4203D29661704 (SubsystemDescriptorWithProvider_2_t389082A83361A00577FB12B1BFEFA4439DBEAA69 * __this, const RuntimeMethod* method)
{
(( void (*) (SubsystemDescriptorWithProvider_2_t389082A83361A00577FB12B1BFEFA4439DBEAA69 *, const RuntimeMethod*))SubsystemDescriptorWithProvider_2__ctor_mF969744E314332AC762279256CF288A3769ABC93_gshared)(__this, method);
}
// System.String UnityEngine.XR.ARSubsystems.XRPlaneSubsystemDescriptor/Cinfo::get_id()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* Cinfo_get_id_m62022D2EE6912F0B1BDBCA687A4FC63321DE3F86_inline (Cinfo_tC49A76BF09DB3F926B17955E1B8D729DC9B272AD * __this, const RuntimeMethod* method);
// System.Type UnityEngine.XR.ARSubsystems.XRPlaneSubsystemDescriptor/Cinfo::get_providerType()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Type_t * Cinfo_get_providerType_m496CFFD5CAAF878266582DECEC5CDFB92A9C0A55_inline (Cinfo_tC49A76BF09DB3F926B17955E1B8D729DC9B272AD * __this, const RuntimeMethod* method);
// System.Type UnityEngine.XR.ARSubsystems.XRPlaneSubsystemDescriptor/Cinfo::get_subsystemTypeOverride()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Type_t * Cinfo_get_subsystemTypeOverride_m67ACD12818B5C91D42707639EA205E13BB15171A_inline (Cinfo_tC49A76BF09DB3F926B17955E1B8D729DC9B272AD * __this, const RuntimeMethod* method);
// System.Boolean UnityEngine.XR.ARSubsystems.XRPlaneSubsystemDescriptor/Cinfo::get_supportsHorizontalPlaneDetection()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Cinfo_get_supportsHorizontalPlaneDetection_mBC3012C667106D47D9429F9C8001774038A38216_inline (Cinfo_tC49A76BF09DB3F926B17955E1B8D729DC9B272AD * __this, const RuntimeMethod* method);
// System.Void UnityEngine.XR.ARSubsystems.XRPlaneSubsystemDescriptor::set_supportsHorizontalPlaneDetection(System.Boolean)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XRPlaneSubsystemDescriptor_set_supportsHorizontalPlaneDetection_m2BB45C7A44E14368A0FAEADA130A6F6158B1042D_inline (XRPlaneSubsystemDescriptor_t98B66B6D99804656DDDB45C9BDA61C2EE4EDB483 * __this, bool ___value0, const RuntimeMethod* method);
// System.Boolean UnityEngine.XR.ARSubsystems.XRPlaneSubsystemDescriptor/Cinfo::get_supportsVerticalPlaneDetection()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Cinfo_get_supportsVerticalPlaneDetection_m4E3BE200E11784D049B94A054F15E4C76D29D7C6_inline (Cinfo_tC49A76BF09DB3F926B17955E1B8D729DC9B272AD * __this, const RuntimeMethod* method);
// System.Void UnityEngine.XR.ARSubsystems.XRPlaneSubsystemDescriptor::set_supportsVerticalPlaneDetection(System.Boolean)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XRPlaneSubsystemDescriptor_set_supportsVerticalPlaneDetection_m050259C60036A9B08459ED7BDFC06D24270927B2_inline (XRPlaneSubsystemDescriptor_t98B66B6D99804656DDDB45C9BDA61C2EE4EDB483 * __this, bool ___value0, const RuntimeMethod* method);
// System.Boolean UnityEngine.XR.ARSubsystems.XRPlaneSubsystemDescriptor/Cinfo::get_supportsArbitraryPlaneDetection()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Cinfo_get_supportsArbitraryPlaneDetection_mF6CB379C9781FE8B8473949DA99196508EF91DB5_inline (Cinfo_tC49A76BF09DB3F926B17955E1B8D729DC9B272AD * __this, const RuntimeMethod* method);
// System.Void UnityEngine.XR.ARSubsystems.XRPlaneSubsystemDescriptor::set_supportsArbitraryPlaneDetection(System.Boolean)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XRPlaneSubsystemDescriptor_set_supportsArbitraryPlaneDetection_m2A4804EC8ED1137CB21F6589FBAE85CF01B1A5A0_inline (XRPlaneSubsystemDescriptor_t98B66B6D99804656DDDB45C9BDA61C2EE4EDB483 * __this, bool ___value0, const RuntimeMethod* method);
// System.Boolean UnityEngine.XR.ARSubsystems.XRPlaneSubsystemDescriptor/Cinfo::get_supportsBoundaryVertices()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Cinfo_get_supportsBoundaryVertices_m5BA762B342FCF81EAE6E3645D3BAF04C1E8EAAD9_inline (Cinfo_tC49A76BF09DB3F926B17955E1B8D729DC9B272AD * __this, const RuntimeMethod* method);
// System.Void UnityEngine.XR.ARSubsystems.XRPlaneSubsystemDescriptor::set_supportsBoundaryVertices(System.Boolean)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XRPlaneSubsystemDescriptor_set_supportsBoundaryVertices_mDF9E00121A6509790D704D77FF0B863A99436747_inline (XRPlaneSubsystemDescriptor_t98B66B6D99804656DDDB45C9BDA61C2EE4EDB483 * __this, bool ___value0, const RuntimeMethod* method);
// System.Boolean UnityEngine.XR.ARSubsystems.XRPlaneSubsystemDescriptor/Cinfo::get_supportsClassification()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Cinfo_get_supportsClassification_m0396A2A62F840D9E283402BFB3681A5CC19C810E_inline (Cinfo_tC49A76BF09DB3F926B17955E1B8D729DC9B272AD * __this, const RuntimeMethod* method);
// System.Void UnityEngine.XR.ARSubsystems.XRPlaneSubsystemDescriptor::set_supportsClassification(System.Boolean)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XRPlaneSubsystemDescriptor_set_supportsClassification_mA74FCEFD28F8CC7E1BB2E97E69DFA8E20BD0904A_inline (XRPlaneSubsystemDescriptor_t98B66B6D99804656DDDB45C9BDA61C2EE4EDB483 * __this, bool ___value0, const RuntimeMethod* method);
// UnityEngine.XR.ARSubsystems.TrackableId UnityEngine.XR.ARSubsystems.XRPointCloud::get_trackableId()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B XRPointCloud_get_trackableId_m45E06C0C6CD525985ED5FF3A0DC9D1F41A845889_inline (XRPointCloud_t08B41A05528E45CE709F8C14CA6C484D360A62F2 * __this, const RuntimeMethod* method);
// UnityEngine.Pose UnityEngine.XR.ARSubsystems.XRPointCloud::get_pose()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A XRPointCloud_get_pose_m4291F970BA7E4F2DE67BB6666D365FF510B8AC39_inline (XRPointCloud_t08B41A05528E45CE709F8C14CA6C484D360A62F2 * __this, const RuntimeMethod* method);
// UnityEngine.XR.ARSubsystems.TrackingState UnityEngine.XR.ARSubsystems.XRPointCloud::get_trackingState()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t XRPointCloud_get_trackingState_mE90A4EE69C3F5EA084CB0BF1B3D128160C719242_inline (XRPointCloud_t08B41A05528E45CE709F8C14CA6C484D360A62F2 * __this, const RuntimeMethod* method);
// System.Int32 UnityEngine.XR.ARSubsystems.XRPointCloud::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XRPointCloud_GetHashCode_m27CF26ED9655FD5EF9E3F83986059017A37E6778 (XRPointCloud_t08B41A05528E45CE709F8C14CA6C484D360A62F2 * __this, const RuntimeMethod* method);
// System.Boolean UnityEngine.XR.ARSubsystems.TrackableId::op_Equality(UnityEngine.XR.ARSubsystems.TrackableId,UnityEngine.XR.ARSubsystems.TrackableId)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TrackableId_op_Equality_m0868EBB6BB9BA72B226D0717352604B3E8EA119B (TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B ___lhs0, TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B ___rhs1, const RuntimeMethod* method);
// System.Boolean UnityEngine.XR.ARSubsystems.XRPointCloud::Equals(UnityEngine.XR.ARSubsystems.XRPointCloud)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XRPointCloud_Equals_mFB272AE1F45D6A70C7E5C18D49E2ED7E2375AC0C (XRPointCloud_t08B41A05528E45CE709F8C14CA6C484D360A62F2 * __this, XRPointCloud_t08B41A05528E45CE709F8C14CA6C484D360A62F2 ___other0, const RuntimeMethod* method);
// System.Boolean UnityEngine.XR.ARSubsystems.XRPointCloud::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XRPointCloud_Equals_m7123CA7CBF03D2DDAEAFD63768A78A559B70D34A (XRPointCloud_t08B41A05528E45CE709F8C14CA6C484D360A62F2 * __this, RuntimeObject * ___obj0, const RuntimeMethod* method);
// Unity.Collections.NativeArray`1<UnityEngine.Vector3> UnityEngine.XR.ARSubsystems.XRPointCloudData::get_positions()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR NativeArray_1_t2577BCA09CA248EFB78BD7FDA7F09D5C395DFF52 XRPointCloudData_get_positions_mD0152EB78841C8D8CB83101868169887235C6BD3_inline (XRPointCloudData_t3AFE7A70A93C061F8C3B3B7AEDE07EDF6A86B177 * __this, const RuntimeMethod* method);
// System.Void UnityEngine.XR.ARSubsystems.XRPointCloudData::set_positions(Unity.Collections.NativeArray`1<UnityEngine.Vector3>)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XRPointCloudData_set_positions_m5B37C4E8FCCE5AF8E16D83D4BAE520F45971CCD7_inline (XRPointCloudData_t3AFE7A70A93C061F8C3B3B7AEDE07EDF6A86B177 * __this, NativeArray_1_t2577BCA09CA248EFB78BD7FDA7F09D5C395DFF52 ___value0, const RuntimeMethod* method);
// Unity.Collections.NativeArray`1<System.Single> UnityEngine.XR.ARSubsystems.XRPointCloudData::get_confidenceValues()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR NativeArray_1_t5F920DC5A531D604D161A0FAD3479B5BFE0D9232 XRPointCloudData_get_confidenceValues_mA510FDF9A0F8B21FEA6905400EA6F3A709F8DD82_inline (XRPointCloudData_t3AFE7A70A93C061F8C3B3B7AEDE07EDF6A86B177 * __this, const RuntimeMethod* method);
// Unity.Collections.NativeArray`1<System.UInt64> UnityEngine.XR.ARSubsystems.XRPointCloudData::get_identifiers()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR NativeArray_1_t9D118727A643E61710D0A4DF5B0C8CD1A918A40B XRPointCloudData_get_identifiers_mF1A688282A3DBD819C5F43EE4A1B44B6548787D3_inline (XRPointCloudData_t3AFE7A70A93C061F8C3B3B7AEDE07EDF6A86B177 * __this, const RuntimeMethod* method);
// System.Void UnityEngine.XR.ARSubsystems.XRPointCloudData::set_identifiers(Unity.Collections.NativeArray`1<System.UInt64>)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XRPointCloudData_set_identifiers_mBA475172386D8F500AE9F2D50D4B009FD8D26319_inline (XRPointCloudData_t3AFE7A70A93C061F8C3B3B7AEDE07EDF6A86B177 * __this, NativeArray_1_t9D118727A643E61710D0A4DF5B0C8CD1A918A40B ___value0, const RuntimeMethod* method);
// System.Boolean Unity.Collections.NativeArray`1<System.Single>::get_IsCreated()
inline bool NativeArray_1_get_IsCreated_m394E202D29B5488CB56139D346E1A64EBBDA2E9C (NativeArray_1_t5F920DC5A531D604D161A0FAD3479B5BFE0D9232 * __this, const RuntimeMethod* method)
{
return (( bool (*) (NativeArray_1_t5F920DC5A531D604D161A0FAD3479B5BFE0D9232 *, const RuntimeMethod*))NativeArray_1_get_IsCreated_m394E202D29B5488CB56139D346E1A64EBBDA2E9C_gshared)(__this, method);
}
// System.Void Unity.Collections.NativeArray`1<System.Single>::Dispose()
inline void NativeArray_1_Dispose_mC03B89A2188FC84335036FA76CEB1925D7DC4294 (NativeArray_1_t5F920DC5A531D604D161A0FAD3479B5BFE0D9232 * __this, const RuntimeMethod* method)
{
(( void (*) (NativeArray_1_t5F920DC5A531D604D161A0FAD3479B5BFE0D9232 *, const RuntimeMethod*))NativeArray_1_Dispose_mC03B89A2188FC84335036FA76CEB1925D7DC4294_gshared)(__this, method);
}
// System.Boolean Unity.Collections.NativeArray`1<System.UInt64>::get_IsCreated()
inline bool NativeArray_1_get_IsCreated_mC0D0556229A19FBA32063A797CAE4BE1A8417E22 (NativeArray_1_t9D118727A643E61710D0A4DF5B0C8CD1A918A40B * __this, const RuntimeMethod* method)
{
return (( bool (*) (NativeArray_1_t9D118727A643E61710D0A4DF5B0C8CD1A918A40B *, const RuntimeMethod*))NativeArray_1_get_IsCreated_mC0D0556229A19FBA32063A797CAE4BE1A8417E22_gshared)(__this, method);
}
// System.Void Unity.Collections.NativeArray`1<System.UInt64>::Dispose()
inline void NativeArray_1_Dispose_m02DA8137FD41E7E6BB40E763EA2F6535B770C375 (NativeArray_1_t9D118727A643E61710D0A4DF5B0C8CD1A918A40B * __this, const RuntimeMethod* method)
{
(( void (*) (NativeArray_1_t9D118727A643E61710D0A4DF5B0C8CD1A918A40B *, const RuntimeMethod*))NativeArray_1_Dispose_m02DA8137FD41E7E6BB40E763EA2F6535B770C375_gshared)(__this, method);
}
// System.Void UnityEngine.XR.ARSubsystems.XRPointCloudData::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRPointCloudData_Dispose_m600FFE0CF6B2D3D7B31B7F51406C4818159C5120 (XRPointCloudData_t3AFE7A70A93C061F8C3B3B7AEDE07EDF6A86B177 * __this, const RuntimeMethod* method);
// System.Int32 Unity.Collections.NativeArray`1<System.Single>::GetHashCode()
inline int32_t NativeArray_1_GetHashCode_mC443459008949D4F14829D441CAE3C82A4D3F86B (NativeArray_1_t5F920DC5A531D604D161A0FAD3479B5BFE0D9232 * __this, const RuntimeMethod* method)
{
return (( int32_t (*) (NativeArray_1_t5F920DC5A531D604D161A0FAD3479B5BFE0D9232 *, const RuntimeMethod*))NativeArray_1_GetHashCode_mC443459008949D4F14829D441CAE3C82A4D3F86B_gshared)(__this, method);
}
// System.Int32 Unity.Collections.NativeArray`1<System.UInt64>::GetHashCode()
inline int32_t NativeArray_1_GetHashCode_m84FE16CA6E708E33854BE0C102597EE6D16DED19 (NativeArray_1_t9D118727A643E61710D0A4DF5B0C8CD1A918A40B * __this, const RuntimeMethod* method)
{
return (( int32_t (*) (NativeArray_1_t9D118727A643E61710D0A4DF5B0C8CD1A918A40B *, const RuntimeMethod*))NativeArray_1_GetHashCode_m84FE16CA6E708E33854BE0C102597EE6D16DED19_gshared)(__this, method);
}
// System.Int32 UnityEngine.XR.ARSubsystems.XRPointCloudData::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XRPointCloudData_GetHashCode_mC10886AFDA538D306F9E455166BB6D2F81071912 (XRPointCloudData_t3AFE7A70A93C061F8C3B3B7AEDE07EDF6A86B177 * __this, const RuntimeMethod* method);
// System.Boolean UnityEngine.XR.ARSubsystems.XRPointCloudData::Equals(UnityEngine.XR.ARSubsystems.XRPointCloudData)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XRPointCloudData_Equals_m6655FF22F1E7FE07B0A71ACE455A742E8DF7DAEA (XRPointCloudData_t3AFE7A70A93C061F8C3B3B7AEDE07EDF6A86B177 * __this, XRPointCloudData_t3AFE7A70A93C061F8C3B3B7AEDE07EDF6A86B177 ___other0, const RuntimeMethod* method);
// System.Boolean UnityEngine.XR.ARSubsystems.XRPointCloudData::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XRPointCloudData_Equals_m5553859ECF1F500F0153472EA6D6E547D251936D (XRPointCloudData_t3AFE7A70A93C061F8C3B3B7AEDE07EDF6A86B177 * __this, RuntimeObject * ___obj0, const RuntimeMethod* method);
// System.String UnityEngine.XR.ARSubsystems.XRPointCloudData::ToString()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XRPointCloudData_ToString_m9712C0206584CBD90DF2A44CE36DDC78141E607A (XRPointCloudData_t3AFE7A70A93C061F8C3B3B7AEDE07EDF6A86B177 * __this, const RuntimeMethod* method);
// System.Boolean Unity.Collections.NativeArray`1<System.Single>::Equals(Unity.Collections.NativeArray`1<!0>)
inline bool NativeArray_1_Equals_m71BD7AE6B5085F75CED3D638275DCFF43B231A5B (NativeArray_1_t5F920DC5A531D604D161A0FAD3479B5BFE0D9232 * __this, NativeArray_1_t5F920DC5A531D604D161A0FAD3479B5BFE0D9232 ___other0, const RuntimeMethod* method)
{
return (( bool (*) (NativeArray_1_t5F920DC5A531D604D161A0FAD3479B5BFE0D9232 *, NativeArray_1_t5F920DC5A531D604D161A0FAD3479B5BFE0D9232 , const RuntimeMethod*))NativeArray_1_Equals_m71BD7AE6B5085F75CED3D638275DCFF43B231A5B_gshared)(__this, ___other0, method);
}
// System.Boolean Unity.Collections.NativeArray`1<System.UInt64>::Equals(Unity.Collections.NativeArray`1<!0>)
inline bool NativeArray_1_Equals_m982D9159B14354AF45D0234A0ACF47BF81D62A99 (NativeArray_1_t9D118727A643E61710D0A4DF5B0C8CD1A918A40B * __this, NativeArray_1_t9D118727A643E61710D0A4DF5B0C8CD1A918A40B ___other0, const RuntimeMethod* method)
{
return (( bool (*) (NativeArray_1_t9D118727A643E61710D0A4DF5B0C8CD1A918A40B *, NativeArray_1_t9D118727A643E61710D0A4DF5B0C8CD1A918A40B , const RuntimeMethod*))NativeArray_1_Equals_m982D9159B14354AF45D0234A0ACF47BF81D62A99_gshared)(__this, ___other0, method);
}
// UnityEngine.XR.ARSubsystems.TrackableId UnityEngine.XR.ARSubsystems.XRRaycast::get_trackableId()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B XRRaycast_get_trackableId_m58733DD621FACDF9F32633AA0247FDDE4B6F4EBE_inline (XRRaycast_tA18F9107EFF1D692E70EF15233BB6134A5F66C55 * __this, const RuntimeMethod* method);
// UnityEngine.Pose UnityEngine.XR.ARSubsystems.XRRaycast::get_pose()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A XRRaycast_get_pose_m62D623D6E37AE82B0E223804F034E604037E24E1_inline (XRRaycast_tA18F9107EFF1D692E70EF15233BB6134A5F66C55 * __this, const RuntimeMethod* method);
// UnityEngine.XR.ARSubsystems.TrackingState UnityEngine.XR.ARSubsystems.XRRaycast::get_trackingState()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t XRRaycast_get_trackingState_m8A926660A7D03F72E558198E760AE01936FB8DF0_inline (XRRaycast_tA18F9107EFF1D692E70EF15233BB6134A5F66C55 * __this, const RuntimeMethod* method);
// System.IntPtr UnityEngine.XR.ARSubsystems.XRRaycast::get_nativePtr()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR intptr_t XRRaycast_get_nativePtr_m079CE750F279F664A8D524ACA2D070056143389D_inline (XRRaycast_tA18F9107EFF1D692E70EF15233BB6134A5F66C55 * __this, const RuntimeMethod* method);
// System.Single UnityEngine.XR.ARSubsystems.XRRaycast::get_distance()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float XRRaycast_get_distance_m4D3B928473544B72D50CF70503B18DBC75951263_inline (XRRaycast_tA18F9107EFF1D692E70EF15233BB6134A5F66C55 * __this, const RuntimeMethod* method);
// UnityEngine.XR.ARSubsystems.TrackableId UnityEngine.XR.ARSubsystems.XRRaycast::get_hitTrackableId()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B XRRaycast_get_hitTrackableId_mA4EE855CDEE8AC2D109FDE58A7EF4AED262CBFFE_inline (XRRaycast_tA18F9107EFF1D692E70EF15233BB6134A5F66C55 * __this, const RuntimeMethod* method);
// System.Void UnityEngine.XR.ARSubsystems.XRRaycast::.ctor(UnityEngine.XR.ARSubsystems.TrackableId,UnityEngine.Pose,UnityEngine.XR.ARSubsystems.TrackingState,System.IntPtr,System.Single,UnityEngine.XR.ARSubsystems.TrackableId)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRRaycast__ctor_mCB8C71860ADB4EEEAECBB9D2FD6373FA7EE13A48 (XRRaycast_tA18F9107EFF1D692E70EF15233BB6134A5F66C55 * __this, TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B ___trackableId0, Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A ___pose1, int32_t ___trackingState2, intptr_t ___nativePtr3, float ___distance4, TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B ___hitTrackableId5, const RuntimeMethod* method);
// System.Int32 UnityEngine.XR.ARSubsystems.XRRaycast::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XRRaycast_GetHashCode_m68040849E5282B2DAEE10DEC5F13B22E69A9EA36 (XRRaycast_tA18F9107EFF1D692E70EF15233BB6134A5F66C55 * __this, const RuntimeMethod* method);
// System.Boolean UnityEngine.XR.ARSubsystems.XRRaycast::Equals(UnityEngine.XR.ARSubsystems.XRRaycast)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XRRaycast_Equals_m155EE0BDA8E10977C499A22B2EE32D252A960535 (XRRaycast_tA18F9107EFF1D692E70EF15233BB6134A5F66C55 * __this, XRRaycast_tA18F9107EFF1D692E70EF15233BB6134A5F66C55 ___other0, const RuntimeMethod* method);
// System.Boolean UnityEngine.XR.ARSubsystems.XRRaycast::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XRRaycast_Equals_m808F58AFF56D3598C410DBB759CD48CBEBFBE553 (XRRaycast_tA18F9107EFF1D692E70EF15233BB6134A5F66C55 * __this, RuntimeObject * ___obj0, const RuntimeMethod* method);
// UnityEngine.XR.ARSubsystems.TrackableId UnityEngine.XR.ARSubsystems.XRRaycastHit::get_trackableId()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B XRRaycastHit_get_trackableId_m39A90CBBE6D03C7C726715BEE8404A5411ACECBA_inline (XRRaycastHit_t94A3D13B245A9D0A7A7F2D0919DCAAC7C8DF8DDB * __this, const RuntimeMethod* method);
// UnityEngine.Pose UnityEngine.XR.ARSubsystems.XRRaycastHit::get_pose()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A XRRaycastHit_get_pose_m7374236222252D08D08C85145B88AF698FAA77F4_inline (XRRaycastHit_t94A3D13B245A9D0A7A7F2D0919DCAAC7C8DF8DDB * __this, const RuntimeMethod* method);
// System.Single UnityEngine.XR.ARSubsystems.XRRaycastHit::get_distance()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float XRRaycastHit_get_distance_m51570C654B1EED732C9EE7C73D51B13B9CF8262B_inline (XRRaycastHit_t94A3D13B245A9D0A7A7F2D0919DCAAC7C8DF8DDB * __this, const RuntimeMethod* method);
// UnityEngine.XR.ARSubsystems.TrackableType UnityEngine.XR.ARSubsystems.XRRaycastHit::get_hitType()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t XRRaycastHit_get_hitType_m14A0398215ED8B10A1E505427C7584100189C222_inline (XRRaycastHit_t94A3D13B245A9D0A7A7F2D0919DCAAC7C8DF8DDB * __this, const RuntimeMethod* method);
// System.Void UnityEngine.XR.ARSubsystems.XRRaycastHit::.ctor(UnityEngine.XR.ARSubsystems.TrackableId,UnityEngine.Pose,System.Single,UnityEngine.XR.ARSubsystems.TrackableType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRRaycastHit__ctor_mF47DE3277FA881FCB8E74A5ADEC8E9624F00900F (XRRaycastHit_t94A3D13B245A9D0A7A7F2D0919DCAAC7C8DF8DDB * __this, TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B ___trackableId0, Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A ___pose1, float ___distance2, int32_t ___hitType3, const RuntimeMethod* method);
// System.Int32 UnityEngine.XR.ARSubsystems.XRRaycastHit::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XRRaycastHit_GetHashCode_m3BA94B911CC05BEC9FB3D5BB2D37142929AF3F33 (XRRaycastHit_t94A3D13B245A9D0A7A7F2D0919DCAAC7C8DF8DDB * __this, const RuntimeMethod* method);
// System.Boolean UnityEngine.XR.ARSubsystems.XRRaycastHit::Equals(UnityEngine.XR.ARSubsystems.XRRaycastHit)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XRRaycastHit_Equals_m84983BF79308ADA4ED84E210840E2F950B549FA0 (XRRaycastHit_t94A3D13B245A9D0A7A7F2D0919DCAAC7C8DF8DDB * __this, XRRaycastHit_t94A3D13B245A9D0A7A7F2D0919DCAAC7C8DF8DDB ___other0, const RuntimeMethod* method);
// System.Boolean UnityEngine.XR.ARSubsystems.XRRaycastHit::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XRRaycastHit_Equals_m227F3BD461F3EDA16E3AAF42E40B32607C58F8BB (XRRaycastHit_t94A3D13B245A9D0A7A7F2D0919DCAAC7C8DF8DDB * __this, RuntimeObject * ___obj0, const RuntimeMethod* method);
// System.Void UnityEngine.XR.ARSubsystems.TrackingSubsystem`4<UnityEngine.XR.ARSubsystems.XRRaycast,UnityEngine.XR.ARSubsystems.XRRaycastSubsystem,UnityEngine.XR.ARSubsystems.XRRaycastSubsystemDescriptor,UnityEngine.XR.ARSubsystems.XRRaycastSubsystem/Provider>::.ctor()
inline void TrackingSubsystem_4__ctor_mEBA68D2AF3E32AF7F962362371B19DD06C4951AF (TrackingSubsystem_4_t87A57AE1E1117ED73BBD3B84DD595F36FA975077 * __this, const RuntimeMethod* method)
{
(( void (*) (TrackingSubsystem_4_t87A57AE1E1117ED73BBD3B84DD595F36FA975077 *, const RuntimeMethod*))TrackingSubsystem_4__ctor_mFF3892B28340E6F3ED1F3DC251FF933173F496B6_gshared)(__this, method);
}
// !2 UnityEngine.SubsystemsImplementation.SubsystemWithProvider`3<UnityEngine.XR.ARSubsystems.XRRaycastSubsystem,UnityEngine.XR.ARSubsystems.XRRaycastSubsystemDescriptor,UnityEngine.XR.ARSubsystems.XRRaycastSubsystem/Provider>::get_provider()
inline Provider_tF185BE0541D2066CD242583CEFE7709DD22DD227 * SubsystemWithProvider_3_get_provider_mC92DCD08C8EA7888D3AA28D11BA2667499A7AA59_inline (SubsystemWithProvider_3_t6C72A4BB6DC4A9CC6B00E99D4A5EF1E1C9BBAF1E * __this, const RuntimeMethod* method)
{
return (( Provider_tF185BE0541D2066CD242583CEFE7709DD22DD227 * (*) (SubsystemWithProvider_3_t6C72A4BB6DC4A9CC6B00E99D4A5EF1E1C9BBAF1E *, const RuntimeMethod*))SubsystemWithProvider_3_get_provider_m6D630D758837E2C1BBCC328AAF4512ADFA1F48F3_gshared_inline)(__this, method);
}
// UnityEngine.XR.ARSubsystems.XRRaycast UnityEngine.XR.ARSubsystems.XRRaycast::get_defaultValue()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR XRRaycast_tA18F9107EFF1D692E70EF15233BB6134A5F66C55 XRRaycast_get_defaultValue_mC4E3CDC7E9F4C17F3708B82DCDA95FFD395C2BE0_inline (const RuntimeMethod* method);
// UnityEngine.XR.ARSubsystems.XRRaycastHit UnityEngine.XR.ARSubsystems.XRRaycastHit::get_defaultValue()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR XRRaycastHit_t94A3D13B245A9D0A7A7F2D0919DCAAC7C8DF8DDB XRRaycastHit_get_defaultValue_m23C7AB55A53165C8E2F13CC8F1B70104C37B833A_inline (const RuntimeMethod* method);
// System.Void UnityEngine.XR.ARSubsystems.XRRaycastSubsystemDescriptor::.ctor(UnityEngine.XR.ARSubsystems.XRRaycastSubsystemDescriptor/Cinfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRRaycastSubsystemDescriptor__ctor_m2185C8C50AB138A0C3B5165A92534E2E0D7D57A7 (XRRaycastSubsystemDescriptor_tB9891F63FC4871797BCD04DB7167142BE2049B2C * __this, Cinfo_tAC330BB49E2D0C7E18C66AB4018927A6EC856E01 ___cinfo0, const RuntimeMethod* method);
// System.Void UnityEngine.SubsystemsImplementation.SubsystemDescriptorWithProvider`2<UnityEngine.XR.ARSubsystems.XRRaycastSubsystem,UnityEngine.XR.ARSubsystems.XRRaycastSubsystem/Provider>::.ctor()
inline void SubsystemDescriptorWithProvider_2__ctor_m44F60A7BB6F0282109ED44817703F6FDE0DAD8E7 (SubsystemDescriptorWithProvider_2_t0E1C52F3F099638F0EFF9E03352A814E50092E22 * __this, const RuntimeMethod* method)
{
(( void (*) (SubsystemDescriptorWithProvider_2_t0E1C52F3F099638F0EFF9E03352A814E50092E22 *, const RuntimeMethod*))SubsystemDescriptorWithProvider_2__ctor_mF969744E314332AC762279256CF288A3769ABC93_gshared)(__this, method);
}
// System.String UnityEngine.XR.ARSubsystems.XRRaycastSubsystemDescriptor/Cinfo::get_id()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* Cinfo_get_id_m9A34BB7AAEFCB43E1627AA047A68C058D730EDC4_inline (Cinfo_tAC330BB49E2D0C7E18C66AB4018927A6EC856E01 * __this, const RuntimeMethod* method);
// System.Type UnityEngine.XR.ARSubsystems.XRRaycastSubsystemDescriptor/Cinfo::get_providerType()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Type_t * Cinfo_get_providerType_m6AFB0E29047AF8A34F780EBACFC0CDDA44AAF50C_inline (Cinfo_tAC330BB49E2D0C7E18C66AB4018927A6EC856E01 * __this, const RuntimeMethod* method);
// System.Type UnityEngine.XR.ARSubsystems.XRRaycastSubsystemDescriptor/Cinfo::get_subsystemTypeOverride()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Type_t * Cinfo_get_subsystemTypeOverride_mCFC851E4227172E1E01130E60CC64F4B2FFC8C63_inline (Cinfo_tAC330BB49E2D0C7E18C66AB4018927A6EC856E01 * __this, const RuntimeMethod* method);
// System.Boolean UnityEngine.XR.ARSubsystems.XRRaycastSubsystemDescriptor/Cinfo::get_supportsViewportBasedRaycast()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Cinfo_get_supportsViewportBasedRaycast_m76E31D4FF84E88050FE4E8B6C44FB6E4E71A5A3A_inline (Cinfo_tAC330BB49E2D0C7E18C66AB4018927A6EC856E01 * __this, const RuntimeMethod* method);
// System.Void UnityEngine.XR.ARSubsystems.XRRaycastSubsystemDescriptor::set_supportsViewportBasedRaycast(System.Boolean)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XRRaycastSubsystemDescriptor_set_supportsViewportBasedRaycast_m573D624059387ECB8EAB5386DDA18F04A8B74A29_inline (XRRaycastSubsystemDescriptor_tB9891F63FC4871797BCD04DB7167142BE2049B2C * __this, bool ___value0, const RuntimeMethod* method);
// System.Boolean UnityEngine.XR.ARSubsystems.XRRaycastSubsystemDescriptor/Cinfo::get_supportsWorldBasedRaycast()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Cinfo_get_supportsWorldBasedRaycast_m5242363FA90D64968F4ED236EC35973B7ABC180A_inline (Cinfo_tAC330BB49E2D0C7E18C66AB4018927A6EC856E01 * __this, const RuntimeMethod* method);
// System.Void UnityEngine.XR.ARSubsystems.XRRaycastSubsystemDescriptor::set_supportsWorldBasedRaycast(System.Boolean)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XRRaycastSubsystemDescriptor_set_supportsWorldBasedRaycast_mA63CC456D0FD28CD57DD2D0C3DEB3AC0DEA60C8B_inline (XRRaycastSubsystemDescriptor_tB9891F63FC4871797BCD04DB7167142BE2049B2C * __this, bool ___value0, const RuntimeMethod* method);
// UnityEngine.XR.ARSubsystems.TrackableType UnityEngine.XR.ARSubsystems.XRRaycastSubsystemDescriptor/Cinfo::get_supportedTrackableTypes()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t Cinfo_get_supportedTrackableTypes_m0DA573866D46012B650151C7538796542A3E2C70_inline (Cinfo_tAC330BB49E2D0C7E18C66AB4018927A6EC856E01 * __this, const RuntimeMethod* method);
// System.Void UnityEngine.XR.ARSubsystems.XRRaycastSubsystemDescriptor::set_supportedTrackableTypes(UnityEngine.XR.ARSubsystems.TrackableType)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XRRaycastSubsystemDescriptor_set_supportedTrackableTypes_mAFC6D42C7EFE47219C8461162392E994364BBD53_inline (XRRaycastSubsystemDescriptor_tB9891F63FC4871797BCD04DB7167142BE2049B2C * __this, int32_t ___value0, const RuntimeMethod* method);
// System.Boolean UnityEngine.XR.ARSubsystems.XRRaycastSubsystemDescriptor/Cinfo::get_supportsTrackedRaycasts()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Cinfo_get_supportsTrackedRaycasts_mB923DE37AE981FB26768CFF11B34A63F481A261A_inline (Cinfo_tAC330BB49E2D0C7E18C66AB4018927A6EC856E01 * __this, const RuntimeMethod* method);
// System.Void UnityEngine.XR.ARSubsystems.XRRaycastSubsystemDescriptor::set_supportsTrackedRaycasts(System.Boolean)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XRRaycastSubsystemDescriptor_set_supportsTrackedRaycasts_mD10EA0CD0E6F8FB9D499544B0DE27A5EBCED30C9_inline (XRRaycastSubsystemDescriptor_tB9891F63FC4871797BCD04DB7167142BE2049B2C * __this, bool ___value0, const RuntimeMethod* method);
// System.Boolean System.Nullable`1<UnityEngine.Vector2>::get_HasValue()
inline bool Nullable_1_get_HasValue_m68E887776727FD03427726B3149807754F1B770B_inline (Nullable_1_tF7B8C31618B00224A735E543E66CD257CB7E42FB * __this, const RuntimeMethod* method)
{
return (( bool (*) (Nullable_1_tF7B8C31618B00224A735E543E66CD257CB7E42FB *, const RuntimeMethod*))Nullable_1_get_HasValue_m68E887776727FD03427726B3149807754F1B770B_gshared_inline)(__this, method);
}
// !0 System.Nullable`1<UnityEngine.Vector2>::get_Value()
inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 Nullable_1_get_Value_m47529826F53174F3E761F99E88ACC08B02820E4D (Nullable_1_tF7B8C31618B00224A735E543E66CD257CB7E42FB * __this, const RuntimeMethod* method)
{
return (( Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 (*) (Nullable_1_tF7B8C31618B00224A735E543E66CD257CB7E42FB *, const RuntimeMethod*))Nullable_1_get_Value_m47529826F53174F3E761F99E88ACC08B02820E4D_gshared)(__this, method);
}
// System.Void UnityEngine.XR.ARSubsystems.XRReferenceImage::.ctor(UnityEngine.XR.ARSubsystems.SerializableGuid,UnityEngine.XR.ARSubsystems.SerializableGuid,System.Nullable`1<UnityEngine.Vector2>,System.String,UnityEngine.Texture2D)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRReferenceImage__ctor_m6D6343387F201C296D5D28E2A90D4BB1E83CDBDF (XRReferenceImage_tB1803A72EB581FB35B2CA944973679132A1D4467 * __this, SerializableGuid_t5F8E8B4FF33F91AF9B16C6CC3F75AE00014505CC ___guid0, SerializableGuid_t5F8E8B4FF33F91AF9B16C6CC3F75AE00014505CC ___textureGuid1, Nullable_1_tF7B8C31618B00224A735E543E66CD257CB7E42FB ___size2, String_t* ___name3, Texture2D_t9B604D0D8E28032123641A7E7338FA872E2698BF * ___texture4, const RuntimeMethod* method);
// System.Guid UnityEngine.XR.ARSubsystems.XRReferenceImage::get_textureGuid()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Guid_t XRReferenceImage_get_textureGuid_mDABB849D0FAF44F4FD86B6D794706DC6667A732F (XRReferenceImage_tB1803A72EB581FB35B2CA944973679132A1D4467 * __this, const RuntimeMethod* method);
// UnityEngine.Texture2D UnityEngine.XR.ARSubsystems.XRReferenceImage::get_texture()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Texture2D_t9B604D0D8E28032123641A7E7338FA872E2698BF * XRReferenceImage_get_texture_mA66A0D26E463C232CA008D5F44A23F9D0AA838B1_inline (XRReferenceImage_tB1803A72EB581FB35B2CA944973679132A1D4467 * __this, const RuntimeMethod* method);
// System.String UnityEngine.XR.ARSubsystems.XRReferenceImage::ToString()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XRReferenceImage_ToString_mF01AB8377D55DC49917B09F0C12A6B02BD5BEE78 (XRReferenceImage_tB1803A72EB581FB35B2CA944973679132A1D4467 * __this, const RuntimeMethod* method);
// System.Int32 UnityEngine.XR.ARSubsystems.XRReferenceImage::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XRReferenceImage_GetHashCode_m04CE90A2F730C6030216560645C2FD3A81C42985 (XRReferenceImage_tB1803A72EB581FB35B2CA944973679132A1D4467 * __this, const RuntimeMethod* method);
// System.Boolean UnityEngine.XR.ARSubsystems.XRReferenceImage::Equals(UnityEngine.XR.ARSubsystems.XRReferenceImage)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XRReferenceImage_Equals_m8F01D42083D0F6155DEDA29D457A0EDA600629AB (XRReferenceImage_tB1803A72EB581FB35B2CA944973679132A1D4467 * __this, XRReferenceImage_tB1803A72EB581FB35B2CA944973679132A1D4467 ___other0, const RuntimeMethod* method);
// System.Boolean UnityEngine.XR.ARSubsystems.XRReferenceImage::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XRReferenceImage_Equals_m85D0F3511051929A1F06F75CE015DA98934BC211 (XRReferenceImage_tB1803A72EB581FB35B2CA944973679132A1D4467 * __this, RuntimeObject * ___obj0, const RuntimeMethod* method);
// System.Int32 System.Collections.Generic.List`1<UnityEngine.XR.ARSubsystems.XRReferenceImage>::get_Count()
inline int32_t List_1_get_Count_m0793D9FA487681001881232EFD626044240AD7D4_inline (List_1_tBFEC44C63782254A7C0F22D20FC51F72002482EC * __this, const RuntimeMethod* method)
{
return (( int32_t (*) (List_1_tBFEC44C63782254A7C0F22D20FC51F72002482EC *, const RuntimeMethod*))List_1_get_Count_m0793D9FA487681001881232EFD626044240AD7D4_gshared_inline)(__this, method);
}
// System.Collections.Generic.List`1/Enumerator<!0> System.Collections.Generic.List`1<UnityEngine.XR.ARSubsystems.XRReferenceImage>::GetEnumerator()
inline Enumerator_tF7E144ED2E7144FAE6449F9929026EE5345AF091 List_1_GetEnumerator_mCA314B5D3AF7A49BB0A0F9A7678AB806E1634C84 (List_1_tBFEC44C63782254A7C0F22D20FC51F72002482EC * __this, const RuntimeMethod* method)
{
return (( Enumerator_tF7E144ED2E7144FAE6449F9929026EE5345AF091 (*) (List_1_tBFEC44C63782254A7C0F22D20FC51F72002482EC *, const RuntimeMethod*))List_1_GetEnumerator_mCA314B5D3AF7A49BB0A0F9A7678AB806E1634C84_gshared)(__this, method);
}
// System.Int32 UnityEngine.XR.ARSubsystems.XRReferenceImageLibrary::get_count()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XRReferenceImageLibrary_get_count_m23E1EA6C92988B7A11A51D532F4630CB7DE513BD (XRReferenceImageLibrary_tC415743C1DDCE2331D5B0F159B2A1D72A70C44B2 * __this, const RuntimeMethod* method);
// System.Void System.IndexOutOfRangeException::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void IndexOutOfRangeException__ctor_mC5747EC0E0F49AAD1AD782ACC7A0CCD80D192FEF (IndexOutOfRangeException_tDC9EF7A0346CE39E54DA1083F07BE6DFC3CE2EDD * __this, String_t* ___message0, const RuntimeMethod* method);
// !0 System.Collections.Generic.List`1<UnityEngine.XR.ARSubsystems.XRReferenceImage>::get_Item(System.Int32)
inline XRReferenceImage_tB1803A72EB581FB35B2CA944973679132A1D4467 List_1_get_Item_mB9758E724C2CACE0CC41D0AA2B78FCCB962CEA37_inline (List_1_tBFEC44C63782254A7C0F22D20FC51F72002482EC * __this, int32_t ___index0, const RuntimeMethod* method)
{
return (( XRReferenceImage_tB1803A72EB581FB35B2CA944973679132A1D4467 (*) (List_1_tBFEC44C63782254A7C0F22D20FC51F72002482EC *, int32_t, const RuntimeMethod*))List_1_get_Item_mB9758E724C2CACE0CC41D0AA2B78FCCB962CEA37_gshared_inline)(__this, ___index0, method);
}
// System.Int32 System.Collections.Generic.List`1<UnityEngine.XR.ARSubsystems.XRReferenceImage>::IndexOf(!0)
inline int32_t List_1_IndexOf_m66260729958DA566371F821C7BC904679A0D5745 (List_1_tBFEC44C63782254A7C0F22D20FC51F72002482EC * __this, XRReferenceImage_tB1803A72EB581FB35B2CA944973679132A1D4467 ___item0, const RuntimeMethod* method)
{
return (( int32_t (*) (List_1_tBFEC44C63782254A7C0F22D20FC51F72002482EC *, XRReferenceImage_tB1803A72EB581FB35B2CA944973679132A1D4467 , const RuntimeMethod*))List_1_IndexOf_m66260729958DA566371F821C7BC904679A0D5745_gshared)(__this, ___item0, method);
}
// System.Void System.Collections.Generic.List`1<UnityEngine.XR.ARSubsystems.XRReferenceImage>::.ctor()
inline void List_1__ctor_m07F165CAD958CA1F86EA27507BCC2528E3933D2B (List_1_tBFEC44C63782254A7C0F22D20FC51F72002482EC * __this, const RuntimeMethod* method)
{
(( void (*) (List_1_tBFEC44C63782254A7C0F22D20FC51F72002482EC *, const RuntimeMethod*))List_1__ctor_m07F165CAD958CA1F86EA27507BCC2528E3933D2B_gshared)(__this, method);
}
// System.Void UnityEngine.ScriptableObject::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ScriptableObject__ctor_m8DAE6CDCFA34E16F2543B02CC3669669FF203063 (ScriptableObject_t4361E08CEBF052C650D3666C7CEC37EB31DE116A * __this, const RuntimeMethod* method);
// System.Guid UnityEngine.XR.ARSubsystems.XRReferenceObject::get_guid()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Guid_t XRReferenceObject_get_guid_m5D1CC7D28AEF760CC4C8E7AEAE550549C879E204 (XRReferenceObject_t18877E1C9F50FF11192A86805D881349020032AE * __this, const RuntimeMethod* method);
// System.Boolean System.String::Equals(System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool String_Equals_mAFC6038D294F341434D9D67D7EADC7F97C556C9B (String_t* ___a0, String_t* ___b1, const RuntimeMethod* method);
// System.Boolean UnityEngine.XR.ARSubsystems.XRReferenceObject::Equals(UnityEngine.XR.ARSubsystems.XRReferenceObject)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XRReferenceObject_Equals_mE5200369D784FC38ACF7C16EAAC303D845B5F1B4 (XRReferenceObject_t18877E1C9F50FF11192A86805D881349020032AE * __this, XRReferenceObject_t18877E1C9F50FF11192A86805D881349020032AE ___other0, const RuntimeMethod* method);
// System.Int32 UnityEngine.XR.ARSubsystems.XRReferenceObject::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XRReferenceObject_GetHashCode_m088BCD3E046B562DDD8CBFB25AEBF9C5747E2A7C (XRReferenceObject_t18877E1C9F50FF11192A86805D881349020032AE * __this, const RuntimeMethod* method);
// System.Boolean UnityEngine.XR.ARSubsystems.XRReferenceObject::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XRReferenceObject_Equals_m63933178BE0E783B54B6A983BD3B5ADDF0817ADA (XRReferenceObject_t18877E1C9F50FF11192A86805D881349020032AE * __this, RuntimeObject * ___obj0, const RuntimeMethod* method);
// System.Int32 System.Collections.Generic.List`1<UnityEngine.XR.ARSubsystems.XRReferenceObject>::get_Count()
inline int32_t List_1_get_Count_m84A3D8A14DE6FA8E93A6DBA5F857B6E2861FF246_inline (List_1_t3A1F09045329A30B2867F24E69EC807BE36BEA9B * __this, const RuntimeMethod* method)
{
return (( int32_t (*) (List_1_t3A1F09045329A30B2867F24E69EC807BE36BEA9B *, const RuntimeMethod*))List_1_get_Count_m84A3D8A14DE6FA8E93A6DBA5F857B6E2861FF246_gshared_inline)(__this, method);
}
// System.Collections.Generic.List`1/Enumerator<!0> System.Collections.Generic.List`1<UnityEngine.XR.ARSubsystems.XRReferenceObject>::GetEnumerator()
inline Enumerator_t70FBF5DA5BEDE113A92C759B1356E6AA38D54708 List_1_GetEnumerator_m45E71AF4863349632BEE157CA69F3A54CF72443F (List_1_t3A1F09045329A30B2867F24E69EC807BE36BEA9B * __this, const RuntimeMethod* method)
{
return (( Enumerator_t70FBF5DA5BEDE113A92C759B1356E6AA38D54708 (*) (List_1_t3A1F09045329A30B2867F24E69EC807BE36BEA9B *, const RuntimeMethod*))List_1_GetEnumerator_m45E71AF4863349632BEE157CA69F3A54CF72443F_gshared)(__this, method);
}
// !0 System.Collections.Generic.List`1<UnityEngine.XR.ARSubsystems.XRReferenceObject>::get_Item(System.Int32)
inline XRReferenceObject_t18877E1C9F50FF11192A86805D881349020032AE List_1_get_Item_m198C10E9F0F98950D2C37B38E085E659EBF05243_inline (List_1_t3A1F09045329A30B2867F24E69EC807BE36BEA9B * __this, int32_t ___index0, const RuntimeMethod* method)
{
return (( XRReferenceObject_t18877E1C9F50FF11192A86805D881349020032AE (*) (List_1_t3A1F09045329A30B2867F24E69EC807BE36BEA9B *, int32_t, const RuntimeMethod*))List_1_get_Item_m198C10E9F0F98950D2C37B38E085E659EBF05243_gshared_inline)(__this, ___index0, method);
}
// System.Int32 System.Collections.Generic.List`1<UnityEngine.XR.ARSubsystems.XRReferenceObject>::IndexOf(!0)
inline int32_t List_1_IndexOf_m379AA5FE2596B5AD6A4E1EF381A223C3A54CE492 (List_1_t3A1F09045329A30B2867F24E69EC807BE36BEA9B * __this, XRReferenceObject_t18877E1C9F50FF11192A86805D881349020032AE ___item0, const RuntimeMethod* method)
{
return (( int32_t (*) (List_1_t3A1F09045329A30B2867F24E69EC807BE36BEA9B *, XRReferenceObject_t18877E1C9F50FF11192A86805D881349020032AE , const RuntimeMethod*))List_1_IndexOf_m379AA5FE2596B5AD6A4E1EF381A223C3A54CE492_gshared)(__this, ___item0, method);
}
// System.Void System.Collections.Generic.List`1<UnityEngine.XR.ARSubsystems.XRReferenceObject>::.ctor()
inline void List_1__ctor_m78DBF761B0A442EE07D9A114BC9981A3866E72CC (List_1_t3A1F09045329A30B2867F24E69EC807BE36BEA9B * __this, const RuntimeMethod* method)
{
(( void (*) (List_1_t3A1F09045329A30B2867F24E69EC807BE36BEA9B *, const RuntimeMethod*))List_1__ctor_m78DBF761B0A442EE07D9A114BC9981A3866E72CC_gshared)(__this, method);
}
// UnityEngine.XR.ARSubsystems.TrackableId UnityEngine.XR.ARSubsystems.XRReferencePoint::get_trackableId()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B XRReferencePoint_get_trackableId_mEE1B3349EA8F19E94BF8B76CBB644822317D2758_inline (XRReferencePoint_tF3ACF949B4AE1EC67F527F5D30DD8B912A814634 * __this, const RuntimeMethod* method);
// UnityEngine.Pose UnityEngine.XR.ARSubsystems.XRReferencePoint::get_pose()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A XRReferencePoint_get_pose_mFDB2701C343707F0FA479C2C775B77BEC2092D61_inline (XRReferencePoint_tF3ACF949B4AE1EC67F527F5D30DD8B912A814634 * __this, const RuntimeMethod* method);
// UnityEngine.XR.ARSubsystems.TrackingState UnityEngine.XR.ARSubsystems.XRReferencePoint::get_trackingState()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t XRReferencePoint_get_trackingState_m9C6DD336B0E91F39FA04F298B0543148433F11B2_inline (XRReferencePoint_tF3ACF949B4AE1EC67F527F5D30DD8B912A814634 * __this, const RuntimeMethod* method);
// System.IntPtr UnityEngine.XR.ARSubsystems.XRReferencePoint::get_nativePtr()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR intptr_t XRReferencePoint_get_nativePtr_m80EFF4D6D345E7B7CC5687B506C410C84B09EFBA_inline (XRReferencePoint_tF3ACF949B4AE1EC67F527F5D30DD8B912A814634 * __this, const RuntimeMethod* method);
// System.Guid UnityEngine.XR.ARSubsystems.XRReferencePoint::get_sessionId()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Guid_t XRReferencePoint_get_sessionId_mC498F0CAE614B4048B79742479252D923D4FED46_inline (XRReferencePoint_tF3ACF949B4AE1EC67F527F5D30DD8B912A814634 * __this, const RuntimeMethod* method);
// System.Int32 UnityEngine.XR.ARSubsystems.XRReferencePoint::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XRReferencePoint_GetHashCode_mD1C610489F910DB8AF23C5ED39B3930487B2F450 (XRReferencePoint_tF3ACF949B4AE1EC67F527F5D30DD8B912A814634 * __this, const RuntimeMethod* method);
// System.Boolean UnityEngine.XR.ARSubsystems.XRReferencePoint::Equals(UnityEngine.XR.ARSubsystems.XRReferencePoint)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XRReferencePoint_Equals_m139BA3698F72E149B33FB577B616A0043DBBB8E6 (XRReferencePoint_tF3ACF949B4AE1EC67F527F5D30DD8B912A814634 * __this, XRReferencePoint_tF3ACF949B4AE1EC67F527F5D30DD8B912A814634 ___other0, const RuntimeMethod* method);
// System.Boolean UnityEngine.XR.ARSubsystems.XRReferencePoint::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XRReferencePoint_Equals_m464FBE4D3BF000716BC20737865CC263128FCF9B (XRReferencePoint_tF3ACF949B4AE1EC67F527F5D30DD8B912A814634 * __this, RuntimeObject * ___obj0, const RuntimeMethod* method);
// !2 UnityEngine.SubsystemsImplementation.SubsystemWithProvider`3<UnityEngine.XR.ARSubsystems.XRReferencePointSubsystem,UnityEngine.XR.ARSubsystems.XRReferencePointSubsystemDescriptor,UnityEngine.XR.ARSubsystems.XRReferencePointSubsystem/Provider>::get_provider()
inline Provider_t7974F3BD624EC305575E361EE0BCAAA3DC5B253C * SubsystemWithProvider_3_get_provider_m54FA9023920512A3EC6956B1E999FFA426604CD8_inline (SubsystemWithProvider_3_tBEFCA8C8D6BE0554DE28CB542681793993E3C7C3 * __this, const RuntimeMethod* method)
{
return (( Provider_t7974F3BD624EC305575E361EE0BCAAA3DC5B253C * (*) (SubsystemWithProvider_3_tBEFCA8C8D6BE0554DE28CB542681793993E3C7C3 *, const RuntimeMethod*))SubsystemWithProvider_3_get_provider_m6D630D758837E2C1BBCC328AAF4512ADFA1F48F3_gshared_inline)(__this, method);
}
// UnityEngine.XR.ARSubsystems.XRReferencePoint UnityEngine.XR.ARSubsystems.XRReferencePoint::get_defaultValue()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR XRReferencePoint_tF3ACF949B4AE1EC67F527F5D30DD8B912A814634 XRReferencePoint_get_defaultValue_m9AF89D3F11BF14D60BDC4FB2F360911F56E17013_inline (const RuntimeMethod* method);
// System.Void UnityEngine.XR.ARSubsystems.TrackingSubsystem`4<UnityEngine.XR.ARSubsystems.XRReferencePoint,UnityEngine.XR.ARSubsystems.XRReferencePointSubsystem,UnityEngine.XR.ARSubsystems.XRReferencePointSubsystemDescriptor,UnityEngine.XR.ARSubsystems.XRReferencePointSubsystem/Provider>::.ctor()
inline void TrackingSubsystem_4__ctor_m8DF67D818E5517081896C05CF8F384D577161D69 (TrackingSubsystem_4_t0B2307E3EA3CA1C1A2EE084C333FC42E3F5590B0 * __this, const RuntimeMethod* method)
{
(( void (*) (TrackingSubsystem_4_t0B2307E3EA3CA1C1A2EE084C333FC42E3F5590B0 *, const RuntimeMethod*))TrackingSubsystem_4__ctor_mE19523A7606EFAD4BE7A4A102D5224D66B5FE0DE_gshared)(__this, method);
}
// !2 UnityEngine.SubsystemsImplementation.SubsystemWithProvider`3<UnityEngine.XR.ARSubsystems.XRSessionSubsystem,UnityEngine.XR.ARSubsystems.XRSessionSubsystemDescriptor,UnityEngine.XR.ARSubsystems.XRSessionSubsystem/Provider>::get_provider()
inline Provider_t4C3675997BB8AF3A6A32C3EC3C93C10E4D3E8D1A * SubsystemWithProvider_3_get_provider_m20316B506B5A09573D369C405120B428801947C9_inline (SubsystemWithProvider_3_t646DFCE31181130FB557E4AFA37198CF3170977F * __this, const RuntimeMethod* method)
{
return (( Provider_t4C3675997BB8AF3A6A32C3EC3C93C10E4D3E8D1A * (*) (SubsystemWithProvider_3_t646DFCE31181130FB557E4AFA37198CF3170977F *, const RuntimeMethod*))SubsystemWithProvider_3_get_provider_m6D630D758837E2C1BBCC328AAF4512ADFA1F48F3_gshared_inline)(__this, method);
}
// !1 UnityEngine.SubsystemsImplementation.SubsystemWithProvider`3<UnityEngine.XR.ARSubsystems.XRSessionSubsystem,UnityEngine.XR.ARSubsystems.XRSessionSubsystemDescriptor,UnityEngine.XR.ARSubsystems.XRSessionSubsystem/Provider>::get_subsystemDescriptor()
inline XRSessionSubsystemDescriptor_tC45A49D1179090D5C6D3B3DC1DC31CAB5A627B1C * SubsystemWithProvider_3_get_subsystemDescriptor_m37072FA7A4F1A2CACCCD955D446491B861FF9E6E_inline (SubsystemWithProvider_3_t646DFCE31181130FB557E4AFA37198CF3170977F * __this, const RuntimeMethod* method)
{
return (( XRSessionSubsystemDescriptor_tC45A49D1179090D5C6D3B3DC1DC31CAB5A627B1C * (*) (SubsystemWithProvider_3_t646DFCE31181130FB557E4AFA37198CF3170977F *, const RuntimeMethod*))SubsystemWithProvider_3_get_subsystemDescriptor_m7FBB308E48CF5F204D7EB25F2E4BE1FC4F940998_gshared_inline)(__this, method);
}
// System.Boolean UnityEngine.XR.ARSubsystems.XRSessionSubsystemDescriptor::get_supportsInstall()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool XRSessionSubsystemDescriptor_get_supportsInstall_mEBC6C00B6B07C4F0511E6CADEB7FD7F6099A27D3_inline (XRSessionSubsystemDescriptor_tC45A49D1179090D5C6D3B3DC1DC31CAB5A627B1C * __this, const RuntimeMethod* method);
// System.Void UnityEngine.XR.ARSubsystems.DefaultConfigurationChooser::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DefaultConfigurationChooser__ctor_m01D5B274BA5A7C81A20C94A920681CAE8466A4BC (DefaultConfigurationChooser_tC3488EB08C98156663D851D9F0F0AD9294D4613F * __this, const RuntimeMethod* method);
// System.Void UnityEngine.SubsystemsImplementation.SubsystemWithProvider`3<UnityEngine.XR.ARSubsystems.XRSessionSubsystem,UnityEngine.XR.ARSubsystems.XRSessionSubsystemDescriptor,UnityEngine.XR.ARSubsystems.XRSessionSubsystem/Provider>::.ctor()
inline void SubsystemWithProvider_3__ctor_mD3D1B91DF52028332010B72032C7E8388C99CEA4 (SubsystemWithProvider_3_t646DFCE31181130FB557E4AFA37198CF3170977F * __this, const RuntimeMethod* method)
{
(( void (*) (SubsystemWithProvider_3_t646DFCE31181130FB557E4AFA37198CF3170977F *, const RuntimeMethod*))SubsystemWithProvider_3__ctor_m547D656ED6A22E04230EE777D2EB7A68BA51212F_gshared)(__this, method);
}
// Unity.Collections.NativeArray`1<UnityEngine.XR.ARSubsystems.ConfigurationDescriptor> UnityEngine.XR.ARSubsystems.XRSessionSubsystem::GetConfigurationDescriptors(Unity.Collections.Allocator)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NativeArray_1_tC9A9DFD8C5E8BBF71F83CBC0CCF7C4BC38E3A4CA XRSessionSubsystem_GetConfigurationDescriptors_m38E9B6B5B75399594BBF74FE3E1B685EBC7494A1 (XRSessionSubsystem_t8AD3C01568AA19BF038D23A6031FF9814CAF93CD * __this, int32_t ___allocator0, const RuntimeMethod* method);
// System.Boolean Unity.Collections.NativeArray`1<UnityEngine.XR.ARSubsystems.ConfigurationDescriptor>::get_IsCreated()
inline bool NativeArray_1_get_IsCreated_m558F60AA76D10E2CDBB1B2882F4175B8B9F9F9AB (NativeArray_1_tC9A9DFD8C5E8BBF71F83CBC0CCF7C4BC38E3A4CA * __this, const RuntimeMethod* method)
{
return (( bool (*) (NativeArray_1_tC9A9DFD8C5E8BBF71F83CBC0CCF7C4BC38E3A4CA *, const RuntimeMethod*))NativeArray_1_get_IsCreated_m558F60AA76D10E2CDBB1B2882F4175B8B9F9F9AB_gshared)(__this, method);
}
// Unity.Collections.NativeSlice`1<!0> Unity.Collections.NativeSlice`1<UnityEngine.XR.ARSubsystems.ConfigurationDescriptor>::op_Implicit(Unity.Collections.NativeArray`1<!0>)
inline NativeSlice_1_tEFBDB61DC6CB8E764B0E92727E8B9EA61662F8F2 NativeSlice_1_op_Implicit_m494BB4F27DEE7CD30ADD66B1A6FC945E828865D5 (NativeArray_1_tC9A9DFD8C5E8BBF71F83CBC0CCF7C4BC38E3A4CA ___array0, const RuntimeMethod* method)
{
return (( NativeSlice_1_tEFBDB61DC6CB8E764B0E92727E8B9EA61662F8F2 (*) (NativeArray_1_tC9A9DFD8C5E8BBF71F83CBC0CCF7C4BC38E3A4CA , const RuntimeMethod*))NativeSlice_1_op_Implicit_m494BB4F27DEE7CD30ADD66B1A6FC945E828865D5_gshared)(___array0, method);
}
// System.Void System.Nullable`1<UnityEngine.XR.ARSubsystems.Configuration>::.ctor(!0)
inline void Nullable_1__ctor_m92BC32A206E9876BAD178B5E19AD685B8894AB4C (Nullable_1_t0FF36C2ABCA6430FFCD4ED32922F18F36382E494 * __this, Configuration_t29C11C7E576D64F717543048BDA1EBCEF0CF60C0 ___value0, const RuntimeMethod* method)
{
(( void (*) (Nullable_1_t0FF36C2ABCA6430FFCD4ED32922F18F36382E494 *, Configuration_t29C11C7E576D64F717543048BDA1EBCEF0CF60C0 , const RuntimeMethod*))Nullable_1__ctor_m92BC32A206E9876BAD178B5E19AD685B8894AB4C_gshared)(__this, ___value0, method);
}
// System.Void Unity.Collections.NativeArray`1<UnityEngine.XR.ARSubsystems.ConfigurationDescriptor>::Dispose()
inline void NativeArray_1_Dispose_m366C5B6CC3F2B8D322B33FA8A94C30460A38C174 (NativeArray_1_tC9A9DFD8C5E8BBF71F83CBC0CCF7C4BC38E3A4CA * __this, const RuntimeMethod* method)
{
(( void (*) (NativeArray_1_tC9A9DFD8C5E8BBF71F83CBC0CCF7C4BC38E3A4CA *, const RuntimeMethod*))NativeArray_1_Dispose_m366C5B6CC3F2B8D322B33FA8A94C30460A38C174_gshared)(__this, method);
}
// UnityEngine.XR.ARSubsystems.Feature UnityEngine.XR.ARSubsystems.XRSessionSubsystem::get_requestedFeatures()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t XRSessionSubsystem_get_requestedFeatures_m3D5B22B790EC0E1CA2903F88DDC339ADC6E3805F (XRSessionSubsystem_t8AD3C01568AA19BF038D23A6031FF9814CAF93CD * __this, const RuntimeMethod* method);
// System.Nullable`1<UnityEngine.XR.ARSubsystems.Configuration> UnityEngine.XR.ARSubsystems.XRSessionSubsystem::DetermineConfiguration(UnityEngine.XR.ARSubsystems.Feature)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Nullable_1_t0FF36C2ABCA6430FFCD4ED32922F18F36382E494 XRSessionSubsystem_DetermineConfiguration_mC3CBA78160165C46FCB97DDA58E9B32A46B43770 (XRSessionSubsystem_t8AD3C01568AA19BF038D23A6031FF9814CAF93CD * __this, uint64_t ___features0, const RuntimeMethod* method);
// System.Void UnityEngine.XR.ARSubsystems.XRSessionSubsystem::set_currentConfiguration(System.Nullable`1<UnityEngine.XR.ARSubsystems.Configuration>)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XRSessionSubsystem_set_currentConfiguration_m676D72EA2E4E14328D3ADDF29C98D5397DE4A646_inline (XRSessionSubsystem_t8AD3C01568AA19BF038D23A6031FF9814CAF93CD * __this, Nullable_1_t0FF36C2ABCA6430FFCD4ED32922F18F36382E494 ___value0, const RuntimeMethod* method);
// System.Nullable`1<UnityEngine.XR.ARSubsystems.Configuration> UnityEngine.XR.ARSubsystems.XRSessionSubsystem::get_currentConfiguration()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Nullable_1_t0FF36C2ABCA6430FFCD4ED32922F18F36382E494 XRSessionSubsystem_get_currentConfiguration_m7B3DC4591DB239331BDEA94C32CA927E78C991CC_inline (XRSessionSubsystem_t8AD3C01568AA19BF038D23A6031FF9814CAF93CD * __this, const RuntimeMethod* method);
// System.Boolean System.Nullable`1<UnityEngine.XR.ARSubsystems.Configuration>::get_HasValue()
inline bool Nullable_1_get_HasValue_m965388873B2BD6BFE630C83A6B9D18EA421A8793_inline (Nullable_1_t0FF36C2ABCA6430FFCD4ED32922F18F36382E494 * __this, const RuntimeMethod* method)
{
return (( bool (*) (Nullable_1_t0FF36C2ABCA6430FFCD4ED32922F18F36382E494 *, const RuntimeMethod*))Nullable_1_get_HasValue_m965388873B2BD6BFE630C83A6B9D18EA421A8793_gshared_inline)(__this, method);
}
// !0 System.Nullable`1<UnityEngine.XR.ARSubsystems.Configuration>::get_Value()
inline Configuration_t29C11C7E576D64F717543048BDA1EBCEF0CF60C0 Nullable_1_get_Value_m3C3A95F64243501B1C7A94F24C463A2B13DC2E1A (Nullable_1_t0FF36C2ABCA6430FFCD4ED32922F18F36382E494 * __this, const RuntimeMethod* method)
{
return (( Configuration_t29C11C7E576D64F717543048BDA1EBCEF0CF60C0 (*) (Nullable_1_t0FF36C2ABCA6430FFCD4ED32922F18F36382E494 *, const RuntimeMethod*))Nullable_1_get_Value_m3C3A95F64243501B1C7A94F24C463A2B13DC2E1A_gshared)(__this, method);
}
// System.Void UnityEngine.XR.ARSubsystems.XRSessionSubsystemDescriptor::.ctor(UnityEngine.XR.ARSubsystems.XRSessionSubsystemDescriptor/Cinfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRSessionSubsystemDescriptor__ctor_mC3487128AC53B5697213AFF8B2F98F1C3288B3A7 (XRSessionSubsystemDescriptor_tC45A49D1179090D5C6D3B3DC1DC31CAB5A627B1C * __this, Cinfo_t2842A97DA95F40ECADDCA24A291B6114A3A5F71A ___cinfo0, const RuntimeMethod* method);
// System.Void UnityEngine.SubsystemsImplementation.SubsystemDescriptorWithProvider`2<UnityEngine.XR.ARSubsystems.XRSessionSubsystem,UnityEngine.XR.ARSubsystems.XRSessionSubsystem/Provider>::.ctor()
inline void SubsystemDescriptorWithProvider_2__ctor_m63E1420F5B2D7E40BDAAD6BC312979C25D61C6EE (SubsystemDescriptorWithProvider_2_tE9888364F17DF110619D7238068EB1EC98053AE5 * __this, const RuntimeMethod* method)
{
(( void (*) (SubsystemDescriptorWithProvider_2_tE9888364F17DF110619D7238068EB1EC98053AE5 *, const RuntimeMethod*))SubsystemDescriptorWithProvider_2__ctor_mF969744E314332AC762279256CF288A3769ABC93_gshared)(__this, method);
}
// System.String UnityEngine.XR.ARSubsystems.XRSessionSubsystemDescriptor/Cinfo::get_id()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* Cinfo_get_id_mA521F604882D1F4C6FD30262F3E2C3B0609BFC55_inline (Cinfo_t2842A97DA95F40ECADDCA24A291B6114A3A5F71A * __this, const RuntimeMethod* method);
// System.Type UnityEngine.XR.ARSubsystems.XRSessionSubsystemDescriptor/Cinfo::get_providerType()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Type_t * Cinfo_get_providerType_mC64DDA0FD5E23FD53F7B9DAEAF4433487436835E_inline (Cinfo_t2842A97DA95F40ECADDCA24A291B6114A3A5F71A * __this, const RuntimeMethod* method);
// System.Type UnityEngine.XR.ARSubsystems.XRSessionSubsystemDescriptor/Cinfo::get_subsystemTypeOverride()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Type_t * Cinfo_get_subsystemTypeOverride_mFB0EAD46EF91216924D0509C72DF82ADA526B99D_inline (Cinfo_t2842A97DA95F40ECADDCA24A291B6114A3A5F71A * __this, const RuntimeMethod* method);
// System.Boolean UnityEngine.XR.ARSubsystems.XRSessionSubsystemDescriptor/Cinfo::get_supportsInstall()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Cinfo_get_supportsInstall_m706A828C9AE61FF74DF4640D80E52148CDF4F3AD_inline (Cinfo_t2842A97DA95F40ECADDCA24A291B6114A3A5F71A * __this, const RuntimeMethod* method);
// System.Void UnityEngine.XR.ARSubsystems.XRSessionSubsystemDescriptor::set_supportsInstall(System.Boolean)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XRSessionSubsystemDescriptor_set_supportsInstall_mE8D2939BADC8A5579685249EEA3C12617416CEF2_inline (XRSessionSubsystemDescriptor_tC45A49D1179090D5C6D3B3DC1DC31CAB5A627B1C * __this, bool ___value0, const RuntimeMethod* method);
// System.Boolean UnityEngine.XR.ARSubsystems.XRSessionSubsystemDescriptor/Cinfo::get_supportsMatchFrameRate()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Cinfo_get_supportsMatchFrameRate_m1E603F47BF0A28EE5E7377A28D9D2BB29BFD3B6F_inline (Cinfo_t2842A97DA95F40ECADDCA24A291B6114A3A5F71A * __this, const RuntimeMethod* method);
// System.Void UnityEngine.XR.ARSubsystems.XRSessionSubsystemDescriptor::set_supportsMatchFrameRate(System.Boolean)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XRSessionSubsystemDescriptor_set_supportsMatchFrameRate_m9FB2B904E2E7E4EC51E2089C8DDE97463F4C031D_inline (XRSessionSubsystemDescriptor_tC45A49D1179090D5C6D3B3DC1DC31CAB5A627B1C * __this, bool ___value0, const RuntimeMethod* method);
// UnityEngine.ScreenOrientation UnityEngine.XR.ARSubsystems.XRSessionUpdateParams::get_screenOrientation()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t XRSessionUpdateParams_get_screenOrientation_m3200C056D5EF350333CBEC08C5BADCB3F9B3588A_inline (XRSessionUpdateParams_t106E075C3B348969D6F3B634195F295CE47DB77F * __this, const RuntimeMethod* method);
// System.Void UnityEngine.XR.ARSubsystems.XRSessionUpdateParams::set_screenOrientation(UnityEngine.ScreenOrientation)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XRSessionUpdateParams_set_screenOrientation_m958168FC8048AE33DC4757F9A1184520B15FD341_inline (XRSessionUpdateParams_t106E075C3B348969D6F3B634195F295CE47DB77F * __this, int32_t ___value0, const RuntimeMethod* method);
// UnityEngine.Vector2Int UnityEngine.XR.ARSubsystems.XRSessionUpdateParams::get_screenDimensions()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9 XRSessionUpdateParams_get_screenDimensions_m68257DCBBAEB4090559AC18A180C8E54D02F5118_inline (XRSessionUpdateParams_t106E075C3B348969D6F3B634195F295CE47DB77F * __this, const RuntimeMethod* method);
// System.Void UnityEngine.XR.ARSubsystems.XRSessionUpdateParams::set_screenDimensions(UnityEngine.Vector2Int)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XRSessionUpdateParams_set_screenDimensions_m3658D658C653B6ED72DB68F099A4512FE756D8F6_inline (XRSessionUpdateParams_t106E075C3B348969D6F3B634195F295CE47DB77F * __this, Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9 ___value0, const RuntimeMethod* method);
// System.Int32 UnityEngine.XR.ARSubsystems.XRSessionUpdateParams::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XRSessionUpdateParams_GetHashCode_mCCE320FCC4DE7EEF2FC1778BB15E422BAC190908 (XRSessionUpdateParams_t106E075C3B348969D6F3B634195F295CE47DB77F * __this, const RuntimeMethod* method);
// System.Boolean UnityEngine.XR.ARSubsystems.XRSessionUpdateParams::Equals(UnityEngine.XR.ARSubsystems.XRSessionUpdateParams)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XRSessionUpdateParams_Equals_m57475F3E7F97539B697A4DC77122F934C321ECD0 (XRSessionUpdateParams_t106E075C3B348969D6F3B634195F295CE47DB77F * __this, XRSessionUpdateParams_t106E075C3B348969D6F3B634195F295CE47DB77F ___other0, const RuntimeMethod* method);
// System.Boolean UnityEngine.XR.ARSubsystems.XRSessionUpdateParams::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XRSessionUpdateParams_Equals_m2501DC639F937DCBD2423619545AC556DE71F3B2 (XRSessionUpdateParams_t106E075C3B348969D6F3B634195F295CE47DB77F * __this, RuntimeObject * ___obj0, const RuntimeMethod* method);
// System.String UnityEngine.XR.ARSubsystems.XRSessionUpdateParams::ToString()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XRSessionUpdateParams_ToString_m01D74BEF4A53B620271579234011D2F6D0522598 (XRSessionUpdateParams_t106E075C3B348969D6F3B634195F295CE47DB77F * __this, const RuntimeMethod* method);
// System.IntPtr UnityEngine.XR.ARSubsystems.XRTextureDescriptor::get_nativeTexture()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR intptr_t XRTextureDescriptor_get_nativeTexture_mC7D28CAE1A948B378FF5966C85883508435C2B1A_inline (XRTextureDescriptor_t9CA857DCCC1208B74376787BE4F3008A01B29A57 * __this, const RuntimeMethod* method);
// System.Int32 UnityEngine.XR.ARSubsystems.XRTextureDescriptor::get_width()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t XRTextureDescriptor_get_width_m16F58793E411A03BDB01C19D0BCDBA8DC52455DC_inline (XRTextureDescriptor_t9CA857DCCC1208B74376787BE4F3008A01B29A57 * __this, const RuntimeMethod* method);
// System.Int32 UnityEngine.XR.ARSubsystems.XRTextureDescriptor::get_height()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t XRTextureDescriptor_get_height_mF20F82E1D3B8739A79F017147847B051FD33E554_inline (XRTextureDescriptor_t9CA857DCCC1208B74376787BE4F3008A01B29A57 * __this, const RuntimeMethod* method);
// System.Int32 UnityEngine.XR.ARSubsystems.XRTextureDescriptor::get_mipmapCount()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t XRTextureDescriptor_get_mipmapCount_mE8FD55B645419BA7DA6959B000B8218BE142B302_inline (XRTextureDescriptor_t9CA857DCCC1208B74376787BE4F3008A01B29A57 * __this, const RuntimeMethod* method);
// UnityEngine.TextureFormat UnityEngine.XR.ARSubsystems.XRTextureDescriptor::get_format()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t XRTextureDescriptor_get_format_mB5A486F3100EB333CF52F505ACB63E68C7CB511D_inline (XRTextureDescriptor_t9CA857DCCC1208B74376787BE4F3008A01B29A57 * __this, const RuntimeMethod* method);
// System.Int32 UnityEngine.XR.ARSubsystems.XRTextureDescriptor::get_propertyNameId()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t XRTextureDescriptor_get_propertyNameId_mF90DF67F19E16118CB3D31EB44E643F4C48DE7C8_inline (XRTextureDescriptor_t9CA857DCCC1208B74376787BE4F3008A01B29A57 * __this, const RuntimeMethod* method);
// System.Boolean System.IntPtr::op_Inequality(System.IntPtr,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool IntPtr_op_Inequality_m212AF0E66AA81FEDC982B1C8A44ADDA24B995EB8 (intptr_t ___value10, intptr_t ___value21, const RuntimeMethod* method);
// System.Boolean UnityEngine.XR.ARSubsystems.XRTextureDescriptor::get_valid()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XRTextureDescriptor_get_valid_m921AF29648A562E6C6D2CA5F0E4A84109368A1E6 (XRTextureDescriptor_t9CA857DCCC1208B74376787BE4F3008A01B29A57 * __this, const RuntimeMethod* method);
// System.Int32 UnityEngine.XR.ARSubsystems.XRTextureDescriptor::get_depth()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t XRTextureDescriptor_get_depth_m27FA31D85456F65E706B03743250CB3858EBE0E3_inline (XRTextureDescriptor_t9CA857DCCC1208B74376787BE4F3008A01B29A57 * __this, const RuntimeMethod* method);
// UnityEngine.Rendering.TextureDimension UnityEngine.XR.ARSubsystems.XRTextureDescriptor::get_dimension()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t XRTextureDescriptor_get_dimension_mAB82596EFC83FBC3477D496E77FD9B0579922CCC_inline (XRTextureDescriptor_t9CA857DCCC1208B74376787BE4F3008A01B29A57 * __this, const RuntimeMethod* method);
// System.Boolean UnityEngine.XR.ARSubsystems.XRTextureDescriptor::hasIdenticalTextureMetadata(UnityEngine.XR.ARSubsystems.XRTextureDescriptor)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XRTextureDescriptor_hasIdenticalTextureMetadata_mEEAE086BC369920DB89D8E38BA6A1133436100F2 (XRTextureDescriptor_t9CA857DCCC1208B74376787BE4F3008A01B29A57 * __this, XRTextureDescriptor_t9CA857DCCC1208B74376787BE4F3008A01B29A57 ___other0, const RuntimeMethod* method);
// System.Void UnityEngine.XR.ARSubsystems.XRTextureDescriptor::Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRTextureDescriptor_Reset_m7C4468143C7A9EA8B43068E809C8A392CCF31F09 (XRTextureDescriptor_t9CA857DCCC1208B74376787BE4F3008A01B29A57 * __this, const RuntimeMethod* method);
// System.Boolean UnityEngine.XR.ARSubsystems.XRTextureDescriptor::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XRTextureDescriptor_Equals_m37D3AFD7E110F62E8977937DD66AC053B3F64C8D (XRTextureDescriptor_t9CA857DCCC1208B74376787BE4F3008A01B29A57 * __this, RuntimeObject * ___obj0, const RuntimeMethod* method);
// System.String System.Int32::ToString()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Int32_ToString_m340C0A14D16799421EFDF8A81C8A16FA76D48411 (int32_t* __this, const RuntimeMethod* method);
// UnityEngine.XR.ARSubsystems.TrackableId UnityEngine.XR.ARSubsystems.XRTrackedImage::get_trackableId()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B XRTrackedImage_get_trackableId_m908642D8D46876C10767B693C55A4076AA0230D6_inline (XRTrackedImage_t92B53E0621C6D2E930761110E719F0E9580A722F * __this, const RuntimeMethod* method);
// System.Guid UnityEngine.XR.ARSubsystems.XRTrackedImage::get_sourceImageId()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Guid_t XRTrackedImage_get_sourceImageId_m7840008F6FBB7242723DBA7ADB29411BF199B063_inline (XRTrackedImage_t92B53E0621C6D2E930761110E719F0E9580A722F * __this, const RuntimeMethod* method);
// UnityEngine.Pose UnityEngine.XR.ARSubsystems.XRTrackedImage::get_pose()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A XRTrackedImage_get_pose_m2DA4B57E9B5317F353B2766538088CFF8991DAB1_inline (XRTrackedImage_t92B53E0621C6D2E930761110E719F0E9580A722F * __this, const RuntimeMethod* method);
// UnityEngine.Vector2 UnityEngine.XR.ARSubsystems.XRTrackedImage::get_size()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 XRTrackedImage_get_size_mBDB5B8715E7C74B9459198230517668BD215E75F_inline (XRTrackedImage_t92B53E0621C6D2E930761110E719F0E9580A722F * __this, const RuntimeMethod* method);
// UnityEngine.XR.ARSubsystems.TrackingState UnityEngine.XR.ARSubsystems.XRTrackedImage::get_trackingState()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t XRTrackedImage_get_trackingState_m7ADAE68E0B5A3D253B1E086276EE5BC5D9768E71_inline (XRTrackedImage_t92B53E0621C6D2E930761110E719F0E9580A722F * __this, const RuntimeMethod* method);
// System.IntPtr UnityEngine.XR.ARSubsystems.XRTrackedImage::get_nativePtr()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR intptr_t XRTrackedImage_get_nativePtr_mF92D042188F2FF5DADA33AB61235DC6CD874B202_inline (XRTrackedImage_t92B53E0621C6D2E930761110E719F0E9580A722F * __this, const RuntimeMethod* method);
// System.Int32 UnityEngine.XR.ARSubsystems.XRTrackedImage::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XRTrackedImage_GetHashCode_m312EB4C09316425C0F30B8988A915F647035846B (XRTrackedImage_t92B53E0621C6D2E930761110E719F0E9580A722F * __this, const RuntimeMethod* method);
// System.Boolean UnityEngine.XR.ARSubsystems.XRTrackedImage::Equals(UnityEngine.XR.ARSubsystems.XRTrackedImage)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XRTrackedImage_Equals_mFE06306D9BB3EBD3C7CCDD555A2F193ED4FE7D65 (XRTrackedImage_t92B53E0621C6D2E930761110E719F0E9580A722F * __this, XRTrackedImage_t92B53E0621C6D2E930761110E719F0E9580A722F ___other0, const RuntimeMethod* method);
// System.Boolean UnityEngine.XR.ARSubsystems.XRTrackedImage::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XRTrackedImage_Equals_m953C1CFB9A3879975873D13E24071F51C772635A (XRTrackedImage_t92B53E0621C6D2E930761110E719F0E9580A722F * __this, RuntimeObject * ___obj0, const RuntimeMethod* method);
// UnityEngine.XR.ARSubsystems.TrackableId UnityEngine.XR.ARSubsystems.XRTrackedObject::get_trackableId()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B XRTrackedObject_get_trackableId_mB62A1367121F404E7E641459F7A2DE4A35801E72_inline (XRTrackedObject_t247BBE67D4F9308544C4BAD807F321E0C404EC58 * __this, const RuntimeMethod* method);
// UnityEngine.Pose UnityEngine.XR.ARSubsystems.XRTrackedObject::get_pose()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A XRTrackedObject_get_pose_mCF3749FD97A427BF58737E1F72C958B688BF4B14_inline (XRTrackedObject_t247BBE67D4F9308544C4BAD807F321E0C404EC58 * __this, const RuntimeMethod* method);
// UnityEngine.XR.ARSubsystems.TrackingState UnityEngine.XR.ARSubsystems.XRTrackedObject::get_trackingState()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t XRTrackedObject_get_trackingState_m33C9F81469B2E6174337D76F6109B79B03975349_inline (XRTrackedObject_t247BBE67D4F9308544C4BAD807F321E0C404EC58 * __this, const RuntimeMethod* method);
// System.IntPtr UnityEngine.XR.ARSubsystems.XRTrackedObject::get_nativePtr()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR intptr_t XRTrackedObject_get_nativePtr_m13B4B110BB339AF7AF03B1219247112B4ABB38D8_inline (XRTrackedObject_t247BBE67D4F9308544C4BAD807F321E0C404EC58 * __this, const RuntimeMethod* method);
// System.Guid UnityEngine.XR.ARSubsystems.XRTrackedObject::get_referenceObjectGuid()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Guid_t XRTrackedObject_get_referenceObjectGuid_m277B42932D6C8D42820F47A888407FBE9B0A7436_inline (XRTrackedObject_t247BBE67D4F9308544C4BAD807F321E0C404EC58 * __this, const RuntimeMethod* method);
// System.Boolean UnityEngine.XR.ARSubsystems.XRTrackedObject::Equals(UnityEngine.XR.ARSubsystems.XRTrackedObject)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XRTrackedObject_Equals_mAA87562E27ABE20500A8537F56A551B584A551C5 (XRTrackedObject_t247BBE67D4F9308544C4BAD807F321E0C404EC58 * __this, XRTrackedObject_t247BBE67D4F9308544C4BAD807F321E0C404EC58 ___other0, const RuntimeMethod* method);
// System.Boolean UnityEngine.XR.ARSubsystems.XRTrackedObject::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XRTrackedObject_Equals_m20B63BFBF61F3D819390A5A574B9916CCE0A7F8B (XRTrackedObject_t247BBE67D4F9308544C4BAD807F321E0C404EC58 * __this, RuntimeObject * ___obj0, const RuntimeMethod* method);
// System.Int32 UnityEngine.XR.ARSubsystems.XRTrackedObject::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XRTrackedObject_GetHashCode_m0456DF4A009ED3B00F2036F603881D9DB74EDAF9 (XRTrackedObject_t247BBE67D4F9308544C4BAD807F321E0C404EC58 * __this, const RuntimeMethod* method);
// System.Boolean UnityEngine.XR.ARSubsystems.MutableRuntimeReferenceImageLibrary/Enumerator::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m2B35A4EE1CF9A5E1EA6B97AEDFAED2CC7F99D3C5 (Enumerator_t9B104B3EE1E7390464361D775D18230CF662A7D5 * __this, const RuntimeMethod* method);
// UnityEngine.XR.ARSubsystems.XRReferenceImage UnityEngine.XR.ARSubsystems.RuntimeReferenceImageLibrary::get_Item(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XRReferenceImage_tB1803A72EB581FB35B2CA944973679132A1D4467 RuntimeReferenceImageLibrary_get_Item_mEB525ED69F54BD63CE3942B99521D4D1E04B6CBB (RuntimeReferenceImageLibrary_t76072EC5637B1F0F8FD0A1BFD3AEAF954D6F8D6B * __this, int32_t ___index0, const RuntimeMethod* method);
// UnityEngine.XR.ARSubsystems.XRReferenceImage UnityEngine.XR.ARSubsystems.MutableRuntimeReferenceImageLibrary/Enumerator::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XRReferenceImage_tB1803A72EB581FB35B2CA944973679132A1D4467 Enumerator_get_Current_m5C9F6233409C9A2321C6CB831457C55C4FCB4570 (Enumerator_t9B104B3EE1E7390464361D775D18230CF662A7D5 * __this, const RuntimeMethod* method);
// System.Int32 UnityEngine.XR.ARSubsystems.MutableRuntimeReferenceImageLibrary/Enumerator::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Enumerator_GetHashCode_mB41365E33A4AC2A52659D36571BBCE9BC93C2546 (Enumerator_t9B104B3EE1E7390464361D775D18230CF662A7D5 * __this, const RuntimeMethod* method);
// System.Boolean UnityEngine.XR.ARSubsystems.MutableRuntimeReferenceImageLibrary/Enumerator::Equals(UnityEngine.XR.ARSubsystems.MutableRuntimeReferenceImageLibrary/Enumerator)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_Equals_mCBAAE58B6FD7DBD90F3C98F10F06C777E5781A98 (Enumerator_t9B104B3EE1E7390464361D775D18230CF662A7D5 * __this, Enumerator_t9B104B3EE1E7390464361D775D18230CF662A7D5 ___other0, const RuntimeMethod* method);
// System.Boolean UnityEngine.XR.ARSubsystems.MutableRuntimeReferenceImageLibrary/Enumerator::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_Equals_m5A39AA8617AA067134152ED2D95037C914B42AF4 (Enumerator_t9B104B3EE1E7390464361D775D18230CF662A7D5 * __this, RuntimeObject * ___obj0, const RuntimeMethod* method);
// System.Void UnityEngine.SubsystemsImplementation.SubsystemProvider`1<UnityEngine.XR.ARSubsystems.XRAnchorSubsystem>::.ctor()
inline void SubsystemProvider_1__ctor_m3070FB0F5EDD35A102DFE6DB270CB1423E80A059 (SubsystemProvider_1_t302358330269847780327C2298A4FFA7D79AF2BF * __this, const RuntimeMethod* method)
{
(( void (*) (SubsystemProvider_1_t302358330269847780327C2298A4FFA7D79AF2BF *, const RuntimeMethod*))SubsystemProvider_1__ctor_mB62E93FA12EE8AA30CF2373596DCFC4661014EFC_gshared)(__this, method);
}
// System.Void UnityEngine.XR.ARSubsystems.XRAnchorSubsystemDescriptor/Cinfo::set_id(System.String)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Cinfo_set_id_mCB169DF169C36D9D12651785DCBF71ABCC10FD9D_inline (Cinfo_tF42131D7F2B721976AAF20DD0240D9C46397F7F7 * __this, String_t* ___value0, const RuntimeMethod* method);
// System.Void UnityEngine.XR.ARSubsystems.XRAnchorSubsystemDescriptor/Cinfo::set_providerType(System.Type)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Cinfo_set_providerType_m9E012FF4CD325826F838F663BAEE045C452A3C26_inline (Cinfo_tF42131D7F2B721976AAF20DD0240D9C46397F7F7 * __this, Type_t * ___value0, const RuntimeMethod* method);
// System.Void UnityEngine.XR.ARSubsystems.XRAnchorSubsystemDescriptor/Cinfo::set_subsystemTypeOverride(System.Type)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Cinfo_set_subsystemTypeOverride_mC525A48B08F8F826275950FFB61C780C4AEA6A6B_inline (Cinfo_tF42131D7F2B721976AAF20DD0240D9C46397F7F7 * __this, Type_t * ___value0, const RuntimeMethod* method);
// System.Void UnityEngine.XR.ARSubsystems.XRAnchorSubsystemDescriptor/Cinfo::set_supportsTrackableAttachments(System.Boolean)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Cinfo_set_supportsTrackableAttachments_m0B0516A50FFA22C3F60483E3498DC6BB1D460995_inline (Cinfo_tF42131D7F2B721976AAF20DD0240D9C46397F7F7 * __this, bool ___value0, const RuntimeMethod* method);
// System.Int32 UnityEngine.XR.ARSubsystems.XRAnchorSubsystemDescriptor/Cinfo::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Cinfo_GetHashCode_mBBEF5C69D3B91763153EDE624C76AC428ECFABB1 (Cinfo_tF42131D7F2B721976AAF20DD0240D9C46397F7F7 * __this, const RuntimeMethod* method);
// System.Boolean UnityEngine.XR.ARSubsystems.XRAnchorSubsystemDescriptor/Cinfo::Equals(UnityEngine.XR.ARSubsystems.XRAnchorSubsystemDescriptor/Cinfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Cinfo_Equals_m07BCEC0FF4D8C2A43AE850689AC5AA4FC0603DE8 (Cinfo_tF42131D7F2B721976AAF20DD0240D9C46397F7F7 * __this, Cinfo_tF42131D7F2B721976AAF20DD0240D9C46397F7F7 ___other0, const RuntimeMethod* method);
// System.Boolean UnityEngine.XR.ARSubsystems.XRAnchorSubsystemDescriptor/Cinfo::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Cinfo_Equals_m8E52493318DDE5F675E85E0733F5F7CCDA3C8339 (Cinfo_tF42131D7F2B721976AAF20DD0240D9C46397F7F7 * __this, RuntimeObject * ___obj0, const RuntimeMethod* method);
// System.Void Unity.Collections.NativeArray`1<UnityEngine.XR.ARSubsystems.XRCameraConfiguration>::.ctor(System.Int32,Unity.Collections.Allocator,Unity.Collections.NativeArrayOptions)
inline void NativeArray_1__ctor_m55427120ACDC71253ECC88FB9FE3C72B9B8DC920 (NativeArray_1_t80D42D57D2D76B05EFDA2CF74AE660AB5FDD9545 * __this, int32_t ___length0, int32_t ___allocator1, int32_t ___options2, const RuntimeMethod* method)
{
(( void (*) (NativeArray_1_t80D42D57D2D76B05EFDA2CF74AE660AB5FDD9545 *, int32_t, int32_t, int32_t, const RuntimeMethod*))NativeArray_1__ctor_m55427120ACDC71253ECC88FB9FE3C72B9B8DC920_gshared)(__this, ___length0, ___allocator1, ___options2, method);
}
// System.Void Unity.Collections.NativeArray`1<UnityEngine.XR.ARSubsystems.XRTextureDescriptor>::.ctor(System.Int32,Unity.Collections.Allocator,Unity.Collections.NativeArrayOptions)
inline void NativeArray_1__ctor_m2BCB109D4076B26086589A4C8600C49A9F38FA7A (NativeArray_1_t290DD5A348463DD4415AFE27775047312478F952 * __this, int32_t ___length0, int32_t ___allocator1, int32_t ___options2, const RuntimeMethod* method)
{
(( void (*) (NativeArray_1_t290DD5A348463DD4415AFE27775047312478F952 *, int32_t, int32_t, int32_t, const RuntimeMethod*))NativeArray_1__ctor_m2BCB109D4076B26086589A4C8600C49A9F38FA7A_gshared)(__this, ___length0, ___allocator1, ___options2, method);
}
// UnityEngine.Shader UnityEngine.Shader::Find(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Shader_tB2355DC4F3CAF20B2F1AB5AABBF37C3555FFBC39 * Shader_Find_m596EC6EBDCA8C9D5D86E2410A319928C1E8E6B5A (String_t* ___name0, const RuntimeMethod* method);
// System.Void UnityEngine.Material::.ctor(UnityEngine.Shader)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Material__ctor_mD2A3BCD3B4F17F5C6E95F3B34DAF4B497B67127E (Material_t8927C00353A72755313F046D0CE85178AE8218EE * __this, Shader_tB2355DC4F3CAF20B2F1AB5AABBF37C3555FFBC39 * ___shader0, const RuntimeMethod* method);
// System.Void UnityEngine.SubsystemsImplementation.SubsystemProvider`1<UnityEngine.XR.ARSubsystems.XRCameraSubsystem>::.ctor()
inline void SubsystemProvider_1__ctor_m1FA71B1964321737193BC8E0C9C0D64FE79DDCC3 (SubsystemProvider_1_t3B6396AEE76B5D8268802608E3593AA3D48DB307 * __this, const RuntimeMethod* method)
{
(( void (*) (SubsystemProvider_1_t3B6396AEE76B5D8268802608E3593AA3D48DB307 *, const RuntimeMethod*))SubsystemProvider_1__ctor_mB62E93FA12EE8AA30CF2373596DCFC4661014EFC_gshared)(__this, method);
}
// System.Boolean UnityEngine.XR.ARSubsystems.XRCpuImage/Cinfo::Equals(UnityEngine.XR.ARSubsystems.XRCpuImage/Cinfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Cinfo_Equals_m52B0C058E8FB2AB4089B91E1EDD0DFD2F9F22642 (Cinfo_t4E32E30AF6973611F1DD0F47FC041ED3A8775DA6 * __this, Cinfo_t4E32E30AF6973611F1DD0F47FC041ED3A8775DA6 ___other0, const RuntimeMethod* method);
// System.Boolean UnityEngine.XR.ARSubsystems.XRCpuImage/Cinfo::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Cinfo_Equals_m8140023C141235A77C2153E9A8B54E5356EC6C6F (Cinfo_t4E32E30AF6973611F1DD0F47FC041ED3A8775DA6 * __this, RuntimeObject * ___obj0, const RuntimeMethod* method);
// System.Int32 UnityEngine.XR.ARSubsystems.XRCpuImage/Cinfo::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Cinfo_GetHashCode_m7AB2284B6770F059F37B7A7EB61C075F472BAE65 (Cinfo_t4E32E30AF6973611F1DD0F47FC041ED3A8775DA6 * __this, const RuntimeMethod* method);
// System.String UnityEngine.XR.ARSubsystems.XRCpuImage/Cinfo::ToString()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Cinfo_ToString_m4923B9CB2748C5E7CCAA6C817F47976B1E4B2FE1 (Cinfo_t4E32E30AF6973611F1DD0F47FC041ED3A8775DA6 * __this, const RuntimeMethod* method);
// UnityEngine.RectInt UnityEngine.XR.ARSubsystems.XRCpuImage/ConversionParams::get_inputRect()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RectInt_tE7B8105A280C1AC73A4157ED41F9B86C9BD91E49 ConversionParams_get_inputRect_mE75F22AF739DFB5506127DF164E0AEF851702756_inline (ConversionParams_t3DDB9752BA823641A302D0783C14048D9B09B74A * __this, const RuntimeMethod* method);
// UnityEngine.Vector2Int UnityEngine.XR.ARSubsystems.XRCpuImage/ConversionParams::get_outputDimensions()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9 ConversionParams_get_outputDimensions_m83C9D960C805CA2748AA9AAAC2A2986A397B7033_inline (ConversionParams_t3DDB9752BA823641A302D0783C14048D9B09B74A * __this, const RuntimeMethod* method);
// UnityEngine.TextureFormat UnityEngine.XR.ARSubsystems.XRCpuImage/ConversionParams::get_outputFormat()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t ConversionParams_get_outputFormat_m727E479981BF00635D645C88D4D987EB598A0E5F_inline (ConversionParams_t3DDB9752BA823641A302D0783C14048D9B09B74A * __this, const RuntimeMethod* method);
// UnityEngine.XR.ARSubsystems.XRCpuImage/Transformation UnityEngine.XR.ARSubsystems.XRCpuImage/ConversionParams::get_transformation()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t ConversionParams_get_transformation_mFB57F05831CF417808A6C41F170768D9F66A7EF3_inline (ConversionParams_t3DDB9752BA823641A302D0783C14048D9B09B74A * __this, const RuntimeMethod* method);
// System.Int32 UnityEngine.RectInt::get_width()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t RectInt_get_width_m7C3DBF05BE2DC727635FC9D7C778EACF0A9E4085 (RectInt_tE7B8105A280C1AC73A4157ED41F9B86C9BD91E49 * __this, const RuntimeMethod* method);
// System.Int32 UnityEngine.RectInt::get_height()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t RectInt_get_height_m5CCF18289CB154C1709AE02AA6375093ECA07DBC (RectInt_tE7B8105A280C1AC73A4157ED41F9B86C9BD91E49 * __this, const RuntimeMethod* method);
// System.Int32 UnityEngine.RectInt::get_x()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t RectInt_get_x_m2D7412BC4EE7871D19042F469D6C573016E39F79 (RectInt_tE7B8105A280C1AC73A4157ED41F9B86C9BD91E49 * __this, const RuntimeMethod* method);
// System.Int32 UnityEngine.RectInt::get_y()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t RectInt_get_y_mAEB15FA1B7CCD08DA9FCB978EE0BA45D6BB9FE33 (RectInt_tE7B8105A280C1AC73A4157ED41F9B86C9BD91E49 * __this, const RuntimeMethod* method);
// System.Int32 UnityEngine.XR.ARSubsystems.XRCpuImage/ConversionParams::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ConversionParams_GetHashCode_m317F3CF69F015FD4012B668A3195A50E8C18F436 (ConversionParams_t3DDB9752BA823641A302D0783C14048D9B09B74A * __this, const RuntimeMethod* method);
// System.Boolean UnityEngine.RectInt::Equals(UnityEngine.RectInt)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool RectInt_Equals_mAF3A442FB55544FF362006EDB9B2F225D32BDF6D (RectInt_tE7B8105A280C1AC73A4157ED41F9B86C9BD91E49 * __this, RectInt_tE7B8105A280C1AC73A4157ED41F9B86C9BD91E49 ___other0, const RuntimeMethod* method);
// System.Boolean UnityEngine.XR.ARSubsystems.XRCpuImage/ConversionParams::Equals(UnityEngine.XR.ARSubsystems.XRCpuImage/ConversionParams)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ConversionParams_Equals_m428ABCB343F2D25BEC8C48C064A607C19D4C6B4F (ConversionParams_t3DDB9752BA823641A302D0783C14048D9B09B74A * __this, ConversionParams_t3DDB9752BA823641A302D0783C14048D9B09B74A ___other0, const RuntimeMethod* method);
// System.Boolean UnityEngine.XR.ARSubsystems.XRCpuImage/ConversionParams::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ConversionParams_Equals_m9170E22223AA2514E0EAA66A74375460210EC11B (ConversionParams_t3DDB9752BA823641A302D0783C14048D9B09B74A * __this, RuntimeObject * ___obj0, const RuntimeMethod* method);
// System.String UnityEngine.XR.ARSubsystems.XRCpuImage/ConversionParams::ToString()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* ConversionParams_ToString_mB2F109D1B691D862EC98C1C9058F78C58CE832D3 (ConversionParams_t3DDB9752BA823641A302D0783C14048D9B09B74A * __this, const RuntimeMethod* method);
// System.Int32 UnityEngine.XR.ARSubsystems.XRCpuImage/Plane::get_rowStride()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t Plane_get_rowStride_mE6385B9F7D9D040FC613D16D859435F492CB213A_inline (Plane_tF421A9F250A5E61AFEE38069538AC8ECB9D3E22D * __this, const RuntimeMethod* method);
// System.Int32 UnityEngine.XR.ARSubsystems.XRCpuImage/Plane::get_pixelStride()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t Plane_get_pixelStride_m33EEE46027B124683ABAF3BC627812F963F29665_inline (Plane_tF421A9F250A5E61AFEE38069538AC8ECB9D3E22D * __this, const RuntimeMethod* method);
// Unity.Collections.NativeArray`1<System.Byte> UnityEngine.XR.ARSubsystems.XRCpuImage/Plane::get_data()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR NativeArray_1_t3C2855C5B238E8C6739D4C17833F244B95C0F785 Plane_get_data_mBA1EB2437E816B19D7A68440AE188F4E8543E108_inline (Plane_tF421A9F250A5E61AFEE38069538AC8ECB9D3E22D * __this, const RuntimeMethod* method);
// System.Int32 Unity.Collections.NativeArray`1<System.Byte>::GetHashCode()
inline int32_t NativeArray_1_GetHashCode_m13D81A3581866C33D8C9B13443F7342C9105EF98 (NativeArray_1_t3C2855C5B238E8C6739D4C17833F244B95C0F785 * __this, const RuntimeMethod* method)
{
return (( int32_t (*) (NativeArray_1_t3C2855C5B238E8C6739D4C17833F244B95C0F785 *, const RuntimeMethod*))NativeArray_1_GetHashCode_m13D81A3581866C33D8C9B13443F7342C9105EF98_gshared)(__this, method);
}
// System.Int32 UnityEngine.XR.ARSubsystems.XRCpuImage/Plane::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Plane_GetHashCode_mE6FB9627754D042BCE94DA2672023FE03BE24C81 (Plane_tF421A9F250A5E61AFEE38069538AC8ECB9D3E22D * __this, const RuntimeMethod* method);
// System.Boolean UnityEngine.XR.ARSubsystems.XRCpuImage/Plane::Equals(UnityEngine.XR.ARSubsystems.XRCpuImage/Plane)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Plane_Equals_mE56ABB7E1AE23CED9290A64F4B80D2FDC95AA7F6 (Plane_tF421A9F250A5E61AFEE38069538AC8ECB9D3E22D * __this, Plane_tF421A9F250A5E61AFEE38069538AC8ECB9D3E22D ___other0, const RuntimeMethod* method);
// System.Boolean UnityEngine.XR.ARSubsystems.XRCpuImage/Plane::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Plane_Equals_mAAF552DA4142C484FFEBA4C30EC7F14111523D68 (Plane_tF421A9F250A5E61AFEE38069538AC8ECB9D3E22D * __this, RuntimeObject * ___obj0, const RuntimeMethod* method);
// System.Boolean Unity.Collections.NativeArray`1<System.Byte>::Equals(Unity.Collections.NativeArray`1<!0>)
inline bool NativeArray_1_Equals_mF60658EAFF21BD4AC0990C4C8944C20761F178DA (NativeArray_1_t3C2855C5B238E8C6739D4C17833F244B95C0F785 * __this, NativeArray_1_t3C2855C5B238E8C6739D4C17833F244B95C0F785 ___other0, const RuntimeMethod* method)
{
return (( bool (*) (NativeArray_1_t3C2855C5B238E8C6739D4C17833F244B95C0F785 *, NativeArray_1_t3C2855C5B238E8C6739D4C17833F244B95C0F785 , const RuntimeMethod*))NativeArray_1_Equals_mF60658EAFF21BD4AC0990C4C8944C20761F178DA_gshared)(__this, ___other0, method);
}
// System.String UnityEngine.XR.ARSubsystems.XRCpuImage/Plane::ToString()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Plane_ToString_mDCB0EECF9BB9652F5E5BA2B36F51F1E4CF334238 (Plane_tF421A9F250A5E61AFEE38069538AC8ECB9D3E22D * __this, const RuntimeMethod* method);
// System.Void UnityEngine.SubsystemsImplementation.SubsystemProvider`1<UnityEngine.XR.ARSubsystems.XRDepthSubsystem>::.ctor()
inline void SubsystemProvider_1__ctor_m679358E7941E7FEBDCED0CC52E860E237B09BDE0 (SubsystemProvider_1_tBB539901FE99992CAA10A1EFDFA610E048498E98 * __this, const RuntimeMethod* method)
{
(( void (*) (SubsystemProvider_1_tBB539901FE99992CAA10A1EFDFA610E048498E98 *, const RuntimeMethod*))SubsystemProvider_1__ctor_mB62E93FA12EE8AA30CF2373596DCFC4661014EFC_gshared)(__this, method);
}
// System.Void UnityEngine.XR.ARSubsystems.XRDepthSubsystemDescriptor/Cinfo::set_providerType(System.Type)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Cinfo_set_providerType_m79B371C14F188233806BAB677302143650CD9A29_inline (Cinfo_t37F91E88FCD8623834BE1898FC146620538C08B1 * __this, Type_t * ___value0, const RuntimeMethod* method);
// System.Void UnityEngine.XR.ARSubsystems.XRDepthSubsystemDescriptor/Cinfo::set_subsystemTypeOverride(System.Type)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Cinfo_set_subsystemTypeOverride_mEF323B6CBB63FB7E5ECB4A6849F06C57BFDF8120_inline (Cinfo_t37F91E88FCD8623834BE1898FC146620538C08B1 * __this, Type_t * ___value0, const RuntimeMethod* method);
// UnityEngine.XR.ARSubsystems.XRDepthSubsystemDescriptor/Capabilities UnityEngine.XR.ARSubsystems.XRDepthSubsystemDescriptor/Cinfo::get_capabilities()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t Cinfo_get_capabilities_m09C807B048E192438A9B0D0C17808FF5BFF81A8A_inline (Cinfo_t37F91E88FCD8623834BE1898FC146620538C08B1 * __this, const RuntimeMethod* method);
// System.Void UnityEngine.XR.ARSubsystems.XRDepthSubsystemDescriptor/Cinfo::set_capabilities(UnityEngine.XR.ARSubsystems.XRDepthSubsystemDescriptor/Capabilities)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Cinfo_set_capabilities_mB2A17E458179A44C2EACB82699FBC5B5611C7580_inline (Cinfo_t37F91E88FCD8623834BE1898FC146620538C08B1 * __this, int32_t ___value0, const RuntimeMethod* method);
// System.Void UnityEngine.XR.ARSubsystems.XRDepthSubsystemDescriptor/Cinfo::set_supportsFeaturePoints(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Cinfo_set_supportsFeaturePoints_mD44DBE0A79D63D3234369E573653A81DC7FB8E1D (Cinfo_t37F91E88FCD8623834BE1898FC146620538C08B1 * __this, bool ___value0, const RuntimeMethod* method);
// System.Void UnityEngine.XR.ARSubsystems.XRDepthSubsystemDescriptor/Cinfo::set_supportsConfidence(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Cinfo_set_supportsConfidence_m78F76CAAFD5D667ADBED1580E1F8A1286B59C46D (Cinfo_t37F91E88FCD8623834BE1898FC146620538C08B1 * __this, bool ___value0, const RuntimeMethod* method);
// System.Void UnityEngine.XR.ARSubsystems.XRDepthSubsystemDescriptor/Cinfo::set_supportsUniqueIds(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Cinfo_set_supportsUniqueIds_mFF68A678A13F7C1BD9E157690649255A27369514 (Cinfo_t37F91E88FCD8623834BE1898FC146620538C08B1 * __this, bool ___value0, const RuntimeMethod* method);
// System.Boolean System.String::op_Equality(System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool String_op_Equality_m2B91EE68355F142F67095973D32EB5828B7B73CB (String_t* ___a0, String_t* ___b1, const RuntimeMethod* method);
// System.Boolean UnityEngine.XR.ARSubsystems.XRDepthSubsystemDescriptor/Cinfo::Equals(UnityEngine.XR.ARSubsystems.XRDepthSubsystemDescriptor/Cinfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Cinfo_Equals_m560240A9ABB2B3E0C71D2EF694812209060F7781 (Cinfo_t37F91E88FCD8623834BE1898FC146620538C08B1 * __this, Cinfo_t37F91E88FCD8623834BE1898FC146620538C08B1 ___other0, const RuntimeMethod* method);
// System.Boolean UnityEngine.XR.ARSubsystems.XRDepthSubsystemDescriptor/Cinfo::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Cinfo_Equals_m1FFC7731C8021381A825E2D56189CDCD1BC39FD1 (Cinfo_t37F91E88FCD8623834BE1898FC146620538C08B1 * __this, RuntimeObject * ___obj0, const RuntimeMethod* method);
// System.Int32 UnityEngine.XR.ARSubsystems.XRDepthSubsystemDescriptor/Cinfo::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Cinfo_GetHashCode_m93DAAACF242CBA5B8EE758CE4E04BCCF51639860 (Cinfo_t37F91E88FCD8623834BE1898FC146620538C08B1 * __this, const RuntimeMethod* method);
// System.Void UnityEngine.SubsystemsImplementation.SubsystemProvider`1<UnityEngine.XR.ARSubsystems.XREnvironmentProbeSubsystem>::.ctor()
inline void SubsystemProvider_1__ctor_m987248264A49939ACFFFF0D50F3AAAE526E80B67 (SubsystemProvider_1_tC3DB99A11F9F3210CE2ABA9FE09C127C5B13FF80 * __this, const RuntimeMethod* method)
{
(( void (*) (SubsystemProvider_1_tC3DB99A11F9F3210CE2ABA9FE09C127C5B13FF80 *, const RuntimeMethod*))SubsystemProvider_1__ctor_mB62E93FA12EE8AA30CF2373596DCFC4661014EFC_gshared)(__this, method);
}
// System.Void UnityEngine.SubsystemsImplementation.SubsystemProvider`1<UnityEngine.XR.ARSubsystems.XRFaceSubsystem>::.ctor()
inline void SubsystemProvider_1__ctor_m775D1DA5795E95D8D1220715C2B041DB989B9B02 (SubsystemProvider_1_t23EADEE126E953AEBF796C02B50539998EA56B78 * __this, const RuntimeMethod* method)
{
(( void (*) (SubsystemProvider_1_t23EADEE126E953AEBF796C02B50539998EA56B78 *, const RuntimeMethod*))SubsystemProvider_1__ctor_mB62E93FA12EE8AA30CF2373596DCFC4661014EFC_gshared)(__this, method);
}
// System.Void UnityEngine.SubsystemsImplementation.SubsystemProvider`1<UnityEngine.XR.ARSubsystems.XRHumanBodySubsystem>::.ctor()
inline void SubsystemProvider_1__ctor_m756AF5A05933094284FE3141F40DBAE7DBAE8FE1 (SubsystemProvider_1_tBF37BFFB47314B7D87E24F4C4903C90930C0302C * __this, const RuntimeMethod* method)
{
(( void (*) (SubsystemProvider_1_tBF37BFFB47314B7D87E24F4C4903C90930C0302C *, const RuntimeMethod*))SubsystemProvider_1__ctor_mB62E93FA12EE8AA30CF2373596DCFC4661014EFC_gshared)(__this, method);
}
// System.Void UnityEngine.SubsystemsImplementation.SubsystemProvider`1<UnityEngine.XR.ARSubsystems.XRImageTrackingSubsystem>::.ctor()
inline void SubsystemProvider_1__ctor_mC4C72A59ABE142F4F35FE24EFAF666ACF8450690 (SubsystemProvider_1_t3086BC462E1384FBB8137E64FA6C513FC002E440 * __this, const RuntimeMethod* method)
{
(( void (*) (SubsystemProvider_1_t3086BC462E1384FBB8137E64FA6C513FC002E440 *, const RuntimeMethod*))SubsystemProvider_1__ctor_mB62E93FA12EE8AA30CF2373596DCFC4661014EFC_gshared)(__this, method);
}
// System.Void UnityEngine.XR.ARSubsystems.XRImageTrackingSubsystemDescriptor/Cinfo::set_id(System.String)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Cinfo_set_id_m57970CF355AB638BAD860B9673F0E76B42126C1A_inline (Cinfo_tED92D7CBD16BE657927A6B7DB64A22DA21EB7D32 * __this, String_t* ___value0, const RuntimeMethod* method);
// System.Void UnityEngine.XR.ARSubsystems.XRImageTrackingSubsystemDescriptor/Cinfo::set_providerType(System.Type)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Cinfo_set_providerType_mCACA6EC48AB4B305E1515A312B32DC196AD9B92C_inline (Cinfo_tED92D7CBD16BE657927A6B7DB64A22DA21EB7D32 * __this, Type_t * ___value0, const RuntimeMethod* method);
// System.Void UnityEngine.XR.ARSubsystems.XRImageTrackingSubsystemDescriptor/Cinfo::set_subsystemTypeOverride(System.Type)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Cinfo_set_subsystemTypeOverride_m167DE9461D1FE4E4D8AB0EE25A7A4B0A947151D8_inline (Cinfo_tED92D7CBD16BE657927A6B7DB64A22DA21EB7D32 * __this, Type_t * ___value0, const RuntimeMethod* method);
// System.Void UnityEngine.XR.ARSubsystems.XRImageTrackingSubsystemDescriptor/Cinfo::set_supportsMovingImages(System.Boolean)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Cinfo_set_supportsMovingImages_m04BB57385FC0A2025414437DB1BEFBE97372E579_inline (Cinfo_tED92D7CBD16BE657927A6B7DB64A22DA21EB7D32 * __this, bool ___value0, const RuntimeMethod* method);
// System.Void UnityEngine.XR.ARSubsystems.XRImageTrackingSubsystemDescriptor/Cinfo::set_requiresPhysicalImageDimensions(System.Boolean)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Cinfo_set_requiresPhysicalImageDimensions_mC794914720C62ACB74173F165B3015ED9B5CA2A6_inline (Cinfo_tED92D7CBD16BE657927A6B7DB64A22DA21EB7D32 * __this, bool ___value0, const RuntimeMethod* method);
// System.Void UnityEngine.XR.ARSubsystems.XRImageTrackingSubsystemDescriptor/Cinfo::set_supportsMutableLibrary(System.Boolean)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Cinfo_set_supportsMutableLibrary_m434D9A05D0025989AA711BA50139FD348D127661_inline (Cinfo_tED92D7CBD16BE657927A6B7DB64A22DA21EB7D32 * __this, bool ___value0, const RuntimeMethod* method);
// System.Void UnityEngine.XR.ARSubsystems.XRImageTrackingSubsystemDescriptor/Cinfo::set_supportsImageValidation(System.Boolean)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Cinfo_set_supportsImageValidation_m9CA1173736665E4DC3B594EE3357416A8A20B266_inline (Cinfo_tED92D7CBD16BE657927A6B7DB64A22DA21EB7D32 * __this, bool ___value0, const RuntimeMethod* method);
// System.Int32 UnityEngine.XR.ARSubsystems.XRImageTrackingSubsystemDescriptor/Cinfo::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Cinfo_GetHashCode_m8DB95DB86F786705B32382E014B3A5B96F81F4B0 (Cinfo_tED92D7CBD16BE657927A6B7DB64A22DA21EB7D32 * __this, const RuntimeMethod* method);
// System.Boolean UnityEngine.XR.ARSubsystems.XRImageTrackingSubsystemDescriptor/Cinfo::Equals(UnityEngine.XR.ARSubsystems.XRImageTrackingSubsystemDescriptor/Cinfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Cinfo_Equals_m2D882FB6E58A034244EC05B2701C303C0763C3C1 (Cinfo_tED92D7CBD16BE657927A6B7DB64A22DA21EB7D32 * __this, Cinfo_tED92D7CBD16BE657927A6B7DB64A22DA21EB7D32 ___other0, const RuntimeMethod* method);
// System.Boolean UnityEngine.XR.ARSubsystems.XRImageTrackingSubsystemDescriptor/Cinfo::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Cinfo_Equals_m7D227238D404DAA7ED5C72A9C3843FE6CB852ED4 (Cinfo_tED92D7CBD16BE657927A6B7DB64A22DA21EB7D32 * __this, RuntimeObject * ___obj0, const RuntimeMethod* method);
// System.Void UnityEngine.SubsystemsImplementation.SubsystemProvider`1<UnityEngine.XR.ARSubsystems.XRObjectTrackingSubsystem>::.ctor()
inline void SubsystemProvider_1__ctor_m3216193D514525815B1785B92B434D1CB6BED267 (SubsystemProvider_1_t71FE677A1A2F32123FE4C7868D5943892028AE12 * __this, const RuntimeMethod* method)
{
(( void (*) (SubsystemProvider_1_t71FE677A1A2F32123FE4C7868D5943892028AE12 *, const RuntimeMethod*))SubsystemProvider_1__ctor_mB62E93FA12EE8AA30CF2373596DCFC4661014EFC_gshared)(__this, method);
}
// System.Boolean UnityEngine.XR.ARSubsystems.XRObjectTrackingSubsystemDescriptor/Capabilities::Equals(UnityEngine.XR.ARSubsystems.XRObjectTrackingSubsystemDescriptor/Capabilities)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Capabilities_Equals_m921C39E9F8B9A589D30635AF4D55428F9A48E9F7 (Capabilities_tC6F329DD5C73C6B9E04BE77A3AE0E52390BD8685 * __this, Capabilities_tC6F329DD5C73C6B9E04BE77A3AE0E52390BD8685 ___other0, const RuntimeMethod* method);
// System.Boolean UnityEngine.XR.ARSubsystems.XRObjectTrackingSubsystemDescriptor/Capabilities::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Capabilities_Equals_mBC54D72E0218CDA4D42F66F1B93C98E3FCC6F509 (Capabilities_tC6F329DD5C73C6B9E04BE77A3AE0E52390BD8685 * __this, RuntimeObject * ___obj0, const RuntimeMethod* method);
// System.Int32 UnityEngine.XR.ARSubsystems.XRObjectTrackingSubsystemDescriptor/Capabilities::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Capabilities_GetHashCode_m2CC9C750B6796CBBC10A34C6E42040FCF9626FBF (Capabilities_tC6F329DD5C73C6B9E04BE77A3AE0E52390BD8685 * __this, const RuntimeMethod* method);
// System.Boolean UnityEngine.XR.ARSubsystems.SegmentationStencilModeExtension::Enabled(UnityEngine.XR.ARSubsystems.HumanSegmentationStencilMode)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool SegmentationStencilModeExtension_Enabled_m8C420BAE2C6604ADCAD803BA36C2C78954B5F71E (int32_t ___segmentationStencilMode0, const RuntimeMethod* method);
// System.Boolean UnityEngine.XR.ARSubsystems.SegmentationDepthModeExtension::Enabled(UnityEngine.XR.ARSubsystems.HumanSegmentationDepthMode)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool SegmentationDepthModeExtension_Enabled_m3934709EF5C4CCD661E0188C103280BD96F1D9C6 (int32_t ___segmentationDepthMode0, const RuntimeMethod* method);
// System.Void UnityEngine.SubsystemsImplementation.SubsystemProvider`1<UnityEngine.XR.ARSubsystems.XROcclusionSubsystem>::.ctor()
inline void SubsystemProvider_1__ctor_m85B436C396E4816D5D62F8595921E532535FA734 (SubsystemProvider_1_t57D5C398A7A30AC3C3674CA126FAE612BC00F597 * __this, const RuntimeMethod* method)
{
(( void (*) (SubsystemProvider_1_t57D5C398A7A30AC3C3674CA126FAE612BC00F597 *, const RuntimeMethod*))SubsystemProvider_1__ctor_mB62E93FA12EE8AA30CF2373596DCFC4661014EFC_gshared)(__this, method);
}
// System.Void UnityEngine.SubsystemsImplementation.SubsystemProvider`1<UnityEngine.XR.ARSubsystems.XRParticipantSubsystem>::.ctor()
inline void SubsystemProvider_1__ctor_m83A2BF40051F2545CECFD837C92DF3AB37758AFA (SubsystemProvider_1_t3D6D4D936F16F3264F75D1BAB46A4A398F18F204 * __this, const RuntimeMethod* method)
{
(( void (*) (SubsystemProvider_1_t3D6D4D936F16F3264F75D1BAB46A4A398F18F204 *, const RuntimeMethod*))SubsystemProvider_1__ctor_mB62E93FA12EE8AA30CF2373596DCFC4661014EFC_gshared)(__this, method);
}
// System.Void UnityEngine.SubsystemsImplementation.SubsystemProvider`1<UnityEngine.XR.ARSubsystems.XRPlaneSubsystem>::.ctor()
inline void SubsystemProvider_1__ctor_mDB4B33AED139FADE39F8488116F811DA2F601EAF (SubsystemProvider_1_tF2F3B0C041BDD07A00CD49B25AE6016B61F24816 * __this, const RuntimeMethod* method)
{
(( void (*) (SubsystemProvider_1_tF2F3B0C041BDD07A00CD49B25AE6016B61F24816 *, const RuntimeMethod*))SubsystemProvider_1__ctor_mB62E93FA12EE8AA30CF2373596DCFC4661014EFC_gshared)(__this, method);
}
// System.Void UnityEngine.XR.ARSubsystems.XRPlaneSubsystemDescriptor/Cinfo::set_id(System.String)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Cinfo_set_id_m940361693A3C925B2180733D87611B5FDF0357D7_inline (Cinfo_tC49A76BF09DB3F926B17955E1B8D729DC9B272AD * __this, String_t* ___value0, const RuntimeMethod* method);
// System.Void UnityEngine.XR.ARSubsystems.XRPlaneSubsystemDescriptor/Cinfo::set_providerType(System.Type)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Cinfo_set_providerType_m8B6A7EE025CCB9B5B5E26E6F4C779DFE09955744_inline (Cinfo_tC49A76BF09DB3F926B17955E1B8D729DC9B272AD * __this, Type_t * ___value0, const RuntimeMethod* method);
// System.Void UnityEngine.XR.ARSubsystems.XRPlaneSubsystemDescriptor/Cinfo::set_subsystemTypeOverride(System.Type)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Cinfo_set_subsystemTypeOverride_mBC4F1CC20B4DF3D551BAFC1C38245F457E262A58_inline (Cinfo_tC49A76BF09DB3F926B17955E1B8D729DC9B272AD * __this, Type_t * ___value0, const RuntimeMethod* method);
// System.Void UnityEngine.XR.ARSubsystems.XRPlaneSubsystemDescriptor/Cinfo::set_supportsHorizontalPlaneDetection(System.Boolean)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Cinfo_set_supportsHorizontalPlaneDetection_mBC9B4572592B71328A96AF58DEB047528470C440_inline (Cinfo_tC49A76BF09DB3F926B17955E1B8D729DC9B272AD * __this, bool ___value0, const RuntimeMethod* method);
// System.Void UnityEngine.XR.ARSubsystems.XRPlaneSubsystemDescriptor/Cinfo::set_supportsVerticalPlaneDetection(System.Boolean)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Cinfo_set_supportsVerticalPlaneDetection_mFF310EF7B9F8D9C9F9689CF9D1D2BEDDFF93F9F0_inline (Cinfo_tC49A76BF09DB3F926B17955E1B8D729DC9B272AD * __this, bool ___value0, const RuntimeMethod* method);
// System.Void UnityEngine.XR.ARSubsystems.XRPlaneSubsystemDescriptor/Cinfo::set_supportsArbitraryPlaneDetection(System.Boolean)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Cinfo_set_supportsArbitraryPlaneDetection_m70B1D6D27946FB12BF0D3D3AF8C6DC8DC3F399B9_inline (Cinfo_tC49A76BF09DB3F926B17955E1B8D729DC9B272AD * __this, bool ___value0, const RuntimeMethod* method);
// System.Void UnityEngine.XR.ARSubsystems.XRPlaneSubsystemDescriptor/Cinfo::set_supportsBoundaryVertices(System.Boolean)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Cinfo_set_supportsBoundaryVertices_mC6F86EB28D38CC483AD8F9FD161013BDE3F4AFEF_inline (Cinfo_tC49A76BF09DB3F926B17955E1B8D729DC9B272AD * __this, bool ___value0, const RuntimeMethod* method);
// System.Void UnityEngine.XR.ARSubsystems.XRPlaneSubsystemDescriptor/Cinfo::set_supportsClassification(System.Boolean)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Cinfo_set_supportsClassification_mA3B11D7CA4F960C89E729E5161AD7CC3211B933C_inline (Cinfo_tC49A76BF09DB3F926B17955E1B8D729DC9B272AD * __this, bool ___value0, const RuntimeMethod* method);
// System.Boolean UnityEngine.XR.ARSubsystems.XRPlaneSubsystemDescriptor/Cinfo::Equals(UnityEngine.XR.ARSubsystems.XRPlaneSubsystemDescriptor/Cinfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Cinfo_Equals_m997D9E2FAF1A57953B2A2C95A4221C9EB82843BC (Cinfo_tC49A76BF09DB3F926B17955E1B8D729DC9B272AD * __this, Cinfo_tC49A76BF09DB3F926B17955E1B8D729DC9B272AD ___other0, const RuntimeMethod* method);
// System.Boolean UnityEngine.XR.ARSubsystems.XRPlaneSubsystemDescriptor/Cinfo::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Cinfo_Equals_m38EB24520E9273465E918F9F14D72FCE8EE4EB8B (Cinfo_tC49A76BF09DB3F926B17955E1B8D729DC9B272AD * __this, RuntimeObject * ___obj0, const RuntimeMethod* method);
// System.Int32 UnityEngine.XR.ARSubsystems.XRPlaneSubsystemDescriptor/Cinfo::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Cinfo_GetHashCode_m219A4B64FB8A60D947BA345FBD65292065581378 (Cinfo_tC49A76BF09DB3F926B17955E1B8D729DC9B272AD * __this, const RuntimeMethod* method);
// System.Void UnityEngine.SubsystemsImplementation.SubsystemProvider`1<UnityEngine.XR.ARSubsystems.XRRaycastSubsystem>::.ctor()
inline void SubsystemProvider_1__ctor_m42AA349CD0B3CDE6407D1BA528122A6C6C8B22EF (SubsystemProvider_1_t7ACBE98539B067B19E2D5BCC2B852277F4A38875 * __this, const RuntimeMethod* method)
{
(( void (*) (SubsystemProvider_1_t7ACBE98539B067B19E2D5BCC2B852277F4A38875 *, const RuntimeMethod*))SubsystemProvider_1__ctor_mB62E93FA12EE8AA30CF2373596DCFC4661014EFC_gshared)(__this, method);
}
// System.Void UnityEngine.XR.ARSubsystems.XRRaycastSubsystemDescriptor/Cinfo::set_id(System.String)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Cinfo_set_id_m0CB4DA3E552ED7940FBA88D8EE3BB6379EA255D6_inline (Cinfo_tAC330BB49E2D0C7E18C66AB4018927A6EC856E01 * __this, String_t* ___value0, const RuntimeMethod* method);
// System.Void UnityEngine.XR.ARSubsystems.XRRaycastSubsystemDescriptor/Cinfo::set_providerType(System.Type)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Cinfo_set_providerType_m20992869A706183D7180A2030C84B5445DCF0BE3_inline (Cinfo_tAC330BB49E2D0C7E18C66AB4018927A6EC856E01 * __this, Type_t * ___value0, const RuntimeMethod* method);
// System.Void UnityEngine.XR.ARSubsystems.XRRaycastSubsystemDescriptor/Cinfo::set_subsystemTypeOverride(System.Type)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Cinfo_set_subsystemTypeOverride_mD5425E55455A21B7361B847FD6B78998AC70CD5B_inline (Cinfo_tAC330BB49E2D0C7E18C66AB4018927A6EC856E01 * __this, Type_t * ___value0, const RuntimeMethod* method);
// System.Void UnityEngine.XR.ARSubsystems.XRRaycastSubsystemDescriptor/Cinfo::set_supportsViewportBasedRaycast(System.Boolean)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Cinfo_set_supportsViewportBasedRaycast_mCF77DEFDDC3931682A33A063DF2F25FFBF07B807_inline (Cinfo_tAC330BB49E2D0C7E18C66AB4018927A6EC856E01 * __this, bool ___value0, const RuntimeMethod* method);
// System.Void UnityEngine.XR.ARSubsystems.XRRaycastSubsystemDescriptor/Cinfo::set_supportsWorldBasedRaycast(System.Boolean)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Cinfo_set_supportsWorldBasedRaycast_m74BF70E612BCAFAD380C108700905E5B8C5425FA_inline (Cinfo_tAC330BB49E2D0C7E18C66AB4018927A6EC856E01 * __this, bool ___value0, const RuntimeMethod* method);
// System.Void UnityEngine.XR.ARSubsystems.XRRaycastSubsystemDescriptor/Cinfo::set_supportedTrackableTypes(UnityEngine.XR.ARSubsystems.TrackableType)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Cinfo_set_supportedTrackableTypes_mABC320F641164FC1DB2AB9DB3F1E075B6235A785_inline (Cinfo_tAC330BB49E2D0C7E18C66AB4018927A6EC856E01 * __this, int32_t ___value0, const RuntimeMethod* method);
// System.Void UnityEngine.XR.ARSubsystems.XRRaycastSubsystemDescriptor/Cinfo::set_supportsTrackedRaycasts(System.Boolean)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Cinfo_set_supportsTrackedRaycasts_mD7575B5CAA4BB3652786E2AE2C1B94CF8BEB423C_inline (Cinfo_tAC330BB49E2D0C7E18C66AB4018927A6EC856E01 * __this, bool ___value0, const RuntimeMethod* method);
// System.Int32 UnityEngine.XR.ARSubsystems.HashCode::Combine(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t HashCode_Combine_m23E4B1C1DC69FC295EAA04B5AC0ABB8BE40ABC9F (int32_t ___hash10, int32_t ___hash21, int32_t ___hash32, int32_t ___hash43, int32_t ___hash54, int32_t ___hash65, int32_t ___hash76, const RuntimeMethod* method);
// System.Int32 UnityEngine.XR.ARSubsystems.XRRaycastSubsystemDescriptor/Cinfo::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Cinfo_GetHashCode_mE07F77F64788F12838A7D8A20E07DE366DDAEEEA (Cinfo_tAC330BB49E2D0C7E18C66AB4018927A6EC856E01 * __this, const RuntimeMethod* method);
// System.Boolean UnityEngine.XR.ARSubsystems.XRRaycastSubsystemDescriptor/Cinfo::Equals(UnityEngine.XR.ARSubsystems.XRRaycastSubsystemDescriptor/Cinfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Cinfo_Equals_m96B4DD943D8AAA5D31B0B5BCD0EEC1F94E60F146 (Cinfo_tAC330BB49E2D0C7E18C66AB4018927A6EC856E01 * __this, Cinfo_tAC330BB49E2D0C7E18C66AB4018927A6EC856E01 ___other0, const RuntimeMethod* method);
// System.Boolean UnityEngine.XR.ARSubsystems.XRRaycastSubsystemDescriptor/Cinfo::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Cinfo_Equals_mFDD42918C99F796C9737C544D9858098C0241716 (Cinfo_tAC330BB49E2D0C7E18C66AB4018927A6EC856E01 * __this, RuntimeObject * ___obj0, const RuntimeMethod* method);
// System.String UnityEngine.XR.ARSubsystems.XRRaycastSubsystemDescriptor/Cinfo::ToString()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Cinfo_ToString_m5E549199F8D40CF630BB8ED6B46EC5F51E580BEB (Cinfo_tAC330BB49E2D0C7E18C66AB4018927A6EC856E01 * __this, const RuntimeMethod* method);
// UnityEngine.XR.ARSubsystems.Promise`1<T> UnityEngine.XR.ARSubsystems.Promise`1<UnityEngine.XR.ARSubsystems.SessionAvailability>::CreateResolvedPromise(T)
inline Promise_1_tB8B428F557CD6742430DB416C0B99C79CA1AA167 * Promise_1_CreateResolvedPromise_mDFDD3612998EF30142998D55C64B684BA09F4B1A (int32_t ___result0, const RuntimeMethod* method)
{
return (( Promise_1_tB8B428F557CD6742430DB416C0B99C79CA1AA167 * (*) (int32_t, const RuntimeMethod*))Promise_1_CreateResolvedPromise_m83C2B68BEF595E94B0BA8474C48C1D891ED05E44_gshared)(___result0, method);
}
// UnityEngine.XR.ARSubsystems.Promise`1<T> UnityEngine.XR.ARSubsystems.Promise`1<UnityEngine.XR.ARSubsystems.SessionInstallationStatus>::CreateResolvedPromise(T)
inline Promise_1_tB8B3F3631C923F82F653F3D73D6B3082CF7CDD88 * Promise_1_CreateResolvedPromise_m0539A4D1183B6650A6841CB26B4034A17958451A (int32_t ___result0, const RuntimeMethod* method)
{
return (( Promise_1_tB8B3F3631C923F82F653F3D73D6B3082CF7CDD88 * (*) (int32_t, const RuntimeMethod*))Promise_1_CreateResolvedPromise_m83C2B68BEF595E94B0BA8474C48C1D891ED05E44_gshared)(___result0, method);
}
// System.Void UnityEngine.SubsystemsImplementation.SubsystemProvider`1<UnityEngine.XR.ARSubsystems.XRSessionSubsystem>::.ctor()
inline void SubsystemProvider_1__ctor_mD86DEB0B4DF879B2C514AFA17DEACAA610EFDD66 (SubsystemProvider_1_tFA56F133FD9BCE90A1C4C7D15FFE2571963D8DE4 * __this, const RuntimeMethod* method)
{
(( void (*) (SubsystemProvider_1_tFA56F133FD9BCE90A1C4C7D15FFE2571963D8DE4 *, const RuntimeMethod*))SubsystemProvider_1__ctor_mB62E93FA12EE8AA30CF2373596DCFC4661014EFC_gshared)(__this, method);
}
// System.Void UnityEngine.XR.ARSubsystems.XRSessionSubsystemDescriptor/Cinfo::set_supportsInstall(System.Boolean)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Cinfo_set_supportsInstall_m05EE61C58E505A8F20DEA68862395341F1DAD3FD_inline (Cinfo_t2842A97DA95F40ECADDCA24A291B6114A3A5F71A * __this, bool ___value0, const RuntimeMethod* method);
// System.Void UnityEngine.XR.ARSubsystems.XRSessionSubsystemDescriptor/Cinfo::set_supportsMatchFrameRate(System.Boolean)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Cinfo_set_supportsMatchFrameRate_m9CB328CEF43BCE3E59F26A97D32AEE1D201F8787_inline (Cinfo_t2842A97DA95F40ECADDCA24A291B6114A3A5F71A * __this, bool ___value0, const RuntimeMethod* method);
// System.Void UnityEngine.XR.ARSubsystems.XRSessionSubsystemDescriptor/Cinfo::set_id(System.String)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Cinfo_set_id_m6A2CAB13FAD54AB05458DC5DE1FAB5C651E9D656_inline (Cinfo_t2842A97DA95F40ECADDCA24A291B6114A3A5F71A * __this, String_t* ___value0, const RuntimeMethod* method);
// System.Void UnityEngine.XR.ARSubsystems.XRSessionSubsystemDescriptor/Cinfo::set_providerType(System.Type)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Cinfo_set_providerType_m2BCF5FEFC25D812C3E7F00725B49AE02540B2F8E_inline (Cinfo_t2842A97DA95F40ECADDCA24A291B6114A3A5F71A * __this, Type_t * ___value0, const RuntimeMethod* method);
// System.Void UnityEngine.XR.ARSubsystems.XRSessionSubsystemDescriptor/Cinfo::set_subsystemTypeOverride(System.Type)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Cinfo_set_subsystemTypeOverride_m30FDD93193E0D694ABB33E184552AAF1A8AA36E6_inline (Cinfo_t2842A97DA95F40ECADDCA24A291B6114A3A5F71A * __this, Type_t * ___value0, const RuntimeMethod* method);
// System.Int32 UnityEngine.XR.ARSubsystems.XRSessionSubsystemDescriptor/Cinfo::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Cinfo_GetHashCode_m52D192E832A52B87FB2F03DB84EB47EED7DCD48C (Cinfo_t2842A97DA95F40ECADDCA24A291B6114A3A5F71A * __this, const RuntimeMethod* method);
// System.Boolean UnityEngine.XR.ARSubsystems.XRSessionSubsystemDescriptor/Cinfo::Equals(UnityEngine.XR.ARSubsystems.XRSessionSubsystemDescriptor/Cinfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Cinfo_Equals_m1C37149A7375CC94768E18102A1CB1AED3E3FF77 (Cinfo_t2842A97DA95F40ECADDCA24A291B6114A3A5F71A * __this, Cinfo_t2842A97DA95F40ECADDCA24A291B6114A3A5F71A ___other0, const RuntimeMethod* method);
// System.Boolean UnityEngine.XR.ARSubsystems.XRSessionSubsystemDescriptor/Cinfo::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Cinfo_Equals_m515E1A8509A7C1472469FD535B7CBE5D58E45A78 (Cinfo_t2842A97DA95F40ECADDCA24A291B6114A3A5F71A * __this, RuntimeObject * ___obj0, const RuntimeMethod* method);
// System.IntPtr UnityEngine.XR.ARSubsystems.XRCpuImage/Plane/Cinfo::get_dataPtr()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR intptr_t Cinfo_get_dataPtr_m72B8A6BDAA98FA3CF92A9E03807130E4B6341B35_inline (Cinfo_t11C577CFE4A1D91F887A6423F6D1350DA45CA5FC * __this, const RuntimeMethod* method);
// System.Int32 UnityEngine.XR.ARSubsystems.XRCpuImage/Plane/Cinfo::get_dataLength()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t Cinfo_get_dataLength_mBF9DA90E69A88EF50923C839B5CE8A03264EAB9A_inline (Cinfo_t11C577CFE4A1D91F887A6423F6D1350DA45CA5FC * __this, const RuntimeMethod* method);
// System.Int32 UnityEngine.XR.ARSubsystems.XRCpuImage/Plane/Cinfo::get_rowStride()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t Cinfo_get_rowStride_m67E7894AA413F614310BF6A667BDEA1950165492_inline (Cinfo_t11C577CFE4A1D91F887A6423F6D1350DA45CA5FC * __this, const RuntimeMethod* method);
// System.Int32 UnityEngine.XR.ARSubsystems.XRCpuImage/Plane/Cinfo::get_pixelStride()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t Cinfo_get_pixelStride_m2595FA36CA7479B00D3EFD507C3C9439CC5DBDE0_inline (Cinfo_t11C577CFE4A1D91F887A6423F6D1350DA45CA5FC * __this, const RuntimeMethod* method);
// System.Boolean System.IntPtr::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool IntPtr_Equals_m8ABF0A82F61F3B236B11DD4A1E19CEC5CC5A50F0 (intptr_t* __this, RuntimeObject * ___obj0, const RuntimeMethod* method);
// System.Boolean UnityEngine.XR.ARSubsystems.XRCpuImage/Plane/Cinfo::Equals(UnityEngine.XR.ARSubsystems.XRCpuImage/Plane/Cinfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Cinfo_Equals_m5B7C627F1C89E10A0CE713A46B283219E35F6365 (Cinfo_t11C577CFE4A1D91F887A6423F6D1350DA45CA5FC * __this, Cinfo_t11C577CFE4A1D91F887A6423F6D1350DA45CA5FC ___other0, const RuntimeMethod* method);
// System.Boolean UnityEngine.XR.ARSubsystems.XRCpuImage/Plane/Cinfo::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Cinfo_Equals_m3D18D26EAA0FED30423B3C8B38961816A1472F62 (Cinfo_t11C577CFE4A1D91F887A6423F6D1350DA45CA5FC * __this, RuntimeObject * ___obj0, const RuntimeMethod* method);
// System.Int32 UnityEngine.XR.ARSubsystems.XRCpuImage/Plane/Cinfo::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Cinfo_GetHashCode_mC3F4D4AA0494F15A8E0B0F765FA005C1A574CCCF (Cinfo_t11C577CFE4A1D91F887A6423F6D1350DA45CA5FC * __this, const RuntimeMethod* method);
// System.String UnityEngine.XR.ARSubsystems.XRCpuImage/Plane/Cinfo::ToString()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Cinfo_ToString_m4D93FD001F1E9EC984CBFB7997FE480E212F83DF (Cinfo_t11C577CFE4A1D91F887A6423F6D1350DA45CA5FC * __this, const RuntimeMethod* method);
// System.Void UnityEngine.Vector2::.ctor(System.Single,System.Single)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Vector2__ctor_m9F1F2D5EB5D1FF7091BB527AC8A72CBB309D115E_inline (Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 * __this, float ___x0, float ___y1, const RuntimeMethod* method);
// System.Void System.ThrowHelper::ThrowArgumentOutOfRangeException()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ThrowHelper_ThrowArgumentOutOfRangeException_m4841366ABC2B2AFA37C10900551D7E07522C0929 (const RuntimeMethod* method);
#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
// Conversion methods for marshalling of: UnityEngine.XR.ARSubsystems.AddReferenceImageJobState
IL2CPP_EXTERN_C void AddReferenceImageJobState_t6818A53BD54BDCDCA326D660A1575F66DF832633_marshal_pinvoke(const AddReferenceImageJobState_t6818A53BD54BDCDCA326D660A1575F66DF832633& unmarshaled, AddReferenceImageJobState_t6818A53BD54BDCDCA326D660A1575F66DF832633_marshaled_pinvoke& marshaled)
{
Exception_t* ___m_Library_1Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'm_Library' of type 'AddReferenceImageJobState': Reference type field marshaling is not supported.");
IL2CPP_RAISE_MANAGED_EXCEPTION(___m_Library_1Exception, NULL);
}
IL2CPP_EXTERN_C void AddReferenceImageJobState_t6818A53BD54BDCDCA326D660A1575F66DF832633_marshal_pinvoke_back(const AddReferenceImageJobState_t6818A53BD54BDCDCA326D660A1575F66DF832633_marshaled_pinvoke& marshaled, AddReferenceImageJobState_t6818A53BD54BDCDCA326D660A1575F66DF832633& unmarshaled)
{
Exception_t* ___m_Library_1Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'm_Library' of type 'AddReferenceImageJobState': Reference type field marshaling is not supported.");
IL2CPP_RAISE_MANAGED_EXCEPTION(___m_Library_1Exception, NULL);
}
// Conversion method for clean up from marshalling of: UnityEngine.XR.ARSubsystems.AddReferenceImageJobState
IL2CPP_EXTERN_C void AddReferenceImageJobState_t6818A53BD54BDCDCA326D660A1575F66DF832633_marshal_pinvoke_cleanup(AddReferenceImageJobState_t6818A53BD54BDCDCA326D660A1575F66DF832633_marshaled_pinvoke& marshaled)
{
}
// Conversion methods for marshalling of: UnityEngine.XR.ARSubsystems.AddReferenceImageJobState
IL2CPP_EXTERN_C void AddReferenceImageJobState_t6818A53BD54BDCDCA326D660A1575F66DF832633_marshal_com(const AddReferenceImageJobState_t6818A53BD54BDCDCA326D660A1575F66DF832633& unmarshaled, AddReferenceImageJobState_t6818A53BD54BDCDCA326D660A1575F66DF832633_marshaled_com& marshaled)
{
Exception_t* ___m_Library_1Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'm_Library' of type 'AddReferenceImageJobState': Reference type field marshaling is not supported.");
IL2CPP_RAISE_MANAGED_EXCEPTION(___m_Library_1Exception, NULL);
}
IL2CPP_EXTERN_C void AddReferenceImageJobState_t6818A53BD54BDCDCA326D660A1575F66DF832633_marshal_com_back(const AddReferenceImageJobState_t6818A53BD54BDCDCA326D660A1575F66DF832633_marshaled_com& marshaled, AddReferenceImageJobState_t6818A53BD54BDCDCA326D660A1575F66DF832633& unmarshaled)
{
Exception_t* ___m_Library_1Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'm_Library' of type 'AddReferenceImageJobState': Reference type field marshaling is not supported.");
IL2CPP_RAISE_MANAGED_EXCEPTION(___m_Library_1Exception, NULL);
}
// Conversion method for clean up from marshalling of: UnityEngine.XR.ARSubsystems.AddReferenceImageJobState
IL2CPP_EXTERN_C void AddReferenceImageJobState_t6818A53BD54BDCDCA326D660A1575F66DF832633_marshal_com_cleanup(AddReferenceImageJobState_t6818A53BD54BDCDCA326D660A1575F66DF832633_marshaled_com& marshaled)
{
}
// System.Void UnityEngine.XR.ARSubsystems.AddReferenceImageJobState::.ctor(System.IntPtr,Unity.Jobs.JobHandle,UnityEngine.XR.ARSubsystems.MutableRuntimeReferenceImageLibrary)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AddReferenceImageJobState__ctor_mAFC8E35811BAF9292B00B7D06EF4C6895AFDD74C (AddReferenceImageJobState_t6818A53BD54BDCDCA326D660A1575F66DF832633 * __this, intptr_t ___nativePtr0, JobHandle_t8AEB8D31C25D7774C71D62B0C662525E6E36D847 ___jobHandle1, MutableRuntimeReferenceImageLibrary_t887376CE46B48DEEC6E8655D429BADCA6E3C7EAA * ___library2, const RuntimeMethod* method)
{
{
// if (library == null)
MutableRuntimeReferenceImageLibrary_t887376CE46B48DEEC6E8655D429BADCA6E3C7EAA * L_0 = ___library2;
if (L_0)
{
goto IL_000e;
}
}
{
// throw new ArgumentNullException(nameof(library));
ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB * L_1 = (ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB_il2cpp_TypeInfo_var)));
ArgumentNullException__ctor_m81AB157B93BFE2FBFDB08B88F84B444293042F97(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral53AF0584729649EA84EE72BF90D62B91A5A5818D)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&AddReferenceImageJobState__ctor_mAFC8E35811BAF9292B00B7D06EF4C6895AFDD74C_RuntimeMethod_var)));
}
IL_000e:
{
// m_Handle = nativePtr;
intptr_t L_2 = ___nativePtr0;
__this->set_m_Handle_0((intptr_t)L_2);
// m_Library = library;
MutableRuntimeReferenceImageLibrary_t887376CE46B48DEEC6E8655D429BADCA6E3C7EAA * L_3 = ___library2;
__this->set_m_Library_1(L_3);
// this.jobHandle = jobHandle;
JobHandle_t8AEB8D31C25D7774C71D62B0C662525E6E36D847 L_4 = ___jobHandle1;
__this->set_U3CjobHandleU3Ek__BackingField_2(L_4);
// }
return;
}
}
IL2CPP_EXTERN_C void AddReferenceImageJobState__ctor_mAFC8E35811BAF9292B00B7D06EF4C6895AFDD74C_AdjustorThunk (RuntimeObject * __this, intptr_t ___nativePtr0, JobHandle_t8AEB8D31C25D7774C71D62B0C662525E6E36D847 ___jobHandle1, MutableRuntimeReferenceImageLibrary_t887376CE46B48DEEC6E8655D429BADCA6E3C7EAA * ___library2, const RuntimeMethod* method)
{
AddReferenceImageJobState_t6818A53BD54BDCDCA326D660A1575F66DF832633 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<AddReferenceImageJobState_t6818A53BD54BDCDCA326D660A1575F66DF832633 *>(__this + _offset);
AddReferenceImageJobState__ctor_mAFC8E35811BAF9292B00B7D06EF4C6895AFDD74C(_thisAdjusted, ___nativePtr0, ___jobHandle1, ___library2, method);
}
// Unity.Jobs.JobHandle UnityEngine.XR.ARSubsystems.AddReferenceImageJobState::get_jobHandle()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR JobHandle_t8AEB8D31C25D7774C71D62B0C662525E6E36D847 AddReferenceImageJobState_get_jobHandle_mD67B6C7B795C0EAAF2B27C2C23A0CDF0597DDD41 (AddReferenceImageJobState_t6818A53BD54BDCDCA326D660A1575F66DF832633 * __this, const RuntimeMethod* method)
{
{
// public JobHandle jobHandle { get; }
JobHandle_t8AEB8D31C25D7774C71D62B0C662525E6E36D847 L_0 = __this->get_U3CjobHandleU3Ek__BackingField_2();
return L_0;
}
}
IL2CPP_EXTERN_C JobHandle_t8AEB8D31C25D7774C71D62B0C662525E6E36D847 AddReferenceImageJobState_get_jobHandle_mD67B6C7B795C0EAAF2B27C2C23A0CDF0597DDD41_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
AddReferenceImageJobState_t6818A53BD54BDCDCA326D660A1575F66DF832633 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<AddReferenceImageJobState_t6818A53BD54BDCDCA326D660A1575F66DF832633 *>(__this + _offset);
JobHandle_t8AEB8D31C25D7774C71D62B0C662525E6E36D847 _returnValue;
_returnValue = AddReferenceImageJobState_get_jobHandle_mD67B6C7B795C0EAAF2B27C2C23A0CDF0597DDD41_inline(_thisAdjusted, method);
return _returnValue;
}
// System.IntPtr UnityEngine.XR.ARSubsystems.AddReferenceImageJobState::AsIntPtr()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR intptr_t AddReferenceImageJobState_AsIntPtr_m3918B9BEE2FA6B991CFA1BE13F1B211656B8A78B (AddReferenceImageJobState_t6818A53BD54BDCDCA326D660A1575F66DF832633 * __this, const RuntimeMethod* method)
{
{
// public IntPtr AsIntPtr() => m_Handle;
intptr_t L_0 = __this->get_m_Handle_0();
return (intptr_t)L_0;
}
}
IL2CPP_EXTERN_C intptr_t AddReferenceImageJobState_AsIntPtr_m3918B9BEE2FA6B991CFA1BE13F1B211656B8A78B_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
AddReferenceImageJobState_t6818A53BD54BDCDCA326D660A1575F66DF832633 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<AddReferenceImageJobState_t6818A53BD54BDCDCA326D660A1575F66DF832633 *>(__this + _offset);
intptr_t _returnValue;
_returnValue = AddReferenceImageJobState_AsIntPtr_m3918B9BEE2FA6B991CFA1BE13F1B211656B8A78B_inline(_thisAdjusted, method);
return _returnValue;
}
// System.IntPtr UnityEngine.XR.ARSubsystems.AddReferenceImageJobState::op_Explicit(UnityEngine.XR.ARSubsystems.AddReferenceImageJobState)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR intptr_t AddReferenceImageJobState_op_Explicit_m5B74AEF81E3819FFD5FA03BA1A125DA19CFF32D0 (AddReferenceImageJobState_t6818A53BD54BDCDCA326D660A1575F66DF832633 ___state0, const RuntimeMethod* method)
{
{
// public static explicit operator IntPtr(AddReferenceImageJobState state) => state.m_Handle;
AddReferenceImageJobState_t6818A53BD54BDCDCA326D660A1575F66DF832633 L_0 = ___state0;
intptr_t L_1 = L_0.get_m_Handle_0();
return (intptr_t)L_1;
}
}
// UnityEngine.XR.ARSubsystems.AddReferenceImageJobStatus UnityEngine.XR.ARSubsystems.AddReferenceImageJobState::get_status()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t AddReferenceImageJobState_get_status_mEB3B5CAB4B567D06A94B438A171D4F21F335D850 (AddReferenceImageJobState_t6818A53BD54BDCDCA326D660A1575F66DF832633 * __this, const RuntimeMethod* method)
{
MutableRuntimeReferenceImageLibrary_t887376CE46B48DEEC6E8655D429BADCA6E3C7EAA * G_B2_0 = NULL;
MutableRuntimeReferenceImageLibrary_t887376CE46B48DEEC6E8655D429BADCA6E3C7EAA * G_B1_0 = NULL;
{
// m_Library?.GetAddReferenceImageJobStatus(this) ?? AddReferenceImageJobStatus.None;
MutableRuntimeReferenceImageLibrary_t887376CE46B48DEEC6E8655D429BADCA6E3C7EAA * L_0 = __this->get_m_Library_1();
MutableRuntimeReferenceImageLibrary_t887376CE46B48DEEC6E8655D429BADCA6E3C7EAA * L_1 = L_0;
G_B1_0 = L_1;
if (L_1)
{
G_B2_0 = L_1;
goto IL_000c;
}
}
{
return (int32_t)(0);
}
IL_000c:
{
AddReferenceImageJobState_t6818A53BD54BDCDCA326D660A1575F66DF832633 L_2 = (*(AddReferenceImageJobState_t6818A53BD54BDCDCA326D660A1575F66DF832633 *)__this);
NullCheck(G_B2_0);
int32_t L_3;
L_3 = VirtualFuncInvoker1< int32_t, AddReferenceImageJobState_t6818A53BD54BDCDCA326D660A1575F66DF832633 >::Invoke(8 /* UnityEngine.XR.ARSubsystems.AddReferenceImageJobStatus UnityEngine.XR.ARSubsystems.MutableRuntimeReferenceImageLibrary::GetAddReferenceImageJobStatus(UnityEngine.XR.ARSubsystems.AddReferenceImageJobState) */, G_B2_0, L_2);
return L_3;
}
}
IL2CPP_EXTERN_C int32_t AddReferenceImageJobState_get_status_mEB3B5CAB4B567D06A94B438A171D4F21F335D850_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
AddReferenceImageJobState_t6818A53BD54BDCDCA326D660A1575F66DF832633 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<AddReferenceImageJobState_t6818A53BD54BDCDCA326D660A1575F66DF832633 *>(__this + _offset);
int32_t _returnValue;
_returnValue = AddReferenceImageJobState_get_status_mEB3B5CAB4B567D06A94B438A171D4F21F335D850(_thisAdjusted, method);
return _returnValue;
}
// System.String UnityEngine.XR.ARSubsystems.AddReferenceImageJobState::ToString()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* AddReferenceImageJobState_ToString_mF0C9F0307F13953D372C0BA03F3DFFAC3DE6E912 (AddReferenceImageJobState_t6818A53BD54BDCDCA326D660A1575F66DF832633 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AddReferenceImageJobStatus_t9DCD4D2016D73AAD47038B7967E3C83B06A91899_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral4578213F1BD00C014CECBA9C93CB2E9CA2D494EE);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralFD4706B02823C71252FBF63A74CF03433A8DADF0);
s_Il2CppMethodInitialized = true;
}
intptr_t V_0;
memset((&V_0), 0, sizeof(V_0));
{
// public override string ToString() => $"(handle: {m_Handle.ToString()}, {nameof(status)}: {status})";
intptr_t L_0 = __this->get_m_Handle_0();
V_0 = (intptr_t)L_0;
String_t* L_1;
L_1 = IntPtr_ToString_mC499BFB66CB492853717FFACA63599701FC1E91C((intptr_t*)(&V_0), /*hidden argument*/NULL);
int32_t L_2;
L_2 = AddReferenceImageJobState_get_status_mEB3B5CAB4B567D06A94B438A171D4F21F335D850((AddReferenceImageJobState_t6818A53BD54BDCDCA326D660A1575F66DF832633 *)__this, /*hidden argument*/NULL);
int32_t L_3 = L_2;
RuntimeObject * L_4 = Box(AddReferenceImageJobStatus_t9DCD4D2016D73AAD47038B7967E3C83B06A91899_il2cpp_TypeInfo_var, &L_3);
String_t* L_5;
L_5 = String_Format_m039737CCD992C5BFC8D16DFD681F5E8786E87FA6(_stringLiteral4578213F1BD00C014CECBA9C93CB2E9CA2D494EE, L_1, _stringLiteralFD4706B02823C71252FBF63A74CF03433A8DADF0, L_4, /*hidden argument*/NULL);
return L_5;
}
}
IL2CPP_EXTERN_C String_t* AddReferenceImageJobState_ToString_mF0C9F0307F13953D372C0BA03F3DFFAC3DE6E912_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
AddReferenceImageJobState_t6818A53BD54BDCDCA326D660A1575F66DF832633 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<AddReferenceImageJobState_t6818A53BD54BDCDCA326D660A1575F66DF832633 *>(__this + _offset);
String_t* _returnValue;
_returnValue = AddReferenceImageJobState_ToString_mF0C9F0307F13953D372C0BA03F3DFFAC3DE6E912(_thisAdjusted, method);
return _returnValue;
}
// System.Int32 UnityEngine.XR.ARSubsystems.AddReferenceImageJobState::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t AddReferenceImageJobState_GetHashCode_m7A9EFB3628AFD98DE738E0766DD6267C90303E47 (AddReferenceImageJobState_t6818A53BD54BDCDCA326D660A1575F66DF832633 * __this, const RuntimeMethod* method)
{
intptr_t V_0;
memset((&V_0), 0, sizeof(V_0));
{
// public override int GetHashCode() => HashCode.Combine(
// m_Handle.GetHashCode(),
// HashCode.ReferenceHash(m_Library));
intptr_t L_0 = __this->get_m_Handle_0();
V_0 = (intptr_t)L_0;
int32_t L_1;
L_1 = IntPtr_GetHashCode_m55E65FB52EFE7C0EBC3C28E66A5D7542F3B1D35D((intptr_t*)(&V_0), /*hidden argument*/NULL);
MutableRuntimeReferenceImageLibrary_t887376CE46B48DEEC6E8655D429BADCA6E3C7EAA * L_2 = __this->get_m_Library_1();
int32_t L_3;
L_3 = HashCode_ReferenceHash_mE6CC6EA3C87D9F040876D66CF582D6FF68FC359C(L_2, /*hidden argument*/NULL);
int32_t L_4;
L_4 = HashCode_Combine_m23C951F115303C9E040D18947821969B602863FC(L_1, L_3, /*hidden argument*/NULL);
return L_4;
}
}
IL2CPP_EXTERN_C int32_t AddReferenceImageJobState_GetHashCode_m7A9EFB3628AFD98DE738E0766DD6267C90303E47_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
AddReferenceImageJobState_t6818A53BD54BDCDCA326D660A1575F66DF832633 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<AddReferenceImageJobState_t6818A53BD54BDCDCA326D660A1575F66DF832633 *>(__this + _offset);
int32_t _returnValue;
_returnValue = AddReferenceImageJobState_GetHashCode_m7A9EFB3628AFD98DE738E0766DD6267C90303E47(_thisAdjusted, method);
return _returnValue;
}
// System.Boolean UnityEngine.XR.ARSubsystems.AddReferenceImageJobState::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool AddReferenceImageJobState_Equals_m2B2E0068F7BDF4DB619306E672D9B4FDF1AAD495 (AddReferenceImageJobState_t6818A53BD54BDCDCA326D660A1575F66DF832633 * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AddReferenceImageJobState_t6818A53BD54BDCDCA326D660A1575F66DF832633_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
AddReferenceImageJobState_t6818A53BD54BDCDCA326D660A1575F66DF832633 V_0;
memset((&V_0), 0, sizeof(V_0));
{
// public override bool Equals(object obj) => obj is AddReferenceImageJobState other && Equals(other);
RuntimeObject * L_0 = ___obj0;
if (!((RuntimeObject *)IsInstSealed((RuntimeObject*)L_0, AddReferenceImageJobState_t6818A53BD54BDCDCA326D660A1575F66DF832633_il2cpp_TypeInfo_var)))
{
goto IL_0017;
}
}
{
RuntimeObject * L_1 = ___obj0;
V_0 = ((*(AddReferenceImageJobState_t6818A53BD54BDCDCA326D660A1575F66DF832633 *)((AddReferenceImageJobState_t6818A53BD54BDCDCA326D660A1575F66DF832633 *)UnBox(L_1, AddReferenceImageJobState_t6818A53BD54BDCDCA326D660A1575F66DF832633_il2cpp_TypeInfo_var))));
AddReferenceImageJobState_t6818A53BD54BDCDCA326D660A1575F66DF832633 L_2 = V_0;
bool L_3;
L_3 = AddReferenceImageJobState_Equals_mDF37DF091DA56B8CFD7EF4AE078984D7A4072AB5((AddReferenceImageJobState_t6818A53BD54BDCDCA326D660A1575F66DF832633 *)__this, L_2, /*hidden argument*/NULL);
return L_3;
}
IL_0017:
{
return (bool)0;
}
}
IL2CPP_EXTERN_C bool AddReferenceImageJobState_Equals_m2B2E0068F7BDF4DB619306E672D9B4FDF1AAD495_AdjustorThunk (RuntimeObject * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
AddReferenceImageJobState_t6818A53BD54BDCDCA326D660A1575F66DF832633 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<AddReferenceImageJobState_t6818A53BD54BDCDCA326D660A1575F66DF832633 *>(__this + _offset);
bool _returnValue;
_returnValue = AddReferenceImageJobState_Equals_m2B2E0068F7BDF4DB619306E672D9B4FDF1AAD495(_thisAdjusted, ___obj0, method);
return _returnValue;
}
// System.Boolean UnityEngine.XR.ARSubsystems.AddReferenceImageJobState::Equals(UnityEngine.XR.ARSubsystems.AddReferenceImageJobState)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool AddReferenceImageJobState_Equals_mDF37DF091DA56B8CFD7EF4AE078984D7A4072AB5 (AddReferenceImageJobState_t6818A53BD54BDCDCA326D660A1575F66DF832633 * __this, AddReferenceImageJobState_t6818A53BD54BDCDCA326D660A1575F66DF832633 ___other0, const RuntimeMethod* method)
{
{
// m_Handle == other.m_Handle &&
// m_Library == other.m_Library;
intptr_t L_0 = __this->get_m_Handle_0();
AddReferenceImageJobState_t6818A53BD54BDCDCA326D660A1575F66DF832633 L_1 = ___other0;
intptr_t L_2 = L_1.get_m_Handle_0();
bool L_3;
L_3 = IntPtr_op_Equality_mD94F3FE43A65684EFF984A7B95E70D2520C0AC73((intptr_t)L_0, (intptr_t)L_2, /*hidden argument*/NULL);
if (!L_3)
{
goto IL_0022;
}
}
{
MutableRuntimeReferenceImageLibrary_t887376CE46B48DEEC6E8655D429BADCA6E3C7EAA * L_4 = __this->get_m_Library_1();
AddReferenceImageJobState_t6818A53BD54BDCDCA326D660A1575F66DF832633 L_5 = ___other0;
MutableRuntimeReferenceImageLibrary_t887376CE46B48DEEC6E8655D429BADCA6E3C7EAA * L_6 = L_5.get_m_Library_1();
return (bool)((((RuntimeObject*)(MutableRuntimeReferenceImageLibrary_t887376CE46B48DEEC6E8655D429BADCA6E3C7EAA *)L_4) == ((RuntimeObject*)(MutableRuntimeReferenceImageLibrary_t887376CE46B48DEEC6E8655D429BADCA6E3C7EAA *)L_6))? 1 : 0);
}
IL_0022:
{
return (bool)0;
}
}
IL2CPP_EXTERN_C bool AddReferenceImageJobState_Equals_mDF37DF091DA56B8CFD7EF4AE078984D7A4072AB5_AdjustorThunk (RuntimeObject * __this, AddReferenceImageJobState_t6818A53BD54BDCDCA326D660A1575F66DF832633 ___other0, const RuntimeMethod* method)
{
AddReferenceImageJobState_t6818A53BD54BDCDCA326D660A1575F66DF832633 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<AddReferenceImageJobState_t6818A53BD54BDCDCA326D660A1575F66DF832633 *>(__this + _offset);
bool _returnValue;
_returnValue = AddReferenceImageJobState_Equals_mDF37DF091DA56B8CFD7EF4AE078984D7A4072AB5(_thisAdjusted, ___other0, 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
#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
// UnityEngine.XR.ARSubsystems.BoundedPlane UnityEngine.XR.ARSubsystems.BoundedPlane::get_defaultValue()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR BoundedPlane_t9001963C43ACDF4CDEA8BBF97CD783B7969B79C5 BoundedPlane_get_defaultValue_m0C1F8EA6D681C3333CF429425254F63E1BE99003 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&BoundedPlane_t9001963C43ACDF4CDEA8BBF97CD783B7969B79C5_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
// public static BoundedPlane defaultValue => s_Default;
IL2CPP_RUNTIME_CLASS_INIT(BoundedPlane_t9001963C43ACDF4CDEA8BBF97CD783B7969B79C5_il2cpp_TypeInfo_var);
BoundedPlane_t9001963C43ACDF4CDEA8BBF97CD783B7969B79C5 L_0 = ((BoundedPlane_t9001963C43ACDF4CDEA8BBF97CD783B7969B79C5_StaticFields*)il2cpp_codegen_static_fields_for(BoundedPlane_t9001963C43ACDF4CDEA8BBF97CD783B7969B79C5_il2cpp_TypeInfo_var))->get_s_Default_0();
return L_0;
}
}
// System.Void UnityEngine.XR.ARSubsystems.BoundedPlane::.ctor(UnityEngine.XR.ARSubsystems.TrackableId,UnityEngine.XR.ARSubsystems.TrackableId,UnityEngine.Pose,UnityEngine.Vector2,UnityEngine.Vector2,UnityEngine.XR.ARSubsystems.PlaneAlignment,UnityEngine.XR.ARSubsystems.TrackingState,System.IntPtr,UnityEngine.XR.ARSubsystems.PlaneClassification)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BoundedPlane__ctor_mDCFBC1B53B86B650BBB103C9FC25E7872CBF804B (BoundedPlane_t9001963C43ACDF4CDEA8BBF97CD783B7969B79C5 * __this, TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B ___trackableId0, TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B ___subsumedBy1, Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A ___pose2, Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___center3, Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___size4, int32_t ___alignment5, int32_t ___trackingState6, intptr_t ___nativePtr7, int32_t ___classification8, const RuntimeMethod* method)
{
{
// m_TrackableId = trackableId;
TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B L_0 = ___trackableId0;
__this->set_m_TrackableId_1(L_0);
// m_SubsumedById = subsumedBy;
TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B L_1 = ___subsumedBy1;
__this->set_m_SubsumedById_2(L_1);
// m_Pose = pose;
Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A L_2 = ___pose2;
__this->set_m_Pose_4(L_2);
// m_Center = center;
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 L_3 = ___center3;
__this->set_m_Center_3(L_3);
// m_Size = size;
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 L_4 = ___size4;
__this->set_m_Size_5(L_4);
// m_Alignment = alignment;
int32_t L_5 = ___alignment5;
__this->set_m_Alignment_6(L_5);
// m_TrackingState = trackingState;
int32_t L_6 = ___trackingState6;
__this->set_m_TrackingState_7(L_6);
// m_NativePtr = nativePtr;
intptr_t L_7 = ___nativePtr7;
__this->set_m_NativePtr_8((intptr_t)L_7);
// m_Classification = classification;
int32_t L_8 = ___classification8;
__this->set_m_Classification_9(L_8);
// }
return;
}
}
IL2CPP_EXTERN_C void BoundedPlane__ctor_mDCFBC1B53B86B650BBB103C9FC25E7872CBF804B_AdjustorThunk (RuntimeObject * __this, TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B ___trackableId0, TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B ___subsumedBy1, Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A ___pose2, Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___center3, Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___size4, int32_t ___alignment5, int32_t ___trackingState6, intptr_t ___nativePtr7, int32_t ___classification8, const RuntimeMethod* method)
{
BoundedPlane_t9001963C43ACDF4CDEA8BBF97CD783B7969B79C5 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<BoundedPlane_t9001963C43ACDF4CDEA8BBF97CD783B7969B79C5 *>(__this + _offset);
BoundedPlane__ctor_mDCFBC1B53B86B650BBB103C9FC25E7872CBF804B(_thisAdjusted, ___trackableId0, ___subsumedBy1, ___pose2, ___center3, ___size4, ___alignment5, ___trackingState6, ___nativePtr7, ___classification8, method);
}
// UnityEngine.XR.ARSubsystems.TrackableId UnityEngine.XR.ARSubsystems.BoundedPlane::get_trackableId()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B BoundedPlane_get_trackableId_m32943441D74DC226DC907A05B5B6C6EBBC70F95B (BoundedPlane_t9001963C43ACDF4CDEA8BBF97CD783B7969B79C5 * __this, const RuntimeMethod* method)
{
{
// public TrackableId trackableId => m_TrackableId;
TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B L_0 = __this->get_m_TrackableId_1();
return L_0;
}
}
IL2CPP_EXTERN_C TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B BoundedPlane_get_trackableId_m32943441D74DC226DC907A05B5B6C6EBBC70F95B_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
BoundedPlane_t9001963C43ACDF4CDEA8BBF97CD783B7969B79C5 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<BoundedPlane_t9001963C43ACDF4CDEA8BBF97CD783B7969B79C5 *>(__this + _offset);
TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B _returnValue;
_returnValue = BoundedPlane_get_trackableId_m32943441D74DC226DC907A05B5B6C6EBBC70F95B_inline(_thisAdjusted, method);
return _returnValue;
}
// UnityEngine.XR.ARSubsystems.TrackableId UnityEngine.XR.ARSubsystems.BoundedPlane::get_subsumedById()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B BoundedPlane_get_subsumedById_mD61EFD7A91B5F290F63A1AE59153B75BB33B89CF (BoundedPlane_t9001963C43ACDF4CDEA8BBF97CD783B7969B79C5 * __this, const RuntimeMethod* method)
{
{
// public TrackableId subsumedById => m_SubsumedById;
TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B L_0 = __this->get_m_SubsumedById_2();
return L_0;
}
}
IL2CPP_EXTERN_C TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B BoundedPlane_get_subsumedById_mD61EFD7A91B5F290F63A1AE59153B75BB33B89CF_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
BoundedPlane_t9001963C43ACDF4CDEA8BBF97CD783B7969B79C5 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<BoundedPlane_t9001963C43ACDF4CDEA8BBF97CD783B7969B79C5 *>(__this + _offset);
TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B _returnValue;
_returnValue = BoundedPlane_get_subsumedById_mD61EFD7A91B5F290F63A1AE59153B75BB33B89CF_inline(_thisAdjusted, method);
return _returnValue;
}
// UnityEngine.Pose UnityEngine.XR.ARSubsystems.BoundedPlane::get_pose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A BoundedPlane_get_pose_m8302E13809156362584FA0AE137DD911D30665BA (BoundedPlane_t9001963C43ACDF4CDEA8BBF97CD783B7969B79C5 * __this, const RuntimeMethod* method)
{
{
// public Pose pose => m_Pose;
Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A L_0 = __this->get_m_Pose_4();
return L_0;
}
}
IL2CPP_EXTERN_C Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A BoundedPlane_get_pose_m8302E13809156362584FA0AE137DD911D30665BA_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
BoundedPlane_t9001963C43ACDF4CDEA8BBF97CD783B7969B79C5 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<BoundedPlane_t9001963C43ACDF4CDEA8BBF97CD783B7969B79C5 *>(__this + _offset);
Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A _returnValue;
_returnValue = BoundedPlane_get_pose_m8302E13809156362584FA0AE137DD911D30665BA_inline(_thisAdjusted, method);
return _returnValue;
}
// UnityEngine.Vector2 UnityEngine.XR.ARSubsystems.BoundedPlane::get_center()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 BoundedPlane_get_center_mA4667303D86B331F7EC5F278910145E7633EA973 (BoundedPlane_t9001963C43ACDF4CDEA8BBF97CD783B7969B79C5 * __this, const RuntimeMethod* method)
{
{
// public Vector2 center => m_Center;
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 L_0 = __this->get_m_Center_3();
return L_0;
}
}
IL2CPP_EXTERN_C Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 BoundedPlane_get_center_mA4667303D86B331F7EC5F278910145E7633EA973_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
BoundedPlane_t9001963C43ACDF4CDEA8BBF97CD783B7969B79C5 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<BoundedPlane_t9001963C43ACDF4CDEA8BBF97CD783B7969B79C5 *>(__this + _offset);
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 _returnValue;
_returnValue = BoundedPlane_get_center_mA4667303D86B331F7EC5F278910145E7633EA973_inline(_thisAdjusted, method);
return _returnValue;
}
// UnityEngine.Vector2 UnityEngine.XR.ARSubsystems.BoundedPlane::get_extents()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 BoundedPlane_get_extents_mEED7F74BBACA8EA90D43ED12EC9D10C9059118CD (BoundedPlane_t9001963C43ACDF4CDEA8BBF97CD783B7969B79C5 * __this, const RuntimeMethod* method)
{
{
// public Vector2 extents => m_Size * 0.5f;
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 L_0 = __this->get_m_Size_5();
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 L_1;
L_1 = Vector2_op_Multiply_mC7A7802352867555020A90205EBABA56EE5E36CB_inline(L_0, (0.5f), /*hidden argument*/NULL);
return L_1;
}
}
IL2CPP_EXTERN_C Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 BoundedPlane_get_extents_mEED7F74BBACA8EA90D43ED12EC9D10C9059118CD_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
BoundedPlane_t9001963C43ACDF4CDEA8BBF97CD783B7969B79C5 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<BoundedPlane_t9001963C43ACDF4CDEA8BBF97CD783B7969B79C5 *>(__this + _offset);
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 _returnValue;
_returnValue = BoundedPlane_get_extents_mEED7F74BBACA8EA90D43ED12EC9D10C9059118CD(_thisAdjusted, method);
return _returnValue;
}
// UnityEngine.Vector2 UnityEngine.XR.ARSubsystems.BoundedPlane::get_size()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 BoundedPlane_get_size_m204F4F37C0FB6F7294682D961B53F4F9639E3882 (BoundedPlane_t9001963C43ACDF4CDEA8BBF97CD783B7969B79C5 * __this, const RuntimeMethod* method)
{
{
// public Vector2 size => m_Size;
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 L_0 = __this->get_m_Size_5();
return L_0;
}
}
IL2CPP_EXTERN_C Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 BoundedPlane_get_size_m204F4F37C0FB6F7294682D961B53F4F9639E3882_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
BoundedPlane_t9001963C43ACDF4CDEA8BBF97CD783B7969B79C5 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<BoundedPlane_t9001963C43ACDF4CDEA8BBF97CD783B7969B79C5 *>(__this + _offset);
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 _returnValue;
_returnValue = BoundedPlane_get_size_m204F4F37C0FB6F7294682D961B53F4F9639E3882_inline(_thisAdjusted, method);
return _returnValue;
}
// UnityEngine.XR.ARSubsystems.PlaneAlignment UnityEngine.XR.ARSubsystems.BoundedPlane::get_alignment()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t BoundedPlane_get_alignment_m72B849B54224B1493DFF448BCF2AB8634751DC71 (BoundedPlane_t9001963C43ACDF4CDEA8BBF97CD783B7969B79C5 * __this, const RuntimeMethod* method)
{
{
// public PlaneAlignment alignment => m_Alignment;
int32_t L_0 = __this->get_m_Alignment_6();
return L_0;
}
}
IL2CPP_EXTERN_C int32_t BoundedPlane_get_alignment_m72B849B54224B1493DFF448BCF2AB8634751DC71_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
BoundedPlane_t9001963C43ACDF4CDEA8BBF97CD783B7969B79C5 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<BoundedPlane_t9001963C43ACDF4CDEA8BBF97CD783B7969B79C5 *>(__this + _offset);
int32_t _returnValue;
_returnValue = BoundedPlane_get_alignment_m72B849B54224B1493DFF448BCF2AB8634751DC71_inline(_thisAdjusted, method);
return _returnValue;
}
// UnityEngine.XR.ARSubsystems.TrackingState UnityEngine.XR.ARSubsystems.BoundedPlane::get_trackingState()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t BoundedPlane_get_trackingState_mBF10ADD6DD969A0DA7FCC8299FFA56AEB9B837CA (BoundedPlane_t9001963C43ACDF4CDEA8BBF97CD783B7969B79C5 * __this, const RuntimeMethod* method)
{
{
// public TrackingState trackingState => m_TrackingState;
int32_t L_0 = __this->get_m_TrackingState_7();
return L_0;
}
}
IL2CPP_EXTERN_C int32_t BoundedPlane_get_trackingState_mBF10ADD6DD969A0DA7FCC8299FFA56AEB9B837CA_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
BoundedPlane_t9001963C43ACDF4CDEA8BBF97CD783B7969B79C5 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<BoundedPlane_t9001963C43ACDF4CDEA8BBF97CD783B7969B79C5 *>(__this + _offset);
int32_t _returnValue;
_returnValue = BoundedPlane_get_trackingState_mBF10ADD6DD969A0DA7FCC8299FFA56AEB9B837CA_inline(_thisAdjusted, method);
return _returnValue;
}
// System.IntPtr UnityEngine.XR.ARSubsystems.BoundedPlane::get_nativePtr()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR intptr_t BoundedPlane_get_nativePtr_m626921F0179BF37BC5F06C2587D298FB40F31FE9 (BoundedPlane_t9001963C43ACDF4CDEA8BBF97CD783B7969B79C5 * __this, const RuntimeMethod* method)
{
{
// public IntPtr nativePtr => m_NativePtr;
intptr_t L_0 = __this->get_m_NativePtr_8();
return (intptr_t)L_0;
}
}
IL2CPP_EXTERN_C intptr_t BoundedPlane_get_nativePtr_m626921F0179BF37BC5F06C2587D298FB40F31FE9_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
BoundedPlane_t9001963C43ACDF4CDEA8BBF97CD783B7969B79C5 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<BoundedPlane_t9001963C43ACDF4CDEA8BBF97CD783B7969B79C5 *>(__this + _offset);
intptr_t _returnValue;
_returnValue = BoundedPlane_get_nativePtr_m626921F0179BF37BC5F06C2587D298FB40F31FE9_inline(_thisAdjusted, method);
return _returnValue;
}
// UnityEngine.XR.ARSubsystems.PlaneClassification UnityEngine.XR.ARSubsystems.BoundedPlane::get_classification()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t BoundedPlane_get_classification_m842651162BFE9633C414B16CD1D86FBBE86589A3 (BoundedPlane_t9001963C43ACDF4CDEA8BBF97CD783B7969B79C5 * __this, const RuntimeMethod* method)
{
{
// public PlaneClassification classification => m_Classification;
int32_t L_0 = __this->get_m_Classification_9();
return L_0;
}
}
IL2CPP_EXTERN_C int32_t BoundedPlane_get_classification_m842651162BFE9633C414B16CD1D86FBBE86589A3_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
BoundedPlane_t9001963C43ACDF4CDEA8BBF97CD783B7969B79C5 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<BoundedPlane_t9001963C43ACDF4CDEA8BBF97CD783B7969B79C5 *>(__this + _offset);
int32_t _returnValue;
_returnValue = BoundedPlane_get_classification_m842651162BFE9633C414B16CD1D86FBBE86589A3_inline(_thisAdjusted, method);
return _returnValue;
}
// System.String UnityEngine.XR.ARSubsystems.BoundedPlane::ToString()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* BoundedPlane_ToString_m0A542F5D2CB72755643184989BE3B9E6899D731A (BoundedPlane_t9001963C43ACDF4CDEA8BBF97CD783B7969B79C5 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int64_t378EE0D608BD3107E77238E85F30D2BBD46981F3_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PlaneAlignment_t1BB7048E3969913434FB1B3BCBCA2E81D4E71ADA_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PlaneClassification_tAC2E2E9609D4396BC311E2987CA3EFA5115EDD10_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TrackingState_tB6996ED0D52D2A17DFACC90800705B81D370FC38_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralD7D10F5EBD63494DC1C7F8C9033E7A490800B3AF);
s_Il2CppMethodInitialized = true;
}
intptr_t V_0;
memset((&V_0), 0, sizeof(V_0));
{
// return string.Format(
// "Plane:\n\ttrackableId: {0}\n\tsubsumedById: {1}\n\tpose: {2}\n\tcenter: {3}\n\tsize: {4}\n\talignment: {5}\n\tclassification: {6}\n\ttrackingState: {7}\n\tnativePtr: {8:X16}",
// trackableId,
// subsumedById,
// pose,
// center,
// size,
// alignment,
// classification,
// trackingState,
// nativePtr.ToInt64());
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_0 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)SZArrayNew(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE_il2cpp_TypeInfo_var, (uint32_t)((int32_t)9));
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_1 = L_0;
TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B L_2;
L_2 = BoundedPlane_get_trackableId_m32943441D74DC226DC907A05B5B6C6EBBC70F95B_inline((BoundedPlane_t9001963C43ACDF4CDEA8BBF97CD783B7969B79C5 *)__this, /*hidden argument*/NULL);
TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B L_3 = L_2;
RuntimeObject * L_4 = Box(TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B_il2cpp_TypeInfo_var, &L_3);
NullCheck(L_1);
ArrayElementTypeCheck (L_1, L_4);
(L_1)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_4);
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_5 = L_1;
TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B L_6;
L_6 = BoundedPlane_get_subsumedById_mD61EFD7A91B5F290F63A1AE59153B75BB33B89CF_inline((BoundedPlane_t9001963C43ACDF4CDEA8BBF97CD783B7969B79C5 *)__this, /*hidden argument*/NULL);
TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B L_7 = L_6;
RuntimeObject * L_8 = Box(TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B_il2cpp_TypeInfo_var, &L_7);
NullCheck(L_5);
ArrayElementTypeCheck (L_5, L_8);
(L_5)->SetAt(static_cast<il2cpp_array_size_t>(1), (RuntimeObject *)L_8);
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_9 = L_5;
Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A L_10;
L_10 = BoundedPlane_get_pose_m8302E13809156362584FA0AE137DD911D30665BA_inline((BoundedPlane_t9001963C43ACDF4CDEA8BBF97CD783B7969B79C5 *)__this, /*hidden argument*/NULL);
Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A L_11 = L_10;
RuntimeObject * L_12 = Box(Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A_il2cpp_TypeInfo_var, &L_11);
NullCheck(L_9);
ArrayElementTypeCheck (L_9, L_12);
(L_9)->SetAt(static_cast<il2cpp_array_size_t>(2), (RuntimeObject *)L_12);
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_13 = L_9;
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 L_14;
L_14 = BoundedPlane_get_center_mA4667303D86B331F7EC5F278910145E7633EA973_inline((BoundedPlane_t9001963C43ACDF4CDEA8BBF97CD783B7969B79C5 *)__this, /*hidden argument*/NULL);
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 L_15 = L_14;
RuntimeObject * L_16 = Box(Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9_il2cpp_TypeInfo_var, &L_15);
NullCheck(L_13);
ArrayElementTypeCheck (L_13, L_16);
(L_13)->SetAt(static_cast<il2cpp_array_size_t>(3), (RuntimeObject *)L_16);
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_17 = L_13;
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 L_18;
L_18 = BoundedPlane_get_size_m204F4F37C0FB6F7294682D961B53F4F9639E3882_inline((BoundedPlane_t9001963C43ACDF4CDEA8BBF97CD783B7969B79C5 *)__this, /*hidden argument*/NULL);
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 L_19 = L_18;
RuntimeObject * L_20 = Box(Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9_il2cpp_TypeInfo_var, &L_19);
NullCheck(L_17);
ArrayElementTypeCheck (L_17, L_20);
(L_17)->SetAt(static_cast<il2cpp_array_size_t>(4), (RuntimeObject *)L_20);
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_21 = L_17;
int32_t L_22;
L_22 = BoundedPlane_get_alignment_m72B849B54224B1493DFF448BCF2AB8634751DC71_inline((BoundedPlane_t9001963C43ACDF4CDEA8BBF97CD783B7969B79C5 *)__this, /*hidden argument*/NULL);
int32_t L_23 = L_22;
RuntimeObject * L_24 = Box(PlaneAlignment_t1BB7048E3969913434FB1B3BCBCA2E81D4E71ADA_il2cpp_TypeInfo_var, &L_23);
NullCheck(L_21);
ArrayElementTypeCheck (L_21, L_24);
(L_21)->SetAt(static_cast<il2cpp_array_size_t>(5), (RuntimeObject *)L_24);
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_25 = L_21;
int32_t L_26;
L_26 = BoundedPlane_get_classification_m842651162BFE9633C414B16CD1D86FBBE86589A3_inline((BoundedPlane_t9001963C43ACDF4CDEA8BBF97CD783B7969B79C5 *)__this, /*hidden argument*/NULL);
int32_t L_27 = L_26;
RuntimeObject * L_28 = Box(PlaneClassification_tAC2E2E9609D4396BC311E2987CA3EFA5115EDD10_il2cpp_TypeInfo_var, &L_27);
NullCheck(L_25);
ArrayElementTypeCheck (L_25, L_28);
(L_25)->SetAt(static_cast<il2cpp_array_size_t>(6), (RuntimeObject *)L_28);
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_29 = L_25;
int32_t L_30;
L_30 = BoundedPlane_get_trackingState_mBF10ADD6DD969A0DA7FCC8299FFA56AEB9B837CA_inline((BoundedPlane_t9001963C43ACDF4CDEA8BBF97CD783B7969B79C5 *)__this, /*hidden argument*/NULL);
int32_t L_31 = L_30;
RuntimeObject * L_32 = Box(TrackingState_tB6996ED0D52D2A17DFACC90800705B81D370FC38_il2cpp_TypeInfo_var, &L_31);
NullCheck(L_29);
ArrayElementTypeCheck (L_29, L_32);
(L_29)->SetAt(static_cast<il2cpp_array_size_t>(7), (RuntimeObject *)L_32);
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_33 = L_29;
intptr_t L_34;
L_34 = BoundedPlane_get_nativePtr_m626921F0179BF37BC5F06C2587D298FB40F31FE9_inline((BoundedPlane_t9001963C43ACDF4CDEA8BBF97CD783B7969B79C5 *)__this, /*hidden argument*/NULL);
V_0 = (intptr_t)L_34;
int64_t L_35;
L_35 = IntPtr_ToInt64_m521F809F5D9ECAF93E808CFFFE45F67620C7879A((intptr_t*)(&V_0), /*hidden argument*/NULL);
int64_t L_36 = L_35;
RuntimeObject * L_37 = Box(Int64_t378EE0D608BD3107E77238E85F30D2BBD46981F3_il2cpp_TypeInfo_var, &L_36);
NullCheck(L_33);
ArrayElementTypeCheck (L_33, L_37);
(L_33)->SetAt(static_cast<il2cpp_array_size_t>(8), (RuntimeObject *)L_37);
String_t* L_38;
L_38 = String_Format_mCED6767EA5FEE6F15ABCD5B4F9150D1284C2795B(_stringLiteralD7D10F5EBD63494DC1C7F8C9033E7A490800B3AF, L_33, /*hidden argument*/NULL);
return L_38;
}
}
IL2CPP_EXTERN_C String_t* BoundedPlane_ToString_m0A542F5D2CB72755643184989BE3B9E6899D731A_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
BoundedPlane_t9001963C43ACDF4CDEA8BBF97CD783B7969B79C5 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<BoundedPlane_t9001963C43ACDF4CDEA8BBF97CD783B7969B79C5 *>(__this + _offset);
String_t* _returnValue;
_returnValue = BoundedPlane_ToString_m0A542F5D2CB72755643184989BE3B9E6899D731A(_thisAdjusted, method);
return _returnValue;
}
// System.Boolean UnityEngine.XR.ARSubsystems.BoundedPlane::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool BoundedPlane_Equals_m5B2E8A0932BC0242B51091CDDFED85901156A005 (BoundedPlane_t9001963C43ACDF4CDEA8BBF97CD783B7969B79C5 * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&BoundedPlane_t9001963C43ACDF4CDEA8BBF97CD783B7969B79C5_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
BoundedPlane_t9001963C43ACDF4CDEA8BBF97CD783B7969B79C5 V_0;
memset((&V_0), 0, sizeof(V_0));
{
// public override bool Equals(object obj) => (obj is BoundedPlane other) && Equals(other);
RuntimeObject * L_0 = ___obj0;
if (!((RuntimeObject *)IsInstSealed((RuntimeObject*)L_0, BoundedPlane_t9001963C43ACDF4CDEA8BBF97CD783B7969B79C5_il2cpp_TypeInfo_var)))
{
goto IL_0017;
}
}
{
RuntimeObject * L_1 = ___obj0;
V_0 = ((*(BoundedPlane_t9001963C43ACDF4CDEA8BBF97CD783B7969B79C5 *)((BoundedPlane_t9001963C43ACDF4CDEA8BBF97CD783B7969B79C5 *)UnBox(L_1, BoundedPlane_t9001963C43ACDF4CDEA8BBF97CD783B7969B79C5_il2cpp_TypeInfo_var))));
BoundedPlane_t9001963C43ACDF4CDEA8BBF97CD783B7969B79C5 L_2 = V_0;
bool L_3;
L_3 = BoundedPlane_Equals_m3A984C969EC0ACE7B83F661C80AA82C54D455D1A((BoundedPlane_t9001963C43ACDF4CDEA8BBF97CD783B7969B79C5 *)__this, L_2, /*hidden argument*/NULL);
return L_3;
}
IL_0017:
{
return (bool)0;
}
}
IL2CPP_EXTERN_C bool BoundedPlane_Equals_m5B2E8A0932BC0242B51091CDDFED85901156A005_AdjustorThunk (RuntimeObject * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
BoundedPlane_t9001963C43ACDF4CDEA8BBF97CD783B7969B79C5 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<BoundedPlane_t9001963C43ACDF4CDEA8BBF97CD783B7969B79C5 *>(__this + _offset);
bool _returnValue;
_returnValue = BoundedPlane_Equals_m5B2E8A0932BC0242B51091CDDFED85901156A005(_thisAdjusted, ___obj0, method);
return _returnValue;
}
// System.Int32 UnityEngine.XR.ARSubsystems.BoundedPlane::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t BoundedPlane_GetHashCode_m99D4D46A432C2E00A182A86788A750522BFBCAEF (BoundedPlane_t9001963C43ACDF4CDEA8BBF97CD783B7969B79C5 * __this, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
// var hashCode = m_TrackableId.GetHashCode();
TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B * L_0 = __this->get_address_of_m_TrackableId_1();
int32_t L_1;
L_1 = TrackableId_GetHashCode_mFD297FC6DB40FB5B28C6E9B7A2CF2785D75C4E86((TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B *)L_0, /*hidden argument*/NULL);
// hashCode = (hashCode * 486187739) + m_SubsumedById.GetHashCode();
TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B * L_2 = __this->get_address_of_m_SubsumedById_2();
int32_t L_3;
L_3 = TrackableId_GetHashCode_mFD297FC6DB40FB5B28C6E9B7A2CF2785D75C4E86((TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B *)L_2, /*hidden argument*/NULL);
// hashCode = (hashCode * 486187739) + m_Pose.GetHashCode();
Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A * L_4 = __this->get_address_of_m_Pose_4();
int32_t L_5;
L_5 = Pose_GetHashCode_mE1DD7FBCCB1C979B252F0B117276BA11CF4D2367((Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A *)L_4, /*hidden argument*/NULL);
// hashCode = (hashCode * 486187739) + m_Center.GetHashCode();
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 * L_6 = __this->get_address_of_m_Center_3();
int32_t L_7;
L_7 = Vector2_GetHashCode_m9A5DD8406289F38806CC42C394E324C1C2AB3732((Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 *)L_6, /*hidden argument*/NULL);
// hashCode = (hashCode * 486187739) + m_Size.GetHashCode();
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 * L_8 = __this->get_address_of_m_Size_5();
int32_t L_9;
L_9 = Vector2_GetHashCode_m9A5DD8406289F38806CC42C394E324C1C2AB3732((Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 *)L_8, /*hidden argument*/NULL);
// hashCode = (hashCode * 486187739) + ((int)m_Alignment).GetHashCode();
int32_t L_10 = __this->get_m_Alignment_6();
V_0 = L_10;
int32_t L_11;
L_11 = Int32_GetHashCode_mEDD3F492A5F7CF021125AE3F38E2B8F8743FC667((int32_t*)(&V_0), /*hidden argument*/NULL);
// hashCode = (hashCode * 486187739) + ((int)m_Classification).GetHashCode();
int32_t L_12 = __this->get_m_Classification_9();
V_0 = L_12;
int32_t L_13;
L_13 = Int32_GetHashCode_mEDD3F492A5F7CF021125AE3F38E2B8F8743FC667((int32_t*)(&V_0), /*hidden argument*/NULL);
// hashCode = (hashCode * 486187739) + ((int)m_TrackingState).GetHashCode();
int32_t L_14 = __this->get_m_TrackingState_7();
V_0 = L_14;
int32_t L_15;
L_15 = Int32_GetHashCode_mEDD3F492A5F7CF021125AE3F38E2B8F8743FC667((int32_t*)(&V_0), /*hidden argument*/NULL);
// hashCode = (hashCode * 486187739) + m_NativePtr.GetHashCode();
intptr_t* L_16 = __this->get_address_of_m_NativePtr_8();
int32_t L_17;
L_17 = IntPtr_GetHashCode_m55E65FB52EFE7C0EBC3C28E66A5D7542F3B1D35D((intptr_t*)L_16, /*hidden argument*/NULL);
// return hashCode;
return ((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)L_1, (int32_t)((int32_t)486187739))), (int32_t)L_3)), (int32_t)((int32_t)486187739))), (int32_t)L_5)), (int32_t)((int32_t)486187739))), (int32_t)L_7)), (int32_t)((int32_t)486187739))), (int32_t)L_9)), (int32_t)((int32_t)486187739))), (int32_t)L_11)), (int32_t)((int32_t)486187739))), (int32_t)L_13)), (int32_t)((int32_t)486187739))), (int32_t)L_15)), (int32_t)((int32_t)486187739))), (int32_t)L_17));
}
}
IL2CPP_EXTERN_C int32_t BoundedPlane_GetHashCode_m99D4D46A432C2E00A182A86788A750522BFBCAEF_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
BoundedPlane_t9001963C43ACDF4CDEA8BBF97CD783B7969B79C5 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<BoundedPlane_t9001963C43ACDF4CDEA8BBF97CD783B7969B79C5 *>(__this + _offset);
int32_t _returnValue;
_returnValue = BoundedPlane_GetHashCode_m99D4D46A432C2E00A182A86788A750522BFBCAEF(_thisAdjusted, method);
return _returnValue;
}
// System.Boolean UnityEngine.XR.ARSubsystems.BoundedPlane::Equals(UnityEngine.XR.ARSubsystems.BoundedPlane)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool BoundedPlane_Equals_m3A984C969EC0ACE7B83F661C80AA82C54D455D1A (BoundedPlane_t9001963C43ACDF4CDEA8BBF97CD783B7969B79C5 * __this, BoundedPlane_t9001963C43ACDF4CDEA8BBF97CD783B7969B79C5 ___other0, const RuntimeMethod* method)
{
{
// return
// m_TrackableId.Equals(other.m_TrackableId) &&
// m_SubsumedById.Equals(other.m_SubsumedById) &&
// m_Pose.Equals(other.m_Pose) &&
// m_Center.Equals(other.m_Center) &&
// m_Size.Equals(other.m_Size) &&
// (m_Alignment == other.m_Alignment) &&
// (m_Classification == other.m_Classification) &&
// (m_TrackingState == other.m_TrackingState) &&
// (m_NativePtr == other.m_NativePtr);
TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B * L_0 = __this->get_address_of_m_TrackableId_1();
BoundedPlane_t9001963C43ACDF4CDEA8BBF97CD783B7969B79C5 L_1 = ___other0;
TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B L_2 = L_1.get_m_TrackableId_1();
bool L_3;
L_3 = TrackableId_Equals_m1DF35616359175E3D66DE18250E8CDA1E6462B06((TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B *)L_0, L_2, /*hidden argument*/NULL);
if (!L_3)
{
goto IL_009e;
}
}
{
TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B * L_4 = __this->get_address_of_m_SubsumedById_2();
BoundedPlane_t9001963C43ACDF4CDEA8BBF97CD783B7969B79C5 L_5 = ___other0;
TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B L_6 = L_5.get_m_SubsumedById_2();
bool L_7;
L_7 = TrackableId_Equals_m1DF35616359175E3D66DE18250E8CDA1E6462B06((TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B *)L_4, L_6, /*hidden argument*/NULL);
if (!L_7)
{
goto IL_009e;
}
}
{
Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A * L_8 = __this->get_address_of_m_Pose_4();
BoundedPlane_t9001963C43ACDF4CDEA8BBF97CD783B7969B79C5 L_9 = ___other0;
Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A L_10 = L_9.get_m_Pose_4();
bool L_11;
L_11 = Pose_Equals_mFAE0041090F2032B8FCE63A0F289DD206134BF15((Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A *)L_8, L_10, /*hidden argument*/NULL);
if (!L_11)
{
goto IL_009e;
}
}
{
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 * L_12 = __this->get_address_of_m_Center_3();
BoundedPlane_t9001963C43ACDF4CDEA8BBF97CD783B7969B79C5 L_13 = ___other0;
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 L_14 = L_13.get_m_Center_3();
bool L_15;
L_15 = Vector2_Equals_m6E08A16717F2B9EE8B24EBA6B234A03098D5F05D_inline((Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 *)L_12, L_14, /*hidden argument*/NULL);
if (!L_15)
{
goto IL_009e;
}
}
{
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 * L_16 = __this->get_address_of_m_Size_5();
BoundedPlane_t9001963C43ACDF4CDEA8BBF97CD783B7969B79C5 L_17 = ___other0;
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 L_18 = L_17.get_m_Size_5();
bool L_19;
L_19 = Vector2_Equals_m6E08A16717F2B9EE8B24EBA6B234A03098D5F05D_inline((Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 *)L_16, L_18, /*hidden argument*/NULL);
if (!L_19)
{
goto IL_009e;
}
}
{
int32_t L_20 = __this->get_m_Alignment_6();
BoundedPlane_t9001963C43ACDF4CDEA8BBF97CD783B7969B79C5 L_21 = ___other0;
int32_t L_22 = L_21.get_m_Alignment_6();
if ((!(((uint32_t)L_20) == ((uint32_t)L_22))))
{
goto IL_009e;
}
}
{
int32_t L_23 = __this->get_m_Classification_9();
BoundedPlane_t9001963C43ACDF4CDEA8BBF97CD783B7969B79C5 L_24 = ___other0;
int32_t L_25 = L_24.get_m_Classification_9();
if ((!(((uint32_t)L_23) == ((uint32_t)L_25))))
{
goto IL_009e;
}
}
{
int32_t L_26 = __this->get_m_TrackingState_7();
BoundedPlane_t9001963C43ACDF4CDEA8BBF97CD783B7969B79C5 L_27 = ___other0;
int32_t L_28 = L_27.get_m_TrackingState_7();
if ((!(((uint32_t)L_26) == ((uint32_t)L_28))))
{
goto IL_009e;
}
}
{
intptr_t L_29 = __this->get_m_NativePtr_8();
BoundedPlane_t9001963C43ACDF4CDEA8BBF97CD783B7969B79C5 L_30 = ___other0;
intptr_t L_31 = L_30.get_m_NativePtr_8();
bool L_32;
L_32 = IntPtr_op_Equality_mD94F3FE43A65684EFF984A7B95E70D2520C0AC73((intptr_t)L_29, (intptr_t)L_31, /*hidden argument*/NULL);
return L_32;
}
IL_009e:
{
return (bool)0;
}
}
IL2CPP_EXTERN_C bool BoundedPlane_Equals_m3A984C969EC0ACE7B83F661C80AA82C54D455D1A_AdjustorThunk (RuntimeObject * __this, BoundedPlane_t9001963C43ACDF4CDEA8BBF97CD783B7969B79C5 ___other0, const RuntimeMethod* method)
{
BoundedPlane_t9001963C43ACDF4CDEA8BBF97CD783B7969B79C5 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<BoundedPlane_t9001963C43ACDF4CDEA8BBF97CD783B7969B79C5 *>(__this + _offset);
bool _returnValue;
_returnValue = BoundedPlane_Equals_m3A984C969EC0ACE7B83F661C80AA82C54D455D1A(_thisAdjusted, ___other0, method);
return _returnValue;
}
// System.Void UnityEngine.XR.ARSubsystems.BoundedPlane::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BoundedPlane__cctor_m8E99A66F7A4052C7C0C7CE3077F4172F3E196E17 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&BoundedPlane_t9001963C43ACDF4CDEA8BBF97CD783B7969B79C5_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IntPtr_t_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
// static readonly BoundedPlane s_Default = new BoundedPlane(
// TrackableId.invalidId,
// TrackableId.invalidId,
// Pose.identity,
// Vector2.zero,
// Vector2.zero,
// PlaneAlignment.None,
// TrackingState.None,
// IntPtr.Zero,
// PlaneClassification.None);
IL2CPP_RUNTIME_CLASS_INIT(TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B_il2cpp_TypeInfo_var);
TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B L_0;
L_0 = TrackableId_get_invalidId_m06B698EFFA7748E185299C72B5CEC1AA5B221F85_inline(/*hidden argument*/NULL);
TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B L_1;
L_1 = TrackableId_get_invalidId_m06B698EFFA7748E185299C72B5CEC1AA5B221F85_inline(/*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A_il2cpp_TypeInfo_var);
Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A L_2;
L_2 = Pose_get_identity_m334B16AC3024785914BCC5A2B949750A010878BF(/*hidden argument*/NULL);
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 L_3;
L_3 = Vector2_get_zero_m621041B9DF5FAE86C1EF4CB28C224FEA089CB828(/*hidden argument*/NULL);
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 L_4;
L_4 = Vector2_get_zero_m621041B9DF5FAE86C1EF4CB28C224FEA089CB828(/*hidden argument*/NULL);
BoundedPlane_t9001963C43ACDF4CDEA8BBF97CD783B7969B79C5 L_5;
memset((&L_5), 0, sizeof(L_5));
BoundedPlane__ctor_mDCFBC1B53B86B650BBB103C9FC25E7872CBF804B((&L_5), L_0, L_1, L_2, L_3, L_4, 0, 0, (intptr_t)(0), 0, /*hidden argument*/NULL);
((BoundedPlane_t9001963C43ACDF4CDEA8BBF97CD783B7969B79C5_StaticFields*)il2cpp_codegen_static_fields_for(BoundedPlane_t9001963C43ACDF4CDEA8BBF97CD783B7969B79C5_il2cpp_TypeInfo_var))->set_s_Default_0(L_5);
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
// UnityEngine.XR.ARSubsystems.ConfigurationDescriptor UnityEngine.XR.ARSubsystems.Configuration::get_descriptor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ConfigurationDescriptor_t5CD12F017FCCF861DC33D7C0D6F0121015DEEA78 Configuration_get_descriptor_mD7539C193666CFFB9258CE40D88EB7DA3C48DDDA (Configuration_t29C11C7E576D64F717543048BDA1EBCEF0CF60C0 * __this, const RuntimeMethod* method)
{
{
// public ConfigurationDescriptor descriptor { get; private set; }
ConfigurationDescriptor_t5CD12F017FCCF861DC33D7C0D6F0121015DEEA78 L_0 = __this->get_U3CdescriptorU3Ek__BackingField_0();
return L_0;
}
}
IL2CPP_EXTERN_C ConfigurationDescriptor_t5CD12F017FCCF861DC33D7C0D6F0121015DEEA78 Configuration_get_descriptor_mD7539C193666CFFB9258CE40D88EB7DA3C48DDDA_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
Configuration_t29C11C7E576D64F717543048BDA1EBCEF0CF60C0 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<Configuration_t29C11C7E576D64F717543048BDA1EBCEF0CF60C0 *>(__this + _offset);
ConfigurationDescriptor_t5CD12F017FCCF861DC33D7C0D6F0121015DEEA78 _returnValue;
_returnValue = Configuration_get_descriptor_mD7539C193666CFFB9258CE40D88EB7DA3C48DDDA_inline(_thisAdjusted, method);
return _returnValue;
}
// System.Void UnityEngine.XR.ARSubsystems.Configuration::set_descriptor(UnityEngine.XR.ARSubsystems.ConfigurationDescriptor)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Configuration_set_descriptor_mC8DB7CFDB5C7E267B15CFD3DE2133A1B482020E9 (Configuration_t29C11C7E576D64F717543048BDA1EBCEF0CF60C0 * __this, ConfigurationDescriptor_t5CD12F017FCCF861DC33D7C0D6F0121015DEEA78 ___value0, const RuntimeMethod* method)
{
{
// public ConfigurationDescriptor descriptor { get; private set; }
ConfigurationDescriptor_t5CD12F017FCCF861DC33D7C0D6F0121015DEEA78 L_0 = ___value0;
__this->set_U3CdescriptorU3Ek__BackingField_0(L_0);
return;
}
}
IL2CPP_EXTERN_C void Configuration_set_descriptor_mC8DB7CFDB5C7E267B15CFD3DE2133A1B482020E9_AdjustorThunk (RuntimeObject * __this, ConfigurationDescriptor_t5CD12F017FCCF861DC33D7C0D6F0121015DEEA78 ___value0, const RuntimeMethod* method)
{
Configuration_t29C11C7E576D64F717543048BDA1EBCEF0CF60C0 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<Configuration_t29C11C7E576D64F717543048BDA1EBCEF0CF60C0 *>(__this + _offset);
Configuration_set_descriptor_mC8DB7CFDB5C7E267B15CFD3DE2133A1B482020E9_inline(_thisAdjusted, ___value0, method);
}
// UnityEngine.XR.ARSubsystems.Feature UnityEngine.XR.ARSubsystems.Configuration::get_features()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t Configuration_get_features_m8F2353DC080AF51D657C4CBD8E9DB4DAEAB72B5A (Configuration_t29C11C7E576D64F717543048BDA1EBCEF0CF60C0 * __this, const RuntimeMethod* method)
{
{
// public Feature features { get; private set; }
uint64_t L_0 = __this->get_U3CfeaturesU3Ek__BackingField_1();
return L_0;
}
}
IL2CPP_EXTERN_C uint64_t Configuration_get_features_m8F2353DC080AF51D657C4CBD8E9DB4DAEAB72B5A_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
Configuration_t29C11C7E576D64F717543048BDA1EBCEF0CF60C0 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<Configuration_t29C11C7E576D64F717543048BDA1EBCEF0CF60C0 *>(__this + _offset);
uint64_t _returnValue;
_returnValue = Configuration_get_features_m8F2353DC080AF51D657C4CBD8E9DB4DAEAB72B5A_inline(_thisAdjusted, method);
return _returnValue;
}
// System.Void UnityEngine.XR.ARSubsystems.Configuration::set_features(UnityEngine.XR.ARSubsystems.Feature)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Configuration_set_features_m778B95140CCFD2CF143489375C8B15258B5CA149 (Configuration_t29C11C7E576D64F717543048BDA1EBCEF0CF60C0 * __this, uint64_t ___value0, const RuntimeMethod* method)
{
{
// public Feature features { get; private set; }
uint64_t L_0 = ___value0;
__this->set_U3CfeaturesU3Ek__BackingField_1(L_0);
return;
}
}
IL2CPP_EXTERN_C void Configuration_set_features_m778B95140CCFD2CF143489375C8B15258B5CA149_AdjustorThunk (RuntimeObject * __this, uint64_t ___value0, const RuntimeMethod* method)
{
Configuration_t29C11C7E576D64F717543048BDA1EBCEF0CF60C0 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<Configuration_t29C11C7E576D64F717543048BDA1EBCEF0CF60C0 *>(__this + _offset);
Configuration_set_features_m778B95140CCFD2CF143489375C8B15258B5CA149_inline(_thisAdjusted, ___value0, method);
}
// System.Void UnityEngine.XR.ARSubsystems.Configuration::.ctor(UnityEngine.XR.ARSubsystems.ConfigurationDescriptor,UnityEngine.XR.ARSubsystems.Feature)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Configuration__ctor_m5A3F2286F33BA303B4C8A8E0E34ED6DA993A43BB (Configuration_t29C11C7E576D64F717543048BDA1EBCEF0CF60C0 * __this, ConfigurationDescriptor_t5CD12F017FCCF861DC33D7C0D6F0121015DEEA78 ___descriptor0, uint64_t ___features1, const RuntimeMethod* method)
{
uint64_t V_0 = 0;
uint64_t V_1 = 0;
{
// if (!descriptor.capabilities.All(features))
uint64_t L_0;
L_0 = ConfigurationDescriptor_get_capabilities_mD48908AE629D6E78D84F355B59CF742ABFD7C649_inline((ConfigurationDescriptor_t5CD12F017FCCF861DC33D7C0D6F0121015DEEA78 *)(&___descriptor0), /*hidden argument*/NULL);
uint64_t L_1 = ___features1;
bool L_2;
L_2 = FeatureExtensions_All_mE045F59D960EB11FE1A7B31076D0132109B28160(L_0, L_1, /*hidden argument*/NULL);
if (L_2)
{
goto IL_003b;
}
}
{
// throw new NotSupportedException($"The configuration does not support the following requested features: {features.SetDifference(descriptor.capabilities).ToStringList()}.");
uint64_t L_3 = ___features1;
uint64_t L_4;
L_4 = ConfigurationDescriptor_get_capabilities_mD48908AE629D6E78D84F355B59CF742ABFD7C649_inline((ConfigurationDescriptor_t5CD12F017FCCF861DC33D7C0D6F0121015DEEA78 *)(&___descriptor0), /*hidden argument*/NULL);
uint64_t L_5;
L_5 = FeatureExtensions_SetDifference_m9699D6212D9BD79EE52C44EF08FF7461E7F2C1C5(L_3, L_4, /*hidden argument*/NULL);
String_t* L_6;
L_6 = FeatureExtensions_ToStringList_m1B8E6CA945AE2E060DB1D4DFA60CCD72AADC082D(L_5, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral758733BDBED83CBFF4F635AC26CA92AAE477F75D)), /*hidden argument*/NULL);
String_t* L_7;
L_7 = String_Concat_m89EAB4C6A96B0E5C3F87300D6BE78D386B9EFC44(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral99C87677D7C931C6716048E6564D746F83638144)), L_6, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF3E84B722399601AD7E281754E917478AA9AD48D)), /*hidden argument*/NULL);
NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 * L_8 = (NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339_il2cpp_TypeInfo_var)));
NotSupportedException__ctor_m40BC57BDA6E0E119B73700CC809A14B57DC65A90(L_8, L_7, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_8, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Configuration__ctor_m5A3F2286F33BA303B4C8A8E0E34ED6DA993A43BB_RuntimeMethod_var)));
}
IL_003b:
{
// var cameraMode = features.Cameras();
uint64_t L_9 = ___features1;
uint64_t L_10;
L_10 = FeatureExtensions_Cameras_m3814978160FF343F4B295277B62A10A90BE46F7F(L_9, /*hidden argument*/NULL);
V_0 = L_10;
// if (cameraMode.Any(Feature.AnyCamera))
uint64_t L_11 = V_0;
bool L_12;
L_12 = FeatureExtensions_Any_mE55A6DE2870496D907915F6C117FC22D107B54A9(L_11, ((int64_t)((int64_t)3)), /*hidden argument*/NULL);
if (!L_12)
{
goto IL_0070;
}
}
{
// if (cameraMode.Count() > 1)
uint64_t L_13 = V_0;
int32_t L_14;
L_14 = FeatureExtensions_Count_m5EF2EFA14A36261D35A95A6D5A39A107D223F6B6(L_13, /*hidden argument*/NULL);
if ((((int32_t)L_14) <= ((int32_t)1)))
{
goto IL_0070;
}
}
{
// throw new InvalidOperationException($"Either zero or one camera mode must be enabled. The following modes are enabled: {cameraMode.ToStringList()}");
uint64_t L_15 = V_0;
String_t* L_16;
L_16 = FeatureExtensions_ToStringList_m1B8E6CA945AE2E060DB1D4DFA60CCD72AADC082D(L_15, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral758733BDBED83CBFF4F635AC26CA92AAE477F75D)), /*hidden argument*/NULL);
String_t* L_17;
L_17 = String_Concat_m4B4AB72618348C5DFBFBA8DED84B9E2EBDB55E1B(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral3A788090DA565EF18CC31FECD33EFC9ABE012B5D)), L_16, /*hidden argument*/NULL);
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_18 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_18, L_17, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_18, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Configuration__ctor_m5A3F2286F33BA303B4C8A8E0E34ED6DA993A43BB_RuntimeMethod_var)));
}
IL_0070:
{
// var trackingMode = features.TrackingModes();
uint64_t L_19 = ___features1;
uint64_t L_20;
L_20 = FeatureExtensions_TrackingModes_m42E19D4C37D0B9A70CACE5810FBE94B8A517D127(L_19, /*hidden argument*/NULL);
V_1 = L_20;
// if (trackingMode.Count() > 1)
uint64_t L_21 = V_1;
int32_t L_22;
L_22 = FeatureExtensions_Count_m5EF2EFA14A36261D35A95A6D5A39A107D223F6B6(L_21, /*hidden argument*/NULL);
if ((((int32_t)L_22) <= ((int32_t)1)))
{
goto IL_009b;
}
}
{
// throw new InvalidOperationException($"Either zero or one tracking modes must be enabled. The following modes are enabled: {trackingMode.ToStringList()}");
uint64_t L_23 = V_1;
String_t* L_24;
L_24 = FeatureExtensions_ToStringList_m1B8E6CA945AE2E060DB1D4DFA60CCD72AADC082D(L_23, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral758733BDBED83CBFF4F635AC26CA92AAE477F75D)), /*hidden argument*/NULL);
String_t* L_25;
L_25 = String_Concat_m4B4AB72618348C5DFBFBA8DED84B9E2EBDB55E1B(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralD5763433090039E34F2AC4CEE2907724B1579261)), L_24, /*hidden argument*/NULL);
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_26 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_26, L_25, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_26, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Configuration__ctor_m5A3F2286F33BA303B4C8A8E0E34ED6DA993A43BB_RuntimeMethod_var)));
}
IL_009b:
{
// this.descriptor = descriptor;
ConfigurationDescriptor_t5CD12F017FCCF861DC33D7C0D6F0121015DEEA78 L_27 = ___descriptor0;
Configuration_set_descriptor_mC8DB7CFDB5C7E267B15CFD3DE2133A1B482020E9_inline((Configuration_t29C11C7E576D64F717543048BDA1EBCEF0CF60C0 *)__this, L_27, /*hidden argument*/NULL);
// this.features = features;
uint64_t L_28 = ___features1;
Configuration_set_features_m778B95140CCFD2CF143489375C8B15258B5CA149_inline((Configuration_t29C11C7E576D64F717543048BDA1EBCEF0CF60C0 *)__this, L_28, /*hidden argument*/NULL);
// }
return;
}
}
IL2CPP_EXTERN_C void Configuration__ctor_m5A3F2286F33BA303B4C8A8E0E34ED6DA993A43BB_AdjustorThunk (RuntimeObject * __this, ConfigurationDescriptor_t5CD12F017FCCF861DC33D7C0D6F0121015DEEA78 ___descriptor0, uint64_t ___features1, const RuntimeMethod* method)
{
Configuration_t29C11C7E576D64F717543048BDA1EBCEF0CF60C0 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<Configuration_t29C11C7E576D64F717543048BDA1EBCEF0CF60C0 *>(__this + _offset);
Configuration__ctor_m5A3F2286F33BA303B4C8A8E0E34ED6DA993A43BB(_thisAdjusted, ___descriptor0, ___features1, method);
}
// System.Int32 UnityEngine.XR.ARSubsystems.Configuration::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Configuration_GetHashCode_m1714C8505EE74B796DB7AF17A409448C385A83F2 (Configuration_t29C11C7E576D64F717543048BDA1EBCEF0CF60C0 * __this, const RuntimeMethod* method)
{
ConfigurationDescriptor_t5CD12F017FCCF861DC33D7C0D6F0121015DEEA78 V_0;
memset((&V_0), 0, sizeof(V_0));
uint64_t V_1 = 0;
{
// public override int GetHashCode() => HashCode.Combine(descriptor.GetHashCode(), features.GetHashCode());
ConfigurationDescriptor_t5CD12F017FCCF861DC33D7C0D6F0121015DEEA78 L_0;
L_0 = Configuration_get_descriptor_mD7539C193666CFFB9258CE40D88EB7DA3C48DDDA_inline((Configuration_t29C11C7E576D64F717543048BDA1EBCEF0CF60C0 *)__this, /*hidden argument*/NULL);
V_0 = L_0;
int32_t L_1;
L_1 = ConfigurationDescriptor_GetHashCode_m1B74FC9C9B33BBED2192C1A47570C13A40008091((ConfigurationDescriptor_t5CD12F017FCCF861DC33D7C0D6F0121015DEEA78 *)(&V_0), /*hidden argument*/NULL);
uint64_t L_2;
L_2 = Configuration_get_features_m8F2353DC080AF51D657C4CBD8E9DB4DAEAB72B5A_inline((Configuration_t29C11C7E576D64F717543048BDA1EBCEF0CF60C0 *)__this, /*hidden argument*/NULL);
V_1 = L_2;
int32_t L_3;
L_3 = UInt64_GetHashCode_mCDF662897A3F02CED11A9F9E66C5BF4E28C02B33((uint64_t*)(&V_1), /*hidden argument*/NULL);
int32_t L_4;
L_4 = HashCode_Combine_m23C951F115303C9E040D18947821969B602863FC(L_1, L_3, /*hidden argument*/NULL);
return L_4;
}
}
IL2CPP_EXTERN_C int32_t Configuration_GetHashCode_m1714C8505EE74B796DB7AF17A409448C385A83F2_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
Configuration_t29C11C7E576D64F717543048BDA1EBCEF0CF60C0 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<Configuration_t29C11C7E576D64F717543048BDA1EBCEF0CF60C0 *>(__this + _offset);
int32_t _returnValue;
_returnValue = Configuration_GetHashCode_m1714C8505EE74B796DB7AF17A409448C385A83F2(_thisAdjusted, method);
return _returnValue;
}
// System.Boolean UnityEngine.XR.ARSubsystems.Configuration::Equals(UnityEngine.XR.ARSubsystems.Configuration)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Configuration_Equals_m3EABF1A712E3AB8B1BCB70F71A4DA0B29BD3AB23 (Configuration_t29C11C7E576D64F717543048BDA1EBCEF0CF60C0 * __this, Configuration_t29C11C7E576D64F717543048BDA1EBCEF0CF60C0 ___other0, const RuntimeMethod* method)
{
ConfigurationDescriptor_t5CD12F017FCCF861DC33D7C0D6F0121015DEEA78 V_0;
memset((&V_0), 0, sizeof(V_0));
{
// public bool Equals(Configuration other) => descriptor.Equals(other.descriptor) && (features == other.features);
ConfigurationDescriptor_t5CD12F017FCCF861DC33D7C0D6F0121015DEEA78 L_0;
L_0 = Configuration_get_descriptor_mD7539C193666CFFB9258CE40D88EB7DA3C48DDDA_inline((Configuration_t29C11C7E576D64F717543048BDA1EBCEF0CF60C0 *)__this, /*hidden argument*/NULL);
V_0 = L_0;
ConfigurationDescriptor_t5CD12F017FCCF861DC33D7C0D6F0121015DEEA78 L_1;
L_1 = Configuration_get_descriptor_mD7539C193666CFFB9258CE40D88EB7DA3C48DDDA_inline((Configuration_t29C11C7E576D64F717543048BDA1EBCEF0CF60C0 *)(&___other0), /*hidden argument*/NULL);
bool L_2;
L_2 = ConfigurationDescriptor_Equals_m6908A703D5C6F693555FCC9A616D85E430012363((ConfigurationDescriptor_t5CD12F017FCCF861DC33D7C0D6F0121015DEEA78 *)(&V_0), L_1, /*hidden argument*/NULL);
if (!L_2)
{
goto IL_0027;
}
}
{
uint64_t L_3;
L_3 = Configuration_get_features_m8F2353DC080AF51D657C4CBD8E9DB4DAEAB72B5A_inline((Configuration_t29C11C7E576D64F717543048BDA1EBCEF0CF60C0 *)__this, /*hidden argument*/NULL);
uint64_t L_4;
L_4 = Configuration_get_features_m8F2353DC080AF51D657C4CBD8E9DB4DAEAB72B5A_inline((Configuration_t29C11C7E576D64F717543048BDA1EBCEF0CF60C0 *)(&___other0), /*hidden argument*/NULL);
return (bool)((((int64_t)L_3) == ((int64_t)L_4))? 1 : 0);
}
IL_0027:
{
return (bool)0;
}
}
IL2CPP_EXTERN_C bool Configuration_Equals_m3EABF1A712E3AB8B1BCB70F71A4DA0B29BD3AB23_AdjustorThunk (RuntimeObject * __this, Configuration_t29C11C7E576D64F717543048BDA1EBCEF0CF60C0 ___other0, const RuntimeMethod* method)
{
Configuration_t29C11C7E576D64F717543048BDA1EBCEF0CF60C0 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<Configuration_t29C11C7E576D64F717543048BDA1EBCEF0CF60C0 *>(__this + _offset);
bool _returnValue;
_returnValue = Configuration_Equals_m3EABF1A712E3AB8B1BCB70F71A4DA0B29BD3AB23(_thisAdjusted, ___other0, method);
return _returnValue;
}
// System.Boolean UnityEngine.XR.ARSubsystems.Configuration::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Configuration_Equals_m7C598F62999ABC2566CDCD656FF0ACA11DBC9807 (Configuration_t29C11C7E576D64F717543048BDA1EBCEF0CF60C0 * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Configuration_t29C11C7E576D64F717543048BDA1EBCEF0CF60C0_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
// public override bool Equals(object obj) => (obj is Configuration) && Equals((Configuration)obj);
RuntimeObject * L_0 = ___obj0;
if (!((RuntimeObject *)IsInstSealed((RuntimeObject*)L_0, Configuration_t29C11C7E576D64F717543048BDA1EBCEF0CF60C0_il2cpp_TypeInfo_var)))
{
goto IL_0015;
}
}
{
RuntimeObject * L_1 = ___obj0;
bool L_2;
L_2 = Configuration_Equals_m3EABF1A712E3AB8B1BCB70F71A4DA0B29BD3AB23((Configuration_t29C11C7E576D64F717543048BDA1EBCEF0CF60C0 *)__this, ((*(Configuration_t29C11C7E576D64F717543048BDA1EBCEF0CF60C0 *)((Configuration_t29C11C7E576D64F717543048BDA1EBCEF0CF60C0 *)UnBox(L_1, Configuration_t29C11C7E576D64F717543048BDA1EBCEF0CF60C0_il2cpp_TypeInfo_var)))), /*hidden argument*/NULL);
return L_2;
}
IL_0015:
{
return (bool)0;
}
}
IL2CPP_EXTERN_C bool Configuration_Equals_m7C598F62999ABC2566CDCD656FF0ACA11DBC9807_AdjustorThunk (RuntimeObject * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
Configuration_t29C11C7E576D64F717543048BDA1EBCEF0CF60C0 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<Configuration_t29C11C7E576D64F717543048BDA1EBCEF0CF60C0 *>(__this + _offset);
bool _returnValue;
_returnValue = Configuration_Equals_m7C598F62999ABC2566CDCD656FF0ACA11DBC9807(_thisAdjusted, ___obj0, 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
// System.Void UnityEngine.XR.ARSubsystems.ConfigurationChooser::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConfigurationChooser__ctor_mDD8DB2D97E4DD5B6CC29809BBFDDDEA149A1150A (ConfigurationChooser_t0CCF856A226297A702F306A2217CF17D652E72C4 * __this, const RuntimeMethod* method)
{
{
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__this, /*hidden argument*/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
// System.IntPtr UnityEngine.XR.ARSubsystems.ConfigurationDescriptor::get_identifier()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR intptr_t ConfigurationDescriptor_get_identifier_m829E6611B4E4B0E33E8E87902FDFCDAEC0F2B8A0 (ConfigurationDescriptor_t5CD12F017FCCF861DC33D7C0D6F0121015DEEA78 * __this, const RuntimeMethod* method)
{
{
// public IntPtr identifier => m_Identifier;
intptr_t L_0 = __this->get_m_Identifier_0();
return (intptr_t)L_0;
}
}
IL2CPP_EXTERN_C intptr_t ConfigurationDescriptor_get_identifier_m829E6611B4E4B0E33E8E87902FDFCDAEC0F2B8A0_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
ConfigurationDescriptor_t5CD12F017FCCF861DC33D7C0D6F0121015DEEA78 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<ConfigurationDescriptor_t5CD12F017FCCF861DC33D7C0D6F0121015DEEA78 *>(__this + _offset);
intptr_t _returnValue;
_returnValue = ConfigurationDescriptor_get_identifier_m829E6611B4E4B0E33E8E87902FDFCDAEC0F2B8A0_inline(_thisAdjusted, method);
return _returnValue;
}
// UnityEngine.XR.ARSubsystems.Feature UnityEngine.XR.ARSubsystems.ConfigurationDescriptor::get_capabilities()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t ConfigurationDescriptor_get_capabilities_mD48908AE629D6E78D84F355B59CF742ABFD7C649 (ConfigurationDescriptor_t5CD12F017FCCF861DC33D7C0D6F0121015DEEA78 * __this, const RuntimeMethod* method)
{
{
// public Feature capabilities => m_Capabilities;
uint64_t L_0 = __this->get_m_Capabilities_1();
return L_0;
}
}
IL2CPP_EXTERN_C uint64_t ConfigurationDescriptor_get_capabilities_mD48908AE629D6E78D84F355B59CF742ABFD7C649_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
ConfigurationDescriptor_t5CD12F017FCCF861DC33D7C0D6F0121015DEEA78 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<ConfigurationDescriptor_t5CD12F017FCCF861DC33D7C0D6F0121015DEEA78 *>(__this + _offset);
uint64_t _returnValue;
_returnValue = ConfigurationDescriptor_get_capabilities_mD48908AE629D6E78D84F355B59CF742ABFD7C649_inline(_thisAdjusted, method);
return _returnValue;
}
// System.Int32 UnityEngine.XR.ARSubsystems.ConfigurationDescriptor::get_rank()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ConfigurationDescriptor_get_rank_mF775801AAD4BC8E980682B569F676BD536BA78B8 (ConfigurationDescriptor_t5CD12F017FCCF861DC33D7C0D6F0121015DEEA78 * __this, const RuntimeMethod* method)
{
{
// public int rank => m_Rank;
int32_t L_0 = __this->get_m_Rank_2();
return L_0;
}
}
IL2CPP_EXTERN_C int32_t ConfigurationDescriptor_get_rank_mF775801AAD4BC8E980682B569F676BD536BA78B8_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
ConfigurationDescriptor_t5CD12F017FCCF861DC33D7C0D6F0121015DEEA78 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<ConfigurationDescriptor_t5CD12F017FCCF861DC33D7C0D6F0121015DEEA78 *>(__this + _offset);
int32_t _returnValue;
_returnValue = ConfigurationDescriptor_get_rank_mF775801AAD4BC8E980682B569F676BD536BA78B8_inline(_thisAdjusted, method);
return _returnValue;
}
// System.String UnityEngine.XR.ARSubsystems.ConfigurationDescriptor::HexString(System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* ConfigurationDescriptor_HexString_m06E793AFE575A13CBC943EBFDCAB4BA290AAF8F3 (ConfigurationDescriptor_t5CD12F017FCCF861DC33D7C0D6F0121015DEEA78 * __this, intptr_t ___ptr0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int64_t378EE0D608BD3107E77238E85F30D2BBD46981F3_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral40F25DCEA3689A55267487C5F546C2AD0C2BB96B);
s_Il2CppMethodInitialized = true;
}
{
// unsafe string HexString(IntPtr ptr) => sizeof(IntPtr) == 4 ? $"0x{ptr.ToInt32():x}" : $"0x{ptr.ToInt64():x}";
uint32_t L_0 = sizeof(intptr_t);
if ((((int32_t)L_0) == ((int32_t)4)))
{
goto IL_0020;
}
}
{
int64_t L_1;
L_1 = IntPtr_ToInt64_m521F809F5D9ECAF93E808CFFFE45F67620C7879A((intptr_t*)(&___ptr0), /*hidden argument*/NULL);
int64_t L_2 = L_1;
RuntimeObject * L_3 = Box(Int64_t378EE0D608BD3107E77238E85F30D2BBD46981F3_il2cpp_TypeInfo_var, &L_2);
String_t* L_4;
L_4 = String_Format_mB3D38E5238C3164DB4D7D29339D9E225A4496D17(_stringLiteral40F25DCEA3689A55267487C5F546C2AD0C2BB96B, L_3, /*hidden argument*/NULL);
return L_4;
}
IL_0020:
{
int32_t L_5;
L_5 = IntPtr_ToInt32_m94C1C0E438A3B7E040B0A087FDDC0D4F90BABB08((intptr_t*)(&___ptr0), /*hidden argument*/NULL);
int32_t L_6 = L_5;
RuntimeObject * L_7 = Box(Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var, &L_6);
String_t* L_8;
L_8 = String_Format_mB3D38E5238C3164DB4D7D29339D9E225A4496D17(_stringLiteral40F25DCEA3689A55267487C5F546C2AD0C2BB96B, L_7, /*hidden argument*/NULL);
return L_8;
}
}
IL2CPP_EXTERN_C String_t* ConfigurationDescriptor_HexString_m06E793AFE575A13CBC943EBFDCAB4BA290AAF8F3_AdjustorThunk (RuntimeObject * __this, intptr_t ___ptr0, const RuntimeMethod* method)
{
ConfigurationDescriptor_t5CD12F017FCCF861DC33D7C0D6F0121015DEEA78 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<ConfigurationDescriptor_t5CD12F017FCCF861DC33D7C0D6F0121015DEEA78 *>(__this + _offset);
String_t* _returnValue;
_returnValue = ConfigurationDescriptor_HexString_m06E793AFE575A13CBC943EBFDCAB4BA290AAF8F3(_thisAdjusted, ___ptr0, method);
return _returnValue;
}
// System.String UnityEngine.XR.ARSubsystems.ConfigurationDescriptor::ToString()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* ConfigurationDescriptor_ToString_mF67E92AE3930DFD749F7186D49FFC600E2B197EE (ConfigurationDescriptor_t5CD12F017FCCF861DC33D7C0D6F0121015DEEA78 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral758733BDBED83CBFF4F635AC26CA92AAE477F75D);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralF627CDA1D5403909B224DFB1DDF5D0F8E00F2EEA);
s_Il2CppMethodInitialized = true;
}
{
// public override string ToString() => $"(Identifier: {HexString(identifier)}, Rank: {rank}, Capabilities: {capabilities.ToStringList()})";
intptr_t L_0;
L_0 = ConfigurationDescriptor_get_identifier_m829E6611B4E4B0E33E8E87902FDFCDAEC0F2B8A0_inline((ConfigurationDescriptor_t5CD12F017FCCF861DC33D7C0D6F0121015DEEA78 *)__this, /*hidden argument*/NULL);
String_t* L_1;
L_1 = ConfigurationDescriptor_HexString_m06E793AFE575A13CBC943EBFDCAB4BA290AAF8F3((ConfigurationDescriptor_t5CD12F017FCCF861DC33D7C0D6F0121015DEEA78 *)__this, (intptr_t)L_0, /*hidden argument*/NULL);
int32_t L_2;
L_2 = ConfigurationDescriptor_get_rank_mF775801AAD4BC8E980682B569F676BD536BA78B8_inline((ConfigurationDescriptor_t5CD12F017FCCF861DC33D7C0D6F0121015DEEA78 *)__this, /*hidden argument*/NULL);
int32_t L_3 = L_2;
RuntimeObject * L_4 = Box(Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var, &L_3);
uint64_t L_5;
L_5 = ConfigurationDescriptor_get_capabilities_mD48908AE629D6E78D84F355B59CF742ABFD7C649_inline((ConfigurationDescriptor_t5CD12F017FCCF861DC33D7C0D6F0121015DEEA78 *)__this, /*hidden argument*/NULL);
String_t* L_6;
L_6 = FeatureExtensions_ToStringList_m1B8E6CA945AE2E060DB1D4DFA60CCD72AADC082D(L_5, _stringLiteral758733BDBED83CBFF4F635AC26CA92AAE477F75D, /*hidden argument*/NULL);
String_t* L_7;
L_7 = String_Format_m039737CCD992C5BFC8D16DFD681F5E8786E87FA6(_stringLiteralF627CDA1D5403909B224DFB1DDF5D0F8E00F2EEA, L_1, L_4, L_6, /*hidden argument*/NULL);
return L_7;
}
}
IL2CPP_EXTERN_C String_t* ConfigurationDescriptor_ToString_mF67E92AE3930DFD749F7186D49FFC600E2B197EE_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
ConfigurationDescriptor_t5CD12F017FCCF861DC33D7C0D6F0121015DEEA78 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<ConfigurationDescriptor_t5CD12F017FCCF861DC33D7C0D6F0121015DEEA78 *>(__this + _offset);
String_t* _returnValue;
_returnValue = ConfigurationDescriptor_ToString_mF67E92AE3930DFD749F7186D49FFC600E2B197EE(_thisAdjusted, method);
return _returnValue;
}
// System.Int32 UnityEngine.XR.ARSubsystems.ConfigurationDescriptor::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ConfigurationDescriptor_GetHashCode_m1B74FC9C9B33BBED2192C1A47570C13A40008091 (ConfigurationDescriptor_t5CD12F017FCCF861DC33D7C0D6F0121015DEEA78 * __this, const RuntimeMethod* method)
{
uint64_t V_0 = 0;
{
// public override int GetHashCode() => HashCode.Combine(m_Identifier.GetHashCode(), ((ulong)m_Capabilities).GetHashCode(), m_Rank.GetHashCode());
intptr_t* L_0 = __this->get_address_of_m_Identifier_0();
int32_t L_1;
L_1 = IntPtr_GetHashCode_m55E65FB52EFE7C0EBC3C28E66A5D7542F3B1D35D((intptr_t*)L_0, /*hidden argument*/NULL);
uint64_t L_2 = __this->get_m_Capabilities_1();
V_0 = L_2;
int32_t L_3;
L_3 = UInt64_GetHashCode_mCDF662897A3F02CED11A9F9E66C5BF4E28C02B33((uint64_t*)(&V_0), /*hidden argument*/NULL);
int32_t* L_4 = __this->get_address_of_m_Rank_2();
int32_t L_5;
L_5 = Int32_GetHashCode_mEDD3F492A5F7CF021125AE3F38E2B8F8743FC667((int32_t*)L_4, /*hidden argument*/NULL);
int32_t L_6;
L_6 = HashCode_Combine_m18C3D10955CD71D976A5200FB0F5531F2F1F6BE1(L_1, L_3, L_5, /*hidden argument*/NULL);
return L_6;
}
}
IL2CPP_EXTERN_C int32_t ConfigurationDescriptor_GetHashCode_m1B74FC9C9B33BBED2192C1A47570C13A40008091_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
ConfigurationDescriptor_t5CD12F017FCCF861DC33D7C0D6F0121015DEEA78 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<ConfigurationDescriptor_t5CD12F017FCCF861DC33D7C0D6F0121015DEEA78 *>(__this + _offset);
int32_t _returnValue;
_returnValue = ConfigurationDescriptor_GetHashCode_m1B74FC9C9B33BBED2192C1A47570C13A40008091(_thisAdjusted, method);
return _returnValue;
}
// System.Boolean UnityEngine.XR.ARSubsystems.ConfigurationDescriptor::Equals(UnityEngine.XR.ARSubsystems.ConfigurationDescriptor)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ConfigurationDescriptor_Equals_m6908A703D5C6F693555FCC9A616D85E430012363 (ConfigurationDescriptor_t5CD12F017FCCF861DC33D7C0D6F0121015DEEA78 * __this, ConfigurationDescriptor_t5CD12F017FCCF861DC33D7C0D6F0121015DEEA78 ___other0, const RuntimeMethod* method)
{
{
// (m_Identifier == other.m_Identifier) &&
// (m_Capabilities == other.m_Capabilities) &&
// (m_Rank == other.m_Rank);
intptr_t L_0 = __this->get_m_Identifier_0();
ConfigurationDescriptor_t5CD12F017FCCF861DC33D7C0D6F0121015DEEA78 L_1 = ___other0;
intptr_t L_2 = L_1.get_m_Identifier_0();
bool L_3;
L_3 = IntPtr_op_Equality_mD94F3FE43A65684EFF984A7B95E70D2520C0AC73((intptr_t)L_0, (intptr_t)L_2, /*hidden argument*/NULL);
if (!L_3)
{
goto IL_0030;
}
}
{
uint64_t L_4 = __this->get_m_Capabilities_1();
ConfigurationDescriptor_t5CD12F017FCCF861DC33D7C0D6F0121015DEEA78 L_5 = ___other0;
uint64_t L_6 = L_5.get_m_Capabilities_1();
if ((!(((uint64_t)L_4) == ((uint64_t)L_6))))
{
goto IL_0030;
}
}
{
int32_t L_7 = __this->get_m_Rank_2();
ConfigurationDescriptor_t5CD12F017FCCF861DC33D7C0D6F0121015DEEA78 L_8 = ___other0;
int32_t L_9 = L_8.get_m_Rank_2();
return (bool)((((int32_t)L_7) == ((int32_t)L_9))? 1 : 0);
}
IL_0030:
{
return (bool)0;
}
}
IL2CPP_EXTERN_C bool ConfigurationDescriptor_Equals_m6908A703D5C6F693555FCC9A616D85E430012363_AdjustorThunk (RuntimeObject * __this, ConfigurationDescriptor_t5CD12F017FCCF861DC33D7C0D6F0121015DEEA78 ___other0, const RuntimeMethod* method)
{
ConfigurationDescriptor_t5CD12F017FCCF861DC33D7C0D6F0121015DEEA78 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<ConfigurationDescriptor_t5CD12F017FCCF861DC33D7C0D6F0121015DEEA78 *>(__this + _offset);
bool _returnValue;
_returnValue = ConfigurationDescriptor_Equals_m6908A703D5C6F693555FCC9A616D85E430012363(_thisAdjusted, ___other0, method);
return _returnValue;
}
// System.Boolean UnityEngine.XR.ARSubsystems.ConfigurationDescriptor::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ConfigurationDescriptor_Equals_m4123FDB2B2A6BDDCA3979394FD76CEEFAE534EDB (ConfigurationDescriptor_t5CD12F017FCCF861DC33D7C0D6F0121015DEEA78 * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ConfigurationDescriptor_t5CD12F017FCCF861DC33D7C0D6F0121015DEEA78_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
// public override bool Equals(object obj) => (obj is ConfigurationDescriptor) && Equals((ConfigurationDescriptor)obj);
RuntimeObject * L_0 = ___obj0;
if (!((RuntimeObject *)IsInstSealed((RuntimeObject*)L_0, ConfigurationDescriptor_t5CD12F017FCCF861DC33D7C0D6F0121015DEEA78_il2cpp_TypeInfo_var)))
{
goto IL_0015;
}
}
{
RuntimeObject * L_1 = ___obj0;
bool L_2;
L_2 = ConfigurationDescriptor_Equals_m6908A703D5C6F693555FCC9A616D85E430012363((ConfigurationDescriptor_t5CD12F017FCCF861DC33D7C0D6F0121015DEEA78 *)__this, ((*(ConfigurationDescriptor_t5CD12F017FCCF861DC33D7C0D6F0121015DEEA78 *)((ConfigurationDescriptor_t5CD12F017FCCF861DC33D7C0D6F0121015DEEA78 *)UnBox(L_1, ConfigurationDescriptor_t5CD12F017FCCF861DC33D7C0D6F0121015DEEA78_il2cpp_TypeInfo_var)))), /*hidden argument*/NULL);
return L_2;
}
IL_0015:
{
return (bool)0;
}
}
IL2CPP_EXTERN_C bool ConfigurationDescriptor_Equals_m4123FDB2B2A6BDDCA3979394FD76CEEFAE534EDB_AdjustorThunk (RuntimeObject * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
ConfigurationDescriptor_t5CD12F017FCCF861DC33D7C0D6F0121015DEEA78 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<ConfigurationDescriptor_t5CD12F017FCCF861DC33D7C0D6F0121015DEEA78 *>(__this + _offset);
bool _returnValue;
_returnValue = ConfigurationDescriptor_Equals_m4123FDB2B2A6BDDCA3979394FD76CEEFAE534EDB(_thisAdjusted, ___obj0, 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
// UnityEngine.XR.ARSubsystems.Configuration UnityEngine.XR.ARSubsystems.DefaultConfigurationChooser::ChooseConfiguration(Unity.Collections.NativeSlice`1<UnityEngine.XR.ARSubsystems.ConfigurationDescriptor>,UnityEngine.XR.ARSubsystems.Feature)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Configuration_t29C11C7E576D64F717543048BDA1EBCEF0CF60C0 DefaultConfigurationChooser_ChooseConfiguration_m4CA6F2A0B77732D4EACCA7D6FD3B1B1407ECBBD1 (DefaultConfigurationChooser_tC3488EB08C98156663D851D9F0F0AD9294D4613F * __this, NativeSlice_1_tEFBDB61DC6CB8E764B0E92727E8B9EA61662F8F2 ___descriptors0, uint64_t ___requestedFeatures1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_Dispose_m79BB9557BF615D18A63059DCFFA3FD69F020132A_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_MoveNext_m61D27731413ABDD017C4CEF8CEDC048933342572_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_get_Current_mD6D071A95173F93E2068090483A476DA2D5DBAF6_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NativeSlice_1_GetEnumerator_m7A5BFDF0746F727192351D810B4DA32D67966CEF_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NativeSlice_1_get_Length_m7D873C4D8E53FE893929EDA4D6CA223F64A86759_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
ConfigurationDescriptor_t5CD12F017FCCF861DC33D7C0D6F0121015DEEA78 V_2;
memset((&V_2), 0, sizeof(V_2));
Enumerator_t4FA921251B8D2F59E29728BD1E99A05D23C68573 V_3;
memset((&V_3), 0, sizeof(V_3));
ConfigurationDescriptor_t5CD12F017FCCF861DC33D7C0D6F0121015DEEA78 V_4;
memset((&V_4), 0, sizeof(V_4));
int32_t V_5 = 0;
Exception_t * __last_unhandled_exception = 0;
il2cpp::utils::ExceptionSupportStack<int32_t, 1> __leave_targets;
{
// if (descriptors.Length == 0)
int32_t L_0;
L_0 = NativeSlice_1_get_Length_m7D873C4D8E53FE893929EDA4D6CA223F64A86759_inline((NativeSlice_1_tEFBDB61DC6CB8E764B0E92727E8B9EA61662F8F2 *)(&___descriptors0), /*hidden argument*/NativeSlice_1_get_Length_m7D873C4D8E53FE893929EDA4D6CA223F64A86759_RuntimeMethod_var);
if (L_0)
{
goto IL_0019;
}
}
{
// throw new ArgumentException("No configuration descriptors to choose from.", nameof(descriptors));
ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_1 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var)));
ArgumentException__ctor_m71044C2110E357B71A1C30D2561C3F861AF1DC0D(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral999193589C222540CE490D9CC14E170C46AD6523)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral4484D73E5D13E98119AFD8332CD8BC78758E004F)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&DefaultConfigurationChooser_ChooseConfiguration_m4CA6F2A0B77732D4EACCA7D6FD3B1B1407ECBBD1_RuntimeMethod_var)));
}
IL_0019:
{
// if (requestedFeatures.Intersection(Feature.AnyTrackingMode).Count() > 1)
uint64_t L_2 = ___requestedFeatures1;
uint64_t L_3;
L_3 = FeatureExtensions_Intersection_m2CA900F610313CDD88F981646EBE46B1AD8AC5E9(L_2, ((int64_t)((int64_t)((int32_t)12))), /*hidden argument*/NULL);
int32_t L_4;
L_4 = FeatureExtensions_Count_m5EF2EFA14A36261D35A95A6D5A39A107D223F6B6(L_3, /*hidden argument*/NULL);
if ((((int32_t)L_4) <= ((int32_t)1)))
{
goto IL_0052;
}
}
{
// throw new ArgumentException($"Zero or one tracking mode must be requested. Requested tracking modes => {requestedFeatures.Intersection(Feature.AnyTrackingMode).ToStringList()}", nameof(requestedFeatures));
uint64_t L_5 = ___requestedFeatures1;
uint64_t L_6;
L_6 = FeatureExtensions_Intersection_m2CA900F610313CDD88F981646EBE46B1AD8AC5E9(L_5, ((int64_t)((int64_t)((int32_t)12))), /*hidden argument*/NULL);
String_t* L_7;
L_7 = FeatureExtensions_ToStringList_m1B8E6CA945AE2E060DB1D4DFA60CCD72AADC082D(L_6, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral758733BDBED83CBFF4F635AC26CA92AAE477F75D)), /*hidden argument*/NULL);
String_t* L_8;
L_8 = String_Concat_m4B4AB72618348C5DFBFBA8DED84B9E2EBDB55E1B(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralA391D138A809D167B6D3419E2A0940FC8958C8EF)), L_7, /*hidden argument*/NULL);
ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_9 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var)));
ArgumentException__ctor_m71044C2110E357B71A1C30D2561C3F861AF1DC0D(L_9, L_8, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral05595EFD90B4CF9D17A431C3346419AA27488DDA)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_9, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&DefaultConfigurationChooser_ChooseConfiguration_m4CA6F2A0B77732D4EACCA7D6FD3B1B1407ECBBD1_RuntimeMethod_var)));
}
IL_0052:
{
// if (requestedFeatures.Intersection(Feature.AnyCamera).Count() > 1)
uint64_t L_10 = ___requestedFeatures1;
uint64_t L_11;
L_11 = FeatureExtensions_Intersection_m2CA900F610313CDD88F981646EBE46B1AD8AC5E9(L_10, ((int64_t)((int64_t)3)), /*hidden argument*/NULL);
int32_t L_12;
L_12 = FeatureExtensions_Count_m5EF2EFA14A36261D35A95A6D5A39A107D223F6B6(L_11, /*hidden argument*/NULL);
if ((((int32_t)L_12) <= ((int32_t)1)))
{
goto IL_0089;
}
}
{
// throw new ArgumentException($"Zero or one camera mode must be requested. Requested camera modes => {requestedFeatures.Intersection(Feature.AnyCamera).ToStringList()}", nameof(requestedFeatures));
uint64_t L_13 = ___requestedFeatures1;
uint64_t L_14;
L_14 = FeatureExtensions_Intersection_m2CA900F610313CDD88F981646EBE46B1AD8AC5E9(L_13, ((int64_t)((int64_t)3)), /*hidden argument*/NULL);
String_t* L_15;
L_15 = FeatureExtensions_ToStringList_m1B8E6CA945AE2E060DB1D4DFA60CCD72AADC082D(L_14, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral758733BDBED83CBFF4F635AC26CA92AAE477F75D)), /*hidden argument*/NULL);
String_t* L_16;
L_16 = String_Concat_m4B4AB72618348C5DFBFBA8DED84B9E2EBDB55E1B(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral372BF79AE75002958CBC0912211B035DB3B4217D)), L_15, /*hidden argument*/NULL);
ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_17 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var)));
ArgumentException__ctor_m71044C2110E357B71A1C30D2561C3F861AF1DC0D(L_17, L_16, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral05595EFD90B4CF9D17A431C3346419AA27488DDA)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_17, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&DefaultConfigurationChooser_ChooseConfiguration_m4CA6F2A0B77732D4EACCA7D6FD3B1B1407ECBBD1_RuntimeMethod_var)));
}
IL_0089:
{
// int highestFeatureCount = -1;
V_0 = (-1);
// int highestRank = int.MinValue;
V_1 = ((int32_t)-2147483648LL);
// ConfigurationDescriptor bestDescriptor = default;
il2cpp_codegen_initobj((&V_2), sizeof(ConfigurationDescriptor_t5CD12F017FCCF861DC33D7C0D6F0121015DEEA78 ));
// foreach (var descriptor in descriptors)
Enumerator_t4FA921251B8D2F59E29728BD1E99A05D23C68573 L_18;
L_18 = NativeSlice_1_GetEnumerator_m7A5BFDF0746F727192351D810B4DA32D67966CEF((NativeSlice_1_tEFBDB61DC6CB8E764B0E92727E8B9EA61662F8F2 *)(&___descriptors0), /*hidden argument*/NativeSlice_1_GetEnumerator_m7A5BFDF0746F727192351D810B4DA32D67966CEF_RuntimeMethod_var);
V_3 = L_18;
}
IL_00a1:
try
{// begin try (depth: 1)
{
goto IL_00e2;
}
IL_00a3:
{
// foreach (var descriptor in descriptors)
ConfigurationDescriptor_t5CD12F017FCCF861DC33D7C0D6F0121015DEEA78 L_19;
L_19 = Enumerator_get_Current_mD6D071A95173F93E2068090483A476DA2D5DBAF6((Enumerator_t4FA921251B8D2F59E29728BD1E99A05D23C68573 *)(&V_3), /*hidden argument*/Enumerator_get_Current_mD6D071A95173F93E2068090483A476DA2D5DBAF6_RuntimeMethod_var);
V_4 = L_19;
// int featureCount = requestedFeatures.Intersection(descriptor.capabilities).Count();
uint64_t L_20 = ___requestedFeatures1;
uint64_t L_21;
L_21 = ConfigurationDescriptor_get_capabilities_mD48908AE629D6E78D84F355B59CF742ABFD7C649_inline((ConfigurationDescriptor_t5CD12F017FCCF861DC33D7C0D6F0121015DEEA78 *)(&V_4), /*hidden argument*/NULL);
uint64_t L_22;
L_22 = FeatureExtensions_Intersection_m2CA900F610313CDD88F981646EBE46B1AD8AC5E9(L_20, L_21, /*hidden argument*/NULL);
int32_t L_23;
L_23 = FeatureExtensions_Count_m5EF2EFA14A36261D35A95A6D5A39A107D223F6B6(L_22, /*hidden argument*/NULL);
V_5 = L_23;
// if ((featureCount > highestFeatureCount) ||
// (featureCount == highestFeatureCount && descriptor.rank > highestRank))
int32_t L_24 = V_5;
int32_t L_25 = V_0;
if ((((int32_t)L_24) > ((int32_t)L_25)))
{
goto IL_00d4;
}
}
IL_00c5:
{
int32_t L_26 = V_5;
int32_t L_27 = V_0;
if ((!(((uint32_t)L_26) == ((uint32_t)L_27))))
{
goto IL_00e2;
}
}
IL_00ca:
{
int32_t L_28;
L_28 = ConfigurationDescriptor_get_rank_mF775801AAD4BC8E980682B569F676BD536BA78B8_inline((ConfigurationDescriptor_t5CD12F017FCCF861DC33D7C0D6F0121015DEEA78 *)(&V_4), /*hidden argument*/NULL);
int32_t L_29 = V_1;
if ((((int32_t)L_28) <= ((int32_t)L_29)))
{
goto IL_00e2;
}
}
IL_00d4:
{
// highestFeatureCount = featureCount;
int32_t L_30 = V_5;
V_0 = L_30;
// highestRank = descriptor.rank;
int32_t L_31;
L_31 = ConfigurationDescriptor_get_rank_mF775801AAD4BC8E980682B569F676BD536BA78B8_inline((ConfigurationDescriptor_t5CD12F017FCCF861DC33D7C0D6F0121015DEEA78 *)(&V_4), /*hidden argument*/NULL);
V_1 = L_31;
// bestDescriptor = descriptor;
ConfigurationDescriptor_t5CD12F017FCCF861DC33D7C0D6F0121015DEEA78 L_32 = V_4;
V_2 = L_32;
}
IL_00e2:
{
// foreach (var descriptor in descriptors)
bool L_33;
L_33 = Enumerator_MoveNext_m61D27731413ABDD017C4CEF8CEDC048933342572((Enumerator_t4FA921251B8D2F59E29728BD1E99A05D23C68573 *)(&V_3), /*hidden argument*/Enumerator_MoveNext_m61D27731413ABDD017C4CEF8CEDC048933342572_RuntimeMethod_var);
if (L_33)
{
goto IL_00a3;
}
}
IL_00eb:
{
IL2CPP_LEAVE(0xFB, FINALLY_00ed);
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_00ed;
}
FINALLY_00ed:
{// begin finally (depth: 1)
Enumerator_Dispose_m79BB9557BF615D18A63059DCFFA3FD69F020132A((Enumerator_t4FA921251B8D2F59E29728BD1E99A05D23C68573 *)(&V_3), /*hidden argument*/Enumerator_Dispose_m79BB9557BF615D18A63059DCFFA3FD69F020132A_RuntimeMethod_var);
IL2CPP_END_FINALLY(237)
}// end finally (depth: 1)
IL2CPP_CLEANUP(237)
{
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
IL2CPP_JUMP_TBL(0xFB, IL_00fb)
}
IL_00fb:
{
// return new Configuration(bestDescriptor, requestedFeatures.Intersection(bestDescriptor.capabilities));
ConfigurationDescriptor_t5CD12F017FCCF861DC33D7C0D6F0121015DEEA78 L_34 = V_2;
uint64_t L_35 = ___requestedFeatures1;
uint64_t L_36;
L_36 = ConfigurationDescriptor_get_capabilities_mD48908AE629D6E78D84F355B59CF742ABFD7C649_inline((ConfigurationDescriptor_t5CD12F017FCCF861DC33D7C0D6F0121015DEEA78 *)(&V_2), /*hidden argument*/NULL);
uint64_t L_37;
L_37 = FeatureExtensions_Intersection_m2CA900F610313CDD88F981646EBE46B1AD8AC5E9(L_35, L_36, /*hidden argument*/NULL);
Configuration_t29C11C7E576D64F717543048BDA1EBCEF0CF60C0 L_38;
memset((&L_38), 0, sizeof(L_38));
Configuration__ctor_m5A3F2286F33BA303B4C8A8E0E34ED6DA993A43BB((&L_38), L_34, L_37, /*hidden argument*/NULL);
return L_38;
}
}
// System.Void UnityEngine.XR.ARSubsystems.DefaultConfigurationChooser::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DefaultConfigurationChooser__ctor_m01D5B274BA5A7C81A20C94A920681CAE8466A4BC (DefaultConfigurationChooser_tC3488EB08C98156663D851D9F0F0AD9294D4613F * __this, const RuntimeMethod* method)
{
{
ConfigurationChooser__ctor_mDD8DB2D97E4DD5B6CC29809BBFDDDEA149A1150A(__this, /*hidden argument*/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
// System.Void Microsoft.CodeAnalysis.EmbeddedAttribute::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmbeddedAttribute__ctor_mB39F1C96BEB73438DE3FEDB828717EE136940697 (EmbeddedAttribute_t90946B46F8A884CD575D2A26804B242737A86DDA * __this, const RuntimeMethod* method)
{
{
Attribute__ctor_m5C1862A7DFC2C25A4797A8C5F681FBB5CB53ECE1(__this, /*hidden argument*/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
// System.Boolean UnityEngine.XR.ARSubsystems.EnvironmentDepthModeExtension::Enabled(UnityEngine.XR.ARSubsystems.EnvironmentDepthMode)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EnvironmentDepthModeExtension_Enabled_m0EDEFDC74670F5F0B499BD2E315715C424077C12 (int32_t ___environmentDepthMode0, const RuntimeMethod* method)
{
{
// => environmentDepthMode != EnvironmentDepthMode.Disabled;
int32_t L_0 = ___environmentDepthMode0;
return (bool)((!(((uint32_t)L_0) <= ((uint32_t)0)))? 1 : 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
// Conversion methods for marshalling of: UnityEngine.XR.ARSubsystems.FaceSubsystemParams
IL2CPP_EXTERN_C void FaceSubsystemParams_t2FC64133455298391F1A1DDC61B151E688301B09_marshal_pinvoke(const FaceSubsystemParams_t2FC64133455298391F1A1DDC61B151E688301B09& unmarshaled, FaceSubsystemParams_t2FC64133455298391F1A1DDC61B151E688301B09_marshaled_pinvoke& marshaled)
{
Exception_t* ___U3CproviderTypeU3Ek__BackingField_1Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field '<providerType>k__BackingField' of type 'FaceSubsystemParams': Reference type field marshaling is not supported.");
IL2CPP_RAISE_MANAGED_EXCEPTION(___U3CproviderTypeU3Ek__BackingField_1Exception, NULL);
}
IL2CPP_EXTERN_C void FaceSubsystemParams_t2FC64133455298391F1A1DDC61B151E688301B09_marshal_pinvoke_back(const FaceSubsystemParams_t2FC64133455298391F1A1DDC61B151E688301B09_marshaled_pinvoke& marshaled, FaceSubsystemParams_t2FC64133455298391F1A1DDC61B151E688301B09& unmarshaled)
{
Exception_t* ___U3CproviderTypeU3Ek__BackingField_1Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field '<providerType>k__BackingField' of type 'FaceSubsystemParams': Reference type field marshaling is not supported.");
IL2CPP_RAISE_MANAGED_EXCEPTION(___U3CproviderTypeU3Ek__BackingField_1Exception, NULL);
}
// Conversion method for clean up from marshalling of: UnityEngine.XR.ARSubsystems.FaceSubsystemParams
IL2CPP_EXTERN_C void FaceSubsystemParams_t2FC64133455298391F1A1DDC61B151E688301B09_marshal_pinvoke_cleanup(FaceSubsystemParams_t2FC64133455298391F1A1DDC61B151E688301B09_marshaled_pinvoke& marshaled)
{
}
// Conversion methods for marshalling of: UnityEngine.XR.ARSubsystems.FaceSubsystemParams
IL2CPP_EXTERN_C void FaceSubsystemParams_t2FC64133455298391F1A1DDC61B151E688301B09_marshal_com(const FaceSubsystemParams_t2FC64133455298391F1A1DDC61B151E688301B09& unmarshaled, FaceSubsystemParams_t2FC64133455298391F1A1DDC61B151E688301B09_marshaled_com& marshaled)
{
Exception_t* ___U3CproviderTypeU3Ek__BackingField_1Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field '<providerType>k__BackingField' of type 'FaceSubsystemParams': Reference type field marshaling is not supported.");
IL2CPP_RAISE_MANAGED_EXCEPTION(___U3CproviderTypeU3Ek__BackingField_1Exception, NULL);
}
IL2CPP_EXTERN_C void FaceSubsystemParams_t2FC64133455298391F1A1DDC61B151E688301B09_marshal_com_back(const FaceSubsystemParams_t2FC64133455298391F1A1DDC61B151E688301B09_marshaled_com& marshaled, FaceSubsystemParams_t2FC64133455298391F1A1DDC61B151E688301B09& unmarshaled)
{
Exception_t* ___U3CproviderTypeU3Ek__BackingField_1Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field '<providerType>k__BackingField' of type 'FaceSubsystemParams': Reference type field marshaling is not supported.");
IL2CPP_RAISE_MANAGED_EXCEPTION(___U3CproviderTypeU3Ek__BackingField_1Exception, NULL);
}
// Conversion method for clean up from marshalling of: UnityEngine.XR.ARSubsystems.FaceSubsystemParams
IL2CPP_EXTERN_C void FaceSubsystemParams_t2FC64133455298391F1A1DDC61B151E688301B09_marshal_com_cleanup(FaceSubsystemParams_t2FC64133455298391F1A1DDC61B151E688301B09_marshaled_com& marshaled)
{
}
// System.String UnityEngine.XR.ARSubsystems.FaceSubsystemParams::get_id()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* FaceSubsystemParams_get_id_mE2ED204CE1D85C4ADCFB4436EACF3BF8B6893DEB (FaceSubsystemParams_t2FC64133455298391F1A1DDC61B151E688301B09 * __this, const RuntimeMethod* method)
{
{
// public string id { get; set; }
String_t* L_0 = __this->get_U3CidU3Ek__BackingField_0();
return L_0;
}
}
IL2CPP_EXTERN_C String_t* FaceSubsystemParams_get_id_mE2ED204CE1D85C4ADCFB4436EACF3BF8B6893DEB_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
FaceSubsystemParams_t2FC64133455298391F1A1DDC61B151E688301B09 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<FaceSubsystemParams_t2FC64133455298391F1A1DDC61B151E688301B09 *>(__this + _offset);
String_t* _returnValue;
_returnValue = FaceSubsystemParams_get_id_mE2ED204CE1D85C4ADCFB4436EACF3BF8B6893DEB_inline(_thisAdjusted, method);
return _returnValue;
}
// System.Void UnityEngine.XR.ARSubsystems.FaceSubsystemParams::set_id(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FaceSubsystemParams_set_id_m89149E2175F86663FDFEB008B36BDAF40EA1585A (FaceSubsystemParams_t2FC64133455298391F1A1DDC61B151E688301B09 * __this, String_t* ___value0, const RuntimeMethod* method)
{
{
// public string id { get; set; }
String_t* L_0 = ___value0;
__this->set_U3CidU3Ek__BackingField_0(L_0);
return;
}
}
IL2CPP_EXTERN_C void FaceSubsystemParams_set_id_m89149E2175F86663FDFEB008B36BDAF40EA1585A_AdjustorThunk (RuntimeObject * __this, String_t* ___value0, const RuntimeMethod* method)
{
FaceSubsystemParams_t2FC64133455298391F1A1DDC61B151E688301B09 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<FaceSubsystemParams_t2FC64133455298391F1A1DDC61B151E688301B09 *>(__this + _offset);
FaceSubsystemParams_set_id_m89149E2175F86663FDFEB008B36BDAF40EA1585A_inline(_thisAdjusted, ___value0, method);
}
// System.Type UnityEngine.XR.ARSubsystems.FaceSubsystemParams::get_providerType()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t * FaceSubsystemParams_get_providerType_m8984786E19DCC5F9B87060A9BC29F25A4A4A4B3A (FaceSubsystemParams_t2FC64133455298391F1A1DDC61B151E688301B09 * __this, const RuntimeMethod* method)
{
{
// public Type providerType { get; set; }
Type_t * L_0 = __this->get_U3CproviderTypeU3Ek__BackingField_1();
return L_0;
}
}
IL2CPP_EXTERN_C Type_t * FaceSubsystemParams_get_providerType_m8984786E19DCC5F9B87060A9BC29F25A4A4A4B3A_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
FaceSubsystemParams_t2FC64133455298391F1A1DDC61B151E688301B09 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<FaceSubsystemParams_t2FC64133455298391F1A1DDC61B151E688301B09 *>(__this + _offset);
Type_t * _returnValue;
_returnValue = FaceSubsystemParams_get_providerType_m8984786E19DCC5F9B87060A9BC29F25A4A4A4B3A_inline(_thisAdjusted, method);
return _returnValue;
}
// System.Void UnityEngine.XR.ARSubsystems.FaceSubsystemParams::set_providerType(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FaceSubsystemParams_set_providerType_m5D660A72F34CA0D1C887F5BA68045B1D3973C7B3 (FaceSubsystemParams_t2FC64133455298391F1A1DDC61B151E688301B09 * __this, Type_t * ___value0, const RuntimeMethod* method)
{
{
// public Type providerType { get; set; }
Type_t * L_0 = ___value0;
__this->set_U3CproviderTypeU3Ek__BackingField_1(L_0);
return;
}
}
IL2CPP_EXTERN_C void FaceSubsystemParams_set_providerType_m5D660A72F34CA0D1C887F5BA68045B1D3973C7B3_AdjustorThunk (RuntimeObject * __this, Type_t * ___value0, const RuntimeMethod* method)
{
FaceSubsystemParams_t2FC64133455298391F1A1DDC61B151E688301B09 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<FaceSubsystemParams_t2FC64133455298391F1A1DDC61B151E688301B09 *>(__this + _offset);
FaceSubsystemParams_set_providerType_m5D660A72F34CA0D1C887F5BA68045B1D3973C7B3_inline(_thisAdjusted, ___value0, method);
}
// System.Type UnityEngine.XR.ARSubsystems.FaceSubsystemParams::get_subsystemTypeOverride()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t * FaceSubsystemParams_get_subsystemTypeOverride_m1B3FD6EA4014688FC34533C9729176AA668C8321 (FaceSubsystemParams_t2FC64133455298391F1A1DDC61B151E688301B09 * __this, const RuntimeMethod* method)
{
{
// public Type subsystemTypeOverride { get; set; }
Type_t * L_0 = __this->get_U3CsubsystemTypeOverrideU3Ek__BackingField_2();
return L_0;
}
}
IL2CPP_EXTERN_C Type_t * FaceSubsystemParams_get_subsystemTypeOverride_m1B3FD6EA4014688FC34533C9729176AA668C8321_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
FaceSubsystemParams_t2FC64133455298391F1A1DDC61B151E688301B09 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<FaceSubsystemParams_t2FC64133455298391F1A1DDC61B151E688301B09 *>(__this + _offset);
Type_t * _returnValue;
_returnValue = FaceSubsystemParams_get_subsystemTypeOverride_m1B3FD6EA4014688FC34533C9729176AA668C8321_inline(_thisAdjusted, method);
return _returnValue;
}
// System.Void UnityEngine.XR.ARSubsystems.FaceSubsystemParams::set_subsystemTypeOverride(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FaceSubsystemParams_set_subsystemTypeOverride_mAC64FBAE73E16ACDA48708A4FFB77626437F8306 (FaceSubsystemParams_t2FC64133455298391F1A1DDC61B151E688301B09 * __this, Type_t * ___value0, const RuntimeMethod* method)
{
{
// public Type subsystemTypeOverride { get; set; }
Type_t * L_0 = ___value0;
__this->set_U3CsubsystemTypeOverrideU3Ek__BackingField_2(L_0);
return;
}
}
IL2CPP_EXTERN_C void FaceSubsystemParams_set_subsystemTypeOverride_mAC64FBAE73E16ACDA48708A4FFB77626437F8306_AdjustorThunk (RuntimeObject * __this, Type_t * ___value0, const RuntimeMethod* method)
{
FaceSubsystemParams_t2FC64133455298391F1A1DDC61B151E688301B09 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<FaceSubsystemParams_t2FC64133455298391F1A1DDC61B151E688301B09 *>(__this + _offset);
FaceSubsystemParams_set_subsystemTypeOverride_mAC64FBAE73E16ACDA48708A4FFB77626437F8306_inline(_thisAdjusted, ___value0, method);
}
// System.Boolean UnityEngine.XR.ARSubsystems.FaceSubsystemParams::get_supportsFacePose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool FaceSubsystemParams_get_supportsFacePose_m59079DE37AD698A2132CFEA0EDA5FD4585FC6161 (FaceSubsystemParams_t2FC64133455298391F1A1DDC61B151E688301B09 * __this, const RuntimeMethod* method)
{
{
// get => (m_Capabilities & FaceSubsystemCapabilities.Pose) != 0;
int32_t L_0 = __this->get_m_Capabilities_4();
return (bool)((!(((uint32_t)((int32_t)((int32_t)L_0&(int32_t)1))) <= ((uint32_t)0)))? 1 : 0);
}
}
IL2CPP_EXTERN_C bool FaceSubsystemParams_get_supportsFacePose_m59079DE37AD698A2132CFEA0EDA5FD4585FC6161_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
FaceSubsystemParams_t2FC64133455298391F1A1DDC61B151E688301B09 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<FaceSubsystemParams_t2FC64133455298391F1A1DDC61B151E688301B09 *>(__this + _offset);
bool _returnValue;
_returnValue = FaceSubsystemParams_get_supportsFacePose_m59079DE37AD698A2132CFEA0EDA5FD4585FC6161(_thisAdjusted, method);
return _returnValue;
}
// System.Void UnityEngine.XR.ARSubsystems.FaceSubsystemParams::set_supportsFacePose(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FaceSubsystemParams_set_supportsFacePose_mD799A27D00AC28F2E8228E7A3E38464B643BC99A (FaceSubsystemParams_t2FC64133455298391F1A1DDC61B151E688301B09 * __this, bool ___value0, const RuntimeMethod* method)
{
{
// if (value)
bool L_0 = ___value0;
if (!L_0)
{
goto IL_0012;
}
}
{
// m_Capabilities |= FaceSubsystemCapabilities.Pose;
int32_t L_1 = __this->get_m_Capabilities_4();
__this->set_m_Capabilities_4(((int32_t)((int32_t)L_1|(int32_t)1)));
// }
return;
}
IL_0012:
{
// m_Capabilities &= ~FaceSubsystemCapabilities.Pose;
int32_t L_2 = __this->get_m_Capabilities_4();
__this->set_m_Capabilities_4(((int32_t)((int32_t)L_2&(int32_t)((int32_t)-2))));
// }
return;
}
}
IL2CPP_EXTERN_C void FaceSubsystemParams_set_supportsFacePose_mD799A27D00AC28F2E8228E7A3E38464B643BC99A_AdjustorThunk (RuntimeObject * __this, bool ___value0, const RuntimeMethod* method)
{
FaceSubsystemParams_t2FC64133455298391F1A1DDC61B151E688301B09 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<FaceSubsystemParams_t2FC64133455298391F1A1DDC61B151E688301B09 *>(__this + _offset);
FaceSubsystemParams_set_supportsFacePose_mD799A27D00AC28F2E8228E7A3E38464B643BC99A(_thisAdjusted, ___value0, method);
}
// System.Boolean UnityEngine.XR.ARSubsystems.FaceSubsystemParams::get_supportsFaceMeshVerticesAndIndices()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool FaceSubsystemParams_get_supportsFaceMeshVerticesAndIndices_mCC93952A6D71E81739E596CEB86A242CD6C9A8AF (FaceSubsystemParams_t2FC64133455298391F1A1DDC61B151E688301B09 * __this, const RuntimeMethod* method)
{
{
// get => (m_Capabilities & FaceSubsystemCapabilities.MeshVerticesAndIndices) != 0;
int32_t L_0 = __this->get_m_Capabilities_4();
return (bool)((!(((uint32_t)((int32_t)((int32_t)L_0&(int32_t)2))) <= ((uint32_t)0)))? 1 : 0);
}
}
IL2CPP_EXTERN_C bool FaceSubsystemParams_get_supportsFaceMeshVerticesAndIndices_mCC93952A6D71E81739E596CEB86A242CD6C9A8AF_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
FaceSubsystemParams_t2FC64133455298391F1A1DDC61B151E688301B09 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<FaceSubsystemParams_t2FC64133455298391F1A1DDC61B151E688301B09 *>(__this + _offset);
bool _returnValue;
_returnValue = FaceSubsystemParams_get_supportsFaceMeshVerticesAndIndices_mCC93952A6D71E81739E596CEB86A242CD6C9A8AF(_thisAdjusted, method);
return _returnValue;
}
// System.Void UnityEngine.XR.ARSubsystems.FaceSubsystemParams::set_supportsFaceMeshVerticesAndIndices(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FaceSubsystemParams_set_supportsFaceMeshVerticesAndIndices_mD137C1594ADBC51EC3017FDFAE248043C4CCBC75 (FaceSubsystemParams_t2FC64133455298391F1A1DDC61B151E688301B09 * __this, bool ___value0, const RuntimeMethod* method)
{
{
// if (value)
bool L_0 = ___value0;
if (!L_0)
{
goto IL_0012;
}
}
{
// m_Capabilities |= FaceSubsystemCapabilities.MeshVerticesAndIndices;
int32_t L_1 = __this->get_m_Capabilities_4();
__this->set_m_Capabilities_4(((int32_t)((int32_t)L_1|(int32_t)2)));
// }
return;
}
IL_0012:
{
// m_Capabilities &= ~FaceSubsystemCapabilities.MeshVerticesAndIndices;
int32_t L_2 = __this->get_m_Capabilities_4();
__this->set_m_Capabilities_4(((int32_t)((int32_t)L_2&(int32_t)((int32_t)-3))));
// }
return;
}
}
IL2CPP_EXTERN_C void FaceSubsystemParams_set_supportsFaceMeshVerticesAndIndices_mD137C1594ADBC51EC3017FDFAE248043C4CCBC75_AdjustorThunk (RuntimeObject * __this, bool ___value0, const RuntimeMethod* method)
{
FaceSubsystemParams_t2FC64133455298391F1A1DDC61B151E688301B09 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<FaceSubsystemParams_t2FC64133455298391F1A1DDC61B151E688301B09 *>(__this + _offset);
FaceSubsystemParams_set_supportsFaceMeshVerticesAndIndices_mD137C1594ADBC51EC3017FDFAE248043C4CCBC75(_thisAdjusted, ___value0, method);
}
// System.Boolean UnityEngine.XR.ARSubsystems.FaceSubsystemParams::get_supportsFaceMeshUVs()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool FaceSubsystemParams_get_supportsFaceMeshUVs_m86C9DD63849FC891FE62F75B87E7BA894B506BBC (FaceSubsystemParams_t2FC64133455298391F1A1DDC61B151E688301B09 * __this, const RuntimeMethod* method)
{
{
// get => (m_Capabilities & FaceSubsystemCapabilities.MeshUVs) != 0;
int32_t L_0 = __this->get_m_Capabilities_4();
return (bool)((!(((uint32_t)((int32_t)((int32_t)L_0&(int32_t)4))) <= ((uint32_t)0)))? 1 : 0);
}
}
IL2CPP_EXTERN_C bool FaceSubsystemParams_get_supportsFaceMeshUVs_m86C9DD63849FC891FE62F75B87E7BA894B506BBC_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
FaceSubsystemParams_t2FC64133455298391F1A1DDC61B151E688301B09 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<FaceSubsystemParams_t2FC64133455298391F1A1DDC61B151E688301B09 *>(__this + _offset);
bool _returnValue;
_returnValue = FaceSubsystemParams_get_supportsFaceMeshUVs_m86C9DD63849FC891FE62F75B87E7BA894B506BBC(_thisAdjusted, method);
return _returnValue;
}
// System.Void UnityEngine.XR.ARSubsystems.FaceSubsystemParams::set_supportsFaceMeshUVs(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FaceSubsystemParams_set_supportsFaceMeshUVs_m9FFBE6EF8118BB7F4A0BA3B50249DA55ED52B39E (FaceSubsystemParams_t2FC64133455298391F1A1DDC61B151E688301B09 * __this, bool ___value0, const RuntimeMethod* method)
{
{
// if (value)
bool L_0 = ___value0;
if (!L_0)
{
goto IL_0012;
}
}
{
// m_Capabilities |= FaceSubsystemCapabilities.MeshUVs;
int32_t L_1 = __this->get_m_Capabilities_4();
__this->set_m_Capabilities_4(((int32_t)((int32_t)L_1|(int32_t)4)));
// }
return;
}
IL_0012:
{
// m_Capabilities &= ~FaceSubsystemCapabilities.MeshUVs;
int32_t L_2 = __this->get_m_Capabilities_4();
__this->set_m_Capabilities_4(((int32_t)((int32_t)L_2&(int32_t)((int32_t)-5))));
// }
return;
}
}
IL2CPP_EXTERN_C void FaceSubsystemParams_set_supportsFaceMeshUVs_m9FFBE6EF8118BB7F4A0BA3B50249DA55ED52B39E_AdjustorThunk (RuntimeObject * __this, bool ___value0, const RuntimeMethod* method)
{
FaceSubsystemParams_t2FC64133455298391F1A1DDC61B151E688301B09 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<FaceSubsystemParams_t2FC64133455298391F1A1DDC61B151E688301B09 *>(__this + _offset);
FaceSubsystemParams_set_supportsFaceMeshUVs_m9FFBE6EF8118BB7F4A0BA3B50249DA55ED52B39E(_thisAdjusted, ___value0, method);
}
// System.Boolean UnityEngine.XR.ARSubsystems.FaceSubsystemParams::get_supportsFaceMeshNormals()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool FaceSubsystemParams_get_supportsFaceMeshNormals_mB5897C36478E2B76A4491DA2C70C89B54AAB92DC (FaceSubsystemParams_t2FC64133455298391F1A1DDC61B151E688301B09 * __this, const RuntimeMethod* method)
{
{
// get => (m_Capabilities & FaceSubsystemCapabilities.MeshNormals) != 0;
int32_t L_0 = __this->get_m_Capabilities_4();
return (bool)((!(((uint32_t)((int32_t)((int32_t)L_0&(int32_t)8))) <= ((uint32_t)0)))? 1 : 0);
}
}
IL2CPP_EXTERN_C bool FaceSubsystemParams_get_supportsFaceMeshNormals_mB5897C36478E2B76A4491DA2C70C89B54AAB92DC_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
FaceSubsystemParams_t2FC64133455298391F1A1DDC61B151E688301B09 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<FaceSubsystemParams_t2FC64133455298391F1A1DDC61B151E688301B09 *>(__this + _offset);
bool _returnValue;
_returnValue = FaceSubsystemParams_get_supportsFaceMeshNormals_mB5897C36478E2B76A4491DA2C70C89B54AAB92DC(_thisAdjusted, method);
return _returnValue;
}
// System.Boolean UnityEngine.XR.ARSubsystems.FaceSubsystemParams::get_supportsEyeTracking()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool FaceSubsystemParams_get_supportsEyeTracking_mC02E124E7C88BBE8BE1D6ABBBFD3C2C68DF2109F (FaceSubsystemParams_t2FC64133455298391F1A1DDC61B151E688301B09 * __this, const RuntimeMethod* method)
{
{
// get => (m_Capabilities & FaceSubsystemCapabilities.EyeTracking) != 0;
int32_t L_0 = __this->get_m_Capabilities_4();
return (bool)((!(((uint32_t)((int32_t)((int32_t)L_0&(int32_t)((int32_t)16)))) <= ((uint32_t)0)))? 1 : 0);
}
}
IL2CPP_EXTERN_C bool FaceSubsystemParams_get_supportsEyeTracking_mC02E124E7C88BBE8BE1D6ABBBFD3C2C68DF2109F_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
FaceSubsystemParams_t2FC64133455298391F1A1DDC61B151E688301B09 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<FaceSubsystemParams_t2FC64133455298391F1A1DDC61B151E688301B09 *>(__this + _offset);
bool _returnValue;
_returnValue = FaceSubsystemParams_get_supportsEyeTracking_mC02E124E7C88BBE8BE1D6ABBBFD3C2C68DF2109F(_thisAdjusted, method);
return _returnValue;
}
// System.Void UnityEngine.XR.ARSubsystems.FaceSubsystemParams::set_supportsEyeTracking(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FaceSubsystemParams_set_supportsEyeTracking_m52CC3ABEBE97C53ECBB91C0E4A86F388176C3645 (FaceSubsystemParams_t2FC64133455298391F1A1DDC61B151E688301B09 * __this, bool ___value0, const RuntimeMethod* method)
{
{
// if (value)
bool L_0 = ___value0;
if (!L_0)
{
goto IL_0013;
}
}
{
// m_Capabilities |= FaceSubsystemCapabilities.EyeTracking;
int32_t L_1 = __this->get_m_Capabilities_4();
__this->set_m_Capabilities_4(((int32_t)((int32_t)L_1|(int32_t)((int32_t)16))));
// }
return;
}
IL_0013:
{
// m_Capabilities &= FaceSubsystemCapabilities.EyeTracking;
int32_t L_2 = __this->get_m_Capabilities_4();
__this->set_m_Capabilities_4(((int32_t)((int32_t)L_2&(int32_t)((int32_t)16))));
// }
return;
}
}
IL2CPP_EXTERN_C void FaceSubsystemParams_set_supportsEyeTracking_m52CC3ABEBE97C53ECBB91C0E4A86F388176C3645_AdjustorThunk (RuntimeObject * __this, bool ___value0, const RuntimeMethod* method)
{
FaceSubsystemParams_t2FC64133455298391F1A1DDC61B151E688301B09 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<FaceSubsystemParams_t2FC64133455298391F1A1DDC61B151E688301B09 *>(__this + _offset);
FaceSubsystemParams_set_supportsEyeTracking_m52CC3ABEBE97C53ECBB91C0E4A86F388176C3645(_thisAdjusted, ___value0, method);
}
// System.Boolean UnityEngine.XR.ARSubsystems.FaceSubsystemParams::Equals(UnityEngine.XR.ARSubsystems.FaceSubsystemParams)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool FaceSubsystemParams_Equals_mAC3B0F001EB7DC4968B350FCE682D21D3C10A4DC (FaceSubsystemParams_t2FC64133455298391F1A1DDC61B151E688301B09 * __this, FaceSubsystemParams_t2FC64133455298391F1A1DDC61B151E688301B09 ___other0, const RuntimeMethod* method)
{
{
// return
// m_Capabilities == other.m_Capabilities &&
// ReferenceEquals(id, other.id) &&
// #if UNITY_2020_2_OR_NEWER
// ReferenceEquals(providerType, other.providerType) &&
// ReferenceEquals(subsystemTypeOverride, other.subsystemTypeOverride);
int32_t L_0 = __this->get_m_Capabilities_4();
FaceSubsystemParams_t2FC64133455298391F1A1DDC61B151E688301B09 L_1 = ___other0;
int32_t L_2 = L_1.get_m_Capabilities_4();
if ((!(((uint32_t)L_0) == ((uint32_t)L_2))))
{
goto IL_003c;
}
}
{
String_t* L_3;
L_3 = FaceSubsystemParams_get_id_mE2ED204CE1D85C4ADCFB4436EACF3BF8B6893DEB_inline((FaceSubsystemParams_t2FC64133455298391F1A1DDC61B151E688301B09 *)__this, /*hidden argument*/NULL);
String_t* L_4;
L_4 = FaceSubsystemParams_get_id_mE2ED204CE1D85C4ADCFB4436EACF3BF8B6893DEB_inline((FaceSubsystemParams_t2FC64133455298391F1A1DDC61B151E688301B09 *)(&___other0), /*hidden argument*/NULL);
if ((!(((RuntimeObject*)(String_t*)L_3) == ((RuntimeObject*)(String_t*)L_4))))
{
goto IL_003c;
}
}
{
Type_t * L_5;
L_5 = FaceSubsystemParams_get_providerType_m8984786E19DCC5F9B87060A9BC29F25A4A4A4B3A_inline((FaceSubsystemParams_t2FC64133455298391F1A1DDC61B151E688301B09 *)__this, /*hidden argument*/NULL);
Type_t * L_6;
L_6 = FaceSubsystemParams_get_providerType_m8984786E19DCC5F9B87060A9BC29F25A4A4A4B3A_inline((FaceSubsystemParams_t2FC64133455298391F1A1DDC61B151E688301B09 *)(&___other0), /*hidden argument*/NULL);
if ((!(((RuntimeObject*)(Type_t *)L_5) == ((RuntimeObject*)(Type_t *)L_6))))
{
goto IL_003c;
}
}
{
Type_t * L_7;
L_7 = FaceSubsystemParams_get_subsystemTypeOverride_m1B3FD6EA4014688FC34533C9729176AA668C8321_inline((FaceSubsystemParams_t2FC64133455298391F1A1DDC61B151E688301B09 *)__this, /*hidden argument*/NULL);
Type_t * L_8;
L_8 = FaceSubsystemParams_get_subsystemTypeOverride_m1B3FD6EA4014688FC34533C9729176AA668C8321_inline((FaceSubsystemParams_t2FC64133455298391F1A1DDC61B151E688301B09 *)(&___other0), /*hidden argument*/NULL);
return (bool)((((RuntimeObject*)(Type_t *)L_7) == ((RuntimeObject*)(Type_t *)L_8))? 1 : 0);
}
IL_003c:
{
return (bool)0;
}
}
IL2CPP_EXTERN_C bool FaceSubsystemParams_Equals_mAC3B0F001EB7DC4968B350FCE682D21D3C10A4DC_AdjustorThunk (RuntimeObject * __this, FaceSubsystemParams_t2FC64133455298391F1A1DDC61B151E688301B09 ___other0, const RuntimeMethod* method)
{
FaceSubsystemParams_t2FC64133455298391F1A1DDC61B151E688301B09 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<FaceSubsystemParams_t2FC64133455298391F1A1DDC61B151E688301B09 *>(__this + _offset);
bool _returnValue;
_returnValue = FaceSubsystemParams_Equals_mAC3B0F001EB7DC4968B350FCE682D21D3C10A4DC(_thisAdjusted, ___other0, method);
return _returnValue;
}
// System.Boolean UnityEngine.XR.ARSubsystems.FaceSubsystemParams::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool FaceSubsystemParams_Equals_mFD36A65AEE79AE0A2C08525BB4AE5B99801CEE2A (FaceSubsystemParams_t2FC64133455298391F1A1DDC61B151E688301B09 * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&FaceSubsystemParams_t2FC64133455298391F1A1DDC61B151E688301B09_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
// public override bool Equals(object obj) => (obj is FaceSubsystemParams) && Equals((FaceSubsystemParams)obj);
RuntimeObject * L_0 = ___obj0;
if (!((RuntimeObject *)IsInstSealed((RuntimeObject*)L_0, FaceSubsystemParams_t2FC64133455298391F1A1DDC61B151E688301B09_il2cpp_TypeInfo_var)))
{
goto IL_0015;
}
}
{
RuntimeObject * L_1 = ___obj0;
bool L_2;
L_2 = FaceSubsystemParams_Equals_mAC3B0F001EB7DC4968B350FCE682D21D3C10A4DC((FaceSubsystemParams_t2FC64133455298391F1A1DDC61B151E688301B09 *)__this, ((*(FaceSubsystemParams_t2FC64133455298391F1A1DDC61B151E688301B09 *)((FaceSubsystemParams_t2FC64133455298391F1A1DDC61B151E688301B09 *)UnBox(L_1, FaceSubsystemParams_t2FC64133455298391F1A1DDC61B151E688301B09_il2cpp_TypeInfo_var)))), /*hidden argument*/NULL);
return L_2;
}
IL_0015:
{
return (bool)0;
}
}
IL2CPP_EXTERN_C bool FaceSubsystemParams_Equals_mFD36A65AEE79AE0A2C08525BB4AE5B99801CEE2A_AdjustorThunk (RuntimeObject * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
FaceSubsystemParams_t2FC64133455298391F1A1DDC61B151E688301B09 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<FaceSubsystemParams_t2FC64133455298391F1A1DDC61B151E688301B09 *>(__this + _offset);
bool _returnValue;
_returnValue = FaceSubsystemParams_Equals_mFD36A65AEE79AE0A2C08525BB4AE5B99801CEE2A(_thisAdjusted, ___obj0, method);
return _returnValue;
}
// System.Int32 UnityEngine.XR.ARSubsystems.FaceSubsystemParams::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t FaceSubsystemParams_GetHashCode_m83F03C046AA998C73A317CAFBA4C97E2BA468786 (FaceSubsystemParams_t2FC64133455298391F1A1DDC61B151E688301B09 * __this, const RuntimeMethod* method)
{
int32_t V_0 = 0;
int32_t V_1 = 0;
{
// int hashCode = HashCode.ReferenceHash(id);
String_t* L_0;
L_0 = FaceSubsystemParams_get_id_mE2ED204CE1D85C4ADCFB4436EACF3BF8B6893DEB_inline((FaceSubsystemParams_t2FC64133455298391F1A1DDC61B151E688301B09 *)__this, /*hidden argument*/NULL);
int32_t L_1;
L_1 = HashCode_ReferenceHash_mE6CC6EA3C87D9F040876D66CF582D6FF68FC359C(L_0, /*hidden argument*/NULL);
V_0 = L_1;
// hashCode = 486187739 * hashCode + HashCode.ReferenceHash(providerType);
int32_t L_2 = V_0;
Type_t * L_3;
L_3 = FaceSubsystemParams_get_providerType_m8984786E19DCC5F9B87060A9BC29F25A4A4A4B3A_inline((FaceSubsystemParams_t2FC64133455298391F1A1DDC61B151E688301B09 *)__this, /*hidden argument*/NULL);
int32_t L_4;
L_4 = HashCode_ReferenceHash_mE6CC6EA3C87D9F040876D66CF582D6FF68FC359C(L_3, /*hidden argument*/NULL);
V_0 = ((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)((int32_t)486187739), (int32_t)L_2)), (int32_t)L_4));
// hashCode = 486187739 * hashCode + HashCode.ReferenceHash(subsystemTypeOverride);
int32_t L_5 = V_0;
Type_t * L_6;
L_6 = FaceSubsystemParams_get_subsystemTypeOverride_m1B3FD6EA4014688FC34533C9729176AA668C8321_inline((FaceSubsystemParams_t2FC64133455298391F1A1DDC61B151E688301B09 *)__this, /*hidden argument*/NULL);
int32_t L_7;
L_7 = HashCode_ReferenceHash_mE6CC6EA3C87D9F040876D66CF582D6FF68FC359C(L_6, /*hidden argument*/NULL);
V_0 = ((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)((int32_t)486187739), (int32_t)L_5)), (int32_t)L_7));
// hashCode = 486187739 * hashCode + ((int)m_Capabilities).GetHashCode();
int32_t L_8 = V_0;
int32_t L_9 = __this->get_m_Capabilities_4();
V_1 = L_9;
int32_t L_10;
L_10 = Int32_GetHashCode_mEDD3F492A5F7CF021125AE3F38E2B8F8743FC667((int32_t*)(&V_1), /*hidden argument*/NULL);
V_0 = ((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)((int32_t)486187739), (int32_t)L_8)), (int32_t)L_10));
// return hashCode;
int32_t L_11 = V_0;
return L_11;
}
}
IL2CPP_EXTERN_C int32_t FaceSubsystemParams_GetHashCode_m83F03C046AA998C73A317CAFBA4C97E2BA468786_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
FaceSubsystemParams_t2FC64133455298391F1A1DDC61B151E688301B09 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<FaceSubsystemParams_t2FC64133455298391F1A1DDC61B151E688301B09 *>(__this + _offset);
int32_t _returnValue;
_returnValue = FaceSubsystemParams_GetHashCode_m83F03C046AA998C73A317CAFBA4C97E2BA468786(_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
#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
// System.Boolean UnityEngine.XR.ARSubsystems.FeatureExtensions::Any(UnityEngine.XR.ARSubsystems.Feature,UnityEngine.XR.ARSubsystems.Feature)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool FeatureExtensions_Any_mE55A6DE2870496D907915F6C117FC22D107B54A9 (uint64_t ___self0, uint64_t ___features1, const RuntimeMethod* method)
{
{
// public static bool Any(this Feature self, Feature features) => (self & features) != Feature.None;
uint64_t L_0 = ___self0;
uint64_t L_1 = ___features1;
return (bool)((!(((uint64_t)((int64_t)((int64_t)L_0&(int64_t)L_1))) <= ((uint64_t)((int64_t)((int64_t)0)))))? 1 : 0);
}
}
// System.Boolean UnityEngine.XR.ARSubsystems.FeatureExtensions::All(UnityEngine.XR.ARSubsystems.Feature,UnityEngine.XR.ARSubsystems.Feature)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool FeatureExtensions_All_mE045F59D960EB11FE1A7B31076D0132109B28160 (uint64_t ___self0, uint64_t ___features1, const RuntimeMethod* method)
{
{
// public static bool All(this Feature self, Feature features) => (self & features) == features;
uint64_t L_0 = ___self0;
uint64_t L_1 = ___features1;
uint64_t L_2 = ___features1;
return (bool)((((int64_t)((int64_t)((int64_t)L_0&(int64_t)L_1))) == ((int64_t)L_2))? 1 : 0);
}
}
// UnityEngine.XR.ARSubsystems.Feature UnityEngine.XR.ARSubsystems.FeatureExtensions::Intersection(UnityEngine.XR.ARSubsystems.Feature,UnityEngine.XR.ARSubsystems.Feature)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t FeatureExtensions_Intersection_m2CA900F610313CDD88F981646EBE46B1AD8AC5E9 (uint64_t ___self0, uint64_t ___features1, const RuntimeMethod* method)
{
{
// public static Feature Intersection(this Feature self, Feature features) => self & features;
uint64_t L_0 = ___self0;
uint64_t L_1 = ___features1;
return (uint64_t)(((int64_t)((int64_t)L_0&(int64_t)L_1)));
}
}
// UnityEngine.XR.ARSubsystems.Feature UnityEngine.XR.ARSubsystems.FeatureExtensions::SetDifference(UnityEngine.XR.ARSubsystems.Feature,UnityEngine.XR.ARSubsystems.Feature)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t FeatureExtensions_SetDifference_m9699D6212D9BD79EE52C44EF08FF7461E7F2C1C5 (uint64_t ___self0, uint64_t ___features1, const RuntimeMethod* method)
{
{
// public static Feature SetDifference(this Feature self, Feature features) => self & ~features;
uint64_t L_0 = ___self0;
uint64_t L_1 = ___features1;
return (uint64_t)(((int64_t)((int64_t)L_0&(int64_t)((~L_1)))));
}
}
// UnityEngine.XR.ARSubsystems.Feature UnityEngine.XR.ARSubsystems.FeatureExtensions::Cameras(UnityEngine.XR.ARSubsystems.Feature)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t FeatureExtensions_Cameras_m3814978160FF343F4B295277B62A10A90BE46F7F (uint64_t ___self0, const RuntimeMethod* method)
{
{
// public static Feature Cameras(this Feature self) => self.Intersection(Feature.AnyCamera);
uint64_t L_0 = ___self0;
uint64_t L_1;
L_1 = FeatureExtensions_Intersection_m2CA900F610313CDD88F981646EBE46B1AD8AC5E9(L_0, ((int64_t)((int64_t)3)), /*hidden argument*/NULL);
return L_1;
}
}
// UnityEngine.XR.ARSubsystems.Feature UnityEngine.XR.ARSubsystems.FeatureExtensions::TrackingModes(UnityEngine.XR.ARSubsystems.Feature)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t FeatureExtensions_TrackingModes_m42E19D4C37D0B9A70CACE5810FBE94B8A517D127 (uint64_t ___self0, const RuntimeMethod* method)
{
{
// public static Feature TrackingModes(this Feature self) => self.Intersection(Feature.AnyTrackingMode);
uint64_t L_0 = ___self0;
uint64_t L_1;
L_1 = FeatureExtensions_Intersection_m2CA900F610313CDD88F981646EBE46B1AD8AC5E9(L_0, ((int64_t)((int64_t)((int32_t)12))), /*hidden argument*/NULL);
return L_1;
}
}
// UnityEngine.XR.ARSubsystems.Feature UnityEngine.XR.ARSubsystems.FeatureExtensions::LightEstimation(UnityEngine.XR.ARSubsystems.Feature)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t FeatureExtensions_LightEstimation_m7FF62D53AE0E08C1B8923FAB371C228B7DF190C5 (uint64_t ___self0, const RuntimeMethod* method)
{
{
// public static Feature LightEstimation(this Feature self) => self.Intersection(Feature.AnyLightEstimation);
uint64_t L_0 = ___self0;
uint64_t L_1;
L_1 = FeatureExtensions_Intersection_m2CA900F610313CDD88F981646EBE46B1AD8AC5E9(L_0, ((int64_t)((int64_t)((int32_t)2031616))), /*hidden argument*/NULL);
return L_1;
}
}
// UnityEngine.XR.ARSubsystems.Feature UnityEngine.XR.ARSubsystems.FeatureExtensions::LowestBit(UnityEngine.XR.ARSubsystems.Feature)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t FeatureExtensions_LowestBit_mD88FDDA9224F7FB3B74A3EC59BB76C86B4923267 (uint64_t ___self0, const RuntimeMethod* method)
{
{
// return self & (self ^ (self - 1));
uint64_t L_0 = ___self0;
uint64_t L_1 = ___self0;
uint64_t L_2 = ___self0;
return (uint64_t)(((int64_t)((int64_t)L_0&(int64_t)((int64_t)((int64_t)L_1^(int64_t)((int64_t)il2cpp_codegen_subtract((int64_t)L_2, (int64_t)((int64_t)((int64_t)1)))))))));
}
}
// System.String UnityEngine.XR.ARSubsystems.FeatureExtensions::ToStringList(UnityEngine.XR.ARSubsystems.Feature,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* FeatureExtensions_ToStringList_m1B8E6CA945AE2E060DB1D4DFA60CCD72AADC082D (uint64_t ___features0, String_t* ___separator1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Feature_t079F5923A4893A9E07B968C27F44AC5FCAC87C83_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Add_mD8C90346622A7F72A072D319F0E2AE851BB5885A_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1__ctor_m30C52A4F2828D86CA3FAB0B1B583948F4DA9F1F9_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Count_m199DB87BCE947106FBA38E19FDFE80CB65B61144_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral068B9DAC1E2A8DA48FFC0F566F9C805099D13F1B);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral0EEB74DAF175D886E4EA5D5BB23B6E48993A80AF);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral0FBF1F3BF0E575F4D92649F1F5678267C887CF89);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral132C67C31C67A73009E12AF0BF92B84B55B95E84);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral158E95C298826281B51D5B4EE894BE864B7D1153);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral1862DB4B99A6D2D4DDE2C775E5AC1AF7CD03A268);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral3AB0DA5C0A0620735E866EA5BC9FCAA876BA5545);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral41D4ECEC72974BEA998FBA733A15A0EA3B7DF9B1);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral49DE19A080E7D5ADFAE0565CAFC30E6F99EB7FFD);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral4B80EFD0BD00CE9A8E26DD1EA0F4B58964AF32CD);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral5BA2A4A16421FA9FAB2CAF2E4AFC91121F7BB4FD);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral6F57A13713CB116503D42E8DFD65A84DA07B33BB);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral772119CD0175AC1E1CADE4F75080F5F07B6BB1F9);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral7F623AA45815B8B51F227F5A19CB68E1BD42852E);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralA8A8717ECC5E31F30A99C8547616828C8F428B66);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralA9BA2974AED76FB92F26F69C6093F790414376FA);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralAA661F2F4F2AC2A4D1268C73A499D77CA7E0C476);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralBDC838375A805C8CCC6514E96BA13E150D629186);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralC127E2685E9BA6170311362A98135614A56E47AF);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralCEA8A633C4C95F85CAB2C4D07CAFA53611912B32);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralD2316C6372C4914C9A07CD469B803A77534ADCF4);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralD629B7D26A17486767CD11C705978B046E7819F7);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralDA1CD25788E7EE9FDEA55BBF0CEE5D1AD7F125CD);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralE249513646B3CA3B2119CA7AD27370C9E9012B74);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralE573BD7F9C4A38697EE4A429FA0C236D6C7038C4);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralE7538558415E1BD8F7A4C577BB457C0AD0F3C884);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralF1FF99A8F97A90CE3EB35AA1C7B40C1DDFC82A9B);
s_Il2CppMethodInitialized = true;
}
List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3 * V_0 = NULL;
uint64_t V_1 = 0;
int64_t G_B6_0 = 0;
int64_t G_B5_0 = 0;
{
// var names = new List<string>();
List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3 * L_0 = (List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3 *)il2cpp_codegen_object_new(List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3_il2cpp_TypeInfo_var);
List_1__ctor_m30C52A4F2828D86CA3FAB0B1B583948F4DA9F1F9(L_0, /*hidden argument*/List_1__ctor_m30C52A4F2828D86CA3FAB0B1B583948F4DA9F1F9_RuntimeMethod_var);
V_0 = L_0;
goto IL_0342;
}
IL_000b:
{
// var feature = features.LowestBit();
uint64_t L_1 = ___features0;
uint64_t L_2;
L_2 = FeatureExtensions_LowestBit_mD88FDDA9224F7FB3B74A3EC59BB76C86B4923267(L_1, /*hidden argument*/NULL);
V_1 = L_2;
uint64_t L_3 = V_1;
if ((!(((uint64_t)L_3) <= ((uint64_t)((int64_t)((int64_t)((int32_t)8192)))))))
{
goto IL_00e3;
}
}
{
uint64_t L_4 = V_1;
if ((!(((uint64_t)L_4) <= ((uint64_t)((int64_t)((int64_t)((int32_t)128)))))))
{
goto IL_0088;
}
}
{
uint64_t L_5 = V_1;
if ((!(((uint64_t)L_5) <= ((uint64_t)((int64_t)((int64_t)((int32_t)16)))))))
{
goto IL_0065;
}
}
{
uint64_t L_6 = V_1;
int64_t L_7 = ((int64_t)il2cpp_codegen_subtract((int64_t)L_6, (int64_t)((int64_t)((int64_t)1))));
G_B5_0 = L_7;
if ((!(((uint64_t)L_7) > ((uint64_t)((int64_t)((int64_t)3))))))
{
G_B6_0 = L_7;
goto IL_0039;
}
}
{
goto IL_004f;
}
IL_0039:
{
switch (((int32_t)((uint32_t)G_B6_0)))
{
case 0:
{
goto IL_01a2;
}
case 1:
{
goto IL_01b2;
}
case 2:
{
goto IL_0327;
}
case 3:
{
goto IL_01c2;
}
}
}
IL_004f:
{
uint64_t L_8 = V_1;
if ((((int64_t)L_8) == ((int64_t)((int64_t)((int64_t)8)))))
{
goto IL_01d2;
}
}
{
uint64_t L_9 = V_1;
if ((((int64_t)L_9) == ((int64_t)((int64_t)((int64_t)((int32_t)16))))))
{
goto IL_01e2;
}
}
{
goto IL_0327;
}
IL_0065:
{
uint64_t L_10 = V_1;
if ((((int64_t)L_10) == ((int64_t)((int64_t)((int64_t)((int32_t)32))))))
{
goto IL_01f2;
}
}
{
uint64_t L_11 = V_1;
if ((((int64_t)L_11) == ((int64_t)((int64_t)((int64_t)((int32_t)64))))))
{
goto IL_0202;
}
}
{
uint64_t L_12 = V_1;
if ((((int64_t)L_12) == ((int64_t)((int64_t)((int64_t)((int32_t)128))))))
{
goto IL_0212;
}
}
{
goto IL_0327;
}
IL_0088:
{
uint64_t L_13 = V_1;
if ((!(((uint64_t)L_13) <= ((uint64_t)((int64_t)((int64_t)((int32_t)1024)))))))
{
goto IL_00ba;
}
}
{
uint64_t L_14 = V_1;
if ((((int64_t)L_14) == ((int64_t)((int64_t)((int64_t)((int32_t)256))))))
{
goto IL_0222;
}
}
{
uint64_t L_15 = V_1;
if ((((int64_t)L_15) == ((int64_t)((int64_t)((int64_t)((int32_t)512))))))
{
goto IL_0232;
}
}
{
uint64_t L_16 = V_1;
if ((((int64_t)L_16) == ((int64_t)((int64_t)((int64_t)((int32_t)1024))))))
{
goto IL_0242;
}
}
{
goto IL_0327;
}
IL_00ba:
{
uint64_t L_17 = V_1;
if ((((int64_t)L_17) == ((int64_t)((int64_t)((int64_t)((int32_t)2048))))))
{
goto IL_0252;
}
}
{
uint64_t L_18 = V_1;
if ((((int64_t)L_18) == ((int64_t)((int64_t)((int64_t)((int32_t)4096))))))
{
goto IL_0262;
}
}
{
uint64_t L_19 = V_1;
if ((((int64_t)L_19) == ((int64_t)((int64_t)((int64_t)((int32_t)8192))))))
{
goto IL_0272;
}
}
{
goto IL_0327;
}
IL_00e3:
{
uint64_t L_20 = V_1;
if ((!(((uint64_t)L_20) <= ((uint64_t)((int64_t)((int64_t)((int32_t)524288)))))))
{
goto IL_0147;
}
}
{
uint64_t L_21 = V_1;
if ((!(((uint64_t)L_21) <= ((uint64_t)((int64_t)((int64_t)((int32_t)65536)))))))
{
goto IL_011e;
}
}
{
uint64_t L_22 = V_1;
if ((((int64_t)L_22) == ((int64_t)((int64_t)((int64_t)((int32_t)16384))))))
{
goto IL_0282;
}
}
{
uint64_t L_23 = V_1;
if ((((int64_t)L_23) == ((int64_t)((int64_t)((int64_t)((int32_t)32768))))))
{
goto IL_0292;
}
}
{
uint64_t L_24 = V_1;
if ((((int64_t)L_24) == ((int64_t)((int64_t)((int64_t)((int32_t)65536))))))
{
goto IL_02a2;
}
}
{
goto IL_0327;
}
IL_011e:
{
uint64_t L_25 = V_1;
if ((((int64_t)L_25) == ((int64_t)((int64_t)((int64_t)((int32_t)131072))))))
{
goto IL_02b2;
}
}
{
uint64_t L_26 = V_1;
if ((((int64_t)L_26) == ((int64_t)((int64_t)((int64_t)((int32_t)262144))))))
{
goto IL_02bf;
}
}
{
uint64_t L_27 = V_1;
if ((((int64_t)L_27) == ((int64_t)((int64_t)((int64_t)((int32_t)524288))))))
{
goto IL_02cc;
}
}
{
goto IL_0327;
}
IL_0147:
{
uint64_t L_28 = V_1;
if ((!(((uint64_t)L_28) <= ((uint64_t)((int64_t)((int64_t)((int32_t)4194304)))))))
{
goto IL_0179;
}
}
{
uint64_t L_29 = V_1;
if ((((int64_t)L_29) == ((int64_t)((int64_t)((int64_t)((int32_t)1048576))))))
{
goto IL_02d9;
}
}
{
uint64_t L_30 = V_1;
if ((((int64_t)L_30) == ((int64_t)((int64_t)((int64_t)((int32_t)2097152))))))
{
goto IL_02e6;
}
}
{
uint64_t L_31 = V_1;
if ((((int64_t)L_31) == ((int64_t)((int64_t)((int64_t)((int32_t)4194304))))))
{
goto IL_02f3;
}
}
{
goto IL_0327;
}
IL_0179:
{
uint64_t L_32 = V_1;
if ((((int64_t)L_32) == ((int64_t)((int64_t)((int64_t)((int32_t)8388608))))))
{
goto IL_0300;
}
}
{
uint64_t L_33 = V_1;
if ((((int64_t)L_33) == ((int64_t)((int64_t)((int64_t)((int32_t)16777216))))))
{
goto IL_030d;
}
}
{
uint64_t L_34 = V_1;
if ((((int64_t)L_34) == ((int64_t)((int64_t)((int64_t)((int32_t)33554432))))))
{
goto IL_031a;
}
}
{
goto IL_0327;
}
IL_01a2:
{
// names.Add("World Facing Camera");
List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3 * L_35 = V_0;
NullCheck(L_35);
List_1_Add_mD8C90346622A7F72A072D319F0E2AE851BB5885A(L_35, _stringLiteralAA661F2F4F2AC2A4D1268C73A499D77CA7E0C476, /*hidden argument*/List_1_Add_mD8C90346622A7F72A072D319F0E2AE851BB5885A_RuntimeMethod_var);
// break;
goto IL_033a;
}
IL_01b2:
{
// names.Add("User Facing Camera");
List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3 * L_36 = V_0;
NullCheck(L_36);
List_1_Add_mD8C90346622A7F72A072D319F0E2AE851BB5885A(L_36, _stringLiteralD2316C6372C4914C9A07CD469B803A77534ADCF4, /*hidden argument*/List_1_Add_mD8C90346622A7F72A072D319F0E2AE851BB5885A_RuntimeMethod_var);
// break;
goto IL_033a;
}
IL_01c2:
{
// names.Add("Rotation Only");
List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3 * L_37 = V_0;
NullCheck(L_37);
List_1_Add_mD8C90346622A7F72A072D319F0E2AE851BB5885A(L_37, _stringLiteralCEA8A633C4C95F85CAB2C4D07CAFA53611912B32, /*hidden argument*/List_1_Add_mD8C90346622A7F72A072D319F0E2AE851BB5885A_RuntimeMethod_var);
// break;
goto IL_033a;
}
IL_01d2:
{
// names.Add("Rotation and Orientation");
List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3 * L_38 = V_0;
NullCheck(L_38);
List_1_Add_mD8C90346622A7F72A072D319F0E2AE851BB5885A(L_38, _stringLiteral0EEB74DAF175D886E4EA5D5BB23B6E48993A80AF, /*hidden argument*/List_1_Add_mD8C90346622A7F72A072D319F0E2AE851BB5885A_RuntimeMethod_var);
// break;
goto IL_033a;
}
IL_01e2:
{
// names.Add("Face Tracking");
List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3 * L_39 = V_0;
NullCheck(L_39);
List_1_Add_mD8C90346622A7F72A072D319F0E2AE851BB5885A(L_39, _stringLiteralC127E2685E9BA6170311362A98135614A56E47AF, /*hidden argument*/List_1_Add_mD8C90346622A7F72A072D319F0E2AE851BB5885A_RuntimeMethod_var);
// break;
goto IL_033a;
}
IL_01f2:
{
// names.Add("Plane Tracking");
List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3 * L_40 = V_0;
NullCheck(L_40);
List_1_Add_mD8C90346622A7F72A072D319F0E2AE851BB5885A(L_40, _stringLiteral1862DB4B99A6D2D4DDE2C775E5AC1AF7CD03A268, /*hidden argument*/List_1_Add_mD8C90346622A7F72A072D319F0E2AE851BB5885A_RuntimeMethod_var);
// break;
goto IL_033a;
}
IL_0202:
{
// names.Add("Image Tracking");
List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3 * L_41 = V_0;
NullCheck(L_41);
List_1_Add_mD8C90346622A7F72A072D319F0E2AE851BB5885A(L_41, _stringLiteral0FBF1F3BF0E575F4D92649F1F5678267C887CF89, /*hidden argument*/List_1_Add_mD8C90346622A7F72A072D319F0E2AE851BB5885A_RuntimeMethod_var);
// break;
goto IL_033a;
}
IL_0212:
{
// names.Add("Object Tracking");
List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3 * L_42 = V_0;
NullCheck(L_42);
List_1_Add_mD8C90346622A7F72A072D319F0E2AE851BB5885A(L_42, _stringLiteralA9BA2974AED76FB92F26F69C6093F790414376FA, /*hidden argument*/List_1_Add_mD8C90346622A7F72A072D319F0E2AE851BB5885A_RuntimeMethod_var);
// break;
goto IL_033a;
}
IL_0222:
{
// names.Add("Environment Probes");
List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3 * L_43 = V_0;
NullCheck(L_43);
List_1_Add_mD8C90346622A7F72A072D319F0E2AE851BB5885A(L_43, _stringLiteralBDC838375A805C8CCC6514E96BA13E150D629186, /*hidden argument*/List_1_Add_mD8C90346622A7F72A072D319F0E2AE851BB5885A_RuntimeMethod_var);
// break;
goto IL_033a;
}
IL_0232:
{
// names.Add("2D Body Tracking");
List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3 * L_44 = V_0;
NullCheck(L_44);
List_1_Add_mD8C90346622A7F72A072D319F0E2AE851BB5885A(L_44, _stringLiteralA8A8717ECC5E31F30A99C8547616828C8F428B66, /*hidden argument*/List_1_Add_mD8C90346622A7F72A072D319F0E2AE851BB5885A_RuntimeMethod_var);
// break;
goto IL_033a;
}
IL_0242:
{
// names.Add("3D Body Tracking");
List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3 * L_45 = V_0;
NullCheck(L_45);
List_1_Add_mD8C90346622A7F72A072D319F0E2AE851BB5885A(L_45, _stringLiteral5BA2A4A16421FA9FAB2CAF2E4AFC91121F7BB4FD, /*hidden argument*/List_1_Add_mD8C90346622A7F72A072D319F0E2AE851BB5885A_RuntimeMethod_var);
// break;
goto IL_033a;
}
IL_0252:
{
// names.Add("3D Body Scale Estimation");
List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3 * L_46 = V_0;
NullCheck(L_46);
List_1_Add_mD8C90346622A7F72A072D319F0E2AE851BB5885A(L_46, _stringLiteral772119CD0175AC1E1CADE4F75080F5F07B6BB1F9, /*hidden argument*/List_1_Add_mD8C90346622A7F72A072D319F0E2AE851BB5885A_RuntimeMethod_var);
// break;
goto IL_033a;
}
IL_0262:
{
// names.Add("People Occlusion Stencil");
List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3 * L_47 = V_0;
NullCheck(L_47);
List_1_Add_mD8C90346622A7F72A072D319F0E2AE851BB5885A(L_47, _stringLiteralE573BD7F9C4A38697EE4A429FA0C236D6C7038C4, /*hidden argument*/List_1_Add_mD8C90346622A7F72A072D319F0E2AE851BB5885A_RuntimeMethod_var);
// break;
goto IL_033a;
}
IL_0272:
{
// names.Add("People Occlusion Depth");
List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3 * L_48 = V_0;
NullCheck(L_48);
List_1_Add_mD8C90346622A7F72A072D319F0E2AE851BB5885A(L_48, _stringLiteralD629B7D26A17486767CD11C705978B046E7819F7, /*hidden argument*/List_1_Add_mD8C90346622A7F72A072D319F0E2AE851BB5885A_RuntimeMethod_var);
// break;
goto IL_033a;
}
IL_0282:
{
// names.Add("Collaboration");
List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3 * L_49 = V_0;
NullCheck(L_49);
List_1_Add_mD8C90346622A7F72A072D319F0E2AE851BB5885A(L_49, _stringLiteralF1FF99A8F97A90CE3EB35AA1C7B40C1DDFC82A9B, /*hidden argument*/List_1_Add_mD8C90346622A7F72A072D319F0E2AE851BB5885A_RuntimeMethod_var);
// break;
goto IL_033a;
}
IL_0292:
{
// names.Add("Auto-Focus");
List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3 * L_50 = V_0;
NullCheck(L_50);
List_1_Add_mD8C90346622A7F72A072D319F0E2AE851BB5885A(L_50, _stringLiteralDA1CD25788E7EE9FDEA55BBF0CEE5D1AD7F125CD, /*hidden argument*/List_1_Add_mD8C90346622A7F72A072D319F0E2AE851BB5885A_RuntimeMethod_var);
// break;
goto IL_033a;
}
IL_02a2:
{
// names.Add("Light Estimation (Ambient Intensity)");
List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3 * L_51 = V_0;
NullCheck(L_51);
List_1_Add_mD8C90346622A7F72A072D319F0E2AE851BB5885A(L_51, _stringLiteral3AB0DA5C0A0620735E866EA5BC9FCAA876BA5545, /*hidden argument*/List_1_Add_mD8C90346622A7F72A072D319F0E2AE851BB5885A_RuntimeMethod_var);
// break;
goto IL_033a;
}
IL_02b2:
{
// names.Add("Light Estimation (Ambient Color)");
List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3 * L_52 = V_0;
NullCheck(L_52);
List_1_Add_mD8C90346622A7F72A072D319F0E2AE851BB5885A(L_52, _stringLiteral068B9DAC1E2A8DA48FFC0F566F9C805099D13F1B, /*hidden argument*/List_1_Add_mD8C90346622A7F72A072D319F0E2AE851BB5885A_RuntimeMethod_var);
// break;
goto IL_033a;
}
IL_02bf:
{
// names.Add("Light Estimation (Spherical Harmonics)");
List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3 * L_53 = V_0;
NullCheck(L_53);
List_1_Add_mD8C90346622A7F72A072D319F0E2AE851BB5885A(L_53, _stringLiteral6F57A13713CB116503D42E8DFD65A84DA07B33BB, /*hidden argument*/List_1_Add_mD8C90346622A7F72A072D319F0E2AE851BB5885A_RuntimeMethod_var);
// break;
goto IL_033a;
}
IL_02cc:
{
// names.Add("Light Estimation (Main Light Direction)");
List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3 * L_54 = V_0;
NullCheck(L_54);
List_1_Add_mD8C90346622A7F72A072D319F0E2AE851BB5885A(L_54, _stringLiteral158E95C298826281B51D5B4EE894BE864B7D1153, /*hidden argument*/List_1_Add_mD8C90346622A7F72A072D319F0E2AE851BB5885A_RuntimeMethod_var);
// break;
goto IL_033a;
}
IL_02d9:
{
// names.Add("Light Estimation (Main Light Intensity)");
List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3 * L_55 = V_0;
NullCheck(L_55);
List_1_Add_mD8C90346622A7F72A072D319F0E2AE851BB5885A(L_55, _stringLiteral132C67C31C67A73009E12AF0BF92B84B55B95E84, /*hidden argument*/List_1_Add_mD8C90346622A7F72A072D319F0E2AE851BB5885A_RuntimeMethod_var);
// break;
goto IL_033a;
}
IL_02e6:
{
// names.Add("Raycast");
List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3 * L_56 = V_0;
NullCheck(L_56);
List_1_Add_mD8C90346622A7F72A072D319F0E2AE851BB5885A(L_56, _stringLiteralE249513646B3CA3B2119CA7AD27370C9E9012B74, /*hidden argument*/List_1_Add_mD8C90346622A7F72A072D319F0E2AE851BB5885A_RuntimeMethod_var);
// break;
goto IL_033a;
}
IL_02f3:
{
// names.Add("Meshing");
List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3 * L_57 = V_0;
NullCheck(L_57);
List_1_Add_mD8C90346622A7F72A072D319F0E2AE851BB5885A(L_57, _stringLiteral7F623AA45815B8B51F227F5A19CB68E1BD42852E, /*hidden argument*/List_1_Add_mD8C90346622A7F72A072D319F0E2AE851BB5885A_RuntimeMethod_var);
// break;
goto IL_033a;
}
IL_0300:
{
// names.Add("Mesh Classification");
List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3 * L_58 = V_0;
NullCheck(L_58);
List_1_Add_mD8C90346622A7F72A072D319F0E2AE851BB5885A(L_58, _stringLiteral4B80EFD0BD00CE9A8E26DD1EA0F4B58964AF32CD, /*hidden argument*/List_1_Add_mD8C90346622A7F72A072D319F0E2AE851BB5885A_RuntimeMethod_var);
// break;
goto IL_033a;
}
IL_030d:
{
// names.Add("Point Cloud");
List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3 * L_59 = V_0;
NullCheck(L_59);
List_1_Add_mD8C90346622A7F72A072D319F0E2AE851BB5885A(L_59, _stringLiteral49DE19A080E7D5ADFAE0565CAFC30E6F99EB7FFD, /*hidden argument*/List_1_Add_mD8C90346622A7F72A072D319F0E2AE851BB5885A_RuntimeMethod_var);
// break;
goto IL_033a;
}
IL_031a:
{
// names.Add("Environment Depth");
List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3 * L_60 = V_0;
NullCheck(L_60);
List_1_Add_mD8C90346622A7F72A072D319F0E2AE851BB5885A(L_60, _stringLiteralE7538558415E1BD8F7A4C577BB457C0AD0F3C884, /*hidden argument*/List_1_Add_mD8C90346622A7F72A072D319F0E2AE851BB5885A_RuntimeMethod_var);
// break;
goto IL_033a;
}
IL_0327:
{
// names.Add(feature.ToString());
List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3 * L_61 = V_0;
RuntimeObject * L_62 = Box(Feature_t079F5923A4893A9E07B968C27F44AC5FCAC87C83_il2cpp_TypeInfo_var, (&V_1));
NullCheck(L_62);
String_t* L_63;
L_63 = VirtualFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_62);
V_1 = *(uint64_t*)UnBox(L_62);
NullCheck(L_61);
List_1_Add_mD8C90346622A7F72A072D319F0E2AE851BB5885A(L_61, L_63, /*hidden argument*/List_1_Add_mD8C90346622A7F72A072D319F0E2AE851BB5885A_RuntimeMethod_var);
}
IL_033a:
{
// features &= (features - 1);
uint64_t L_64 = ___features0;
uint64_t L_65 = ___features0;
___features0 = ((int64_t)((int64_t)L_64&(int64_t)((int64_t)il2cpp_codegen_subtract((int64_t)L_65, (int64_t)((int64_t)((int64_t)1))))));
}
IL_0342:
{
// while (features != 0)
uint64_t L_66 = ___features0;
if (L_66)
{
goto IL_000b;
}
}
{
// return names.Count > 0 ? string.Join(separator, names) : "(None)";
List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3 * L_67 = V_0;
NullCheck(L_67);
int32_t L_68;
L_68 = List_1_get_Count_m199DB87BCE947106FBA38E19FDFE80CB65B61144_inline(L_67, /*hidden argument*/List_1_get_Count_m199DB87BCE947106FBA38E19FDFE80CB65B61144_RuntimeMethod_var);
if ((((int32_t)L_68) > ((int32_t)0)))
{
goto IL_0357;
}
}
{
return _stringLiteral41D4ECEC72974BEA998FBA733A15A0EA3B7DF9B1;
}
IL_0357:
{
String_t* L_69 = ___separator1;
List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3 * L_70 = V_0;
String_t* L_71;
L_71 = String_Join_m7E55204B5C94F9EB939D144E7EE684D016F90509(L_69, L_70, /*hidden argument*/NULL);
return L_71;
}
}
// System.Int32 UnityEngine.XR.ARSubsystems.FeatureExtensions::Count(UnityEngine.XR.ARSubsystems.Feature)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t FeatureExtensions_Count_m5EF2EFA14A36261D35A95A6D5A39A107D223F6B6 (uint64_t ___self0, const RuntimeMethod* method)
{
int32_t V_0 = 0;
uint64_t V_1 = 0;
{
// int count = 0;
V_0 = 0;
// ulong features = (ulong)self;
uint64_t L_0 = ___self0;
V_1 = L_0;
goto IL_0011;
}
IL_0006:
{
// ++count;
int32_t L_1 = V_0;
V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_1, (int32_t)1));
// features &= (features - 1);
uint64_t L_2 = V_1;
uint64_t L_3 = V_1;
V_1 = ((int64_t)((int64_t)L_2&(int64_t)((int64_t)il2cpp_codegen_subtract((int64_t)L_3, (int64_t)((int64_t)((int64_t)1))))));
}
IL_0011:
{
// while (features != 0)
uint64_t L_4 = V_1;
if (L_4)
{
goto IL_0006;
}
}
{
// return count;
int32_t L_5 = V_0;
return L_5;
}
}
#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
// System.Guid UnityEngine.XR.ARSubsystems.GuidUtil::Compose(System.UInt64,System.UInt64)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Guid_t GuidUtil_Compose_m0EE004B20CD802F981C34180EFA91C39A9400DCB (uint64_t ___low0, uint64_t ___high1, const RuntimeMethod* method)
{
{
// return new Guid(
// (uint)((low & 0x00000000ffffffff) >> 0),
// (ushort)((low & 0x0000ffff00000000) >> 32),
// (ushort)((low & 0xffff000000000000) >> 48),
// (byte)((high & 0x00000000000000ff) >> 0),
// (byte)((high & 0x000000000000ff00) >> 8),
// (byte)((high & 0x0000000000ff0000) >> 16),
// (byte)((high & 0x00000000ff000000) >> 24),
// (byte)((high & 0x000000ff00000000) >> 32),
// (byte)((high & 0x0000ff0000000000) >> 40),
// (byte)((high & 0x00ff000000000000) >> 48),
// (byte)((high & 0xff00000000000000) >> 56));
uint64_t L_0 = ___low0;
uint64_t L_1 = ___low0;
uint64_t L_2 = ___low0;
uint64_t L_3 = ___high1;
uint64_t L_4 = ___high1;
uint64_t L_5 = ___high1;
uint64_t L_6 = ___high1;
uint64_t L_7 = ___high1;
uint64_t L_8 = ___high1;
uint64_t L_9 = ___high1;
uint64_t L_10 = ___high1;
Guid_t L_11;
memset((&L_11), 0, sizeof(L_11));
Guid__ctor_mCA4942FD1AE16397F0501AAF416E106BB041F287((&L_11), ((int32_t)((uint32_t)((int64_t)((int64_t)L_0&(int64_t)((int64_t)((uint64_t)((uint32_t)((uint32_t)(-1))))))))), (uint16_t)((int32_t)((uint16_t)((int64_t)((uint64_t)((int64_t)((int64_t)L_1&(int64_t)((int64_t)281470681743360LL)))>>((int32_t)32))))), (uint16_t)((int32_t)((uint16_t)((int64_t)((uint64_t)((int64_t)((int64_t)L_2&(int64_t)((int64_t)-281474976710656LL)))>>((int32_t)48))))), (uint8_t)((int32_t)((uint8_t)((int64_t)((int64_t)L_3&(int64_t)((int64_t)((int64_t)((int32_t)255))))))), (uint8_t)((int32_t)((uint8_t)((int64_t)((uint64_t)((int64_t)((int64_t)L_4&(int64_t)((int64_t)((int64_t)((int32_t)65280)))))>>8)))), (uint8_t)((int32_t)((uint8_t)((int64_t)((uint64_t)((int64_t)((int64_t)L_5&(int64_t)((int64_t)((int64_t)((int32_t)16711680)))))>>((int32_t)16))))), (uint8_t)((int32_t)((uint8_t)((int64_t)((uint64_t)((int64_t)((int64_t)L_6&(int64_t)((int64_t)((uint64_t)((uint32_t)((uint32_t)((int32_t)-16777216)))))))>>((int32_t)24))))), (uint8_t)((int32_t)((uint8_t)((int64_t)((uint64_t)((int64_t)((int64_t)L_7&(int64_t)((int64_t)1095216660480LL)))>>((int32_t)32))))), (uint8_t)((int32_t)((uint8_t)((int64_t)((uint64_t)((int64_t)((int64_t)L_8&(int64_t)((int64_t)280375465082880LL)))>>((int32_t)40))))), (uint8_t)((int32_t)((uint8_t)((int64_t)((uint64_t)((int64_t)((int64_t)L_9&(int64_t)((int64_t)71776119061217280LL)))>>((int32_t)48))))), (uint8_t)((int32_t)((uint8_t)((int64_t)((uint64_t)((int64_t)((int64_t)L_10&(int64_t)((int64_t)-72057594037927936LL)))>>((int32_t)56))))), /*hidden argument*/NULL);
return L_11;
}
}
#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
// System.Int32 UnityEngine.XR.ARSubsystems.HashCode::Combine(System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t HashCode_Combine_m23C951F115303C9E040D18947821969B602863FC (int32_t ___hash10, int32_t ___hash21, const RuntimeMethod* method)
{
{
// return hash1 * 486187739 + hash2;
int32_t L_0 = ___hash10;
int32_t L_1 = ___hash21;
return ((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)L_0, (int32_t)((int32_t)486187739))), (int32_t)L_1));
}
}
// System.Int32 UnityEngine.XR.ARSubsystems.HashCode::ReferenceHash(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t HashCode_ReferenceHash_mE6CC6EA3C87D9F040876D66CF582D6FF68FC359C (RuntimeObject * ___obj0, const RuntimeMethod* method)
{
{
// public static int ReferenceHash(object obj) => obj != null ? obj.GetHashCode() : 0;
RuntimeObject * L_0 = ___obj0;
if (L_0)
{
goto IL_0005;
}
}
{
return 0;
}
IL_0005:
{
RuntimeObject * L_1 = ___obj0;
NullCheck(L_1);
int32_t L_2;
L_2 = VirtualFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 System.Object::GetHashCode() */, L_1);
return L_2;
}
}
// System.Int32 UnityEngine.XR.ARSubsystems.HashCode::Combine(System.Int32,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t HashCode_Combine_m18C3D10955CD71D976A5200FB0F5531F2F1F6BE1 (int32_t ___hash10, int32_t ___hash21, int32_t ___hash32, const RuntimeMethod* method)
{
{
// public static int Combine(int hash1, int hash2, int hash3) => Combine(Combine(hash1, hash2), hash3);
int32_t L_0 = ___hash10;
int32_t L_1 = ___hash21;
int32_t L_2;
L_2 = HashCode_Combine_m23C951F115303C9E040D18947821969B602863FC(L_0, L_1, /*hidden argument*/NULL);
int32_t L_3 = ___hash32;
int32_t L_4;
L_4 = HashCode_Combine_m23C951F115303C9E040D18947821969B602863FC(L_2, L_3, /*hidden argument*/NULL);
return L_4;
}
}
// System.Int32 UnityEngine.XR.ARSubsystems.HashCode::Combine(System.Int32,System.Int32,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t HashCode_Combine_mCF5A2D8E169AE770B379DCD8DE5229296453BD82 (int32_t ___hash10, int32_t ___hash21, int32_t ___hash32, int32_t ___hash43, const RuntimeMethod* method)
{
{
// public static int Combine(int hash1, int hash2, int hash3, int hash4) => Combine(Combine(hash1, hash2, hash3), hash4);
int32_t L_0 = ___hash10;
int32_t L_1 = ___hash21;
int32_t L_2 = ___hash32;
int32_t L_3;
L_3 = HashCode_Combine_m18C3D10955CD71D976A5200FB0F5531F2F1F6BE1(L_0, L_1, L_2, /*hidden argument*/NULL);
int32_t L_4 = ___hash43;
int32_t L_5;
L_5 = HashCode_Combine_m23C951F115303C9E040D18947821969B602863FC(L_3, L_4, /*hidden argument*/NULL);
return L_5;
}
}
// System.Int32 UnityEngine.XR.ARSubsystems.HashCode::Combine(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t HashCode_Combine_m02E9A65274F198CF9266FDB496C74880155F9B94 (int32_t ___hash10, int32_t ___hash21, int32_t ___hash32, int32_t ___hash43, int32_t ___hash54, const RuntimeMethod* method)
{
{
// public static int Combine(int hash1, int hash2, int hash3, int hash4, int hash5) => Combine(Combine(hash1, hash2, hash3, hash4), hash5);
int32_t L_0 = ___hash10;
int32_t L_1 = ___hash21;
int32_t L_2 = ___hash32;
int32_t L_3 = ___hash43;
int32_t L_4;
L_4 = HashCode_Combine_mCF5A2D8E169AE770B379DCD8DE5229296453BD82(L_0, L_1, L_2, L_3, /*hidden argument*/NULL);
int32_t L_5 = ___hash54;
int32_t L_6;
L_6 = HashCode_Combine_m23C951F115303C9E040D18947821969B602863FC(L_4, L_5, /*hidden argument*/NULL);
return L_6;
}
}
// System.Int32 UnityEngine.XR.ARSubsystems.HashCode::Combine(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t HashCode_Combine_m11604D056548DE17CE3E26439850FA96C2ED1FBA (int32_t ___hash10, int32_t ___hash21, int32_t ___hash32, int32_t ___hash43, int32_t ___hash54, int32_t ___hash65, const RuntimeMethod* method)
{
{
// public static int Combine(int hash1, int hash2, int hash3, int hash4, int hash5, int hash6) => Combine(Combine(hash1, hash2, hash3, hash4, hash5), hash6);
int32_t L_0 = ___hash10;
int32_t L_1 = ___hash21;
int32_t L_2 = ___hash32;
int32_t L_3 = ___hash43;
int32_t L_4 = ___hash54;
int32_t L_5;
L_5 = HashCode_Combine_m02E9A65274F198CF9266FDB496C74880155F9B94(L_0, L_1, L_2, L_3, L_4, /*hidden argument*/NULL);
int32_t L_6 = ___hash65;
int32_t L_7;
L_7 = HashCode_Combine_m23C951F115303C9E040D18947821969B602863FC(L_5, L_6, /*hidden argument*/NULL);
return L_7;
}
}
// System.Int32 UnityEngine.XR.ARSubsystems.HashCode::Combine(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t HashCode_Combine_m23E4B1C1DC69FC295EAA04B5AC0ABB8BE40ABC9F (int32_t ___hash10, int32_t ___hash21, int32_t ___hash32, int32_t ___hash43, int32_t ___hash54, int32_t ___hash65, int32_t ___hash76, const RuntimeMethod* method)
{
{
// public static int Combine(int hash1, int hash2, int hash3, int hash4, int hash5, int hash6, int hash7) => Combine(Combine(hash1, hash2, hash3, hash4, hash5, hash6), hash7);
int32_t L_0 = ___hash10;
int32_t L_1 = ___hash21;
int32_t L_2 = ___hash32;
int32_t L_3 = ___hash43;
int32_t L_4 = ___hash54;
int32_t L_5 = ___hash65;
int32_t L_6;
L_6 = HashCode_Combine_m11604D056548DE17CE3E26439850FA96C2ED1FBA(L_0, L_1, L_2, L_3, L_4, L_5, /*hidden argument*/NULL);
int32_t L_7 = ___hash76;
int32_t L_8;
L_8 = HashCode_Combine_m23C951F115303C9E040D18947821969B602863FC(L_6, L_7, /*hidden argument*/NULL);
return L_8;
}
}
#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
// System.Void System.Runtime.CompilerServices.IsReadOnlyAttribute::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void IsReadOnlyAttribute__ctor_m0510A708B114F4B975D24C5B7374CE116A974BF2 (IsReadOnlyAttribute_t6C6EC35F1D85F983E1108A473F3FEBDD3CCBA525 * __this, const RuntimeMethod* method)
{
{
Attribute__ctor_m5C1862A7DFC2C25A4797A8C5F681FBB5CB53ECE1(__this, /*hidden argument*/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
// UnityEngine.XR.ARSubsystems.AddReferenceImageJobState UnityEngine.XR.ARSubsystems.MutableRuntimeReferenceImageLibrary::CreateAddJobState(System.IntPtr,Unity.Jobs.JobHandle)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR AddReferenceImageJobState_t6818A53BD54BDCDCA326D660A1575F66DF832633 MutableRuntimeReferenceImageLibrary_CreateAddJobState_m27F387722EE946B2B1555C1384B6659E2D884481 (MutableRuntimeReferenceImageLibrary_t887376CE46B48DEEC6E8655D429BADCA6E3C7EAA * __this, intptr_t ___handle0, JobHandle_t8AEB8D31C25D7774C71D62B0C662525E6E36D847 ___jobHandle1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IntPtr_t_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
// if (supportsValidation && handle == IntPtr.Zero)
bool L_0;
L_0 = VirtualFuncInvoker0< bool >::Invoke(9 /* System.Boolean UnityEngine.XR.ARSubsystems.MutableRuntimeReferenceImageLibrary::get_supportsValidation() */, __this);
if (!L_0)
{
goto IL_0025;
}
}
{
intptr_t L_1 = ___handle0;
bool L_2;
L_2 = IntPtr_op_Equality_mD94F3FE43A65684EFF984A7B95E70D2520C0AC73((intptr_t)L_1, (intptr_t)(0), /*hidden argument*/NULL);
if (!L_2)
{
goto IL_0025;
}
}
{
// throw new ArgumentException($"{nameof(handle)} must be non-zero if {nameof(supportsValidation)} is true.", nameof(handle));
ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_3 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var)));
ArgumentException__ctor_m71044C2110E357B71A1C30D2561C3F861AF1DC0D(L_3, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7E3AA66375763B3002BB9676C66B36DC25F6FD12)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralFFE3A1B73CD7FC81540FBBE737435B0A887629D5)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&MutableRuntimeReferenceImageLibrary_CreateAddJobState_m27F387722EE946B2B1555C1384B6659E2D884481_RuntimeMethod_var)));
}
IL_0025:
{
// return new AddReferenceImageJobState(handle, jobHandle, this);
intptr_t L_4 = ___handle0;
JobHandle_t8AEB8D31C25D7774C71D62B0C662525E6E36D847 L_5 = ___jobHandle1;
AddReferenceImageJobState_t6818A53BD54BDCDCA326D660A1575F66DF832633 L_6;
memset((&L_6), 0, sizeof(L_6));
AddReferenceImageJobState__ctor_mAFC8E35811BAF9292B00B7D06EF4C6895AFDD74C((&L_6), (intptr_t)L_4, L_5, __this, /*hidden argument*/NULL);
return L_6;
}
}
// UnityEngine.XR.ARSubsystems.AddReferenceImageJobStatus UnityEngine.XR.ARSubsystems.MutableRuntimeReferenceImageLibrary::GetAddReferenceImageJobStatus(UnityEngine.XR.ARSubsystems.AddReferenceImageJobState)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t MutableRuntimeReferenceImageLibrary_GetAddReferenceImageJobStatus_mEE3EB04E40A6295FAD73C3FD08F622A629915315 (MutableRuntimeReferenceImageLibrary_t887376CE46B48DEEC6E8655D429BADCA6E3C7EAA * __this, AddReferenceImageJobState_t6818A53BD54BDCDCA326D660A1575F66DF832633 ___state0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IntPtr_t_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
JobHandle_t8AEB8D31C25D7774C71D62B0C662525E6E36D847 V_0;
memset((&V_0), 0, sizeof(V_0));
{
// if (state.AsIntPtr() == IntPtr.Zero)
intptr_t L_0;
L_0 = AddReferenceImageJobState_AsIntPtr_m3918B9BEE2FA6B991CFA1BE13F1B211656B8A78B_inline((AddReferenceImageJobState_t6818A53BD54BDCDCA326D660A1575F66DF832633 *)(&___state0), /*hidden argument*/NULL);
bool L_1;
L_1 = IntPtr_op_Equality_mD94F3FE43A65684EFF984A7B95E70D2520C0AC73((intptr_t)L_0, (intptr_t)(0), /*hidden argument*/NULL);
if (!L_1)
{
goto IL_0028;
}
}
{
// return state.jobHandle.IsCompleted
// ? AddReferenceImageJobStatus.Success
// : AddReferenceImageJobStatus.Pending;
JobHandle_t8AEB8D31C25D7774C71D62B0C662525E6E36D847 L_2;
L_2 = AddReferenceImageJobState_get_jobHandle_mD67B6C7B795C0EAAF2B27C2C23A0CDF0597DDD41_inline((AddReferenceImageJobState_t6818A53BD54BDCDCA326D660A1575F66DF832633 *)(&___state0), /*hidden argument*/NULL);
V_0 = L_2;
bool L_3;
L_3 = JobHandle_get_IsCompleted_m2747303E2CD600A78AC8F3ED1EA40D3F507C75A2((JobHandle_t8AEB8D31C25D7774C71D62B0C662525E6E36D847 *)(&V_0), /*hidden argument*/NULL);
if (L_3)
{
goto IL_0026;
}
}
{
return (int32_t)(1);
}
IL_0026:
{
return (int32_t)(2);
}
IL_0028:
{
// throw new NotImplementedException();
NotImplementedException_t26260C4EE0444C5FA022994203060B3A42A3ADE6 * L_4 = (NotImplementedException_t26260C4EE0444C5FA022994203060B3A42A3ADE6 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NotImplementedException_t26260C4EE0444C5FA022994203060B3A42A3ADE6_il2cpp_TypeInfo_var)));
NotImplementedException__ctor_mA2E9CE7F00CB335581A296D2596082D57E45BA83(L_4, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&MutableRuntimeReferenceImageLibrary_GetAddReferenceImageJobStatus_mEE3EB04E40A6295FAD73C3FD08F622A629915315_RuntimeMethod_var)));
}
}
// System.Boolean UnityEngine.XR.ARSubsystems.MutableRuntimeReferenceImageLibrary::get_supportsValidation()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool MutableRuntimeReferenceImageLibrary_get_supportsValidation_m7C3934A7F0CD1947D9E6129372DBC3E4B6030618 (MutableRuntimeReferenceImageLibrary_t887376CE46B48DEEC6E8655D429BADCA6E3C7EAA * __this, const RuntimeMethod* method)
{
{
// public virtual bool supportsValidation => false;
return (bool)0;
}
}
// UnityEngine.XR.ARSubsystems.AddReferenceImageJobState UnityEngine.XR.ARSubsystems.MutableRuntimeReferenceImageLibrary::ScheduleAddImageWithValidationJobImpl(Unity.Collections.NativeSlice`1<System.Byte>,UnityEngine.Vector2Int,UnityEngine.TextureFormat,UnityEngine.XR.ARSubsystems.XRReferenceImage,Unity.Jobs.JobHandle)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR AddReferenceImageJobState_t6818A53BD54BDCDCA326D660A1575F66DF832633 MutableRuntimeReferenceImageLibrary_ScheduleAddImageWithValidationJobImpl_m781DB083DCFA8F856F48773BC38086A6DBBA55DF (MutableRuntimeReferenceImageLibrary_t887376CE46B48DEEC6E8655D429BADCA6E3C7EAA * __this, NativeSlice_1_tA05D3BC7EB042685CBFD3369ECB6140D114C911B ___imageBytes0, Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9 ___sizeInPixels1, int32_t ___format2, XRReferenceImage_tB1803A72EB581FB35B2CA944973679132A1D4467 ___referenceImage3, JobHandle_t8AEB8D31C25D7774C71D62B0C662525E6E36D847 ___inputDeps4, const RuntimeMethod* method)
{
AddReferenceImageJobState_t6818A53BD54BDCDCA326D660A1575F66DF832633 V_0;
memset((&V_0), 0, sizeof(V_0));
{
// JobHandle inputDeps) => throw new NotImplementedException();
NotImplementedException_t26260C4EE0444C5FA022994203060B3A42A3ADE6 * L_0 = (NotImplementedException_t26260C4EE0444C5FA022994203060B3A42A3ADE6 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NotImplementedException_t26260C4EE0444C5FA022994203060B3A42A3ADE6_il2cpp_TypeInfo_var)));
NotImplementedException__ctor_mA2E9CE7F00CB335581A296D2596082D57E45BA83(L_0, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&MutableRuntimeReferenceImageLibrary_ScheduleAddImageWithValidationJobImpl_m781DB083DCFA8F856F48773BC38086A6DBBA55DF_RuntimeMethod_var)));
}
}
// UnityEngine.XR.ARSubsystems.AddReferenceImageJobState UnityEngine.XR.ARSubsystems.MutableRuntimeReferenceImageLibrary::ScheduleAddImageWithValidationJob(Unity.Collections.NativeSlice`1<System.Byte>,UnityEngine.Vector2Int,UnityEngine.TextureFormat,UnityEngine.XR.ARSubsystems.XRReferenceImage,Unity.Jobs.JobHandle)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR AddReferenceImageJobState_t6818A53BD54BDCDCA326D660A1575F66DF832633 MutableRuntimeReferenceImageLibrary_ScheduleAddImageWithValidationJob_mB3FBB676D62AA027A7041ECA0434857986F94473 (MutableRuntimeReferenceImageLibrary_t887376CE46B48DEEC6E8655D429BADCA6E3C7EAA * __this, NativeSlice_1_tA05D3BC7EB042685CBFD3369ECB6140D114C911B ___imageBytes0, Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9 ___sizeInPixels1, int32_t ___format2, XRReferenceImage_tB1803A72EB581FB35B2CA944973679132A1D4467 ___referenceImage3, JobHandle_t8AEB8D31C25D7774C71D62B0C662525E6E36D847 ___inputDeps4, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IntPtr_t_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
// ValidateAndThrow(imageBytes, sizeInPixels, format, ref referenceImage);
NativeSlice_1_tA05D3BC7EB042685CBFD3369ECB6140D114C911B L_0 = ___imageBytes0;
Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9 L_1 = ___sizeInPixels1;
int32_t L_2 = ___format2;
MutableRuntimeReferenceImageLibrary_ValidateAndThrow_mF2EB8580B66B035A33F2F8E61957EC1BFD16B1C6(__this, L_0, L_1, L_2, (XRReferenceImage_tB1803A72EB581FB35B2CA944973679132A1D4467 *)(&___referenceImage3), /*hidden argument*/NULL);
// return supportsValidation
// ? ScheduleAddImageWithValidationJobImpl(imageBytes, sizeInPixels, format, referenceImage, inputDeps)
// : CreateAddJobState(IntPtr.Zero, ScheduleAddImageJobImpl(imageBytes, sizeInPixels, format, referenceImage, inputDeps));
bool L_3;
L_3 = VirtualFuncInvoker0< bool >::Invoke(9 /* System.Boolean UnityEngine.XR.ARSubsystems.MutableRuntimeReferenceImageLibrary::get_supportsValidation() */, __this);
if (L_3)
{
goto IL_002c;
}
}
{
NativeSlice_1_tA05D3BC7EB042685CBFD3369ECB6140D114C911B L_4 = ___imageBytes0;
Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9 L_5 = ___sizeInPixels1;
int32_t L_6 = ___format2;
XRReferenceImage_tB1803A72EB581FB35B2CA944973679132A1D4467 L_7 = ___referenceImage3;
JobHandle_t8AEB8D31C25D7774C71D62B0C662525E6E36D847 L_8 = ___inputDeps4;
JobHandle_t8AEB8D31C25D7774C71D62B0C662525E6E36D847 L_9;
L_9 = VirtualFuncInvoker5< JobHandle_t8AEB8D31C25D7774C71D62B0C662525E6E36D847 , NativeSlice_1_tA05D3BC7EB042685CBFD3369ECB6140D114C911B , Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9 , int32_t, XRReferenceImage_tB1803A72EB581FB35B2CA944973679132A1D4467 , JobHandle_t8AEB8D31C25D7774C71D62B0C662525E6E36D847 >::Invoke(7 /* Unity.Jobs.JobHandle UnityEngine.XR.ARSubsystems.MutableRuntimeReferenceImageLibrary::ScheduleAddImageJobImpl(Unity.Collections.NativeSlice`1<System.Byte>,UnityEngine.Vector2Int,UnityEngine.TextureFormat,UnityEngine.XR.ARSubsystems.XRReferenceImage,Unity.Jobs.JobHandle) */, __this, L_4, L_5, L_6, L_7, L_8);
AddReferenceImageJobState_t6818A53BD54BDCDCA326D660A1575F66DF832633 L_10;
L_10 = MutableRuntimeReferenceImageLibrary_CreateAddJobState_m27F387722EE946B2B1555C1384B6659E2D884481(__this, (intptr_t)(0), L_9, /*hidden argument*/NULL);
return L_10;
}
IL_002c:
{
NativeSlice_1_tA05D3BC7EB042685CBFD3369ECB6140D114C911B L_11 = ___imageBytes0;
Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9 L_12 = ___sizeInPixels1;
int32_t L_13 = ___format2;
XRReferenceImage_tB1803A72EB581FB35B2CA944973679132A1D4467 L_14 = ___referenceImage3;
JobHandle_t8AEB8D31C25D7774C71D62B0C662525E6E36D847 L_15 = ___inputDeps4;
AddReferenceImageJobState_t6818A53BD54BDCDCA326D660A1575F66DF832633 L_16;
L_16 = VirtualFuncInvoker5< AddReferenceImageJobState_t6818A53BD54BDCDCA326D660A1575F66DF832633 , NativeSlice_1_tA05D3BC7EB042685CBFD3369ECB6140D114C911B , Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9 , int32_t, XRReferenceImage_tB1803A72EB581FB35B2CA944973679132A1D4467 , JobHandle_t8AEB8D31C25D7774C71D62B0C662525E6E36D847 >::Invoke(10 /* UnityEngine.XR.ARSubsystems.AddReferenceImageJobState UnityEngine.XR.ARSubsystems.MutableRuntimeReferenceImageLibrary::ScheduleAddImageWithValidationJobImpl(Unity.Collections.NativeSlice`1<System.Byte>,UnityEngine.Vector2Int,UnityEngine.TextureFormat,UnityEngine.XR.ARSubsystems.XRReferenceImage,Unity.Jobs.JobHandle) */, __this, L_11, L_12, L_13, L_14, L_15);
return L_16;
}
}
// System.Void UnityEngine.XR.ARSubsystems.MutableRuntimeReferenceImageLibrary::ValidateAndThrow(Unity.Collections.NativeSlice`1<System.Byte>,UnityEngine.Vector2Int,UnityEngine.TextureFormat,UnityEngine.XR.ARSubsystems.XRReferenceImage&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MutableRuntimeReferenceImageLibrary_ValidateAndThrow_mF2EB8580B66B035A33F2F8E61957EC1BFD16B1C6 (MutableRuntimeReferenceImageLibrary_t887376CE46B48DEEC6E8655D429BADCA6E3C7EAA * __this, NativeSlice_1_tA05D3BC7EB042685CBFD3369ECB6140D114C911B ___imageBytes0, Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9 ___sizeInPixels1, int32_t ___format2, XRReferenceImage_tB1803A72EB581FB35B2CA944973679132A1D4467 * ___referenceImage3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Guid_t_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NativeSliceUnsafeUtility_GetUnsafePtr_TisByte_t0111FAB8B8685667EDDAF77683F0D8F86B659056_mFF166CCFFA843D77765F18DA5E42EE6B80AE6A76_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
Guid_t V_0;
memset((&V_0), 0, sizeof(V_0));
{
// if (imageBytes.GetUnsafePtr() == null)
NativeSlice_1_tA05D3BC7EB042685CBFD3369ECB6140D114C911B L_0 = ___imageBytes0;
void* L_1;
L_1 = NativeSliceUnsafeUtility_GetUnsafePtr_TisByte_t0111FAB8B8685667EDDAF77683F0D8F86B659056_mFF166CCFFA843D77765F18DA5E42EE6B80AE6A76(L_0, /*hidden argument*/NativeSliceUnsafeUtility_GetUnsafePtr_TisByte_t0111FAB8B8685667EDDAF77683F0D8F86B659056_mFF166CCFFA843D77765F18DA5E42EE6B80AE6A76_RuntimeMethod_var);
if ((!(((uintptr_t)L_1) == ((uintptr_t)((uintptr_t)0)))))
{
goto IL_001a;
}
}
{
// throw new ArgumentException($"{nameof(imageBytes)} does not contain any bytes.", nameof(imageBytes));
ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_2 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var)));
ArgumentException__ctor_m71044C2110E357B71A1C30D2561C3F861AF1DC0D(L_2, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralEC43EDEADFD3245F29A73A73F1B6ABC9B301A4BE)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralE38896D7A7A4D523CB8DB8499882C1A4B6CD2517)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&MutableRuntimeReferenceImageLibrary_ValidateAndThrow_mF2EB8580B66B035A33F2F8E61957EC1BFD16B1C6_RuntimeMethod_var)));
}
IL_001a:
{
// if (!referenceImage.guid.Equals(Guid.Empty))
XRReferenceImage_tB1803A72EB581FB35B2CA944973679132A1D4467 * L_3 = ___referenceImage3;
Guid_t L_4;
L_4 = XRReferenceImage_get_guid_m1C4FCDF5CE4DB41074E50AB2B3D8B4A20CE290BE((XRReferenceImage_tB1803A72EB581FB35B2CA944973679132A1D4467 *)L_3, /*hidden argument*/NULL);
V_0 = L_4;
IL2CPP_RUNTIME_CLASS_INIT(Guid_t_il2cpp_TypeInfo_var);
Guid_t L_5 = ((Guid_t_StaticFields*)il2cpp_codegen_static_fields_for(Guid_t_il2cpp_TypeInfo_var))->get_Empty_0();
bool L_6;
L_6 = Guid_Equals_m602304DBC4842AB53670762A6DB52D30C3973258((Guid_t *)(&V_0), L_5, /*hidden argument*/NULL);
if (L_6)
{
goto IL_0040;
}
}
{
// throw new ArgumentException($"{nameof(referenceImage)}.{nameof(referenceImage.guid)} must be empty (all zeroes).", $"{nameof(referenceImage)}.{nameof(referenceImage.guid)}");
ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_7 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var)));
ArgumentException__ctor_m71044C2110E357B71A1C30D2561C3F861AF1DC0D(L_7, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralBAFB66877A656B61552112DCE8DB71CD94172E33)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralCA349D00A92432477BD02869F0B8A81869BF9986)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_7, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&MutableRuntimeReferenceImageLibrary_ValidateAndThrow_mF2EB8580B66B035A33F2F8E61957EC1BFD16B1C6_RuntimeMethod_var)));
}
IL_0040:
{
// referenceImage.m_SerializedGuid = GenerateNewGuid();
XRReferenceImage_tB1803A72EB581FB35B2CA944973679132A1D4467 * L_8 = ___referenceImage3;
SerializableGuid_t5F8E8B4FF33F91AF9B16C6CC3F75AE00014505CC L_9;
L_9 = MutableRuntimeReferenceImageLibrary_GenerateNewGuid_m860BB18E71B6B1DC40530F33333AE0477097E7E0(/*hidden argument*/NULL);
L_8->set_m_SerializedGuid_0(L_9);
// if (string.IsNullOrEmpty(referenceImage.name))
XRReferenceImage_tB1803A72EB581FB35B2CA944973679132A1D4467 * L_10 = ___referenceImage3;
String_t* L_11;
L_11 = XRReferenceImage_get_name_mE8F3368C2587552333AB78EA72A02E5B73E355C7_inline((XRReferenceImage_tB1803A72EB581FB35B2CA944973679132A1D4467 *)L_10, /*hidden argument*/NULL);
bool L_12;
L_12 = String_IsNullOrEmpty_m9AFBB5335B441B94E884B8A9D4A27AD60E3D7F7C(L_11, /*hidden argument*/NULL);
if (!L_12)
{
goto IL_0065;
}
}
{
// throw new ArgumentNullException($"{nameof(referenceImage)}.{nameof(referenceImage.name)}");
ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB * L_13 = (ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB_il2cpp_TypeInfo_var)));
ArgumentNullException__ctor_m81AB157B93BFE2FBFDB08B88F84B444293042F97(L_13, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral4E2CAD93C9B37D75C2F198F913EF6C4D8D9D1F79)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_13, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&MutableRuntimeReferenceImageLibrary_ValidateAndThrow_mF2EB8580B66B035A33F2F8E61957EC1BFD16B1C6_RuntimeMethod_var)));
}
IL_0065:
{
// if (referenceImage.specifySize && referenceImage.size.x <= 0)
XRReferenceImage_tB1803A72EB581FB35B2CA944973679132A1D4467 * L_14 = ___referenceImage3;
bool L_15;
L_15 = XRReferenceImage_get_specifySize_mAC02B5D0DBF9D66C2668206B7603C58149EE7D8B_inline((XRReferenceImage_tB1803A72EB581FB35B2CA944973679132A1D4467 *)L_14, /*hidden argument*/NULL);
if (!L_15)
{
goto IL_00a2;
}
}
{
XRReferenceImage_tB1803A72EB581FB35B2CA944973679132A1D4467 * L_16 = ___referenceImage3;
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 L_17;
L_17 = XRReferenceImage_get_size_m135B7EF1ED61FE27A8793503E8FC84543642C166_inline((XRReferenceImage_tB1803A72EB581FB35B2CA944973679132A1D4467 *)L_16, /*hidden argument*/NULL);
float L_18 = L_17.get_x_0();
if ((!(((float)L_18) <= ((float)(0.0f)))))
{
goto IL_00a2;
}
}
{
// throw new ArgumentOutOfRangeException($"{nameof(referenceImage)}.{nameof(referenceImage.size)}", referenceImage.size.x, $"Invalid physical image dimensions.");
XRReferenceImage_tB1803A72EB581FB35B2CA944973679132A1D4467 * L_19 = ___referenceImage3;
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 L_20;
L_20 = XRReferenceImage_get_size_m135B7EF1ED61FE27A8793503E8FC84543642C166_inline((XRReferenceImage_tB1803A72EB581FB35B2CA944973679132A1D4467 *)L_19, /*hidden argument*/NULL);
float L_21 = L_20.get_x_0();
float L_22 = L_21;
RuntimeObject * L_23 = Box(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Single_tE07797BA3C98D4CA9B5A19413C19A76688AB899E_il2cpp_TypeInfo_var)), &L_22);
ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 * L_24 = (ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8_il2cpp_TypeInfo_var)));
ArgumentOutOfRangeException__ctor_m7C5B3BE7792B7C73E7D82C4DBAD4ACA2DAE71AA9(L_24, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral9B4A21D6CD8062B6CF05C6F0BE263B555730AD00)), L_23, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralC5EA8CC9CEFFB2863CC8F11B79A2D43FA26C9E3E)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_24, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&MutableRuntimeReferenceImageLibrary_ValidateAndThrow_mF2EB8580B66B035A33F2F8E61957EC1BFD16B1C6_RuntimeMethod_var)));
}
IL_00a2:
{
// if (!IsTextureFormatSupported(format))
int32_t L_25 = ___format2;
bool L_26;
L_26 = MutableRuntimeReferenceImageLibrary_IsTextureFormatSupported_m487AD78AC89C314E106AB9D84E702FD5310F76B9(__this, L_25, /*hidden argument*/NULL);
if (L_26)
{
goto IL_00c1;
}
}
{
// throw new InvalidOperationException($"The texture format {format} is not supported by the current image tracking subsystem.");
int32_t L_27 = ___format2;
int32_t L_28 = L_27;
RuntimeObject * L_29 = Box(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&TextureFormat_tBED5388A0445FE978F97B41D247275B036407932_il2cpp_TypeInfo_var)), &L_28);
String_t* L_30;
L_30 = String_Format_mB3D38E5238C3164DB4D7D29339D9E225A4496D17(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral9C9801D3EA3E223E75ECE3A3C518ED695023EE74)), L_29, /*hidden argument*/NULL);
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_31 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_31, L_30, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_31, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&MutableRuntimeReferenceImageLibrary_ValidateAndThrow_mF2EB8580B66B035A33F2F8E61957EC1BFD16B1C6_RuntimeMethod_var)));
}
IL_00c1:
{
// if (sizeInPixels.x <= 0)
int32_t L_32;
L_32 = Vector2Int_get_x_mDBEFBCDF9C7924767344ED2CEE1307885AED947B_inline((Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9 *)(&___sizeInPixels1), /*hidden argument*/NULL);
if ((((int32_t)L_32) > ((int32_t)0)))
{
goto IL_00e7;
}
}
{
// throw new ArgumentOutOfRangeException($"{nameof(sizeInPixels)}.{nameof(sizeInPixels.x)}", sizeInPixels.x, "Image width must be greater than zero.");
int32_t L_33;
L_33 = Vector2Int_get_x_mDBEFBCDF9C7924767344ED2CEE1307885AED947B_inline((Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9 *)(&___sizeInPixels1), /*hidden argument*/NULL);
int32_t L_34 = L_33;
RuntimeObject * L_35 = Box(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var)), &L_34);
ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 * L_36 = (ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8_il2cpp_TypeInfo_var)));
ArgumentOutOfRangeException__ctor_m7C5B3BE7792B7C73E7D82C4DBAD4ACA2DAE71AA9(L_36, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralB089E7C95CC4D58B7178BE7201F9D364AD80CE19)), L_35, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralCECA054A5E04174D340F9D413A054DFB3140C680)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_36, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&MutableRuntimeReferenceImageLibrary_ValidateAndThrow_mF2EB8580B66B035A33F2F8E61957EC1BFD16B1C6_RuntimeMethod_var)));
}
IL_00e7:
{
// if (sizeInPixels.y <= 0)
int32_t L_37;
L_37 = Vector2Int_get_y_m282591DEB0E70B02F4F4DDFAB90116AEC8E6B86C_inline((Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9 *)(&___sizeInPixels1), /*hidden argument*/NULL);
if ((((int32_t)L_37) > ((int32_t)0)))
{
goto IL_010d;
}
}
{
// throw new ArgumentOutOfRangeException($"{nameof(sizeInPixels)}.{nameof(sizeInPixels.y)}", sizeInPixels.y, "Image height must be greater than zero.");
int32_t L_38;
L_38 = Vector2Int_get_y_m282591DEB0E70B02F4F4DDFAB90116AEC8E6B86C_inline((Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9 *)(&___sizeInPixels1), /*hidden argument*/NULL);
int32_t L_39 = L_38;
RuntimeObject * L_40 = Box(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var)), &L_39);
ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 * L_41 = (ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8_il2cpp_TypeInfo_var)));
ArgumentOutOfRangeException__ctor_m7C5B3BE7792B7C73E7D82C4DBAD4ACA2DAE71AA9(L_41, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral589FDC1297AD5B0B961700FBC7EC4CD7096E00E8)), L_40, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral143DF4D7BE7CC053F3AE25024CDD2EF673D36100)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_41, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&MutableRuntimeReferenceImageLibrary_ValidateAndThrow_mF2EB8580B66B035A33F2F8E61957EC1BFD16B1C6_RuntimeMethod_var)));
}
IL_010d:
{
// }
return;
}
}
// System.Boolean UnityEngine.XR.ARSubsystems.MutableRuntimeReferenceImageLibrary::IsTextureFormatSupported(UnityEngine.TextureFormat)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool MutableRuntimeReferenceImageLibrary_IsTextureFormatSupported_m487AD78AC89C314E106AB9D84E702FD5310F76B9 (MutableRuntimeReferenceImageLibrary_t887376CE46B48DEEC6E8655D429BADCA6E3C7EAA * __this, int32_t ___format0, const RuntimeMethod* method)
{
int32_t V_0 = 0;
int32_t V_1 = 0;
{
// int n = supportedTextureFormatCount;
int32_t L_0;
L_0 = VirtualFuncInvoker0< int32_t >::Invoke(11 /* System.Int32 UnityEngine.XR.ARSubsystems.MutableRuntimeReferenceImageLibrary::get_supportedTextureFormatCount() */, __this);
V_0 = L_0;
// for (int i = 0; i < n; ++i)
V_1 = 0;
goto IL_001b;
}
IL_000b:
{
// if (GetSupportedTextureFormatAtImpl(i) == format)
int32_t L_1 = V_1;
int32_t L_2;
L_2 = VirtualFuncInvoker1< int32_t, int32_t >::Invoke(12 /* UnityEngine.TextureFormat UnityEngine.XR.ARSubsystems.MutableRuntimeReferenceImageLibrary::GetSupportedTextureFormatAtImpl(System.Int32) */, __this, L_1);
int32_t L_3 = ___format0;
if ((!(((uint32_t)L_2) == ((uint32_t)L_3))))
{
goto IL_0017;
}
}
{
// return true;
return (bool)1;
}
IL_0017:
{
// for (int i = 0; i < n; ++i)
int32_t L_4 = V_1;
V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_4, (int32_t)1));
}
IL_001b:
{
// for (int i = 0; i < n; ++i)
int32_t L_5 = V_1;
int32_t L_6 = V_0;
if ((((int32_t)L_5) < ((int32_t)L_6)))
{
goto IL_000b;
}
}
{
// return false;
return (bool)0;
}
}
// UnityEngine.XR.ARSubsystems.MutableRuntimeReferenceImageLibrary/Enumerator UnityEngine.XR.ARSubsystems.MutableRuntimeReferenceImageLibrary::GetEnumerator()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Enumerator_t9B104B3EE1E7390464361D775D18230CF662A7D5 MutableRuntimeReferenceImageLibrary_GetEnumerator_m75BBAD1CD5A618626AFFD2BA789BACC9B912729D (MutableRuntimeReferenceImageLibrary_t887376CE46B48DEEC6E8655D429BADCA6E3C7EAA * __this, const RuntimeMethod* method)
{
{
// public Enumerator GetEnumerator() => new Enumerator(this);
Enumerator_t9B104B3EE1E7390464361D775D18230CF662A7D5 L_0;
memset((&L_0), 0, sizeof(L_0));
Enumerator__ctor_m614C5DEAACB06ED98FFE5BBE716D9F16124A4F81((&L_0), __this, /*hidden argument*/NULL);
return L_0;
}
}
// UnityEngine.XR.ARSubsystems.SerializableGuid UnityEngine.XR.ARSubsystems.MutableRuntimeReferenceImageLibrary::GenerateNewGuid()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SerializableGuid_t5F8E8B4FF33F91AF9B16C6CC3F75AE00014505CC MutableRuntimeReferenceImageLibrary_GenerateNewGuid_m860BB18E71B6B1DC40530F33333AE0477097E7E0 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Guid_t_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
Guid_t V_0;
memset((&V_0), 0, sizeof(V_0));
TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B V_1;
memset((&V_1), 0, sizeof(V_1));
{
// var newGuid = Guid.NewGuid();
IL2CPP_RUNTIME_CLASS_INIT(Guid_t_il2cpp_TypeInfo_var);
Guid_t L_0;
L_0 = Guid_NewGuid_m5BD19325820690ED6ECA31D67BC2CD474DC4FDB0(/*hidden argument*/NULL);
V_0 = L_0;
// var trackableId = *(TrackableId*)&newGuid;
TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B L_1 = (*(TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B *)((uintptr_t)(&V_0)));
V_1 = L_1;
// return new SerializableGuid(trackableId.subId1, trackableId.subId2);
uint64_t L_2;
L_2 = TrackableId_get_subId1_m219B741FAF6D36DB7B8CFDC588EA93677FCE174B_inline((TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B *)(&V_1), /*hidden argument*/NULL);
uint64_t L_3;
L_3 = TrackableId_get_subId2_m136D4970BDCC7323020913A9B5303584AA105B34_inline((TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B *)(&V_1), /*hidden argument*/NULL);
SerializableGuid_t5F8E8B4FF33F91AF9B16C6CC3F75AE00014505CC L_4;
memset((&L_4), 0, sizeof(L_4));
SerializableGuid__ctor_m0A96C8F8254451C083274363A1C68E5FB5CDF107((&L_4), L_2, L_3, /*hidden argument*/NULL);
return L_4;
}
}
// System.Void UnityEngine.XR.ARSubsystems.MutableRuntimeReferenceImageLibrary::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MutableRuntimeReferenceImageLibrary__ctor_m9555E1EE4D2E8D6F7C120329D1937B0C91D99969 (MutableRuntimeReferenceImageLibrary_t887376CE46B48DEEC6E8655D429BADCA6E3C7EAA * __this, const RuntimeMethod* method)
{
{
RuntimeReferenceImageLibrary__ctor_m24529C1F2AF8B3A8358098F220E770116883A299(__this, /*hidden argument*/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
#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
#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
// UnityEngine.XR.ARSubsystems.XRReferenceImage UnityEngine.XR.ARSubsystems.RuntimeReferenceImageLibrary::get_Item(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XRReferenceImage_tB1803A72EB581FB35B2CA944973679132A1D4467 RuntimeReferenceImageLibrary_get_Item_mEB525ED69F54BD63CE3942B99521D4D1E04B6CBB (RuntimeReferenceImageLibrary_t76072EC5637B1F0F8FD0A1BFD3AEAF954D6F8D6B * __this, int32_t ___index0, const RuntimeMethod* method)
{
{
// if (index < 0)
int32_t L_0 = ___index0;
if ((((int32_t)L_0) >= ((int32_t)0)))
{
goto IL_001a;
}
}
{
// throw new ArgumentOutOfRangeException(nameof(index), index, $"{nameof(index)} must be greater than or equal to zero.");
int32_t L_1 = ___index0;
int32_t L_2 = L_1;
RuntimeObject * L_3 = Box(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var)), &L_2);
ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 * L_4 = (ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8_il2cpp_TypeInfo_var)));
ArgumentOutOfRangeException__ctor_m7C5B3BE7792B7C73E7D82C4DBAD4ACA2DAE71AA9(L_4, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral2B6D6F48C27C60C3B55391AB377D9DC8F5639AA1)), L_3, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral3DAA28DA82AA8B836AA22268F5F5B468D3453CE4)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&RuntimeReferenceImageLibrary_get_Item_mEB525ED69F54BD63CE3942B99521D4D1E04B6CBB_RuntimeMethod_var)));
}
IL_001a:
{
// if (index >= count)
int32_t L_5 = ___index0;
int32_t L_6;
L_6 = VirtualFuncInvoker0< int32_t >::Invoke(5 /* System.Int32 UnityEngine.XR.ARSubsystems.RuntimeReferenceImageLibrary::get_count() */, __this);
if ((((int32_t)L_5) < ((int32_t)L_6)))
{
goto IL_004e;
}
}
{
// throw new ArgumentOutOfRangeException(nameof(index), index, $"{nameof(index)} must be less than count ({count}).");
int32_t L_7 = ___index0;
int32_t L_8 = L_7;
RuntimeObject * L_9 = Box(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var)), &L_8);
int32_t L_10;
L_10 = VirtualFuncInvoker0< int32_t >::Invoke(5 /* System.Int32 UnityEngine.XR.ARSubsystems.RuntimeReferenceImageLibrary::get_count() */, __this);
int32_t L_11 = L_10;
RuntimeObject * L_12 = Box(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var)), &L_11);
String_t* L_13;
L_13 = String_Format_m8D1CB0410C35E052A53AE957C914C841E54BAB66(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral843AD9485B03D4FA4E70DB5FA0FC7C332F7F871F)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral2B6D6F48C27C60C3B55391AB377D9DC8F5639AA1)), L_12, /*hidden argument*/NULL);
ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 * L_14 = (ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8_il2cpp_TypeInfo_var)));
ArgumentOutOfRangeException__ctor_m7C5B3BE7792B7C73E7D82C4DBAD4ACA2DAE71AA9(L_14, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral2B6D6F48C27C60C3B55391AB377D9DC8F5639AA1)), L_9, L_13, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_14, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&RuntimeReferenceImageLibrary_get_Item_mEB525ED69F54BD63CE3942B99521D4D1E04B6CBB_RuntimeMethod_var)));
}
IL_004e:
{
// return GetReferenceImageAt(index);
int32_t L_15 = ___index0;
XRReferenceImage_tB1803A72EB581FB35B2CA944973679132A1D4467 L_16;
L_16 = VirtualFuncInvoker1< XRReferenceImage_tB1803A72EB581FB35B2CA944973679132A1D4467 , int32_t >::Invoke(6 /* UnityEngine.XR.ARSubsystems.XRReferenceImage UnityEngine.XR.ARSubsystems.RuntimeReferenceImageLibrary::GetReferenceImageAt(System.Int32) */, __this, L_15);
return L_16;
}
}
// System.Void UnityEngine.XR.ARSubsystems.RuntimeReferenceImageLibrary::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RuntimeReferenceImageLibrary__ctor_m24529C1F2AF8B3A8358098F220E770116883A299 (RuntimeReferenceImageLibrary_t76072EC5637B1F0F8FD0A1BFD3AEAF954D6F8D6B * __this, const RuntimeMethod* method)
{
{
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__this, /*hidden argument*/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
// System.Void UnityEngine.XR.ARSubsystems.ScopedProfiler::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ScopedProfiler__ctor_m3426FC301C7541283DA4382EFAFDBDFD08358DAD (ScopedProfiler_t2D56ACC439533AC07E255065961834AAD04BE52E * __this, String_t* ___name0, const RuntimeMethod* method)
{
{
return;
}
}
IL2CPP_EXTERN_C void ScopedProfiler__ctor_m3426FC301C7541283DA4382EFAFDBDFD08358DAD_AdjustorThunk (RuntimeObject * __this, String_t* ___name0, const RuntimeMethod* method)
{
ScopedProfiler_t2D56ACC439533AC07E255065961834AAD04BE52E * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<ScopedProfiler_t2D56ACC439533AC07E255065961834AAD04BE52E *>(__this + _offset);
ScopedProfiler__ctor_m3426FC301C7541283DA4382EFAFDBDFD08358DAD(_thisAdjusted, ___name0, method);
}
// System.Void UnityEngine.XR.ARSubsystems.ScopedProfiler::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ScopedProfiler_Dispose_mB6720C4212A51CBC86104AF46E081B1CB410BC1A (ScopedProfiler_t2D56ACC439533AC07E255065961834AAD04BE52E * __this, const RuntimeMethod* method)
{
{
return;
}
}
IL2CPP_EXTERN_C void ScopedProfiler_Dispose_mB6720C4212A51CBC86104AF46E081B1CB410BC1A_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
ScopedProfiler_t2D56ACC439533AC07E255065961834AAD04BE52E * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<ScopedProfiler_t2D56ACC439533AC07E255065961834AAD04BE52E *>(__this + _offset);
ScopedProfiler_Dispose_mB6720C4212A51CBC86104AF46E081B1CB410BC1A(_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
// System.Boolean UnityEngine.XR.ARSubsystems.SegmentationDepthModeExtension::Enabled(UnityEngine.XR.ARSubsystems.HumanSegmentationDepthMode)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool SegmentationDepthModeExtension_Enabled_m3934709EF5C4CCD661E0188C103280BD96F1D9C6 (int32_t ___segmentationDepthMode0, const RuntimeMethod* method)
{
{
// => segmentationDepthMode != HumanSegmentationDepthMode.Disabled;
int32_t L_0 = ___segmentationDepthMode0;
return (bool)((!(((uint32_t)L_0) <= ((uint32_t)0)))? 1 : 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
// System.Boolean UnityEngine.XR.ARSubsystems.SegmentationStencilModeExtension::Enabled(UnityEngine.XR.ARSubsystems.HumanSegmentationStencilMode)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool SegmentationStencilModeExtension_Enabled_m8C420BAE2C6604ADCAD803BA36C2C78954B5F71E (int32_t ___segmentationStencilMode0, const RuntimeMethod* method)
{
{
// => segmentationStencilMode != HumanSegmentationStencilMode.Disabled;
int32_t L_0 = ___segmentationStencilMode0;
return (bool)((!(((uint32_t)L_0) <= ((uint32_t)0)))? 1 : 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
// System.Void UnityEngine.XR.ARSubsystems.SerializableGuid::.ctor(System.UInt64,System.UInt64)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SerializableGuid__ctor_m0A96C8F8254451C083274363A1C68E5FB5CDF107 (SerializableGuid_t5F8E8B4FF33F91AF9B16C6CC3F75AE00014505CC * __this, uint64_t ___guidLow0, uint64_t ___guidHigh1, const RuntimeMethod* method)
{
{
// m_GuidLow = guidLow;
uint64_t L_0 = ___guidLow0;
__this->set_m_GuidLow_1(L_0);
// m_GuidHigh = guidHigh;
uint64_t L_1 = ___guidHigh1;
__this->set_m_GuidHigh_2(L_1);
// }
return;
}
}
IL2CPP_EXTERN_C void SerializableGuid__ctor_m0A96C8F8254451C083274363A1C68E5FB5CDF107_AdjustorThunk (RuntimeObject * __this, uint64_t ___guidLow0, uint64_t ___guidHigh1, const RuntimeMethod* method)
{
SerializableGuid_t5F8E8B4FF33F91AF9B16C6CC3F75AE00014505CC * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<SerializableGuid_t5F8E8B4FF33F91AF9B16C6CC3F75AE00014505CC *>(__this + _offset);
SerializableGuid__ctor_m0A96C8F8254451C083274363A1C68E5FB5CDF107(_thisAdjusted, ___guidLow0, ___guidHigh1, method);
}
// UnityEngine.XR.ARSubsystems.SerializableGuid UnityEngine.XR.ARSubsystems.SerializableGuid::get_empty()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SerializableGuid_t5F8E8B4FF33F91AF9B16C6CC3F75AE00014505CC SerializableGuid_get_empty_mD053CE84CCEA69471972F0618E55DFDBC923D221 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SerializableGuid_t5F8E8B4FF33F91AF9B16C6CC3F75AE00014505CC_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
// public static SerializableGuid empty => k_Empty;
IL2CPP_RUNTIME_CLASS_INIT(SerializableGuid_t5F8E8B4FF33F91AF9B16C6CC3F75AE00014505CC_il2cpp_TypeInfo_var);
SerializableGuid_t5F8E8B4FF33F91AF9B16C6CC3F75AE00014505CC L_0 = ((SerializableGuid_t5F8E8B4FF33F91AF9B16C6CC3F75AE00014505CC_StaticFields*)il2cpp_codegen_static_fields_for(SerializableGuid_t5F8E8B4FF33F91AF9B16C6CC3F75AE00014505CC_il2cpp_TypeInfo_var))->get_k_Empty_0();
return L_0;
}
}
// System.Guid UnityEngine.XR.ARSubsystems.SerializableGuid::get_guid()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Guid_t SerializableGuid_get_guid_m54618233E4BD08410123A50B4E8DAC66FCE46032 (SerializableGuid_t5F8E8B4FF33F91AF9B16C6CC3F75AE00014505CC * __this, const RuntimeMethod* method)
{
{
// public Guid guid => GuidUtil.Compose(m_GuidLow, m_GuidHigh);
uint64_t L_0 = __this->get_m_GuidLow_1();
uint64_t L_1 = __this->get_m_GuidHigh_2();
Guid_t L_2;
L_2 = GuidUtil_Compose_m0EE004B20CD802F981C34180EFA91C39A9400DCB(L_0, L_1, /*hidden argument*/NULL);
return L_2;
}
}
IL2CPP_EXTERN_C Guid_t SerializableGuid_get_guid_m54618233E4BD08410123A50B4E8DAC66FCE46032_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
SerializableGuid_t5F8E8B4FF33F91AF9B16C6CC3F75AE00014505CC * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<SerializableGuid_t5F8E8B4FF33F91AF9B16C6CC3F75AE00014505CC *>(__this + _offset);
Guid_t _returnValue;
_returnValue = SerializableGuid_get_guid_m54618233E4BD08410123A50B4E8DAC66FCE46032(_thisAdjusted, method);
return _returnValue;
}
// System.Int32 UnityEngine.XR.ARSubsystems.SerializableGuid::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t SerializableGuid_GetHashCode_m200045FC79E206A9FD4B9A1578A3C66CCBF41481 (SerializableGuid_t5F8E8B4FF33F91AF9B16C6CC3F75AE00014505CC * __this, const RuntimeMethod* method)
{
{
// public override int GetHashCode() => HashCode.Combine(m_GuidLow.GetHashCode(), m_GuidHigh.GetHashCode());
uint64_t* L_0 = __this->get_address_of_m_GuidLow_1();
int32_t L_1;
L_1 = UInt64_GetHashCode_mCDF662897A3F02CED11A9F9E66C5BF4E28C02B33((uint64_t*)L_0, /*hidden argument*/NULL);
uint64_t* L_2 = __this->get_address_of_m_GuidHigh_2();
int32_t L_3;
L_3 = UInt64_GetHashCode_mCDF662897A3F02CED11A9F9E66C5BF4E28C02B33((uint64_t*)L_2, /*hidden argument*/NULL);
int32_t L_4;
L_4 = HashCode_Combine_m23C951F115303C9E040D18947821969B602863FC(L_1, L_3, /*hidden argument*/NULL);
return L_4;
}
}
IL2CPP_EXTERN_C int32_t SerializableGuid_GetHashCode_m200045FC79E206A9FD4B9A1578A3C66CCBF41481_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
SerializableGuid_t5F8E8B4FF33F91AF9B16C6CC3F75AE00014505CC * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<SerializableGuid_t5F8E8B4FF33F91AF9B16C6CC3F75AE00014505CC *>(__this + _offset);
int32_t _returnValue;
_returnValue = SerializableGuid_GetHashCode_m200045FC79E206A9FD4B9A1578A3C66CCBF41481(_thisAdjusted, method);
return _returnValue;
}
// System.Boolean UnityEngine.XR.ARSubsystems.SerializableGuid::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool SerializableGuid_Equals_m20C468F42E878759B4DB1703B99E3EF7FA0DE550 (SerializableGuid_t5F8E8B4FF33F91AF9B16C6CC3F75AE00014505CC * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SerializableGuid_t5F8E8B4FF33F91AF9B16C6CC3F75AE00014505CC_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
// public override bool Equals(object obj) => (obj is SerializableGuid) && Equals((SerializableGuid)obj);
RuntimeObject * L_0 = ___obj0;
if (!((RuntimeObject *)IsInstSealed((RuntimeObject*)L_0, SerializableGuid_t5F8E8B4FF33F91AF9B16C6CC3F75AE00014505CC_il2cpp_TypeInfo_var)))
{
goto IL_0015;
}
}
{
RuntimeObject * L_1 = ___obj0;
bool L_2;
L_2 = SerializableGuid_Equals_m1ADEE5CED29ED1D62E794F2CECCDEADF416878A6((SerializableGuid_t5F8E8B4FF33F91AF9B16C6CC3F75AE00014505CC *)__this, ((*(SerializableGuid_t5F8E8B4FF33F91AF9B16C6CC3F75AE00014505CC *)((SerializableGuid_t5F8E8B4FF33F91AF9B16C6CC3F75AE00014505CC *)UnBox(L_1, SerializableGuid_t5F8E8B4FF33F91AF9B16C6CC3F75AE00014505CC_il2cpp_TypeInfo_var)))), /*hidden argument*/NULL);
return L_2;
}
IL_0015:
{
return (bool)0;
}
}
IL2CPP_EXTERN_C bool SerializableGuid_Equals_m20C468F42E878759B4DB1703B99E3EF7FA0DE550_AdjustorThunk (RuntimeObject * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
SerializableGuid_t5F8E8B4FF33F91AF9B16C6CC3F75AE00014505CC * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<SerializableGuid_t5F8E8B4FF33F91AF9B16C6CC3F75AE00014505CC *>(__this + _offset);
bool _returnValue;
_returnValue = SerializableGuid_Equals_m20C468F42E878759B4DB1703B99E3EF7FA0DE550(_thisAdjusted, ___obj0, method);
return _returnValue;
}
// System.String UnityEngine.XR.ARSubsystems.SerializableGuid::ToString()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* SerializableGuid_ToString_m593CC03163539B5043119F380A189EDCBF100D32 (SerializableGuid_t5F8E8B4FF33F91AF9B16C6CC3F75AE00014505CC * __this, const RuntimeMethod* method)
{
Guid_t V_0;
memset((&V_0), 0, sizeof(V_0));
{
// public override string ToString() => guid.ToString();
Guid_t L_0;
L_0 = SerializableGuid_get_guid_m54618233E4BD08410123A50B4E8DAC66FCE46032((SerializableGuid_t5F8E8B4FF33F91AF9B16C6CC3F75AE00014505CC *)__this, /*hidden argument*/NULL);
V_0 = L_0;
String_t* L_1;
L_1 = Guid_ToString_mA3AB7742FB0E04808F580868E82BDEB93187FB75((Guid_t *)(&V_0), /*hidden argument*/NULL);
return L_1;
}
}
IL2CPP_EXTERN_C String_t* SerializableGuid_ToString_m593CC03163539B5043119F380A189EDCBF100D32_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
SerializableGuid_t5F8E8B4FF33F91AF9B16C6CC3F75AE00014505CC * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<SerializableGuid_t5F8E8B4FF33F91AF9B16C6CC3F75AE00014505CC *>(__this + _offset);
String_t* _returnValue;
_returnValue = SerializableGuid_ToString_m593CC03163539B5043119F380A189EDCBF100D32(_thisAdjusted, method);
return _returnValue;
}
// System.Boolean UnityEngine.XR.ARSubsystems.SerializableGuid::Equals(UnityEngine.XR.ARSubsystems.SerializableGuid)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool SerializableGuid_Equals_m1ADEE5CED29ED1D62E794F2CECCDEADF416878A6 (SerializableGuid_t5F8E8B4FF33F91AF9B16C6CC3F75AE00014505CC * __this, SerializableGuid_t5F8E8B4FF33F91AF9B16C6CC3F75AE00014505CC ___other0, const RuntimeMethod* method)
{
{
// return
// (m_GuidLow == other.m_GuidLow) &&
// (m_GuidHigh == other.m_GuidHigh);
uint64_t L_0 = __this->get_m_GuidLow_1();
SerializableGuid_t5F8E8B4FF33F91AF9B16C6CC3F75AE00014505CC L_1 = ___other0;
uint64_t L_2 = L_1.get_m_GuidLow_1();
if ((!(((uint64_t)L_0) == ((uint64_t)L_2))))
{
goto IL_001d;
}
}
{
uint64_t L_3 = __this->get_m_GuidHigh_2();
SerializableGuid_t5F8E8B4FF33F91AF9B16C6CC3F75AE00014505CC L_4 = ___other0;
uint64_t L_5 = L_4.get_m_GuidHigh_2();
return (bool)((((int64_t)L_3) == ((int64_t)L_5))? 1 : 0);
}
IL_001d:
{
return (bool)0;
}
}
IL2CPP_EXTERN_C bool SerializableGuid_Equals_m1ADEE5CED29ED1D62E794F2CECCDEADF416878A6_AdjustorThunk (RuntimeObject * __this, SerializableGuid_t5F8E8B4FF33F91AF9B16C6CC3F75AE00014505CC ___other0, const RuntimeMethod* method)
{
SerializableGuid_t5F8E8B4FF33F91AF9B16C6CC3F75AE00014505CC * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<SerializableGuid_t5F8E8B4FF33F91AF9B16C6CC3F75AE00014505CC *>(__this + _offset);
bool _returnValue;
_returnValue = SerializableGuid_Equals_m1ADEE5CED29ED1D62E794F2CECCDEADF416878A6(_thisAdjusted, ___other0, method);
return _returnValue;
}
// System.Void UnityEngine.XR.ARSubsystems.SerializableGuid::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SerializableGuid__cctor_m7AE147A3690432A01E90F8785AAAA9724841CC44 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SerializableGuid_t5F8E8B4FF33F91AF9B16C6CC3F75AE00014505CC_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
// static readonly SerializableGuid k_Empty = new SerializableGuid(0, 0);
SerializableGuid_t5F8E8B4FF33F91AF9B16C6CC3F75AE00014505CC L_0;
memset((&L_0), 0, sizeof(L_0));
SerializableGuid__ctor_m0A96C8F8254451C083274363A1C68E5FB5CDF107((&L_0), ((int64_t)((int64_t)0)), ((int64_t)((int64_t)0)), /*hidden argument*/NULL);
((SerializableGuid_t5F8E8B4FF33F91AF9B16C6CC3F75AE00014505CC_StaticFields*)il2cpp_codegen_static_fields_for(SerializableGuid_t5F8E8B4FF33F91AF9B16C6CC3F75AE00014505CC_il2cpp_TypeInfo_var))->set_k_Empty_0(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
#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
// System.Boolean UnityEngine.XR.ARSubsystems.SessionAvailabilityExtensions::IsSupported(UnityEngine.XR.ARSubsystems.SessionAvailability)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool SessionAvailabilityExtensions_IsSupported_mB38CD4C740F6E73FACB198DC2F491301EDB34401 (int32_t ___availability0, const RuntimeMethod* method)
{
{
// return (availability & SessionAvailability.Supported) != SessionAvailability.None;
int32_t L_0 = ___availability0;
return (bool)((!(((uint32_t)((int32_t)((int32_t)L_0&(int32_t)2))) <= ((uint32_t)0)))? 1 : 0);
}
}
// System.Boolean UnityEngine.XR.ARSubsystems.SessionAvailabilityExtensions::IsInstalled(UnityEngine.XR.ARSubsystems.SessionAvailability)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool SessionAvailabilityExtensions_IsInstalled_mB8EBDA11F7560DAEF09C2A4BC566A5103CA47424 (int32_t ___availability0, const RuntimeMethod* method)
{
{
// return (availability & SessionAvailability.Installed) != SessionAvailability.None;
int32_t L_0 = ___availability0;
return (bool)((!(((uint32_t)((int32_t)((int32_t)L_0&(int32_t)4))) <= ((uint32_t)0)))? 1 : 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
// UnityEngine.XR.ARSubsystems.TrackableId UnityEngine.XR.ARSubsystems.TrackableId::get_invalidId()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B TrackableId_get_invalidId_m06B698EFFA7748E185299C72B5CEC1AA5B221F85 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
// public static TrackableId invalidId => s_InvalidId;
IL2CPP_RUNTIME_CLASS_INIT(TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B_il2cpp_TypeInfo_var);
TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B L_0 = ((TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B_StaticFields*)il2cpp_codegen_static_fields_for(TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B_il2cpp_TypeInfo_var))->get_s_InvalidId_1();
return L_0;
}
}
// System.UInt64 UnityEngine.XR.ARSubsystems.TrackableId::get_subId1()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t TrackableId_get_subId1_m219B741FAF6D36DB7B8CFDC588EA93677FCE174B (TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B * __this, const RuntimeMethod* method)
{
{
// get => m_SubId1;
uint64_t L_0 = __this->get_m_SubId1_2();
return L_0;
}
}
IL2CPP_EXTERN_C uint64_t TrackableId_get_subId1_m219B741FAF6D36DB7B8CFDC588EA93677FCE174B_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B *>(__this + _offset);
uint64_t _returnValue;
_returnValue = TrackableId_get_subId1_m219B741FAF6D36DB7B8CFDC588EA93677FCE174B_inline(_thisAdjusted, method);
return _returnValue;
}
// System.UInt64 UnityEngine.XR.ARSubsystems.TrackableId::get_subId2()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t TrackableId_get_subId2_m136D4970BDCC7323020913A9B5303584AA105B34 (TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B * __this, const RuntimeMethod* method)
{
{
// get => m_SubId2;
uint64_t L_0 = __this->get_m_SubId2_3();
return L_0;
}
}
IL2CPP_EXTERN_C uint64_t TrackableId_get_subId2_m136D4970BDCC7323020913A9B5303584AA105B34_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B *>(__this + _offset);
uint64_t _returnValue;
_returnValue = TrackableId_get_subId2_m136D4970BDCC7323020913A9B5303584AA105B34_inline(_thisAdjusted, method);
return _returnValue;
}
// System.Void UnityEngine.XR.ARSubsystems.TrackableId::.ctor(System.UInt64,System.UInt64)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TrackableId__ctor_mB9B301A9CD03355A4E03A2B1A102B6B75F190792 (TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B * __this, uint64_t ___subId10, uint64_t ___subId21, const RuntimeMethod* method)
{
{
// m_SubId1 = subId1;
uint64_t L_0 = ___subId10;
__this->set_m_SubId1_2(L_0);
// m_SubId2 = subId2;
uint64_t L_1 = ___subId21;
__this->set_m_SubId2_3(L_1);
// }
return;
}
}
IL2CPP_EXTERN_C void TrackableId__ctor_mB9B301A9CD03355A4E03A2B1A102B6B75F190792_AdjustorThunk (RuntimeObject * __this, uint64_t ___subId10, uint64_t ___subId21, const RuntimeMethod* method)
{
TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B *>(__this + _offset);
TrackableId__ctor_mB9B301A9CD03355A4E03A2B1A102B6B75F190792(_thisAdjusted, ___subId10, ___subId21, method);
}
// System.String UnityEngine.XR.ARSubsystems.TrackableId::ToString()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* TrackableId_ToString_mCD45FD4FF5DF6DE30A38AD05D02CFA7B2B696BB1 (TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralFBAF124AB08242B7785EC2B6DBC3C6459CB98BC8);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralFDA1C52D0E58360F4E8FD608757CCD98D8772D4F);
s_Il2CppMethodInitialized = true;
}
{
// return string.Format("{0}-{1}",
// m_SubId1.ToString("X16"),
// m_SubId2.ToString("X16"));
uint64_t* L_0 = __this->get_address_of_m_SubId1_2();
String_t* L_1;
L_1 = UInt64_ToString_mFE48F1D174A1F741AB0795C1164BF45BF37F86E6((uint64_t*)L_0, _stringLiteralFDA1C52D0E58360F4E8FD608757CCD98D8772D4F, /*hidden argument*/NULL);
uint64_t* L_2 = __this->get_address_of_m_SubId2_3();
String_t* L_3;
L_3 = UInt64_ToString_mFE48F1D174A1F741AB0795C1164BF45BF37F86E6((uint64_t*)L_2, _stringLiteralFDA1C52D0E58360F4E8FD608757CCD98D8772D4F, /*hidden argument*/NULL);
String_t* L_4;
L_4 = String_Format_m8D1CB0410C35E052A53AE957C914C841E54BAB66(_stringLiteralFBAF124AB08242B7785EC2B6DBC3C6459CB98BC8, L_1, L_3, /*hidden argument*/NULL);
return L_4;
}
}
IL2CPP_EXTERN_C String_t* TrackableId_ToString_mCD45FD4FF5DF6DE30A38AD05D02CFA7B2B696BB1_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B *>(__this + _offset);
String_t* _returnValue;
_returnValue = TrackableId_ToString_mCD45FD4FF5DF6DE30A38AD05D02CFA7B2B696BB1(_thisAdjusted, method);
return _returnValue;
}
// System.Int32 UnityEngine.XR.ARSubsystems.TrackableId::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t TrackableId_GetHashCode_mFD297FC6DB40FB5B28C6E9B7A2CF2785D75C4E86 (TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B * __this, const RuntimeMethod* method)
{
{
// public override int GetHashCode() => HashCode.Combine(m_SubId1.GetHashCode(), m_SubId2.GetHashCode());
uint64_t* L_0 = __this->get_address_of_m_SubId1_2();
int32_t L_1;
L_1 = UInt64_GetHashCode_mCDF662897A3F02CED11A9F9E66C5BF4E28C02B33((uint64_t*)L_0, /*hidden argument*/NULL);
uint64_t* L_2 = __this->get_address_of_m_SubId2_3();
int32_t L_3;
L_3 = UInt64_GetHashCode_mCDF662897A3F02CED11A9F9E66C5BF4E28C02B33((uint64_t*)L_2, /*hidden argument*/NULL);
int32_t L_4;
L_4 = HashCode_Combine_m23C951F115303C9E040D18947821969B602863FC(L_1, L_3, /*hidden argument*/NULL);
return L_4;
}
}
IL2CPP_EXTERN_C int32_t TrackableId_GetHashCode_mFD297FC6DB40FB5B28C6E9B7A2CF2785D75C4E86_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B *>(__this + _offset);
int32_t _returnValue;
_returnValue = TrackableId_GetHashCode_mFD297FC6DB40FB5B28C6E9B7A2CF2785D75C4E86(_thisAdjusted, method);
return _returnValue;
}
// System.Boolean UnityEngine.XR.ARSubsystems.TrackableId::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TrackableId_Equals_mA542615B3B7AAD52AEBBEFBCE7E6987B2DE3849D (TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
// public override bool Equals(object obj) => obj is TrackableId && Equals((TrackableId)obj);
RuntimeObject * L_0 = ___obj0;
if (!((RuntimeObject *)IsInstSealed((RuntimeObject*)L_0, TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B_il2cpp_TypeInfo_var)))
{
goto IL_0015;
}
}
{
RuntimeObject * L_1 = ___obj0;
bool L_2;
L_2 = TrackableId_Equals_m1DF35616359175E3D66DE18250E8CDA1E6462B06((TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B *)__this, ((*(TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B *)((TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B *)UnBox(L_1, TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B_il2cpp_TypeInfo_var)))), /*hidden argument*/NULL);
return L_2;
}
IL_0015:
{
return (bool)0;
}
}
IL2CPP_EXTERN_C bool TrackableId_Equals_mA542615B3B7AAD52AEBBEFBCE7E6987B2DE3849D_AdjustorThunk (RuntimeObject * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B *>(__this + _offset);
bool _returnValue;
_returnValue = TrackableId_Equals_mA542615B3B7AAD52AEBBEFBCE7E6987B2DE3849D(_thisAdjusted, ___obj0, method);
return _returnValue;
}
// System.Boolean UnityEngine.XR.ARSubsystems.TrackableId::Equals(UnityEngine.XR.ARSubsystems.TrackableId)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TrackableId_Equals_m1DF35616359175E3D66DE18250E8CDA1E6462B06 (TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B * __this, TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B ___other0, const RuntimeMethod* method)
{
{
// public bool Equals(TrackableId other) => (m_SubId1 == other.m_SubId1) && (m_SubId2 == other.m_SubId2);
uint64_t L_0 = __this->get_m_SubId1_2();
TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B L_1 = ___other0;
uint64_t L_2 = L_1.get_m_SubId1_2();
if ((!(((uint64_t)L_0) == ((uint64_t)L_2))))
{
goto IL_001d;
}
}
{
uint64_t L_3 = __this->get_m_SubId2_3();
TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B L_4 = ___other0;
uint64_t L_5 = L_4.get_m_SubId2_3();
return (bool)((((int64_t)L_3) == ((int64_t)L_5))? 1 : 0);
}
IL_001d:
{
return (bool)0;
}
}
IL2CPP_EXTERN_C bool TrackableId_Equals_m1DF35616359175E3D66DE18250E8CDA1E6462B06_AdjustorThunk (RuntimeObject * __this, TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B ___other0, const RuntimeMethod* method)
{
TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B *>(__this + _offset);
bool _returnValue;
_returnValue = TrackableId_Equals_m1DF35616359175E3D66DE18250E8CDA1E6462B06(_thisAdjusted, ___other0, method);
return _returnValue;
}
// System.Boolean UnityEngine.XR.ARSubsystems.TrackableId::op_Equality(UnityEngine.XR.ARSubsystems.TrackableId,UnityEngine.XR.ARSubsystems.TrackableId)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TrackableId_op_Equality_m0868EBB6BB9BA72B226D0717352604B3E8EA119B (TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B ___lhs0, TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B ___rhs1, const RuntimeMethod* method)
{
{
// (lhs.m_SubId1 == rhs.m_SubId1) &&
// (lhs.m_SubId2 == rhs.m_SubId2);
TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B L_0 = ___lhs0;
uint64_t L_1 = L_0.get_m_SubId1_2();
TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B L_2 = ___rhs1;
uint64_t L_3 = L_2.get_m_SubId1_2();
if ((!(((uint64_t)L_1) == ((uint64_t)L_3))))
{
goto IL_001d;
}
}
{
TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B L_4 = ___lhs0;
uint64_t L_5 = L_4.get_m_SubId2_3();
TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B L_6 = ___rhs1;
uint64_t L_7 = L_6.get_m_SubId2_3();
return (bool)((((int64_t)L_5) == ((int64_t)L_7))? 1 : 0);
}
IL_001d:
{
return (bool)0;
}
}
// System.Void UnityEngine.XR.ARSubsystems.TrackableId::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TrackableId__cctor_m1B22B00F74C0C62B97D7EAB4E9B17F55B2DE94E7 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Regex_t90F443D398F44965EA241A652ED75DF5BA072A1F_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralBEC9FDEA1EB953376E5F17E9CEC1AFAC97FDD26D);
s_Il2CppMethodInitialized = true;
}
{
// static readonly Regex s_TrackableIdRegex = new Regex(@"^(?<part1>[a-fA-F\d]{16})-(?<part2>[a-fA-F\d]{16})$",
// RegexOptions.Compiled|RegexOptions.CultureInvariant|RegexOptions.Singleline|RegexOptions.ExplicitCapture);
Regex_t90F443D398F44965EA241A652ED75DF5BA072A1F * L_0 = (Regex_t90F443D398F44965EA241A652ED75DF5BA072A1F *)il2cpp_codegen_object_new(Regex_t90F443D398F44965EA241A652ED75DF5BA072A1F_il2cpp_TypeInfo_var);
Regex__ctor_m5BA9C047FEB3C93AD388668FA855CB1A63FB62A4(L_0, _stringLiteralBEC9FDEA1EB953376E5F17E9CEC1AFAC97FDD26D, ((int32_t)540), /*hidden argument*/NULL);
((TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B_StaticFields*)il2cpp_codegen_static_fields_for(TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B_il2cpp_TypeInfo_var))->set_s_TrackableIdRegex_0(L_0);
// static TrackableId s_InvalidId = new TrackableId(0, 0);
TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B L_1;
memset((&L_1), 0, sizeof(L_1));
TrackableId__ctor_mB9B301A9CD03355A4E03A2B1A102B6B75F190792((&L_1), ((int64_t)((int64_t)0)), ((int64_t)((int64_t)0)), /*hidden argument*/NULL);
((TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B_StaticFields*)il2cpp_codegen_static_fields_for(TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B_il2cpp_TypeInfo_var))->set_s_InvalidId_1(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
// UnityEngine.XR.ARSubsystems.XRAnchor UnityEngine.XR.ARSubsystems.XRAnchor::get_defaultValue()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XRAnchor_t8E92DD70D9FA9B3ED2799305E05228184932099C XRAnchor_get_defaultValue_m4E0B24D0D2E64DE1B2BE81F781410CFB6031B6CF (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XRAnchor_t8E92DD70D9FA9B3ED2799305E05228184932099C_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
// public static XRAnchor defaultValue => s_Default;
IL2CPP_RUNTIME_CLASS_INIT(XRAnchor_t8E92DD70D9FA9B3ED2799305E05228184932099C_il2cpp_TypeInfo_var);
XRAnchor_t8E92DD70D9FA9B3ED2799305E05228184932099C L_0 = ((XRAnchor_t8E92DD70D9FA9B3ED2799305E05228184932099C_StaticFields*)il2cpp_codegen_static_fields_for(XRAnchor_t8E92DD70D9FA9B3ED2799305E05228184932099C_il2cpp_TypeInfo_var))->get_s_Default_0();
return L_0;
}
}
// UnityEngine.XR.ARSubsystems.TrackableId UnityEngine.XR.ARSubsystems.XRAnchor::get_trackableId()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B XRAnchor_get_trackableId_mE8C852BEAA9025FD1CB643F41836CA72C25E7B92 (XRAnchor_t8E92DD70D9FA9B3ED2799305E05228184932099C * __this, const RuntimeMethod* method)
{
{
// public TrackableId trackableId => m_Id;
TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B L_0 = __this->get_m_Id_1();
return L_0;
}
}
IL2CPP_EXTERN_C TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B XRAnchor_get_trackableId_mE8C852BEAA9025FD1CB643F41836CA72C25E7B92_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
XRAnchor_t8E92DD70D9FA9B3ED2799305E05228184932099C * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XRAnchor_t8E92DD70D9FA9B3ED2799305E05228184932099C *>(__this + _offset);
TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B _returnValue;
_returnValue = XRAnchor_get_trackableId_mE8C852BEAA9025FD1CB643F41836CA72C25E7B92_inline(_thisAdjusted, method);
return _returnValue;
}
// UnityEngine.Pose UnityEngine.XR.ARSubsystems.XRAnchor::get_pose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A XRAnchor_get_pose_mD135777376B2898B0A151AD5AA8FD4BBD7C7C5FF (XRAnchor_t8E92DD70D9FA9B3ED2799305E05228184932099C * __this, const RuntimeMethod* method)
{
{
// public Pose pose => m_Pose;
Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A L_0 = __this->get_m_Pose_2();
return L_0;
}
}
IL2CPP_EXTERN_C Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A XRAnchor_get_pose_mD135777376B2898B0A151AD5AA8FD4BBD7C7C5FF_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
XRAnchor_t8E92DD70D9FA9B3ED2799305E05228184932099C * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XRAnchor_t8E92DD70D9FA9B3ED2799305E05228184932099C *>(__this + _offset);
Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A _returnValue;
_returnValue = XRAnchor_get_pose_mD135777376B2898B0A151AD5AA8FD4BBD7C7C5FF_inline(_thisAdjusted, method);
return _returnValue;
}
// UnityEngine.XR.ARSubsystems.TrackingState UnityEngine.XR.ARSubsystems.XRAnchor::get_trackingState()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XRAnchor_get_trackingState_m2B3E621BA332B1E74CF8EC94FA8B18EDAF68F462 (XRAnchor_t8E92DD70D9FA9B3ED2799305E05228184932099C * __this, const RuntimeMethod* method)
{
{
// public TrackingState trackingState => m_TrackingState;
int32_t L_0 = __this->get_m_TrackingState_3();
return L_0;
}
}
IL2CPP_EXTERN_C int32_t XRAnchor_get_trackingState_m2B3E621BA332B1E74CF8EC94FA8B18EDAF68F462_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
XRAnchor_t8E92DD70D9FA9B3ED2799305E05228184932099C * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XRAnchor_t8E92DD70D9FA9B3ED2799305E05228184932099C *>(__this + _offset);
int32_t _returnValue;
_returnValue = XRAnchor_get_trackingState_m2B3E621BA332B1E74CF8EC94FA8B18EDAF68F462_inline(_thisAdjusted, method);
return _returnValue;
}
// System.IntPtr UnityEngine.XR.ARSubsystems.XRAnchor::get_nativePtr()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR intptr_t XRAnchor_get_nativePtr_m47E36685E001BF3810BF6A45B8DF8128080DAEFB (XRAnchor_t8E92DD70D9FA9B3ED2799305E05228184932099C * __this, const RuntimeMethod* method)
{
{
// public IntPtr nativePtr => m_NativePtr;
intptr_t L_0 = __this->get_m_NativePtr_4();
return (intptr_t)L_0;
}
}
IL2CPP_EXTERN_C intptr_t XRAnchor_get_nativePtr_m47E36685E001BF3810BF6A45B8DF8128080DAEFB_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
XRAnchor_t8E92DD70D9FA9B3ED2799305E05228184932099C * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XRAnchor_t8E92DD70D9FA9B3ED2799305E05228184932099C *>(__this + _offset);
intptr_t _returnValue;
_returnValue = XRAnchor_get_nativePtr_m47E36685E001BF3810BF6A45B8DF8128080DAEFB_inline(_thisAdjusted, method);
return _returnValue;
}
// System.Guid UnityEngine.XR.ARSubsystems.XRAnchor::get_sessionId()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Guid_t XRAnchor_get_sessionId_m61DAD2C82C4D725E773BFAB2E8A8BE50EDEEC379 (XRAnchor_t8E92DD70D9FA9B3ED2799305E05228184932099C * __this, const RuntimeMethod* method)
{
{
// public Guid sessionId => m_SessionId;
Guid_t L_0 = __this->get_m_SessionId_5();
return L_0;
}
}
IL2CPP_EXTERN_C Guid_t XRAnchor_get_sessionId_m61DAD2C82C4D725E773BFAB2E8A8BE50EDEEC379_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
XRAnchor_t8E92DD70D9FA9B3ED2799305E05228184932099C * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XRAnchor_t8E92DD70D9FA9B3ED2799305E05228184932099C *>(__this + _offset);
Guid_t _returnValue;
_returnValue = XRAnchor_get_sessionId_m61DAD2C82C4D725E773BFAB2E8A8BE50EDEEC379_inline(_thisAdjusted, method);
return _returnValue;
}
// System.Int32 UnityEngine.XR.ARSubsystems.XRAnchor::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XRAnchor_GetHashCode_m3928C95D8DE59840CB82D9FD13EDEEAEA2A89376 (XRAnchor_t8E92DD70D9FA9B3ED2799305E05228184932099C * __this, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
// var hashCode = m_Id.GetHashCode();
TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B * L_0 = __this->get_address_of_m_Id_1();
int32_t L_1;
L_1 = TrackableId_GetHashCode_mFD297FC6DB40FB5B28C6E9B7A2CF2785D75C4E86((TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B *)L_0, /*hidden argument*/NULL);
// hashCode = hashCode * 486187739 + m_Pose.GetHashCode();
Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A * L_2 = __this->get_address_of_m_Pose_2();
int32_t L_3;
L_3 = Pose_GetHashCode_mE1DD7FBCCB1C979B252F0B117276BA11CF4D2367((Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A *)L_2, /*hidden argument*/NULL);
// hashCode = hashCode * 486187739 + ((int)m_TrackingState).GetHashCode();
int32_t L_4 = __this->get_m_TrackingState_3();
V_0 = L_4;
int32_t L_5;
L_5 = Int32_GetHashCode_mEDD3F492A5F7CF021125AE3F38E2B8F8743FC667((int32_t*)(&V_0), /*hidden argument*/NULL);
// hashCode = hashCode * 486187739 + m_NativePtr.GetHashCode();
intptr_t* L_6 = __this->get_address_of_m_NativePtr_4();
int32_t L_7;
L_7 = IntPtr_GetHashCode_m55E65FB52EFE7C0EBC3C28E66A5D7542F3B1D35D((intptr_t*)L_6, /*hidden argument*/NULL);
// hashCode = hashCode * 486187739 + m_SessionId.GetHashCode();
Guid_t * L_8 = __this->get_address_of_m_SessionId_5();
int32_t L_9;
L_9 = Guid_GetHashCode_mD32F5054E937C98B3D082594B3849808F1E92AE7((Guid_t *)L_8, /*hidden argument*/NULL);
// return hashCode;
return ((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)L_1, (int32_t)((int32_t)486187739))), (int32_t)L_3)), (int32_t)((int32_t)486187739))), (int32_t)L_5)), (int32_t)((int32_t)486187739))), (int32_t)L_7)), (int32_t)((int32_t)486187739))), (int32_t)L_9));
}
}
IL2CPP_EXTERN_C int32_t XRAnchor_GetHashCode_m3928C95D8DE59840CB82D9FD13EDEEAEA2A89376_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
XRAnchor_t8E92DD70D9FA9B3ED2799305E05228184932099C * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XRAnchor_t8E92DD70D9FA9B3ED2799305E05228184932099C *>(__this + _offset);
int32_t _returnValue;
_returnValue = XRAnchor_GetHashCode_m3928C95D8DE59840CB82D9FD13EDEEAEA2A89376(_thisAdjusted, method);
return _returnValue;
}
// System.Boolean UnityEngine.XR.ARSubsystems.XRAnchor::Equals(UnityEngine.XR.ARSubsystems.XRAnchor)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XRAnchor_Equals_mE6AC873FF43B605D47F5AB76F0ADAD9A6EDEA25B (XRAnchor_t8E92DD70D9FA9B3ED2799305E05228184932099C * __this, XRAnchor_t8E92DD70D9FA9B3ED2799305E05228184932099C ___other0, const RuntimeMethod* method)
{
{
// return
// m_Id.Equals(other.m_Id) &&
// m_Pose.Equals(other.m_Pose) &&
// m_TrackingState == other.m_TrackingState &&
// m_NativePtr == other.m_NativePtr &&
// m_SessionId.Equals(other.m_SessionId);
TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B * L_0 = __this->get_address_of_m_Id_1();
XRAnchor_t8E92DD70D9FA9B3ED2799305E05228184932099C L_1 = ___other0;
TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B L_2 = L_1.get_m_Id_1();
bool L_3;
L_3 = TrackableId_Equals_m1DF35616359175E3D66DE18250E8CDA1E6462B06((TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B *)L_0, L_2, /*hidden argument*/NULL);
if (!L_3)
{
goto IL_0059;
}
}
{
Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A * L_4 = __this->get_address_of_m_Pose_2();
XRAnchor_t8E92DD70D9FA9B3ED2799305E05228184932099C L_5 = ___other0;
Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A L_6 = L_5.get_m_Pose_2();
bool L_7;
L_7 = Pose_Equals_mFAE0041090F2032B8FCE63A0F289DD206134BF15((Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A *)L_4, L_6, /*hidden argument*/NULL);
if (!L_7)
{
goto IL_0059;
}
}
{
int32_t L_8 = __this->get_m_TrackingState_3();
XRAnchor_t8E92DD70D9FA9B3ED2799305E05228184932099C L_9 = ___other0;
int32_t L_10 = L_9.get_m_TrackingState_3();
if ((!(((uint32_t)L_8) == ((uint32_t)L_10))))
{
goto IL_0059;
}
}
{
intptr_t L_11 = __this->get_m_NativePtr_4();
XRAnchor_t8E92DD70D9FA9B3ED2799305E05228184932099C L_12 = ___other0;
intptr_t L_13 = L_12.get_m_NativePtr_4();
bool L_14;
L_14 = IntPtr_op_Equality_mD94F3FE43A65684EFF984A7B95E70D2520C0AC73((intptr_t)L_11, (intptr_t)L_13, /*hidden argument*/NULL);
if (!L_14)
{
goto IL_0059;
}
}
{
Guid_t * L_15 = __this->get_address_of_m_SessionId_5();
XRAnchor_t8E92DD70D9FA9B3ED2799305E05228184932099C L_16 = ___other0;
Guid_t L_17 = L_16.get_m_SessionId_5();
bool L_18;
L_18 = Guid_Equals_m602304DBC4842AB53670762A6DB52D30C3973258((Guid_t *)L_15, L_17, /*hidden argument*/NULL);
return L_18;
}
IL_0059:
{
return (bool)0;
}
}
IL2CPP_EXTERN_C bool XRAnchor_Equals_mE6AC873FF43B605D47F5AB76F0ADAD9A6EDEA25B_AdjustorThunk (RuntimeObject * __this, XRAnchor_t8E92DD70D9FA9B3ED2799305E05228184932099C ___other0, const RuntimeMethod* method)
{
XRAnchor_t8E92DD70D9FA9B3ED2799305E05228184932099C * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XRAnchor_t8E92DD70D9FA9B3ED2799305E05228184932099C *>(__this + _offset);
bool _returnValue;
_returnValue = XRAnchor_Equals_mE6AC873FF43B605D47F5AB76F0ADAD9A6EDEA25B(_thisAdjusted, ___other0, method);
return _returnValue;
}
// System.Boolean UnityEngine.XR.ARSubsystems.XRAnchor::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XRAnchor_Equals_m8C35DEBDDAC21262E3344152D76539DF1AF7F060 (XRAnchor_t8E92DD70D9FA9B3ED2799305E05228184932099C * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XRAnchor_t8E92DD70D9FA9B3ED2799305E05228184932099C_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
// public override bool Equals(object obj) => obj is XRAnchor && Equals((XRAnchor)obj);
RuntimeObject * L_0 = ___obj0;
if (!((RuntimeObject *)IsInstSealed((RuntimeObject*)L_0, XRAnchor_t8E92DD70D9FA9B3ED2799305E05228184932099C_il2cpp_TypeInfo_var)))
{
goto IL_0015;
}
}
{
RuntimeObject * L_1 = ___obj0;
bool L_2;
L_2 = XRAnchor_Equals_mE6AC873FF43B605D47F5AB76F0ADAD9A6EDEA25B((XRAnchor_t8E92DD70D9FA9B3ED2799305E05228184932099C *)__this, ((*(XRAnchor_t8E92DD70D9FA9B3ED2799305E05228184932099C *)((XRAnchor_t8E92DD70D9FA9B3ED2799305E05228184932099C *)UnBox(L_1, XRAnchor_t8E92DD70D9FA9B3ED2799305E05228184932099C_il2cpp_TypeInfo_var)))), /*hidden argument*/NULL);
return L_2;
}
IL_0015:
{
return (bool)0;
}
}
IL2CPP_EXTERN_C bool XRAnchor_Equals_m8C35DEBDDAC21262E3344152D76539DF1AF7F060_AdjustorThunk (RuntimeObject * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
XRAnchor_t8E92DD70D9FA9B3ED2799305E05228184932099C * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XRAnchor_t8E92DD70D9FA9B3ED2799305E05228184932099C *>(__this + _offset);
bool _returnValue;
_returnValue = XRAnchor_Equals_m8C35DEBDDAC21262E3344152D76539DF1AF7F060(_thisAdjusted, ___obj0, method);
return _returnValue;
}
// System.Void UnityEngine.XR.ARSubsystems.XRAnchor::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRAnchor__cctor_m101ABC03541DECF122E998C1C183D97FD34315F7 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Guid_t_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XRAnchor_t8E92DD70D9FA9B3ED2799305E05228184932099C_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
XRAnchor_t8E92DD70D9FA9B3ED2799305E05228184932099C V_0;
memset((&V_0), 0, sizeof(V_0));
{
// static readonly XRAnchor s_Default = new XRAnchor
// {
// m_Id = TrackableId.invalidId,
// m_Pose = Pose.identity,
// m_SessionId = Guid.Empty
// };
il2cpp_codegen_initobj((&V_0), sizeof(XRAnchor_t8E92DD70D9FA9B3ED2799305E05228184932099C ));
IL2CPP_RUNTIME_CLASS_INIT(TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B_il2cpp_TypeInfo_var);
TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B L_0;
L_0 = TrackableId_get_invalidId_m06B698EFFA7748E185299C72B5CEC1AA5B221F85_inline(/*hidden argument*/NULL);
(&V_0)->set_m_Id_1(L_0);
IL2CPP_RUNTIME_CLASS_INIT(Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A_il2cpp_TypeInfo_var);
Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A L_1;
L_1 = Pose_get_identity_m334B16AC3024785914BCC5A2B949750A010878BF(/*hidden argument*/NULL);
(&V_0)->set_m_Pose_2(L_1);
IL2CPP_RUNTIME_CLASS_INIT(Guid_t_il2cpp_TypeInfo_var);
Guid_t L_2 = ((Guid_t_StaticFields*)il2cpp_codegen_static_fields_for(Guid_t_il2cpp_TypeInfo_var))->get_Empty_0();
(&V_0)->set_m_SessionId_5(L_2);
XRAnchor_t8E92DD70D9FA9B3ED2799305E05228184932099C L_3 = V_0;
((XRAnchor_t8E92DD70D9FA9B3ED2799305E05228184932099C_StaticFields*)il2cpp_codegen_static_fields_for(XRAnchor_t8E92DD70D9FA9B3ED2799305E05228184932099C_il2cpp_TypeInfo_var))->set_s_Default_0(L_3);
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
// System.Void UnityEngine.XR.ARSubsystems.XRAnchorSubsystem::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRAnchorSubsystem__ctor_mB5F70C2E39B5EA531C05244611590F400365265A (XRAnchorSubsystem_t625D9B76C590AB601CF85525DB9396BE84425AA7 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TrackingSubsystem_4__ctor_mBF63E483B756C84A0068727BDBEC29BBC5182F38_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
// public XRAnchorSubsystem()
TrackingSubsystem_4__ctor_mBF63E483B756C84A0068727BDBEC29BBC5182F38(__this, /*hidden argument*/TrackingSubsystem_4__ctor_mBF63E483B756C84A0068727BDBEC29BBC5182F38_RuntimeMethod_var);
// }
return;
}
}
// UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.XRAnchor> UnityEngine.XR.ARSubsystems.XRAnchorSubsystem::GetChanges(Unity.Collections.Allocator)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TrackableChanges_1_tF38314CFF715F232D6DA3415FD2F68CE504CFF9B XRAnchorSubsystem_GetChanges_mA9E2E9974DB9E35A550FEE38B33356141E3AE5F7 (XRAnchorSubsystem_t625D9B76C590AB601CF85525DB9396BE84425AA7 * __this, int32_t ___allocator0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SubsystemWithProvider_3_get_provider_mE54D3EECA8ABAA945923C60D72BF523B3D5189B1_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XRAnchor_t8E92DD70D9FA9B3ED2799305E05228184932099C_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
// if (!running)
bool L_0;
L_0 = SubsystemWithProvider_get_running_m42399652EC4AB466AFBAC9035FA77C1BD6C72406_inline(__this, /*hidden argument*/NULL);
if (L_0)
{
goto IL_0013;
}
}
{
// throw new InvalidOperationException("Can't call \"GetChanges\" without \"Start\"ing the anchor subsystem!");
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_1 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF9A65D560514A0DBAEA0BD813C4A25CD252C2D66)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XRAnchorSubsystem_GetChanges_mA9E2E9974DB9E35A550FEE38B33356141E3AE5F7_RuntimeMethod_var)));
}
IL_0013:
{
// var changes = provider.GetChanges(XRAnchor.defaultValue, allocator);
Provider_t9F286D20EB73EBBA4B6E7203C7A9051BE673C2E2 * L_2;
L_2 = SubsystemWithProvider_3_get_provider_mE54D3EECA8ABAA945923C60D72BF523B3D5189B1_inline(__this, /*hidden argument*/SubsystemWithProvider_3_get_provider_mE54D3EECA8ABAA945923C60D72BF523B3D5189B1_RuntimeMethod_var);
IL2CPP_RUNTIME_CLASS_INIT(XRAnchor_t8E92DD70D9FA9B3ED2799305E05228184932099C_il2cpp_TypeInfo_var);
XRAnchor_t8E92DD70D9FA9B3ED2799305E05228184932099C L_3;
L_3 = XRAnchor_get_defaultValue_m4E0B24D0D2E64DE1B2BE81F781410CFB6031B6CF_inline(/*hidden argument*/NULL);
int32_t L_4 = ___allocator0;
NullCheck(L_2);
TrackableChanges_1_tF38314CFF715F232D6DA3415FD2F68CE504CFF9B L_5;
L_5 = VirtualFuncInvoker2< TrackableChanges_1_tF38314CFF715F232D6DA3415FD2F68CE504CFF9B , XRAnchor_t8E92DD70D9FA9B3ED2799305E05228184932099C , int32_t >::Invoke(8 /* UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.XRAnchor> UnityEngine.XR.ARSubsystems.XRAnchorSubsystem/Provider::GetChanges(UnityEngine.XR.ARSubsystems.XRAnchor,Unity.Collections.Allocator) */, L_2, L_3, L_4);
// return changes;
return L_5;
}
}
// System.Boolean UnityEngine.XR.ARSubsystems.XRAnchorSubsystem::TryAddAnchor(UnityEngine.Pose,UnityEngine.XR.ARSubsystems.XRAnchor&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XRAnchorSubsystem_TryAddAnchor_m203DDF7401C08C01A9EBB555FBE2544119A2B3B3 (XRAnchorSubsystem_t625D9B76C590AB601CF85525DB9396BE84425AA7 * __this, Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A ___pose0, XRAnchor_t8E92DD70D9FA9B3ED2799305E05228184932099C * ___anchor1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SubsystemWithProvider_3_get_provider_mE54D3EECA8ABAA945923C60D72BF523B3D5189B1_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
// return provider.TryAddAnchor(pose, out anchor);
Provider_t9F286D20EB73EBBA4B6E7203C7A9051BE673C2E2 * L_0;
L_0 = SubsystemWithProvider_3_get_provider_mE54D3EECA8ABAA945923C60D72BF523B3D5189B1_inline(__this, /*hidden argument*/SubsystemWithProvider_3_get_provider_mE54D3EECA8ABAA945923C60D72BF523B3D5189B1_RuntimeMethod_var);
Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A L_1 = ___pose0;
XRAnchor_t8E92DD70D9FA9B3ED2799305E05228184932099C * L_2 = ___anchor1;
NullCheck(L_0);
bool L_3;
L_3 = VirtualFuncInvoker2< bool, Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A , XRAnchor_t8E92DD70D9FA9B3ED2799305E05228184932099C * >::Invoke(9 /* System.Boolean UnityEngine.XR.ARSubsystems.XRAnchorSubsystem/Provider::TryAddAnchor(UnityEngine.Pose,UnityEngine.XR.ARSubsystems.XRAnchor&) */, L_0, L_1, (XRAnchor_t8E92DD70D9FA9B3ED2799305E05228184932099C *)L_2);
return L_3;
}
}
// System.Boolean UnityEngine.XR.ARSubsystems.XRAnchorSubsystem::TryAttachAnchor(UnityEngine.XR.ARSubsystems.TrackableId,UnityEngine.Pose,UnityEngine.XR.ARSubsystems.XRAnchor&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XRAnchorSubsystem_TryAttachAnchor_mC8678FEACC6D879F0156CEDE6E1FF69E8A1AAF55 (XRAnchorSubsystem_t625D9B76C590AB601CF85525DB9396BE84425AA7 * __this, TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B ___trackableToAffix0, Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A ___pose1, XRAnchor_t8E92DD70D9FA9B3ED2799305E05228184932099C * ___anchor2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SubsystemWithProvider_3_get_provider_mE54D3EECA8ABAA945923C60D72BF523B3D5189B1_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
// return provider.TryAttachAnchor(trackableToAffix, pose, out anchor);
Provider_t9F286D20EB73EBBA4B6E7203C7A9051BE673C2E2 * L_0;
L_0 = SubsystemWithProvider_3_get_provider_mE54D3EECA8ABAA945923C60D72BF523B3D5189B1_inline(__this, /*hidden argument*/SubsystemWithProvider_3_get_provider_mE54D3EECA8ABAA945923C60D72BF523B3D5189B1_RuntimeMethod_var);
TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B L_1 = ___trackableToAffix0;
Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A L_2 = ___pose1;
XRAnchor_t8E92DD70D9FA9B3ED2799305E05228184932099C * L_3 = ___anchor2;
NullCheck(L_0);
bool L_4;
L_4 = VirtualFuncInvoker3< bool, TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B , Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A , XRAnchor_t8E92DD70D9FA9B3ED2799305E05228184932099C * >::Invoke(10 /* System.Boolean UnityEngine.XR.ARSubsystems.XRAnchorSubsystem/Provider::TryAttachAnchor(UnityEngine.XR.ARSubsystems.TrackableId,UnityEngine.Pose,UnityEngine.XR.ARSubsystems.XRAnchor&) */, L_0, L_1, L_2, (XRAnchor_t8E92DD70D9FA9B3ED2799305E05228184932099C *)L_3);
return L_4;
}
}
// System.Boolean UnityEngine.XR.ARSubsystems.XRAnchorSubsystem::TryRemoveAnchor(UnityEngine.XR.ARSubsystems.TrackableId)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XRAnchorSubsystem_TryRemoveAnchor_mA418EEBB09F89CDF93888A61F1681DE2DBA69799 (XRAnchorSubsystem_t625D9B76C590AB601CF85525DB9396BE84425AA7 * __this, TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B ___anchorId0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SubsystemWithProvider_3_get_provider_mE54D3EECA8ABAA945923C60D72BF523B3D5189B1_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
// return provider.TryRemoveAnchor(anchorId);
Provider_t9F286D20EB73EBBA4B6E7203C7A9051BE673C2E2 * L_0;
L_0 = SubsystemWithProvider_3_get_provider_mE54D3EECA8ABAA945923C60D72BF523B3D5189B1_inline(__this, /*hidden argument*/SubsystemWithProvider_3_get_provider_mE54D3EECA8ABAA945923C60D72BF523B3D5189B1_RuntimeMethod_var);
TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B L_1 = ___anchorId0;
NullCheck(L_0);
bool L_2;
L_2 = VirtualFuncInvoker1< bool, TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B >::Invoke(11 /* System.Boolean UnityEngine.XR.ARSubsystems.XRAnchorSubsystem/Provider::TryRemoveAnchor(UnityEngine.XR.ARSubsystems.TrackableId) */, L_0, L_1);
return L_2;
}
}
#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
// System.Void UnityEngine.XR.ARSubsystems.XRAnchorSubsystemDescriptor::set_supportsTrackableAttachments(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRAnchorSubsystemDescriptor_set_supportsTrackableAttachments_m11271C1EBC306EB3FDA99D24D45D88DB31DCCC38 (XRAnchorSubsystemDescriptor_t3BD7F9922EF5C04185D59349C76D625BC1E44E3B * __this, bool ___value0, const RuntimeMethod* method)
{
{
// public bool supportsTrackableAttachments { get; private set; }
bool L_0 = ___value0;
__this->set_U3CsupportsTrackableAttachmentsU3Ek__BackingField_3(L_0);
return;
}
}
// System.Void UnityEngine.XR.ARSubsystems.XRAnchorSubsystemDescriptor::Create(UnityEngine.XR.ARSubsystems.XRAnchorSubsystemDescriptor/Cinfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRAnchorSubsystemDescriptor_Create_m32C16A0DDC60ED2D374EFB884CF807E62B37C0A8 (Cinfo_tF42131D7F2B721976AAF20DD0240D9C46397F7F7 ___cinfo0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SubsystemDescriptorStore_tE5D99C3159868DE6506269CB6B830621F8BC31A6_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XRAnchorSubsystemDescriptor_t3BD7F9922EF5C04185D59349C76D625BC1E44E3B_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
// SubsystemDescriptorStore.RegisterDescriptor(new XRAnchorSubsystemDescriptor(cinfo));
Cinfo_tF42131D7F2B721976AAF20DD0240D9C46397F7F7 L_0 = ___cinfo0;
XRAnchorSubsystemDescriptor_t3BD7F9922EF5C04185D59349C76D625BC1E44E3B * L_1 = (XRAnchorSubsystemDescriptor_t3BD7F9922EF5C04185D59349C76D625BC1E44E3B *)il2cpp_codegen_object_new(XRAnchorSubsystemDescriptor_t3BD7F9922EF5C04185D59349C76D625BC1E44E3B_il2cpp_TypeInfo_var);
XRAnchorSubsystemDescriptor__ctor_m5393EA2BCAFE2CB48EDD6DDCCD50C40FC7035331(L_1, L_0, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(SubsystemDescriptorStore_tE5D99C3159868DE6506269CB6B830621F8BC31A6_il2cpp_TypeInfo_var);
SubsystemDescriptorStore_RegisterDescriptor_m5586866BB233EF26B98640851816DD1764657688(L_1, /*hidden argument*/NULL);
// }
return;
}
}
// System.Void UnityEngine.XR.ARSubsystems.XRAnchorSubsystemDescriptor::.ctor(UnityEngine.XR.ARSubsystems.XRAnchorSubsystemDescriptor/Cinfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRAnchorSubsystemDescriptor__ctor_m5393EA2BCAFE2CB48EDD6DDCCD50C40FC7035331 (XRAnchorSubsystemDescriptor_t3BD7F9922EF5C04185D59349C76D625BC1E44E3B * __this, Cinfo_tF42131D7F2B721976AAF20DD0240D9C46397F7F7 ___cinfo0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SubsystemDescriptorWithProvider_2__ctor_m1CF8865269978062A7763335B78C6D873D10F09E_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
// XRAnchorSubsystemDescriptor(Cinfo cinfo)
SubsystemDescriptorWithProvider_2__ctor_m1CF8865269978062A7763335B78C6D873D10F09E(__this, /*hidden argument*/SubsystemDescriptorWithProvider_2__ctor_m1CF8865269978062A7763335B78C6D873D10F09E_RuntimeMethod_var);
// id = cinfo.id;
String_t* L_0;
L_0 = Cinfo_get_id_m7C38252CE360F061914361192300AECA8CB5307B_inline((Cinfo_tF42131D7F2B721976AAF20DD0240D9C46397F7F7 *)(&___cinfo0), /*hidden argument*/NULL);
SubsystemDescriptorWithProvider_set_id_mEC6863CDB21597618394D2ED4182A9ED3ACBF220_inline(__this, L_0, /*hidden argument*/NULL);
// providerType = cinfo.providerType;
Type_t * L_1;
L_1 = Cinfo_get_providerType_m6A1DFCD062C95265E8E1C6502D44D6C464B50EED_inline((Cinfo_tF42131D7F2B721976AAF20DD0240D9C46397F7F7 *)(&___cinfo0), /*hidden argument*/NULL);
SubsystemDescriptorWithProvider_set_providerType_m672B1F3CC7A12E8569D801F7C79538753C0D9C2D_inline(__this, L_1, /*hidden argument*/NULL);
// subsystemTypeOverride = cinfo.subsystemTypeOverride;
Type_t * L_2;
L_2 = Cinfo_get_subsystemTypeOverride_m169F49BB024275E13DF95C274191A675CC0F66B9_inline((Cinfo_tF42131D7F2B721976AAF20DD0240D9C46397F7F7 *)(&___cinfo0), /*hidden argument*/NULL);
SubsystemDescriptorWithProvider_set_subsystemTypeOverride_mA453100A7A8FAB35FBE7154E63B5A17D518F41B6_inline(__this, L_2, /*hidden argument*/NULL);
// supportsTrackableAttachments = cinfo.supportsTrackableAttachments;
bool L_3;
L_3 = Cinfo_get_supportsTrackableAttachments_m13B6C9977641F3E284C69AA3554EBD19478538B8_inline((Cinfo_tF42131D7F2B721976AAF20DD0240D9C46397F7F7 *)(&___cinfo0), /*hidden argument*/NULL);
XRAnchorSubsystemDescriptor_set_supportsTrackableAttachments_m11271C1EBC306EB3FDA99D24D45D88DB31DCCC38_inline(__this, L_3, /*hidden argument*/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
// System.Int32 UnityEngine.XR.ARSubsystems.XRCameraConfiguration::get_width()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XRCameraConfiguration_get_width_m019869C624524B8C4EA0021D9331F2AD856A25C3 (XRCameraConfiguration_t2393055E5547307393E9C73AB13B95E0785A4F7A * __this, const RuntimeMethod* method)
{
{
// public int width => m_Resolution.x;
Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9 * L_0 = __this->get_address_of_m_Resolution_0();
int32_t L_1;
L_1 = Vector2Int_get_x_mDBEFBCDF9C7924767344ED2CEE1307885AED947B_inline((Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9 *)L_0, /*hidden argument*/NULL);
return L_1;
}
}
IL2CPP_EXTERN_C int32_t XRCameraConfiguration_get_width_m019869C624524B8C4EA0021D9331F2AD856A25C3_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
XRCameraConfiguration_t2393055E5547307393E9C73AB13B95E0785A4F7A * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XRCameraConfiguration_t2393055E5547307393E9C73AB13B95E0785A4F7A *>(__this + _offset);
int32_t _returnValue;
_returnValue = XRCameraConfiguration_get_width_m019869C624524B8C4EA0021D9331F2AD856A25C3(_thisAdjusted, method);
return _returnValue;
}
// System.Int32 UnityEngine.XR.ARSubsystems.XRCameraConfiguration::get_height()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XRCameraConfiguration_get_height_mAAC1B9AE539EF89D59585A6BFC8F925F94AA14D3 (XRCameraConfiguration_t2393055E5547307393E9C73AB13B95E0785A4F7A * __this, const RuntimeMethod* method)
{
{
// public int height => m_Resolution.y;
Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9 * L_0 = __this->get_address_of_m_Resolution_0();
int32_t L_1;
L_1 = Vector2Int_get_y_m282591DEB0E70B02F4F4DDFAB90116AEC8E6B86C_inline((Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9 *)L_0, /*hidden argument*/NULL);
return L_1;
}
}
IL2CPP_EXTERN_C int32_t XRCameraConfiguration_get_height_mAAC1B9AE539EF89D59585A6BFC8F925F94AA14D3_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
XRCameraConfiguration_t2393055E5547307393E9C73AB13B95E0785A4F7A * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XRCameraConfiguration_t2393055E5547307393E9C73AB13B95E0785A4F7A *>(__this + _offset);
int32_t _returnValue;
_returnValue = XRCameraConfiguration_get_height_mAAC1B9AE539EF89D59585A6BFC8F925F94AA14D3(_thisAdjusted, method);
return _returnValue;
}
// System.Nullable`1<System.Int32> UnityEngine.XR.ARSubsystems.XRCameraConfiguration::get_framerate()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 XRCameraConfiguration_get_framerate_m3DCC7B7F2FEAFDFB5ED0A580153FBAAA22B60B96 (XRCameraConfiguration_t2393055E5547307393E9C73AB13B95E0785A4F7A * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1__ctor_mD5C83DE6764BE7391F906F32B36CCDF7598553AD_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 V_0;
memset((&V_0), 0, sizeof(V_0));
{
// public int? framerate => (m_Framerate > 0) ? new int?(m_Framerate) : new int?();
int32_t L_0 = __this->get_m_Framerate_1();
if ((((int32_t)L_0) > ((int32_t)0)))
{
goto IL_0013;
}
}
{
il2cpp_codegen_initobj((&V_0), sizeof(Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 ));
Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 L_1 = V_0;
return L_1;
}
IL_0013:
{
int32_t L_2 = __this->get_m_Framerate_1();
Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 L_3;
memset((&L_3), 0, sizeof(L_3));
Nullable_1__ctor_mD5C83DE6764BE7391F906F32B36CCDF7598553AD((&L_3), L_2, /*hidden argument*/Nullable_1__ctor_mD5C83DE6764BE7391F906F32B36CCDF7598553AD_RuntimeMethod_var);
return L_3;
}
}
IL2CPP_EXTERN_C Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 XRCameraConfiguration_get_framerate_m3DCC7B7F2FEAFDFB5ED0A580153FBAAA22B60B96_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
XRCameraConfiguration_t2393055E5547307393E9C73AB13B95E0785A4F7A * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XRCameraConfiguration_t2393055E5547307393E9C73AB13B95E0785A4F7A *>(__this + _offset);
Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 _returnValue;
_returnValue = XRCameraConfiguration_get_framerate_m3DCC7B7F2FEAFDFB5ED0A580153FBAAA22B60B96(_thisAdjusted, method);
return _returnValue;
}
// System.String UnityEngine.XR.ARSubsystems.XRCameraConfiguration::ToString()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XRCameraConfiguration_ToString_m570541033A53E9657C809B420CEFDF63D944070B (XRCameraConfiguration_t2393055E5547307393E9C73AB13B95E0785A4F7A * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IntPtr_t_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1_get_HasValue_m7455E879CFAAE682AE3786D4D2B1F65C8AA23921_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1_get_Value_m81778F362BEC72D4456079CDF5FB0D3487A1BCCC_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral2C29AB53B67E1EC0660A20971C837847B4B69BD2);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralEC87B5B72C43840675815A18206B4D3123DFC00E);
s_Il2CppMethodInitialized = true;
}
Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 V_0;
memset((&V_0), 0, sizeof(V_0));
int32_t G_B2_0 = 0;
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* G_B2_1 = NULL;
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* G_B2_2 = NULL;
String_t* G_B2_3 = NULL;
int32_t G_B1_0 = 0;
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* G_B1_1 = NULL;
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* G_B1_2 = NULL;
String_t* G_B1_3 = NULL;
String_t* G_B3_0 = NULL;
int32_t G_B3_1 = 0;
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* G_B3_2 = NULL;
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* G_B3_3 = NULL;
String_t* G_B3_4 = NULL;
{
// public override string ToString() => $"handle <{m_NativeConfigurationHandle}> {width}x{height}{(framerate.HasValue ? $" at {framerate.Value} Hz" : "")}";
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_0 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)SZArrayNew(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE_il2cpp_TypeInfo_var, (uint32_t)4);
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_1 = L_0;
intptr_t L_2 = __this->get_m_NativeConfigurationHandle_2();
intptr_t L_3 = L_2;
RuntimeObject * L_4 = Box(IntPtr_t_il2cpp_TypeInfo_var, &L_3);
NullCheck(L_1);
ArrayElementTypeCheck (L_1, L_4);
(L_1)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_4);
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_5 = L_1;
int32_t L_6;
L_6 = XRCameraConfiguration_get_width_m019869C624524B8C4EA0021D9331F2AD856A25C3((XRCameraConfiguration_t2393055E5547307393E9C73AB13B95E0785A4F7A *)__this, /*hidden argument*/NULL);
int32_t L_7 = L_6;
RuntimeObject * L_8 = Box(Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var, &L_7);
NullCheck(L_5);
ArrayElementTypeCheck (L_5, L_8);
(L_5)->SetAt(static_cast<il2cpp_array_size_t>(1), (RuntimeObject *)L_8);
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_9 = L_5;
int32_t L_10;
L_10 = XRCameraConfiguration_get_height_mAAC1B9AE539EF89D59585A6BFC8F925F94AA14D3((XRCameraConfiguration_t2393055E5547307393E9C73AB13B95E0785A4F7A *)__this, /*hidden argument*/NULL);
int32_t L_11 = L_10;
RuntimeObject * L_12 = Box(Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var, &L_11);
NullCheck(L_9);
ArrayElementTypeCheck (L_9, L_12);
(L_9)->SetAt(static_cast<il2cpp_array_size_t>(2), (RuntimeObject *)L_12);
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_13 = L_9;
Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 L_14;
L_14 = XRCameraConfiguration_get_framerate_m3DCC7B7F2FEAFDFB5ED0A580153FBAAA22B60B96((XRCameraConfiguration_t2393055E5547307393E9C73AB13B95E0785A4F7A *)__this, /*hidden argument*/NULL);
V_0 = L_14;
bool L_15;
L_15 = Nullable_1_get_HasValue_m7455E879CFAAE682AE3786D4D2B1F65C8AA23921_inline((Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 *)(&V_0), /*hidden argument*/Nullable_1_get_HasValue_m7455E879CFAAE682AE3786D4D2B1F65C8AA23921_RuntimeMethod_var);
G_B1_0 = 3;
G_B1_1 = L_13;
G_B1_2 = L_13;
G_B1_3 = _stringLiteralEC87B5B72C43840675815A18206B4D3123DFC00E;
if (L_15)
{
G_B2_0 = 3;
G_B2_1 = L_13;
G_B2_2 = L_13;
G_B2_3 = _stringLiteralEC87B5B72C43840675815A18206B4D3123DFC00E;
goto IL_004e;
}
}
{
G_B3_0 = _stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709;
G_B3_1 = G_B1_0;
G_B3_2 = G_B1_1;
G_B3_3 = G_B1_2;
G_B3_4 = G_B1_3;
goto IL_006b;
}
IL_004e:
{
Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 L_16;
L_16 = XRCameraConfiguration_get_framerate_m3DCC7B7F2FEAFDFB5ED0A580153FBAAA22B60B96((XRCameraConfiguration_t2393055E5547307393E9C73AB13B95E0785A4F7A *)__this, /*hidden argument*/NULL);
V_0 = L_16;
int32_t L_17;
L_17 = Nullable_1_get_Value_m81778F362BEC72D4456079CDF5FB0D3487A1BCCC((Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 *)(&V_0), /*hidden argument*/Nullable_1_get_Value_m81778F362BEC72D4456079CDF5FB0D3487A1BCCC_RuntimeMethod_var);
int32_t L_18 = L_17;
RuntimeObject * L_19 = Box(Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var, &L_18);
String_t* L_20;
L_20 = String_Format_mB3D38E5238C3164DB4D7D29339D9E225A4496D17(_stringLiteral2C29AB53B67E1EC0660A20971C837847B4B69BD2, L_19, /*hidden argument*/NULL);
G_B3_0 = L_20;
G_B3_1 = G_B2_0;
G_B3_2 = G_B2_1;
G_B3_3 = G_B2_2;
G_B3_4 = G_B2_3;
}
IL_006b:
{
NullCheck(G_B3_2);
ArrayElementTypeCheck (G_B3_2, G_B3_0);
(G_B3_2)->SetAt(static_cast<il2cpp_array_size_t>(G_B3_1), (RuntimeObject *)G_B3_0);
String_t* L_21;
L_21 = String_Format_mCED6767EA5FEE6F15ABCD5B4F9150D1284C2795B(G_B3_4, G_B3_3, /*hidden argument*/NULL);
return L_21;
}
}
IL2CPP_EXTERN_C String_t* XRCameraConfiguration_ToString_m570541033A53E9657C809B420CEFDF63D944070B_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
XRCameraConfiguration_t2393055E5547307393E9C73AB13B95E0785A4F7A * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XRCameraConfiguration_t2393055E5547307393E9C73AB13B95E0785A4F7A *>(__this + _offset);
String_t* _returnValue;
_returnValue = XRCameraConfiguration_ToString_m570541033A53E9657C809B420CEFDF63D944070B(_thisAdjusted, method);
return _returnValue;
}
// System.Int32 UnityEngine.XR.ARSubsystems.XRCameraConfiguration::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XRCameraConfiguration_GetHashCode_mBAD6720F670B108F1D17BAEBAF619989A011D63A (XRCameraConfiguration_t2393055E5547307393E9C73AB13B95E0785A4F7A * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1_GetHashCode_mE204DC50FD677C7E0F2B981BA2E8AE333EB8B108_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 V_0;
memset((&V_0), 0, sizeof(V_0));
{
// var hash = m_NativeConfigurationHandle.GetHashCode();
intptr_t* L_0 = __this->get_address_of_m_NativeConfigurationHandle_2();
int32_t L_1;
L_1 = IntPtr_GetHashCode_m55E65FB52EFE7C0EBC3C28E66A5D7542F3B1D35D((intptr_t*)L_0, /*hidden argument*/NULL);
// hash = hash * 486187739 + m_Resolution.GetHashCode();
Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9 * L_2 = __this->get_address_of_m_Resolution_0();
int32_t L_3;
L_3 = Vector2Int_GetHashCode_mB963D0B9A29E161BC4B73F97AEAF2F843FC8EF71((Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9 *)L_2, /*hidden argument*/NULL);
// hash = hash * 486187739 + framerate.GetHashCode();
Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 L_4;
L_4 = XRCameraConfiguration_get_framerate_m3DCC7B7F2FEAFDFB5ED0A580153FBAAA22B60B96((XRCameraConfiguration_t2393055E5547307393E9C73AB13B95E0785A4F7A *)__this, /*hidden argument*/NULL);
V_0 = L_4;
int32_t L_5;
L_5 = Nullable_1_GetHashCode_mE204DC50FD677C7E0F2B981BA2E8AE333EB8B108((Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 *)(&V_0), /*hidden argument*/Nullable_1_GetHashCode_mE204DC50FD677C7E0F2B981BA2E8AE333EB8B108_RuntimeMethod_var);
// return hash;
return ((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)L_1, (int32_t)((int32_t)486187739))), (int32_t)L_3)), (int32_t)((int32_t)486187739))), (int32_t)L_5));
}
}
IL2CPP_EXTERN_C int32_t XRCameraConfiguration_GetHashCode_mBAD6720F670B108F1D17BAEBAF619989A011D63A_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
XRCameraConfiguration_t2393055E5547307393E9C73AB13B95E0785A4F7A * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XRCameraConfiguration_t2393055E5547307393E9C73AB13B95E0785A4F7A *>(__this + _offset);
int32_t _returnValue;
_returnValue = XRCameraConfiguration_GetHashCode_mBAD6720F670B108F1D17BAEBAF619989A011D63A(_thisAdjusted, method);
return _returnValue;
}
// System.Boolean UnityEngine.XR.ARSubsystems.XRCameraConfiguration::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XRCameraConfiguration_Equals_mDC2D17183F91C897762D8F8B24D2CA2F96E1A48C (XRCameraConfiguration_t2393055E5547307393E9C73AB13B95E0785A4F7A * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XRCameraConfiguration_t2393055E5547307393E9C73AB13B95E0785A4F7A_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
// public override bool Equals(System.Object obj) => ((obj is XRCameraConfiguration) && Equals((XRCameraConfiguration)obj));
RuntimeObject * L_0 = ___obj0;
if (!((RuntimeObject *)IsInstSealed((RuntimeObject*)L_0, XRCameraConfiguration_t2393055E5547307393E9C73AB13B95E0785A4F7A_il2cpp_TypeInfo_var)))
{
goto IL_0015;
}
}
{
RuntimeObject * L_1 = ___obj0;
bool L_2;
L_2 = XRCameraConfiguration_Equals_m8CD36FE1F7DA4B3B3520877DC415D066B77FEFEB((XRCameraConfiguration_t2393055E5547307393E9C73AB13B95E0785A4F7A *)__this, ((*(XRCameraConfiguration_t2393055E5547307393E9C73AB13B95E0785A4F7A *)((XRCameraConfiguration_t2393055E5547307393E9C73AB13B95E0785A4F7A *)UnBox(L_1, XRCameraConfiguration_t2393055E5547307393E9C73AB13B95E0785A4F7A_il2cpp_TypeInfo_var)))), /*hidden argument*/NULL);
return L_2;
}
IL_0015:
{
return (bool)0;
}
}
IL2CPP_EXTERN_C bool XRCameraConfiguration_Equals_mDC2D17183F91C897762D8F8B24D2CA2F96E1A48C_AdjustorThunk (RuntimeObject * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
XRCameraConfiguration_t2393055E5547307393E9C73AB13B95E0785A4F7A * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XRCameraConfiguration_t2393055E5547307393E9C73AB13B95E0785A4F7A *>(__this + _offset);
bool _returnValue;
_returnValue = XRCameraConfiguration_Equals_mDC2D17183F91C897762D8F8B24D2CA2F96E1A48C(_thisAdjusted, ___obj0, method);
return _returnValue;
}
// System.Boolean UnityEngine.XR.ARSubsystems.XRCameraConfiguration::Equals(UnityEngine.XR.ARSubsystems.XRCameraConfiguration)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XRCameraConfiguration_Equals_m8CD36FE1F7DA4B3B3520877DC415D066B77FEFEB (XRCameraConfiguration_t2393055E5547307393E9C73AB13B95E0785A4F7A * __this, XRCameraConfiguration_t2393055E5547307393E9C73AB13B95E0785A4F7A ___other0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1_GetValueOrDefault_m66800983B800C26B67A6999A687EA3767C739406_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1_get_HasValue_m7455E879CFAAE682AE3786D4D2B1F65C8AA23921_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 V_0;
memset((&V_0), 0, sizeof(V_0));
Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 V_1;
memset((&V_1), 0, sizeof(V_1));
{
// public bool Equals(XRCameraConfiguration other) => (m_Resolution == other.m_Resolution) && (framerate == other.framerate) && (m_NativeConfigurationHandle == other.m_NativeConfigurationHandle);
Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9 L_0 = __this->get_m_Resolution_0();
XRCameraConfiguration_t2393055E5547307393E9C73AB13B95E0785A4F7A L_1 = ___other0;
Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9 L_2 = L_1.get_m_Resolution_0();
bool L_3;
L_3 = Vector2Int_op_Equality_m00B7F2874DE276B3F10044CED9F633AFE80D366D_inline(L_0, L_2, /*hidden argument*/NULL);
if (!L_3)
{
goto IL_0057;
}
}
{
Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 L_4;
L_4 = XRCameraConfiguration_get_framerate_m3DCC7B7F2FEAFDFB5ED0A580153FBAAA22B60B96((XRCameraConfiguration_t2393055E5547307393E9C73AB13B95E0785A4F7A *)__this, /*hidden argument*/NULL);
V_0 = L_4;
Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 L_5;
L_5 = XRCameraConfiguration_get_framerate_m3DCC7B7F2FEAFDFB5ED0A580153FBAAA22B60B96((XRCameraConfiguration_t2393055E5547307393E9C73AB13B95E0785A4F7A *)(&___other0), /*hidden argument*/NULL);
V_1 = L_5;
int32_t L_6;
L_6 = Nullable_1_GetValueOrDefault_m66800983B800C26B67A6999A687EA3767C739406_inline((Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 *)(&V_0), /*hidden argument*/Nullable_1_GetValueOrDefault_m66800983B800C26B67A6999A687EA3767C739406_RuntimeMethod_var);
int32_t L_7;
L_7 = Nullable_1_GetValueOrDefault_m66800983B800C26B67A6999A687EA3767C739406_inline((Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 *)(&V_1), /*hidden argument*/Nullable_1_GetValueOrDefault_m66800983B800C26B67A6999A687EA3767C739406_RuntimeMethod_var);
bool L_8;
L_8 = Nullable_1_get_HasValue_m7455E879CFAAE682AE3786D4D2B1F65C8AA23921_inline((Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 *)(&V_0), /*hidden argument*/Nullable_1_get_HasValue_m7455E879CFAAE682AE3786D4D2B1F65C8AA23921_RuntimeMethod_var);
bool L_9;
L_9 = Nullable_1_get_HasValue_m7455E879CFAAE682AE3786D4D2B1F65C8AA23921_inline((Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 *)(&V_1), /*hidden argument*/Nullable_1_get_HasValue_m7455E879CFAAE682AE3786D4D2B1F65C8AA23921_RuntimeMethod_var);
if (!((int32_t)((int32_t)((((int32_t)L_6) == ((int32_t)L_7))? 1 : 0)&(int32_t)((((int32_t)L_8) == ((int32_t)L_9))? 1 : 0))))
{
goto IL_0057;
}
}
{
intptr_t L_10 = __this->get_m_NativeConfigurationHandle_2();
XRCameraConfiguration_t2393055E5547307393E9C73AB13B95E0785A4F7A L_11 = ___other0;
intptr_t L_12 = L_11.get_m_NativeConfigurationHandle_2();
bool L_13;
L_13 = IntPtr_op_Equality_mD94F3FE43A65684EFF984A7B95E70D2520C0AC73((intptr_t)L_10, (intptr_t)L_12, /*hidden argument*/NULL);
return L_13;
}
IL_0057:
{
return (bool)0;
}
}
IL2CPP_EXTERN_C bool XRCameraConfiguration_Equals_m8CD36FE1F7DA4B3B3520877DC415D066B77FEFEB_AdjustorThunk (RuntimeObject * __this, XRCameraConfiguration_t2393055E5547307393E9C73AB13B95E0785A4F7A ___other0, const RuntimeMethod* method)
{
XRCameraConfiguration_t2393055E5547307393E9C73AB13B95E0785A4F7A * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XRCameraConfiguration_t2393055E5547307393E9C73AB13B95E0785A4F7A *>(__this + _offset);
bool _returnValue;
_returnValue = XRCameraConfiguration_Equals_m8CD36FE1F7DA4B3B3520877DC415D066B77FEFEB(_thisAdjusted, ___other0, 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
// System.Int64 UnityEngine.XR.ARSubsystems.XRCameraFrame::get_timestampNs()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t XRCameraFrame_get_timestampNs_m8F3730A23C9FF6A729F8D1939581D88716438DF7 (XRCameraFrame_t5FD7B7FC22B478AC6B00AD01A0AD6F2295EA1BA8 * __this, const RuntimeMethod* method)
{
{
// public long timestampNs => m_TimestampNs;
int64_t L_0 = __this->get_m_TimestampNs_0();
return L_0;
}
}
IL2CPP_EXTERN_C int64_t XRCameraFrame_get_timestampNs_m8F3730A23C9FF6A729F8D1939581D88716438DF7_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
XRCameraFrame_t5FD7B7FC22B478AC6B00AD01A0AD6F2295EA1BA8 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XRCameraFrame_t5FD7B7FC22B478AC6B00AD01A0AD6F2295EA1BA8 *>(__this + _offset);
int64_t _returnValue;
_returnValue = XRCameraFrame_get_timestampNs_m8F3730A23C9FF6A729F8D1939581D88716438DF7_inline(_thisAdjusted, method);
return _returnValue;
}
// System.Single UnityEngine.XR.ARSubsystems.XRCameraFrame::get_averageBrightness()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float XRCameraFrame_get_averageBrightness_m34CB9F000CCBD2004F7E3CDBA987170A4B049F8E (XRCameraFrame_t5FD7B7FC22B478AC6B00AD01A0AD6F2295EA1BA8 * __this, const RuntimeMethod* method)
{
{
// public float averageBrightness => m_AverageBrightness;
float L_0 = __this->get_m_AverageBrightness_1();
return L_0;
}
}
IL2CPP_EXTERN_C float XRCameraFrame_get_averageBrightness_m34CB9F000CCBD2004F7E3CDBA987170A4B049F8E_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
XRCameraFrame_t5FD7B7FC22B478AC6B00AD01A0AD6F2295EA1BA8 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XRCameraFrame_t5FD7B7FC22B478AC6B00AD01A0AD6F2295EA1BA8 *>(__this + _offset);
float _returnValue;
_returnValue = XRCameraFrame_get_averageBrightness_m34CB9F000CCBD2004F7E3CDBA987170A4B049F8E_inline(_thisAdjusted, method);
return _returnValue;
}
// System.Single UnityEngine.XR.ARSubsystems.XRCameraFrame::get_averageColorTemperature()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float XRCameraFrame_get_averageColorTemperature_mD5EA9E87E76F7BCBFF709ABF309B142FB9D03DFC (XRCameraFrame_t5FD7B7FC22B478AC6B00AD01A0AD6F2295EA1BA8 * __this, const RuntimeMethod* method)
{
{
// public float averageColorTemperature => m_AverageColorTemperature;
float L_0 = __this->get_m_AverageColorTemperature_2();
return L_0;
}
}
IL2CPP_EXTERN_C float XRCameraFrame_get_averageColorTemperature_mD5EA9E87E76F7BCBFF709ABF309B142FB9D03DFC_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
XRCameraFrame_t5FD7B7FC22B478AC6B00AD01A0AD6F2295EA1BA8 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XRCameraFrame_t5FD7B7FC22B478AC6B00AD01A0AD6F2295EA1BA8 *>(__this + _offset);
float _returnValue;
_returnValue = XRCameraFrame_get_averageColorTemperature_mD5EA9E87E76F7BCBFF709ABF309B142FB9D03DFC_inline(_thisAdjusted, method);
return _returnValue;
}
// UnityEngine.Color UnityEngine.XR.ARSubsystems.XRCameraFrame::get_colorCorrection()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 XRCameraFrame_get_colorCorrection_mFB47669447DE0255EE2491929D9DF85CF7DF1B1A (XRCameraFrame_t5FD7B7FC22B478AC6B00AD01A0AD6F2295EA1BA8 * __this, const RuntimeMethod* method)
{
{
// public Color colorCorrection => m_ColorCorrection;
Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 L_0 = __this->get_m_ColorCorrection_3();
return L_0;
}
}
IL2CPP_EXTERN_C Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 XRCameraFrame_get_colorCorrection_mFB47669447DE0255EE2491929D9DF85CF7DF1B1A_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
XRCameraFrame_t5FD7B7FC22B478AC6B00AD01A0AD6F2295EA1BA8 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XRCameraFrame_t5FD7B7FC22B478AC6B00AD01A0AD6F2295EA1BA8 *>(__this + _offset);
Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 _returnValue;
_returnValue = XRCameraFrame_get_colorCorrection_mFB47669447DE0255EE2491929D9DF85CF7DF1B1A_inline(_thisAdjusted, method);
return _returnValue;
}
// UnityEngine.Matrix4x4 UnityEngine.XR.ARSubsystems.XRCameraFrame::get_projectionMatrix()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Matrix4x4_tDE7FF4F2E2EA284F6EFE00D627789D0E5B8B4461 XRCameraFrame_get_projectionMatrix_mC489D4A0698634FDA99D0BBE0A93E42F5C82E985 (XRCameraFrame_t5FD7B7FC22B478AC6B00AD01A0AD6F2295EA1BA8 * __this, const RuntimeMethod* method)
{
{
// public Matrix4x4 projectionMatrix => m_ProjectionMatrix;
Matrix4x4_tDE7FF4F2E2EA284F6EFE00D627789D0E5B8B4461 L_0 = __this->get_m_ProjectionMatrix_4();
return L_0;
}
}
IL2CPP_EXTERN_C Matrix4x4_tDE7FF4F2E2EA284F6EFE00D627789D0E5B8B4461 XRCameraFrame_get_projectionMatrix_mC489D4A0698634FDA99D0BBE0A93E42F5C82E985_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
XRCameraFrame_t5FD7B7FC22B478AC6B00AD01A0AD6F2295EA1BA8 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XRCameraFrame_t5FD7B7FC22B478AC6B00AD01A0AD6F2295EA1BA8 *>(__this + _offset);
Matrix4x4_tDE7FF4F2E2EA284F6EFE00D627789D0E5B8B4461 _returnValue;
_returnValue = XRCameraFrame_get_projectionMatrix_mC489D4A0698634FDA99D0BBE0A93E42F5C82E985_inline(_thisAdjusted, method);
return _returnValue;
}
// UnityEngine.Matrix4x4 UnityEngine.XR.ARSubsystems.XRCameraFrame::get_displayMatrix()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Matrix4x4_tDE7FF4F2E2EA284F6EFE00D627789D0E5B8B4461 XRCameraFrame_get_displayMatrix_m7D157BB20E2863E0415A42140B6396C4D3E30E31 (XRCameraFrame_t5FD7B7FC22B478AC6B00AD01A0AD6F2295EA1BA8 * __this, const RuntimeMethod* method)
{
{
// public Matrix4x4 displayMatrix => m_DisplayMatrix;
Matrix4x4_tDE7FF4F2E2EA284F6EFE00D627789D0E5B8B4461 L_0 = __this->get_m_DisplayMatrix_5();
return L_0;
}
}
IL2CPP_EXTERN_C Matrix4x4_tDE7FF4F2E2EA284F6EFE00D627789D0E5B8B4461 XRCameraFrame_get_displayMatrix_m7D157BB20E2863E0415A42140B6396C4D3E30E31_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
XRCameraFrame_t5FD7B7FC22B478AC6B00AD01A0AD6F2295EA1BA8 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XRCameraFrame_t5FD7B7FC22B478AC6B00AD01A0AD6F2295EA1BA8 *>(__this + _offset);
Matrix4x4_tDE7FF4F2E2EA284F6EFE00D627789D0E5B8B4461 _returnValue;
_returnValue = XRCameraFrame_get_displayMatrix_m7D157BB20E2863E0415A42140B6396C4D3E30E31_inline(_thisAdjusted, method);
return _returnValue;
}
// System.Single UnityEngine.XR.ARSubsystems.XRCameraFrame::get_averageIntensityInLumens()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float XRCameraFrame_get_averageIntensityInLumens_mC250C5B79A5B4C0F75D89BD1EC6FB07AB130B62F (XRCameraFrame_t5FD7B7FC22B478AC6B00AD01A0AD6F2295EA1BA8 * __this, const RuntimeMethod* method)
{
{
// public float averageIntensityInLumens => m_AverageIntensityInLumens;
float L_0 = __this->get_m_AverageIntensityInLumens_9();
return L_0;
}
}
IL2CPP_EXTERN_C float XRCameraFrame_get_averageIntensityInLumens_mC250C5B79A5B4C0F75D89BD1EC6FB07AB130B62F_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
XRCameraFrame_t5FD7B7FC22B478AC6B00AD01A0AD6F2295EA1BA8 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XRCameraFrame_t5FD7B7FC22B478AC6B00AD01A0AD6F2295EA1BA8 *>(__this + _offset);
float _returnValue;
_returnValue = XRCameraFrame_get_averageIntensityInLumens_mC250C5B79A5B4C0F75D89BD1EC6FB07AB130B62F_inline(_thisAdjusted, method);
return _returnValue;
}
// System.Double UnityEngine.XR.ARSubsystems.XRCameraFrame::get_exposureDuration()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR double XRCameraFrame_get_exposureDuration_m7957768DDB0AE596767478A9F8239A98BFD23207 (XRCameraFrame_t5FD7B7FC22B478AC6B00AD01A0AD6F2295EA1BA8 * __this, const RuntimeMethod* method)
{
{
// public double exposureDuration => m_ExposureDuration;
double L_0 = __this->get_m_ExposureDuration_10();
return L_0;
}
}
IL2CPP_EXTERN_C double XRCameraFrame_get_exposureDuration_m7957768DDB0AE596767478A9F8239A98BFD23207_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
XRCameraFrame_t5FD7B7FC22B478AC6B00AD01A0AD6F2295EA1BA8 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XRCameraFrame_t5FD7B7FC22B478AC6B00AD01A0AD6F2295EA1BA8 *>(__this + _offset);
double _returnValue;
_returnValue = XRCameraFrame_get_exposureDuration_m7957768DDB0AE596767478A9F8239A98BFD23207_inline(_thisAdjusted, method);
return _returnValue;
}
// System.Single UnityEngine.XR.ARSubsystems.XRCameraFrame::get_exposureOffset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float XRCameraFrame_get_exposureOffset_m276A794A6640F25AA7B1B0FB69C8296F7DDAAE53 (XRCameraFrame_t5FD7B7FC22B478AC6B00AD01A0AD6F2295EA1BA8 * __this, const RuntimeMethod* method)
{
{
// public float exposureOffset => m_ExposureOffset;
float L_0 = __this->get_m_ExposureOffset_11();
return L_0;
}
}
IL2CPP_EXTERN_C float XRCameraFrame_get_exposureOffset_m276A794A6640F25AA7B1B0FB69C8296F7DDAAE53_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
XRCameraFrame_t5FD7B7FC22B478AC6B00AD01A0AD6F2295EA1BA8 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XRCameraFrame_t5FD7B7FC22B478AC6B00AD01A0AD6F2295EA1BA8 *>(__this + _offset);
float _returnValue;
_returnValue = XRCameraFrame_get_exposureOffset_m276A794A6640F25AA7B1B0FB69C8296F7DDAAE53_inline(_thisAdjusted, method);
return _returnValue;
}
// System.Single UnityEngine.XR.ARSubsystems.XRCameraFrame::get_mainLightIntensityLumens()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float XRCameraFrame_get_mainLightIntensityLumens_mDBCBCEA85B23C484CAF7D66ED52681E4AE4C506B (XRCameraFrame_t5FD7B7FC22B478AC6B00AD01A0AD6F2295EA1BA8 * __this, const RuntimeMethod* method)
{
{
// public float mainLightIntensityLumens => m_MainLightIntensityLumens;
float L_0 = __this->get_m_MainLightIntensityLumens_12();
return L_0;
}
}
IL2CPP_EXTERN_C float XRCameraFrame_get_mainLightIntensityLumens_mDBCBCEA85B23C484CAF7D66ED52681E4AE4C506B_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
XRCameraFrame_t5FD7B7FC22B478AC6B00AD01A0AD6F2295EA1BA8 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XRCameraFrame_t5FD7B7FC22B478AC6B00AD01A0AD6F2295EA1BA8 *>(__this + _offset);
float _returnValue;
_returnValue = XRCameraFrame_get_mainLightIntensityLumens_mDBCBCEA85B23C484CAF7D66ED52681E4AE4C506B_inline(_thisAdjusted, method);
return _returnValue;
}
// UnityEngine.Color UnityEngine.XR.ARSubsystems.XRCameraFrame::get_mainLightColor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 XRCameraFrame_get_mainLightColor_m3696EC5D7104849121C9A6CF3524AAC7382BED03 (XRCameraFrame_t5FD7B7FC22B478AC6B00AD01A0AD6F2295EA1BA8 * __this, const RuntimeMethod* method)
{
{
// public Color mainLightColor => m_MainLightColor;
Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 L_0 = __this->get_m_MainLightColor_13();
return L_0;
}
}
IL2CPP_EXTERN_C Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 XRCameraFrame_get_mainLightColor_m3696EC5D7104849121C9A6CF3524AAC7382BED03_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
XRCameraFrame_t5FD7B7FC22B478AC6B00AD01A0AD6F2295EA1BA8 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XRCameraFrame_t5FD7B7FC22B478AC6B00AD01A0AD6F2295EA1BA8 *>(__this + _offset);
Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 _returnValue;
_returnValue = XRCameraFrame_get_mainLightColor_m3696EC5D7104849121C9A6CF3524AAC7382BED03_inline(_thisAdjusted, method);
return _returnValue;
}
// UnityEngine.Vector3 UnityEngine.XR.ARSubsystems.XRCameraFrame::get_mainLightDirection()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E XRCameraFrame_get_mainLightDirection_mB7E086F4A8A89BD7404BB702DF980D7B5B124445 (XRCameraFrame_t5FD7B7FC22B478AC6B00AD01A0AD6F2295EA1BA8 * __this, const RuntimeMethod* method)
{
{
// public Vector3 mainLightDirection => m_MainLightDirection;
Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_0 = __this->get_m_MainLightDirection_14();
return L_0;
}
}
IL2CPP_EXTERN_C Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E XRCameraFrame_get_mainLightDirection_mB7E086F4A8A89BD7404BB702DF980D7B5B124445_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
XRCameraFrame_t5FD7B7FC22B478AC6B00AD01A0AD6F2295EA1BA8 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XRCameraFrame_t5FD7B7FC22B478AC6B00AD01A0AD6F2295EA1BA8 *>(__this + _offset);
Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E _returnValue;
_returnValue = XRCameraFrame_get_mainLightDirection_mB7E086F4A8A89BD7404BB702DF980D7B5B124445_inline(_thisAdjusted, method);
return _returnValue;
}
// UnityEngine.Rendering.SphericalHarmonicsL2 UnityEngine.XR.ARSubsystems.XRCameraFrame::get_ambientSphericalHarmonics()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SphericalHarmonicsL2_tD2EC2ADCA26B9BE05036C3ABCF3CC049EC73EA64 XRCameraFrame_get_ambientSphericalHarmonics_m5859CDC5CE50F33C62EA59CE9BFC58C6F3CDB269 (XRCameraFrame_t5FD7B7FC22B478AC6B00AD01A0AD6F2295EA1BA8 * __this, const RuntimeMethod* method)
{
{
// public SphericalHarmonicsL2 ambientSphericalHarmonics => m_AmbientSphericalHarmonics;
SphericalHarmonicsL2_tD2EC2ADCA26B9BE05036C3ABCF3CC049EC73EA64 L_0 = __this->get_m_AmbientSphericalHarmonics_15();
return L_0;
}
}
IL2CPP_EXTERN_C SphericalHarmonicsL2_tD2EC2ADCA26B9BE05036C3ABCF3CC049EC73EA64 XRCameraFrame_get_ambientSphericalHarmonics_m5859CDC5CE50F33C62EA59CE9BFC58C6F3CDB269_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
XRCameraFrame_t5FD7B7FC22B478AC6B00AD01A0AD6F2295EA1BA8 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XRCameraFrame_t5FD7B7FC22B478AC6B00AD01A0AD6F2295EA1BA8 *>(__this + _offset);
SphericalHarmonicsL2_tD2EC2ADCA26B9BE05036C3ABCF3CC049EC73EA64 _returnValue;
_returnValue = XRCameraFrame_get_ambientSphericalHarmonics_m5859CDC5CE50F33C62EA59CE9BFC58C6F3CDB269_inline(_thisAdjusted, method);
return _returnValue;
}
// UnityEngine.XR.ARSubsystems.XRTextureDescriptor UnityEngine.XR.ARSubsystems.XRCameraFrame::get_cameraGrain()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XRTextureDescriptor_t9CA857DCCC1208B74376787BE4F3008A01B29A57 XRCameraFrame_get_cameraGrain_m7E8B37489D5380BE507656FFC9FE30B0333CED2A (XRCameraFrame_t5FD7B7FC22B478AC6B00AD01A0AD6F2295EA1BA8 * __this, const RuntimeMethod* method)
{
{
// public XRTextureDescriptor cameraGrain => m_CameraGrain;
XRTextureDescriptor_t9CA857DCCC1208B74376787BE4F3008A01B29A57 L_0 = __this->get_m_CameraGrain_16();
return L_0;
}
}
IL2CPP_EXTERN_C XRTextureDescriptor_t9CA857DCCC1208B74376787BE4F3008A01B29A57 XRCameraFrame_get_cameraGrain_m7E8B37489D5380BE507656FFC9FE30B0333CED2A_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
XRCameraFrame_t5FD7B7FC22B478AC6B00AD01A0AD6F2295EA1BA8 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XRCameraFrame_t5FD7B7FC22B478AC6B00AD01A0AD6F2295EA1BA8 *>(__this + _offset);
XRTextureDescriptor_t9CA857DCCC1208B74376787BE4F3008A01B29A57 _returnValue;
_returnValue = XRCameraFrame_get_cameraGrain_m7E8B37489D5380BE507656FFC9FE30B0333CED2A_inline(_thisAdjusted, method);
return _returnValue;
}
// System.Single UnityEngine.XR.ARSubsystems.XRCameraFrame::get_noiseIntensity()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float XRCameraFrame_get_noiseIntensity_mA6150FB06579A1A6E637139C97E93304D6A83D3A (XRCameraFrame_t5FD7B7FC22B478AC6B00AD01A0AD6F2295EA1BA8 * __this, const RuntimeMethod* method)
{
{
// public float noiseIntensity => m_NoiseIntensity;
float L_0 = __this->get_m_NoiseIntensity_17();
return L_0;
}
}
IL2CPP_EXTERN_C float XRCameraFrame_get_noiseIntensity_mA6150FB06579A1A6E637139C97E93304D6A83D3A_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
XRCameraFrame_t5FD7B7FC22B478AC6B00AD01A0AD6F2295EA1BA8 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XRCameraFrame_t5FD7B7FC22B478AC6B00AD01A0AD6F2295EA1BA8 *>(__this + _offset);
float _returnValue;
_returnValue = XRCameraFrame_get_noiseIntensity_mA6150FB06579A1A6E637139C97E93304D6A83D3A_inline(_thisAdjusted, method);
return _returnValue;
}
// System.Boolean UnityEngine.XR.ARSubsystems.XRCameraFrame::get_hasTimestamp()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XRCameraFrame_get_hasTimestamp_m2FBE2F396A15CC469756E3C876519B7FF3349897 (XRCameraFrame_t5FD7B7FC22B478AC6B00AD01A0AD6F2295EA1BA8 * __this, const RuntimeMethod* method)
{
{
// public bool hasTimestamp => (m_Properties & XRCameraFrameProperties.Timestamp) != 0;
int32_t L_0 = __this->get_m_Properties_8();
return (bool)((!(((uint32_t)((int32_t)((int32_t)L_0&(int32_t)1))) <= ((uint32_t)0)))? 1 : 0);
}
}
IL2CPP_EXTERN_C bool XRCameraFrame_get_hasTimestamp_m2FBE2F396A15CC469756E3C876519B7FF3349897_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
XRCameraFrame_t5FD7B7FC22B478AC6B00AD01A0AD6F2295EA1BA8 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XRCameraFrame_t5FD7B7FC22B478AC6B00AD01A0AD6F2295EA1BA8 *>(__this + _offset);
bool _returnValue;
_returnValue = XRCameraFrame_get_hasTimestamp_m2FBE2F396A15CC469756E3C876519B7FF3349897(_thisAdjusted, method);
return _returnValue;
}
// System.Boolean UnityEngine.XR.ARSubsystems.XRCameraFrame::get_hasAverageBrightness()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XRCameraFrame_get_hasAverageBrightness_m3B006851943F915530A8628BF3311C946CC8FC68 (XRCameraFrame_t5FD7B7FC22B478AC6B00AD01A0AD6F2295EA1BA8 * __this, const RuntimeMethod* method)
{
{
// public bool hasAverageBrightness => (m_Properties & XRCameraFrameProperties.AverageBrightness) != 0;
int32_t L_0 = __this->get_m_Properties_8();
return (bool)((!(((uint32_t)((int32_t)((int32_t)L_0&(int32_t)2))) <= ((uint32_t)0)))? 1 : 0);
}
}
IL2CPP_EXTERN_C bool XRCameraFrame_get_hasAverageBrightness_m3B006851943F915530A8628BF3311C946CC8FC68_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
XRCameraFrame_t5FD7B7FC22B478AC6B00AD01A0AD6F2295EA1BA8 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XRCameraFrame_t5FD7B7FC22B478AC6B00AD01A0AD6F2295EA1BA8 *>(__this + _offset);
bool _returnValue;
_returnValue = XRCameraFrame_get_hasAverageBrightness_m3B006851943F915530A8628BF3311C946CC8FC68(_thisAdjusted, method);
return _returnValue;
}
// System.Boolean UnityEngine.XR.ARSubsystems.XRCameraFrame::get_hasAverageColorTemperature()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XRCameraFrame_get_hasAverageColorTemperature_mEE8976398F8AE074090A1D3BE2DBB5F3484C04DF (XRCameraFrame_t5FD7B7FC22B478AC6B00AD01A0AD6F2295EA1BA8 * __this, const RuntimeMethod* method)
{
{
// public bool hasAverageColorTemperature => (m_Properties & XRCameraFrameProperties.AverageColorTemperature) != 0;
int32_t L_0 = __this->get_m_Properties_8();
return (bool)((!(((uint32_t)((int32_t)((int32_t)L_0&(int32_t)4))) <= ((uint32_t)0)))? 1 : 0);
}
}
IL2CPP_EXTERN_C bool XRCameraFrame_get_hasAverageColorTemperature_mEE8976398F8AE074090A1D3BE2DBB5F3484C04DF_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
XRCameraFrame_t5FD7B7FC22B478AC6B00AD01A0AD6F2295EA1BA8 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XRCameraFrame_t5FD7B7FC22B478AC6B00AD01A0AD6F2295EA1BA8 *>(__this + _offset);
bool _returnValue;
_returnValue = XRCameraFrame_get_hasAverageColorTemperature_mEE8976398F8AE074090A1D3BE2DBB5F3484C04DF(_thisAdjusted, method);
return _returnValue;
}
// System.Boolean UnityEngine.XR.ARSubsystems.XRCameraFrame::get_hasColorCorrection()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XRCameraFrame_get_hasColorCorrection_m687F2028F9A79A04CC6CA75C0305134DAB4DB9FE (XRCameraFrame_t5FD7B7FC22B478AC6B00AD01A0AD6F2295EA1BA8 * __this, const RuntimeMethod* method)
{
{
// public bool hasColorCorrection => (m_Properties & XRCameraFrameProperties.ColorCorrection) != 0;
int32_t L_0 = __this->get_m_Properties_8();
return (bool)((!(((uint32_t)((int32_t)((int32_t)L_0&(int32_t)8))) <= ((uint32_t)0)))? 1 : 0);
}
}
IL2CPP_EXTERN_C bool XRCameraFrame_get_hasColorCorrection_m687F2028F9A79A04CC6CA75C0305134DAB4DB9FE_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
XRCameraFrame_t5FD7B7FC22B478AC6B00AD01A0AD6F2295EA1BA8 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XRCameraFrame_t5FD7B7FC22B478AC6B00AD01A0AD6F2295EA1BA8 *>(__this + _offset);
bool _returnValue;
_returnValue = XRCameraFrame_get_hasColorCorrection_m687F2028F9A79A04CC6CA75C0305134DAB4DB9FE(_thisAdjusted, method);
return _returnValue;
}
// System.Boolean UnityEngine.XR.ARSubsystems.XRCameraFrame::get_hasProjectionMatrix()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XRCameraFrame_get_hasProjectionMatrix_mA7A707C6E990D729C152E149063DE2BD0A456B4A (XRCameraFrame_t5FD7B7FC22B478AC6B00AD01A0AD6F2295EA1BA8 * __this, const RuntimeMethod* method)
{
{
// public bool hasProjectionMatrix => (m_Properties & XRCameraFrameProperties.ProjectionMatrix) != 0;
int32_t L_0 = __this->get_m_Properties_8();
return (bool)((!(((uint32_t)((int32_t)((int32_t)L_0&(int32_t)((int32_t)16)))) <= ((uint32_t)0)))? 1 : 0);
}
}
IL2CPP_EXTERN_C bool XRCameraFrame_get_hasProjectionMatrix_mA7A707C6E990D729C152E149063DE2BD0A456B4A_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
XRCameraFrame_t5FD7B7FC22B478AC6B00AD01A0AD6F2295EA1BA8 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XRCameraFrame_t5FD7B7FC22B478AC6B00AD01A0AD6F2295EA1BA8 *>(__this + _offset);
bool _returnValue;
_returnValue = XRCameraFrame_get_hasProjectionMatrix_mA7A707C6E990D729C152E149063DE2BD0A456B4A(_thisAdjusted, method);
return _returnValue;
}
// System.Boolean UnityEngine.XR.ARSubsystems.XRCameraFrame::get_hasDisplayMatrix()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XRCameraFrame_get_hasDisplayMatrix_mB369CC19C7B3E2640E2C2747A1E117A5773E5052 (XRCameraFrame_t5FD7B7FC22B478AC6B00AD01A0AD6F2295EA1BA8 * __this, const RuntimeMethod* method)
{
{
// public bool hasDisplayMatrix => (m_Properties & XRCameraFrameProperties.DisplayMatrix) != 0;
int32_t L_0 = __this->get_m_Properties_8();
return (bool)((!(((uint32_t)((int32_t)((int32_t)L_0&(int32_t)((int32_t)32)))) <= ((uint32_t)0)))? 1 : 0);
}
}
IL2CPP_EXTERN_C bool XRCameraFrame_get_hasDisplayMatrix_mB369CC19C7B3E2640E2C2747A1E117A5773E5052_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
XRCameraFrame_t5FD7B7FC22B478AC6B00AD01A0AD6F2295EA1BA8 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XRCameraFrame_t5FD7B7FC22B478AC6B00AD01A0AD6F2295EA1BA8 *>(__this + _offset);
bool _returnValue;
_returnValue = XRCameraFrame_get_hasDisplayMatrix_mB369CC19C7B3E2640E2C2747A1E117A5773E5052(_thisAdjusted, method);
return _returnValue;
}
// System.Boolean UnityEngine.XR.ARSubsystems.XRCameraFrame::get_hasAverageIntensityInLumens()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XRCameraFrame_get_hasAverageIntensityInLumens_m2251DD714F7E6E9098DB738DF536FE191425379E (XRCameraFrame_t5FD7B7FC22B478AC6B00AD01A0AD6F2295EA1BA8 * __this, const RuntimeMethod* method)
{
{
// public bool hasAverageIntensityInLumens => (m_Properties & XRCameraFrameProperties.AverageIntensityInLumens) != 0;
int32_t L_0 = __this->get_m_Properties_8();
return (bool)((!(((uint32_t)((int32_t)((int32_t)L_0&(int32_t)((int32_t)64)))) <= ((uint32_t)0)))? 1 : 0);
}
}
IL2CPP_EXTERN_C bool XRCameraFrame_get_hasAverageIntensityInLumens_m2251DD714F7E6E9098DB738DF536FE191425379E_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
XRCameraFrame_t5FD7B7FC22B478AC6B00AD01A0AD6F2295EA1BA8 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XRCameraFrame_t5FD7B7FC22B478AC6B00AD01A0AD6F2295EA1BA8 *>(__this + _offset);
bool _returnValue;
_returnValue = XRCameraFrame_get_hasAverageIntensityInLumens_m2251DD714F7E6E9098DB738DF536FE191425379E(_thisAdjusted, method);
return _returnValue;
}
// System.Boolean UnityEngine.XR.ARSubsystems.XRCameraFrame::get_hasExposureDuration()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XRCameraFrame_get_hasExposureDuration_mDF9AC5D38E767A61439850FCEE55E7CC40592EDC (XRCameraFrame_t5FD7B7FC22B478AC6B00AD01A0AD6F2295EA1BA8 * __this, const RuntimeMethod* method)
{
{
// public bool hasExposureDuration => (m_Properties & XRCameraFrameProperties.ExposureDuration) != 0;
int32_t L_0 = __this->get_m_Properties_8();
return (bool)((!(((uint32_t)((int32_t)((int32_t)L_0&(int32_t)((int32_t)128)))) <= ((uint32_t)0)))? 1 : 0);
}
}
IL2CPP_EXTERN_C bool XRCameraFrame_get_hasExposureDuration_mDF9AC5D38E767A61439850FCEE55E7CC40592EDC_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
XRCameraFrame_t5FD7B7FC22B478AC6B00AD01A0AD6F2295EA1BA8 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XRCameraFrame_t5FD7B7FC22B478AC6B00AD01A0AD6F2295EA1BA8 *>(__this + _offset);
bool _returnValue;
_returnValue = XRCameraFrame_get_hasExposureDuration_mDF9AC5D38E767A61439850FCEE55E7CC40592EDC(_thisAdjusted, method);
return _returnValue;
}
// System.Boolean UnityEngine.XR.ARSubsystems.XRCameraFrame::get_hasExposureOffset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XRCameraFrame_get_hasExposureOffset_m6696D6E287E1FB413669FA175ACD45E8D6799A37 (XRCameraFrame_t5FD7B7FC22B478AC6B00AD01A0AD6F2295EA1BA8 * __this, const RuntimeMethod* method)
{
{
// public bool hasExposureOffset => (m_Properties & XRCameraFrameProperties.ExposureOffset) != 0;
int32_t L_0 = __this->get_m_Properties_8();
return (bool)((!(((uint32_t)((int32_t)((int32_t)L_0&(int32_t)((int32_t)256)))) <= ((uint32_t)0)))? 1 : 0);
}
}
IL2CPP_EXTERN_C bool XRCameraFrame_get_hasExposureOffset_m6696D6E287E1FB413669FA175ACD45E8D6799A37_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
XRCameraFrame_t5FD7B7FC22B478AC6B00AD01A0AD6F2295EA1BA8 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XRCameraFrame_t5FD7B7FC22B478AC6B00AD01A0AD6F2295EA1BA8 *>(__this + _offset);
bool _returnValue;
_returnValue = XRCameraFrame_get_hasExposureOffset_m6696D6E287E1FB413669FA175ACD45E8D6799A37(_thisAdjusted, method);
return _returnValue;
}
// System.Boolean UnityEngine.XR.ARSubsystems.XRCameraFrame::get_hasMainLightIntensityLumens()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XRCameraFrame_get_hasMainLightIntensityLumens_mE0C9564F7A24636366E063F9086ECA81FDB055BF (XRCameraFrame_t5FD7B7FC22B478AC6B00AD01A0AD6F2295EA1BA8 * __this, const RuntimeMethod* method)
{
{
// public bool hasMainLightIntensityLumens => (m_Properties & XRCameraFrameProperties.MainLightIntensityLumens) != 0;
int32_t L_0 = __this->get_m_Properties_8();
return (bool)((!(((uint32_t)((int32_t)((int32_t)L_0&(int32_t)((int32_t)2048)))) <= ((uint32_t)0)))? 1 : 0);
}
}
IL2CPP_EXTERN_C bool XRCameraFrame_get_hasMainLightIntensityLumens_mE0C9564F7A24636366E063F9086ECA81FDB055BF_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
XRCameraFrame_t5FD7B7FC22B478AC6B00AD01A0AD6F2295EA1BA8 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XRCameraFrame_t5FD7B7FC22B478AC6B00AD01A0AD6F2295EA1BA8 *>(__this + _offset);
bool _returnValue;
_returnValue = XRCameraFrame_get_hasMainLightIntensityLumens_mE0C9564F7A24636366E063F9086ECA81FDB055BF(_thisAdjusted, method);
return _returnValue;
}
// System.Boolean UnityEngine.XR.ARSubsystems.XRCameraFrame::get_hasMainLightColor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XRCameraFrame_get_hasMainLightColor_m2B1D25F6224C098D66503F6768C6930D84451AB3 (XRCameraFrame_t5FD7B7FC22B478AC6B00AD01A0AD6F2295EA1BA8 * __this, const RuntimeMethod* method)
{
{
// public bool hasMainLightColor => (m_Properties & XRCameraFrameProperties.MainLightColor) != 0;
int32_t L_0 = __this->get_m_Properties_8();
return (bool)((!(((uint32_t)((int32_t)((int32_t)L_0&(int32_t)((int32_t)1024)))) <= ((uint32_t)0)))? 1 : 0);
}
}
IL2CPP_EXTERN_C bool XRCameraFrame_get_hasMainLightColor_m2B1D25F6224C098D66503F6768C6930D84451AB3_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
XRCameraFrame_t5FD7B7FC22B478AC6B00AD01A0AD6F2295EA1BA8 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XRCameraFrame_t5FD7B7FC22B478AC6B00AD01A0AD6F2295EA1BA8 *>(__this + _offset);
bool _returnValue;
_returnValue = XRCameraFrame_get_hasMainLightColor_m2B1D25F6224C098D66503F6768C6930D84451AB3(_thisAdjusted, method);
return _returnValue;
}
// System.Boolean UnityEngine.XR.ARSubsystems.XRCameraFrame::get_hasMainLightDirection()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XRCameraFrame_get_hasMainLightDirection_m75FB7306D3E483962E22DFB5DD2BB3A5398A7CC3 (XRCameraFrame_t5FD7B7FC22B478AC6B00AD01A0AD6F2295EA1BA8 * __this, const RuntimeMethod* method)
{
{
// public bool hasMainLightDirection => (m_Properties & XRCameraFrameProperties.MainLightDirection) != 0;
int32_t L_0 = __this->get_m_Properties_8();
return (bool)((!(((uint32_t)((int32_t)((int32_t)L_0&(int32_t)((int32_t)512)))) <= ((uint32_t)0)))? 1 : 0);
}
}
IL2CPP_EXTERN_C bool XRCameraFrame_get_hasMainLightDirection_m75FB7306D3E483962E22DFB5DD2BB3A5398A7CC3_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
XRCameraFrame_t5FD7B7FC22B478AC6B00AD01A0AD6F2295EA1BA8 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XRCameraFrame_t5FD7B7FC22B478AC6B00AD01A0AD6F2295EA1BA8 *>(__this + _offset);
bool _returnValue;
_returnValue = XRCameraFrame_get_hasMainLightDirection_m75FB7306D3E483962E22DFB5DD2BB3A5398A7CC3(_thisAdjusted, method);
return _returnValue;
}
// System.Boolean UnityEngine.XR.ARSubsystems.XRCameraFrame::get_hasAmbientSphericalHarmonics()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XRCameraFrame_get_hasAmbientSphericalHarmonics_mA2B45AEE57B7DA5081B81C8483F1FBB90ABE3090 (XRCameraFrame_t5FD7B7FC22B478AC6B00AD01A0AD6F2295EA1BA8 * __this, const RuntimeMethod* method)
{
{
// public bool hasAmbientSphericalHarmonics => (m_Properties & XRCameraFrameProperties.AmbientSphericalHarmonics) != 0;
int32_t L_0 = __this->get_m_Properties_8();
return (bool)((!(((uint32_t)((int32_t)((int32_t)L_0&(int32_t)((int32_t)4096)))) <= ((uint32_t)0)))? 1 : 0);
}
}
IL2CPP_EXTERN_C bool XRCameraFrame_get_hasAmbientSphericalHarmonics_mA2B45AEE57B7DA5081B81C8483F1FBB90ABE3090_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
XRCameraFrame_t5FD7B7FC22B478AC6B00AD01A0AD6F2295EA1BA8 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XRCameraFrame_t5FD7B7FC22B478AC6B00AD01A0AD6F2295EA1BA8 *>(__this + _offset);
bool _returnValue;
_returnValue = XRCameraFrame_get_hasAmbientSphericalHarmonics_mA2B45AEE57B7DA5081B81C8483F1FBB90ABE3090(_thisAdjusted, method);
return _returnValue;
}
// System.Boolean UnityEngine.XR.ARSubsystems.XRCameraFrame::get_hasCameraGrain()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XRCameraFrame_get_hasCameraGrain_m14C3641296BF7BC49501E3D5E810A24A2D50922D (XRCameraFrame_t5FD7B7FC22B478AC6B00AD01A0AD6F2295EA1BA8 * __this, const RuntimeMethod* method)
{
{
// public bool hasCameraGrain => (m_Properties & XRCameraFrameProperties.CameraGrain) != 0;
int32_t L_0 = __this->get_m_Properties_8();
return (bool)((!(((uint32_t)((int32_t)((int32_t)L_0&(int32_t)((int32_t)8192)))) <= ((uint32_t)0)))? 1 : 0);
}
}
IL2CPP_EXTERN_C bool XRCameraFrame_get_hasCameraGrain_m14C3641296BF7BC49501E3D5E810A24A2D50922D_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
XRCameraFrame_t5FD7B7FC22B478AC6B00AD01A0AD6F2295EA1BA8 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XRCameraFrame_t5FD7B7FC22B478AC6B00AD01A0AD6F2295EA1BA8 *>(__this + _offset);
bool _returnValue;
_returnValue = XRCameraFrame_get_hasCameraGrain_m14C3641296BF7BC49501E3D5E810A24A2D50922D(_thisAdjusted, method);
return _returnValue;
}
// System.Boolean UnityEngine.XR.ARSubsystems.XRCameraFrame::get_hasNoiseIntensity()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XRCameraFrame_get_hasNoiseIntensity_mA5A08A29C34AC2AFFE5792725E4506F0B32EF75C (XRCameraFrame_t5FD7B7FC22B478AC6B00AD01A0AD6F2295EA1BA8 * __this, const RuntimeMethod* method)
{
{
// public bool hasNoiseIntensity => (m_Properties & XRCameraFrameProperties.NoiseIntensity) != 0;
int32_t L_0 = __this->get_m_Properties_8();
return (bool)((!(((uint32_t)((int32_t)((int32_t)L_0&(int32_t)((int32_t)16384)))) <= ((uint32_t)0)))? 1 : 0);
}
}
IL2CPP_EXTERN_C bool XRCameraFrame_get_hasNoiseIntensity_mA5A08A29C34AC2AFFE5792725E4506F0B32EF75C_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
XRCameraFrame_t5FD7B7FC22B478AC6B00AD01A0AD6F2295EA1BA8 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XRCameraFrame_t5FD7B7FC22B478AC6B00AD01A0AD6F2295EA1BA8 *>(__this + _offset);
bool _returnValue;
_returnValue = XRCameraFrame_get_hasNoiseIntensity_mA5A08A29C34AC2AFFE5792725E4506F0B32EF75C(_thisAdjusted, method);
return _returnValue;
}
// System.Boolean UnityEngine.XR.ARSubsystems.XRCameraFrame::Equals(UnityEngine.XR.ARSubsystems.XRCameraFrame)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XRCameraFrame_Equals_mEF403AD303261AE21BFE6F482EB3EF728EB49DD6 (XRCameraFrame_t5FD7B7FC22B478AC6B00AD01A0AD6F2295EA1BA8 * __this, XRCameraFrame_t5FD7B7FC22B478AC6B00AD01A0AD6F2295EA1BA8 ___other0, const RuntimeMethod* method)
{
{
// return (m_TimestampNs.Equals(other.m_TimestampNs) && m_AverageBrightness.Equals(other.m_AverageBrightness)
// && m_AverageColorTemperature.Equals(other.m_AverageColorTemperature)
// && m_ProjectionMatrix.Equals(other.m_ProjectionMatrix)
// && m_DisplayMatrix.Equals(other.m_DisplayMatrix)
// && m_AverageIntensityInLumens.Equals(other.m_AverageIntensityInLumens)
// && m_ExposureDuration.Equals(other.m_ExposureDuration)
// && m_ExposureOffset.Equals(other.m_ExposureOffset)
// && m_MainLightDirection.Equals(other.m_MainLightDirection)
// && m_MainLightIntensityLumens.Equals(other.m_MainLightIntensityLumens)
// && m_MainLightColor.Equals(other.m_MainLightColor)
// && m_AmbientSphericalHarmonics.Equals(other.m_AmbientSphericalHarmonics)
// && m_CameraGrain.Equals(other.m_CameraGrain)
// && m_NoiseIntensity.Equals(other.m_NoiseIntensity)
// && (m_Properties == other.m_Properties));
int64_t* L_0 = __this->get_address_of_m_TimestampNs_0();
XRCameraFrame_t5FD7B7FC22B478AC6B00AD01A0AD6F2295EA1BA8 L_1 = ___other0;
int64_t L_2 = L_1.get_m_TimestampNs_0();
bool L_3;
L_3 = Int64_Equals_m22F1F9E00328D15F2EF44D9A82F185C9A8D0A697((int64_t*)L_0, L_2, /*hidden argument*/NULL);
if (!L_3)
{
goto IL_0131;
}
}
{
float* L_4 = __this->get_address_of_m_AverageBrightness_1();
XRCameraFrame_t5FD7B7FC22B478AC6B00AD01A0AD6F2295EA1BA8 L_5 = ___other0;
float L_6 = L_5.get_m_AverageBrightness_1();
bool L_7;
L_7 = Single_Equals_m298A3A849F30B9900813BE6DD98AE6810CDBE914((float*)L_4, L_6, /*hidden argument*/NULL);
if (!L_7)
{
goto IL_0131;
}
}
{
float* L_8 = __this->get_address_of_m_AverageColorTemperature_2();
XRCameraFrame_t5FD7B7FC22B478AC6B00AD01A0AD6F2295EA1BA8 L_9 = ___other0;
float L_10 = L_9.get_m_AverageColorTemperature_2();
bool L_11;
L_11 = Single_Equals_m298A3A849F30B9900813BE6DD98AE6810CDBE914((float*)L_8, L_10, /*hidden argument*/NULL);
if (!L_11)
{
goto IL_0131;
}
}
{
Matrix4x4_tDE7FF4F2E2EA284F6EFE00D627789D0E5B8B4461 * L_12 = __this->get_address_of_m_ProjectionMatrix_4();
XRCameraFrame_t5FD7B7FC22B478AC6B00AD01A0AD6F2295EA1BA8 L_13 = ___other0;
Matrix4x4_tDE7FF4F2E2EA284F6EFE00D627789D0E5B8B4461 L_14 = L_13.get_m_ProjectionMatrix_4();
bool L_15;
L_15 = Matrix4x4_Equals_mAE7AC284A922B094E4ACCC04A1C48B247E9A7997((Matrix4x4_tDE7FF4F2E2EA284F6EFE00D627789D0E5B8B4461 *)L_12, L_14, /*hidden argument*/NULL);
if (!L_15)
{
goto IL_0131;
}
}
{
Matrix4x4_tDE7FF4F2E2EA284F6EFE00D627789D0E5B8B4461 * L_16 = __this->get_address_of_m_DisplayMatrix_5();
XRCameraFrame_t5FD7B7FC22B478AC6B00AD01A0AD6F2295EA1BA8 L_17 = ___other0;
Matrix4x4_tDE7FF4F2E2EA284F6EFE00D627789D0E5B8B4461 L_18 = L_17.get_m_DisplayMatrix_5();
bool L_19;
L_19 = Matrix4x4_Equals_mAE7AC284A922B094E4ACCC04A1C48B247E9A7997((Matrix4x4_tDE7FF4F2E2EA284F6EFE00D627789D0E5B8B4461 *)L_16, L_18, /*hidden argument*/NULL);
if (!L_19)
{
goto IL_0131;
}
}
{
float* L_20 = __this->get_address_of_m_AverageIntensityInLumens_9();
XRCameraFrame_t5FD7B7FC22B478AC6B00AD01A0AD6F2295EA1BA8 L_21 = ___other0;
float L_22 = L_21.get_m_AverageIntensityInLumens_9();
bool L_23;
L_23 = Single_Equals_m298A3A849F30B9900813BE6DD98AE6810CDBE914((float*)L_20, L_22, /*hidden argument*/NULL);
if (!L_23)
{
goto IL_0131;
}
}
{
double* L_24 = __this->get_address_of_m_ExposureDuration_10();
XRCameraFrame_t5FD7B7FC22B478AC6B00AD01A0AD6F2295EA1BA8 L_25 = ___other0;
double L_26 = L_25.get_m_ExposureDuration_10();
bool L_27;
L_27 = Double_Equals_m8C171E8C7F556087E707D1396DB29D1D8B21A46B((double*)L_24, L_26, /*hidden argument*/NULL);
if (!L_27)
{
goto IL_0131;
}
}
{
float* L_28 = __this->get_address_of_m_ExposureOffset_11();
XRCameraFrame_t5FD7B7FC22B478AC6B00AD01A0AD6F2295EA1BA8 L_29 = ___other0;
float L_30 = L_29.get_m_ExposureOffset_11();
bool L_31;
L_31 = Single_Equals_m298A3A849F30B9900813BE6DD98AE6810CDBE914((float*)L_28, L_30, /*hidden argument*/NULL);
if (!L_31)
{
goto IL_0131;
}
}
{
Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * L_32 = __this->get_address_of_m_MainLightDirection_14();
XRCameraFrame_t5FD7B7FC22B478AC6B00AD01A0AD6F2295EA1BA8 L_33 = ___other0;
Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_34 = L_33.get_m_MainLightDirection_14();
bool L_35;
L_35 = Vector3_Equals_mA92800CD98ED6A42DD7C55C5DB22DAB4DEAA6397((Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E *)L_32, L_34, /*hidden argument*/NULL);
if (!L_35)
{
goto IL_0131;
}
}
{
float* L_36 = __this->get_address_of_m_MainLightIntensityLumens_12();
XRCameraFrame_t5FD7B7FC22B478AC6B00AD01A0AD6F2295EA1BA8 L_37 = ___other0;
float L_38 = L_37.get_m_MainLightIntensityLumens_12();
bool L_39;
L_39 = Single_Equals_m298A3A849F30B9900813BE6DD98AE6810CDBE914((float*)L_36, L_38, /*hidden argument*/NULL);
if (!L_39)
{
goto IL_0131;
}
}
{
Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 * L_40 = __this->get_address_of_m_MainLightColor_13();
XRCameraFrame_t5FD7B7FC22B478AC6B00AD01A0AD6F2295EA1BA8 L_41 = ___other0;
Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 L_42 = L_41.get_m_MainLightColor_13();
bool L_43;
L_43 = Color_Equals_mB531F532B5F7BE6168CFD4A6C89358C16F058D00((Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 *)L_40, L_42, /*hidden argument*/NULL);
if (!L_43)
{
goto IL_0131;
}
}
{
SphericalHarmonicsL2_tD2EC2ADCA26B9BE05036C3ABCF3CC049EC73EA64 * L_44 = __this->get_address_of_m_AmbientSphericalHarmonics_15();
XRCameraFrame_t5FD7B7FC22B478AC6B00AD01A0AD6F2295EA1BA8 L_45 = ___other0;
SphericalHarmonicsL2_tD2EC2ADCA26B9BE05036C3ABCF3CC049EC73EA64 L_46 = L_45.get_m_AmbientSphericalHarmonics_15();
bool L_47;
L_47 = SphericalHarmonicsL2_Equals_mE2AE9E68662F1944744A5F3FF7AA65391597C622((SphericalHarmonicsL2_tD2EC2ADCA26B9BE05036C3ABCF3CC049EC73EA64 *)L_44, L_46, /*hidden argument*/NULL);
if (!L_47)
{
goto IL_0131;
}
}
{
XRTextureDescriptor_t9CA857DCCC1208B74376787BE4F3008A01B29A57 * L_48 = __this->get_address_of_m_CameraGrain_16();
XRCameraFrame_t5FD7B7FC22B478AC6B00AD01A0AD6F2295EA1BA8 L_49 = ___other0;
XRTextureDescriptor_t9CA857DCCC1208B74376787BE4F3008A01B29A57 L_50 = L_49.get_m_CameraGrain_16();
bool L_51;
L_51 = XRTextureDescriptor_Equals_mD2A71E4A2D68686E74A648896FAC0FCDF02BE0B1((XRTextureDescriptor_t9CA857DCCC1208B74376787BE4F3008A01B29A57 *)L_48, L_50, /*hidden argument*/NULL);
if (!L_51)
{
goto IL_0131;
}
}
{
float* L_52 = __this->get_address_of_m_NoiseIntensity_17();
XRCameraFrame_t5FD7B7FC22B478AC6B00AD01A0AD6F2295EA1BA8 L_53 = ___other0;
float L_54 = L_53.get_m_NoiseIntensity_17();
bool L_55;
L_55 = Single_Equals_m298A3A849F30B9900813BE6DD98AE6810CDBE914((float*)L_52, L_54, /*hidden argument*/NULL);
if (!L_55)
{
goto IL_0131;
}
}
{
int32_t L_56 = __this->get_m_Properties_8();
XRCameraFrame_t5FD7B7FC22B478AC6B00AD01A0AD6F2295EA1BA8 L_57 = ___other0;
int32_t L_58 = L_57.get_m_Properties_8();
return (bool)((((int32_t)L_56) == ((int32_t)L_58))? 1 : 0);
}
IL_0131:
{
return (bool)0;
}
}
IL2CPP_EXTERN_C bool XRCameraFrame_Equals_mEF403AD303261AE21BFE6F482EB3EF728EB49DD6_AdjustorThunk (RuntimeObject * __this, XRCameraFrame_t5FD7B7FC22B478AC6B00AD01A0AD6F2295EA1BA8 ___other0, const RuntimeMethod* method)
{
XRCameraFrame_t5FD7B7FC22B478AC6B00AD01A0AD6F2295EA1BA8 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XRCameraFrame_t5FD7B7FC22B478AC6B00AD01A0AD6F2295EA1BA8 *>(__this + _offset);
bool _returnValue;
_returnValue = XRCameraFrame_Equals_mEF403AD303261AE21BFE6F482EB3EF728EB49DD6(_thisAdjusted, ___other0, method);
return _returnValue;
}
// System.Boolean UnityEngine.XR.ARSubsystems.XRCameraFrame::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XRCameraFrame_Equals_m82C80589000BA2F428E4774763F668045BF085D6 (XRCameraFrame_t5FD7B7FC22B478AC6B00AD01A0AD6F2295EA1BA8 * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XRCameraFrame_t5FD7B7FC22B478AC6B00AD01A0AD6F2295EA1BA8_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
// return ((obj is XRCameraFrame) && Equals((XRCameraFrame)obj));
RuntimeObject * L_0 = ___obj0;
if (!((RuntimeObject *)IsInstSealed((RuntimeObject*)L_0, XRCameraFrame_t5FD7B7FC22B478AC6B00AD01A0AD6F2295EA1BA8_il2cpp_TypeInfo_var)))
{
goto IL_0015;
}
}
{
RuntimeObject * L_1 = ___obj0;
bool L_2;
L_2 = XRCameraFrame_Equals_mEF403AD303261AE21BFE6F482EB3EF728EB49DD6((XRCameraFrame_t5FD7B7FC22B478AC6B00AD01A0AD6F2295EA1BA8 *)__this, ((*(XRCameraFrame_t5FD7B7FC22B478AC6B00AD01A0AD6F2295EA1BA8 *)((XRCameraFrame_t5FD7B7FC22B478AC6B00AD01A0AD6F2295EA1BA8 *)UnBox(L_1, XRCameraFrame_t5FD7B7FC22B478AC6B00AD01A0AD6F2295EA1BA8_il2cpp_TypeInfo_var)))), /*hidden argument*/NULL);
return L_2;
}
IL_0015:
{
return (bool)0;
}
}
IL2CPP_EXTERN_C bool XRCameraFrame_Equals_m82C80589000BA2F428E4774763F668045BF085D6_AdjustorThunk (RuntimeObject * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
XRCameraFrame_t5FD7B7FC22B478AC6B00AD01A0AD6F2295EA1BA8 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XRCameraFrame_t5FD7B7FC22B478AC6B00AD01A0AD6F2295EA1BA8 *>(__this + _offset);
bool _returnValue;
_returnValue = XRCameraFrame_Equals_m82C80589000BA2F428E4774763F668045BF085D6(_thisAdjusted, ___obj0, method);
return _returnValue;
}
// System.Int32 UnityEngine.XR.ARSubsystems.XRCameraFrame::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XRCameraFrame_GetHashCode_mCEC92150EE3B5237ACB46471128479997F78185D (XRCameraFrame_t5FD7B7FC22B478AC6B00AD01A0AD6F2295EA1BA8 * __this, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
// int hashCode = 486187739;
// hashCode = (hashCode * 486187739) + m_TimestampNs.GetHashCode();
int64_t* L_0 = __this->get_address_of_m_TimestampNs_0();
int32_t L_1;
L_1 = Int64_GetHashCode_mF049F7E1956554FB36DA6671F55BE2CAA4937CC5((int64_t*)L_0, /*hidden argument*/NULL);
// hashCode = (hashCode * 486187739) + m_AverageBrightness.GetHashCode();
float* L_2 = __this->get_address_of_m_AverageBrightness_1();
int32_t L_3;
L_3 = Single_GetHashCode_m7662E1812DDDBC85D464398740CFFC3588DFB2C9((float*)L_2, /*hidden argument*/NULL);
// hashCode = (hashCode * 486187739) + m_AverageColorTemperature.GetHashCode();
float* L_4 = __this->get_address_of_m_AverageColorTemperature_2();
int32_t L_5;
L_5 = Single_GetHashCode_m7662E1812DDDBC85D464398740CFFC3588DFB2C9((float*)L_4, /*hidden argument*/NULL);
// hashCode = (hashCode * 486187739) + m_ColorCorrection.GetHashCode();
Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 * L_6 = __this->get_address_of_m_ColorCorrection_3();
int32_t L_7;
L_7 = Color_GetHashCode_mAF5E7EE6AFA983D3FA5E3D316E672EE1511F97CF((Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 *)L_6, /*hidden argument*/NULL);
// hashCode = (hashCode * 486187739) + m_ProjectionMatrix.GetHashCode();
Matrix4x4_tDE7FF4F2E2EA284F6EFE00D627789D0E5B8B4461 * L_8 = __this->get_address_of_m_ProjectionMatrix_4();
int32_t L_9;
L_9 = Matrix4x4_GetHashCode_m102B903082CD1C786C221268A19679820E365B59((Matrix4x4_tDE7FF4F2E2EA284F6EFE00D627789D0E5B8B4461 *)L_8, /*hidden argument*/NULL);
// hashCode = (hashCode * 486187739) + m_DisplayMatrix.GetHashCode();
Matrix4x4_tDE7FF4F2E2EA284F6EFE00D627789D0E5B8B4461 * L_10 = __this->get_address_of_m_DisplayMatrix_5();
int32_t L_11;
L_11 = Matrix4x4_GetHashCode_m102B903082CD1C786C221268A19679820E365B59((Matrix4x4_tDE7FF4F2E2EA284F6EFE00D627789D0E5B8B4461 *)L_10, /*hidden argument*/NULL);
// hashCode = (hashCode * 486187739) + m_AverageIntensityInLumens.GetHashCode();
float* L_12 = __this->get_address_of_m_AverageIntensityInLumens_9();
int32_t L_13;
L_13 = Single_GetHashCode_m7662E1812DDDBC85D464398740CFFC3588DFB2C9((float*)L_12, /*hidden argument*/NULL);
// hashCode = (hashCode * 486187739) + m_ExposureDuration.GetHashCode();
double* L_14 = __this->get_address_of_m_ExposureDuration_10();
int32_t L_15;
L_15 = Double_GetHashCode_m33CB20AA5674C6F4367B7B08340B33FB979F9F39((double*)L_14, /*hidden argument*/NULL);
// hashCode = (hashCode * 486187739) + m_ExposureOffset.GetHashCode();
float* L_16 = __this->get_address_of_m_ExposureOffset_11();
int32_t L_17;
L_17 = Single_GetHashCode_m7662E1812DDDBC85D464398740CFFC3588DFB2C9((float*)L_16, /*hidden argument*/NULL);
// hashCode = (hashCode * 486187739) + m_MainLightDirection.GetHashCode();
Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * L_18 = __this->get_address_of_m_MainLightDirection_14();
int32_t L_19;
L_19 = Vector3_GetHashCode_m9F18401DA6025110A012F55BBB5ACABD36FA9A0A((Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E *)L_18, /*hidden argument*/NULL);
// hashCode = (hashCode * 486187739) + m_MainLightColor.GetHashCode();
Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 * L_20 = __this->get_address_of_m_MainLightColor_13();
int32_t L_21;
L_21 = Color_GetHashCode_mAF5E7EE6AFA983D3FA5E3D316E672EE1511F97CF((Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 *)L_20, /*hidden argument*/NULL);
// hashCode = (hashCode * 486187739) + m_AmbientSphericalHarmonics.GetHashCode();
SphericalHarmonicsL2_tD2EC2ADCA26B9BE05036C3ABCF3CC049EC73EA64 * L_22 = __this->get_address_of_m_AmbientSphericalHarmonics_15();
int32_t L_23;
L_23 = SphericalHarmonicsL2_GetHashCode_m01ABB0C93C13460EF74534071BAECCF6C2B3D989((SphericalHarmonicsL2_tD2EC2ADCA26B9BE05036C3ABCF3CC049EC73EA64 *)L_22, /*hidden argument*/NULL);
// hashCode = (hashCode * 486187739) + m_MainLightIntensityLumens.GetHashCode();
float* L_24 = __this->get_address_of_m_MainLightIntensityLumens_12();
int32_t L_25;
L_25 = Single_GetHashCode_m7662E1812DDDBC85D464398740CFFC3588DFB2C9((float*)L_24, /*hidden argument*/NULL);
// hashCode = (hashCode * 486187739) + m_CameraGrain.GetHashCode();
XRTextureDescriptor_t9CA857DCCC1208B74376787BE4F3008A01B29A57 * L_26 = __this->get_address_of_m_CameraGrain_16();
int32_t L_27;
L_27 = XRTextureDescriptor_GetHashCode_m8628ACEB1A4A6203BCD28B01D59B588715C83291((XRTextureDescriptor_t9CA857DCCC1208B74376787BE4F3008A01B29A57 *)L_26, /*hidden argument*/NULL);
// hashCode = (hashCode * 486187739) + m_NoiseIntensity.GetHashCode();
float* L_28 = __this->get_address_of_m_NoiseIntensity_17();
int32_t L_29;
L_29 = Single_GetHashCode_m7662E1812DDDBC85D464398740CFFC3588DFB2C9((float*)L_28, /*hidden argument*/NULL);
// hashCode = (hashCode * 486187739) + m_NativePtr.GetHashCode();
intptr_t* L_30 = __this->get_address_of_m_NativePtr_7();
int32_t L_31;
L_31 = IntPtr_GetHashCode_m55E65FB52EFE7C0EBC3C28E66A5D7542F3B1D35D((intptr_t*)L_30, /*hidden argument*/NULL);
// hashCode = (hashCode * 486187739) + ((int)m_Properties).GetHashCode();
int32_t L_32 = __this->get_m_Properties_8();
V_0 = L_32;
int32_t L_33;
L_33 = Int32_GetHashCode_mEDD3F492A5F7CF021125AE3F38E2B8F8743FC667((int32_t*)(&V_0), /*hidden argument*/NULL);
// return hashCode;
return ((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)((int32_t)486187739), (int32_t)((int32_t)486187739))), (int32_t)L_1)), (int32_t)((int32_t)486187739))), (int32_t)L_3)), (int32_t)((int32_t)486187739))), (int32_t)L_5)), (int32_t)((int32_t)486187739))), (int32_t)L_7)), (int32_t)((int32_t)486187739))), (int32_t)L_9)), (int32_t)((int32_t)486187739))), (int32_t)L_11)), (int32_t)((int32_t)486187739))), (int32_t)L_13)), (int32_t)((int32_t)486187739))), (int32_t)L_15)), (int32_t)((int32_t)486187739))), (int32_t)L_17)), (int32_t)((int32_t)486187739))), (int32_t)L_19)), (int32_t)((int32_t)486187739))), (int32_t)L_21)), (int32_t)((int32_t)486187739))), (int32_t)L_23)), (int32_t)((int32_t)486187739))), (int32_t)L_25)), (int32_t)((int32_t)486187739))), (int32_t)L_27)), (int32_t)((int32_t)486187739))), (int32_t)L_29)), (int32_t)((int32_t)486187739))), (int32_t)L_31)), (int32_t)((int32_t)486187739))), (int32_t)L_33));
}
}
IL2CPP_EXTERN_C int32_t XRCameraFrame_GetHashCode_mCEC92150EE3B5237ACB46471128479997F78185D_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
XRCameraFrame_t5FD7B7FC22B478AC6B00AD01A0AD6F2295EA1BA8 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XRCameraFrame_t5FD7B7FC22B478AC6B00AD01A0AD6F2295EA1BA8 *>(__this + _offset);
int32_t _returnValue;
_returnValue = XRCameraFrame_GetHashCode_mCEC92150EE3B5237ACB46471128479997F78185D(_thisAdjusted, method);
return _returnValue;
}
// System.String UnityEngine.XR.ARSubsystems.XRCameraFrame::ToString()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XRCameraFrame_ToString_mE4A2FE2CA4AF1D844B950D0029023F98B189A6D8 (XRCameraFrame_t5FD7B7FC22B478AC6B00AD01A0AD6F2295EA1BA8 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int64_t378EE0D608BD3107E77238E85F30D2BBD46981F3_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Single_tE07797BA3C98D4CA9B5A19413C19A76688AB899E_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SphericalHarmonicsL2_tD2EC2ADCA26B9BE05036C3ABCF3CC049EC73EA64_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XRCameraFrameProperties_t57C3A208DCCC01241BA413286A98B1726773200C_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral00B28FF06B788B9B67C6B259800F404F9F3761FD);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral07563FFFAE8DC96A4647329236D6578484DCFC54);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral0E07B5AB0A65B017A998AF857D674FE6F98ED3C9);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral40C3754113912BBB2324B9A85745EAD27C43B49F);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral697C90518644F8CEC228B3FAAF9208018A265979);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral88D27F4E3C8F87C257FEF5F0843C2B70FE53393D);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralCD7EB64BD9799979E78360B72F0170B09EB8E7EC);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralE4E07AE56B3A0074E42A9FFB34854865ED818489);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralF7D4582E4C9630075149B9121887385CB3717408);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralFA562B1F59BDBECDE523EAD6A241FA2473D1BCB4);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralFC5D6DE16BCDC8814D21BFAE734BA1DDFE197110);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralFDA1C52D0E58360F4E8FD608757CCD98D8772D4F);
s_Il2CppMethodInitialized = true;
}
{
// return $"properties:{m_Properties}\n timestamp:{m_TimestampNs}ns\n avgBrightness:{m_AverageBrightness.ToString("0.000")}\n"
// + $" avgColorTemp:{m_AverageColorTemperature.ToString("0.000")}\n colorCorrection:{m_ColorCorrection}\n"
// + $" projection:\n{m_ProjectionMatrix.ToString("0.000")}\n display:\n{m_DisplayMatrix.ToString("0.000")}\n"
// + $" exposureDuration: {m_ExposureDuration.ToString("0.000")}sec\n exposureOffset:{m_ExposureOffset}\n"
// + $" mainLightDirection: {m_MainLightDirection.ToString("0.000")}\n mainLightIntensityLumens: {m_MainLightIntensityLumens.ToString("0.000")}\n"
// + $" MainLightColor: {m_MainLightColor.ToString("0.000")}\n ambientSphericalHarmonics: \n{m_AmbientSphericalHarmonics}\n"
// + $" nativePtr: {m_NativePtr.ToString("X16")}\n";
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_0 = (StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)(StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)SZArrayNew(StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A_il2cpp_TypeInfo_var, (uint32_t)((int32_t)17));
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_1 = L_0;
int32_t L_2 = __this->get_m_Properties_8();
int32_t L_3 = L_2;
RuntimeObject * L_4 = Box(XRCameraFrameProperties_t57C3A208DCCC01241BA413286A98B1726773200C_il2cpp_TypeInfo_var, &L_3);
int64_t L_5 = __this->get_m_TimestampNs_0();
int64_t L_6 = L_5;
RuntimeObject * L_7 = Box(Int64_t378EE0D608BD3107E77238E85F30D2BBD46981F3_il2cpp_TypeInfo_var, &L_6);
float* L_8 = __this->get_address_of_m_AverageBrightness_1();
String_t* L_9;
L_9 = Single_ToString_m15F10F2AFF80750906CEFCFB456EBA84F9D2E8D7((float*)L_8, _stringLiteral40C3754113912BBB2324B9A85745EAD27C43B49F, /*hidden argument*/NULL);
String_t* L_10;
L_10 = String_Format_m039737CCD992C5BFC8D16DFD681F5E8786E87FA6(_stringLiteralF7D4582E4C9630075149B9121887385CB3717408, L_4, L_7, L_9, /*hidden argument*/NULL);
NullCheck(L_1);
ArrayElementTypeCheck (L_1, L_10);
(L_1)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)L_10);
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_11 = L_1;
float* L_12 = __this->get_address_of_m_AverageColorTemperature_2();
String_t* L_13;
L_13 = Single_ToString_m15F10F2AFF80750906CEFCFB456EBA84F9D2E8D7((float*)L_12, _stringLiteral40C3754113912BBB2324B9A85745EAD27C43B49F, /*hidden argument*/NULL);
Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 L_14 = __this->get_m_ColorCorrection_3();
Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 L_15 = L_14;
RuntimeObject * L_16 = Box(Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659_il2cpp_TypeInfo_var, &L_15);
String_t* L_17;
L_17 = String_Format_m8D1CB0410C35E052A53AE957C914C841E54BAB66(_stringLiteralFA562B1F59BDBECDE523EAD6A241FA2473D1BCB4, L_13, L_16, /*hidden argument*/NULL);
NullCheck(L_11);
ArrayElementTypeCheck (L_11, L_17);
(L_11)->SetAt(static_cast<il2cpp_array_size_t>(1), (String_t*)L_17);
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_18 = L_11;
NullCheck(L_18);
ArrayElementTypeCheck (L_18, _stringLiteral0E07B5AB0A65B017A998AF857D674FE6F98ED3C9);
(L_18)->SetAt(static_cast<il2cpp_array_size_t>(2), (String_t*)_stringLiteral0E07B5AB0A65B017A998AF857D674FE6F98ED3C9);
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_19 = L_18;
Matrix4x4_tDE7FF4F2E2EA284F6EFE00D627789D0E5B8B4461 * L_20 = __this->get_address_of_m_ProjectionMatrix_4();
String_t* L_21;
L_21 = Matrix4x4_ToString_m37E63359FC45C7959EDF563DA8EF495E63E201CB((Matrix4x4_tDE7FF4F2E2EA284F6EFE00D627789D0E5B8B4461 *)L_20, _stringLiteral40C3754113912BBB2324B9A85745EAD27C43B49F, /*hidden argument*/NULL);
NullCheck(L_19);
ArrayElementTypeCheck (L_19, L_21);
(L_19)->SetAt(static_cast<il2cpp_array_size_t>(3), (String_t*)L_21);
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_22 = L_19;
NullCheck(L_22);
ArrayElementTypeCheck (L_22, _stringLiteral88D27F4E3C8F87C257FEF5F0843C2B70FE53393D);
(L_22)->SetAt(static_cast<il2cpp_array_size_t>(4), (String_t*)_stringLiteral88D27F4E3C8F87C257FEF5F0843C2B70FE53393D);
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_23 = L_22;
Matrix4x4_tDE7FF4F2E2EA284F6EFE00D627789D0E5B8B4461 * L_24 = __this->get_address_of_m_DisplayMatrix_5();
String_t* L_25;
L_25 = Matrix4x4_ToString_m37E63359FC45C7959EDF563DA8EF495E63E201CB((Matrix4x4_tDE7FF4F2E2EA284F6EFE00D627789D0E5B8B4461 *)L_24, _stringLiteral40C3754113912BBB2324B9A85745EAD27C43B49F, /*hidden argument*/NULL);
NullCheck(L_23);
ArrayElementTypeCheck (L_23, L_25);
(L_23)->SetAt(static_cast<il2cpp_array_size_t>(5), (String_t*)L_25);
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_26 = L_23;
NullCheck(L_26);
ArrayElementTypeCheck (L_26, _stringLiteral00B28FF06B788B9B67C6B259800F404F9F3761FD);
(L_26)->SetAt(static_cast<il2cpp_array_size_t>(6), (String_t*)_stringLiteral00B28FF06B788B9B67C6B259800F404F9F3761FD);
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_27 = L_26;
double* L_28 = __this->get_address_of_m_ExposureDuration_10();
String_t* L_29;
L_29 = Double_ToString_m01772ACCBAF392BB24F3A8803DF40ADCF148D64C((double*)L_28, _stringLiteral40C3754113912BBB2324B9A85745EAD27C43B49F, /*hidden argument*/NULL);
float L_30 = __this->get_m_ExposureOffset_11();
float L_31 = L_30;
RuntimeObject * L_32 = Box(Single_tE07797BA3C98D4CA9B5A19413C19A76688AB899E_il2cpp_TypeInfo_var, &L_31);
String_t* L_33;
L_33 = String_Format_m8D1CB0410C35E052A53AE957C914C841E54BAB66(_stringLiteral07563FFFAE8DC96A4647329236D6578484DCFC54, L_29, L_32, /*hidden argument*/NULL);
NullCheck(L_27);
ArrayElementTypeCheck (L_27, L_33);
(L_27)->SetAt(static_cast<il2cpp_array_size_t>(7), (String_t*)L_33);
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_34 = L_27;
NullCheck(L_34);
ArrayElementTypeCheck (L_34, _stringLiteralFC5D6DE16BCDC8814D21BFAE734BA1DDFE197110);
(L_34)->SetAt(static_cast<il2cpp_array_size_t>(8), (String_t*)_stringLiteralFC5D6DE16BCDC8814D21BFAE734BA1DDFE197110);
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_35 = L_34;
Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * L_36 = __this->get_address_of_m_MainLightDirection_14();
String_t* L_37;
L_37 = Vector3_ToString_mBD710BF9F46219074EE5B095F064EAB4F73B64C1((Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E *)L_36, _stringLiteral40C3754113912BBB2324B9A85745EAD27C43B49F, /*hidden argument*/NULL);
NullCheck(L_35);
ArrayElementTypeCheck (L_35, L_37);
(L_35)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)9)), (String_t*)L_37);
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_38 = L_35;
NullCheck(L_38);
ArrayElementTypeCheck (L_38, _stringLiteralCD7EB64BD9799979E78360B72F0170B09EB8E7EC);
(L_38)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)10)), (String_t*)_stringLiteralCD7EB64BD9799979E78360B72F0170B09EB8E7EC);
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_39 = L_38;
float* L_40 = __this->get_address_of_m_MainLightIntensityLumens_12();
String_t* L_41;
L_41 = Single_ToString_m15F10F2AFF80750906CEFCFB456EBA84F9D2E8D7((float*)L_40, _stringLiteral40C3754113912BBB2324B9A85745EAD27C43B49F, /*hidden argument*/NULL);
NullCheck(L_39);
ArrayElementTypeCheck (L_39, L_41);
(L_39)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)11)), (String_t*)L_41);
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_42 = L_39;
NullCheck(L_42);
ArrayElementTypeCheck (L_42, _stringLiteral00B28FF06B788B9B67C6B259800F404F9F3761FD);
(L_42)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)12)), (String_t*)_stringLiteral00B28FF06B788B9B67C6B259800F404F9F3761FD);
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_43 = L_42;
Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 * L_44 = __this->get_address_of_m_MainLightColor_13();
String_t* L_45;
L_45 = Color_ToString_m1A3325552FB2DF96E8D22AF93C1C1A503C409A45((Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 *)L_44, _stringLiteral40C3754113912BBB2324B9A85745EAD27C43B49F, /*hidden argument*/NULL);
SphericalHarmonicsL2_tD2EC2ADCA26B9BE05036C3ABCF3CC049EC73EA64 L_46 = __this->get_m_AmbientSphericalHarmonics_15();
SphericalHarmonicsL2_tD2EC2ADCA26B9BE05036C3ABCF3CC049EC73EA64 L_47 = L_46;
RuntimeObject * L_48 = Box(SphericalHarmonicsL2_tD2EC2ADCA26B9BE05036C3ABCF3CC049EC73EA64_il2cpp_TypeInfo_var, &L_47);
String_t* L_49;
L_49 = String_Format_m8D1CB0410C35E052A53AE957C914C841E54BAB66(_stringLiteralE4E07AE56B3A0074E42A9FFB34854865ED818489, L_45, L_48, /*hidden argument*/NULL);
NullCheck(L_43);
ArrayElementTypeCheck (L_43, L_49);
(L_43)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)13)), (String_t*)L_49);
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_50 = L_43;
NullCheck(L_50);
ArrayElementTypeCheck (L_50, _stringLiteral697C90518644F8CEC228B3FAAF9208018A265979);
(L_50)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)14)), (String_t*)_stringLiteral697C90518644F8CEC228B3FAAF9208018A265979);
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_51 = L_50;
intptr_t* L_52 = __this->get_address_of_m_NativePtr_7();
String_t* L_53;
L_53 = IntPtr_ToString_m7CDFDC84936276E62AB76AA238F7571B54DF90B4((intptr_t*)L_52, _stringLiteralFDA1C52D0E58360F4E8FD608757CCD98D8772D4F, /*hidden argument*/NULL);
NullCheck(L_51);
ArrayElementTypeCheck (L_51, L_53);
(L_51)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)15)), (String_t*)L_53);
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_54 = L_51;
NullCheck(L_54);
ArrayElementTypeCheck (L_54, _stringLiteral00B28FF06B788B9B67C6B259800F404F9F3761FD);
(L_54)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)16)), (String_t*)_stringLiteral00B28FF06B788B9B67C6B259800F404F9F3761FD);
String_t* L_55;
L_55 = String_Concat_mFEA7EFA1A6E75B96B1B7BC4526AAC864BFF83CC9(L_54, /*hidden argument*/NULL);
return L_55;
}
}
IL2CPP_EXTERN_C String_t* XRCameraFrame_ToString_mE4A2FE2CA4AF1D844B950D0029023F98B189A6D8_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
XRCameraFrame_t5FD7B7FC22B478AC6B00AD01A0AD6F2295EA1BA8 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XRCameraFrame_t5FD7B7FC22B478AC6B00AD01A0AD6F2295EA1BA8 *>(__this + _offset);
String_t* _returnValue;
_returnValue = XRCameraFrame_ToString_mE4A2FE2CA4AF1D844B950D0029023F98B189A6D8(_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
#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
// System.Boolean UnityEngine.XR.ARSubsystems.XRCameraIntrinsics::Equals(UnityEngine.XR.ARSubsystems.XRCameraIntrinsics)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XRCameraIntrinsics_Equals_mA7D92292854DA38258811FDC946BA82E1D5E001D (XRCameraIntrinsics_t85F1514E263A6C6DE96DBA5448B44F11F35395FD * __this, XRCameraIntrinsics_t85F1514E263A6C6DE96DBA5448B44F11F35395FD ___other0, const RuntimeMethod* method)
{
{
// return (m_FocalLength.Equals(other.m_FocalLength) && m_PrincipalPoint.Equals(other.m_PrincipalPoint)
// && m_Resolution.Equals(other.m_Resolution));
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 * L_0 = __this->get_address_of_m_FocalLength_0();
XRCameraIntrinsics_t85F1514E263A6C6DE96DBA5448B44F11F35395FD L_1 = ___other0;
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 L_2 = L_1.get_m_FocalLength_0();
bool L_3;
L_3 = Vector2_Equals_m6E08A16717F2B9EE8B24EBA6B234A03098D5F05D_inline((Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 *)L_0, L_2, /*hidden argument*/NULL);
if (!L_3)
{
goto IL_0038;
}
}
{
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 * L_4 = __this->get_address_of_m_PrincipalPoint_1();
XRCameraIntrinsics_t85F1514E263A6C6DE96DBA5448B44F11F35395FD L_5 = ___other0;
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 L_6 = L_5.get_m_PrincipalPoint_1();
bool L_7;
L_7 = Vector2_Equals_m6E08A16717F2B9EE8B24EBA6B234A03098D5F05D_inline((Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 *)L_4, L_6, /*hidden argument*/NULL);
if (!L_7)
{
goto IL_0038;
}
}
{
Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9 * L_8 = __this->get_address_of_m_Resolution_2();
XRCameraIntrinsics_t85F1514E263A6C6DE96DBA5448B44F11F35395FD L_9 = ___other0;
Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9 L_10 = L_9.get_m_Resolution_2();
bool L_11;
L_11 = Vector2Int_Equals_m96F4F602CE85AFD675A8096AB9D5E2D4544382FF_inline((Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9 *)L_8, L_10, /*hidden argument*/NULL);
return L_11;
}
IL_0038:
{
return (bool)0;
}
}
IL2CPP_EXTERN_C bool XRCameraIntrinsics_Equals_mA7D92292854DA38258811FDC946BA82E1D5E001D_AdjustorThunk (RuntimeObject * __this, XRCameraIntrinsics_t85F1514E263A6C6DE96DBA5448B44F11F35395FD ___other0, const RuntimeMethod* method)
{
XRCameraIntrinsics_t85F1514E263A6C6DE96DBA5448B44F11F35395FD * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XRCameraIntrinsics_t85F1514E263A6C6DE96DBA5448B44F11F35395FD *>(__this + _offset);
bool _returnValue;
_returnValue = XRCameraIntrinsics_Equals_mA7D92292854DA38258811FDC946BA82E1D5E001D(_thisAdjusted, ___other0, method);
return _returnValue;
}
// System.Boolean UnityEngine.XR.ARSubsystems.XRCameraIntrinsics::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XRCameraIntrinsics_Equals_m037475660705484B0E8730157EA7A731998466AD (XRCameraIntrinsics_t85F1514E263A6C6DE96DBA5448B44F11F35395FD * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XRCameraIntrinsics_t85F1514E263A6C6DE96DBA5448B44F11F35395FD_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
// return ((obj is XRCameraIntrinsics) && Equals((XRCameraIntrinsics)obj));
RuntimeObject * L_0 = ___obj0;
if (!((RuntimeObject *)IsInstSealed((RuntimeObject*)L_0, XRCameraIntrinsics_t85F1514E263A6C6DE96DBA5448B44F11F35395FD_il2cpp_TypeInfo_var)))
{
goto IL_0015;
}
}
{
RuntimeObject * L_1 = ___obj0;
bool L_2;
L_2 = XRCameraIntrinsics_Equals_mA7D92292854DA38258811FDC946BA82E1D5E001D((XRCameraIntrinsics_t85F1514E263A6C6DE96DBA5448B44F11F35395FD *)__this, ((*(XRCameraIntrinsics_t85F1514E263A6C6DE96DBA5448B44F11F35395FD *)((XRCameraIntrinsics_t85F1514E263A6C6DE96DBA5448B44F11F35395FD *)UnBox(L_1, XRCameraIntrinsics_t85F1514E263A6C6DE96DBA5448B44F11F35395FD_il2cpp_TypeInfo_var)))), /*hidden argument*/NULL);
return L_2;
}
IL_0015:
{
return (bool)0;
}
}
IL2CPP_EXTERN_C bool XRCameraIntrinsics_Equals_m037475660705484B0E8730157EA7A731998466AD_AdjustorThunk (RuntimeObject * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
XRCameraIntrinsics_t85F1514E263A6C6DE96DBA5448B44F11F35395FD * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XRCameraIntrinsics_t85F1514E263A6C6DE96DBA5448B44F11F35395FD *>(__this + _offset);
bool _returnValue;
_returnValue = XRCameraIntrinsics_Equals_m037475660705484B0E8730157EA7A731998466AD(_thisAdjusted, ___obj0, method);
return _returnValue;
}
// System.Int32 UnityEngine.XR.ARSubsystems.XRCameraIntrinsics::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XRCameraIntrinsics_GetHashCode_mD1D3D0F34AA1723CC454040334B46D5CD7809377 (XRCameraIntrinsics_t85F1514E263A6C6DE96DBA5448B44F11F35395FD * __this, const RuntimeMethod* method)
{
{
// int hashCode = 486187739;
// hashCode = (hashCode * 486187739) + m_FocalLength.GetHashCode();
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 * L_0 = __this->get_address_of_m_FocalLength_0();
int32_t L_1;
L_1 = Vector2_GetHashCode_m9A5DD8406289F38806CC42C394E324C1C2AB3732((Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 *)L_0, /*hidden argument*/NULL);
// hashCode = (hashCode * 486187739) + m_PrincipalPoint.GetHashCode();
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 * L_2 = __this->get_address_of_m_PrincipalPoint_1();
int32_t L_3;
L_3 = Vector2_GetHashCode_m9A5DD8406289F38806CC42C394E324C1C2AB3732((Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 *)L_2, /*hidden argument*/NULL);
// hashCode = (hashCode * 486187739) + m_Resolution.GetHashCode();
Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9 * L_4 = __this->get_address_of_m_Resolution_2();
int32_t L_5;
L_5 = Vector2Int_GetHashCode_mB963D0B9A29E161BC4B73F97AEAF2F843FC8EF71((Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9 *)L_4, /*hidden argument*/NULL);
// return hashCode;
return ((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)((int32_t)486187739), (int32_t)((int32_t)486187739))), (int32_t)L_1)), (int32_t)((int32_t)486187739))), (int32_t)L_3)), (int32_t)((int32_t)486187739))), (int32_t)L_5));
}
}
IL2CPP_EXTERN_C int32_t XRCameraIntrinsics_GetHashCode_mD1D3D0F34AA1723CC454040334B46D5CD7809377_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
XRCameraIntrinsics_t85F1514E263A6C6DE96DBA5448B44F11F35395FD * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XRCameraIntrinsics_t85F1514E263A6C6DE96DBA5448B44F11F35395FD *>(__this + _offset);
int32_t _returnValue;
_returnValue = XRCameraIntrinsics_GetHashCode_mD1D3D0F34AA1723CC454040334B46D5CD7809377(_thisAdjusted, method);
return _returnValue;
}
// System.String UnityEngine.XR.ARSubsystems.XRCameraIntrinsics::ToString()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XRCameraIntrinsics_ToString_mFD230300DEC4F7FB2DCF30F4F02036D97213B2C9 (XRCameraIntrinsics_t85F1514E263A6C6DE96DBA5448B44F11F35395FD * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral7122AD46BE25874E464E4389F96444AA2302A459);
s_Il2CppMethodInitialized = true;
}
{
// return string.Format("focalLength: {0} principalPoint: {1} resolution: {2}", m_FocalLength,
// m_PrincipalPoint, m_Resolution);
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 L_0 = __this->get_m_FocalLength_0();
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 L_1 = L_0;
RuntimeObject * L_2 = Box(Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9_il2cpp_TypeInfo_var, &L_1);
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 L_3 = __this->get_m_PrincipalPoint_1();
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 L_4 = L_3;
RuntimeObject * L_5 = Box(Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9_il2cpp_TypeInfo_var, &L_4);
Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9 L_6 = __this->get_m_Resolution_2();
Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9 L_7 = L_6;
RuntimeObject * L_8 = Box(Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9_il2cpp_TypeInfo_var, &L_7);
String_t* L_9;
L_9 = String_Format_m039737CCD992C5BFC8D16DFD681F5E8786E87FA6(_stringLiteral7122AD46BE25874E464E4389F96444AA2302A459, L_2, L_5, L_8, /*hidden argument*/NULL);
return L_9;
}
}
IL2CPP_EXTERN_C String_t* XRCameraIntrinsics_ToString_mFD230300DEC4F7FB2DCF30F4F02036D97213B2C9_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
XRCameraIntrinsics_t85F1514E263A6C6DE96DBA5448B44F11F35395FD * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XRCameraIntrinsics_t85F1514E263A6C6DE96DBA5448B44F11F35395FD *>(__this + _offset);
String_t* _returnValue;
_returnValue = XRCameraIntrinsics_ToString_mFD230300DEC4F7FB2DCF30F4F02036D97213B2C9(_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
// System.Void UnityEngine.XR.ARSubsystems.XRCameraParams::set_zNear(System.Single)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRCameraParams_set_zNear_mE207AB998D78E35497B1E941A20C7864D454EE45 (XRCameraParams_t9FCECBDAEFCC1084042B75393990959B28B64B18 * __this, float ___value0, const RuntimeMethod* method)
{
{
// set => m_ZNear = value;
float L_0 = ___value0;
__this->set_m_ZNear_0(L_0);
return;
}
}
IL2CPP_EXTERN_C void XRCameraParams_set_zNear_mE207AB998D78E35497B1E941A20C7864D454EE45_AdjustorThunk (RuntimeObject * __this, float ___value0, const RuntimeMethod* method)
{
XRCameraParams_t9FCECBDAEFCC1084042B75393990959B28B64B18 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XRCameraParams_t9FCECBDAEFCC1084042B75393990959B28B64B18 *>(__this + _offset);
XRCameraParams_set_zNear_mE207AB998D78E35497B1E941A20C7864D454EE45_inline(_thisAdjusted, ___value0, method);
}
// System.Void UnityEngine.XR.ARSubsystems.XRCameraParams::set_zFar(System.Single)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRCameraParams_set_zFar_m4ABC4E0271EE81FEA88B1608B19ED3CFDA8E523B (XRCameraParams_t9FCECBDAEFCC1084042B75393990959B28B64B18 * __this, float ___value0, const RuntimeMethod* method)
{
{
// set => m_ZFar = value;
float L_0 = ___value0;
__this->set_m_ZFar_1(L_0);
return;
}
}
IL2CPP_EXTERN_C void XRCameraParams_set_zFar_m4ABC4E0271EE81FEA88B1608B19ED3CFDA8E523B_AdjustorThunk (RuntimeObject * __this, float ___value0, const RuntimeMethod* method)
{
XRCameraParams_t9FCECBDAEFCC1084042B75393990959B28B64B18 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XRCameraParams_t9FCECBDAEFCC1084042B75393990959B28B64B18 *>(__this + _offset);
XRCameraParams_set_zFar_m4ABC4E0271EE81FEA88B1608B19ED3CFDA8E523B_inline(_thisAdjusted, ___value0, method);
}
// System.Void UnityEngine.XR.ARSubsystems.XRCameraParams::set_screenWidth(System.Single)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRCameraParams_set_screenWidth_m4E9ABE5FEE32FB446FDF6EC5B00961ACC66B48FB (XRCameraParams_t9FCECBDAEFCC1084042B75393990959B28B64B18 * __this, float ___value0, const RuntimeMethod* method)
{
{
// set => m_ScreenWidth = value;
float L_0 = ___value0;
__this->set_m_ScreenWidth_2(L_0);
return;
}
}
IL2CPP_EXTERN_C void XRCameraParams_set_screenWidth_m4E9ABE5FEE32FB446FDF6EC5B00961ACC66B48FB_AdjustorThunk (RuntimeObject * __this, float ___value0, const RuntimeMethod* method)
{
XRCameraParams_t9FCECBDAEFCC1084042B75393990959B28B64B18 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XRCameraParams_t9FCECBDAEFCC1084042B75393990959B28B64B18 *>(__this + _offset);
XRCameraParams_set_screenWidth_m4E9ABE5FEE32FB446FDF6EC5B00961ACC66B48FB_inline(_thisAdjusted, ___value0, method);
}
// System.Void UnityEngine.XR.ARSubsystems.XRCameraParams::set_screenHeight(System.Single)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRCameraParams_set_screenHeight_m31C5E67C7403556AFF8B72CC4BB09EA3C3AA05A3 (XRCameraParams_t9FCECBDAEFCC1084042B75393990959B28B64B18 * __this, float ___value0, const RuntimeMethod* method)
{
{
// set => m_ScreenHeight = value;
float L_0 = ___value0;
__this->set_m_ScreenHeight_3(L_0);
return;
}
}
IL2CPP_EXTERN_C void XRCameraParams_set_screenHeight_m31C5E67C7403556AFF8B72CC4BB09EA3C3AA05A3_AdjustorThunk (RuntimeObject * __this, float ___value0, const RuntimeMethod* method)
{
XRCameraParams_t9FCECBDAEFCC1084042B75393990959B28B64B18 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XRCameraParams_t9FCECBDAEFCC1084042B75393990959B28B64B18 *>(__this + _offset);
XRCameraParams_set_screenHeight_m31C5E67C7403556AFF8B72CC4BB09EA3C3AA05A3_inline(_thisAdjusted, ___value0, method);
}
// System.Void UnityEngine.XR.ARSubsystems.XRCameraParams::set_screenOrientation(UnityEngine.ScreenOrientation)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRCameraParams_set_screenOrientation_mCF2AD6E975E790E5BE14E2A1EB71A73E8AA7E7D9 (XRCameraParams_t9FCECBDAEFCC1084042B75393990959B28B64B18 * __this, int32_t ___value0, const RuntimeMethod* method)
{
{
// set => m_ScreenOrientation = value;
int32_t L_0 = ___value0;
__this->set_m_ScreenOrientation_4(L_0);
return;
}
}
IL2CPP_EXTERN_C void XRCameraParams_set_screenOrientation_mCF2AD6E975E790E5BE14E2A1EB71A73E8AA7E7D9_AdjustorThunk (RuntimeObject * __this, int32_t ___value0, const RuntimeMethod* method)
{
XRCameraParams_t9FCECBDAEFCC1084042B75393990959B28B64B18 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XRCameraParams_t9FCECBDAEFCC1084042B75393990959B28B64B18 *>(__this + _offset);
XRCameraParams_set_screenOrientation_mCF2AD6E975E790E5BE14E2A1EB71A73E8AA7E7D9_inline(_thisAdjusted, ___value0, method);
}
// System.Boolean UnityEngine.XR.ARSubsystems.XRCameraParams::Equals(UnityEngine.XR.ARSubsystems.XRCameraParams)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XRCameraParams_Equals_m392E8AB6ECAEA915E0E1C9A20831EBE24346E4C0 (XRCameraParams_t9FCECBDAEFCC1084042B75393990959B28B64B18 * __this, XRCameraParams_t9FCECBDAEFCC1084042B75393990959B28B64B18 ___other0, const RuntimeMethod* method)
{
{
// return (m_ZNear.Equals(other.m_ZNear) && m_ZFar.Equals(other.m_ZFar)
// && m_ScreenWidth.Equals(other.m_ScreenWidth) && m_ScreenHeight.Equals(other.m_ScreenHeight)
// && (m_ScreenOrientation == other.m_ScreenOrientation));
float* L_0 = __this->get_address_of_m_ZNear_0();
XRCameraParams_t9FCECBDAEFCC1084042B75393990959B28B64B18 L_1 = ___other0;
float L_2 = L_1.get_m_ZNear_0();
bool L_3;
L_3 = Single_Equals_m298A3A849F30B9900813BE6DD98AE6810CDBE914((float*)L_0, L_2, /*hidden argument*/NULL);
if (!L_3)
{
goto IL_005b;
}
}
{
float* L_4 = __this->get_address_of_m_ZFar_1();
XRCameraParams_t9FCECBDAEFCC1084042B75393990959B28B64B18 L_5 = ___other0;
float L_6 = L_5.get_m_ZFar_1();
bool L_7;
L_7 = Single_Equals_m298A3A849F30B9900813BE6DD98AE6810CDBE914((float*)L_4, L_6, /*hidden argument*/NULL);
if (!L_7)
{
goto IL_005b;
}
}
{
float* L_8 = __this->get_address_of_m_ScreenWidth_2();
XRCameraParams_t9FCECBDAEFCC1084042B75393990959B28B64B18 L_9 = ___other0;
float L_10 = L_9.get_m_ScreenWidth_2();
bool L_11;
L_11 = Single_Equals_m298A3A849F30B9900813BE6DD98AE6810CDBE914((float*)L_8, L_10, /*hidden argument*/NULL);
if (!L_11)
{
goto IL_005b;
}
}
{
float* L_12 = __this->get_address_of_m_ScreenHeight_3();
XRCameraParams_t9FCECBDAEFCC1084042B75393990959B28B64B18 L_13 = ___other0;
float L_14 = L_13.get_m_ScreenHeight_3();
bool L_15;
L_15 = Single_Equals_m298A3A849F30B9900813BE6DD98AE6810CDBE914((float*)L_12, L_14, /*hidden argument*/NULL);
if (!L_15)
{
goto IL_005b;
}
}
{
int32_t L_16 = __this->get_m_ScreenOrientation_4();
XRCameraParams_t9FCECBDAEFCC1084042B75393990959B28B64B18 L_17 = ___other0;
int32_t L_18 = L_17.get_m_ScreenOrientation_4();
return (bool)((((int32_t)L_16) == ((int32_t)L_18))? 1 : 0);
}
IL_005b:
{
return (bool)0;
}
}
IL2CPP_EXTERN_C bool XRCameraParams_Equals_m392E8AB6ECAEA915E0E1C9A20831EBE24346E4C0_AdjustorThunk (RuntimeObject * __this, XRCameraParams_t9FCECBDAEFCC1084042B75393990959B28B64B18 ___other0, const RuntimeMethod* method)
{
XRCameraParams_t9FCECBDAEFCC1084042B75393990959B28B64B18 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XRCameraParams_t9FCECBDAEFCC1084042B75393990959B28B64B18 *>(__this + _offset);
bool _returnValue;
_returnValue = XRCameraParams_Equals_m392E8AB6ECAEA915E0E1C9A20831EBE24346E4C0(_thisAdjusted, ___other0, method);
return _returnValue;
}
// System.Boolean UnityEngine.XR.ARSubsystems.XRCameraParams::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XRCameraParams_Equals_mDE9A6E9D2127F369FA129FD19E73A790FF48E8F2 (XRCameraParams_t9FCECBDAEFCC1084042B75393990959B28B64B18 * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XRCameraParams_t9FCECBDAEFCC1084042B75393990959B28B64B18_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
// return ((obj is XRCameraParams) && Equals((XRCameraParams)obj));
RuntimeObject * L_0 = ___obj0;
if (!((RuntimeObject *)IsInstSealed((RuntimeObject*)L_0, XRCameraParams_t9FCECBDAEFCC1084042B75393990959B28B64B18_il2cpp_TypeInfo_var)))
{
goto IL_0015;
}
}
{
RuntimeObject * L_1 = ___obj0;
bool L_2;
L_2 = XRCameraParams_Equals_m392E8AB6ECAEA915E0E1C9A20831EBE24346E4C0((XRCameraParams_t9FCECBDAEFCC1084042B75393990959B28B64B18 *)__this, ((*(XRCameraParams_t9FCECBDAEFCC1084042B75393990959B28B64B18 *)((XRCameraParams_t9FCECBDAEFCC1084042B75393990959B28B64B18 *)UnBox(L_1, XRCameraParams_t9FCECBDAEFCC1084042B75393990959B28B64B18_il2cpp_TypeInfo_var)))), /*hidden argument*/NULL);
return L_2;
}
IL_0015:
{
return (bool)0;
}
}
IL2CPP_EXTERN_C bool XRCameraParams_Equals_mDE9A6E9D2127F369FA129FD19E73A790FF48E8F2_AdjustorThunk (RuntimeObject * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
XRCameraParams_t9FCECBDAEFCC1084042B75393990959B28B64B18 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XRCameraParams_t9FCECBDAEFCC1084042B75393990959B28B64B18 *>(__this + _offset);
bool _returnValue;
_returnValue = XRCameraParams_Equals_mDE9A6E9D2127F369FA129FD19E73A790FF48E8F2(_thisAdjusted, ___obj0, method);
return _returnValue;
}
// System.Int32 UnityEngine.XR.ARSubsystems.XRCameraParams::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XRCameraParams_GetHashCode_m5C9955238ED690EA6A338097DB818F37ECBFDC72 (XRCameraParams_t9FCECBDAEFCC1084042B75393990959B28B64B18 * __this, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
// int hashCode = 486187739;
// hashCode = (hashCode * 486187739) + m_ZNear.GetHashCode();
float* L_0 = __this->get_address_of_m_ZNear_0();
int32_t L_1;
L_1 = Single_GetHashCode_m7662E1812DDDBC85D464398740CFFC3588DFB2C9((float*)L_0, /*hidden argument*/NULL);
// hashCode = (hashCode * 486187739) + m_ZFar.GetHashCode();
float* L_2 = __this->get_address_of_m_ZFar_1();
int32_t L_3;
L_3 = Single_GetHashCode_m7662E1812DDDBC85D464398740CFFC3588DFB2C9((float*)L_2, /*hidden argument*/NULL);
// hashCode = (hashCode * 486187739) + m_ScreenWidth.GetHashCode();
float* L_4 = __this->get_address_of_m_ScreenWidth_2();
int32_t L_5;
L_5 = Single_GetHashCode_m7662E1812DDDBC85D464398740CFFC3588DFB2C9((float*)L_4, /*hidden argument*/NULL);
// hashCode = (hashCode * 486187739) + m_ScreenHeight.GetHashCode();
float* L_6 = __this->get_address_of_m_ScreenHeight_3();
int32_t L_7;
L_7 = Single_GetHashCode_m7662E1812DDDBC85D464398740CFFC3588DFB2C9((float*)L_6, /*hidden argument*/NULL);
// hashCode = (hashCode * 486187739) + ((int)m_ScreenOrientation).GetHashCode();
int32_t L_8 = __this->get_m_ScreenOrientation_4();
V_0 = L_8;
int32_t L_9;
L_9 = Int32_GetHashCode_mEDD3F492A5F7CF021125AE3F38E2B8F8743FC667((int32_t*)(&V_0), /*hidden argument*/NULL);
// return hashCode;
return ((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)((int32_t)486187739), (int32_t)((int32_t)486187739))), (int32_t)L_1)), (int32_t)((int32_t)486187739))), (int32_t)L_3)), (int32_t)((int32_t)486187739))), (int32_t)L_5)), (int32_t)((int32_t)486187739))), (int32_t)L_7)), (int32_t)((int32_t)486187739))), (int32_t)L_9));
}
}
IL2CPP_EXTERN_C int32_t XRCameraParams_GetHashCode_m5C9955238ED690EA6A338097DB818F37ECBFDC72_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
XRCameraParams_t9FCECBDAEFCC1084042B75393990959B28B64B18 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XRCameraParams_t9FCECBDAEFCC1084042B75393990959B28B64B18 *>(__this + _offset);
int32_t _returnValue;
_returnValue = XRCameraParams_GetHashCode_m5C9955238ED690EA6A338097DB818F37ECBFDC72(_thisAdjusted, method);
return _returnValue;
}
// System.String UnityEngine.XR.ARSubsystems.XRCameraParams::ToString()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XRCameraParams_ToString_m4CAB10F6C7424973F8A9E72F70283A53C384AF3F (XRCameraParams_t9FCECBDAEFCC1084042B75393990959B28B64B18 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ScreenOrientation_tDD9EF2729A0D580721770597532935B0A7ADE020_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral40C3754113912BBB2324B9A85745EAD27C43B49F);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral4AFE519EAD888D5A627EF6B063C7310AB640C54D);
s_Il2CppMethodInitialized = true;
}
{
// return string.Format("zNear:{0} zFar:{1} screen:{2}x{3}({4})", m_ZNear.ToString("0.000"),
// m_ZFar.ToString("0.000"), m_ScreenWidth.ToString(), m_ScreenHeight.ToString(),
// m_ScreenOrientation.ToString());
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_0 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)SZArrayNew(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE_il2cpp_TypeInfo_var, (uint32_t)5);
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_1 = L_0;
float* L_2 = __this->get_address_of_m_ZNear_0();
String_t* L_3;
L_3 = Single_ToString_m15F10F2AFF80750906CEFCFB456EBA84F9D2E8D7((float*)L_2, _stringLiteral40C3754113912BBB2324B9A85745EAD27C43B49F, /*hidden argument*/NULL);
NullCheck(L_1);
ArrayElementTypeCheck (L_1, L_3);
(L_1)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_3);
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_4 = L_1;
float* L_5 = __this->get_address_of_m_ZFar_1();
String_t* L_6;
L_6 = Single_ToString_m15F10F2AFF80750906CEFCFB456EBA84F9D2E8D7((float*)L_5, _stringLiteral40C3754113912BBB2324B9A85745EAD27C43B49F, /*hidden argument*/NULL);
NullCheck(L_4);
ArrayElementTypeCheck (L_4, L_6);
(L_4)->SetAt(static_cast<il2cpp_array_size_t>(1), (RuntimeObject *)L_6);
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_7 = L_4;
float* L_8 = __this->get_address_of_m_ScreenWidth_2();
String_t* L_9;
L_9 = Single_ToString_m80E7ABED4F4D73F2BE19DDB80D3D92FCD8DFA010((float*)L_8, /*hidden argument*/NULL);
NullCheck(L_7);
ArrayElementTypeCheck (L_7, L_9);
(L_7)->SetAt(static_cast<il2cpp_array_size_t>(2), (RuntimeObject *)L_9);
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_10 = L_7;
float* L_11 = __this->get_address_of_m_ScreenHeight_3();
String_t* L_12;
L_12 = Single_ToString_m80E7ABED4F4D73F2BE19DDB80D3D92FCD8DFA010((float*)L_11, /*hidden argument*/NULL);
NullCheck(L_10);
ArrayElementTypeCheck (L_10, L_12);
(L_10)->SetAt(static_cast<il2cpp_array_size_t>(3), (RuntimeObject *)L_12);
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_13 = L_10;
int32_t* L_14 = __this->get_address_of_m_ScreenOrientation_4();
RuntimeObject * L_15 = Box(ScreenOrientation_tDD9EF2729A0D580721770597532935B0A7ADE020_il2cpp_TypeInfo_var, L_14);
NullCheck(L_15);
String_t* L_16;
L_16 = VirtualFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_15);
*L_14 = *(int32_t*)UnBox(L_15);
NullCheck(L_13);
ArrayElementTypeCheck (L_13, L_16);
(L_13)->SetAt(static_cast<il2cpp_array_size_t>(4), (RuntimeObject *)L_16);
String_t* L_17;
L_17 = String_Format_mCED6767EA5FEE6F15ABCD5B4F9150D1284C2795B(_stringLiteral4AFE519EAD888D5A627EF6B063C7310AB640C54D, L_13, /*hidden argument*/NULL);
return L_17;
}
}
IL2CPP_EXTERN_C String_t* XRCameraParams_ToString_m4CAB10F6C7424973F8A9E72F70283A53C384AF3F_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
XRCameraParams_t9FCECBDAEFCC1084042B75393990959B28B64B18 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XRCameraParams_t9FCECBDAEFCC1084042B75393990959B28B64B18 *>(__this + _offset);
String_t* _returnValue;
_returnValue = XRCameraParams_ToString_m4CAB10F6C7424973F8A9E72F70283A53C384AF3F(_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
// System.Void UnityEngine.XR.ARSubsystems.XRCameraSubsystem::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRCameraSubsystem__ctor_m9DB793A0291AEB063BE13955137FCF52B8A6E222 (XRCameraSubsystem_t3B32F6EA8A2E4D23AF240B5D21C34759D2613AC9 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SubsystemWithProvider_3__ctor_m67FD47729C6247AB68009583EC0102BF76D8F45B_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
// public XRCameraSubsystem()
SubsystemWithProvider_3__ctor_m67FD47729C6247AB68009583EC0102BF76D8F45B(__this, /*hidden argument*/SubsystemWithProvider_3__ctor_m67FD47729C6247AB68009583EC0102BF76D8F45B_RuntimeMethod_var);
// }
return;
}
}
// UnityEngine.XR.ARSubsystems.Feature UnityEngine.XR.ARSubsystems.XRCameraSubsystem::get_currentCamera()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t XRCameraSubsystem_get_currentCamera_mB3E27F8E8DD2E714AE2E714B69EB765A66F82CF0 (XRCameraSubsystem_t3B32F6EA8A2E4D23AF240B5D21C34759D2613AC9 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SubsystemWithProvider_3_get_provider_m06A1D4B30D132FBC0CBB3D07D2446A864DE2144F_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
// public Feature currentCamera => provider.currentCamera.Cameras();
Provider_t55916B0D2766C320DCA36A0C870BA2FD80F8B6D1 * L_0;
L_0 = SubsystemWithProvider_3_get_provider_m06A1D4B30D132FBC0CBB3D07D2446A864DE2144F_inline(__this, /*hidden argument*/SubsystemWithProvider_3_get_provider_m06A1D4B30D132FBC0CBB3D07D2446A864DE2144F_RuntimeMethod_var);
NullCheck(L_0);
uint64_t L_1;
L_1 = VirtualFuncInvoker0< uint64_t >::Invoke(12 /* UnityEngine.XR.ARSubsystems.Feature UnityEngine.XR.ARSubsystems.XRCameraSubsystem/Provider::get_currentCamera() */, L_0);
uint64_t L_2;
L_2 = FeatureExtensions_Cameras_m3814978160FF343F4B295277B62A10A90BE46F7F(L_1, /*hidden argument*/NULL);
return L_2;
}
}
// UnityEngine.XR.ARSubsystems.Feature UnityEngine.XR.ARSubsystems.XRCameraSubsystem::get_requestedCamera()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t XRCameraSubsystem_get_requestedCamera_m3F7CE47E321AD0ADA777EC146B8A1174F2924CAF (XRCameraSubsystem_t3B32F6EA8A2E4D23AF240B5D21C34759D2613AC9 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SubsystemWithProvider_3_get_provider_m06A1D4B30D132FBC0CBB3D07D2446A864DE2144F_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
// get => provider.requestedCamera;
Provider_t55916B0D2766C320DCA36A0C870BA2FD80F8B6D1 * L_0;
L_0 = SubsystemWithProvider_3_get_provider_m06A1D4B30D132FBC0CBB3D07D2446A864DE2144F_inline(__this, /*hidden argument*/SubsystemWithProvider_3_get_provider_m06A1D4B30D132FBC0CBB3D07D2446A864DE2144F_RuntimeMethod_var);
NullCheck(L_0);
uint64_t L_1;
L_1 = VirtualFuncInvoker0< uint64_t >::Invoke(13 /* UnityEngine.XR.ARSubsystems.Feature UnityEngine.XR.ARSubsystems.XRCameraSubsystem/Provider::get_requestedCamera() */, L_0);
return L_1;
}
}
// System.Void UnityEngine.XR.ARSubsystems.XRCameraSubsystem::set_requestedCamera(UnityEngine.XR.ARSubsystems.Feature)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRCameraSubsystem_set_requestedCamera_m947B0B046798E375F7761A49948B6BB56CC92BED (XRCameraSubsystem_t3B32F6EA8A2E4D23AF240B5D21C34759D2613AC9 * __this, uint64_t ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SubsystemWithProvider_3_get_provider_m06A1D4B30D132FBC0CBB3D07D2446A864DE2144F_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
// set => provider.requestedCamera = value.Cameras();
Provider_t55916B0D2766C320DCA36A0C870BA2FD80F8B6D1 * L_0;
L_0 = SubsystemWithProvider_3_get_provider_m06A1D4B30D132FBC0CBB3D07D2446A864DE2144F_inline(__this, /*hidden argument*/SubsystemWithProvider_3_get_provider_m06A1D4B30D132FBC0CBB3D07D2446A864DE2144F_RuntimeMethod_var);
uint64_t L_1 = ___value0;
uint64_t L_2;
L_2 = FeatureExtensions_Cameras_m3814978160FF343F4B295277B62A10A90BE46F7F(L_1, /*hidden argument*/NULL);
NullCheck(L_0);
VirtualActionInvoker1< uint64_t >::Invoke(14 /* System.Void UnityEngine.XR.ARSubsystems.XRCameraSubsystem/Provider::set_requestedCamera(UnityEngine.XR.ARSubsystems.Feature) */, L_0, L_2);
return;
}
}
// System.Boolean UnityEngine.XR.ARSubsystems.XRCameraSubsystem::get_autoFocusEnabled()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XRCameraSubsystem_get_autoFocusEnabled_mADFDC78EE330D8850DAC9ED5B2D2109302D6A115 (XRCameraSubsystem_t3B32F6EA8A2E4D23AF240B5D21C34759D2613AC9 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SubsystemWithProvider_3_get_provider_m06A1D4B30D132FBC0CBB3D07D2446A864DE2144F_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
// public bool autoFocusEnabled => provider.autoFocusEnabled;
Provider_t55916B0D2766C320DCA36A0C870BA2FD80F8B6D1 * L_0;
L_0 = SubsystemWithProvider_3_get_provider_m06A1D4B30D132FBC0CBB3D07D2446A864DE2144F_inline(__this, /*hidden argument*/SubsystemWithProvider_3_get_provider_m06A1D4B30D132FBC0CBB3D07D2446A864DE2144F_RuntimeMethod_var);
NullCheck(L_0);
bool L_1;
L_1 = VirtualFuncInvoker0< bool >::Invoke(16 /* System.Boolean UnityEngine.XR.ARSubsystems.XRCameraSubsystem/Provider::get_autoFocusEnabled() */, L_0);
return L_1;
}
}
// System.Boolean UnityEngine.XR.ARSubsystems.XRCameraSubsystem::get_autoFocusRequested()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XRCameraSubsystem_get_autoFocusRequested_mE9FFCC3C727160F0009E4DE86900B04C2F27F18D (XRCameraSubsystem_t3B32F6EA8A2E4D23AF240B5D21C34759D2613AC9 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SubsystemWithProvider_3_get_provider_m06A1D4B30D132FBC0CBB3D07D2446A864DE2144F_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
// get => provider.autoFocusRequested;
Provider_t55916B0D2766C320DCA36A0C870BA2FD80F8B6D1 * L_0;
L_0 = SubsystemWithProvider_3_get_provider_m06A1D4B30D132FBC0CBB3D07D2446A864DE2144F_inline(__this, /*hidden argument*/SubsystemWithProvider_3_get_provider_m06A1D4B30D132FBC0CBB3D07D2446A864DE2144F_RuntimeMethod_var);
NullCheck(L_0);
bool L_1;
L_1 = VirtualFuncInvoker0< bool >::Invoke(17 /* System.Boolean UnityEngine.XR.ARSubsystems.XRCameraSubsystem/Provider::get_autoFocusRequested() */, L_0);
return L_1;
}
}
// System.Void UnityEngine.XR.ARSubsystems.XRCameraSubsystem::set_autoFocusRequested(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRCameraSubsystem_set_autoFocusRequested_mC296C345AAFDED318589BD639E9CCF076F09DD5E (XRCameraSubsystem_t3B32F6EA8A2E4D23AF240B5D21C34759D2613AC9 * __this, bool ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SubsystemWithProvider_3_get_provider_m06A1D4B30D132FBC0CBB3D07D2446A864DE2144F_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
// set => provider.autoFocusRequested = value;
Provider_t55916B0D2766C320DCA36A0C870BA2FD80F8B6D1 * L_0;
L_0 = SubsystemWithProvider_3_get_provider_m06A1D4B30D132FBC0CBB3D07D2446A864DE2144F_inline(__this, /*hidden argument*/SubsystemWithProvider_3_get_provider_m06A1D4B30D132FBC0CBB3D07D2446A864DE2144F_RuntimeMethod_var);
bool L_1 = ___value0;
NullCheck(L_0);
VirtualActionInvoker1< bool >::Invoke(18 /* System.Void UnityEngine.XR.ARSubsystems.XRCameraSubsystem/Provider::set_autoFocusRequested(System.Boolean) */, L_0, L_1);
return;
}
}
// UnityEngine.XR.ARSubsystems.Feature UnityEngine.XR.ARSubsystems.XRCameraSubsystem::get_currentLightEstimation()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t XRCameraSubsystem_get_currentLightEstimation_m9A5F99B36DD0779E36EA40AC383ECA1270EB2035 (XRCameraSubsystem_t3B32F6EA8A2E4D23AF240B5D21C34759D2613AC9 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SubsystemWithProvider_3_get_provider_m06A1D4B30D132FBC0CBB3D07D2446A864DE2144F_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
// public Feature currentLightEstimation => provider.currentLightEstimation.LightEstimation();
Provider_t55916B0D2766C320DCA36A0C870BA2FD80F8B6D1 * L_0;
L_0 = SubsystemWithProvider_3_get_provider_m06A1D4B30D132FBC0CBB3D07D2446A864DE2144F_inline(__this, /*hidden argument*/SubsystemWithProvider_3_get_provider_m06A1D4B30D132FBC0CBB3D07D2446A864DE2144F_RuntimeMethod_var);
NullCheck(L_0);
uint64_t L_1;
L_1 = VirtualFuncInvoker0< uint64_t >::Invoke(19 /* UnityEngine.XR.ARSubsystems.Feature UnityEngine.XR.ARSubsystems.XRCameraSubsystem/Provider::get_currentLightEstimation() */, L_0);
uint64_t L_2;
L_2 = FeatureExtensions_LightEstimation_m7FF62D53AE0E08C1B8923FAB371C228B7DF190C5(L_1, /*hidden argument*/NULL);
return L_2;
}
}
// UnityEngine.XR.ARSubsystems.Feature UnityEngine.XR.ARSubsystems.XRCameraSubsystem::get_requestedLightEstimation()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t XRCameraSubsystem_get_requestedLightEstimation_m3B23B765873E67D657FCCBBAC6C1631198345DA3 (XRCameraSubsystem_t3B32F6EA8A2E4D23AF240B5D21C34759D2613AC9 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SubsystemWithProvider_3_get_provider_m06A1D4B30D132FBC0CBB3D07D2446A864DE2144F_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
// get => provider.requestedLightEstimation.LightEstimation();
Provider_t55916B0D2766C320DCA36A0C870BA2FD80F8B6D1 * L_0;
L_0 = SubsystemWithProvider_3_get_provider_m06A1D4B30D132FBC0CBB3D07D2446A864DE2144F_inline(__this, /*hidden argument*/SubsystemWithProvider_3_get_provider_m06A1D4B30D132FBC0CBB3D07D2446A864DE2144F_RuntimeMethod_var);
NullCheck(L_0);
uint64_t L_1;
L_1 = VirtualFuncInvoker0< uint64_t >::Invoke(20 /* UnityEngine.XR.ARSubsystems.Feature UnityEngine.XR.ARSubsystems.XRCameraSubsystem/Provider::get_requestedLightEstimation() */, L_0);
uint64_t L_2;
L_2 = FeatureExtensions_LightEstimation_m7FF62D53AE0E08C1B8923FAB371C228B7DF190C5(L_1, /*hidden argument*/NULL);
return L_2;
}
}
// System.Void UnityEngine.XR.ARSubsystems.XRCameraSubsystem::set_requestedLightEstimation(UnityEngine.XR.ARSubsystems.Feature)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRCameraSubsystem_set_requestedLightEstimation_m4EF957265B8AA95985BEBA40F01EC2CD9F1FFA2C (XRCameraSubsystem_t3B32F6EA8A2E4D23AF240B5D21C34759D2613AC9 * __this, uint64_t ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SubsystemWithProvider_3_get_provider_m06A1D4B30D132FBC0CBB3D07D2446A864DE2144F_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
// set => provider.requestedLightEstimation = value.LightEstimation();
Provider_t55916B0D2766C320DCA36A0C870BA2FD80F8B6D1 * L_0;
L_0 = SubsystemWithProvider_3_get_provider_m06A1D4B30D132FBC0CBB3D07D2446A864DE2144F_inline(__this, /*hidden argument*/SubsystemWithProvider_3_get_provider_m06A1D4B30D132FBC0CBB3D07D2446A864DE2144F_RuntimeMethod_var);
uint64_t L_1 = ___value0;
uint64_t L_2;
L_2 = FeatureExtensions_LightEstimation_m7FF62D53AE0E08C1B8923FAB371C228B7DF190C5(L_1, /*hidden argument*/NULL);
NullCheck(L_0);
VirtualActionInvoker1< uint64_t >::Invoke(21 /* System.Void UnityEngine.XR.ARSubsystems.XRCameraSubsystem/Provider::set_requestedLightEstimation(UnityEngine.XR.ARSubsystems.Feature) */, L_0, L_2);
return;
}
}
// Unity.Collections.NativeArray`1<UnityEngine.XR.ARSubsystems.XRTextureDescriptor> UnityEngine.XR.ARSubsystems.XRCameraSubsystem::GetTextureDescriptors(Unity.Collections.Allocator)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NativeArray_1_t290DD5A348463DD4415AFE27775047312478F952 XRCameraSubsystem_GetTextureDescriptors_m961437CFE5B36E5845F6752530668DC0673F9F0D (XRCameraSubsystem_t3B32F6EA8A2E4D23AF240B5D21C34759D2613AC9 * __this, int32_t ___allocator0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SubsystemWithProvider_3_get_provider_m06A1D4B30D132FBC0CBB3D07D2446A864DE2144F_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
XRTextureDescriptor_t9CA857DCCC1208B74376787BE4F3008A01B29A57 V_0;
memset((&V_0), 0, sizeof(V_0));
{
// return provider.GetTextureDescriptors(
// default(XRTextureDescriptor),
// allocator);
Provider_t55916B0D2766C320DCA36A0C870BA2FD80F8B6D1 * L_0;
L_0 = SubsystemWithProvider_3_get_provider_m06A1D4B30D132FBC0CBB3D07D2446A864DE2144F_inline(__this, /*hidden argument*/SubsystemWithProvider_3_get_provider_m06A1D4B30D132FBC0CBB3D07D2446A864DE2144F_RuntimeMethod_var);
il2cpp_codegen_initobj((&V_0), sizeof(XRTextureDescriptor_t9CA857DCCC1208B74376787BE4F3008A01B29A57 ));
XRTextureDescriptor_t9CA857DCCC1208B74376787BE4F3008A01B29A57 L_1 = V_0;
int32_t L_2 = ___allocator0;
NullCheck(L_0);
NativeArray_1_t290DD5A348463DD4415AFE27775047312478F952 L_3;
L_3 = VirtualFuncInvoker2< NativeArray_1_t290DD5A348463DD4415AFE27775047312478F952 , XRTextureDescriptor_t9CA857DCCC1208B74376787BE4F3008A01B29A57 , int32_t >::Invoke(26 /* Unity.Collections.NativeArray`1<UnityEngine.XR.ARSubsystems.XRTextureDescriptor> UnityEngine.XR.ARSubsystems.XRCameraSubsystem/Provider::GetTextureDescriptors(UnityEngine.XR.ARSubsystems.XRTextureDescriptor,Unity.Collections.Allocator) */, L_0, L_1, L_2);
return L_3;
}
}
// UnityEngine.Material UnityEngine.XR.ARSubsystems.XRCameraSubsystem::get_cameraMaterial()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Material_t8927C00353A72755313F046D0CE85178AE8218EE * XRCameraSubsystem_get_cameraMaterial_mDA4DBC2831E55D115436978A0D2113AAA17227E3 (XRCameraSubsystem_t3B32F6EA8A2E4D23AF240B5D21C34759D2613AC9 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SubsystemWithProvider_3_get_provider_m06A1D4B30D132FBC0CBB3D07D2446A864DE2144F_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
// public Material cameraMaterial => provider.cameraMaterial;
Provider_t55916B0D2766C320DCA36A0C870BA2FD80F8B6D1 * L_0;
L_0 = SubsystemWithProvider_3_get_provider_m06A1D4B30D132FBC0CBB3D07D2446A864DE2144F_inline(__this, /*hidden argument*/SubsystemWithProvider_3_get_provider_m06A1D4B30D132FBC0CBB3D07D2446A864DE2144F_RuntimeMethod_var);
NullCheck(L_0);
Material_t8927C00353A72755313F046D0CE85178AE8218EE * L_1;
L_1 = VirtualFuncInvoker0< Material_t8927C00353A72755313F046D0CE85178AE8218EE * >::Invoke(9 /* UnityEngine.Material UnityEngine.XR.ARSubsystems.XRCameraSubsystem/Provider::get_cameraMaterial() */, L_0);
return L_1;
}
}
// System.Void UnityEngine.XR.ARSubsystems.XRCameraSubsystem::OnBeforeBackgroundRender(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRCameraSubsystem_OnBeforeBackgroundRender_mC33251AA0F3D003991512D1EC8C15358ACC2EFD6 (XRCameraSubsystem_t3B32F6EA8A2E4D23AF240B5D21C34759D2613AC9 * __this, int32_t ___id0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SubsystemWithProvider_3_get_provider_m06A1D4B30D132FBC0CBB3D07D2446A864DE2144F_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
// provider.OnBeforeBackgroundRender(id);
Provider_t55916B0D2766C320DCA36A0C870BA2FD80F8B6D1 * L_0;
L_0 = SubsystemWithProvider_3_get_provider_m06A1D4B30D132FBC0CBB3D07D2446A864DE2144F_inline(__this, /*hidden argument*/SubsystemWithProvider_3_get_provider_m06A1D4B30D132FBC0CBB3D07D2446A864DE2144F_RuntimeMethod_var);
int32_t L_1 = ___id0;
NullCheck(L_0);
VirtualActionInvoker1< int32_t >::Invoke(29 /* System.Void UnityEngine.XR.ARSubsystems.XRCameraSubsystem/Provider::OnBeforeBackgroundRender(System.Int32) */, L_0, L_1);
// }
return;
}
}
// System.Boolean UnityEngine.XR.ARSubsystems.XRCameraSubsystem::TryGetIntrinsics(UnityEngine.XR.ARSubsystems.XRCameraIntrinsics&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XRCameraSubsystem_TryGetIntrinsics_m2C0875523610ECCF7832A4427CC40EE9BF4E83EB (XRCameraSubsystem_t3B32F6EA8A2E4D23AF240B5D21C34759D2613AC9 * __this, XRCameraIntrinsics_t85F1514E263A6C6DE96DBA5448B44F11F35395FD * ___cameraIntrinsics0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SubsystemWithProvider_3_get_provider_m06A1D4B30D132FBC0CBB3D07D2446A864DE2144F_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
// return provider.TryGetIntrinsics(out cameraIntrinsics);
Provider_t55916B0D2766C320DCA36A0C870BA2FD80F8B6D1 * L_0;
L_0 = SubsystemWithProvider_3_get_provider_m06A1D4B30D132FBC0CBB3D07D2446A864DE2144F_inline(__this, /*hidden argument*/SubsystemWithProvider_3_get_provider_m06A1D4B30D132FBC0CBB3D07D2446A864DE2144F_RuntimeMethod_var);
XRCameraIntrinsics_t85F1514E263A6C6DE96DBA5448B44F11F35395FD * L_1 = ___cameraIntrinsics0;
NullCheck(L_0);
bool L_2;
L_2 = VirtualFuncInvoker1< bool, XRCameraIntrinsics_t85F1514E263A6C6DE96DBA5448B44F11F35395FD * >::Invoke(22 /* System.Boolean UnityEngine.XR.ARSubsystems.XRCameraSubsystem/Provider::TryGetIntrinsics(UnityEngine.XR.ARSubsystems.XRCameraIntrinsics&) */, L_0, (XRCameraIntrinsics_t85F1514E263A6C6DE96DBA5448B44F11F35395FD *)L_1);
return L_2;
}
}
// Unity.Collections.NativeArray`1<UnityEngine.XR.ARSubsystems.XRCameraConfiguration> UnityEngine.XR.ARSubsystems.XRCameraSubsystem::GetConfigurations(Unity.Collections.Allocator)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NativeArray_1_t80D42D57D2D76B05EFDA2CF74AE660AB5FDD9545 XRCameraSubsystem_GetConfigurations_mB60A927EEA207615D63A2CBF64654A07C8C76A5C (XRCameraSubsystem_t3B32F6EA8A2E4D23AF240B5D21C34759D2613AC9 * __this, int32_t ___allocator0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SubsystemWithProvider_3_get_provider_m06A1D4B30D132FBC0CBB3D07D2446A864DE2144F_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
XRCameraConfiguration_t2393055E5547307393E9C73AB13B95E0785A4F7A V_0;
memset((&V_0), 0, sizeof(V_0));
{
// return provider.GetConfigurations(default(XRCameraConfiguration), allocator);
Provider_t55916B0D2766C320DCA36A0C870BA2FD80F8B6D1 * L_0;
L_0 = SubsystemWithProvider_3_get_provider_m06A1D4B30D132FBC0CBB3D07D2446A864DE2144F_inline(__this, /*hidden argument*/SubsystemWithProvider_3_get_provider_m06A1D4B30D132FBC0CBB3D07D2446A864DE2144F_RuntimeMethod_var);
il2cpp_codegen_initobj((&V_0), sizeof(XRCameraConfiguration_t2393055E5547307393E9C73AB13B95E0785A4F7A ));
XRCameraConfiguration_t2393055E5547307393E9C73AB13B95E0785A4F7A L_1 = V_0;
int32_t L_2 = ___allocator0;
NullCheck(L_0);
NativeArray_1_t80D42D57D2D76B05EFDA2CF74AE660AB5FDD9545 L_3;
L_3 = VirtualFuncInvoker2< NativeArray_1_t80D42D57D2D76B05EFDA2CF74AE660AB5FDD9545 , XRCameraConfiguration_t2393055E5547307393E9C73AB13B95E0785A4F7A , int32_t >::Invoke(23 /* Unity.Collections.NativeArray`1<UnityEngine.XR.ARSubsystems.XRCameraConfiguration> UnityEngine.XR.ARSubsystems.XRCameraSubsystem/Provider::GetConfigurations(UnityEngine.XR.ARSubsystems.XRCameraConfiguration,Unity.Collections.Allocator) */, L_0, L_1, L_2);
return L_3;
}
}
// System.Nullable`1<UnityEngine.XR.ARSubsystems.XRCameraConfiguration> UnityEngine.XR.ARSubsystems.XRCameraSubsystem::get_currentConfiguration()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Nullable_1_t661141E668063C73311C9DF09B3AE945EA9A1D8C XRCameraSubsystem_get_currentConfiguration_m5A53BB5CE3AEC31C3652B41EC9DE72FEA342FFCB (XRCameraSubsystem_t3B32F6EA8A2E4D23AF240B5D21C34759D2613AC9 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SubsystemWithProvider_3_get_provider_m06A1D4B30D132FBC0CBB3D07D2446A864DE2144F_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
// get => provider.currentConfiguration;
Provider_t55916B0D2766C320DCA36A0C870BA2FD80F8B6D1 * L_0;
L_0 = SubsystemWithProvider_3_get_provider_m06A1D4B30D132FBC0CBB3D07D2446A864DE2144F_inline(__this, /*hidden argument*/SubsystemWithProvider_3_get_provider_m06A1D4B30D132FBC0CBB3D07D2446A864DE2144F_RuntimeMethod_var);
NullCheck(L_0);
Nullable_1_t661141E668063C73311C9DF09B3AE945EA9A1D8C L_1;
L_1 = VirtualFuncInvoker0< Nullable_1_t661141E668063C73311C9DF09B3AE945EA9A1D8C >::Invoke(24 /* System.Nullable`1<UnityEngine.XR.ARSubsystems.XRCameraConfiguration> UnityEngine.XR.ARSubsystems.XRCameraSubsystem/Provider::get_currentConfiguration() */, L_0);
return L_1;
}
}
// System.Void UnityEngine.XR.ARSubsystems.XRCameraSubsystem::set_currentConfiguration(System.Nullable`1<UnityEngine.XR.ARSubsystems.XRCameraConfiguration>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRCameraSubsystem_set_currentConfiguration_mC95F953BE80DD210302A590EBBF46216FDB0F32D (XRCameraSubsystem_t3B32F6EA8A2E4D23AF240B5D21C34759D2613AC9 * __this, Nullable_1_t661141E668063C73311C9DF09B3AE945EA9A1D8C ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1_get_HasValue_mD8E0C85C96E8F68E55600773D64912BF77F68545_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SubsystemWithProvider_3_get_provider_m06A1D4B30D132FBC0CBB3D07D2446A864DE2144F_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
// if (value == null)
bool L_0;
L_0 = Nullable_1_get_HasValue_mD8E0C85C96E8F68E55600773D64912BF77F68545_inline((Nullable_1_t661141E668063C73311C9DF09B3AE945EA9A1D8C *)(&___value0), /*hidden argument*/Nullable_1_get_HasValue_mD8E0C85C96E8F68E55600773D64912BF77F68545_RuntimeMethod_var);
if (L_0)
{
goto IL_0019;
}
}
{
// throw new ArgumentNullException("value", "cannot set the camera configuration to null");
ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB * L_1 = (ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB_il2cpp_TypeInfo_var)));
ArgumentNullException__ctor_mAD2F05A24C92A657CBCA8C43A9A373C53739A283(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral46F273EF641E07D271D91E0DC24A4392582671F8)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral02FD50D325E1D2E26EF752CF35F3BA993AC548E4)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XRCameraSubsystem_set_currentConfiguration_mC95F953BE80DD210302A590EBBF46216FDB0F32D_RuntimeMethod_var)));
}
IL_0019:
{
// provider.currentConfiguration = value;
Provider_t55916B0D2766C320DCA36A0C870BA2FD80F8B6D1 * L_2;
L_2 = SubsystemWithProvider_3_get_provider_m06A1D4B30D132FBC0CBB3D07D2446A864DE2144F_inline(__this, /*hidden argument*/SubsystemWithProvider_3_get_provider_m06A1D4B30D132FBC0CBB3D07D2446A864DE2144F_RuntimeMethod_var);
Nullable_1_t661141E668063C73311C9DF09B3AE945EA9A1D8C L_3 = ___value0;
NullCheck(L_2);
VirtualActionInvoker1< Nullable_1_t661141E668063C73311C9DF09B3AE945EA9A1D8C >::Invoke(25 /* System.Void UnityEngine.XR.ARSubsystems.XRCameraSubsystem/Provider::set_currentConfiguration(System.Nullable`1<UnityEngine.XR.ARSubsystems.XRCameraConfiguration>) */, L_2, L_3);
// }
return;
}
}
// System.Boolean UnityEngine.XR.ARSubsystems.XRCameraSubsystem::get_invertCulling()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XRCameraSubsystem_get_invertCulling_m16E9819EBE5D40798B6022B4FE63D10A228FB019 (XRCameraSubsystem_t3B32F6EA8A2E4D23AF240B5D21C34759D2613AC9 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SubsystemWithProvider_3_get_provider_m06A1D4B30D132FBC0CBB3D07D2446A864DE2144F_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
// public bool invertCulling => provider.invertCulling;
Provider_t55916B0D2766C320DCA36A0C870BA2FD80F8B6D1 * L_0;
L_0 = SubsystemWithProvider_3_get_provider_m06A1D4B30D132FBC0CBB3D07D2446A864DE2144F_inline(__this, /*hidden argument*/SubsystemWithProvider_3_get_provider_m06A1D4B30D132FBC0CBB3D07D2446A864DE2144F_RuntimeMethod_var);
NullCheck(L_0);
bool L_1;
L_1 = VirtualFuncInvoker0< bool >::Invoke(11 /* System.Boolean UnityEngine.XR.ARSubsystems.XRCameraSubsystem/Provider::get_invertCulling() */, L_0);
return L_1;
}
}
// System.Boolean UnityEngine.XR.ARSubsystems.XRCameraSubsystem::TryGetLatestFrame(UnityEngine.XR.ARSubsystems.XRCameraParams,UnityEngine.XR.ARSubsystems.XRCameraFrame&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XRCameraSubsystem_TryGetLatestFrame_m5ED10032B81B83B7A68305B2D6FE8DEA21852C86 (XRCameraSubsystem_t3B32F6EA8A2E4D23AF240B5D21C34759D2613AC9 * __this, XRCameraParams_t9FCECBDAEFCC1084042B75393990959B28B64B18 ___cameraParams0, XRCameraFrame_t5FD7B7FC22B478AC6B00AD01A0AD6F2295EA1BA8 * ___frame1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SubsystemWithProvider_3_get_provider_m06A1D4B30D132FBC0CBB3D07D2446A864DE2144F_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
// if (running && provider.TryGetFrame(cameraParams, out frame))
bool L_0;
L_0 = SubsystemWithProvider_get_running_m42399652EC4AB466AFBAC9035FA77C1BD6C72406_inline(__this, /*hidden argument*/NULL);
if (!L_0)
{
goto IL_0019;
}
}
{
Provider_t55916B0D2766C320DCA36A0C870BA2FD80F8B6D1 * L_1;
L_1 = SubsystemWithProvider_3_get_provider_m06A1D4B30D132FBC0CBB3D07D2446A864DE2144F_inline(__this, /*hidden argument*/SubsystemWithProvider_3_get_provider_m06A1D4B30D132FBC0CBB3D07D2446A864DE2144F_RuntimeMethod_var);
XRCameraParams_t9FCECBDAEFCC1084042B75393990959B28B64B18 L_2 = ___cameraParams0;
XRCameraFrame_t5FD7B7FC22B478AC6B00AD01A0AD6F2295EA1BA8 * L_3 = ___frame1;
NullCheck(L_1);
bool L_4;
L_4 = VirtualFuncInvoker2< bool, XRCameraParams_t9FCECBDAEFCC1084042B75393990959B28B64B18 , XRCameraFrame_t5FD7B7FC22B478AC6B00AD01A0AD6F2295EA1BA8 * >::Invoke(15 /* System.Boolean UnityEngine.XR.ARSubsystems.XRCameraSubsystem/Provider::TryGetFrame(UnityEngine.XR.ARSubsystems.XRCameraParams,UnityEngine.XR.ARSubsystems.XRCameraFrame&) */, L_1, L_2, (XRCameraFrame_t5FD7B7FC22B478AC6B00AD01A0AD6F2295EA1BA8 *)L_3);
if (!L_4)
{
goto IL_0019;
}
}
{
// return true;
return (bool)1;
}
IL_0019:
{
// frame = default(XRCameraFrame);
XRCameraFrame_t5FD7B7FC22B478AC6B00AD01A0AD6F2295EA1BA8 * L_5 = ___frame1;
il2cpp_codegen_initobj(L_5, sizeof(XRCameraFrame_t5FD7B7FC22B478AC6B00AD01A0AD6F2295EA1BA8 ));
// return false;
return (bool)0;
}
}
// System.Boolean UnityEngine.XR.ARSubsystems.XRCameraSubsystem::get_permissionGranted()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XRCameraSubsystem_get_permissionGranted_mD9B28FCEF7A1C3EB8465639F5A587C255108D4F1 (XRCameraSubsystem_t3B32F6EA8A2E4D23AF240B5D21C34759D2613AC9 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SubsystemWithProvider_3_get_provider_m06A1D4B30D132FBC0CBB3D07D2446A864DE2144F_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
// public bool permissionGranted => provider.permissionGranted;
Provider_t55916B0D2766C320DCA36A0C870BA2FD80F8B6D1 * L_0;
L_0 = SubsystemWithProvider_3_get_provider_m06A1D4B30D132FBC0CBB3D07D2446A864DE2144F_inline(__this, /*hidden argument*/SubsystemWithProvider_3_get_provider_m06A1D4B30D132FBC0CBB3D07D2446A864DE2144F_RuntimeMethod_var);
NullCheck(L_0);
bool L_1;
L_1 = VirtualFuncInvoker0< bool >::Invoke(10 /* System.Boolean UnityEngine.XR.ARSubsystems.XRCameraSubsystem/Provider::get_permissionGranted() */, L_0);
return L_1;
}
}
// System.Void UnityEngine.XR.ARSubsystems.XRCameraSubsystem::GetMaterialKeywords(System.Collections.Generic.List`1<System.String>&,System.Collections.Generic.List`1<System.String>&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRCameraSubsystem_GetMaterialKeywords_mFA8D645BE9C8514542C48BBF628696FC816A4AF0 (XRCameraSubsystem_t3B32F6EA8A2E4D23AF240B5D21C34759D2613AC9 * __this, List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3 ** ___enabledKeywords0, List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3 ** ___disabledKeywords1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SubsystemWithProvider_3_get_provider_m06A1D4B30D132FBC0CBB3D07D2446A864DE2144F_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
// => provider.GetMaterialKeywords(out enabledKeywords, out disabledKeywords);
Provider_t55916B0D2766C320DCA36A0C870BA2FD80F8B6D1 * L_0;
L_0 = SubsystemWithProvider_3_get_provider_m06A1D4B30D132FBC0CBB3D07D2446A864DE2144F_inline(__this, /*hidden argument*/SubsystemWithProvider_3_get_provider_m06A1D4B30D132FBC0CBB3D07D2446A864DE2144F_RuntimeMethod_var);
List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3 ** L_1 = ___enabledKeywords0;
List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3 ** L_2 = ___disabledKeywords1;
NullCheck(L_0);
VirtualActionInvoker2< List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3 **, List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3 ** >::Invoke(27 /* System.Void UnityEngine.XR.ARSubsystems.XRCameraSubsystem/Provider::GetMaterialKeywords(System.Collections.Generic.List`1<System.String>&,System.Collections.Generic.List`1<System.String>&) */, L_0, (List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3 **)L_1, (List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3 **)L_2);
return;
}
}
// System.Boolean UnityEngine.XR.ARSubsystems.XRCameraSubsystem::TryAcquireLatestCpuImage(UnityEngine.XR.ARSubsystems.XRCpuImage&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XRCameraSubsystem_TryAcquireLatestCpuImage_mEF24B1D7F9C32CC87E769905E61556566EBFA9DE (XRCameraSubsystem_t3B32F6EA8A2E4D23AF240B5D21C34759D2613AC9 * __this, XRCpuImage_tA48C0687D95D3D63D1101E4E08EFCF0ABB2431CE * ___cpuImage0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SubsystemWithProvider_3_get_provider_m06A1D4B30D132FBC0CBB3D07D2446A864DE2144F_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
Cinfo_t4E32E30AF6973611F1DD0F47FC041ED3A8775DA6 V_0;
memset((&V_0), 0, sizeof(V_0));
{
// if (provider.cpuImageApi != null && provider.TryAcquireLatestCpuImage(out var cinfo))
Provider_t55916B0D2766C320DCA36A0C870BA2FD80F8B6D1 * L_0;
L_0 = SubsystemWithProvider_3_get_provider_m06A1D4B30D132FBC0CBB3D07D2446A864DE2144F_inline(__this, /*hidden argument*/SubsystemWithProvider_3_get_provider_m06A1D4B30D132FBC0CBB3D07D2446A864DE2144F_RuntimeMethod_var);
NullCheck(L_0);
Api_t7C92F00C6416A2C636A44AAC833C3773C567DC3E * L_1;
L_1 = VirtualFuncInvoker0< Api_t7C92F00C6416A2C636A44AAC833C3773C567DC3E * >::Invoke(8 /* UnityEngine.XR.ARSubsystems.XRCpuImage/Api UnityEngine.XR.ARSubsystems.XRCameraSubsystem/Provider::get_cpuImageApi() */, L_0);
if (!L_1)
{
goto IL_0035;
}
}
{
Provider_t55916B0D2766C320DCA36A0C870BA2FD80F8B6D1 * L_2;
L_2 = SubsystemWithProvider_3_get_provider_m06A1D4B30D132FBC0CBB3D07D2446A864DE2144F_inline(__this, /*hidden argument*/SubsystemWithProvider_3_get_provider_m06A1D4B30D132FBC0CBB3D07D2446A864DE2144F_RuntimeMethod_var);
NullCheck(L_2);
bool L_3;
L_3 = VirtualFuncInvoker1< bool, Cinfo_t4E32E30AF6973611F1DD0F47FC041ED3A8775DA6 * >::Invoke(28 /* System.Boolean UnityEngine.XR.ARSubsystems.XRCameraSubsystem/Provider::TryAcquireLatestCpuImage(UnityEngine.XR.ARSubsystems.XRCpuImage/Cinfo&) */, L_2, (Cinfo_t4E32E30AF6973611F1DD0F47FC041ED3A8775DA6 *)(&V_0));
if (!L_3)
{
goto IL_0035;
}
}
{
// cpuImage = new XRCpuImage(provider.cpuImageApi, cinfo);
XRCpuImage_tA48C0687D95D3D63D1101E4E08EFCF0ABB2431CE * L_4 = ___cpuImage0;
Provider_t55916B0D2766C320DCA36A0C870BA2FD80F8B6D1 * L_5;
L_5 = SubsystemWithProvider_3_get_provider_m06A1D4B30D132FBC0CBB3D07D2446A864DE2144F_inline(__this, /*hidden argument*/SubsystemWithProvider_3_get_provider_m06A1D4B30D132FBC0CBB3D07D2446A864DE2144F_RuntimeMethod_var);
NullCheck(L_5);
Api_t7C92F00C6416A2C636A44AAC833C3773C567DC3E * L_6;
L_6 = VirtualFuncInvoker0< Api_t7C92F00C6416A2C636A44AAC833C3773C567DC3E * >::Invoke(8 /* UnityEngine.XR.ARSubsystems.XRCpuImage/Api UnityEngine.XR.ARSubsystems.XRCameraSubsystem/Provider::get_cpuImageApi() */, L_5);
Cinfo_t4E32E30AF6973611F1DD0F47FC041ED3A8775DA6 L_7 = V_0;
XRCpuImage_tA48C0687D95D3D63D1101E4E08EFCF0ABB2431CE L_8;
memset((&L_8), 0, sizeof(L_8));
XRCpuImage__ctor_mA44BE98BA315639462481743B96A650B89F7C26E((&L_8), L_6, L_7, /*hidden argument*/NULL);
*(XRCpuImage_tA48C0687D95D3D63D1101E4E08EFCF0ABB2431CE *)L_4 = L_8;
Il2CppCodeGenWriteBarrier((void**)&(((XRCpuImage_tA48C0687D95D3D63D1101E4E08EFCF0ABB2431CE *)L_4)->___m_Api_1), (void*)NULL);
// return true;
return (bool)1;
}
IL_0035:
{
// cpuImage = default;
XRCpuImage_tA48C0687D95D3D63D1101E4E08EFCF0ABB2431CE * L_9 = ___cpuImage0;
il2cpp_codegen_initobj(L_9, sizeof(XRCpuImage_tA48C0687D95D3D63D1101E4E08EFCF0ABB2431CE ));
// return false;
return (bool)0;
}
}
// System.Boolean UnityEngine.XR.ARSubsystems.XRCameraSubsystem::Register(UnityEngine.XR.ARSubsystems.XRCameraSubsystemCinfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XRCameraSubsystem_Register_m8E9CD378020A98CC1728A5C0A3324D25439921F4 (XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096 ___cameraSubsystemParams0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SubsystemDescriptorStore_tE5D99C3159868DE6506269CB6B830621F8BC31A6_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
// XRCameraSubsystemDescriptor cameraSubsystemDescriptor = XRCameraSubsystemDescriptor.Create(cameraSubsystemParams);
XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096 L_0 = ___cameraSubsystemParams0;
XRCameraSubsystemDescriptor_t1F8A45C69031E2981B1863518C43793D26E2C5E5 * L_1;
L_1 = XRCameraSubsystemDescriptor_Create_mEC826CD90D35D17847339952F5022081EF871033(L_0, /*hidden argument*/NULL);
// SubsystemDescriptorStore.RegisterDescriptor(cameraSubsystemDescriptor);
IL2CPP_RUNTIME_CLASS_INIT(SubsystemDescriptorStore_tE5D99C3159868DE6506269CB6B830621F8BC31A6_il2cpp_TypeInfo_var);
SubsystemDescriptorStore_RegisterDescriptor_m5586866BB233EF26B98640851816DD1764657688(L_1, /*hidden argument*/NULL);
// return true;
return (bool)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
// Conversion methods for marshalling of: UnityEngine.XR.ARSubsystems.XRCameraSubsystemCinfo
IL2CPP_EXTERN_C void XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096_marshal_pinvoke(const XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096& unmarshaled, XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096_marshaled_pinvoke& marshaled)
{
Exception_t* ___U3CproviderTypeU3Ek__BackingField_1Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field '<providerType>k__BackingField' of type 'XRCameraSubsystemCinfo': Reference type field marshaling is not supported.");
IL2CPP_RAISE_MANAGED_EXCEPTION(___U3CproviderTypeU3Ek__BackingField_1Exception, NULL);
}
IL2CPP_EXTERN_C void XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096_marshal_pinvoke_back(const XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096_marshaled_pinvoke& marshaled, XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096& unmarshaled)
{
Exception_t* ___U3CproviderTypeU3Ek__BackingField_1Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field '<providerType>k__BackingField' of type 'XRCameraSubsystemCinfo': Reference type field marshaling is not supported.");
IL2CPP_RAISE_MANAGED_EXCEPTION(___U3CproviderTypeU3Ek__BackingField_1Exception, NULL);
}
// Conversion method for clean up from marshalling of: UnityEngine.XR.ARSubsystems.XRCameraSubsystemCinfo
IL2CPP_EXTERN_C void XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096_marshal_pinvoke_cleanup(XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096_marshaled_pinvoke& marshaled)
{
}
// Conversion methods for marshalling of: UnityEngine.XR.ARSubsystems.XRCameraSubsystemCinfo
IL2CPP_EXTERN_C void XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096_marshal_com(const XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096& unmarshaled, XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096_marshaled_com& marshaled)
{
Exception_t* ___U3CproviderTypeU3Ek__BackingField_1Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field '<providerType>k__BackingField' of type 'XRCameraSubsystemCinfo': Reference type field marshaling is not supported.");
IL2CPP_RAISE_MANAGED_EXCEPTION(___U3CproviderTypeU3Ek__BackingField_1Exception, NULL);
}
IL2CPP_EXTERN_C void XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096_marshal_com_back(const XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096_marshaled_com& marshaled, XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096& unmarshaled)
{
Exception_t* ___U3CproviderTypeU3Ek__BackingField_1Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field '<providerType>k__BackingField' of type 'XRCameraSubsystemCinfo': Reference type field marshaling is not supported.");
IL2CPP_RAISE_MANAGED_EXCEPTION(___U3CproviderTypeU3Ek__BackingField_1Exception, NULL);
}
// Conversion method for clean up from marshalling of: UnityEngine.XR.ARSubsystems.XRCameraSubsystemCinfo
IL2CPP_EXTERN_C void XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096_marshal_com_cleanup(XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096_marshaled_com& marshaled)
{
}
// System.String UnityEngine.XR.ARSubsystems.XRCameraSubsystemCinfo::get_id()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XRCameraSubsystemCinfo_get_id_m606888326128C053029E1B09A00F2CB97B214291 (XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096 * __this, const RuntimeMethod* method)
{
{
// public string id { get; set; }
String_t* L_0 = __this->get_U3CidU3Ek__BackingField_0();
return L_0;
}
}
IL2CPP_EXTERN_C String_t* XRCameraSubsystemCinfo_get_id_m606888326128C053029E1B09A00F2CB97B214291_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096 *>(__this + _offset);
String_t* _returnValue;
_returnValue = XRCameraSubsystemCinfo_get_id_m606888326128C053029E1B09A00F2CB97B214291_inline(_thisAdjusted, method);
return _returnValue;
}
// System.Void UnityEngine.XR.ARSubsystems.XRCameraSubsystemCinfo::set_id(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRCameraSubsystemCinfo_set_id_m768994793A205C7D5CE603B354D350A34D47720D (XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096 * __this, String_t* ___value0, const RuntimeMethod* method)
{
{
// public string id { get; set; }
String_t* L_0 = ___value0;
__this->set_U3CidU3Ek__BackingField_0(L_0);
return;
}
}
IL2CPP_EXTERN_C void XRCameraSubsystemCinfo_set_id_m768994793A205C7D5CE603B354D350A34D47720D_AdjustorThunk (RuntimeObject * __this, String_t* ___value0, const RuntimeMethod* method)
{
XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096 *>(__this + _offset);
XRCameraSubsystemCinfo_set_id_m768994793A205C7D5CE603B354D350A34D47720D_inline(_thisAdjusted, ___value0, method);
}
// System.Type UnityEngine.XR.ARSubsystems.XRCameraSubsystemCinfo::get_providerType()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t * XRCameraSubsystemCinfo_get_providerType_m181531F5B642DA8E3E10FC62879495B0A8D53110 (XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096 * __this, const RuntimeMethod* method)
{
{
// public Type providerType { get; set; }
Type_t * L_0 = __this->get_U3CproviderTypeU3Ek__BackingField_1();
return L_0;
}
}
IL2CPP_EXTERN_C Type_t * XRCameraSubsystemCinfo_get_providerType_m181531F5B642DA8E3E10FC62879495B0A8D53110_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096 *>(__this + _offset);
Type_t * _returnValue;
_returnValue = XRCameraSubsystemCinfo_get_providerType_m181531F5B642DA8E3E10FC62879495B0A8D53110_inline(_thisAdjusted, method);
return _returnValue;
}
// System.Void UnityEngine.XR.ARSubsystems.XRCameraSubsystemCinfo::set_providerType(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRCameraSubsystemCinfo_set_providerType_m78F56C5CEF9FF62F60DE6073B8AD0FB0AFD00730 (XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096 * __this, Type_t * ___value0, const RuntimeMethod* method)
{
{
// public Type providerType { get; set; }
Type_t * L_0 = ___value0;
__this->set_U3CproviderTypeU3Ek__BackingField_1(L_0);
return;
}
}
IL2CPP_EXTERN_C void XRCameraSubsystemCinfo_set_providerType_m78F56C5CEF9FF62F60DE6073B8AD0FB0AFD00730_AdjustorThunk (RuntimeObject * __this, Type_t * ___value0, const RuntimeMethod* method)
{
XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096 *>(__this + _offset);
XRCameraSubsystemCinfo_set_providerType_m78F56C5CEF9FF62F60DE6073B8AD0FB0AFD00730_inline(_thisAdjusted, ___value0, method);
}
// System.Type UnityEngine.XR.ARSubsystems.XRCameraSubsystemCinfo::get_subsystemTypeOverride()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t * XRCameraSubsystemCinfo_get_subsystemTypeOverride_mED0FB455C8C39164EF2594FC9405B78C1E2EB809 (XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096 * __this, const RuntimeMethod* method)
{
{
// public Type subsystemTypeOverride { get; set; }
Type_t * L_0 = __this->get_U3CsubsystemTypeOverrideU3Ek__BackingField_2();
return L_0;
}
}
IL2CPP_EXTERN_C Type_t * XRCameraSubsystemCinfo_get_subsystemTypeOverride_mED0FB455C8C39164EF2594FC9405B78C1E2EB809_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096 *>(__this + _offset);
Type_t * _returnValue;
_returnValue = XRCameraSubsystemCinfo_get_subsystemTypeOverride_mED0FB455C8C39164EF2594FC9405B78C1E2EB809_inline(_thisAdjusted, method);
return _returnValue;
}
// System.Void UnityEngine.XR.ARSubsystems.XRCameraSubsystemCinfo::set_subsystemTypeOverride(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRCameraSubsystemCinfo_set_subsystemTypeOverride_mD4D22BB1EC102CA40AF084B06DA3C957139EF2D4 (XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096 * __this, Type_t * ___value0, const RuntimeMethod* method)
{
{
// public Type subsystemTypeOverride { get; set; }
Type_t * L_0 = ___value0;
__this->set_U3CsubsystemTypeOverrideU3Ek__BackingField_2(L_0);
return;
}
}
IL2CPP_EXTERN_C void XRCameraSubsystemCinfo_set_subsystemTypeOverride_mD4D22BB1EC102CA40AF084B06DA3C957139EF2D4_AdjustorThunk (RuntimeObject * __this, Type_t * ___value0, const RuntimeMethod* method)
{
XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096 *>(__this + _offset);
XRCameraSubsystemCinfo_set_subsystemTypeOverride_mD4D22BB1EC102CA40AF084B06DA3C957139EF2D4_inline(_thisAdjusted, ___value0, method);
}
// System.Boolean UnityEngine.XR.ARSubsystems.XRCameraSubsystemCinfo::get_supportsAverageBrightness()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XRCameraSubsystemCinfo_get_supportsAverageBrightness_mF49B2D16DE8FBC5452C17D87672FBE1EB814145E (XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096 * __this, const RuntimeMethod* method)
{
{
// public bool supportsAverageBrightness { get; set; }
bool L_0 = __this->get_U3CsupportsAverageBrightnessU3Ek__BackingField_4();
return L_0;
}
}
IL2CPP_EXTERN_C bool XRCameraSubsystemCinfo_get_supportsAverageBrightness_mF49B2D16DE8FBC5452C17D87672FBE1EB814145E_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096 *>(__this + _offset);
bool _returnValue;
_returnValue = XRCameraSubsystemCinfo_get_supportsAverageBrightness_mF49B2D16DE8FBC5452C17D87672FBE1EB814145E_inline(_thisAdjusted, method);
return _returnValue;
}
// System.Void UnityEngine.XR.ARSubsystems.XRCameraSubsystemCinfo::set_supportsAverageBrightness(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRCameraSubsystemCinfo_set_supportsAverageBrightness_mC20A88BD3C8D137A1F34888C64DC5FFF37787759 (XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096 * __this, bool ___value0, const RuntimeMethod* method)
{
{
// public bool supportsAverageBrightness { get; set; }
bool L_0 = ___value0;
__this->set_U3CsupportsAverageBrightnessU3Ek__BackingField_4(L_0);
return;
}
}
IL2CPP_EXTERN_C void XRCameraSubsystemCinfo_set_supportsAverageBrightness_mC20A88BD3C8D137A1F34888C64DC5FFF37787759_AdjustorThunk (RuntimeObject * __this, bool ___value0, const RuntimeMethod* method)
{
XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096 *>(__this + _offset);
XRCameraSubsystemCinfo_set_supportsAverageBrightness_mC20A88BD3C8D137A1F34888C64DC5FFF37787759_inline(_thisAdjusted, ___value0, method);
}
// System.Boolean UnityEngine.XR.ARSubsystems.XRCameraSubsystemCinfo::get_supportsAverageColorTemperature()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XRCameraSubsystemCinfo_get_supportsAverageColorTemperature_m789041AE11DC92E73ED6C228C5A5B55A87AE736B (XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096 * __this, const RuntimeMethod* method)
{
{
// public bool supportsAverageColorTemperature { get; set; }
bool L_0 = __this->get_U3CsupportsAverageColorTemperatureU3Ek__BackingField_5();
return L_0;
}
}
IL2CPP_EXTERN_C bool XRCameraSubsystemCinfo_get_supportsAverageColorTemperature_m789041AE11DC92E73ED6C228C5A5B55A87AE736B_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096 *>(__this + _offset);
bool _returnValue;
_returnValue = XRCameraSubsystemCinfo_get_supportsAverageColorTemperature_m789041AE11DC92E73ED6C228C5A5B55A87AE736B_inline(_thisAdjusted, method);
return _returnValue;
}
// System.Void UnityEngine.XR.ARSubsystems.XRCameraSubsystemCinfo::set_supportsAverageColorTemperature(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRCameraSubsystemCinfo_set_supportsAverageColorTemperature_m77727C8CBAB59D0D078B0A634EB0A56F1BF368E4 (XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096 * __this, bool ___value0, const RuntimeMethod* method)
{
{
// public bool supportsAverageColorTemperature { get; set; }
bool L_0 = ___value0;
__this->set_U3CsupportsAverageColorTemperatureU3Ek__BackingField_5(L_0);
return;
}
}
IL2CPP_EXTERN_C void XRCameraSubsystemCinfo_set_supportsAverageColorTemperature_m77727C8CBAB59D0D078B0A634EB0A56F1BF368E4_AdjustorThunk (RuntimeObject * __this, bool ___value0, const RuntimeMethod* method)
{
XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096 *>(__this + _offset);
XRCameraSubsystemCinfo_set_supportsAverageColorTemperature_m77727C8CBAB59D0D078B0A634EB0A56F1BF368E4_inline(_thisAdjusted, ___value0, method);
}
// System.Boolean UnityEngine.XR.ARSubsystems.XRCameraSubsystemCinfo::get_supportsColorCorrection()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XRCameraSubsystemCinfo_get_supportsColorCorrection_m6910005DB05086FEBDBFFFE47BFFDBB96453E5C7 (XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096 * __this, const RuntimeMethod* method)
{
{
// public bool supportsColorCorrection { get; set; }
bool L_0 = __this->get_U3CsupportsColorCorrectionU3Ek__BackingField_6();
return L_0;
}
}
IL2CPP_EXTERN_C bool XRCameraSubsystemCinfo_get_supportsColorCorrection_m6910005DB05086FEBDBFFFE47BFFDBB96453E5C7_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096 *>(__this + _offset);
bool _returnValue;
_returnValue = XRCameraSubsystemCinfo_get_supportsColorCorrection_m6910005DB05086FEBDBFFFE47BFFDBB96453E5C7_inline(_thisAdjusted, method);
return _returnValue;
}
// System.Void UnityEngine.XR.ARSubsystems.XRCameraSubsystemCinfo::set_supportsColorCorrection(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRCameraSubsystemCinfo_set_supportsColorCorrection_m1CBB9181A21D2A964705AD5E22F78735DCFE2C01 (XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096 * __this, bool ___value0, const RuntimeMethod* method)
{
{
// public bool supportsColorCorrection { get; set; }
bool L_0 = ___value0;
__this->set_U3CsupportsColorCorrectionU3Ek__BackingField_6(L_0);
return;
}
}
IL2CPP_EXTERN_C void XRCameraSubsystemCinfo_set_supportsColorCorrection_m1CBB9181A21D2A964705AD5E22F78735DCFE2C01_AdjustorThunk (RuntimeObject * __this, bool ___value0, const RuntimeMethod* method)
{
XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096 *>(__this + _offset);
XRCameraSubsystemCinfo_set_supportsColorCorrection_m1CBB9181A21D2A964705AD5E22F78735DCFE2C01_inline(_thisAdjusted, ___value0, method);
}
// System.Boolean UnityEngine.XR.ARSubsystems.XRCameraSubsystemCinfo::get_supportsDisplayMatrix()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XRCameraSubsystemCinfo_get_supportsDisplayMatrix_m2107BE8860B1A4D050A80801F6286F0E9798820D (XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096 * __this, const RuntimeMethod* method)
{
{
// public bool supportsDisplayMatrix { get; set; }
bool L_0 = __this->get_U3CsupportsDisplayMatrixU3Ek__BackingField_7();
return L_0;
}
}
IL2CPP_EXTERN_C bool XRCameraSubsystemCinfo_get_supportsDisplayMatrix_m2107BE8860B1A4D050A80801F6286F0E9798820D_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096 *>(__this + _offset);
bool _returnValue;
_returnValue = XRCameraSubsystemCinfo_get_supportsDisplayMatrix_m2107BE8860B1A4D050A80801F6286F0E9798820D_inline(_thisAdjusted, method);
return _returnValue;
}
// System.Void UnityEngine.XR.ARSubsystems.XRCameraSubsystemCinfo::set_supportsDisplayMatrix(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRCameraSubsystemCinfo_set_supportsDisplayMatrix_m2E11C0B7442273252613BDB41BB8B6F02698FBEA (XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096 * __this, bool ___value0, const RuntimeMethod* method)
{
{
// public bool supportsDisplayMatrix { get; set; }
bool L_0 = ___value0;
__this->set_U3CsupportsDisplayMatrixU3Ek__BackingField_7(L_0);
return;
}
}
IL2CPP_EXTERN_C void XRCameraSubsystemCinfo_set_supportsDisplayMatrix_m2E11C0B7442273252613BDB41BB8B6F02698FBEA_AdjustorThunk (RuntimeObject * __this, bool ___value0, const RuntimeMethod* method)
{
XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096 *>(__this + _offset);
XRCameraSubsystemCinfo_set_supportsDisplayMatrix_m2E11C0B7442273252613BDB41BB8B6F02698FBEA_inline(_thisAdjusted, ___value0, method);
}
// System.Boolean UnityEngine.XR.ARSubsystems.XRCameraSubsystemCinfo::get_supportsProjectionMatrix()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XRCameraSubsystemCinfo_get_supportsProjectionMatrix_mAC44711CBD0AEF5600FAF7A65364692FE9FA9D9E (XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096 * __this, const RuntimeMethod* method)
{
{
// public bool supportsProjectionMatrix { get; set; }
bool L_0 = __this->get_U3CsupportsProjectionMatrixU3Ek__BackingField_8();
return L_0;
}
}
IL2CPP_EXTERN_C bool XRCameraSubsystemCinfo_get_supportsProjectionMatrix_mAC44711CBD0AEF5600FAF7A65364692FE9FA9D9E_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096 *>(__this + _offset);
bool _returnValue;
_returnValue = XRCameraSubsystemCinfo_get_supportsProjectionMatrix_mAC44711CBD0AEF5600FAF7A65364692FE9FA9D9E_inline(_thisAdjusted, method);
return _returnValue;
}
// System.Void UnityEngine.XR.ARSubsystems.XRCameraSubsystemCinfo::set_supportsProjectionMatrix(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRCameraSubsystemCinfo_set_supportsProjectionMatrix_mFC886F8859FDF308D7980935474AA0E66ECF66B4 (XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096 * __this, bool ___value0, const RuntimeMethod* method)
{
{
// public bool supportsProjectionMatrix { get; set; }
bool L_0 = ___value0;
__this->set_U3CsupportsProjectionMatrixU3Ek__BackingField_8(L_0);
return;
}
}
IL2CPP_EXTERN_C void XRCameraSubsystemCinfo_set_supportsProjectionMatrix_mFC886F8859FDF308D7980935474AA0E66ECF66B4_AdjustorThunk (RuntimeObject * __this, bool ___value0, const RuntimeMethod* method)
{
XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096 *>(__this + _offset);
XRCameraSubsystemCinfo_set_supportsProjectionMatrix_mFC886F8859FDF308D7980935474AA0E66ECF66B4_inline(_thisAdjusted, ___value0, method);
}
// System.Boolean UnityEngine.XR.ARSubsystems.XRCameraSubsystemCinfo::get_supportsTimestamp()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XRCameraSubsystemCinfo_get_supportsTimestamp_m0B95FB498C6682EE15E2461F8A5C555B3E397543 (XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096 * __this, const RuntimeMethod* method)
{
{
// public bool supportsTimestamp { get; set; }
bool L_0 = __this->get_U3CsupportsTimestampU3Ek__BackingField_9();
return L_0;
}
}
IL2CPP_EXTERN_C bool XRCameraSubsystemCinfo_get_supportsTimestamp_m0B95FB498C6682EE15E2461F8A5C555B3E397543_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096 *>(__this + _offset);
bool _returnValue;
_returnValue = XRCameraSubsystemCinfo_get_supportsTimestamp_m0B95FB498C6682EE15E2461F8A5C555B3E397543_inline(_thisAdjusted, method);
return _returnValue;
}
// System.Void UnityEngine.XR.ARSubsystems.XRCameraSubsystemCinfo::set_supportsTimestamp(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRCameraSubsystemCinfo_set_supportsTimestamp_mAA6157EC368F6358F155571E257A578729D368D4 (XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096 * __this, bool ___value0, const RuntimeMethod* method)
{
{
// public bool supportsTimestamp { get; set; }
bool L_0 = ___value0;
__this->set_U3CsupportsTimestampU3Ek__BackingField_9(L_0);
return;
}
}
IL2CPP_EXTERN_C void XRCameraSubsystemCinfo_set_supportsTimestamp_mAA6157EC368F6358F155571E257A578729D368D4_AdjustorThunk (RuntimeObject * __this, bool ___value0, const RuntimeMethod* method)
{
XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096 *>(__this + _offset);
XRCameraSubsystemCinfo_set_supportsTimestamp_mAA6157EC368F6358F155571E257A578729D368D4_inline(_thisAdjusted, ___value0, method);
}
// System.Boolean UnityEngine.XR.ARSubsystems.XRCameraSubsystemCinfo::get_supportsCameraConfigurations()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XRCameraSubsystemCinfo_get_supportsCameraConfigurations_mF0168147B6D556F8289DCE665D070EE427430CDD (XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096 * __this, const RuntimeMethod* method)
{
{
// public bool supportsCameraConfigurations { get; set; }
bool L_0 = __this->get_U3CsupportsCameraConfigurationsU3Ek__BackingField_10();
return L_0;
}
}
IL2CPP_EXTERN_C bool XRCameraSubsystemCinfo_get_supportsCameraConfigurations_mF0168147B6D556F8289DCE665D070EE427430CDD_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096 *>(__this + _offset);
bool _returnValue;
_returnValue = XRCameraSubsystemCinfo_get_supportsCameraConfigurations_mF0168147B6D556F8289DCE665D070EE427430CDD_inline(_thisAdjusted, method);
return _returnValue;
}
// System.Void UnityEngine.XR.ARSubsystems.XRCameraSubsystemCinfo::set_supportsCameraConfigurations(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRCameraSubsystemCinfo_set_supportsCameraConfigurations_mD0F431DDAB4F82DDC6E35AB7583572D25244E0F0 (XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096 * __this, bool ___value0, const RuntimeMethod* method)
{
{
// public bool supportsCameraConfigurations { get; set; }
bool L_0 = ___value0;
__this->set_U3CsupportsCameraConfigurationsU3Ek__BackingField_10(L_0);
return;
}
}
IL2CPP_EXTERN_C void XRCameraSubsystemCinfo_set_supportsCameraConfigurations_mD0F431DDAB4F82DDC6E35AB7583572D25244E0F0_AdjustorThunk (RuntimeObject * __this, bool ___value0, const RuntimeMethod* method)
{
XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096 *>(__this + _offset);
XRCameraSubsystemCinfo_set_supportsCameraConfigurations_mD0F431DDAB4F82DDC6E35AB7583572D25244E0F0_inline(_thisAdjusted, ___value0, method);
}
// System.Boolean UnityEngine.XR.ARSubsystems.XRCameraSubsystemCinfo::get_supportsCameraImage()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XRCameraSubsystemCinfo_get_supportsCameraImage_m404883CC80418B38CB13D3ED6DAAFE6D81978A6F (XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096 * __this, const RuntimeMethod* method)
{
{
// public bool supportsCameraImage { get; set; }
bool L_0 = __this->get_U3CsupportsCameraImageU3Ek__BackingField_11();
return L_0;
}
}
IL2CPP_EXTERN_C bool XRCameraSubsystemCinfo_get_supportsCameraImage_m404883CC80418B38CB13D3ED6DAAFE6D81978A6F_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096 *>(__this + _offset);
bool _returnValue;
_returnValue = XRCameraSubsystemCinfo_get_supportsCameraImage_m404883CC80418B38CB13D3ED6DAAFE6D81978A6F_inline(_thisAdjusted, method);
return _returnValue;
}
// System.Void UnityEngine.XR.ARSubsystems.XRCameraSubsystemCinfo::set_supportsCameraImage(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRCameraSubsystemCinfo_set_supportsCameraImage_m2140EBB7ACEA9B1634F56DE2DCB85F26CB8C4D7D (XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096 * __this, bool ___value0, const RuntimeMethod* method)
{
{
// public bool supportsCameraImage { get; set; }
bool L_0 = ___value0;
__this->set_U3CsupportsCameraImageU3Ek__BackingField_11(L_0);
return;
}
}
IL2CPP_EXTERN_C void XRCameraSubsystemCinfo_set_supportsCameraImage_m2140EBB7ACEA9B1634F56DE2DCB85F26CB8C4D7D_AdjustorThunk (RuntimeObject * __this, bool ___value0, const RuntimeMethod* method)
{
XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096 *>(__this + _offset);
XRCameraSubsystemCinfo_set_supportsCameraImage_m2140EBB7ACEA9B1634F56DE2DCB85F26CB8C4D7D_inline(_thisAdjusted, ___value0, method);
}
// System.Boolean UnityEngine.XR.ARSubsystems.XRCameraSubsystemCinfo::get_supportsAverageIntensityInLumens()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XRCameraSubsystemCinfo_get_supportsAverageIntensityInLumens_m5B91C231C060B22D44F1579CF361500D7B54173E (XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096 * __this, const RuntimeMethod* method)
{
{
// public bool supportsAverageIntensityInLumens { get; set; }
bool L_0 = __this->get_U3CsupportsAverageIntensityInLumensU3Ek__BackingField_12();
return L_0;
}
}
IL2CPP_EXTERN_C bool XRCameraSubsystemCinfo_get_supportsAverageIntensityInLumens_m5B91C231C060B22D44F1579CF361500D7B54173E_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096 *>(__this + _offset);
bool _returnValue;
_returnValue = XRCameraSubsystemCinfo_get_supportsAverageIntensityInLumens_m5B91C231C060B22D44F1579CF361500D7B54173E_inline(_thisAdjusted, method);
return _returnValue;
}
// System.Void UnityEngine.XR.ARSubsystems.XRCameraSubsystemCinfo::set_supportsAverageIntensityInLumens(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRCameraSubsystemCinfo_set_supportsAverageIntensityInLumens_m49462C178EF35B3E688EE6711FD3E41E9C1976AB (XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096 * __this, bool ___value0, const RuntimeMethod* method)
{
{
// public bool supportsAverageIntensityInLumens { get; set; }
bool L_0 = ___value0;
__this->set_U3CsupportsAverageIntensityInLumensU3Ek__BackingField_12(L_0);
return;
}
}
IL2CPP_EXTERN_C void XRCameraSubsystemCinfo_set_supportsAverageIntensityInLumens_m49462C178EF35B3E688EE6711FD3E41E9C1976AB_AdjustorThunk (RuntimeObject * __this, bool ___value0, const RuntimeMethod* method)
{
XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096 *>(__this + _offset);
XRCameraSubsystemCinfo_set_supportsAverageIntensityInLumens_m49462C178EF35B3E688EE6711FD3E41E9C1976AB_inline(_thisAdjusted, ___value0, method);
}
// System.Boolean UnityEngine.XR.ARSubsystems.XRCameraSubsystemCinfo::get_supportsFaceTrackingAmbientIntensityLightEstimation()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XRCameraSubsystemCinfo_get_supportsFaceTrackingAmbientIntensityLightEstimation_mBE329A85F8992A65715EC3F97AC0CEEE5B0DE9D8 (XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096 * __this, const RuntimeMethod* method)
{
{
// public bool supportsFaceTrackingAmbientIntensityLightEstimation { get; set; }
bool L_0 = __this->get_U3CsupportsFaceTrackingAmbientIntensityLightEstimationU3Ek__BackingField_13();
return L_0;
}
}
IL2CPP_EXTERN_C bool XRCameraSubsystemCinfo_get_supportsFaceTrackingAmbientIntensityLightEstimation_mBE329A85F8992A65715EC3F97AC0CEEE5B0DE9D8_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096 *>(__this + _offset);
bool _returnValue;
_returnValue = XRCameraSubsystemCinfo_get_supportsFaceTrackingAmbientIntensityLightEstimation_mBE329A85F8992A65715EC3F97AC0CEEE5B0DE9D8_inline(_thisAdjusted, method);
return _returnValue;
}
// System.Void UnityEngine.XR.ARSubsystems.XRCameraSubsystemCinfo::set_supportsFaceTrackingAmbientIntensityLightEstimation(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRCameraSubsystemCinfo_set_supportsFaceTrackingAmbientIntensityLightEstimation_m93740733F66607C53F3928946A79CE732EAF9EF9 (XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096 * __this, bool ___value0, const RuntimeMethod* method)
{
{
// public bool supportsFaceTrackingAmbientIntensityLightEstimation { get; set; }
bool L_0 = ___value0;
__this->set_U3CsupportsFaceTrackingAmbientIntensityLightEstimationU3Ek__BackingField_13(L_0);
return;
}
}
IL2CPP_EXTERN_C void XRCameraSubsystemCinfo_set_supportsFaceTrackingAmbientIntensityLightEstimation_m93740733F66607C53F3928946A79CE732EAF9EF9_AdjustorThunk (RuntimeObject * __this, bool ___value0, const RuntimeMethod* method)
{
XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096 *>(__this + _offset);
XRCameraSubsystemCinfo_set_supportsFaceTrackingAmbientIntensityLightEstimation_m93740733F66607C53F3928946A79CE732EAF9EF9_inline(_thisAdjusted, ___value0, method);
}
// System.Boolean UnityEngine.XR.ARSubsystems.XRCameraSubsystemCinfo::get_supportsFaceTrackingHDRLightEstimation()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XRCameraSubsystemCinfo_get_supportsFaceTrackingHDRLightEstimation_mAA8871A8B5D8CDC9D7D5FEA47E72423BC02D969B (XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096 * __this, const RuntimeMethod* method)
{
{
// public bool supportsFaceTrackingHDRLightEstimation { get; set; }
bool L_0 = __this->get_U3CsupportsFaceTrackingHDRLightEstimationU3Ek__BackingField_14();
return L_0;
}
}
IL2CPP_EXTERN_C bool XRCameraSubsystemCinfo_get_supportsFaceTrackingHDRLightEstimation_mAA8871A8B5D8CDC9D7D5FEA47E72423BC02D969B_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096 *>(__this + _offset);
bool _returnValue;
_returnValue = XRCameraSubsystemCinfo_get_supportsFaceTrackingHDRLightEstimation_mAA8871A8B5D8CDC9D7D5FEA47E72423BC02D969B_inline(_thisAdjusted, method);
return _returnValue;
}
// System.Void UnityEngine.XR.ARSubsystems.XRCameraSubsystemCinfo::set_supportsFaceTrackingHDRLightEstimation(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRCameraSubsystemCinfo_set_supportsFaceTrackingHDRLightEstimation_mD76A9A9A127118388FBD2E971246303BB2BE0F0C (XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096 * __this, bool ___value0, const RuntimeMethod* method)
{
{
// public bool supportsFaceTrackingHDRLightEstimation { get; set; }
bool L_0 = ___value0;
__this->set_U3CsupportsFaceTrackingHDRLightEstimationU3Ek__BackingField_14(L_0);
return;
}
}
IL2CPP_EXTERN_C void XRCameraSubsystemCinfo_set_supportsFaceTrackingHDRLightEstimation_mD76A9A9A127118388FBD2E971246303BB2BE0F0C_AdjustorThunk (RuntimeObject * __this, bool ___value0, const RuntimeMethod* method)
{
XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096 *>(__this + _offset);
XRCameraSubsystemCinfo_set_supportsFaceTrackingHDRLightEstimation_mD76A9A9A127118388FBD2E971246303BB2BE0F0C_inline(_thisAdjusted, ___value0, method);
}
// System.Boolean UnityEngine.XR.ARSubsystems.XRCameraSubsystemCinfo::get_supportsWorldTrackingAmbientIntensityLightEstimation()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XRCameraSubsystemCinfo_get_supportsWorldTrackingAmbientIntensityLightEstimation_mC5C8DDCB2DB3F82EA868AF171039DF6ECFF9C7EC (XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096 * __this, const RuntimeMethod* method)
{
{
// public bool supportsWorldTrackingAmbientIntensityLightEstimation { get; set; }
bool L_0 = __this->get_U3CsupportsWorldTrackingAmbientIntensityLightEstimationU3Ek__BackingField_15();
return L_0;
}
}
IL2CPP_EXTERN_C bool XRCameraSubsystemCinfo_get_supportsWorldTrackingAmbientIntensityLightEstimation_mC5C8DDCB2DB3F82EA868AF171039DF6ECFF9C7EC_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096 *>(__this + _offset);
bool _returnValue;
_returnValue = XRCameraSubsystemCinfo_get_supportsWorldTrackingAmbientIntensityLightEstimation_mC5C8DDCB2DB3F82EA868AF171039DF6ECFF9C7EC_inline(_thisAdjusted, method);
return _returnValue;
}
// System.Void UnityEngine.XR.ARSubsystems.XRCameraSubsystemCinfo::set_supportsWorldTrackingAmbientIntensityLightEstimation(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRCameraSubsystemCinfo_set_supportsWorldTrackingAmbientIntensityLightEstimation_mE9B47A05DA11B6C6FFCB6FFED773ADB464130C5B (XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096 * __this, bool ___value0, const RuntimeMethod* method)
{
{
// public bool supportsWorldTrackingAmbientIntensityLightEstimation { get; set; }
bool L_0 = ___value0;
__this->set_U3CsupportsWorldTrackingAmbientIntensityLightEstimationU3Ek__BackingField_15(L_0);
return;
}
}
IL2CPP_EXTERN_C void XRCameraSubsystemCinfo_set_supportsWorldTrackingAmbientIntensityLightEstimation_mE9B47A05DA11B6C6FFCB6FFED773ADB464130C5B_AdjustorThunk (RuntimeObject * __this, bool ___value0, const RuntimeMethod* method)
{
XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096 *>(__this + _offset);
XRCameraSubsystemCinfo_set_supportsWorldTrackingAmbientIntensityLightEstimation_mE9B47A05DA11B6C6FFCB6FFED773ADB464130C5B_inline(_thisAdjusted, ___value0, method);
}
// System.Boolean UnityEngine.XR.ARSubsystems.XRCameraSubsystemCinfo::get_supportsWorldTrackingHDRLightEstimation()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XRCameraSubsystemCinfo_get_supportsWorldTrackingHDRLightEstimation_m96A9EF59A86DAFBA2A14AFAA79840480E8CDD01D (XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096 * __this, const RuntimeMethod* method)
{
{
// public bool supportsWorldTrackingHDRLightEstimation { get; set; }
bool L_0 = __this->get_U3CsupportsWorldTrackingHDRLightEstimationU3Ek__BackingField_16();
return L_0;
}
}
IL2CPP_EXTERN_C bool XRCameraSubsystemCinfo_get_supportsWorldTrackingHDRLightEstimation_m96A9EF59A86DAFBA2A14AFAA79840480E8CDD01D_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096 *>(__this + _offset);
bool _returnValue;
_returnValue = XRCameraSubsystemCinfo_get_supportsWorldTrackingHDRLightEstimation_m96A9EF59A86DAFBA2A14AFAA79840480E8CDD01D_inline(_thisAdjusted, method);
return _returnValue;
}
// System.Void UnityEngine.XR.ARSubsystems.XRCameraSubsystemCinfo::set_supportsWorldTrackingHDRLightEstimation(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRCameraSubsystemCinfo_set_supportsWorldTrackingHDRLightEstimation_m92AC9270D4D5FA4C61ED353406511B3877E5D9D4 (XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096 * __this, bool ___value0, const RuntimeMethod* method)
{
{
// public bool supportsWorldTrackingHDRLightEstimation { get; set; }
bool L_0 = ___value0;
__this->set_U3CsupportsWorldTrackingHDRLightEstimationU3Ek__BackingField_16(L_0);
return;
}
}
IL2CPP_EXTERN_C void XRCameraSubsystemCinfo_set_supportsWorldTrackingHDRLightEstimation_m92AC9270D4D5FA4C61ED353406511B3877E5D9D4_AdjustorThunk (RuntimeObject * __this, bool ___value0, const RuntimeMethod* method)
{
XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096 *>(__this + _offset);
XRCameraSubsystemCinfo_set_supportsWorldTrackingHDRLightEstimation_m92AC9270D4D5FA4C61ED353406511B3877E5D9D4_inline(_thisAdjusted, ___value0, method);
}
// System.Boolean UnityEngine.XR.ARSubsystems.XRCameraSubsystemCinfo::get_supportsFocusModes()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XRCameraSubsystemCinfo_get_supportsFocusModes_mA2196338BFF377734A338E919D372089A98417D9 (XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096 * __this, const RuntimeMethod* method)
{
{
// public bool supportsFocusModes { get; set; }
bool L_0 = __this->get_U3CsupportsFocusModesU3Ek__BackingField_17();
return L_0;
}
}
IL2CPP_EXTERN_C bool XRCameraSubsystemCinfo_get_supportsFocusModes_mA2196338BFF377734A338E919D372089A98417D9_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096 *>(__this + _offset);
bool _returnValue;
_returnValue = XRCameraSubsystemCinfo_get_supportsFocusModes_mA2196338BFF377734A338E919D372089A98417D9_inline(_thisAdjusted, method);
return _returnValue;
}
// System.Void UnityEngine.XR.ARSubsystems.XRCameraSubsystemCinfo::set_supportsFocusModes(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRCameraSubsystemCinfo_set_supportsFocusModes_m2F70E7EFC54E2F930DEA28DC4922125E01FE3026 (XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096 * __this, bool ___value0, const RuntimeMethod* method)
{
{
// public bool supportsFocusModes { get; set; }
bool L_0 = ___value0;
__this->set_U3CsupportsFocusModesU3Ek__BackingField_17(L_0);
return;
}
}
IL2CPP_EXTERN_C void XRCameraSubsystemCinfo_set_supportsFocusModes_m2F70E7EFC54E2F930DEA28DC4922125E01FE3026_AdjustorThunk (RuntimeObject * __this, bool ___value0, const RuntimeMethod* method)
{
XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096 *>(__this + _offset);
XRCameraSubsystemCinfo_set_supportsFocusModes_m2F70E7EFC54E2F930DEA28DC4922125E01FE3026_inline(_thisAdjusted, ___value0, method);
}
// System.Boolean UnityEngine.XR.ARSubsystems.XRCameraSubsystemCinfo::get_supportsCameraGrain()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XRCameraSubsystemCinfo_get_supportsCameraGrain_mFC3B0475E51415F6BCDAB93671CD421826DA9B9B (XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096 * __this, const RuntimeMethod* method)
{
{
// public bool supportsCameraGrain { get; set; }
bool L_0 = __this->get_U3CsupportsCameraGrainU3Ek__BackingField_18();
return L_0;
}
}
IL2CPP_EXTERN_C bool XRCameraSubsystemCinfo_get_supportsCameraGrain_mFC3B0475E51415F6BCDAB93671CD421826DA9B9B_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096 *>(__this + _offset);
bool _returnValue;
_returnValue = XRCameraSubsystemCinfo_get_supportsCameraGrain_mFC3B0475E51415F6BCDAB93671CD421826DA9B9B_inline(_thisAdjusted, method);
return _returnValue;
}
// System.Void UnityEngine.XR.ARSubsystems.XRCameraSubsystemCinfo::set_supportsCameraGrain(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRCameraSubsystemCinfo_set_supportsCameraGrain_m8BF26C263FED0D5106C436091BD8C25BFF8FD755 (XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096 * __this, bool ___value0, const RuntimeMethod* method)
{
{
// public bool supportsCameraGrain { get; set; }
bool L_0 = ___value0;
__this->set_U3CsupportsCameraGrainU3Ek__BackingField_18(L_0);
return;
}
}
IL2CPP_EXTERN_C void XRCameraSubsystemCinfo_set_supportsCameraGrain_m8BF26C263FED0D5106C436091BD8C25BFF8FD755_AdjustorThunk (RuntimeObject * __this, bool ___value0, const RuntimeMethod* method)
{
XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096 *>(__this + _offset);
XRCameraSubsystemCinfo_set_supportsCameraGrain_m8BF26C263FED0D5106C436091BD8C25BFF8FD755_inline(_thisAdjusted, ___value0, method);
}
// System.Boolean UnityEngine.XR.ARSubsystems.XRCameraSubsystemCinfo::Equals(UnityEngine.XR.ARSubsystems.XRCameraSubsystemCinfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XRCameraSubsystemCinfo_Equals_m8C071329439DF323FF57A936181A09F933886EAB (XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096 * __this, XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096 ___other0, const RuntimeMethod* method)
{
bool V_0 = false;
{
// return
// ReferenceEquals(id, other.id)
// #if UNITY_2020_2_OR_NEWER
// && ReferenceEquals(providerType, other.providerType)
// && ReferenceEquals(subsystemTypeOverride, other.subsystemTypeOverride)
// #else
// && ReferenceEquals(implementationType, other.implementationType)
// #endif
// && supportsAverageBrightness.Equals(other.supportsAverageBrightness)
// && supportsAverageColorTemperature.Equals(other.supportsAverageColorTemperature)
// && supportsColorCorrection.Equals(other.supportsColorCorrection)
// && supportsDisplayMatrix.Equals(other.supportsDisplayMatrix)
// && supportsProjectionMatrix.Equals(other.supportsProjectionMatrix)
// && supportsTimestamp.Equals(other.supportsTimestamp)
// && supportsCameraConfigurations.Equals(other.supportsCameraConfigurations)
// && supportsCameraImage.Equals(other.supportsCameraImage)
// && supportsAverageIntensityInLumens.Equals(other.supportsAverageIntensityInLumens)
// && supportsFaceTrackingAmbientIntensityLightEstimation.Equals(other.supportsFaceTrackingAmbientIntensityLightEstimation)
// && supportsFaceTrackingHDRLightEstimation.Equals(other.supportsFaceTrackingHDRLightEstimation)
// && supportsWorldTrackingAmbientIntensityLightEstimation.Equals(other.supportsWorldTrackingAmbientIntensityLightEstimation)
// && supportsWorldTrackingHDRLightEstimation.Equals(other.supportsWorldTrackingHDRLightEstimation)
// && supportsFocusModes.Equals(other.supportsFocusModes)
// && supportsCameraGrain.Equals(other.supportsCameraGrain);
String_t* L_0;
L_0 = XRCameraSubsystemCinfo_get_id_m606888326128C053029E1B09A00F2CB97B214291_inline((XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096 *)__this, /*hidden argument*/NULL);
String_t* L_1;
L_1 = XRCameraSubsystemCinfo_get_id_m606888326128C053029E1B09A00F2CB97B214291_inline((XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096 *)(&___other0), /*hidden argument*/NULL);
if ((!(((RuntimeObject*)(String_t*)L_0) == ((RuntimeObject*)(String_t*)L_1))))
{
goto IL_01a9;
}
}
{
Type_t * L_2;
L_2 = XRCameraSubsystemCinfo_get_providerType_m181531F5B642DA8E3E10FC62879495B0A8D53110_inline((XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096 *)__this, /*hidden argument*/NULL);
Type_t * L_3;
L_3 = XRCameraSubsystemCinfo_get_providerType_m181531F5B642DA8E3E10FC62879495B0A8D53110_inline((XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096 *)(&___other0), /*hidden argument*/NULL);
if ((!(((RuntimeObject*)(Type_t *)L_2) == ((RuntimeObject*)(Type_t *)L_3))))
{
goto IL_01a9;
}
}
{
Type_t * L_4;
L_4 = XRCameraSubsystemCinfo_get_subsystemTypeOverride_mED0FB455C8C39164EF2594FC9405B78C1E2EB809_inline((XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096 *)__this, /*hidden argument*/NULL);
Type_t * L_5;
L_5 = XRCameraSubsystemCinfo_get_subsystemTypeOverride_mED0FB455C8C39164EF2594FC9405B78C1E2EB809_inline((XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096 *)(&___other0), /*hidden argument*/NULL);
if ((!(((RuntimeObject*)(Type_t *)L_4) == ((RuntimeObject*)(Type_t *)L_5))))
{
goto IL_01a9;
}
}
{
bool L_6;
L_6 = XRCameraSubsystemCinfo_get_supportsAverageBrightness_mF49B2D16DE8FBC5452C17D87672FBE1EB814145E_inline((XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096 *)__this, /*hidden argument*/NULL);
V_0 = L_6;
bool L_7;
L_7 = XRCameraSubsystemCinfo_get_supportsAverageBrightness_mF49B2D16DE8FBC5452C17D87672FBE1EB814145E_inline((XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096 *)(&___other0), /*hidden argument*/NULL);
bool L_8;
L_8 = Boolean_Equals_mC63D03B4DE1BBC68835530A9E0384FDDB0AC1A3D((bool*)(&V_0), L_7, /*hidden argument*/NULL);
if (!L_8)
{
goto IL_01a9;
}
}
{
bool L_9;
L_9 = XRCameraSubsystemCinfo_get_supportsAverageColorTemperature_m789041AE11DC92E73ED6C228C5A5B55A87AE736B_inline((XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096 *)__this, /*hidden argument*/NULL);
V_0 = L_9;
bool L_10;
L_10 = XRCameraSubsystemCinfo_get_supportsAverageColorTemperature_m789041AE11DC92E73ED6C228C5A5B55A87AE736B_inline((XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096 *)(&___other0), /*hidden argument*/NULL);
bool L_11;
L_11 = Boolean_Equals_mC63D03B4DE1BBC68835530A9E0384FDDB0AC1A3D((bool*)(&V_0), L_10, /*hidden argument*/NULL);
if (!L_11)
{
goto IL_01a9;
}
}
{
bool L_12;
L_12 = XRCameraSubsystemCinfo_get_supportsColorCorrection_m6910005DB05086FEBDBFFFE47BFFDBB96453E5C7_inline((XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096 *)__this, /*hidden argument*/NULL);
V_0 = L_12;
bool L_13;
L_13 = XRCameraSubsystemCinfo_get_supportsColorCorrection_m6910005DB05086FEBDBFFFE47BFFDBB96453E5C7_inline((XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096 *)(&___other0), /*hidden argument*/NULL);
bool L_14;
L_14 = Boolean_Equals_mC63D03B4DE1BBC68835530A9E0384FDDB0AC1A3D((bool*)(&V_0), L_13, /*hidden argument*/NULL);
if (!L_14)
{
goto IL_01a9;
}
}
{
bool L_15;
L_15 = XRCameraSubsystemCinfo_get_supportsDisplayMatrix_m2107BE8860B1A4D050A80801F6286F0E9798820D_inline((XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096 *)__this, /*hidden argument*/NULL);
V_0 = L_15;
bool L_16;
L_16 = XRCameraSubsystemCinfo_get_supportsDisplayMatrix_m2107BE8860B1A4D050A80801F6286F0E9798820D_inline((XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096 *)(&___other0), /*hidden argument*/NULL);
bool L_17;
L_17 = Boolean_Equals_mC63D03B4DE1BBC68835530A9E0384FDDB0AC1A3D((bool*)(&V_0), L_16, /*hidden argument*/NULL);
if (!L_17)
{
goto IL_01a9;
}
}
{
bool L_18;
L_18 = XRCameraSubsystemCinfo_get_supportsProjectionMatrix_mAC44711CBD0AEF5600FAF7A65364692FE9FA9D9E_inline((XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096 *)__this, /*hidden argument*/NULL);
V_0 = L_18;
bool L_19;
L_19 = XRCameraSubsystemCinfo_get_supportsProjectionMatrix_mAC44711CBD0AEF5600FAF7A65364692FE9FA9D9E_inline((XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096 *)(&___other0), /*hidden argument*/NULL);
bool L_20;
L_20 = Boolean_Equals_mC63D03B4DE1BBC68835530A9E0384FDDB0AC1A3D((bool*)(&V_0), L_19, /*hidden argument*/NULL);
if (!L_20)
{
goto IL_01a9;
}
}
{
bool L_21;
L_21 = XRCameraSubsystemCinfo_get_supportsTimestamp_m0B95FB498C6682EE15E2461F8A5C555B3E397543_inline((XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096 *)__this, /*hidden argument*/NULL);
V_0 = L_21;
bool L_22;
L_22 = XRCameraSubsystemCinfo_get_supportsTimestamp_m0B95FB498C6682EE15E2461F8A5C555B3E397543_inline((XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096 *)(&___other0), /*hidden argument*/NULL);
bool L_23;
L_23 = Boolean_Equals_mC63D03B4DE1BBC68835530A9E0384FDDB0AC1A3D((bool*)(&V_0), L_22, /*hidden argument*/NULL);
if (!L_23)
{
goto IL_01a9;
}
}
{
bool L_24;
L_24 = XRCameraSubsystemCinfo_get_supportsCameraConfigurations_mF0168147B6D556F8289DCE665D070EE427430CDD_inline((XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096 *)__this, /*hidden argument*/NULL);
V_0 = L_24;
bool L_25;
L_25 = XRCameraSubsystemCinfo_get_supportsCameraConfigurations_mF0168147B6D556F8289DCE665D070EE427430CDD_inline((XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096 *)(&___other0), /*hidden argument*/NULL);
bool L_26;
L_26 = Boolean_Equals_mC63D03B4DE1BBC68835530A9E0384FDDB0AC1A3D((bool*)(&V_0), L_25, /*hidden argument*/NULL);
if (!L_26)
{
goto IL_01a9;
}
}
{
bool L_27;
L_27 = XRCameraSubsystemCinfo_get_supportsCameraImage_m404883CC80418B38CB13D3ED6DAAFE6D81978A6F_inline((XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096 *)__this, /*hidden argument*/NULL);
V_0 = L_27;
bool L_28;
L_28 = XRCameraSubsystemCinfo_get_supportsCameraImage_m404883CC80418B38CB13D3ED6DAAFE6D81978A6F_inline((XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096 *)(&___other0), /*hidden argument*/NULL);
bool L_29;
L_29 = Boolean_Equals_mC63D03B4DE1BBC68835530A9E0384FDDB0AC1A3D((bool*)(&V_0), L_28, /*hidden argument*/NULL);
if (!L_29)
{
goto IL_01a9;
}
}
{
bool L_30;
L_30 = XRCameraSubsystemCinfo_get_supportsAverageIntensityInLumens_m5B91C231C060B22D44F1579CF361500D7B54173E_inline((XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096 *)__this, /*hidden argument*/NULL);
V_0 = L_30;
bool L_31;
L_31 = XRCameraSubsystemCinfo_get_supportsAverageIntensityInLumens_m5B91C231C060B22D44F1579CF361500D7B54173E_inline((XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096 *)(&___other0), /*hidden argument*/NULL);
bool L_32;
L_32 = Boolean_Equals_mC63D03B4DE1BBC68835530A9E0384FDDB0AC1A3D((bool*)(&V_0), L_31, /*hidden argument*/NULL);
if (!L_32)
{
goto IL_01a9;
}
}
{
bool L_33;
L_33 = XRCameraSubsystemCinfo_get_supportsFaceTrackingAmbientIntensityLightEstimation_mBE329A85F8992A65715EC3F97AC0CEEE5B0DE9D8_inline((XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096 *)__this, /*hidden argument*/NULL);
V_0 = L_33;
bool L_34;
L_34 = XRCameraSubsystemCinfo_get_supportsFaceTrackingAmbientIntensityLightEstimation_mBE329A85F8992A65715EC3F97AC0CEEE5B0DE9D8_inline((XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096 *)(&___other0), /*hidden argument*/NULL);
bool L_35;
L_35 = Boolean_Equals_mC63D03B4DE1BBC68835530A9E0384FDDB0AC1A3D((bool*)(&V_0), L_34, /*hidden argument*/NULL);
if (!L_35)
{
goto IL_01a9;
}
}
{
bool L_36;
L_36 = XRCameraSubsystemCinfo_get_supportsFaceTrackingHDRLightEstimation_mAA8871A8B5D8CDC9D7D5FEA47E72423BC02D969B_inline((XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096 *)__this, /*hidden argument*/NULL);
V_0 = L_36;
bool L_37;
L_37 = XRCameraSubsystemCinfo_get_supportsFaceTrackingHDRLightEstimation_mAA8871A8B5D8CDC9D7D5FEA47E72423BC02D969B_inline((XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096 *)(&___other0), /*hidden argument*/NULL);
bool L_38;
L_38 = Boolean_Equals_mC63D03B4DE1BBC68835530A9E0384FDDB0AC1A3D((bool*)(&V_0), L_37, /*hidden argument*/NULL);
if (!L_38)
{
goto IL_01a9;
}
}
{
bool L_39;
L_39 = XRCameraSubsystemCinfo_get_supportsWorldTrackingAmbientIntensityLightEstimation_mC5C8DDCB2DB3F82EA868AF171039DF6ECFF9C7EC_inline((XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096 *)__this, /*hidden argument*/NULL);
V_0 = L_39;
bool L_40;
L_40 = XRCameraSubsystemCinfo_get_supportsWorldTrackingAmbientIntensityLightEstimation_mC5C8DDCB2DB3F82EA868AF171039DF6ECFF9C7EC_inline((XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096 *)(&___other0), /*hidden argument*/NULL);
bool L_41;
L_41 = Boolean_Equals_mC63D03B4DE1BBC68835530A9E0384FDDB0AC1A3D((bool*)(&V_0), L_40, /*hidden argument*/NULL);
if (!L_41)
{
goto IL_01a9;
}
}
{
bool L_42;
L_42 = XRCameraSubsystemCinfo_get_supportsWorldTrackingHDRLightEstimation_m96A9EF59A86DAFBA2A14AFAA79840480E8CDD01D_inline((XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096 *)__this, /*hidden argument*/NULL);
V_0 = L_42;
bool L_43;
L_43 = XRCameraSubsystemCinfo_get_supportsWorldTrackingHDRLightEstimation_m96A9EF59A86DAFBA2A14AFAA79840480E8CDD01D_inline((XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096 *)(&___other0), /*hidden argument*/NULL);
bool L_44;
L_44 = Boolean_Equals_mC63D03B4DE1BBC68835530A9E0384FDDB0AC1A3D((bool*)(&V_0), L_43, /*hidden argument*/NULL);
if (!L_44)
{
goto IL_01a9;
}
}
{
bool L_45;
L_45 = XRCameraSubsystemCinfo_get_supportsFocusModes_mA2196338BFF377734A338E919D372089A98417D9_inline((XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096 *)__this, /*hidden argument*/NULL);
V_0 = L_45;
bool L_46;
L_46 = XRCameraSubsystemCinfo_get_supportsFocusModes_mA2196338BFF377734A338E919D372089A98417D9_inline((XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096 *)(&___other0), /*hidden argument*/NULL);
bool L_47;
L_47 = Boolean_Equals_mC63D03B4DE1BBC68835530A9E0384FDDB0AC1A3D((bool*)(&V_0), L_46, /*hidden argument*/NULL);
if (!L_47)
{
goto IL_01a9;
}
}
{
bool L_48;
L_48 = XRCameraSubsystemCinfo_get_supportsCameraGrain_mFC3B0475E51415F6BCDAB93671CD421826DA9B9B_inline((XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096 *)__this, /*hidden argument*/NULL);
V_0 = L_48;
bool L_49;
L_49 = XRCameraSubsystemCinfo_get_supportsCameraGrain_mFC3B0475E51415F6BCDAB93671CD421826DA9B9B_inline((XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096 *)(&___other0), /*hidden argument*/NULL);
bool L_50;
L_50 = Boolean_Equals_mC63D03B4DE1BBC68835530A9E0384FDDB0AC1A3D((bool*)(&V_0), L_49, /*hidden argument*/NULL);
return L_50;
}
IL_01a9:
{
return (bool)0;
}
}
IL2CPP_EXTERN_C bool XRCameraSubsystemCinfo_Equals_m8C071329439DF323FF57A936181A09F933886EAB_AdjustorThunk (RuntimeObject * __this, XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096 ___other0, const RuntimeMethod* method)
{
XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096 *>(__this + _offset);
bool _returnValue;
_returnValue = XRCameraSubsystemCinfo_Equals_m8C071329439DF323FF57A936181A09F933886EAB(_thisAdjusted, ___other0, method);
return _returnValue;
}
// System.Boolean UnityEngine.XR.ARSubsystems.XRCameraSubsystemCinfo::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XRCameraSubsystemCinfo_Equals_m8DA28DF625D849C92AE0770EBB43184C2CE4FEE4 (XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096 * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
// return ((obj is XRCameraSubsystemCinfo) && Equals((XRCameraSubsystemCinfo)obj));
RuntimeObject * L_0 = ___obj0;
if (!((RuntimeObject *)IsInstSealed((RuntimeObject*)L_0, XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096_il2cpp_TypeInfo_var)))
{
goto IL_0015;
}
}
{
RuntimeObject * L_1 = ___obj0;
bool L_2;
L_2 = XRCameraSubsystemCinfo_Equals_m8C071329439DF323FF57A936181A09F933886EAB((XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096 *)__this, ((*(XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096 *)((XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096 *)UnBox(L_1, XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096_il2cpp_TypeInfo_var)))), /*hidden argument*/NULL);
return L_2;
}
IL_0015:
{
return (bool)0;
}
}
IL2CPP_EXTERN_C bool XRCameraSubsystemCinfo_Equals_m8DA28DF625D849C92AE0770EBB43184C2CE4FEE4_AdjustorThunk (RuntimeObject * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096 *>(__this + _offset);
bool _returnValue;
_returnValue = XRCameraSubsystemCinfo_Equals_m8DA28DF625D849C92AE0770EBB43184C2CE4FEE4(_thisAdjusted, ___obj0, method);
return _returnValue;
}
// System.Int32 UnityEngine.XR.ARSubsystems.XRCameraSubsystemCinfo::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XRCameraSubsystemCinfo_GetHashCode_mA8D0D3E3ABB46889F31B045A1D6F8A06EC8701D0 (XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096 * __this, const RuntimeMethod* method)
{
bool V_0 = false;
{
// int hashCode = 486187739;
// hashCode = (hashCode * 486187739) + HashCode.ReferenceHash(id);
String_t* L_0;
L_0 = XRCameraSubsystemCinfo_get_id_m606888326128C053029E1B09A00F2CB97B214291_inline((XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096 *)__this, /*hidden argument*/NULL);
int32_t L_1;
L_1 = HashCode_ReferenceHash_mE6CC6EA3C87D9F040876D66CF582D6FF68FC359C(L_0, /*hidden argument*/NULL);
// hashCode = (hashCode * 486187739) + HashCode.ReferenceHash(providerType);
Type_t * L_2;
L_2 = XRCameraSubsystemCinfo_get_providerType_m181531F5B642DA8E3E10FC62879495B0A8D53110_inline((XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096 *)__this, /*hidden argument*/NULL);
int32_t L_3;
L_3 = HashCode_ReferenceHash_mE6CC6EA3C87D9F040876D66CF582D6FF68FC359C(L_2, /*hidden argument*/NULL);
// hashCode = (hashCode * 486187739) + HashCode.ReferenceHash(subsystemTypeOverride);
Type_t * L_4;
L_4 = XRCameraSubsystemCinfo_get_subsystemTypeOverride_mED0FB455C8C39164EF2594FC9405B78C1E2EB809_inline((XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096 *)__this, /*hidden argument*/NULL);
int32_t L_5;
L_5 = HashCode_ReferenceHash_mE6CC6EA3C87D9F040876D66CF582D6FF68FC359C(L_4, /*hidden argument*/NULL);
// hashCode = (hashCode * 486187739) + supportsAverageBrightness.GetHashCode();
bool L_6;
L_6 = XRCameraSubsystemCinfo_get_supportsAverageBrightness_mF49B2D16DE8FBC5452C17D87672FBE1EB814145E_inline((XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096 *)__this, /*hidden argument*/NULL);
V_0 = L_6;
int32_t L_7;
L_7 = Boolean_GetHashCode_m03AF8B3CECAE9106C44A00E3B33E51CBFC45C411((bool*)(&V_0), /*hidden argument*/NULL);
// hashCode = (hashCode * 486187739) + supportsAverageColorTemperature.GetHashCode();
bool L_8;
L_8 = XRCameraSubsystemCinfo_get_supportsAverageColorTemperature_m789041AE11DC92E73ED6C228C5A5B55A87AE736B_inline((XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096 *)__this, /*hidden argument*/NULL);
V_0 = L_8;
int32_t L_9;
L_9 = Boolean_GetHashCode_m03AF8B3CECAE9106C44A00E3B33E51CBFC45C411((bool*)(&V_0), /*hidden argument*/NULL);
// hashCode = (hashCode * 486187739) + supportsColorCorrection.GetHashCode();
bool L_10;
L_10 = XRCameraSubsystemCinfo_get_supportsColorCorrection_m6910005DB05086FEBDBFFFE47BFFDBB96453E5C7_inline((XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096 *)__this, /*hidden argument*/NULL);
V_0 = L_10;
int32_t L_11;
L_11 = Boolean_GetHashCode_m03AF8B3CECAE9106C44A00E3B33E51CBFC45C411((bool*)(&V_0), /*hidden argument*/NULL);
// hashCode = (hashCode * 486187739) + supportsDisplayMatrix.GetHashCode();
bool L_12;
L_12 = XRCameraSubsystemCinfo_get_supportsDisplayMatrix_m2107BE8860B1A4D050A80801F6286F0E9798820D_inline((XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096 *)__this, /*hidden argument*/NULL);
V_0 = L_12;
int32_t L_13;
L_13 = Boolean_GetHashCode_m03AF8B3CECAE9106C44A00E3B33E51CBFC45C411((bool*)(&V_0), /*hidden argument*/NULL);
// hashCode = (hashCode * 486187739) + supportsProjectionMatrix.GetHashCode();
bool L_14;
L_14 = XRCameraSubsystemCinfo_get_supportsProjectionMatrix_mAC44711CBD0AEF5600FAF7A65364692FE9FA9D9E_inline((XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096 *)__this, /*hidden argument*/NULL);
V_0 = L_14;
int32_t L_15;
L_15 = Boolean_GetHashCode_m03AF8B3CECAE9106C44A00E3B33E51CBFC45C411((bool*)(&V_0), /*hidden argument*/NULL);
// hashCode = (hashCode * 486187739) + supportsTimestamp.GetHashCode();
bool L_16;
L_16 = XRCameraSubsystemCinfo_get_supportsTimestamp_m0B95FB498C6682EE15E2461F8A5C555B3E397543_inline((XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096 *)__this, /*hidden argument*/NULL);
V_0 = L_16;
int32_t L_17;
L_17 = Boolean_GetHashCode_m03AF8B3CECAE9106C44A00E3B33E51CBFC45C411((bool*)(&V_0), /*hidden argument*/NULL);
// hashCode = (hashCode * 486187739) + supportsCameraConfigurations.GetHashCode();
bool L_18;
L_18 = XRCameraSubsystemCinfo_get_supportsCameraConfigurations_mF0168147B6D556F8289DCE665D070EE427430CDD_inline((XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096 *)__this, /*hidden argument*/NULL);
V_0 = L_18;
int32_t L_19;
L_19 = Boolean_GetHashCode_m03AF8B3CECAE9106C44A00E3B33E51CBFC45C411((bool*)(&V_0), /*hidden argument*/NULL);
// hashCode = (hashCode * 486187739) + supportsCameraImage.GetHashCode();
bool L_20;
L_20 = XRCameraSubsystemCinfo_get_supportsCameraImage_m404883CC80418B38CB13D3ED6DAAFE6D81978A6F_inline((XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096 *)__this, /*hidden argument*/NULL);
V_0 = L_20;
int32_t L_21;
L_21 = Boolean_GetHashCode_m03AF8B3CECAE9106C44A00E3B33E51CBFC45C411((bool*)(&V_0), /*hidden argument*/NULL);
// hashCode = (hashCode * 486187739) + supportsAverageIntensityInLumens.GetHashCode();
bool L_22;
L_22 = XRCameraSubsystemCinfo_get_supportsAverageIntensityInLumens_m5B91C231C060B22D44F1579CF361500D7B54173E_inline((XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096 *)__this, /*hidden argument*/NULL);
V_0 = L_22;
int32_t L_23;
L_23 = Boolean_GetHashCode_m03AF8B3CECAE9106C44A00E3B33E51CBFC45C411((bool*)(&V_0), /*hidden argument*/NULL);
// hashCode = (hashCode * 486187739) + supportsFaceTrackingAmbientIntensityLightEstimation.GetHashCode();
bool L_24;
L_24 = XRCameraSubsystemCinfo_get_supportsFaceTrackingAmbientIntensityLightEstimation_mBE329A85F8992A65715EC3F97AC0CEEE5B0DE9D8_inline((XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096 *)__this, /*hidden argument*/NULL);
V_0 = L_24;
int32_t L_25;
L_25 = Boolean_GetHashCode_m03AF8B3CECAE9106C44A00E3B33E51CBFC45C411((bool*)(&V_0), /*hidden argument*/NULL);
// hashCode = (hashCode * 486187739) + supportsFaceTrackingHDRLightEstimation.GetHashCode();
bool L_26;
L_26 = XRCameraSubsystemCinfo_get_supportsFaceTrackingHDRLightEstimation_mAA8871A8B5D8CDC9D7D5FEA47E72423BC02D969B_inline((XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096 *)__this, /*hidden argument*/NULL);
V_0 = L_26;
int32_t L_27;
L_27 = Boolean_GetHashCode_m03AF8B3CECAE9106C44A00E3B33E51CBFC45C411((bool*)(&V_0), /*hidden argument*/NULL);
// hashCode = (hashCode * 486187739) + supportsWorldTrackingAmbientIntensityLightEstimation.GetHashCode();
bool L_28;
L_28 = XRCameraSubsystemCinfo_get_supportsWorldTrackingAmbientIntensityLightEstimation_mC5C8DDCB2DB3F82EA868AF171039DF6ECFF9C7EC_inline((XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096 *)__this, /*hidden argument*/NULL);
V_0 = L_28;
int32_t L_29;
L_29 = Boolean_GetHashCode_m03AF8B3CECAE9106C44A00E3B33E51CBFC45C411((bool*)(&V_0), /*hidden argument*/NULL);
// hashCode = (hashCode * 486187739) + supportsWorldTrackingHDRLightEstimation.GetHashCode();
bool L_30;
L_30 = XRCameraSubsystemCinfo_get_supportsWorldTrackingHDRLightEstimation_m96A9EF59A86DAFBA2A14AFAA79840480E8CDD01D_inline((XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096 *)__this, /*hidden argument*/NULL);
V_0 = L_30;
int32_t L_31;
L_31 = Boolean_GetHashCode_m03AF8B3CECAE9106C44A00E3B33E51CBFC45C411((bool*)(&V_0), /*hidden argument*/NULL);
// hashCode = (hashCode * 486187739) + supportsFocusModes.GetHashCode();
bool L_32;
L_32 = XRCameraSubsystemCinfo_get_supportsFocusModes_mA2196338BFF377734A338E919D372089A98417D9_inline((XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096 *)__this, /*hidden argument*/NULL);
V_0 = L_32;
int32_t L_33;
L_33 = Boolean_GetHashCode_m03AF8B3CECAE9106C44A00E3B33E51CBFC45C411((bool*)(&V_0), /*hidden argument*/NULL);
// hashCode = (hashCode * 486187739) + supportsCameraGrain.GetHashCode();
bool L_34;
L_34 = XRCameraSubsystemCinfo_get_supportsCameraGrain_mFC3B0475E51415F6BCDAB93671CD421826DA9B9B_inline((XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096 *)__this, /*hidden argument*/NULL);
V_0 = L_34;
int32_t L_35;
L_35 = Boolean_GetHashCode_m03AF8B3CECAE9106C44A00E3B33E51CBFC45C411((bool*)(&V_0), /*hidden argument*/NULL);
// return hashCode;
return ((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)((int32_t)486187739), (int32_t)((int32_t)486187739))), (int32_t)L_1)), (int32_t)((int32_t)486187739))), (int32_t)L_3)), (int32_t)((int32_t)486187739))), (int32_t)L_5)), (int32_t)((int32_t)486187739))), (int32_t)L_7)), (int32_t)((int32_t)486187739))), (int32_t)L_9)), (int32_t)((int32_t)486187739))), (int32_t)L_11)), (int32_t)((int32_t)486187739))), (int32_t)L_13)), (int32_t)((int32_t)486187739))), (int32_t)L_15)), (int32_t)((int32_t)486187739))), (int32_t)L_17)), (int32_t)((int32_t)486187739))), (int32_t)L_19)), (int32_t)((int32_t)486187739))), (int32_t)L_21)), (int32_t)((int32_t)486187739))), (int32_t)L_23)), (int32_t)((int32_t)486187739))), (int32_t)L_25)), (int32_t)((int32_t)486187739))), (int32_t)L_27)), (int32_t)((int32_t)486187739))), (int32_t)L_29)), (int32_t)((int32_t)486187739))), (int32_t)L_31)), (int32_t)((int32_t)486187739))), (int32_t)L_33)), (int32_t)((int32_t)486187739))), (int32_t)L_35));
}
}
IL2CPP_EXTERN_C int32_t XRCameraSubsystemCinfo_GetHashCode_mA8D0D3E3ABB46889F31B045A1D6F8A06EC8701D0_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096 *>(__this + _offset);
int32_t _returnValue;
_returnValue = XRCameraSubsystemCinfo_GetHashCode_mA8D0D3E3ABB46889F31B045A1D6F8A06EC8701D0(_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
// System.Void UnityEngine.XR.ARSubsystems.XRCameraSubsystemDescriptor::.ctor(UnityEngine.XR.ARSubsystems.XRCameraSubsystemCinfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRCameraSubsystemDescriptor__ctor_m3279B88FEF25A569F67987BDC39A0678B72D1CB6 (XRCameraSubsystemDescriptor_t1F8A45C69031E2981B1863518C43793D26E2C5E5 * __this, XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096 ___cameraSubsystemParams0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SubsystemDescriptorWithProvider_2__ctor_m1EABAE51FDAFF9CB42468C8DAF4A7964659204AF_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
// XRCameraSubsystemDescriptor(XRCameraSubsystemCinfo cameraSubsystemParams)
SubsystemDescriptorWithProvider_2__ctor_m1EABAE51FDAFF9CB42468C8DAF4A7964659204AF(__this, /*hidden argument*/SubsystemDescriptorWithProvider_2__ctor_m1EABAE51FDAFF9CB42468C8DAF4A7964659204AF_RuntimeMethod_var);
// id = cameraSubsystemParams.id;
String_t* L_0;
L_0 = XRCameraSubsystemCinfo_get_id_m606888326128C053029E1B09A00F2CB97B214291_inline((XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096 *)(&___cameraSubsystemParams0), /*hidden argument*/NULL);
SubsystemDescriptorWithProvider_set_id_mEC6863CDB21597618394D2ED4182A9ED3ACBF220_inline(__this, L_0, /*hidden argument*/NULL);
// providerType = cameraSubsystemParams.providerType;
Type_t * L_1;
L_1 = XRCameraSubsystemCinfo_get_providerType_m181531F5B642DA8E3E10FC62879495B0A8D53110_inline((XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096 *)(&___cameraSubsystemParams0), /*hidden argument*/NULL);
SubsystemDescriptorWithProvider_set_providerType_m672B1F3CC7A12E8569D801F7C79538753C0D9C2D_inline(__this, L_1, /*hidden argument*/NULL);
// subsystemTypeOverride = cameraSubsystemParams.subsystemTypeOverride;
Type_t * L_2;
L_2 = XRCameraSubsystemCinfo_get_subsystemTypeOverride_mED0FB455C8C39164EF2594FC9405B78C1E2EB809_inline((XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096 *)(&___cameraSubsystemParams0), /*hidden argument*/NULL);
SubsystemDescriptorWithProvider_set_subsystemTypeOverride_mA453100A7A8FAB35FBE7154E63B5A17D518F41B6_inline(__this, L_2, /*hidden argument*/NULL);
// supportsAverageBrightness = cameraSubsystemParams.supportsAverageBrightness;
bool L_3;
L_3 = XRCameraSubsystemCinfo_get_supportsAverageBrightness_mF49B2D16DE8FBC5452C17D87672FBE1EB814145E_inline((XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096 *)(&___cameraSubsystemParams0), /*hidden argument*/NULL);
XRCameraSubsystemDescriptor_set_supportsAverageBrightness_m93E308790E7E9F9EB2D4A0AA12EF64F5ACF32275_inline(__this, L_3, /*hidden argument*/NULL);
// supportsAverageColorTemperature = cameraSubsystemParams.supportsAverageColorTemperature;
bool L_4;
L_4 = XRCameraSubsystemCinfo_get_supportsAverageColorTemperature_m789041AE11DC92E73ED6C228C5A5B55A87AE736B_inline((XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096 *)(&___cameraSubsystemParams0), /*hidden argument*/NULL);
XRCameraSubsystemDescriptor_set_supportsAverageColorTemperature_m79788019F8E730D1FC139530E9615FE5CBABDDCB_inline(__this, L_4, /*hidden argument*/NULL);
// supportsColorCorrection = cameraSubsystemParams.supportsColorCorrection;
bool L_5;
L_5 = XRCameraSubsystemCinfo_get_supportsColorCorrection_m6910005DB05086FEBDBFFFE47BFFDBB96453E5C7_inline((XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096 *)(&___cameraSubsystemParams0), /*hidden argument*/NULL);
XRCameraSubsystemDescriptor_set_supportsColorCorrection_m3CD5EFDB6CBC26159DA439F9D83FDFD184AA5B71_inline(__this, L_5, /*hidden argument*/NULL);
// supportsDisplayMatrix = cameraSubsystemParams.supportsDisplayMatrix;
bool L_6;
L_6 = XRCameraSubsystemCinfo_get_supportsDisplayMatrix_m2107BE8860B1A4D050A80801F6286F0E9798820D_inline((XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096 *)(&___cameraSubsystemParams0), /*hidden argument*/NULL);
XRCameraSubsystemDescriptor_set_supportsDisplayMatrix_mE32DBA05CC497A4639E3BDA570E51244BD5E524A_inline(__this, L_6, /*hidden argument*/NULL);
// supportsProjectionMatrix = cameraSubsystemParams.supportsProjectionMatrix;
bool L_7;
L_7 = XRCameraSubsystemCinfo_get_supportsProjectionMatrix_mAC44711CBD0AEF5600FAF7A65364692FE9FA9D9E_inline((XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096 *)(&___cameraSubsystemParams0), /*hidden argument*/NULL);
XRCameraSubsystemDescriptor_set_supportsProjectionMatrix_mECDFAEA74911ED30529FDB70DE87AA3818AA285F_inline(__this, L_7, /*hidden argument*/NULL);
// supportsTimestamp = cameraSubsystemParams.supportsTimestamp;
bool L_8;
L_8 = XRCameraSubsystemCinfo_get_supportsTimestamp_m0B95FB498C6682EE15E2461F8A5C555B3E397543_inline((XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096 *)(&___cameraSubsystemParams0), /*hidden argument*/NULL);
XRCameraSubsystemDescriptor_set_supportsTimestamp_mDE3970574677648ED3EC4520657BED04613128D3_inline(__this, L_8, /*hidden argument*/NULL);
// supportsCameraConfigurations = cameraSubsystemParams.supportsCameraConfigurations;
bool L_9;
L_9 = XRCameraSubsystemCinfo_get_supportsCameraConfigurations_mF0168147B6D556F8289DCE665D070EE427430CDD_inline((XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096 *)(&___cameraSubsystemParams0), /*hidden argument*/NULL);
XRCameraSubsystemDescriptor_set_supportsCameraConfigurations_mE49020DC68025F21123ACCCB96C0ACB0A99A923C_inline(__this, L_9, /*hidden argument*/NULL);
// supportsCameraImage = cameraSubsystemParams.supportsCameraImage;
bool L_10;
L_10 = XRCameraSubsystemCinfo_get_supportsCameraImage_m404883CC80418B38CB13D3ED6DAAFE6D81978A6F_inline((XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096 *)(&___cameraSubsystemParams0), /*hidden argument*/NULL);
XRCameraSubsystemDescriptor_set_supportsCameraImage_m3D2848F2DDBED1D1B613D6CF8E6055D8163EF3F7_inline(__this, L_10, /*hidden argument*/NULL);
// supportsAverageIntensityInLumens = cameraSubsystemParams.supportsAverageIntensityInLumens;
bool L_11;
L_11 = XRCameraSubsystemCinfo_get_supportsAverageIntensityInLumens_m5B91C231C060B22D44F1579CF361500D7B54173E_inline((XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096 *)(&___cameraSubsystemParams0), /*hidden argument*/NULL);
XRCameraSubsystemDescriptor_set_supportsAverageIntensityInLumens_m65A10731DEF111F2BE9325DC6CC26E5B765D07C6_inline(__this, L_11, /*hidden argument*/NULL);
// supportsFocusModes = cameraSubsystemParams.supportsFocusModes;
bool L_12;
L_12 = XRCameraSubsystemCinfo_get_supportsFocusModes_mA2196338BFF377734A338E919D372089A98417D9_inline((XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096 *)(&___cameraSubsystemParams0), /*hidden argument*/NULL);
XRCameraSubsystemDescriptor_set_supportsFocusModes_mB7D094AE9379B0C31386397C907C1A1C1A4189BB_inline(__this, L_12, /*hidden argument*/NULL);
// supportsFaceTrackingAmbientIntensityLightEstimation = cameraSubsystemParams.supportsFaceTrackingAmbientIntensityLightEstimation;
bool L_13;
L_13 = XRCameraSubsystemCinfo_get_supportsFaceTrackingAmbientIntensityLightEstimation_mBE329A85F8992A65715EC3F97AC0CEEE5B0DE9D8_inline((XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096 *)(&___cameraSubsystemParams0), /*hidden argument*/NULL);
XRCameraSubsystemDescriptor_set_supportsFaceTrackingAmbientIntensityLightEstimation_mA1E7039E19BAF3A62B025C1FD9E39112C92759BB_inline(__this, L_13, /*hidden argument*/NULL);
// supportsFaceTrackingHDRLightEstimation = cameraSubsystemParams.supportsFaceTrackingHDRLightEstimation;
bool L_14;
L_14 = XRCameraSubsystemCinfo_get_supportsFaceTrackingHDRLightEstimation_mAA8871A8B5D8CDC9D7D5FEA47E72423BC02D969B_inline((XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096 *)(&___cameraSubsystemParams0), /*hidden argument*/NULL);
XRCameraSubsystemDescriptor_set_supportsFaceTrackingHDRLightEstimation_mE2E9D893DE652FC15DBD89A46E092957ED012565_inline(__this, L_14, /*hidden argument*/NULL);
// supportsWorldTrackingAmbientIntensityLightEstimation = cameraSubsystemParams.supportsWorldTrackingAmbientIntensityLightEstimation;
bool L_15;
L_15 = XRCameraSubsystemCinfo_get_supportsWorldTrackingAmbientIntensityLightEstimation_mC5C8DDCB2DB3F82EA868AF171039DF6ECFF9C7EC_inline((XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096 *)(&___cameraSubsystemParams0), /*hidden argument*/NULL);
XRCameraSubsystemDescriptor_set_supportsWorldTrackingAmbientIntensityLightEstimation_mB1C4D288FD5B48EC53B047348A3E25BE66C1F6BD_inline(__this, L_15, /*hidden argument*/NULL);
// supportsWorldTrackingHDRLightEstimation = cameraSubsystemParams.supportsWorldTrackingHDRLightEstimation;
bool L_16;
L_16 = XRCameraSubsystemCinfo_get_supportsWorldTrackingHDRLightEstimation_m96A9EF59A86DAFBA2A14AFAA79840480E8CDD01D_inline((XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096 *)(&___cameraSubsystemParams0), /*hidden argument*/NULL);
XRCameraSubsystemDescriptor_set_supportsWorldTrackingHDRLightEstimation_mA05D37FA61B46B9215CA459E52A84D398B19715E_inline(__this, L_16, /*hidden argument*/NULL);
// supportsCameraGrain = cameraSubsystemParams.supportsCameraGrain;
bool L_17;
L_17 = XRCameraSubsystemCinfo_get_supportsCameraGrain_mFC3B0475E51415F6BCDAB93671CD421826DA9B9B_inline((XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096 *)(&___cameraSubsystemParams0), /*hidden argument*/NULL);
XRCameraSubsystemDescriptor_set_supportsCameraGrain_m0DE607C6E20FA0A160E9421AD11B86DC267E3632_inline(__this, L_17, /*hidden argument*/NULL);
// }
return;
}
}
// System.Void UnityEngine.XR.ARSubsystems.XRCameraSubsystemDescriptor::set_supportsAverageBrightness(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRCameraSubsystemDescriptor_set_supportsAverageBrightness_m93E308790E7E9F9EB2D4A0AA12EF64F5ACF32275 (XRCameraSubsystemDescriptor_t1F8A45C69031E2981B1863518C43793D26E2C5E5 * __this, bool ___value0, const RuntimeMethod* method)
{
{
// public bool supportsAverageBrightness { get; private set; }
bool L_0 = ___value0;
__this->set_U3CsupportsAverageBrightnessU3Ek__BackingField_3(L_0);
return;
}
}
// System.Void UnityEngine.XR.ARSubsystems.XRCameraSubsystemDescriptor::set_supportsAverageColorTemperature(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRCameraSubsystemDescriptor_set_supportsAverageColorTemperature_m79788019F8E730D1FC139530E9615FE5CBABDDCB (XRCameraSubsystemDescriptor_t1F8A45C69031E2981B1863518C43793D26E2C5E5 * __this, bool ___value0, const RuntimeMethod* method)
{
{
// public bool supportsAverageColorTemperature { get; private set; }
bool L_0 = ___value0;
__this->set_U3CsupportsAverageColorTemperatureU3Ek__BackingField_4(L_0);
return;
}
}
// System.Void UnityEngine.XR.ARSubsystems.XRCameraSubsystemDescriptor::set_supportsColorCorrection(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRCameraSubsystemDescriptor_set_supportsColorCorrection_m3CD5EFDB6CBC26159DA439F9D83FDFD184AA5B71 (XRCameraSubsystemDescriptor_t1F8A45C69031E2981B1863518C43793D26E2C5E5 * __this, bool ___value0, const RuntimeMethod* method)
{
{
// public bool supportsColorCorrection { get; private set; }
bool L_0 = ___value0;
__this->set_U3CsupportsColorCorrectionU3Ek__BackingField_5(L_0);
return;
}
}
// System.Void UnityEngine.XR.ARSubsystems.XRCameraSubsystemDescriptor::set_supportsDisplayMatrix(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRCameraSubsystemDescriptor_set_supportsDisplayMatrix_mE32DBA05CC497A4639E3BDA570E51244BD5E524A (XRCameraSubsystemDescriptor_t1F8A45C69031E2981B1863518C43793D26E2C5E5 * __this, bool ___value0, const RuntimeMethod* method)
{
{
// public bool supportsDisplayMatrix { get; private set; }
bool L_0 = ___value0;
__this->set_U3CsupportsDisplayMatrixU3Ek__BackingField_6(L_0);
return;
}
}
// System.Void UnityEngine.XR.ARSubsystems.XRCameraSubsystemDescriptor::set_supportsProjectionMatrix(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRCameraSubsystemDescriptor_set_supportsProjectionMatrix_mECDFAEA74911ED30529FDB70DE87AA3818AA285F (XRCameraSubsystemDescriptor_t1F8A45C69031E2981B1863518C43793D26E2C5E5 * __this, bool ___value0, const RuntimeMethod* method)
{
{
// public bool supportsProjectionMatrix { get; private set; }
bool L_0 = ___value0;
__this->set_U3CsupportsProjectionMatrixU3Ek__BackingField_7(L_0);
return;
}
}
// System.Void UnityEngine.XR.ARSubsystems.XRCameraSubsystemDescriptor::set_supportsTimestamp(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRCameraSubsystemDescriptor_set_supportsTimestamp_mDE3970574677648ED3EC4520657BED04613128D3 (XRCameraSubsystemDescriptor_t1F8A45C69031E2981B1863518C43793D26E2C5E5 * __this, bool ___value0, const RuntimeMethod* method)
{
{
// public bool supportsTimestamp { get; private set; }
bool L_0 = ___value0;
__this->set_U3CsupportsTimestampU3Ek__BackingField_8(L_0);
return;
}
}
// System.Void UnityEngine.XR.ARSubsystems.XRCameraSubsystemDescriptor::set_supportsCameraConfigurations(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRCameraSubsystemDescriptor_set_supportsCameraConfigurations_mE49020DC68025F21123ACCCB96C0ACB0A99A923C (XRCameraSubsystemDescriptor_t1F8A45C69031E2981B1863518C43793D26E2C5E5 * __this, bool ___value0, const RuntimeMethod* method)
{
{
// public bool supportsCameraConfigurations { get; private set; }
bool L_0 = ___value0;
__this->set_U3CsupportsCameraConfigurationsU3Ek__BackingField_9(L_0);
return;
}
}
// System.Void UnityEngine.XR.ARSubsystems.XRCameraSubsystemDescriptor::set_supportsCameraImage(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRCameraSubsystemDescriptor_set_supportsCameraImage_m3D2848F2DDBED1D1B613D6CF8E6055D8163EF3F7 (XRCameraSubsystemDescriptor_t1F8A45C69031E2981B1863518C43793D26E2C5E5 * __this, bool ___value0, const RuntimeMethod* method)
{
{
// public bool supportsCameraImage { get; private set; }
bool L_0 = ___value0;
__this->set_U3CsupportsCameraImageU3Ek__BackingField_10(L_0);
return;
}
}
// System.Void UnityEngine.XR.ARSubsystems.XRCameraSubsystemDescriptor::set_supportsAverageIntensityInLumens(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRCameraSubsystemDescriptor_set_supportsAverageIntensityInLumens_m65A10731DEF111F2BE9325DC6CC26E5B765D07C6 (XRCameraSubsystemDescriptor_t1F8A45C69031E2981B1863518C43793D26E2C5E5 * __this, bool ___value0, const RuntimeMethod* method)
{
{
// public bool supportsAverageIntensityInLumens { get; private set; }
bool L_0 = ___value0;
__this->set_U3CsupportsAverageIntensityInLumensU3Ek__BackingField_11(L_0);
return;
}
}
// System.Void UnityEngine.XR.ARSubsystems.XRCameraSubsystemDescriptor::set_supportsFocusModes(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRCameraSubsystemDescriptor_set_supportsFocusModes_mB7D094AE9379B0C31386397C907C1A1C1A4189BB (XRCameraSubsystemDescriptor_t1F8A45C69031E2981B1863518C43793D26E2C5E5 * __this, bool ___value0, const RuntimeMethod* method)
{
{
// public bool supportsFocusModes { get; private set; }
bool L_0 = ___value0;
__this->set_U3CsupportsFocusModesU3Ek__BackingField_12(L_0);
return;
}
}
// System.Void UnityEngine.XR.ARSubsystems.XRCameraSubsystemDescriptor::set_supportsFaceTrackingAmbientIntensityLightEstimation(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRCameraSubsystemDescriptor_set_supportsFaceTrackingAmbientIntensityLightEstimation_mA1E7039E19BAF3A62B025C1FD9E39112C92759BB (XRCameraSubsystemDescriptor_t1F8A45C69031E2981B1863518C43793D26E2C5E5 * __this, bool ___value0, const RuntimeMethod* method)
{
{
// public bool supportsFaceTrackingAmbientIntensityLightEstimation { get; private set; }
bool L_0 = ___value0;
__this->set_U3CsupportsFaceTrackingAmbientIntensityLightEstimationU3Ek__BackingField_13(L_0);
return;
}
}
// System.Void UnityEngine.XR.ARSubsystems.XRCameraSubsystemDescriptor::set_supportsFaceTrackingHDRLightEstimation(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRCameraSubsystemDescriptor_set_supportsFaceTrackingHDRLightEstimation_mE2E9D893DE652FC15DBD89A46E092957ED012565 (XRCameraSubsystemDescriptor_t1F8A45C69031E2981B1863518C43793D26E2C5E5 * __this, bool ___value0, const RuntimeMethod* method)
{
{
// public bool supportsFaceTrackingHDRLightEstimation { get; private set; }
bool L_0 = ___value0;
__this->set_U3CsupportsFaceTrackingHDRLightEstimationU3Ek__BackingField_14(L_0);
return;
}
}
// System.Void UnityEngine.XR.ARSubsystems.XRCameraSubsystemDescriptor::set_supportsWorldTrackingAmbientIntensityLightEstimation(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRCameraSubsystemDescriptor_set_supportsWorldTrackingAmbientIntensityLightEstimation_mB1C4D288FD5B48EC53B047348A3E25BE66C1F6BD (XRCameraSubsystemDescriptor_t1F8A45C69031E2981B1863518C43793D26E2C5E5 * __this, bool ___value0, const RuntimeMethod* method)
{
{
// public bool supportsWorldTrackingAmbientIntensityLightEstimation { get; private set; }
bool L_0 = ___value0;
__this->set_U3CsupportsWorldTrackingAmbientIntensityLightEstimationU3Ek__BackingField_15(L_0);
return;
}
}
// System.Void UnityEngine.XR.ARSubsystems.XRCameraSubsystemDescriptor::set_supportsWorldTrackingHDRLightEstimation(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRCameraSubsystemDescriptor_set_supportsWorldTrackingHDRLightEstimation_mA05D37FA61B46B9215CA459E52A84D398B19715E (XRCameraSubsystemDescriptor_t1F8A45C69031E2981B1863518C43793D26E2C5E5 * __this, bool ___value0, const RuntimeMethod* method)
{
{
// public bool supportsWorldTrackingHDRLightEstimation { get; private set; }
bool L_0 = ___value0;
__this->set_U3CsupportsWorldTrackingHDRLightEstimationU3Ek__BackingField_16(L_0);
return;
}
}
// System.Void UnityEngine.XR.ARSubsystems.XRCameraSubsystemDescriptor::set_supportsCameraGrain(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRCameraSubsystemDescriptor_set_supportsCameraGrain_m0DE607C6E20FA0A160E9421AD11B86DC267E3632 (XRCameraSubsystemDescriptor_t1F8A45C69031E2981B1863518C43793D26E2C5E5 * __this, bool ___value0, const RuntimeMethod* method)
{
{
// public bool supportsCameraGrain { get; private set; }
bool L_0 = ___value0;
__this->set_U3CsupportsCameraGrainU3Ek__BackingField_17(L_0);
return;
}
}
// UnityEngine.XR.ARSubsystems.XRCameraSubsystemDescriptor UnityEngine.XR.ARSubsystems.XRCameraSubsystemDescriptor::Create(UnityEngine.XR.ARSubsystems.XRCameraSubsystemCinfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XRCameraSubsystemDescriptor_t1F8A45C69031E2981B1863518C43793D26E2C5E5 * XRCameraSubsystemDescriptor_Create_mEC826CD90D35D17847339952F5022081EF871033 (XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096 ___cameraSubsystemParams0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Provider_t55916B0D2766C320DCA36A0C870BA2FD80F8B6D1_0_0_0_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XRCameraSubsystemDescriptor_t1F8A45C69031E2981B1863518C43793D26E2C5E5_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XRCameraSubsystem_t3B32F6EA8A2E4D23AF240B5D21C34759D2613AC9_0_0_0_var);
s_Il2CppMethodInitialized = true;
}
{
// if (String.IsNullOrEmpty(cameraSubsystemParams.id))
String_t* L_0;
L_0 = XRCameraSubsystemCinfo_get_id_m606888326128C053029E1B09A00F2CB97B214291_inline((XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096 *)(&___cameraSubsystemParams0), /*hidden argument*/NULL);
bool L_1;
L_1 = String_IsNullOrEmpty_m9AFBB5335B441B94E884B8A9D4A27AD60E3D7F7C(L_0, /*hidden argument*/NULL);
if (!L_1)
{
goto IL_001e;
}
}
{
// throw new ArgumentException("Cannot create camera subsystem descriptor because id is invalid",
// "cameraSubsystemParams");
ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_2 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var)));
ArgumentException__ctor_m71044C2110E357B71A1C30D2561C3F861AF1DC0D(L_2, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralB19032E635CE920B302296D3885543D1639CB459)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralB51DF98769C686D20D8FAD7C8DB324505A9CB947)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XRCameraSubsystemDescriptor_Create_mEC826CD90D35D17847339952F5022081EF871033_RuntimeMethod_var)));
}
IL_001e:
{
// if (cameraSubsystemParams.providerType == null
// || !cameraSubsystemParams.providerType.IsSubclassOf(typeof(XRCameraSubsystem.Provider)))
Type_t * L_3;
L_3 = XRCameraSubsystemCinfo_get_providerType_m181531F5B642DA8E3E10FC62879495B0A8D53110_inline((XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096 *)(&___cameraSubsystemParams0), /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
bool L_4;
L_4 = Type_op_Equality_mA438719A1FDF103C7BBBB08AEF564E7FAEEA0046(L_3, (Type_t *)NULL, /*hidden argument*/NULL);
if (L_4)
{
goto IL_0045;
}
}
{
Type_t * L_5;
L_5 = XRCameraSubsystemCinfo_get_providerType_m181531F5B642DA8E3E10FC62879495B0A8D53110_inline((XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096 *)(&___cameraSubsystemParams0), /*hidden argument*/NULL);
RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_6 = { reinterpret_cast<intptr_t> (Provider_t55916B0D2766C320DCA36A0C870BA2FD80F8B6D1_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_7;
L_7 = Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E(L_6, /*hidden argument*/NULL);
NullCheck(L_5);
bool L_8;
L_8 = VirtualFuncInvoker1< bool, Type_t * >::Invoke(103 /* System.Boolean System.Type::IsSubclassOf(System.Type) */, L_5, L_7);
if (L_8)
{
goto IL_0055;
}
}
IL_0045:
{
// throw new ArgumentException("Cannot create camera subsystem descriptor because providerType is invalid", "cameraSubsystemParams");
ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_9 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var)));
ArgumentException__ctor_m71044C2110E357B71A1C30D2561C3F861AF1DC0D(L_9, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral631C2A034F2EEC364263FCD6C54F837D6F6BA919)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralB51DF98769C686D20D8FAD7C8DB324505A9CB947)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_9, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XRCameraSubsystemDescriptor_Create_mEC826CD90D35D17847339952F5022081EF871033_RuntimeMethod_var)));
}
IL_0055:
{
// if (cameraSubsystemParams.subsystemTypeOverride != null
// && !cameraSubsystemParams.subsystemTypeOverride.IsSubclassOf(typeof(XRCameraSubsystem)))
Type_t * L_10;
L_10 = XRCameraSubsystemCinfo_get_subsystemTypeOverride_mED0FB455C8C39164EF2594FC9405B78C1E2EB809_inline((XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096 *)(&___cameraSubsystemParams0), /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
bool L_11;
L_11 = Type_op_Inequality_m6DDC5E923203A79BF505F9275B694AD3FAA36DB0(L_10, (Type_t *)NULL, /*hidden argument*/NULL);
if (!L_11)
{
goto IL_008c;
}
}
{
Type_t * L_12;
L_12 = XRCameraSubsystemCinfo_get_subsystemTypeOverride_mED0FB455C8C39164EF2594FC9405B78C1E2EB809_inline((XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096 *)(&___cameraSubsystemParams0), /*hidden argument*/NULL);
RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_13 = { reinterpret_cast<intptr_t> (XRCameraSubsystem_t3B32F6EA8A2E4D23AF240B5D21C34759D2613AC9_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_14;
L_14 = Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E(L_13, /*hidden argument*/NULL);
NullCheck(L_12);
bool L_15;
L_15 = VirtualFuncInvoker1< bool, Type_t * >::Invoke(103 /* System.Boolean System.Type::IsSubclassOf(System.Type) */, L_12, L_14);
if (L_15)
{
goto IL_008c;
}
}
{
// throw new ArgumentException("Cannot create camera subsystem descriptor because subsystemTypeOverride is invalid", "cameraSubsystemParams");
ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_16 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var)));
ArgumentException__ctor_m71044C2110E357B71A1C30D2561C3F861AF1DC0D(L_16, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral169B5F05B3C649D620B99E33CC12246A1C1B6BF5)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralB51DF98769C686D20D8FAD7C8DB324505A9CB947)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_16, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XRCameraSubsystemDescriptor_Create_mEC826CD90D35D17847339952F5022081EF871033_RuntimeMethod_var)));
}
IL_008c:
{
// return new XRCameraSubsystemDescriptor(cameraSubsystemParams);
XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096 L_17 = ___cameraSubsystemParams0;
XRCameraSubsystemDescriptor_t1F8A45C69031E2981B1863518C43793D26E2C5E5 * L_18 = (XRCameraSubsystemDescriptor_t1F8A45C69031E2981B1863518C43793D26E2C5E5 *)il2cpp_codegen_object_new(XRCameraSubsystemDescriptor_t1F8A45C69031E2981B1863518C43793D26E2C5E5_il2cpp_TypeInfo_var);
XRCameraSubsystemDescriptor__ctor_m3279B88FEF25A569F67987BDC39A0678B72D1CB6(L_18, L_17, /*hidden argument*/NULL);
return L_18;
}
}
#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
// Conversion methods for marshalling of: UnityEngine.XR.ARSubsystems.XRCpuImage
IL2CPP_EXTERN_C void XRCpuImage_tA48C0687D95D3D63D1101E4E08EFCF0ABB2431CE_marshal_pinvoke(const XRCpuImage_tA48C0687D95D3D63D1101E4E08EFCF0ABB2431CE& unmarshaled, XRCpuImage_tA48C0687D95D3D63D1101E4E08EFCF0ABB2431CE_marshaled_pinvoke& marshaled)
{
Exception_t* ___m_Api_1Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'm_Api' of type 'XRCpuImage': Reference type field marshaling is not supported.");
IL2CPP_RAISE_MANAGED_EXCEPTION(___m_Api_1Exception, NULL);
}
IL2CPP_EXTERN_C void XRCpuImage_tA48C0687D95D3D63D1101E4E08EFCF0ABB2431CE_marshal_pinvoke_back(const XRCpuImage_tA48C0687D95D3D63D1101E4E08EFCF0ABB2431CE_marshaled_pinvoke& marshaled, XRCpuImage_tA48C0687D95D3D63D1101E4E08EFCF0ABB2431CE& unmarshaled)
{
Exception_t* ___m_Api_1Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'm_Api' of type 'XRCpuImage': Reference type field marshaling is not supported.");
IL2CPP_RAISE_MANAGED_EXCEPTION(___m_Api_1Exception, NULL);
}
// Conversion method for clean up from marshalling of: UnityEngine.XR.ARSubsystems.XRCpuImage
IL2CPP_EXTERN_C void XRCpuImage_tA48C0687D95D3D63D1101E4E08EFCF0ABB2431CE_marshal_pinvoke_cleanup(XRCpuImage_tA48C0687D95D3D63D1101E4E08EFCF0ABB2431CE_marshaled_pinvoke& marshaled)
{
}
// Conversion methods for marshalling of: UnityEngine.XR.ARSubsystems.XRCpuImage
IL2CPP_EXTERN_C void XRCpuImage_tA48C0687D95D3D63D1101E4E08EFCF0ABB2431CE_marshal_com(const XRCpuImage_tA48C0687D95D3D63D1101E4E08EFCF0ABB2431CE& unmarshaled, XRCpuImage_tA48C0687D95D3D63D1101E4E08EFCF0ABB2431CE_marshaled_com& marshaled)
{
Exception_t* ___m_Api_1Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'm_Api' of type 'XRCpuImage': Reference type field marshaling is not supported.");
IL2CPP_RAISE_MANAGED_EXCEPTION(___m_Api_1Exception, NULL);
}
IL2CPP_EXTERN_C void XRCpuImage_tA48C0687D95D3D63D1101E4E08EFCF0ABB2431CE_marshal_com_back(const XRCpuImage_tA48C0687D95D3D63D1101E4E08EFCF0ABB2431CE_marshaled_com& marshaled, XRCpuImage_tA48C0687D95D3D63D1101E4E08EFCF0ABB2431CE& unmarshaled)
{
Exception_t* ___m_Api_1Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'm_Api' of type 'XRCpuImage': Reference type field marshaling is not supported.");
IL2CPP_RAISE_MANAGED_EXCEPTION(___m_Api_1Exception, NULL);
}
// Conversion method for clean up from marshalling of: UnityEngine.XR.ARSubsystems.XRCpuImage
IL2CPP_EXTERN_C void XRCpuImage_tA48C0687D95D3D63D1101E4E08EFCF0ABB2431CE_marshal_com_cleanup(XRCpuImage_tA48C0687D95D3D63D1101E4E08EFCF0ABB2431CE_marshaled_com& marshaled)
{
}
extern "C" void DEFAULT_CALL ReversePInvokeWrapper_XRCpuImage_OnAsyncConversionComplete_m60DC813F1A2B8A59F993D245683847D933D292A9(int32_t ___status0, ConversionParams_t3DDB9752BA823641A302D0783C14048D9B09B74A ___conversionParams1, intptr_t ___dataPtr2, int32_t ___dataLength3, intptr_t ___context4)
{
il2cpp::vm::ScopedThreadAttacher _vmThreadHelper;
// Managed method invocation
XRCpuImage_OnAsyncConversionComplete_m60DC813F1A2B8A59F993D245683847D933D292A9(___status0, ___conversionParams1, ___dataPtr2, ___dataLength3, ___context4, NULL);
}
// UnityEngine.Vector2Int UnityEngine.XR.ARSubsystems.XRCpuImage::get_dimensions()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9 XRCpuImage_get_dimensions_m1A176BDB3319F09F3AF628AB17C126B62929A2A5 (XRCpuImage_tA48C0687D95D3D63D1101E4E08EFCF0ABB2431CE * __this, const RuntimeMethod* method)
{
{
// public Vector2Int dimensions { get; private set; }
Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9 L_0 = __this->get_U3CdimensionsU3Ek__BackingField_3();
return L_0;
}
}
IL2CPP_EXTERN_C Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9 XRCpuImage_get_dimensions_m1A176BDB3319F09F3AF628AB17C126B62929A2A5_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
XRCpuImage_tA48C0687D95D3D63D1101E4E08EFCF0ABB2431CE * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XRCpuImage_tA48C0687D95D3D63D1101E4E08EFCF0ABB2431CE *>(__this + _offset);
Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9 _returnValue;
_returnValue = XRCpuImage_get_dimensions_m1A176BDB3319F09F3AF628AB17C126B62929A2A5_inline(_thisAdjusted, method);
return _returnValue;
}
// System.Void UnityEngine.XR.ARSubsystems.XRCpuImage::set_dimensions(UnityEngine.Vector2Int)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRCpuImage_set_dimensions_m8672F4307A096265FA73685BDDA6D605B9C10ED5 (XRCpuImage_tA48C0687D95D3D63D1101E4E08EFCF0ABB2431CE * __this, Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9 ___value0, const RuntimeMethod* method)
{
{
// public Vector2Int dimensions { get; private set; }
Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9 L_0 = ___value0;
__this->set_U3CdimensionsU3Ek__BackingField_3(L_0);
return;
}
}
IL2CPP_EXTERN_C void XRCpuImage_set_dimensions_m8672F4307A096265FA73685BDDA6D605B9C10ED5_AdjustorThunk (RuntimeObject * __this, Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9 ___value0, const RuntimeMethod* method)
{
XRCpuImage_tA48C0687D95D3D63D1101E4E08EFCF0ABB2431CE * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XRCpuImage_tA48C0687D95D3D63D1101E4E08EFCF0ABB2431CE *>(__this + _offset);
XRCpuImage_set_dimensions_m8672F4307A096265FA73685BDDA6D605B9C10ED5_inline(_thisAdjusted, ___value0, method);
}
// System.Int32 UnityEngine.XR.ARSubsystems.XRCpuImage::get_width()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XRCpuImage_get_width_m8DE20D99BCFA242F105F3B39AD68D398F3C2B4CE (XRCpuImage_tA48C0687D95D3D63D1101E4E08EFCF0ABB2431CE * __this, const RuntimeMethod* method)
{
Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9 V_0;
memset((&V_0), 0, sizeof(V_0));
{
// public int width => dimensions.x;
Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9 L_0;
L_0 = XRCpuImage_get_dimensions_m1A176BDB3319F09F3AF628AB17C126B62929A2A5_inline((XRCpuImage_tA48C0687D95D3D63D1101E4E08EFCF0ABB2431CE *)__this, /*hidden argument*/NULL);
V_0 = L_0;
int32_t L_1;
L_1 = Vector2Int_get_x_mDBEFBCDF9C7924767344ED2CEE1307885AED947B_inline((Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9 *)(&V_0), /*hidden argument*/NULL);
return L_1;
}
}
IL2CPP_EXTERN_C int32_t XRCpuImage_get_width_m8DE20D99BCFA242F105F3B39AD68D398F3C2B4CE_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
XRCpuImage_tA48C0687D95D3D63D1101E4E08EFCF0ABB2431CE * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XRCpuImage_tA48C0687D95D3D63D1101E4E08EFCF0ABB2431CE *>(__this + _offset);
int32_t _returnValue;
_returnValue = XRCpuImage_get_width_m8DE20D99BCFA242F105F3B39AD68D398F3C2B4CE(_thisAdjusted, method);
return _returnValue;
}
// System.Int32 UnityEngine.XR.ARSubsystems.XRCpuImage::get_height()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XRCpuImage_get_height_m7BB3967EC96DB5EEF99E0935E5AA1DFB991D7ADD (XRCpuImage_tA48C0687D95D3D63D1101E4E08EFCF0ABB2431CE * __this, const RuntimeMethod* method)
{
Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9 V_0;
memset((&V_0), 0, sizeof(V_0));
{
// public int height => dimensions.y;
Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9 L_0;
L_0 = XRCpuImage_get_dimensions_m1A176BDB3319F09F3AF628AB17C126B62929A2A5_inline((XRCpuImage_tA48C0687D95D3D63D1101E4E08EFCF0ABB2431CE *)__this, /*hidden argument*/NULL);
V_0 = L_0;
int32_t L_1;
L_1 = Vector2Int_get_y_m282591DEB0E70B02F4F4DDFAB90116AEC8E6B86C_inline((Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9 *)(&V_0), /*hidden argument*/NULL);
return L_1;
}
}
IL2CPP_EXTERN_C int32_t XRCpuImage_get_height_m7BB3967EC96DB5EEF99E0935E5AA1DFB991D7ADD_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
XRCpuImage_tA48C0687D95D3D63D1101E4E08EFCF0ABB2431CE * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XRCpuImage_tA48C0687D95D3D63D1101E4E08EFCF0ABB2431CE *>(__this + _offset);
int32_t _returnValue;
_returnValue = XRCpuImage_get_height_m7BB3967EC96DB5EEF99E0935E5AA1DFB991D7ADD(_thisAdjusted, method);
return _returnValue;
}
// System.Int32 UnityEngine.XR.ARSubsystems.XRCpuImage::get_planeCount()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XRCpuImage_get_planeCount_m5F63BAD93F18A9D85D74377CFE1891860740D750 (XRCpuImage_tA48C0687D95D3D63D1101E4E08EFCF0ABB2431CE * __this, const RuntimeMethod* method)
{
{
// public int planeCount { get; private set; }
int32_t L_0 = __this->get_U3CplaneCountU3Ek__BackingField_4();
return L_0;
}
}
IL2CPP_EXTERN_C int32_t XRCpuImage_get_planeCount_m5F63BAD93F18A9D85D74377CFE1891860740D750_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
XRCpuImage_tA48C0687D95D3D63D1101E4E08EFCF0ABB2431CE * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XRCpuImage_tA48C0687D95D3D63D1101E4E08EFCF0ABB2431CE *>(__this + _offset);
int32_t _returnValue;
_returnValue = XRCpuImage_get_planeCount_m5F63BAD93F18A9D85D74377CFE1891860740D750_inline(_thisAdjusted, method);
return _returnValue;
}
// System.Void UnityEngine.XR.ARSubsystems.XRCpuImage::set_planeCount(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRCpuImage_set_planeCount_mC261323C60A65DD0EBA30325554C5F92F13149EA (XRCpuImage_tA48C0687D95D3D63D1101E4E08EFCF0ABB2431CE * __this, int32_t ___value0, const RuntimeMethod* method)
{
{
// public int planeCount { get; private set; }
int32_t L_0 = ___value0;
__this->set_U3CplaneCountU3Ek__BackingField_4(L_0);
return;
}
}
IL2CPP_EXTERN_C void XRCpuImage_set_planeCount_mC261323C60A65DD0EBA30325554C5F92F13149EA_AdjustorThunk (RuntimeObject * __this, int32_t ___value0, const RuntimeMethod* method)
{
XRCpuImage_tA48C0687D95D3D63D1101E4E08EFCF0ABB2431CE * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XRCpuImage_tA48C0687D95D3D63D1101E4E08EFCF0ABB2431CE *>(__this + _offset);
XRCpuImage_set_planeCount_mC261323C60A65DD0EBA30325554C5F92F13149EA_inline(_thisAdjusted, ___value0, method);
}
// UnityEngine.XR.ARSubsystems.XRCpuImage/Format UnityEngine.XR.ARSubsystems.XRCpuImage::get_format()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XRCpuImage_get_format_m80FEE2CEC6A37A417D5B86294C1ECA50A49FDEAB (XRCpuImage_tA48C0687D95D3D63D1101E4E08EFCF0ABB2431CE * __this, const RuntimeMethod* method)
{
{
// public Format format { get; private set; }
int32_t L_0 = __this->get_U3CformatU3Ek__BackingField_5();
return L_0;
}
}
IL2CPP_EXTERN_C int32_t XRCpuImage_get_format_m80FEE2CEC6A37A417D5B86294C1ECA50A49FDEAB_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
XRCpuImage_tA48C0687D95D3D63D1101E4E08EFCF0ABB2431CE * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XRCpuImage_tA48C0687D95D3D63D1101E4E08EFCF0ABB2431CE *>(__this + _offset);
int32_t _returnValue;
_returnValue = XRCpuImage_get_format_m80FEE2CEC6A37A417D5B86294C1ECA50A49FDEAB_inline(_thisAdjusted, method);
return _returnValue;
}
// System.Void UnityEngine.XR.ARSubsystems.XRCpuImage::set_format(UnityEngine.XR.ARSubsystems.XRCpuImage/Format)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRCpuImage_set_format_m02654636810F940049F1A57FEA7987F71FA47DF6 (XRCpuImage_tA48C0687D95D3D63D1101E4E08EFCF0ABB2431CE * __this, int32_t ___value0, const RuntimeMethod* method)
{
{
// public Format format { get; private set; }
int32_t L_0 = ___value0;
__this->set_U3CformatU3Ek__BackingField_5(L_0);
return;
}
}
IL2CPP_EXTERN_C void XRCpuImage_set_format_m02654636810F940049F1A57FEA7987F71FA47DF6_AdjustorThunk (RuntimeObject * __this, int32_t ___value0, const RuntimeMethod* method)
{
XRCpuImage_tA48C0687D95D3D63D1101E4E08EFCF0ABB2431CE * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XRCpuImage_tA48C0687D95D3D63D1101E4E08EFCF0ABB2431CE *>(__this + _offset);
XRCpuImage_set_format_m02654636810F940049F1A57FEA7987F71FA47DF6_inline(_thisAdjusted, ___value0, method);
}
// System.Void UnityEngine.XR.ARSubsystems.XRCpuImage::set_timestamp(System.Double)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRCpuImage_set_timestamp_m6FAE47FB68497C3757580D1FD94D0A4B7C2C783E (XRCpuImage_tA48C0687D95D3D63D1101E4E08EFCF0ABB2431CE * __this, double ___value0, const RuntimeMethod* method)
{
{
// public double timestamp { get; private set; }
double L_0 = ___value0;
__this->set_U3CtimestampU3Ek__BackingField_6(L_0);
return;
}
}
IL2CPP_EXTERN_C void XRCpuImage_set_timestamp_m6FAE47FB68497C3757580D1FD94D0A4B7C2C783E_AdjustorThunk (RuntimeObject * __this, double ___value0, const RuntimeMethod* method)
{
XRCpuImage_tA48C0687D95D3D63D1101E4E08EFCF0ABB2431CE * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XRCpuImage_tA48C0687D95D3D63D1101E4E08EFCF0ABB2431CE *>(__this + _offset);
XRCpuImage_set_timestamp_m6FAE47FB68497C3757580D1FD94D0A4B7C2C783E_inline(_thisAdjusted, ___value0, method);
}
// System.Void UnityEngine.XR.ARSubsystems.XRCpuImage::.ctor(UnityEngine.XR.ARSubsystems.XRCpuImage/Api,UnityEngine.XR.ARSubsystems.XRCpuImage/Cinfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRCpuImage__ctor_mA44BE98BA315639462481743B96A650B89F7C26E (XRCpuImage_tA48C0687D95D3D63D1101E4E08EFCF0ABB2431CE * __this, Api_t7C92F00C6416A2C636A44AAC833C3773C567DC3E * ___api0, Cinfo_t4E32E30AF6973611F1DD0F47FC041ED3A8775DA6 ___cinfo1, const RuntimeMethod* method)
{
{
// m_Api = api;
Api_t7C92F00C6416A2C636A44AAC833C3773C567DC3E * L_0 = ___api0;
__this->set_m_Api_1(L_0);
// m_NativeHandle = cinfo.nativeHandle;
int32_t L_1;
L_1 = Cinfo_get_nativeHandle_mAB50E5453B3ED928372EC45DF5E0F4E2ADF341BC_inline((Cinfo_t4E32E30AF6973611F1DD0F47FC041ED3A8775DA6 *)(&___cinfo1), /*hidden argument*/NULL);
__this->set_m_NativeHandle_0(L_1);
// this.dimensions = cinfo.dimensions;
Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9 L_2;
L_2 = Cinfo_get_dimensions_mA8AFF01543915A325187A41369F6DA11231A3E50_inline((Cinfo_t4E32E30AF6973611F1DD0F47FC041ED3A8775DA6 *)(&___cinfo1), /*hidden argument*/NULL);
XRCpuImage_set_dimensions_m8672F4307A096265FA73685BDDA6D605B9C10ED5_inline((XRCpuImage_tA48C0687D95D3D63D1101E4E08EFCF0ABB2431CE *)__this, L_2, /*hidden argument*/NULL);
// this.planeCount = cinfo.planeCount;
int32_t L_3;
L_3 = Cinfo_get_planeCount_m88E3C67F9E06017A46B7FF90368B24A6F48E1271_inline((Cinfo_t4E32E30AF6973611F1DD0F47FC041ED3A8775DA6 *)(&___cinfo1), /*hidden argument*/NULL);
XRCpuImage_set_planeCount_mC261323C60A65DD0EBA30325554C5F92F13149EA_inline((XRCpuImage_tA48C0687D95D3D63D1101E4E08EFCF0ABB2431CE *)__this, L_3, /*hidden argument*/NULL);
// this.timestamp = cinfo.timestamp;
double L_4;
L_4 = Cinfo_get_timestamp_mAF782E097B2324BD673D8D98C68CA2D6CA4891EF_inline((Cinfo_t4E32E30AF6973611F1DD0F47FC041ED3A8775DA6 *)(&___cinfo1), /*hidden argument*/NULL);
XRCpuImage_set_timestamp_m6FAE47FB68497C3757580D1FD94D0A4B7C2C783E_inline((XRCpuImage_tA48C0687D95D3D63D1101E4E08EFCF0ABB2431CE *)__this, L_4, /*hidden argument*/NULL);
// this.format = cinfo.format;
int32_t L_5;
L_5 = Cinfo_get_format_m42CBF60A496CB04541CC04C97E1745AFBC7259BD_inline((Cinfo_t4E32E30AF6973611F1DD0F47FC041ED3A8775DA6 *)(&___cinfo1), /*hidden argument*/NULL);
XRCpuImage_set_format_m02654636810F940049F1A57FEA7987F71FA47DF6_inline((XRCpuImage_tA48C0687D95D3D63D1101E4E08EFCF0ABB2431CE *)__this, L_5, /*hidden argument*/NULL);
// }
return;
}
}
IL2CPP_EXTERN_C void XRCpuImage__ctor_mA44BE98BA315639462481743B96A650B89F7C26E_AdjustorThunk (RuntimeObject * __this, Api_t7C92F00C6416A2C636A44AAC833C3773C567DC3E * ___api0, Cinfo_t4E32E30AF6973611F1DD0F47FC041ED3A8775DA6 ___cinfo1, const RuntimeMethod* method)
{
XRCpuImage_tA48C0687D95D3D63D1101E4E08EFCF0ABB2431CE * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XRCpuImage_tA48C0687D95D3D63D1101E4E08EFCF0ABB2431CE *>(__this + _offset);
XRCpuImage__ctor_mA44BE98BA315639462481743B96A650B89F7C26E(_thisAdjusted, ___api0, ___cinfo1, method);
}
// System.Void UnityEngine.XR.ARSubsystems.XRCpuImage::OnAsyncConversionComplete(UnityEngine.XR.ARSubsystems.XRCpuImage/AsyncConversionStatus,UnityEngine.XR.ARSubsystems.XRCpuImage/ConversionParams,System.IntPtr,System.Int32,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRCpuImage_OnAsyncConversionComplete_m60DC813F1A2B8A59F993D245683847D933D292A9 (int32_t ___status0, ConversionParams_t3DDB9752BA823641A302D0783C14048D9B09B74A ___conversionParams1, intptr_t ___dataPtr2, int32_t ___dataLength3, intptr_t ___context4, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Action_3_Invoke_mB0B175A1C7991B2471342D41B290D071E2B33901_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Action_3_t491A69D5891B04C314FECFC351B618D160286E6E_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NativeArrayUnsafeUtility_ConvertExistingDataToNativeArray_TisByte_t0111FAB8B8685667EDDAF77683F0D8F86B659056_m38F468CD9930A95B57C900167F1D8E8BBFE58F8C_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
GCHandle_t757890BC4BBBEDE5A623A3C110013EDD24613603 V_0;
memset((&V_0), 0, sizeof(V_0));
Action_3_t491A69D5891B04C314FECFC351B618D160286E6E * V_1 = NULL;
NativeArray_1_t3C2855C5B238E8C6739D4C17833F244B95C0F785 V_2;
memset((&V_2), 0, sizeof(V_2));
{
// var handle = GCHandle.FromIntPtr(context);
intptr_t L_0 = ___context4;
GCHandle_t757890BC4BBBEDE5A623A3C110013EDD24613603 L_1;
L_1 = GCHandle_FromIntPtr_m033776D73699CAC85FAE41FD5A52895EFB9E3AB8((intptr_t)L_0, /*hidden argument*/NULL);
V_0 = L_1;
// var onComplete = (Action<AsyncConversionStatus, ConversionParams, NativeArray<byte>>)handle.Target;
RuntimeObject * L_2;
L_2 = GCHandle_get_Target_m6C296AD6520ECDAFC9498E9387677F522871F883((GCHandle_t757890BC4BBBEDE5A623A3C110013EDD24613603 *)(&V_0), /*hidden argument*/NULL);
V_1 = ((Action_3_t491A69D5891B04C314FECFC351B618D160286E6E *)CastclassSealed((RuntimeObject*)L_2, Action_3_t491A69D5891B04C314FECFC351B618D160286E6E_il2cpp_TypeInfo_var));
// if (onComplete != null)
Action_3_t491A69D5891B04C314FECFC351B618D160286E6E * L_3 = V_1;
if (!L_3)
{
goto IL_002f;
}
}
{
// var data = NativeArrayUnsafeUtility.ConvertExistingDataToNativeArray<byte>(
// (void*)dataPtr, dataLength, Allocator.None);
intptr_t L_4 = ___dataPtr2;
void* L_5;
L_5 = IntPtr_op_Explicit_mE8B472FDC632CBD121F7ADF4F94546D6610BACDD((intptr_t)L_4, /*hidden argument*/NULL);
int32_t L_6 = ___dataLength3;
NativeArray_1_t3C2855C5B238E8C6739D4C17833F244B95C0F785 L_7;
L_7 = NativeArrayUnsafeUtility_ConvertExistingDataToNativeArray_TisByte_t0111FAB8B8685667EDDAF77683F0D8F86B659056_m38F468CD9930A95B57C900167F1D8E8BBFE58F8C((void*)(void*)L_5, L_6, 1, /*hidden argument*/NativeArrayUnsafeUtility_ConvertExistingDataToNativeArray_TisByte_t0111FAB8B8685667EDDAF77683F0D8F86B659056_m38F468CD9930A95B57C900167F1D8E8BBFE58F8C_RuntimeMethod_var);
V_2 = L_7;
// onComplete(status, conversionParams, data);
Action_3_t491A69D5891B04C314FECFC351B618D160286E6E * L_8 = V_1;
int32_t L_9 = ___status0;
ConversionParams_t3DDB9752BA823641A302D0783C14048D9B09B74A L_10 = ___conversionParams1;
NativeArray_1_t3C2855C5B238E8C6739D4C17833F244B95C0F785 L_11 = V_2;
NullCheck(L_8);
Action_3_Invoke_mB0B175A1C7991B2471342D41B290D071E2B33901(L_8, L_9, L_10, L_11, /*hidden argument*/Action_3_Invoke_mB0B175A1C7991B2471342D41B290D071E2B33901_RuntimeMethod_var);
}
IL_002f:
{
// handle.Free();
GCHandle_Free_mB4E9415544FC9F0075C02AB17E270E49AF006025((GCHandle_t757890BC4BBBEDE5A623A3C110013EDD24613603 *)(&V_0), /*hidden argument*/NULL);
// }
return;
}
}
// System.Void UnityEngine.XR.ARSubsystems.XRCpuImage::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRCpuImage_Dispose_m462B3360E99D206E1151C7B8ED30420BF4A91B7A (XRCpuImage_tA48C0687D95D3D63D1101E4E08EFCF0ABB2431CE * __this, const RuntimeMethod* method)
{
{
// if (m_Api == null || m_NativeHandle == 0)
Api_t7C92F00C6416A2C636A44AAC833C3773C567DC3E * L_0 = __this->get_m_Api_1();
if (!L_0)
{
goto IL_0010;
}
}
{
int32_t L_1 = __this->get_m_NativeHandle_0();
if (L_1)
{
goto IL_0011;
}
}
IL_0010:
{
// return;
return;
}
IL_0011:
{
// m_Api.DisposeImage(m_NativeHandle);
Api_t7C92F00C6416A2C636A44AAC833C3773C567DC3E * L_2 = __this->get_m_Api_1();
int32_t L_3 = __this->get_m_NativeHandle_0();
NullCheck(L_2);
VirtualActionInvoker1< int32_t >::Invoke(11 /* System.Void UnityEngine.XR.ARSubsystems.XRCpuImage/Api::DisposeImage(System.Int32) */, L_2, L_3);
// m_NativeHandle = 0;
__this->set_m_NativeHandle_0(0);
// m_Api = null;
__this->set_m_Api_1((Api_t7C92F00C6416A2C636A44AAC833C3773C567DC3E *)NULL);
// }
return;
}
}
IL2CPP_EXTERN_C void XRCpuImage_Dispose_m462B3360E99D206E1151C7B8ED30420BF4A91B7A_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
XRCpuImage_tA48C0687D95D3D63D1101E4E08EFCF0ABB2431CE * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XRCpuImage_tA48C0687D95D3D63D1101E4E08EFCF0ABB2431CE *>(__this + _offset);
XRCpuImage_Dispose_m462B3360E99D206E1151C7B8ED30420BF4A91B7A(_thisAdjusted, method);
}
// System.Int32 UnityEngine.XR.ARSubsystems.XRCpuImage::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XRCpuImage_GetHashCode_m5A2490A4F9DD6A4BE95B6E43C2E4DFA67057DD29 (XRCpuImage_tA48C0687D95D3D63D1101E4E08EFCF0ABB2431CE * __this, const RuntimeMethod* method)
{
Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9 V_0;
memset((&V_0), 0, sizeof(V_0));
int32_t V_1 = 0;
{
// public override int GetHashCode() => HashCode.Combine(
// dimensions.GetHashCode(),
// planeCount.GetHashCode(),
// m_NativeHandle.GetHashCode(),
// ((int)format).GetHashCode(),
// HashCode.ReferenceHash(m_Api));
Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9 L_0;
L_0 = XRCpuImage_get_dimensions_m1A176BDB3319F09F3AF628AB17C126B62929A2A5_inline((XRCpuImage_tA48C0687D95D3D63D1101E4E08EFCF0ABB2431CE *)__this, /*hidden argument*/NULL);
V_0 = L_0;
int32_t L_1;
L_1 = Vector2Int_GetHashCode_mB963D0B9A29E161BC4B73F97AEAF2F843FC8EF71((Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9 *)(&V_0), /*hidden argument*/NULL);
int32_t L_2;
L_2 = XRCpuImage_get_planeCount_m5F63BAD93F18A9D85D74377CFE1891860740D750_inline((XRCpuImage_tA48C0687D95D3D63D1101E4E08EFCF0ABB2431CE *)__this, /*hidden argument*/NULL);
V_1 = L_2;
int32_t L_3;
L_3 = Int32_GetHashCode_mEDD3F492A5F7CF021125AE3F38E2B8F8743FC667((int32_t*)(&V_1), /*hidden argument*/NULL);
int32_t* L_4 = __this->get_address_of_m_NativeHandle_0();
int32_t L_5;
L_5 = Int32_GetHashCode_mEDD3F492A5F7CF021125AE3F38E2B8F8743FC667((int32_t*)L_4, /*hidden argument*/NULL);
int32_t L_6;
L_6 = XRCpuImage_get_format_m80FEE2CEC6A37A417D5B86294C1ECA50A49FDEAB_inline((XRCpuImage_tA48C0687D95D3D63D1101E4E08EFCF0ABB2431CE *)__this, /*hidden argument*/NULL);
V_1 = L_6;
int32_t L_7;
L_7 = Int32_GetHashCode_mEDD3F492A5F7CF021125AE3F38E2B8F8743FC667((int32_t*)(&V_1), /*hidden argument*/NULL);
Api_t7C92F00C6416A2C636A44AAC833C3773C567DC3E * L_8 = __this->get_m_Api_1();
int32_t L_9;
L_9 = HashCode_ReferenceHash_mE6CC6EA3C87D9F040876D66CF582D6FF68FC359C(L_8, /*hidden argument*/NULL);
int32_t L_10;
L_10 = HashCode_Combine_m02E9A65274F198CF9266FDB496C74880155F9B94(L_1, L_3, L_5, L_7, L_9, /*hidden argument*/NULL);
return L_10;
}
}
IL2CPP_EXTERN_C int32_t XRCpuImage_GetHashCode_m5A2490A4F9DD6A4BE95B6E43C2E4DFA67057DD29_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
XRCpuImage_tA48C0687D95D3D63D1101E4E08EFCF0ABB2431CE * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XRCpuImage_tA48C0687D95D3D63D1101E4E08EFCF0ABB2431CE *>(__this + _offset);
int32_t _returnValue;
_returnValue = XRCpuImage_GetHashCode_m5A2490A4F9DD6A4BE95B6E43C2E4DFA67057DD29(_thisAdjusted, method);
return _returnValue;
}
// System.Boolean UnityEngine.XR.ARSubsystems.XRCpuImage::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XRCpuImage_Equals_m6ADCC3C2CDB259DD1D6BB1648CBA3722AD129441 (XRCpuImage_tA48C0687D95D3D63D1101E4E08EFCF0ABB2431CE * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XRCpuImage_tA48C0687D95D3D63D1101E4E08EFCF0ABB2431CE_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
XRCpuImage_tA48C0687D95D3D63D1101E4E08EFCF0ABB2431CE V_0;
memset((&V_0), 0, sizeof(V_0));
{
// public override bool Equals(object obj) => obj is XRCpuImage other && Equals(other);
RuntimeObject * L_0 = ___obj0;
if (!((RuntimeObject *)IsInstSealed((RuntimeObject*)L_0, XRCpuImage_tA48C0687D95D3D63D1101E4E08EFCF0ABB2431CE_il2cpp_TypeInfo_var)))
{
goto IL_0017;
}
}
{
RuntimeObject * L_1 = ___obj0;
V_0 = ((*(XRCpuImage_tA48C0687D95D3D63D1101E4E08EFCF0ABB2431CE *)((XRCpuImage_tA48C0687D95D3D63D1101E4E08EFCF0ABB2431CE *)UnBox(L_1, XRCpuImage_tA48C0687D95D3D63D1101E4E08EFCF0ABB2431CE_il2cpp_TypeInfo_var))));
XRCpuImage_tA48C0687D95D3D63D1101E4E08EFCF0ABB2431CE L_2 = V_0;
bool L_3;
L_3 = XRCpuImage_Equals_mE183B37EE7FA276B21EC0CE087BEFCDE540C8D24((XRCpuImage_tA48C0687D95D3D63D1101E4E08EFCF0ABB2431CE *)__this, L_2, /*hidden argument*/NULL);
return L_3;
}
IL_0017:
{
return (bool)0;
}
}
IL2CPP_EXTERN_C bool XRCpuImage_Equals_m6ADCC3C2CDB259DD1D6BB1648CBA3722AD129441_AdjustorThunk (RuntimeObject * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
XRCpuImage_tA48C0687D95D3D63D1101E4E08EFCF0ABB2431CE * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XRCpuImage_tA48C0687D95D3D63D1101E4E08EFCF0ABB2431CE *>(__this + _offset);
bool _returnValue;
_returnValue = XRCpuImage_Equals_m6ADCC3C2CDB259DD1D6BB1648CBA3722AD129441(_thisAdjusted, ___obj0, method);
return _returnValue;
}
// System.Boolean UnityEngine.XR.ARSubsystems.XRCpuImage::Equals(UnityEngine.XR.ARSubsystems.XRCpuImage)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XRCpuImage_Equals_mE183B37EE7FA276B21EC0CE087BEFCDE540C8D24 (XRCpuImage_tA48C0687D95D3D63D1101E4E08EFCF0ABB2431CE * __this, XRCpuImage_tA48C0687D95D3D63D1101E4E08EFCF0ABB2431CE ___other0, const RuntimeMethod* method)
{
Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9 V_0;
memset((&V_0), 0, sizeof(V_0));
{
// dimensions.Equals(other.dimensions) &&
// (planeCount == other.planeCount) &&
// (format == other.format) &&
// (m_NativeHandle == other.m_NativeHandle) &&
// (m_Api == other.m_Api);
Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9 L_0;
L_0 = XRCpuImage_get_dimensions_m1A176BDB3319F09F3AF628AB17C126B62929A2A5_inline((XRCpuImage_tA48C0687D95D3D63D1101E4E08EFCF0ABB2431CE *)__this, /*hidden argument*/NULL);
V_0 = L_0;
Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9 L_1;
L_1 = XRCpuImage_get_dimensions_m1A176BDB3319F09F3AF628AB17C126B62929A2A5_inline((XRCpuImage_tA48C0687D95D3D63D1101E4E08EFCF0ABB2431CE *)(&___other0), /*hidden argument*/NULL);
bool L_2;
L_2 = Vector2Int_Equals_m96F4F602CE85AFD675A8096AB9D5E2D4544382FF_inline((Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9 *)(&V_0), L_1, /*hidden argument*/NULL);
if (!L_2)
{
goto IL_0052;
}
}
{
int32_t L_3;
L_3 = XRCpuImage_get_planeCount_m5F63BAD93F18A9D85D74377CFE1891860740D750_inline((XRCpuImage_tA48C0687D95D3D63D1101E4E08EFCF0ABB2431CE *)__this, /*hidden argument*/NULL);
int32_t L_4;
L_4 = XRCpuImage_get_planeCount_m5F63BAD93F18A9D85D74377CFE1891860740D750_inline((XRCpuImage_tA48C0687D95D3D63D1101E4E08EFCF0ABB2431CE *)(&___other0), /*hidden argument*/NULL);
if ((!(((uint32_t)L_3) == ((uint32_t)L_4))))
{
goto IL_0052;
}
}
{
int32_t L_5;
L_5 = XRCpuImage_get_format_m80FEE2CEC6A37A417D5B86294C1ECA50A49FDEAB_inline((XRCpuImage_tA48C0687D95D3D63D1101E4E08EFCF0ABB2431CE *)__this, /*hidden argument*/NULL);
int32_t L_6;
L_6 = XRCpuImage_get_format_m80FEE2CEC6A37A417D5B86294C1ECA50A49FDEAB_inline((XRCpuImage_tA48C0687D95D3D63D1101E4E08EFCF0ABB2431CE *)(&___other0), /*hidden argument*/NULL);
if ((!(((uint32_t)L_5) == ((uint32_t)L_6))))
{
goto IL_0052;
}
}
{
int32_t L_7 = __this->get_m_NativeHandle_0();
XRCpuImage_tA48C0687D95D3D63D1101E4E08EFCF0ABB2431CE L_8 = ___other0;
int32_t L_9 = L_8.get_m_NativeHandle_0();
if ((!(((uint32_t)L_7) == ((uint32_t)L_9))))
{
goto IL_0052;
}
}
{
Api_t7C92F00C6416A2C636A44AAC833C3773C567DC3E * L_10 = __this->get_m_Api_1();
XRCpuImage_tA48C0687D95D3D63D1101E4E08EFCF0ABB2431CE L_11 = ___other0;
Api_t7C92F00C6416A2C636A44AAC833C3773C567DC3E * L_12 = L_11.get_m_Api_1();
return (bool)((((RuntimeObject*)(Api_t7C92F00C6416A2C636A44AAC833C3773C567DC3E *)L_10) == ((RuntimeObject*)(Api_t7C92F00C6416A2C636A44AAC833C3773C567DC3E *)L_12))? 1 : 0);
}
IL_0052:
{
return (bool)0;
}
}
IL2CPP_EXTERN_C bool XRCpuImage_Equals_mE183B37EE7FA276B21EC0CE087BEFCDE540C8D24_AdjustorThunk (RuntimeObject * __this, XRCpuImage_tA48C0687D95D3D63D1101E4E08EFCF0ABB2431CE ___other0, const RuntimeMethod* method)
{
XRCpuImage_tA48C0687D95D3D63D1101E4E08EFCF0ABB2431CE * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XRCpuImage_tA48C0687D95D3D63D1101E4E08EFCF0ABB2431CE *>(__this + _offset);
bool _returnValue;
_returnValue = XRCpuImage_Equals_mE183B37EE7FA276B21EC0CE087BEFCDE540C8D24(_thisAdjusted, ___other0, method);
return _returnValue;
}
// System.String UnityEngine.XR.ARSubsystems.XRCpuImage::ToString()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XRCpuImage_ToString_mE31499DDD8365EC75336BFF9C7393BCA2C1B2E5A (XRCpuImage_tA48C0687D95D3D63D1101E4E08EFCF0ABB2431CE * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Format_tC8D4CDE6941B0CAE3E1C07EC826E7E253846168A_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralDF94EFAB2817C9FA4C96A63F52A6908EB5841345);
s_Il2CppMethodInitialized = true;
}
{
// public override string ToString() => $"(Width: {width}, Height: {height}, PlaneCount: {planeCount}, Format: {format})";
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_0 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)SZArrayNew(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE_il2cpp_TypeInfo_var, (uint32_t)4);
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_1 = L_0;
int32_t L_2;
L_2 = XRCpuImage_get_width_m8DE20D99BCFA242F105F3B39AD68D398F3C2B4CE((XRCpuImage_tA48C0687D95D3D63D1101E4E08EFCF0ABB2431CE *)__this, /*hidden argument*/NULL);
int32_t L_3 = L_2;
RuntimeObject * L_4 = Box(Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var, &L_3);
NullCheck(L_1);
ArrayElementTypeCheck (L_1, L_4);
(L_1)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_4);
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_5 = L_1;
int32_t L_6;
L_6 = XRCpuImage_get_height_m7BB3967EC96DB5EEF99E0935E5AA1DFB991D7ADD((XRCpuImage_tA48C0687D95D3D63D1101E4E08EFCF0ABB2431CE *)__this, /*hidden argument*/NULL);
int32_t L_7 = L_6;
RuntimeObject * L_8 = Box(Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var, &L_7);
NullCheck(L_5);
ArrayElementTypeCheck (L_5, L_8);
(L_5)->SetAt(static_cast<il2cpp_array_size_t>(1), (RuntimeObject *)L_8);
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_9 = L_5;
int32_t L_10;
L_10 = XRCpuImage_get_planeCount_m5F63BAD93F18A9D85D74377CFE1891860740D750_inline((XRCpuImage_tA48C0687D95D3D63D1101E4E08EFCF0ABB2431CE *)__this, /*hidden argument*/NULL);
int32_t L_11 = L_10;
RuntimeObject * L_12 = Box(Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var, &L_11);
NullCheck(L_9);
ArrayElementTypeCheck (L_9, L_12);
(L_9)->SetAt(static_cast<il2cpp_array_size_t>(2), (RuntimeObject *)L_12);
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_13 = L_9;
int32_t L_14;
L_14 = XRCpuImage_get_format_m80FEE2CEC6A37A417D5B86294C1ECA50A49FDEAB_inline((XRCpuImage_tA48C0687D95D3D63D1101E4E08EFCF0ABB2431CE *)__this, /*hidden argument*/NULL);
int32_t L_15 = L_14;
RuntimeObject * L_16 = Box(Format_tC8D4CDE6941B0CAE3E1C07EC826E7E253846168A_il2cpp_TypeInfo_var, &L_15);
NullCheck(L_13);
ArrayElementTypeCheck (L_13, L_16);
(L_13)->SetAt(static_cast<il2cpp_array_size_t>(3), (RuntimeObject *)L_16);
String_t* L_17;
L_17 = String_Format_mCED6767EA5FEE6F15ABCD5B4F9150D1284C2795B(_stringLiteralDF94EFAB2817C9FA4C96A63F52A6908EB5841345, L_13, /*hidden argument*/NULL);
return L_17;
}
}
IL2CPP_EXTERN_C String_t* XRCpuImage_ToString_mE31499DDD8365EC75336BFF9C7393BCA2C1B2E5A_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
XRCpuImage_tA48C0687D95D3D63D1101E4E08EFCF0ABB2431CE * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XRCpuImage_tA48C0687D95D3D63D1101E4E08EFCF0ABB2431CE *>(__this + _offset);
String_t* _returnValue;
_returnValue = XRCpuImage_ToString_mE31499DDD8365EC75336BFF9C7393BCA2C1B2E5A(_thisAdjusted, method);
return _returnValue;
}
// System.Void UnityEngine.XR.ARSubsystems.XRCpuImage::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRCpuImage__cctor_m29EB7C261680FA4A1CD196510620C5D72E83626A (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&OnImageRequestCompleteDelegate_t118FB01E93241BFD5BCA5BEF2A6FD082ACAAB4DD_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XRCpuImage_OnAsyncConversionComplete_m60DC813F1A2B8A59F993D245683847D933D292A9_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XRCpuImage_tA48C0687D95D3D63D1101E4E08EFCF0ABB2431CE_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
// static Api.OnImageRequestCompleteDelegate s_OnAsyncConversionCompleteDelegate = OnAsyncConversionComplete;
OnImageRequestCompleteDelegate_t118FB01E93241BFD5BCA5BEF2A6FD082ACAAB4DD * L_0 = (OnImageRequestCompleteDelegate_t118FB01E93241BFD5BCA5BEF2A6FD082ACAAB4DD *)il2cpp_codegen_object_new(OnImageRequestCompleteDelegate_t118FB01E93241BFD5BCA5BEF2A6FD082ACAAB4DD_il2cpp_TypeInfo_var);
OnImageRequestCompleteDelegate__ctor_mB4E3DC02E880D5890B499CFD8BC47B4C47CCD2BC(L_0, NULL, (intptr_t)((intptr_t)XRCpuImage_OnAsyncConversionComplete_m60DC813F1A2B8A59F993D245683847D933D292A9_RuntimeMethod_var), /*hidden argument*/NULL);
((XRCpuImage_tA48C0687D95D3D63D1101E4E08EFCF0ABB2431CE_StaticFields*)il2cpp_codegen_static_fields_for(XRCpuImage_tA48C0687D95D3D63D1101E4E08EFCF0ABB2431CE_il2cpp_TypeInfo_var))->set_s_OnAsyncConversionCompleteDelegate_2(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
// UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.XRPointCloud> UnityEngine.XR.ARSubsystems.XRDepthSubsystem::GetChanges(Unity.Collections.Allocator)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TrackableChanges_1_t77AFD32F12A88AC162E5B41E66265CAF9D8E6435 XRDepthSubsystem_GetChanges_m5EDDB48B96701CE5D087B4BDAE51DD0213BF663A (XRDepthSubsystem_t808E21F0192095B08FA03AC535314FB5EF3B7E28 * __this, int32_t ___allocator0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SubsystemWithProvider_3_get_provider_mD94067B1AF85FAFB63F37DD477718C6280E8EE0D_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XRPointCloud_t08B41A05528E45CE709F8C14CA6C484D360A62F2_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
// var changes = provider.GetChanges(XRPointCloud.defaultValue, allocator);
Provider_t8E88C17A70269CD3E96909AFCCA952AAA7DEC0B6 * L_0;
L_0 = SubsystemWithProvider_3_get_provider_mD94067B1AF85FAFB63F37DD477718C6280E8EE0D_inline(__this, /*hidden argument*/SubsystemWithProvider_3_get_provider_mD94067B1AF85FAFB63F37DD477718C6280E8EE0D_RuntimeMethod_var);
IL2CPP_RUNTIME_CLASS_INIT(XRPointCloud_t08B41A05528E45CE709F8C14CA6C484D360A62F2_il2cpp_TypeInfo_var);
XRPointCloud_t08B41A05528E45CE709F8C14CA6C484D360A62F2 L_1;
L_1 = XRPointCloud_get_defaultValue_m484986BE6FCCFD493B66A7BC4895B0AC49F043E2_inline(/*hidden argument*/NULL);
int32_t L_2 = ___allocator0;
NullCheck(L_0);
TrackableChanges_1_t77AFD32F12A88AC162E5B41E66265CAF9D8E6435 L_3;
L_3 = VirtualFuncInvoker2< TrackableChanges_1_t77AFD32F12A88AC162E5B41E66265CAF9D8E6435 , XRPointCloud_t08B41A05528E45CE709F8C14CA6C484D360A62F2 , int32_t >::Invoke(8 /* UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.XRPointCloud> UnityEngine.XR.ARSubsystems.XRDepthSubsystem/Provider::GetChanges(UnityEngine.XR.ARSubsystems.XRPointCloud,Unity.Collections.Allocator) */, L_0, L_1, L_2);
// return changes;
return L_3;
}
}
// UnityEngine.XR.ARSubsystems.XRPointCloudData UnityEngine.XR.ARSubsystems.XRDepthSubsystem::GetPointCloudData(UnityEngine.XR.ARSubsystems.TrackableId,Unity.Collections.Allocator)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XRPointCloudData_t3AFE7A70A93C061F8C3B3B7AEDE07EDF6A86B177 XRDepthSubsystem_GetPointCloudData_mC82CC38D5B56703EE808D9BD61D19B908C2C2364 (XRDepthSubsystem_t808E21F0192095B08FA03AC535314FB5EF3B7E28 * __this, TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B ___trackableId0, int32_t ___allocator1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SubsystemWithProvider_3_get_provider_mD94067B1AF85FAFB63F37DD477718C6280E8EE0D_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
// if (allocator == Allocator.Temp)
int32_t L_0 = ___allocator1;
if ((!(((uint32_t)L_0) == ((uint32_t)2))))
{
goto IL_000f;
}
}
{
// throw new InvalidOperationException("Allocator.Temp is not supported. Use Allocator.TempJob if you wish to use a temporary allocator.");
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_1 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral0040832A71810E092F962A5F9A66A6A1866CC7D1)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XRDepthSubsystem_GetPointCloudData_mC82CC38D5B56703EE808D9BD61D19B908C2C2364_RuntimeMethod_var)));
}
IL_000f:
{
// if (allocator == Allocator.None)
int32_t L_2 = ___allocator1;
if ((!(((uint32_t)L_2) == ((uint32_t)1))))
{
goto IL_001e;
}
}
{
// throw new InvalidOperationException("Allocator.None is not a valid allocator.");
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_3 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_3, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral1889AF12D766B3A68EB9EE79FE4ECA560C23A4F5)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XRDepthSubsystem_GetPointCloudData_mC82CC38D5B56703EE808D9BD61D19B908C2C2364_RuntimeMethod_var)));
}
IL_001e:
{
// return provider.GetPointCloudData(trackableId, allocator);
Provider_t8E88C17A70269CD3E96909AFCCA952AAA7DEC0B6 * L_4;
L_4 = SubsystemWithProvider_3_get_provider_mD94067B1AF85FAFB63F37DD477718C6280E8EE0D_inline(__this, /*hidden argument*/SubsystemWithProvider_3_get_provider_mD94067B1AF85FAFB63F37DD477718C6280E8EE0D_RuntimeMethod_var);
TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B L_5 = ___trackableId0;
int32_t L_6 = ___allocator1;
NullCheck(L_4);
XRPointCloudData_t3AFE7A70A93C061F8C3B3B7AEDE07EDF6A86B177 L_7;
L_7 = VirtualFuncInvoker2< XRPointCloudData_t3AFE7A70A93C061F8C3B3B7AEDE07EDF6A86B177 , TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B , int32_t >::Invoke(9 /* UnityEngine.XR.ARSubsystems.XRPointCloudData UnityEngine.XR.ARSubsystems.XRDepthSubsystem/Provider::GetPointCloudData(UnityEngine.XR.ARSubsystems.TrackableId,Unity.Collections.Allocator) */, L_4, L_5, L_6);
return L_7;
}
}
// System.Void UnityEngine.XR.ARSubsystems.XRDepthSubsystem::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRDepthSubsystem__ctor_mCD27ED98C0FCF9538A67023E02DDD4AFB3B04D86 (XRDepthSubsystem_t808E21F0192095B08FA03AC535314FB5EF3B7E28 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TrackingSubsystem_4__ctor_m2360E7F58254317B2E9650982362DF0A70BAB5E4_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
TrackingSubsystem_4__ctor_m2360E7F58254317B2E9650982362DF0A70BAB5E4(__this, /*hidden argument*/TrackingSubsystem_4__ctor_m2360E7F58254317B2E9650982362DF0A70BAB5E4_RuntimeMethod_var);
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
// System.Void UnityEngine.XR.ARSubsystems.XRDepthSubsystemDescriptor::.ctor(UnityEngine.XR.ARSubsystems.XRDepthSubsystemDescriptor/Cinfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRDepthSubsystemDescriptor__ctor_m8107883A37944FA3C8451BA4F8CF88B902BB56DD (XRDepthSubsystemDescriptor_t745DBB7D313FB52F756E0B7AA993FBBC26B412C2 * __this, Cinfo_t37F91E88FCD8623834BE1898FC146620538C08B1 ___descriptorParams0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SubsystemDescriptorWithProvider_2__ctor_m4C7EAD774890F6A7B6A2871F0217E0D8B5EBD60F_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
// XRDepthSubsystemDescriptor(Cinfo descriptorParams)
SubsystemDescriptorWithProvider_2__ctor_m4C7EAD774890F6A7B6A2871F0217E0D8B5EBD60F(__this, /*hidden argument*/SubsystemDescriptorWithProvider_2__ctor_m4C7EAD774890F6A7B6A2871F0217E0D8B5EBD60F_RuntimeMethod_var);
// id = descriptorParams.id;
Cinfo_t37F91E88FCD8623834BE1898FC146620538C08B1 L_0 = ___descriptorParams0;
String_t* L_1 = L_0.get_id_0();
SubsystemDescriptorWithProvider_set_id_mEC6863CDB21597618394D2ED4182A9ED3ACBF220_inline(__this, L_1, /*hidden argument*/NULL);
// providerType = descriptorParams.providerType;
Type_t * L_2;
L_2 = Cinfo_get_providerType_m7168F2BEAB1E7D53C4A1308A0BE686CB6ACAC37D_inline((Cinfo_t37F91E88FCD8623834BE1898FC146620538C08B1 *)(&___descriptorParams0), /*hidden argument*/NULL);
SubsystemDescriptorWithProvider_set_providerType_m672B1F3CC7A12E8569D801F7C79538753C0D9C2D_inline(__this, L_2, /*hidden argument*/NULL);
// subsystemTypeOverride = descriptorParams.subsystemTypeOverride;
Type_t * L_3;
L_3 = Cinfo_get_subsystemTypeOverride_mA17A612B4FB9125843E254DB825177C3B1834235_inline((Cinfo_t37F91E88FCD8623834BE1898FC146620538C08B1 *)(&___descriptorParams0), /*hidden argument*/NULL);
SubsystemDescriptorWithProvider_set_subsystemTypeOverride_mA453100A7A8FAB35FBE7154E63B5A17D518F41B6_inline(__this, L_3, /*hidden argument*/NULL);
// supportsFeaturePoints = descriptorParams.supportsFeaturePoints;
bool L_4;
L_4 = Cinfo_get_supportsFeaturePoints_mAE8F24562D2A19594A5AB98BDA0FC1C35730B5BA((Cinfo_t37F91E88FCD8623834BE1898FC146620538C08B1 *)(&___descriptorParams0), /*hidden argument*/NULL);
XRDepthSubsystemDescriptor_set_supportsFeaturePoints_mA0C105DA50CA07BC488A7E1BDDB3CD72225BE00C_inline(__this, L_4, /*hidden argument*/NULL);
// supportsUniqueIds = descriptorParams.supportsUniqueIds;
bool L_5;
L_5 = Cinfo_get_supportsUniqueIds_m6A1B72F6B917B3B001388027A7324A84146E5B7F((Cinfo_t37F91E88FCD8623834BE1898FC146620538C08B1 *)(&___descriptorParams0), /*hidden argument*/NULL);
XRDepthSubsystemDescriptor_set_supportsUniqueIds_m0BBF2BAA5E4E1A704B29F62FE895F5A29A5D93CD_inline(__this, L_5, /*hidden argument*/NULL);
// supportsConfidence = descriptorParams.supportsConfidence;
bool L_6;
L_6 = Cinfo_get_supportsConfidence_m483E36BDB283478D5E1F6F6F3C96A279EB6DE01A((Cinfo_t37F91E88FCD8623834BE1898FC146620538C08B1 *)(&___descriptorParams0), /*hidden argument*/NULL);
XRDepthSubsystemDescriptor_set_supportsConfidence_m877945BE2EB06E5FB0699BEDA781CDC7E88DBC9A_inline(__this, L_6, /*hidden argument*/NULL);
// }
return;
}
}
// System.Void UnityEngine.XR.ARSubsystems.XRDepthSubsystemDescriptor::set_supportsFeaturePoints(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRDepthSubsystemDescriptor_set_supportsFeaturePoints_mA0C105DA50CA07BC488A7E1BDDB3CD72225BE00C (XRDepthSubsystemDescriptor_t745DBB7D313FB52F756E0B7AA993FBBC26B412C2 * __this, bool ___value0, const RuntimeMethod* method)
{
{
// public bool supportsFeaturePoints { get; private set; }
bool L_0 = ___value0;
__this->set_U3CsupportsFeaturePointsU3Ek__BackingField_3(L_0);
return;
}
}
// System.Void UnityEngine.XR.ARSubsystems.XRDepthSubsystemDescriptor::set_supportsUniqueIds(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRDepthSubsystemDescriptor_set_supportsUniqueIds_m0BBF2BAA5E4E1A704B29F62FE895F5A29A5D93CD (XRDepthSubsystemDescriptor_t745DBB7D313FB52F756E0B7AA993FBBC26B412C2 * __this, bool ___value0, const RuntimeMethod* method)
{
{
// public bool supportsUniqueIds { get; private set; }
bool L_0 = ___value0;
__this->set_U3CsupportsUniqueIdsU3Ek__BackingField_4(L_0);
return;
}
}
// System.Void UnityEngine.XR.ARSubsystems.XRDepthSubsystemDescriptor::set_supportsConfidence(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRDepthSubsystemDescriptor_set_supportsConfidence_m877945BE2EB06E5FB0699BEDA781CDC7E88DBC9A (XRDepthSubsystemDescriptor_t745DBB7D313FB52F756E0B7AA993FBBC26B412C2 * __this, bool ___value0, const RuntimeMethod* method)
{
{
// public bool supportsConfidence { get; private set; }
bool L_0 = ___value0;
__this->set_U3CsupportsConfidenceU3Ek__BackingField_5(L_0);
return;
}
}
// System.Void UnityEngine.XR.ARSubsystems.XRDepthSubsystemDescriptor::RegisterDescriptor(UnityEngine.XR.ARSubsystems.XRDepthSubsystemDescriptor/Cinfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRDepthSubsystemDescriptor_RegisterDescriptor_mB5908D568E8943B143747EDA81FF550FE2BB3A33 (Cinfo_t37F91E88FCD8623834BE1898FC146620538C08B1 ___descriptorParams0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SubsystemDescriptorStore_tE5D99C3159868DE6506269CB6B830621F8BC31A6_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XRDepthSubsystemDescriptor_t745DBB7D313FB52F756E0B7AA993FBBC26B412C2_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
// var descriptor = new XRDepthSubsystemDescriptor(descriptorParams);
Cinfo_t37F91E88FCD8623834BE1898FC146620538C08B1 L_0 = ___descriptorParams0;
XRDepthSubsystemDescriptor_t745DBB7D313FB52F756E0B7AA993FBBC26B412C2 * L_1 = (XRDepthSubsystemDescriptor_t745DBB7D313FB52F756E0B7AA993FBBC26B412C2 *)il2cpp_codegen_object_new(XRDepthSubsystemDescriptor_t745DBB7D313FB52F756E0B7AA993FBBC26B412C2_il2cpp_TypeInfo_var);
XRDepthSubsystemDescriptor__ctor_m8107883A37944FA3C8451BA4F8CF88B902BB56DD(L_1, L_0, /*hidden argument*/NULL);
// SubsystemDescriptorStore.RegisterDescriptor(descriptor);
IL2CPP_RUNTIME_CLASS_INIT(SubsystemDescriptorStore_tE5D99C3159868DE6506269CB6B830621F8BC31A6_il2cpp_TypeInfo_var);
SubsystemDescriptorStore_RegisterDescriptor_m5586866BB233EF26B98640851816DD1764657688(L_1, /*hidden argument*/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
// UnityEngine.XR.ARSubsystems.XREnvironmentProbe UnityEngine.XR.ARSubsystems.XREnvironmentProbe::get_defaultValue()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XREnvironmentProbe_t4D75B5DF95135D1BA45222CBE3E7677E823B8D4C XREnvironmentProbe_get_defaultValue_m150C4FBAC331EF916AABC17F68BDC6243D5B5EB8 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XREnvironmentProbe_t4D75B5DF95135D1BA45222CBE3E7677E823B8D4C_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
// public static XREnvironmentProbe defaultValue => s_Default;
IL2CPP_RUNTIME_CLASS_INIT(XREnvironmentProbe_t4D75B5DF95135D1BA45222CBE3E7677E823B8D4C_il2cpp_TypeInfo_var);
XREnvironmentProbe_t4D75B5DF95135D1BA45222CBE3E7677E823B8D4C L_0 = ((XREnvironmentProbe_t4D75B5DF95135D1BA45222CBE3E7677E823B8D4C_StaticFields*)il2cpp_codegen_static_fields_for(XREnvironmentProbe_t4D75B5DF95135D1BA45222CBE3E7677E823B8D4C_il2cpp_TypeInfo_var))->get_s_Default_0();
return L_0;
}
}
// UnityEngine.XR.ARSubsystems.TrackableId UnityEngine.XR.ARSubsystems.XREnvironmentProbe::get_trackableId()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B XREnvironmentProbe_get_trackableId_m3C275681C5223EDD967B1F37E2A0FAFF03A80066 (XREnvironmentProbe_t4D75B5DF95135D1BA45222CBE3E7677E823B8D4C * __this, const RuntimeMethod* method)
{
{
// get => m_TrackableId;
TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B L_0 = __this->get_m_TrackableId_1();
return L_0;
}
}
IL2CPP_EXTERN_C TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B XREnvironmentProbe_get_trackableId_m3C275681C5223EDD967B1F37E2A0FAFF03A80066_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
XREnvironmentProbe_t4D75B5DF95135D1BA45222CBE3E7677E823B8D4C * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XREnvironmentProbe_t4D75B5DF95135D1BA45222CBE3E7677E823B8D4C *>(__this + _offset);
TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B _returnValue;
_returnValue = XREnvironmentProbe_get_trackableId_m3C275681C5223EDD967B1F37E2A0FAFF03A80066_inline(_thisAdjusted, method);
return _returnValue;
}
// System.Void UnityEngine.XR.ARSubsystems.XREnvironmentProbe::set_trackableId(UnityEngine.XR.ARSubsystems.TrackableId)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XREnvironmentProbe_set_trackableId_m2FAAA910E6D06256C1ECCCCF8C6D3E72A056199D (XREnvironmentProbe_t4D75B5DF95135D1BA45222CBE3E7677E823B8D4C * __this, TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B ___value0, const RuntimeMethod* method)
{
{
// private set => m_TrackableId = value;
TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B L_0 = ___value0;
__this->set_m_TrackableId_1(L_0);
return;
}
}
IL2CPP_EXTERN_C void XREnvironmentProbe_set_trackableId_m2FAAA910E6D06256C1ECCCCF8C6D3E72A056199D_AdjustorThunk (RuntimeObject * __this, TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B ___value0, const RuntimeMethod* method)
{
XREnvironmentProbe_t4D75B5DF95135D1BA45222CBE3E7677E823B8D4C * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XREnvironmentProbe_t4D75B5DF95135D1BA45222CBE3E7677E823B8D4C *>(__this + _offset);
XREnvironmentProbe_set_trackableId_m2FAAA910E6D06256C1ECCCCF8C6D3E72A056199D_inline(_thisAdjusted, ___value0, method);
}
// UnityEngine.Vector3 UnityEngine.XR.ARSubsystems.XREnvironmentProbe::get_scale()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E XREnvironmentProbe_get_scale_m73AF4CF41515A2EDAD35FFBA598D23207F9D2BD3 (XREnvironmentProbe_t4D75B5DF95135D1BA45222CBE3E7677E823B8D4C * __this, const RuntimeMethod* method)
{
{
// get => m_Scale;
Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_0 = __this->get_m_Scale_2();
return L_0;
}
}
IL2CPP_EXTERN_C Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E XREnvironmentProbe_get_scale_m73AF4CF41515A2EDAD35FFBA598D23207F9D2BD3_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
XREnvironmentProbe_t4D75B5DF95135D1BA45222CBE3E7677E823B8D4C * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XREnvironmentProbe_t4D75B5DF95135D1BA45222CBE3E7677E823B8D4C *>(__this + _offset);
Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E _returnValue;
_returnValue = XREnvironmentProbe_get_scale_m73AF4CF41515A2EDAD35FFBA598D23207F9D2BD3_inline(_thisAdjusted, method);
return _returnValue;
}
// UnityEngine.Pose UnityEngine.XR.ARSubsystems.XREnvironmentProbe::get_pose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A XREnvironmentProbe_get_pose_m03ABF5D0F413C9892349CF3891D5214147DD4C09 (XREnvironmentProbe_t4D75B5DF95135D1BA45222CBE3E7677E823B8D4C * __this, const RuntimeMethod* method)
{
{
// get => m_Pose;
Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A L_0 = __this->get_m_Pose_3();
return L_0;
}
}
IL2CPP_EXTERN_C Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A XREnvironmentProbe_get_pose_m03ABF5D0F413C9892349CF3891D5214147DD4C09_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
XREnvironmentProbe_t4D75B5DF95135D1BA45222CBE3E7677E823B8D4C * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XREnvironmentProbe_t4D75B5DF95135D1BA45222CBE3E7677E823B8D4C *>(__this + _offset);
Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A _returnValue;
_returnValue = XREnvironmentProbe_get_pose_m03ABF5D0F413C9892349CF3891D5214147DD4C09_inline(_thisAdjusted, method);
return _returnValue;
}
// System.Void UnityEngine.XR.ARSubsystems.XREnvironmentProbe::set_pose(UnityEngine.Pose)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XREnvironmentProbe_set_pose_mAC84C3A2D8788D587F0503EA1CE051294A8A87E9 (XREnvironmentProbe_t4D75B5DF95135D1BA45222CBE3E7677E823B8D4C * __this, Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A ___value0, const RuntimeMethod* method)
{
{
// private set => m_Pose = value;
Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A L_0 = ___value0;
__this->set_m_Pose_3(L_0);
return;
}
}
IL2CPP_EXTERN_C void XREnvironmentProbe_set_pose_mAC84C3A2D8788D587F0503EA1CE051294A8A87E9_AdjustorThunk (RuntimeObject * __this, Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A ___value0, const RuntimeMethod* method)
{
XREnvironmentProbe_t4D75B5DF95135D1BA45222CBE3E7677E823B8D4C * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XREnvironmentProbe_t4D75B5DF95135D1BA45222CBE3E7677E823B8D4C *>(__this + _offset);
XREnvironmentProbe_set_pose_mAC84C3A2D8788D587F0503EA1CE051294A8A87E9_inline(_thisAdjusted, ___value0, method);
}
// UnityEngine.Vector3 UnityEngine.XR.ARSubsystems.XREnvironmentProbe::get_size()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E XREnvironmentProbe_get_size_mC31926635D53201B3C0E7E76B3ADBE2883374135 (XREnvironmentProbe_t4D75B5DF95135D1BA45222CBE3E7677E823B8D4C * __this, const RuntimeMethod* method)
{
{
// get => m_Size;
Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_0 = __this->get_m_Size_4();
return L_0;
}
}
IL2CPP_EXTERN_C Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E XREnvironmentProbe_get_size_mC31926635D53201B3C0E7E76B3ADBE2883374135_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
XREnvironmentProbe_t4D75B5DF95135D1BA45222CBE3E7677E823B8D4C * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XREnvironmentProbe_t4D75B5DF95135D1BA45222CBE3E7677E823B8D4C *>(__this + _offset);
Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E _returnValue;
_returnValue = XREnvironmentProbe_get_size_mC31926635D53201B3C0E7E76B3ADBE2883374135_inline(_thisAdjusted, method);
return _returnValue;
}
// UnityEngine.XR.ARSubsystems.XRTextureDescriptor UnityEngine.XR.ARSubsystems.XREnvironmentProbe::get_textureDescriptor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XRTextureDescriptor_t9CA857DCCC1208B74376787BE4F3008A01B29A57 XREnvironmentProbe_get_textureDescriptor_mDA5B2F0E63647BBC038FB4E476F609625109FA13 (XREnvironmentProbe_t4D75B5DF95135D1BA45222CBE3E7677E823B8D4C * __this, const RuntimeMethod* method)
{
{
// get => m_TextureDescriptor;
XRTextureDescriptor_t9CA857DCCC1208B74376787BE4F3008A01B29A57 L_0 = __this->get_m_TextureDescriptor_5();
return L_0;
}
}
IL2CPP_EXTERN_C XRTextureDescriptor_t9CA857DCCC1208B74376787BE4F3008A01B29A57 XREnvironmentProbe_get_textureDescriptor_mDA5B2F0E63647BBC038FB4E476F609625109FA13_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
XREnvironmentProbe_t4D75B5DF95135D1BA45222CBE3E7677E823B8D4C * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XREnvironmentProbe_t4D75B5DF95135D1BA45222CBE3E7677E823B8D4C *>(__this + _offset);
XRTextureDescriptor_t9CA857DCCC1208B74376787BE4F3008A01B29A57 _returnValue;
_returnValue = XREnvironmentProbe_get_textureDescriptor_mDA5B2F0E63647BBC038FB4E476F609625109FA13_inline(_thisAdjusted, method);
return _returnValue;
}
// UnityEngine.XR.ARSubsystems.TrackingState UnityEngine.XR.ARSubsystems.XREnvironmentProbe::get_trackingState()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XREnvironmentProbe_get_trackingState_m47E2E959CA905F4498489EEFF1C1DCEC4958582C (XREnvironmentProbe_t4D75B5DF95135D1BA45222CBE3E7677E823B8D4C * __this, const RuntimeMethod* method)
{
{
// get => m_TrackingState;
int32_t L_0 = __this->get_m_TrackingState_6();
return L_0;
}
}
IL2CPP_EXTERN_C int32_t XREnvironmentProbe_get_trackingState_m47E2E959CA905F4498489EEFF1C1DCEC4958582C_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
XREnvironmentProbe_t4D75B5DF95135D1BA45222CBE3E7677E823B8D4C * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XREnvironmentProbe_t4D75B5DF95135D1BA45222CBE3E7677E823B8D4C *>(__this + _offset);
int32_t _returnValue;
_returnValue = XREnvironmentProbe_get_trackingState_m47E2E959CA905F4498489EEFF1C1DCEC4958582C_inline(_thisAdjusted, method);
return _returnValue;
}
// System.IntPtr UnityEngine.XR.ARSubsystems.XREnvironmentProbe::get_nativePtr()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR intptr_t XREnvironmentProbe_get_nativePtr_m00FA5612D1CB3AB7F8F11B1ECBD7AA139FEE60F4 (XREnvironmentProbe_t4D75B5DF95135D1BA45222CBE3E7677E823B8D4C * __this, const RuntimeMethod* method)
{
{
// get => m_NativePtr;
intptr_t L_0 = __this->get_m_NativePtr_7();
return (intptr_t)L_0;
}
}
IL2CPP_EXTERN_C intptr_t XREnvironmentProbe_get_nativePtr_m00FA5612D1CB3AB7F8F11B1ECBD7AA139FEE60F4_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
XREnvironmentProbe_t4D75B5DF95135D1BA45222CBE3E7677E823B8D4C * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XREnvironmentProbe_t4D75B5DF95135D1BA45222CBE3E7677E823B8D4C *>(__this + _offset);
intptr_t _returnValue;
_returnValue = XREnvironmentProbe_get_nativePtr_m00FA5612D1CB3AB7F8F11B1ECBD7AA139FEE60F4_inline(_thisAdjusted, method);
return _returnValue;
}
// System.Boolean UnityEngine.XR.ARSubsystems.XREnvironmentProbe::Equals(UnityEngine.XR.ARSubsystems.XREnvironmentProbe)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XREnvironmentProbe_Equals_mAB858DCB46B0A972BE91B46AE6BA4C2AB6B8479B (XREnvironmentProbe_t4D75B5DF95135D1BA45222CBE3E7677E823B8D4C * __this, XREnvironmentProbe_t4D75B5DF95135D1BA45222CBE3E7677E823B8D4C ___other0, const RuntimeMethod* method)
{
{
// return m_TrackableId.Equals(other.m_TrackableId);
TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B * L_0 = __this->get_address_of_m_TrackableId_1();
XREnvironmentProbe_t4D75B5DF95135D1BA45222CBE3E7677E823B8D4C L_1 = ___other0;
TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B L_2 = L_1.get_m_TrackableId_1();
bool L_3;
L_3 = TrackableId_Equals_m1DF35616359175E3D66DE18250E8CDA1E6462B06((TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B *)L_0, L_2, /*hidden argument*/NULL);
return L_3;
}
}
IL2CPP_EXTERN_C bool XREnvironmentProbe_Equals_mAB858DCB46B0A972BE91B46AE6BA4C2AB6B8479B_AdjustorThunk (RuntimeObject * __this, XREnvironmentProbe_t4D75B5DF95135D1BA45222CBE3E7677E823B8D4C ___other0, const RuntimeMethod* method)
{
XREnvironmentProbe_t4D75B5DF95135D1BA45222CBE3E7677E823B8D4C * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XREnvironmentProbe_t4D75B5DF95135D1BA45222CBE3E7677E823B8D4C *>(__this + _offset);
bool _returnValue;
_returnValue = XREnvironmentProbe_Equals_mAB858DCB46B0A972BE91B46AE6BA4C2AB6B8479B(_thisAdjusted, ___other0, method);
return _returnValue;
}
// System.Boolean UnityEngine.XR.ARSubsystems.XREnvironmentProbe::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XREnvironmentProbe_Equals_m940DA5EE99C70171A86520CA30C33C0E778A15E7 (XREnvironmentProbe_t4D75B5DF95135D1BA45222CBE3E7677E823B8D4C * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XREnvironmentProbe_t4D75B5DF95135D1BA45222CBE3E7677E823B8D4C_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
// (obj is XREnvironmentProbe) && Equals((XREnvironmentProbe)obj);
RuntimeObject * L_0 = ___obj0;
if (!((RuntimeObject *)IsInstSealed((RuntimeObject*)L_0, XREnvironmentProbe_t4D75B5DF95135D1BA45222CBE3E7677E823B8D4C_il2cpp_TypeInfo_var)))
{
goto IL_0015;
}
}
{
RuntimeObject * L_1 = ___obj0;
bool L_2;
L_2 = XREnvironmentProbe_Equals_mAB858DCB46B0A972BE91B46AE6BA4C2AB6B8479B((XREnvironmentProbe_t4D75B5DF95135D1BA45222CBE3E7677E823B8D4C *)__this, ((*(XREnvironmentProbe_t4D75B5DF95135D1BA45222CBE3E7677E823B8D4C *)((XREnvironmentProbe_t4D75B5DF95135D1BA45222CBE3E7677E823B8D4C *)UnBox(L_1, XREnvironmentProbe_t4D75B5DF95135D1BA45222CBE3E7677E823B8D4C_il2cpp_TypeInfo_var)))), /*hidden argument*/NULL);
return L_2;
}
IL_0015:
{
return (bool)0;
}
}
IL2CPP_EXTERN_C bool XREnvironmentProbe_Equals_m940DA5EE99C70171A86520CA30C33C0E778A15E7_AdjustorThunk (RuntimeObject * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
XREnvironmentProbe_t4D75B5DF95135D1BA45222CBE3E7677E823B8D4C * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XREnvironmentProbe_t4D75B5DF95135D1BA45222CBE3E7677E823B8D4C *>(__this + _offset);
bool _returnValue;
_returnValue = XREnvironmentProbe_Equals_m940DA5EE99C70171A86520CA30C33C0E778A15E7(_thisAdjusted, ___obj0, method);
return _returnValue;
}
// System.Int32 UnityEngine.XR.ARSubsystems.XREnvironmentProbe::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XREnvironmentProbe_GetHashCode_mE6E401BB29C7F44E680E6561A8AB7CD92B3F2472 (XREnvironmentProbe_t4D75B5DF95135D1BA45222CBE3E7677E823B8D4C * __this, const RuntimeMethod* method)
{
{
// public override int GetHashCode() => m_TrackableId.GetHashCode();
TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B * L_0 = __this->get_address_of_m_TrackableId_1();
int32_t L_1;
L_1 = TrackableId_GetHashCode_mFD297FC6DB40FB5B28C6E9B7A2CF2785D75C4E86((TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B *)L_0, /*hidden argument*/NULL);
return L_1;
}
}
IL2CPP_EXTERN_C int32_t XREnvironmentProbe_GetHashCode_mE6E401BB29C7F44E680E6561A8AB7CD92B3F2472_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
XREnvironmentProbe_t4D75B5DF95135D1BA45222CBE3E7677E823B8D4C * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XREnvironmentProbe_t4D75B5DF95135D1BA45222CBE3E7677E823B8D4C *>(__this + _offset);
int32_t _returnValue;
_returnValue = XREnvironmentProbe_GetHashCode_mE6E401BB29C7F44E680E6561A8AB7CD92B3F2472(_thisAdjusted, method);
return _returnValue;
}
// System.String UnityEngine.XR.ARSubsystems.XREnvironmentProbe::ToString()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XREnvironmentProbe_ToString_mBF2604257F8CA6CE56C5D389E8D08339725B8B93 (XREnvironmentProbe_t4D75B5DF95135D1BA45222CBE3E7677E823B8D4C * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral40C3754113912BBB2324B9A85745EAD27C43B49F);
s_Il2CppMethodInitialized = true;
}
{
// public override string ToString() => ToString("0.000");
String_t* L_0;
L_0 = XREnvironmentProbe_ToString_m68F8E47BA9E4040BF7352D68F61FB17177000009((XREnvironmentProbe_t4D75B5DF95135D1BA45222CBE3E7677E823B8D4C *)__this, _stringLiteral40C3754113912BBB2324B9A85745EAD27C43B49F, /*hidden argument*/NULL);
return L_0;
}
}
IL2CPP_EXTERN_C String_t* XREnvironmentProbe_ToString_mBF2604257F8CA6CE56C5D389E8D08339725B8B93_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
XREnvironmentProbe_t4D75B5DF95135D1BA45222CBE3E7677E823B8D4C * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XREnvironmentProbe_t4D75B5DF95135D1BA45222CBE3E7677E823B8D4C *>(__this + _offset);
String_t* _returnValue;
_returnValue = XREnvironmentProbe_ToString_mBF2604257F8CA6CE56C5D389E8D08339725B8B93(_thisAdjusted, method);
return _returnValue;
}
// System.String UnityEngine.XR.ARSubsystems.XREnvironmentProbe::ToString(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XREnvironmentProbe_ToString_m68F8E47BA9E4040BF7352D68F61FB17177000009 (XREnvironmentProbe_t4D75B5DF95135D1BA45222CBE3E7677E823B8D4C * __this, String_t* ___floatingPointformat0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TrackingState_tB6996ED0D52D2A17DFACC90800705B81D370FC38_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralFB004ECFD7B1E474B835B2C92DC67B54C8CA4AE8);
s_Il2CppMethodInitialized = true;
}
{
// return string.Format("{0} scale:{1} pose:{2} size:{3} environmentTextureData:{4} trackingState:{5} nativePtr:{6}",
// m_TrackableId.ToString(), m_Scale.ToString(floatingPointformat),
// m_Pose.ToString(floatingPointformat), m_Size.ToString(floatingPointformat),
// m_TextureDescriptor.ToString(), m_TrackingState.ToString(), m_NativePtr.ToString());
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_0 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)SZArrayNew(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE_il2cpp_TypeInfo_var, (uint32_t)7);
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_1 = L_0;
TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B * L_2 = __this->get_address_of_m_TrackableId_1();
String_t* L_3;
L_3 = TrackableId_ToString_mCD45FD4FF5DF6DE30A38AD05D02CFA7B2B696BB1((TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B *)L_2, /*hidden argument*/NULL);
NullCheck(L_1);
ArrayElementTypeCheck (L_1, L_3);
(L_1)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_3);
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_4 = L_1;
Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * L_5 = __this->get_address_of_m_Scale_2();
String_t* L_6 = ___floatingPointformat0;
String_t* L_7;
L_7 = Vector3_ToString_mBD710BF9F46219074EE5B095F064EAB4F73B64C1((Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E *)L_5, L_6, /*hidden argument*/NULL);
NullCheck(L_4);
ArrayElementTypeCheck (L_4, L_7);
(L_4)->SetAt(static_cast<il2cpp_array_size_t>(1), (RuntimeObject *)L_7);
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_8 = L_4;
Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A * L_9 = __this->get_address_of_m_Pose_3();
String_t* L_10 = ___floatingPointformat0;
String_t* L_11;
L_11 = Pose_ToString_mF545EBBC9D7E041E8FC673068C8DB7E29B696C82((Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A *)L_9, L_10, /*hidden argument*/NULL);
NullCheck(L_8);
ArrayElementTypeCheck (L_8, L_11);
(L_8)->SetAt(static_cast<il2cpp_array_size_t>(2), (RuntimeObject *)L_11);
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_12 = L_8;
Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * L_13 = __this->get_address_of_m_Size_4();
String_t* L_14 = ___floatingPointformat0;
String_t* L_15;
L_15 = Vector3_ToString_mBD710BF9F46219074EE5B095F064EAB4F73B64C1((Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E *)L_13, L_14, /*hidden argument*/NULL);
NullCheck(L_12);
ArrayElementTypeCheck (L_12, L_15);
(L_12)->SetAt(static_cast<il2cpp_array_size_t>(3), (RuntimeObject *)L_15);
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_16 = L_12;
XRTextureDescriptor_t9CA857DCCC1208B74376787BE4F3008A01B29A57 * L_17 = __this->get_address_of_m_TextureDescriptor_5();
String_t* L_18;
L_18 = XRTextureDescriptor_ToString_m13E8A051346374949A95D217BBAAD298893A25EB((XRTextureDescriptor_t9CA857DCCC1208B74376787BE4F3008A01B29A57 *)L_17, /*hidden argument*/NULL);
NullCheck(L_16);
ArrayElementTypeCheck (L_16, L_18);
(L_16)->SetAt(static_cast<il2cpp_array_size_t>(4), (RuntimeObject *)L_18);
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_19 = L_16;
int32_t* L_20 = __this->get_address_of_m_TrackingState_6();
RuntimeObject * L_21 = Box(TrackingState_tB6996ED0D52D2A17DFACC90800705B81D370FC38_il2cpp_TypeInfo_var, L_20);
NullCheck(L_21);
String_t* L_22;
L_22 = VirtualFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_21);
*L_20 = *(int32_t*)UnBox(L_21);
NullCheck(L_19);
ArrayElementTypeCheck (L_19, L_22);
(L_19)->SetAt(static_cast<il2cpp_array_size_t>(5), (RuntimeObject *)L_22);
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_23 = L_19;
intptr_t* L_24 = __this->get_address_of_m_NativePtr_7();
String_t* L_25;
L_25 = IntPtr_ToString_mC499BFB66CB492853717FFACA63599701FC1E91C((intptr_t*)L_24, /*hidden argument*/NULL);
NullCheck(L_23);
ArrayElementTypeCheck (L_23, L_25);
(L_23)->SetAt(static_cast<il2cpp_array_size_t>(6), (RuntimeObject *)L_25);
String_t* L_26;
L_26 = String_Format_mCED6767EA5FEE6F15ABCD5B4F9150D1284C2795B(_stringLiteralFB004ECFD7B1E474B835B2C92DC67B54C8CA4AE8, L_23, /*hidden argument*/NULL);
return L_26;
}
}
IL2CPP_EXTERN_C String_t* XREnvironmentProbe_ToString_m68F8E47BA9E4040BF7352D68F61FB17177000009_AdjustorThunk (RuntimeObject * __this, String_t* ___floatingPointformat0, const RuntimeMethod* method)
{
XREnvironmentProbe_t4D75B5DF95135D1BA45222CBE3E7677E823B8D4C * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XREnvironmentProbe_t4D75B5DF95135D1BA45222CBE3E7677E823B8D4C *>(__this + _offset);
String_t* _returnValue;
_returnValue = XREnvironmentProbe_ToString_m68F8E47BA9E4040BF7352D68F61FB17177000009(_thisAdjusted, ___floatingPointformat0, method);
return _returnValue;
}
// System.Void UnityEngine.XR.ARSubsystems.XREnvironmentProbe::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XREnvironmentProbe__cctor_m44E1286FA9D3E1AD04BCE96FA2DDF5A808B5F0D7 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XREnvironmentProbe_t4D75B5DF95135D1BA45222CBE3E7677E823B8D4C_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
XREnvironmentProbe_t4D75B5DF95135D1BA45222CBE3E7677E823B8D4C V_0;
memset((&V_0), 0, sizeof(V_0));
{
// static readonly XREnvironmentProbe s_Default = new XREnvironmentProbe
// {
// trackableId = TrackableId.invalidId,
// pose = Pose.identity
// };
il2cpp_codegen_initobj((&V_0), sizeof(XREnvironmentProbe_t4D75B5DF95135D1BA45222CBE3E7677E823B8D4C ));
IL2CPP_RUNTIME_CLASS_INIT(TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B_il2cpp_TypeInfo_var);
TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B L_0;
L_0 = TrackableId_get_invalidId_m06B698EFFA7748E185299C72B5CEC1AA5B221F85_inline(/*hidden argument*/NULL);
XREnvironmentProbe_set_trackableId_m2FAAA910E6D06256C1ECCCCF8C6D3E72A056199D_inline((XREnvironmentProbe_t4D75B5DF95135D1BA45222CBE3E7677E823B8D4C *)(&V_0), L_0, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A_il2cpp_TypeInfo_var);
Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A L_1;
L_1 = Pose_get_identity_m334B16AC3024785914BCC5A2B949750A010878BF(/*hidden argument*/NULL);
XREnvironmentProbe_set_pose_mAC84C3A2D8788D587F0503EA1CE051294A8A87E9_inline((XREnvironmentProbe_t4D75B5DF95135D1BA45222CBE3E7677E823B8D4C *)(&V_0), L_1, /*hidden argument*/NULL);
XREnvironmentProbe_t4D75B5DF95135D1BA45222CBE3E7677E823B8D4C L_2 = V_0;
((XREnvironmentProbe_t4D75B5DF95135D1BA45222CBE3E7677E823B8D4C_StaticFields*)il2cpp_codegen_static_fields_for(XREnvironmentProbe_t4D75B5DF95135D1BA45222CBE3E7677E823B8D4C_il2cpp_TypeInfo_var))->set_s_Default_0(L_2);
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
// System.Void UnityEngine.XR.ARSubsystems.XREnvironmentProbeSubsystem::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XREnvironmentProbeSubsystem__ctor_m72F971761AF7B66CBABFF9ABC8468A52406001A2 (XREnvironmentProbeSubsystem_t0C60258F565400E7C5AF0E0B7FA933F2BCF83CB6 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TrackingSubsystem_4__ctor_m16365F5B18A26301BCC266DB0611B79E1F7BF45A_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
// public XREnvironmentProbeSubsystem()
TrackingSubsystem_4__ctor_m16365F5B18A26301BCC266DB0611B79E1F7BF45A(__this, /*hidden argument*/TrackingSubsystem_4__ctor_m16365F5B18A26301BCC266DB0611B79E1F7BF45A_RuntimeMethod_var);
// }
return;
}
}
// System.Boolean UnityEngine.XR.ARSubsystems.XREnvironmentProbeSubsystem::get_automaticPlacementRequested()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XREnvironmentProbeSubsystem_get_automaticPlacementRequested_m4C5B5CD6CED27204FE6C024CCCA28AE5411D181A (XREnvironmentProbeSubsystem_t0C60258F565400E7C5AF0E0B7FA933F2BCF83CB6 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SubsystemWithProvider_3_get_provider_mAEFFAE8CA85C4D0C45621AD2B23F88B767CDECD4_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
// get => provider.automaticPlacementRequested;
Provider_tAF87FE3E906FDBF14F06488A1AA5E80400EFE190 * L_0;
L_0 = SubsystemWithProvider_3_get_provider_mAEFFAE8CA85C4D0C45621AD2B23F88B767CDECD4_inline(__this, /*hidden argument*/SubsystemWithProvider_3_get_provider_mAEFFAE8CA85C4D0C45621AD2B23F88B767CDECD4_RuntimeMethod_var);
NullCheck(L_0);
bool L_1;
L_1 = VirtualFuncInvoker0< bool >::Invoke(8 /* System.Boolean UnityEngine.XR.ARSubsystems.XREnvironmentProbeSubsystem/Provider::get_automaticPlacementRequested() */, L_0);
return L_1;
}
}
// System.Void UnityEngine.XR.ARSubsystems.XREnvironmentProbeSubsystem::set_automaticPlacementRequested(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XREnvironmentProbeSubsystem_set_automaticPlacementRequested_m15DAC8989A0BBE60B0594548EBDE2640D2878E69 (XREnvironmentProbeSubsystem_t0C60258F565400E7C5AF0E0B7FA933F2BCF83CB6 * __this, bool ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SubsystemWithProvider_3_get_provider_mAEFFAE8CA85C4D0C45621AD2B23F88B767CDECD4_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SubsystemWithProvider_3_get_subsystemDescriptor_m72A7F9F61ACAEE6E71276F89F0D9521BB07CF29F_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
// if (value && !subsystemDescriptor.supportsAutomaticPlacement)
bool L_0 = ___value0;
if (!L_0)
{
goto IL_001b;
}
}
{
XREnvironmentProbeSubsystemDescriptor_t7C10519F545418330347AC7434FBB10F39DD4243 * L_1;
L_1 = SubsystemWithProvider_3_get_subsystemDescriptor_m72A7F9F61ACAEE6E71276F89F0D9521BB07CF29F_inline(__this, /*hidden argument*/SubsystemWithProvider_3_get_subsystemDescriptor_m72A7F9F61ACAEE6E71276F89F0D9521BB07CF29F_RuntimeMethod_var);
NullCheck(L_1);
bool L_2;
L_2 = XREnvironmentProbeSubsystemDescriptor_get_supportsAutomaticPlacement_m12205A40FBD5214E81576F99E35D9996F0E20509_inline(L_1, /*hidden argument*/NULL);
if (L_2)
{
goto IL_001b;
}
}
{
// throw new NotSupportedException("Subsystem does not support automatic placement of environment probes.");
NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 * L_3 = (NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339_il2cpp_TypeInfo_var)));
NotSupportedException__ctor_m40BC57BDA6E0E119B73700CC809A14B57DC65A90(L_3, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral2BB40F9B4AC8B2B883083DDA4180950FAFD8BD7E)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XREnvironmentProbeSubsystem_set_automaticPlacementRequested_m15DAC8989A0BBE60B0594548EBDE2640D2878E69_RuntimeMethod_var)));
}
IL_001b:
{
// provider.automaticPlacementRequested = value;
Provider_tAF87FE3E906FDBF14F06488A1AA5E80400EFE190 * L_4;
L_4 = SubsystemWithProvider_3_get_provider_mAEFFAE8CA85C4D0C45621AD2B23F88B767CDECD4_inline(__this, /*hidden argument*/SubsystemWithProvider_3_get_provider_mAEFFAE8CA85C4D0C45621AD2B23F88B767CDECD4_RuntimeMethod_var);
bool L_5 = ___value0;
NullCheck(L_4);
VirtualActionInvoker1< bool >::Invoke(9 /* System.Void UnityEngine.XR.ARSubsystems.XREnvironmentProbeSubsystem/Provider::set_automaticPlacementRequested(System.Boolean) */, L_4, L_5);
// }
return;
}
}
// System.Boolean UnityEngine.XR.ARSubsystems.XREnvironmentProbeSubsystem::get_automaticPlacementEnabled()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XREnvironmentProbeSubsystem_get_automaticPlacementEnabled_mA6656AB97766C21A341BEAF6DC55C73DFD97FF38 (XREnvironmentProbeSubsystem_t0C60258F565400E7C5AF0E0B7FA933F2BCF83CB6 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SubsystemWithProvider_3_get_provider_mAEFFAE8CA85C4D0C45621AD2B23F88B767CDECD4_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
// public bool automaticPlacementEnabled => provider.automaticPlacementEnabled;
Provider_tAF87FE3E906FDBF14F06488A1AA5E80400EFE190 * L_0;
L_0 = SubsystemWithProvider_3_get_provider_mAEFFAE8CA85C4D0C45621AD2B23F88B767CDECD4_inline(__this, /*hidden argument*/SubsystemWithProvider_3_get_provider_mAEFFAE8CA85C4D0C45621AD2B23F88B767CDECD4_RuntimeMethod_var);
NullCheck(L_0);
bool L_1;
L_1 = VirtualFuncInvoker0< bool >::Invoke(10 /* System.Boolean UnityEngine.XR.ARSubsystems.XREnvironmentProbeSubsystem/Provider::get_automaticPlacementEnabled() */, L_0);
return L_1;
}
}
// System.Boolean UnityEngine.XR.ARSubsystems.XREnvironmentProbeSubsystem::get_environmentTextureHDRRequested()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XREnvironmentProbeSubsystem_get_environmentTextureHDRRequested_m166D0FBAAAD5ECCE03B7A797A4657D44FF0DE3E5 (XREnvironmentProbeSubsystem_t0C60258F565400E7C5AF0E0B7FA933F2BCF83CB6 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SubsystemWithProvider_3_get_provider_mAEFFAE8CA85C4D0C45621AD2B23F88B767CDECD4_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
// get => provider.environmentTextureHDRRequested;
Provider_tAF87FE3E906FDBF14F06488A1AA5E80400EFE190 * L_0;
L_0 = SubsystemWithProvider_3_get_provider_mAEFFAE8CA85C4D0C45621AD2B23F88B767CDECD4_inline(__this, /*hidden argument*/SubsystemWithProvider_3_get_provider_mAEFFAE8CA85C4D0C45621AD2B23F88B767CDECD4_RuntimeMethod_var);
NullCheck(L_0);
bool L_1;
L_1 = VirtualFuncInvoker0< bool >::Invoke(11 /* System.Boolean UnityEngine.XR.ARSubsystems.XREnvironmentProbeSubsystem/Provider::get_environmentTextureHDRRequested() */, L_0);
return L_1;
}
}
// System.Void UnityEngine.XR.ARSubsystems.XREnvironmentProbeSubsystem::set_environmentTextureHDRRequested(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XREnvironmentProbeSubsystem_set_environmentTextureHDRRequested_m74F6F5A55A456FD0607184D851B506CA1E9C2014 (XREnvironmentProbeSubsystem_t0C60258F565400E7C5AF0E0B7FA933F2BCF83CB6 * __this, bool ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SubsystemWithProvider_3_get_provider_mAEFFAE8CA85C4D0C45621AD2B23F88B767CDECD4_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
// set => provider.environmentTextureHDRRequested = value;
Provider_tAF87FE3E906FDBF14F06488A1AA5E80400EFE190 * L_0;
L_0 = SubsystemWithProvider_3_get_provider_mAEFFAE8CA85C4D0C45621AD2B23F88B767CDECD4_inline(__this, /*hidden argument*/SubsystemWithProvider_3_get_provider_mAEFFAE8CA85C4D0C45621AD2B23F88B767CDECD4_RuntimeMethod_var);
bool L_1 = ___value0;
NullCheck(L_0);
VirtualActionInvoker1< bool >::Invoke(12 /* System.Void UnityEngine.XR.ARSubsystems.XREnvironmentProbeSubsystem/Provider::set_environmentTextureHDRRequested(System.Boolean) */, L_0, L_1);
return;
}
}
// System.Boolean UnityEngine.XR.ARSubsystems.XREnvironmentProbeSubsystem::get_environmentTextureHDREnabled()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XREnvironmentProbeSubsystem_get_environmentTextureHDREnabled_mB79DCA9DCC1C7A0CD1A5029FF9373CC7C30B56D6 (XREnvironmentProbeSubsystem_t0C60258F565400E7C5AF0E0B7FA933F2BCF83CB6 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SubsystemWithProvider_3_get_provider_mAEFFAE8CA85C4D0C45621AD2B23F88B767CDECD4_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
// public bool environmentTextureHDREnabled => provider.environmentTextureHDREnabled;
Provider_tAF87FE3E906FDBF14F06488A1AA5E80400EFE190 * L_0;
L_0 = SubsystemWithProvider_3_get_provider_mAEFFAE8CA85C4D0C45621AD2B23F88B767CDECD4_inline(__this, /*hidden argument*/SubsystemWithProvider_3_get_provider_mAEFFAE8CA85C4D0C45621AD2B23F88B767CDECD4_RuntimeMethod_var);
NullCheck(L_0);
bool L_1;
L_1 = VirtualFuncInvoker0< bool >::Invoke(13 /* System.Boolean UnityEngine.XR.ARSubsystems.XREnvironmentProbeSubsystem/Provider::get_environmentTextureHDREnabled() */, L_0);
return L_1;
}
}
// UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.XREnvironmentProbe> UnityEngine.XR.ARSubsystems.XREnvironmentProbeSubsystem::GetChanges(Unity.Collections.Allocator)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TrackableChanges_1_tBC1B6352E3D11F9F7BC4E567480BDF8AE39A547F XREnvironmentProbeSubsystem_GetChanges_mB70866DF4F3022F457ADE2EA6A9A342416E55208 (XREnvironmentProbeSubsystem_t0C60258F565400E7C5AF0E0B7FA933F2BCF83CB6 * __this, int32_t ___allocator0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SubsystemWithProvider_3_get_provider_mAEFFAE8CA85C4D0C45621AD2B23F88B767CDECD4_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XREnvironmentProbe_t4D75B5DF95135D1BA45222CBE3E7677E823B8D4C_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
// => provider.GetChanges(XREnvironmentProbe.defaultValue, allocator);
Provider_tAF87FE3E906FDBF14F06488A1AA5E80400EFE190 * L_0;
L_0 = SubsystemWithProvider_3_get_provider_mAEFFAE8CA85C4D0C45621AD2B23F88B767CDECD4_inline(__this, /*hidden argument*/SubsystemWithProvider_3_get_provider_mAEFFAE8CA85C4D0C45621AD2B23F88B767CDECD4_RuntimeMethod_var);
IL2CPP_RUNTIME_CLASS_INIT(XREnvironmentProbe_t4D75B5DF95135D1BA45222CBE3E7677E823B8D4C_il2cpp_TypeInfo_var);
XREnvironmentProbe_t4D75B5DF95135D1BA45222CBE3E7677E823B8D4C L_1;
L_1 = XREnvironmentProbe_get_defaultValue_m150C4FBAC331EF916AABC17F68BDC6243D5B5EB8_inline(/*hidden argument*/NULL);
int32_t L_2 = ___allocator0;
NullCheck(L_0);
TrackableChanges_1_tBC1B6352E3D11F9F7BC4E567480BDF8AE39A547F L_3;
L_3 = VirtualFuncInvoker2< TrackableChanges_1_tBC1B6352E3D11F9F7BC4E567480BDF8AE39A547F , XREnvironmentProbe_t4D75B5DF95135D1BA45222CBE3E7677E823B8D4C , int32_t >::Invoke(16 /* UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.XREnvironmentProbe> UnityEngine.XR.ARSubsystems.XREnvironmentProbeSubsystem/Provider::GetChanges(UnityEngine.XR.ARSubsystems.XREnvironmentProbe,Unity.Collections.Allocator) */, L_0, L_1, L_2);
return L_3;
}
}
// System.Boolean UnityEngine.XR.ARSubsystems.XREnvironmentProbeSubsystem::TryAddEnvironmentProbe(UnityEngine.Pose,UnityEngine.Vector3,UnityEngine.Vector3,UnityEngine.XR.ARSubsystems.XREnvironmentProbe&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XREnvironmentProbeSubsystem_TryAddEnvironmentProbe_mDA385F973061D7FFCDF6EBFE9EE0C478D557F8A4 (XREnvironmentProbeSubsystem_t0C60258F565400E7C5AF0E0B7FA933F2BCF83CB6 * __this, Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A ___pose0, Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___scale1, Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___size2, XREnvironmentProbe_t4D75B5DF95135D1BA45222CBE3E7677E823B8D4C * ___environmentProbe3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SubsystemWithProvider_3_get_provider_mAEFFAE8CA85C4D0C45621AD2B23F88B767CDECD4_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XREnvironmentProbe_t4D75B5DF95135D1BA45222CBE3E7677E823B8D4C_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
// if (!running)
bool L_0;
L_0 = SubsystemWithProvider_get_running_m42399652EC4AB466AFBAC9035FA77C1BD6C72406_inline(__this, /*hidden argument*/NULL);
if (L_0)
{
goto IL_0013;
}
}
{
// throw new InvalidOperationException("cannot add environment probes when environment probe system is not running");
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_1 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral3817AE5F81736AA82446C7E2BA122DD302D7AF11)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XREnvironmentProbeSubsystem_TryAddEnvironmentProbe_mDA385F973061D7FFCDF6EBFE9EE0C478D557F8A4_RuntimeMethod_var)));
}
IL_0013:
{
// environmentProbe = XREnvironmentProbe.defaultValue;
XREnvironmentProbe_t4D75B5DF95135D1BA45222CBE3E7677E823B8D4C * L_2 = ___environmentProbe3;
IL2CPP_RUNTIME_CLASS_INIT(XREnvironmentProbe_t4D75B5DF95135D1BA45222CBE3E7677E823B8D4C_il2cpp_TypeInfo_var);
XREnvironmentProbe_t4D75B5DF95135D1BA45222CBE3E7677E823B8D4C L_3;
L_3 = XREnvironmentProbe_get_defaultValue_m150C4FBAC331EF916AABC17F68BDC6243D5B5EB8_inline(/*hidden argument*/NULL);
*(XREnvironmentProbe_t4D75B5DF95135D1BA45222CBE3E7677E823B8D4C *)L_2 = L_3;
// return provider.TryAddEnvironmentProbe(pose, scale, size, out environmentProbe);
Provider_tAF87FE3E906FDBF14F06488A1AA5E80400EFE190 * L_4;
L_4 = SubsystemWithProvider_3_get_provider_mAEFFAE8CA85C4D0C45621AD2B23F88B767CDECD4_inline(__this, /*hidden argument*/SubsystemWithProvider_3_get_provider_mAEFFAE8CA85C4D0C45621AD2B23F88B767CDECD4_RuntimeMethod_var);
Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A L_5 = ___pose0;
Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_6 = ___scale1;
Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_7 = ___size2;
XREnvironmentProbe_t4D75B5DF95135D1BA45222CBE3E7677E823B8D4C * L_8 = ___environmentProbe3;
NullCheck(L_4);
bool L_9;
L_9 = VirtualFuncInvoker4< bool, Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A , Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E , Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E , XREnvironmentProbe_t4D75B5DF95135D1BA45222CBE3E7677E823B8D4C * >::Invoke(14 /* System.Boolean UnityEngine.XR.ARSubsystems.XREnvironmentProbeSubsystem/Provider::TryAddEnvironmentProbe(UnityEngine.Pose,UnityEngine.Vector3,UnityEngine.Vector3,UnityEngine.XR.ARSubsystems.XREnvironmentProbe&) */, L_4, L_5, L_6, L_7, (XREnvironmentProbe_t4D75B5DF95135D1BA45222CBE3E7677E823B8D4C *)L_8);
return L_9;
}
}
// System.Boolean UnityEngine.XR.ARSubsystems.XREnvironmentProbeSubsystem::RemoveEnvironmentProbe(UnityEngine.XR.ARSubsystems.TrackableId)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XREnvironmentProbeSubsystem_RemoveEnvironmentProbe_m3D02CCF782150963FBE6FB1E67EBB3C6054BA422 (XREnvironmentProbeSubsystem_t0C60258F565400E7C5AF0E0B7FA933F2BCF83CB6 * __this, TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B ___trackableId0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SubsystemWithProvider_3_get_provider_mAEFFAE8CA85C4D0C45621AD2B23F88B767CDECD4_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
// if (!running)
bool L_0;
L_0 = SubsystemWithProvider_get_running_m42399652EC4AB466AFBAC9035FA77C1BD6C72406_inline(__this, /*hidden argument*/NULL);
if (L_0)
{
goto IL_0013;
}
}
{
// throw new InvalidOperationException("cannot remove environment probes when environment probe system is not running");
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_1 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral5AA54628701AE2AFACB9F6D58F472757613F8ADB)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XREnvironmentProbeSubsystem_RemoveEnvironmentProbe_m3D02CCF782150963FBE6FB1E67EBB3C6054BA422_RuntimeMethod_var)));
}
IL_0013:
{
// return provider.RemoveEnvironmentProbe(trackableId);
Provider_tAF87FE3E906FDBF14F06488A1AA5E80400EFE190 * L_2;
L_2 = SubsystemWithProvider_3_get_provider_mAEFFAE8CA85C4D0C45621AD2B23F88B767CDECD4_inline(__this, /*hidden argument*/SubsystemWithProvider_3_get_provider_mAEFFAE8CA85C4D0C45621AD2B23F88B767CDECD4_RuntimeMethod_var);
TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B L_3 = ___trackableId0;
NullCheck(L_2);
bool L_4;
L_4 = VirtualFuncInvoker1< bool, TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B >::Invoke(15 /* System.Boolean UnityEngine.XR.ARSubsystems.XREnvironmentProbeSubsystem/Provider::RemoveEnvironmentProbe(UnityEngine.XR.ARSubsystems.TrackableId) */, L_2, L_3);
return L_4;
}
}
// System.Boolean UnityEngine.XR.ARSubsystems.XREnvironmentProbeSubsystem::Register(UnityEngine.XR.ARSubsystems.XREnvironmentProbeSubsystemCinfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XREnvironmentProbeSubsystem_Register_m20EFD30E3B31DD3ED37EA42B6E465AFAE132EA37 (XREnvironmentProbeSubsystemCinfo_t6D9368EC95B6B356A67B7289270F27BB6A4440B2 ___environmentProbeSubsystemCinfo0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SubsystemDescriptorStore_tE5D99C3159868DE6506269CB6B830621F8BC31A6_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
// XREnvironmentProbeSubsystemDescriptor environmentProbeSubsystemDescriptor = XREnvironmentProbeSubsystemDescriptor.Create(environmentProbeSubsystemCinfo);
XREnvironmentProbeSubsystemCinfo_t6D9368EC95B6B356A67B7289270F27BB6A4440B2 L_0 = ___environmentProbeSubsystemCinfo0;
XREnvironmentProbeSubsystemDescriptor_t7C10519F545418330347AC7434FBB10F39DD4243 * L_1;
L_1 = XREnvironmentProbeSubsystemDescriptor_Create_m64B177418E0330A718E4461D29A11FE8518BB09E(L_0, /*hidden argument*/NULL);
// SubsystemDescriptorStore.RegisterDescriptor(environmentProbeSubsystemDescriptor);
IL2CPP_RUNTIME_CLASS_INIT(SubsystemDescriptorStore_tE5D99C3159868DE6506269CB6B830621F8BC31A6_il2cpp_TypeInfo_var);
SubsystemDescriptorStore_RegisterDescriptor_m5586866BB233EF26B98640851816DD1764657688(L_1, /*hidden argument*/NULL);
// return true;
return (bool)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
// Conversion methods for marshalling of: UnityEngine.XR.ARSubsystems.XREnvironmentProbeSubsystemCinfo
IL2CPP_EXTERN_C void XREnvironmentProbeSubsystemCinfo_t6D9368EC95B6B356A67B7289270F27BB6A4440B2_marshal_pinvoke(const XREnvironmentProbeSubsystemCinfo_t6D9368EC95B6B356A67B7289270F27BB6A4440B2& unmarshaled, XREnvironmentProbeSubsystemCinfo_t6D9368EC95B6B356A67B7289270F27BB6A4440B2_marshaled_pinvoke& marshaled)
{
Exception_t* ___U3CproviderTypeU3Ek__BackingField_1Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field '<providerType>k__BackingField' of type 'XREnvironmentProbeSubsystemCinfo': Reference type field marshaling is not supported.");
IL2CPP_RAISE_MANAGED_EXCEPTION(___U3CproviderTypeU3Ek__BackingField_1Exception, NULL);
}
IL2CPP_EXTERN_C void XREnvironmentProbeSubsystemCinfo_t6D9368EC95B6B356A67B7289270F27BB6A4440B2_marshal_pinvoke_back(const XREnvironmentProbeSubsystemCinfo_t6D9368EC95B6B356A67B7289270F27BB6A4440B2_marshaled_pinvoke& marshaled, XREnvironmentProbeSubsystemCinfo_t6D9368EC95B6B356A67B7289270F27BB6A4440B2& unmarshaled)
{
Exception_t* ___U3CproviderTypeU3Ek__BackingField_1Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field '<providerType>k__BackingField' of type 'XREnvironmentProbeSubsystemCinfo': Reference type field marshaling is not supported.");
IL2CPP_RAISE_MANAGED_EXCEPTION(___U3CproviderTypeU3Ek__BackingField_1Exception, NULL);
}
// Conversion method for clean up from marshalling of: UnityEngine.XR.ARSubsystems.XREnvironmentProbeSubsystemCinfo
IL2CPP_EXTERN_C void XREnvironmentProbeSubsystemCinfo_t6D9368EC95B6B356A67B7289270F27BB6A4440B2_marshal_pinvoke_cleanup(XREnvironmentProbeSubsystemCinfo_t6D9368EC95B6B356A67B7289270F27BB6A4440B2_marshaled_pinvoke& marshaled)
{
}
// Conversion methods for marshalling of: UnityEngine.XR.ARSubsystems.XREnvironmentProbeSubsystemCinfo
IL2CPP_EXTERN_C void XREnvironmentProbeSubsystemCinfo_t6D9368EC95B6B356A67B7289270F27BB6A4440B2_marshal_com(const XREnvironmentProbeSubsystemCinfo_t6D9368EC95B6B356A67B7289270F27BB6A4440B2& unmarshaled, XREnvironmentProbeSubsystemCinfo_t6D9368EC95B6B356A67B7289270F27BB6A4440B2_marshaled_com& marshaled)
{
Exception_t* ___U3CproviderTypeU3Ek__BackingField_1Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field '<providerType>k__BackingField' of type 'XREnvironmentProbeSubsystemCinfo': Reference type field marshaling is not supported.");
IL2CPP_RAISE_MANAGED_EXCEPTION(___U3CproviderTypeU3Ek__BackingField_1Exception, NULL);
}
IL2CPP_EXTERN_C void XREnvironmentProbeSubsystemCinfo_t6D9368EC95B6B356A67B7289270F27BB6A4440B2_marshal_com_back(const XREnvironmentProbeSubsystemCinfo_t6D9368EC95B6B356A67B7289270F27BB6A4440B2_marshaled_com& marshaled, XREnvironmentProbeSubsystemCinfo_t6D9368EC95B6B356A67B7289270F27BB6A4440B2& unmarshaled)
{
Exception_t* ___U3CproviderTypeU3Ek__BackingField_1Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field '<providerType>k__BackingField' of type 'XREnvironmentProbeSubsystemCinfo': Reference type field marshaling is not supported.");
IL2CPP_RAISE_MANAGED_EXCEPTION(___U3CproviderTypeU3Ek__BackingField_1Exception, NULL);
}
// Conversion method for clean up from marshalling of: UnityEngine.XR.ARSubsystems.XREnvironmentProbeSubsystemCinfo
IL2CPP_EXTERN_C void XREnvironmentProbeSubsystemCinfo_t6D9368EC95B6B356A67B7289270F27BB6A4440B2_marshal_com_cleanup(XREnvironmentProbeSubsystemCinfo_t6D9368EC95B6B356A67B7289270F27BB6A4440B2_marshaled_com& marshaled)
{
}
// System.String UnityEngine.XR.ARSubsystems.XREnvironmentProbeSubsystemCinfo::get_id()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XREnvironmentProbeSubsystemCinfo_get_id_mBEA40C4012D8253E65C525083E3454C93BC6F3BE (XREnvironmentProbeSubsystemCinfo_t6D9368EC95B6B356A67B7289270F27BB6A4440B2 * __this, const RuntimeMethod* method)
{
{
// public string id { get; set; }
String_t* L_0 = __this->get_U3CidU3Ek__BackingField_0();
return L_0;
}
}
IL2CPP_EXTERN_C String_t* XREnvironmentProbeSubsystemCinfo_get_id_mBEA40C4012D8253E65C525083E3454C93BC6F3BE_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
XREnvironmentProbeSubsystemCinfo_t6D9368EC95B6B356A67B7289270F27BB6A4440B2 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XREnvironmentProbeSubsystemCinfo_t6D9368EC95B6B356A67B7289270F27BB6A4440B2 *>(__this + _offset);
String_t* _returnValue;
_returnValue = XREnvironmentProbeSubsystemCinfo_get_id_mBEA40C4012D8253E65C525083E3454C93BC6F3BE_inline(_thisAdjusted, method);
return _returnValue;
}
// System.Void UnityEngine.XR.ARSubsystems.XREnvironmentProbeSubsystemCinfo::set_id(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XREnvironmentProbeSubsystemCinfo_set_id_m5C48BD3E879410D5C622BE7DC74D5C798E151731 (XREnvironmentProbeSubsystemCinfo_t6D9368EC95B6B356A67B7289270F27BB6A4440B2 * __this, String_t* ___value0, const RuntimeMethod* method)
{
{
// public string id { get; set; }
String_t* L_0 = ___value0;
__this->set_U3CidU3Ek__BackingField_0(L_0);
return;
}
}
IL2CPP_EXTERN_C void XREnvironmentProbeSubsystemCinfo_set_id_m5C48BD3E879410D5C622BE7DC74D5C798E151731_AdjustorThunk (RuntimeObject * __this, String_t* ___value0, const RuntimeMethod* method)
{
XREnvironmentProbeSubsystemCinfo_t6D9368EC95B6B356A67B7289270F27BB6A4440B2 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XREnvironmentProbeSubsystemCinfo_t6D9368EC95B6B356A67B7289270F27BB6A4440B2 *>(__this + _offset);
XREnvironmentProbeSubsystemCinfo_set_id_m5C48BD3E879410D5C622BE7DC74D5C798E151731_inline(_thisAdjusted, ___value0, method);
}
// System.Type UnityEngine.XR.ARSubsystems.XREnvironmentProbeSubsystemCinfo::get_providerType()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t * XREnvironmentProbeSubsystemCinfo_get_providerType_m3A3572178EED86B4F98254B4FAB73016B4459AA1 (XREnvironmentProbeSubsystemCinfo_t6D9368EC95B6B356A67B7289270F27BB6A4440B2 * __this, const RuntimeMethod* method)
{
{
// public Type providerType { get; set; }
Type_t * L_0 = __this->get_U3CproviderTypeU3Ek__BackingField_1();
return L_0;
}
}
IL2CPP_EXTERN_C Type_t * XREnvironmentProbeSubsystemCinfo_get_providerType_m3A3572178EED86B4F98254B4FAB73016B4459AA1_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
XREnvironmentProbeSubsystemCinfo_t6D9368EC95B6B356A67B7289270F27BB6A4440B2 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XREnvironmentProbeSubsystemCinfo_t6D9368EC95B6B356A67B7289270F27BB6A4440B2 *>(__this + _offset);
Type_t * _returnValue;
_returnValue = XREnvironmentProbeSubsystemCinfo_get_providerType_m3A3572178EED86B4F98254B4FAB73016B4459AA1_inline(_thisAdjusted, method);
return _returnValue;
}
// System.Void UnityEngine.XR.ARSubsystems.XREnvironmentProbeSubsystemCinfo::set_providerType(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XREnvironmentProbeSubsystemCinfo_set_providerType_m70C42D1F210DE19AB5E7D82F2D0BDB467E94FC2F (XREnvironmentProbeSubsystemCinfo_t6D9368EC95B6B356A67B7289270F27BB6A4440B2 * __this, Type_t * ___value0, const RuntimeMethod* method)
{
{
// public Type providerType { get; set; }
Type_t * L_0 = ___value0;
__this->set_U3CproviderTypeU3Ek__BackingField_1(L_0);
return;
}
}
IL2CPP_EXTERN_C void XREnvironmentProbeSubsystemCinfo_set_providerType_m70C42D1F210DE19AB5E7D82F2D0BDB467E94FC2F_AdjustorThunk (RuntimeObject * __this, Type_t * ___value0, const RuntimeMethod* method)
{
XREnvironmentProbeSubsystemCinfo_t6D9368EC95B6B356A67B7289270F27BB6A4440B2 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XREnvironmentProbeSubsystemCinfo_t6D9368EC95B6B356A67B7289270F27BB6A4440B2 *>(__this + _offset);
XREnvironmentProbeSubsystemCinfo_set_providerType_m70C42D1F210DE19AB5E7D82F2D0BDB467E94FC2F_inline(_thisAdjusted, ___value0, method);
}
// System.Type UnityEngine.XR.ARSubsystems.XREnvironmentProbeSubsystemCinfo::get_subsystemTypeOverride()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t * XREnvironmentProbeSubsystemCinfo_get_subsystemTypeOverride_m258F6355EE3F5ED52ADF4A79777AD092AD9B2F22 (XREnvironmentProbeSubsystemCinfo_t6D9368EC95B6B356A67B7289270F27BB6A4440B2 * __this, const RuntimeMethod* method)
{
{
// public Type subsystemTypeOverride { get; set; }
Type_t * L_0 = __this->get_U3CsubsystemTypeOverrideU3Ek__BackingField_2();
return L_0;
}
}
IL2CPP_EXTERN_C Type_t * XREnvironmentProbeSubsystemCinfo_get_subsystemTypeOverride_m258F6355EE3F5ED52ADF4A79777AD092AD9B2F22_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
XREnvironmentProbeSubsystemCinfo_t6D9368EC95B6B356A67B7289270F27BB6A4440B2 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XREnvironmentProbeSubsystemCinfo_t6D9368EC95B6B356A67B7289270F27BB6A4440B2 *>(__this + _offset);
Type_t * _returnValue;
_returnValue = XREnvironmentProbeSubsystemCinfo_get_subsystemTypeOverride_m258F6355EE3F5ED52ADF4A79777AD092AD9B2F22_inline(_thisAdjusted, method);
return _returnValue;
}
// System.Void UnityEngine.XR.ARSubsystems.XREnvironmentProbeSubsystemCinfo::set_subsystemTypeOverride(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XREnvironmentProbeSubsystemCinfo_set_subsystemTypeOverride_mB35BB7FC1C0C42E0A7773365C147F539E7AC27EE (XREnvironmentProbeSubsystemCinfo_t6D9368EC95B6B356A67B7289270F27BB6A4440B2 * __this, Type_t * ___value0, const RuntimeMethod* method)
{
{
// public Type subsystemTypeOverride { get; set; }
Type_t * L_0 = ___value0;
__this->set_U3CsubsystemTypeOverrideU3Ek__BackingField_2(L_0);
return;
}
}
IL2CPP_EXTERN_C void XREnvironmentProbeSubsystemCinfo_set_subsystemTypeOverride_mB35BB7FC1C0C42E0A7773365C147F539E7AC27EE_AdjustorThunk (RuntimeObject * __this, Type_t * ___value0, const RuntimeMethod* method)
{
XREnvironmentProbeSubsystemCinfo_t6D9368EC95B6B356A67B7289270F27BB6A4440B2 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XREnvironmentProbeSubsystemCinfo_t6D9368EC95B6B356A67B7289270F27BB6A4440B2 *>(__this + _offset);
XREnvironmentProbeSubsystemCinfo_set_subsystemTypeOverride_mB35BB7FC1C0C42E0A7773365C147F539E7AC27EE_inline(_thisAdjusted, ___value0, method);
}
// System.Boolean UnityEngine.XR.ARSubsystems.XREnvironmentProbeSubsystemCinfo::get_supportsManualPlacement()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XREnvironmentProbeSubsystemCinfo_get_supportsManualPlacement_m194C593950367B1C7EFB50D6F00E5705597065BF (XREnvironmentProbeSubsystemCinfo_t6D9368EC95B6B356A67B7289270F27BB6A4440B2 * __this, const RuntimeMethod* method)
{
{
// public bool supportsManualPlacement { get; set; }
bool L_0 = __this->get_U3CsupportsManualPlacementU3Ek__BackingField_4();
return L_0;
}
}
IL2CPP_EXTERN_C bool XREnvironmentProbeSubsystemCinfo_get_supportsManualPlacement_m194C593950367B1C7EFB50D6F00E5705597065BF_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
XREnvironmentProbeSubsystemCinfo_t6D9368EC95B6B356A67B7289270F27BB6A4440B2 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XREnvironmentProbeSubsystemCinfo_t6D9368EC95B6B356A67B7289270F27BB6A4440B2 *>(__this + _offset);
bool _returnValue;
_returnValue = XREnvironmentProbeSubsystemCinfo_get_supportsManualPlacement_m194C593950367B1C7EFB50D6F00E5705597065BF_inline(_thisAdjusted, method);
return _returnValue;
}
// System.Void UnityEngine.XR.ARSubsystems.XREnvironmentProbeSubsystemCinfo::set_supportsManualPlacement(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XREnvironmentProbeSubsystemCinfo_set_supportsManualPlacement_m2D1156DE760E47CBDDC345AD5CAE5D23AC23E524 (XREnvironmentProbeSubsystemCinfo_t6D9368EC95B6B356A67B7289270F27BB6A4440B2 * __this, bool ___value0, const RuntimeMethod* method)
{
{
// public bool supportsManualPlacement { get; set; }
bool L_0 = ___value0;
__this->set_U3CsupportsManualPlacementU3Ek__BackingField_4(L_0);
return;
}
}
IL2CPP_EXTERN_C void XREnvironmentProbeSubsystemCinfo_set_supportsManualPlacement_m2D1156DE760E47CBDDC345AD5CAE5D23AC23E524_AdjustorThunk (RuntimeObject * __this, bool ___value0, const RuntimeMethod* method)
{
XREnvironmentProbeSubsystemCinfo_t6D9368EC95B6B356A67B7289270F27BB6A4440B2 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XREnvironmentProbeSubsystemCinfo_t6D9368EC95B6B356A67B7289270F27BB6A4440B2 *>(__this + _offset);
XREnvironmentProbeSubsystemCinfo_set_supportsManualPlacement_m2D1156DE760E47CBDDC345AD5CAE5D23AC23E524_inline(_thisAdjusted, ___value0, method);
}
// System.Boolean UnityEngine.XR.ARSubsystems.XREnvironmentProbeSubsystemCinfo::get_supportsRemovalOfManual()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XREnvironmentProbeSubsystemCinfo_get_supportsRemovalOfManual_m7B2DFDB097FAD2FC7FE6AE7F7A8172FA7B34D406 (XREnvironmentProbeSubsystemCinfo_t6D9368EC95B6B356A67B7289270F27BB6A4440B2 * __this, const RuntimeMethod* method)
{
{
// public bool supportsRemovalOfManual { get; set; }
bool L_0 = __this->get_U3CsupportsRemovalOfManualU3Ek__BackingField_5();
return L_0;
}
}
IL2CPP_EXTERN_C bool XREnvironmentProbeSubsystemCinfo_get_supportsRemovalOfManual_m7B2DFDB097FAD2FC7FE6AE7F7A8172FA7B34D406_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
XREnvironmentProbeSubsystemCinfo_t6D9368EC95B6B356A67B7289270F27BB6A4440B2 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XREnvironmentProbeSubsystemCinfo_t6D9368EC95B6B356A67B7289270F27BB6A4440B2 *>(__this + _offset);
bool _returnValue;
_returnValue = XREnvironmentProbeSubsystemCinfo_get_supportsRemovalOfManual_m7B2DFDB097FAD2FC7FE6AE7F7A8172FA7B34D406_inline(_thisAdjusted, method);
return _returnValue;
}
// System.Void UnityEngine.XR.ARSubsystems.XREnvironmentProbeSubsystemCinfo::set_supportsRemovalOfManual(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XREnvironmentProbeSubsystemCinfo_set_supportsRemovalOfManual_m01CE117FEA37EE9BEF79903754E396C35B859419 (XREnvironmentProbeSubsystemCinfo_t6D9368EC95B6B356A67B7289270F27BB6A4440B2 * __this, bool ___value0, const RuntimeMethod* method)
{
{
// public bool supportsRemovalOfManual { get; set; }
bool L_0 = ___value0;
__this->set_U3CsupportsRemovalOfManualU3Ek__BackingField_5(L_0);
return;
}
}
IL2CPP_EXTERN_C void XREnvironmentProbeSubsystemCinfo_set_supportsRemovalOfManual_m01CE117FEA37EE9BEF79903754E396C35B859419_AdjustorThunk (RuntimeObject * __this, bool ___value0, const RuntimeMethod* method)
{
XREnvironmentProbeSubsystemCinfo_t6D9368EC95B6B356A67B7289270F27BB6A4440B2 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XREnvironmentProbeSubsystemCinfo_t6D9368EC95B6B356A67B7289270F27BB6A4440B2 *>(__this + _offset);
XREnvironmentProbeSubsystemCinfo_set_supportsRemovalOfManual_m01CE117FEA37EE9BEF79903754E396C35B859419_inline(_thisAdjusted, ___value0, method);
}
// System.Boolean UnityEngine.XR.ARSubsystems.XREnvironmentProbeSubsystemCinfo::get_supportsAutomaticPlacement()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XREnvironmentProbeSubsystemCinfo_get_supportsAutomaticPlacement_m2EAA567973D53F9FFCF91AAD4233F91957281B11 (XREnvironmentProbeSubsystemCinfo_t6D9368EC95B6B356A67B7289270F27BB6A4440B2 * __this, const RuntimeMethod* method)
{
{
// public bool supportsAutomaticPlacement { get; set; }
bool L_0 = __this->get_U3CsupportsAutomaticPlacementU3Ek__BackingField_6();
return L_0;
}
}
IL2CPP_EXTERN_C bool XREnvironmentProbeSubsystemCinfo_get_supportsAutomaticPlacement_m2EAA567973D53F9FFCF91AAD4233F91957281B11_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
XREnvironmentProbeSubsystemCinfo_t6D9368EC95B6B356A67B7289270F27BB6A4440B2 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XREnvironmentProbeSubsystemCinfo_t6D9368EC95B6B356A67B7289270F27BB6A4440B2 *>(__this + _offset);
bool _returnValue;
_returnValue = XREnvironmentProbeSubsystemCinfo_get_supportsAutomaticPlacement_m2EAA567973D53F9FFCF91AAD4233F91957281B11_inline(_thisAdjusted, method);
return _returnValue;
}
// System.Void UnityEngine.XR.ARSubsystems.XREnvironmentProbeSubsystemCinfo::set_supportsAutomaticPlacement(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XREnvironmentProbeSubsystemCinfo_set_supportsAutomaticPlacement_mC4DBFBBD4DBB44D6B1154C4759A3175F9AC33D46 (XREnvironmentProbeSubsystemCinfo_t6D9368EC95B6B356A67B7289270F27BB6A4440B2 * __this, bool ___value0, const RuntimeMethod* method)
{
{
// public bool supportsAutomaticPlacement { get; set; }
bool L_0 = ___value0;
__this->set_U3CsupportsAutomaticPlacementU3Ek__BackingField_6(L_0);
return;
}
}
IL2CPP_EXTERN_C void XREnvironmentProbeSubsystemCinfo_set_supportsAutomaticPlacement_mC4DBFBBD4DBB44D6B1154C4759A3175F9AC33D46_AdjustorThunk (RuntimeObject * __this, bool ___value0, const RuntimeMethod* method)
{
XREnvironmentProbeSubsystemCinfo_t6D9368EC95B6B356A67B7289270F27BB6A4440B2 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XREnvironmentProbeSubsystemCinfo_t6D9368EC95B6B356A67B7289270F27BB6A4440B2 *>(__this + _offset);
XREnvironmentProbeSubsystemCinfo_set_supportsAutomaticPlacement_mC4DBFBBD4DBB44D6B1154C4759A3175F9AC33D46_inline(_thisAdjusted, ___value0, method);
}
// System.Boolean UnityEngine.XR.ARSubsystems.XREnvironmentProbeSubsystemCinfo::get_supportsRemovalOfAutomatic()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XREnvironmentProbeSubsystemCinfo_get_supportsRemovalOfAutomatic_mFC9AA46EA023D8A0968ED80B1F88F10AA50F549F (XREnvironmentProbeSubsystemCinfo_t6D9368EC95B6B356A67B7289270F27BB6A4440B2 * __this, const RuntimeMethod* method)
{
{
// public bool supportsRemovalOfAutomatic { get; set; }
bool L_0 = __this->get_U3CsupportsRemovalOfAutomaticU3Ek__BackingField_7();
return L_0;
}
}
IL2CPP_EXTERN_C bool XREnvironmentProbeSubsystemCinfo_get_supportsRemovalOfAutomatic_mFC9AA46EA023D8A0968ED80B1F88F10AA50F549F_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
XREnvironmentProbeSubsystemCinfo_t6D9368EC95B6B356A67B7289270F27BB6A4440B2 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XREnvironmentProbeSubsystemCinfo_t6D9368EC95B6B356A67B7289270F27BB6A4440B2 *>(__this + _offset);
bool _returnValue;
_returnValue = XREnvironmentProbeSubsystemCinfo_get_supportsRemovalOfAutomatic_mFC9AA46EA023D8A0968ED80B1F88F10AA50F549F_inline(_thisAdjusted, method);
return _returnValue;
}
// System.Void UnityEngine.XR.ARSubsystems.XREnvironmentProbeSubsystemCinfo::set_supportsRemovalOfAutomatic(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XREnvironmentProbeSubsystemCinfo_set_supportsRemovalOfAutomatic_m6FCC1E3ACDC01E4447E385A1B89C96DEE16B7EF2 (XREnvironmentProbeSubsystemCinfo_t6D9368EC95B6B356A67B7289270F27BB6A4440B2 * __this, bool ___value0, const RuntimeMethod* method)
{
{
// public bool supportsRemovalOfAutomatic { get; set; }
bool L_0 = ___value0;
__this->set_U3CsupportsRemovalOfAutomaticU3Ek__BackingField_7(L_0);
return;
}
}
IL2CPP_EXTERN_C void XREnvironmentProbeSubsystemCinfo_set_supportsRemovalOfAutomatic_m6FCC1E3ACDC01E4447E385A1B89C96DEE16B7EF2_AdjustorThunk (RuntimeObject * __this, bool ___value0, const RuntimeMethod* method)
{
XREnvironmentProbeSubsystemCinfo_t6D9368EC95B6B356A67B7289270F27BB6A4440B2 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XREnvironmentProbeSubsystemCinfo_t6D9368EC95B6B356A67B7289270F27BB6A4440B2 *>(__this + _offset);
XREnvironmentProbeSubsystemCinfo_set_supportsRemovalOfAutomatic_m6FCC1E3ACDC01E4447E385A1B89C96DEE16B7EF2_inline(_thisAdjusted, ___value0, method);
}
// System.Boolean UnityEngine.XR.ARSubsystems.XREnvironmentProbeSubsystemCinfo::get_supportsEnvironmentTexture()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XREnvironmentProbeSubsystemCinfo_get_supportsEnvironmentTexture_m3593704263A383A9EC79E765CCC01632707E4A48 (XREnvironmentProbeSubsystemCinfo_t6D9368EC95B6B356A67B7289270F27BB6A4440B2 * __this, const RuntimeMethod* method)
{
{
// public bool supportsEnvironmentTexture { get; set; }
bool L_0 = __this->get_U3CsupportsEnvironmentTextureU3Ek__BackingField_8();
return L_0;
}
}
IL2CPP_EXTERN_C bool XREnvironmentProbeSubsystemCinfo_get_supportsEnvironmentTexture_m3593704263A383A9EC79E765CCC01632707E4A48_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
XREnvironmentProbeSubsystemCinfo_t6D9368EC95B6B356A67B7289270F27BB6A4440B2 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XREnvironmentProbeSubsystemCinfo_t6D9368EC95B6B356A67B7289270F27BB6A4440B2 *>(__this + _offset);
bool _returnValue;
_returnValue = XREnvironmentProbeSubsystemCinfo_get_supportsEnvironmentTexture_m3593704263A383A9EC79E765CCC01632707E4A48_inline(_thisAdjusted, method);
return _returnValue;
}
// System.Void UnityEngine.XR.ARSubsystems.XREnvironmentProbeSubsystemCinfo::set_supportsEnvironmentTexture(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XREnvironmentProbeSubsystemCinfo_set_supportsEnvironmentTexture_mE30B73C6AC37C6DF8F5B7DBDBC90A975A498D3E4 (XREnvironmentProbeSubsystemCinfo_t6D9368EC95B6B356A67B7289270F27BB6A4440B2 * __this, bool ___value0, const RuntimeMethod* method)
{
{
// public bool supportsEnvironmentTexture { get; set; }
bool L_0 = ___value0;
__this->set_U3CsupportsEnvironmentTextureU3Ek__BackingField_8(L_0);
return;
}
}
IL2CPP_EXTERN_C void XREnvironmentProbeSubsystemCinfo_set_supportsEnvironmentTexture_mE30B73C6AC37C6DF8F5B7DBDBC90A975A498D3E4_AdjustorThunk (RuntimeObject * __this, bool ___value0, const RuntimeMethod* method)
{
XREnvironmentProbeSubsystemCinfo_t6D9368EC95B6B356A67B7289270F27BB6A4440B2 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XREnvironmentProbeSubsystemCinfo_t6D9368EC95B6B356A67B7289270F27BB6A4440B2 *>(__this + _offset);
XREnvironmentProbeSubsystemCinfo_set_supportsEnvironmentTexture_mE30B73C6AC37C6DF8F5B7DBDBC90A975A498D3E4_inline(_thisAdjusted, ___value0, method);
}
// System.Boolean UnityEngine.XR.ARSubsystems.XREnvironmentProbeSubsystemCinfo::get_supportsEnvironmentTextureHDR()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XREnvironmentProbeSubsystemCinfo_get_supportsEnvironmentTextureHDR_mDD0F30AB731A6010F6F96DBA660415B55FCD580A (XREnvironmentProbeSubsystemCinfo_t6D9368EC95B6B356A67B7289270F27BB6A4440B2 * __this, const RuntimeMethod* method)
{
{
// public bool supportsEnvironmentTextureHDR { get; set; }
bool L_0 = __this->get_U3CsupportsEnvironmentTextureHDRU3Ek__BackingField_9();
return L_0;
}
}
IL2CPP_EXTERN_C bool XREnvironmentProbeSubsystemCinfo_get_supportsEnvironmentTextureHDR_mDD0F30AB731A6010F6F96DBA660415B55FCD580A_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
XREnvironmentProbeSubsystemCinfo_t6D9368EC95B6B356A67B7289270F27BB6A4440B2 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XREnvironmentProbeSubsystemCinfo_t6D9368EC95B6B356A67B7289270F27BB6A4440B2 *>(__this + _offset);
bool _returnValue;
_returnValue = XREnvironmentProbeSubsystemCinfo_get_supportsEnvironmentTextureHDR_mDD0F30AB731A6010F6F96DBA660415B55FCD580A_inline(_thisAdjusted, method);
return _returnValue;
}
// System.Void UnityEngine.XR.ARSubsystems.XREnvironmentProbeSubsystemCinfo::set_supportsEnvironmentTextureHDR(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XREnvironmentProbeSubsystemCinfo_set_supportsEnvironmentTextureHDR_mA465A23A4DC052895F8F634892B7C8E3A49F4777 (XREnvironmentProbeSubsystemCinfo_t6D9368EC95B6B356A67B7289270F27BB6A4440B2 * __this, bool ___value0, const RuntimeMethod* method)
{
{
// public bool supportsEnvironmentTextureHDR { get; set; }
bool L_0 = ___value0;
__this->set_U3CsupportsEnvironmentTextureHDRU3Ek__BackingField_9(L_0);
return;
}
}
IL2CPP_EXTERN_C void XREnvironmentProbeSubsystemCinfo_set_supportsEnvironmentTextureHDR_mA465A23A4DC052895F8F634892B7C8E3A49F4777_AdjustorThunk (RuntimeObject * __this, bool ___value0, const RuntimeMethod* method)
{
XREnvironmentProbeSubsystemCinfo_t6D9368EC95B6B356A67B7289270F27BB6A4440B2 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XREnvironmentProbeSubsystemCinfo_t6D9368EC95B6B356A67B7289270F27BB6A4440B2 *>(__this + _offset);
XREnvironmentProbeSubsystemCinfo_set_supportsEnvironmentTextureHDR_mA465A23A4DC052895F8F634892B7C8E3A49F4777_inline(_thisAdjusted, ___value0, method);
}
// System.Boolean UnityEngine.XR.ARSubsystems.XREnvironmentProbeSubsystemCinfo::Equals(UnityEngine.XR.ARSubsystems.XREnvironmentProbeSubsystemCinfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XREnvironmentProbeSubsystemCinfo_Equals_mECAF625FF6A6D6CB7652827D34BCF4228243102C (XREnvironmentProbeSubsystemCinfo_t6D9368EC95B6B356A67B7289270F27BB6A4440B2 * __this, XREnvironmentProbeSubsystemCinfo_t6D9368EC95B6B356A67B7289270F27BB6A4440B2 ___other0, const RuntimeMethod* method)
{
bool V_0 = false;
{
// return
// ReferenceEquals(id, other.id)
// #if UNITY_2020_2_OR_NEWER
// && ReferenceEquals(providerType, other.providerType)
// && ReferenceEquals(subsystemTypeOverride, other.subsystemTypeOverride)
// #else
// && ReferenceEquals(implementationType, other.implementationType)
// #endif
// && supportsManualPlacement.Equals(other.supportsManualPlacement)
// && supportsRemovalOfManual.Equals(other.supportsRemovalOfManual)
// && supportsAutomaticPlacement.Equals(other.supportsAutomaticPlacement)
// && supportsRemovalOfAutomatic.Equals(other.supportsRemovalOfAutomatic)
// && supportsEnvironmentTexture.Equals(other.supportsEnvironmentTexture)
// && supportsEnvironmentTextureHDR.Equals(other.supportsEnvironmentTextureHDR);
String_t* L_0;
L_0 = XREnvironmentProbeSubsystemCinfo_get_id_mBEA40C4012D8253E65C525083E3454C93BC6F3BE_inline((XREnvironmentProbeSubsystemCinfo_t6D9368EC95B6B356A67B7289270F27BB6A4440B2 *)__this, /*hidden argument*/NULL);
String_t* L_1;
L_1 = XREnvironmentProbeSubsystemCinfo_get_id_mBEA40C4012D8253E65C525083E3454C93BC6F3BE_inline((XREnvironmentProbeSubsystemCinfo_t6D9368EC95B6B356A67B7289270F27BB6A4440B2 *)(&___other0), /*hidden argument*/NULL);
if ((!(((RuntimeObject*)(String_t*)L_0) == ((RuntimeObject*)(String_t*)L_1))))
{
goto IL_00bf;
}
}
{
Type_t * L_2;
L_2 = XREnvironmentProbeSubsystemCinfo_get_providerType_m3A3572178EED86B4F98254B4FAB73016B4459AA1_inline((XREnvironmentProbeSubsystemCinfo_t6D9368EC95B6B356A67B7289270F27BB6A4440B2 *)__this, /*hidden argument*/NULL);
Type_t * L_3;
L_3 = XREnvironmentProbeSubsystemCinfo_get_providerType_m3A3572178EED86B4F98254B4FAB73016B4459AA1_inline((XREnvironmentProbeSubsystemCinfo_t6D9368EC95B6B356A67B7289270F27BB6A4440B2 *)(&___other0), /*hidden argument*/NULL);
if ((!(((RuntimeObject*)(Type_t *)L_2) == ((RuntimeObject*)(Type_t *)L_3))))
{
goto IL_00bf;
}
}
{
Type_t * L_4;
L_4 = XREnvironmentProbeSubsystemCinfo_get_subsystemTypeOverride_m258F6355EE3F5ED52ADF4A79777AD092AD9B2F22_inline((XREnvironmentProbeSubsystemCinfo_t6D9368EC95B6B356A67B7289270F27BB6A4440B2 *)__this, /*hidden argument*/NULL);
Type_t * L_5;
L_5 = XREnvironmentProbeSubsystemCinfo_get_subsystemTypeOverride_m258F6355EE3F5ED52ADF4A79777AD092AD9B2F22_inline((XREnvironmentProbeSubsystemCinfo_t6D9368EC95B6B356A67B7289270F27BB6A4440B2 *)(&___other0), /*hidden argument*/NULL);
if ((!(((RuntimeObject*)(Type_t *)L_4) == ((RuntimeObject*)(Type_t *)L_5))))
{
goto IL_00bf;
}
}
{
bool L_6;
L_6 = XREnvironmentProbeSubsystemCinfo_get_supportsManualPlacement_m194C593950367B1C7EFB50D6F00E5705597065BF_inline((XREnvironmentProbeSubsystemCinfo_t6D9368EC95B6B356A67B7289270F27BB6A4440B2 *)__this, /*hidden argument*/NULL);
V_0 = L_6;
bool L_7;
L_7 = XREnvironmentProbeSubsystemCinfo_get_supportsManualPlacement_m194C593950367B1C7EFB50D6F00E5705597065BF_inline((XREnvironmentProbeSubsystemCinfo_t6D9368EC95B6B356A67B7289270F27BB6A4440B2 *)(&___other0), /*hidden argument*/NULL);
bool L_8;
L_8 = Boolean_Equals_mC63D03B4DE1BBC68835530A9E0384FDDB0AC1A3D((bool*)(&V_0), L_7, /*hidden argument*/NULL);
if (!L_8)
{
goto IL_00bf;
}
}
{
bool L_9;
L_9 = XREnvironmentProbeSubsystemCinfo_get_supportsRemovalOfManual_m7B2DFDB097FAD2FC7FE6AE7F7A8172FA7B34D406_inline((XREnvironmentProbeSubsystemCinfo_t6D9368EC95B6B356A67B7289270F27BB6A4440B2 *)__this, /*hidden argument*/NULL);
V_0 = L_9;
bool L_10;
L_10 = XREnvironmentProbeSubsystemCinfo_get_supportsRemovalOfManual_m7B2DFDB097FAD2FC7FE6AE7F7A8172FA7B34D406_inline((XREnvironmentProbeSubsystemCinfo_t6D9368EC95B6B356A67B7289270F27BB6A4440B2 *)(&___other0), /*hidden argument*/NULL);
bool L_11;
L_11 = Boolean_Equals_mC63D03B4DE1BBC68835530A9E0384FDDB0AC1A3D((bool*)(&V_0), L_10, /*hidden argument*/NULL);
if (!L_11)
{
goto IL_00bf;
}
}
{
bool L_12;
L_12 = XREnvironmentProbeSubsystemCinfo_get_supportsAutomaticPlacement_m2EAA567973D53F9FFCF91AAD4233F91957281B11_inline((XREnvironmentProbeSubsystemCinfo_t6D9368EC95B6B356A67B7289270F27BB6A4440B2 *)__this, /*hidden argument*/NULL);
V_0 = L_12;
bool L_13;
L_13 = XREnvironmentProbeSubsystemCinfo_get_supportsAutomaticPlacement_m2EAA567973D53F9FFCF91AAD4233F91957281B11_inline((XREnvironmentProbeSubsystemCinfo_t6D9368EC95B6B356A67B7289270F27BB6A4440B2 *)(&___other0), /*hidden argument*/NULL);
bool L_14;
L_14 = Boolean_Equals_mC63D03B4DE1BBC68835530A9E0384FDDB0AC1A3D((bool*)(&V_0), L_13, /*hidden argument*/NULL);
if (!L_14)
{
goto IL_00bf;
}
}
{
bool L_15;
L_15 = XREnvironmentProbeSubsystemCinfo_get_supportsRemovalOfAutomatic_mFC9AA46EA023D8A0968ED80B1F88F10AA50F549F_inline((XREnvironmentProbeSubsystemCinfo_t6D9368EC95B6B356A67B7289270F27BB6A4440B2 *)__this, /*hidden argument*/NULL);
V_0 = L_15;
bool L_16;
L_16 = XREnvironmentProbeSubsystemCinfo_get_supportsRemovalOfAutomatic_mFC9AA46EA023D8A0968ED80B1F88F10AA50F549F_inline((XREnvironmentProbeSubsystemCinfo_t6D9368EC95B6B356A67B7289270F27BB6A4440B2 *)(&___other0), /*hidden argument*/NULL);
bool L_17;
L_17 = Boolean_Equals_mC63D03B4DE1BBC68835530A9E0384FDDB0AC1A3D((bool*)(&V_0), L_16, /*hidden argument*/NULL);
if (!L_17)
{
goto IL_00bf;
}
}
{
bool L_18;
L_18 = XREnvironmentProbeSubsystemCinfo_get_supportsEnvironmentTexture_m3593704263A383A9EC79E765CCC01632707E4A48_inline((XREnvironmentProbeSubsystemCinfo_t6D9368EC95B6B356A67B7289270F27BB6A4440B2 *)__this, /*hidden argument*/NULL);
V_0 = L_18;
bool L_19;
L_19 = XREnvironmentProbeSubsystemCinfo_get_supportsEnvironmentTexture_m3593704263A383A9EC79E765CCC01632707E4A48_inline((XREnvironmentProbeSubsystemCinfo_t6D9368EC95B6B356A67B7289270F27BB6A4440B2 *)(&___other0), /*hidden argument*/NULL);
bool L_20;
L_20 = Boolean_Equals_mC63D03B4DE1BBC68835530A9E0384FDDB0AC1A3D((bool*)(&V_0), L_19, /*hidden argument*/NULL);
if (!L_20)
{
goto IL_00bf;
}
}
{
bool L_21;
L_21 = XREnvironmentProbeSubsystemCinfo_get_supportsEnvironmentTextureHDR_mDD0F30AB731A6010F6F96DBA660415B55FCD580A_inline((XREnvironmentProbeSubsystemCinfo_t6D9368EC95B6B356A67B7289270F27BB6A4440B2 *)__this, /*hidden argument*/NULL);
V_0 = L_21;
bool L_22;
L_22 = XREnvironmentProbeSubsystemCinfo_get_supportsEnvironmentTextureHDR_mDD0F30AB731A6010F6F96DBA660415B55FCD580A_inline((XREnvironmentProbeSubsystemCinfo_t6D9368EC95B6B356A67B7289270F27BB6A4440B2 *)(&___other0), /*hidden argument*/NULL);
bool L_23;
L_23 = Boolean_Equals_mC63D03B4DE1BBC68835530A9E0384FDDB0AC1A3D((bool*)(&V_0), L_22, /*hidden argument*/NULL);
return L_23;
}
IL_00bf:
{
return (bool)0;
}
}
IL2CPP_EXTERN_C bool XREnvironmentProbeSubsystemCinfo_Equals_mECAF625FF6A6D6CB7652827D34BCF4228243102C_AdjustorThunk (RuntimeObject * __this, XREnvironmentProbeSubsystemCinfo_t6D9368EC95B6B356A67B7289270F27BB6A4440B2 ___other0, const RuntimeMethod* method)
{
XREnvironmentProbeSubsystemCinfo_t6D9368EC95B6B356A67B7289270F27BB6A4440B2 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XREnvironmentProbeSubsystemCinfo_t6D9368EC95B6B356A67B7289270F27BB6A4440B2 *>(__this + _offset);
bool _returnValue;
_returnValue = XREnvironmentProbeSubsystemCinfo_Equals_mECAF625FF6A6D6CB7652827D34BCF4228243102C(_thisAdjusted, ___other0, method);
return _returnValue;
}
// System.Boolean UnityEngine.XR.ARSubsystems.XREnvironmentProbeSubsystemCinfo::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XREnvironmentProbeSubsystemCinfo_Equals_mE09A9486010D3E88E94AE06CF3BF499D3A2FC6EF (XREnvironmentProbeSubsystemCinfo_t6D9368EC95B6B356A67B7289270F27BB6A4440B2 * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XREnvironmentProbeSubsystemCinfo_t6D9368EC95B6B356A67B7289270F27BB6A4440B2_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
// return ((obj is XREnvironmentProbeSubsystemCinfo) && Equals((XREnvironmentProbeSubsystemCinfo)obj));
RuntimeObject * L_0 = ___obj0;
if (!((RuntimeObject *)IsInstSealed((RuntimeObject*)L_0, XREnvironmentProbeSubsystemCinfo_t6D9368EC95B6B356A67B7289270F27BB6A4440B2_il2cpp_TypeInfo_var)))
{
goto IL_0015;
}
}
{
RuntimeObject * L_1 = ___obj0;
bool L_2;
L_2 = XREnvironmentProbeSubsystemCinfo_Equals_mECAF625FF6A6D6CB7652827D34BCF4228243102C((XREnvironmentProbeSubsystemCinfo_t6D9368EC95B6B356A67B7289270F27BB6A4440B2 *)__this, ((*(XREnvironmentProbeSubsystemCinfo_t6D9368EC95B6B356A67B7289270F27BB6A4440B2 *)((XREnvironmentProbeSubsystemCinfo_t6D9368EC95B6B356A67B7289270F27BB6A4440B2 *)UnBox(L_1, XREnvironmentProbeSubsystemCinfo_t6D9368EC95B6B356A67B7289270F27BB6A4440B2_il2cpp_TypeInfo_var)))), /*hidden argument*/NULL);
return L_2;
}
IL_0015:
{
return (bool)0;
}
}
IL2CPP_EXTERN_C bool XREnvironmentProbeSubsystemCinfo_Equals_mE09A9486010D3E88E94AE06CF3BF499D3A2FC6EF_AdjustorThunk (RuntimeObject * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
XREnvironmentProbeSubsystemCinfo_t6D9368EC95B6B356A67B7289270F27BB6A4440B2 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XREnvironmentProbeSubsystemCinfo_t6D9368EC95B6B356A67B7289270F27BB6A4440B2 *>(__this + _offset);
bool _returnValue;
_returnValue = XREnvironmentProbeSubsystemCinfo_Equals_mE09A9486010D3E88E94AE06CF3BF499D3A2FC6EF(_thisAdjusted, ___obj0, method);
return _returnValue;
}
// System.Int32 UnityEngine.XR.ARSubsystems.XREnvironmentProbeSubsystemCinfo::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XREnvironmentProbeSubsystemCinfo_GetHashCode_mADDFE56D58883EC3832D901FF566989CB00B5D02 (XREnvironmentProbeSubsystemCinfo_t6D9368EC95B6B356A67B7289270F27BB6A4440B2 * __this, const RuntimeMethod* method)
{
bool V_0 = false;
{
// int hashCode = 486187739;
// hashCode = (hashCode * 486187739) + HashCode.ReferenceHash(id);
String_t* L_0;
L_0 = XREnvironmentProbeSubsystemCinfo_get_id_mBEA40C4012D8253E65C525083E3454C93BC6F3BE_inline((XREnvironmentProbeSubsystemCinfo_t6D9368EC95B6B356A67B7289270F27BB6A4440B2 *)__this, /*hidden argument*/NULL);
int32_t L_1;
L_1 = HashCode_ReferenceHash_mE6CC6EA3C87D9F040876D66CF582D6FF68FC359C(L_0, /*hidden argument*/NULL);
// hashCode = (hashCode * 486187739) + HashCode.ReferenceHash(providerType);
Type_t * L_2;
L_2 = XREnvironmentProbeSubsystemCinfo_get_providerType_m3A3572178EED86B4F98254B4FAB73016B4459AA1_inline((XREnvironmentProbeSubsystemCinfo_t6D9368EC95B6B356A67B7289270F27BB6A4440B2 *)__this, /*hidden argument*/NULL);
int32_t L_3;
L_3 = HashCode_ReferenceHash_mE6CC6EA3C87D9F040876D66CF582D6FF68FC359C(L_2, /*hidden argument*/NULL);
// hashCode = (hashCode * 486187739) + HashCode.ReferenceHash(subsystemTypeOverride);
Type_t * L_4;
L_4 = XREnvironmentProbeSubsystemCinfo_get_subsystemTypeOverride_m258F6355EE3F5ED52ADF4A79777AD092AD9B2F22_inline((XREnvironmentProbeSubsystemCinfo_t6D9368EC95B6B356A67B7289270F27BB6A4440B2 *)__this, /*hidden argument*/NULL);
int32_t L_5;
L_5 = HashCode_ReferenceHash_mE6CC6EA3C87D9F040876D66CF582D6FF68FC359C(L_4, /*hidden argument*/NULL);
// hashCode = (hashCode * 486187739) + supportsManualPlacement.GetHashCode();
bool L_6;
L_6 = XREnvironmentProbeSubsystemCinfo_get_supportsManualPlacement_m194C593950367B1C7EFB50D6F00E5705597065BF_inline((XREnvironmentProbeSubsystemCinfo_t6D9368EC95B6B356A67B7289270F27BB6A4440B2 *)__this, /*hidden argument*/NULL);
V_0 = L_6;
int32_t L_7;
L_7 = Boolean_GetHashCode_m03AF8B3CECAE9106C44A00E3B33E51CBFC45C411((bool*)(&V_0), /*hidden argument*/NULL);
// hashCode = (hashCode * 486187739) + supportsRemovalOfManual.GetHashCode();
bool L_8;
L_8 = XREnvironmentProbeSubsystemCinfo_get_supportsRemovalOfManual_m7B2DFDB097FAD2FC7FE6AE7F7A8172FA7B34D406_inline((XREnvironmentProbeSubsystemCinfo_t6D9368EC95B6B356A67B7289270F27BB6A4440B2 *)__this, /*hidden argument*/NULL);
V_0 = L_8;
int32_t L_9;
L_9 = Boolean_GetHashCode_m03AF8B3CECAE9106C44A00E3B33E51CBFC45C411((bool*)(&V_0), /*hidden argument*/NULL);
// hashCode = (hashCode * 486187739) + supportsAutomaticPlacement.GetHashCode();
bool L_10;
L_10 = XREnvironmentProbeSubsystemCinfo_get_supportsAutomaticPlacement_m2EAA567973D53F9FFCF91AAD4233F91957281B11_inline((XREnvironmentProbeSubsystemCinfo_t6D9368EC95B6B356A67B7289270F27BB6A4440B2 *)__this, /*hidden argument*/NULL);
V_0 = L_10;
int32_t L_11;
L_11 = Boolean_GetHashCode_m03AF8B3CECAE9106C44A00E3B33E51CBFC45C411((bool*)(&V_0), /*hidden argument*/NULL);
// hashCode = (hashCode * 486187739) + supportsRemovalOfAutomatic.GetHashCode();
bool L_12;
L_12 = XREnvironmentProbeSubsystemCinfo_get_supportsRemovalOfAutomatic_mFC9AA46EA023D8A0968ED80B1F88F10AA50F549F_inline((XREnvironmentProbeSubsystemCinfo_t6D9368EC95B6B356A67B7289270F27BB6A4440B2 *)__this, /*hidden argument*/NULL);
V_0 = L_12;
int32_t L_13;
L_13 = Boolean_GetHashCode_m03AF8B3CECAE9106C44A00E3B33E51CBFC45C411((bool*)(&V_0), /*hidden argument*/NULL);
// hashCode = (hashCode * 486187739) + supportsEnvironmentTexture.GetHashCode();
bool L_14;
L_14 = XREnvironmentProbeSubsystemCinfo_get_supportsEnvironmentTexture_m3593704263A383A9EC79E765CCC01632707E4A48_inline((XREnvironmentProbeSubsystemCinfo_t6D9368EC95B6B356A67B7289270F27BB6A4440B2 *)__this, /*hidden argument*/NULL);
V_0 = L_14;
int32_t L_15;
L_15 = Boolean_GetHashCode_m03AF8B3CECAE9106C44A00E3B33E51CBFC45C411((bool*)(&V_0), /*hidden argument*/NULL);
// hashCode = (hashCode * 486187739) + supportsEnvironmentTextureHDR.GetHashCode();
bool L_16;
L_16 = XREnvironmentProbeSubsystemCinfo_get_supportsEnvironmentTextureHDR_mDD0F30AB731A6010F6F96DBA660415B55FCD580A_inline((XREnvironmentProbeSubsystemCinfo_t6D9368EC95B6B356A67B7289270F27BB6A4440B2 *)__this, /*hidden argument*/NULL);
V_0 = L_16;
int32_t L_17;
L_17 = Boolean_GetHashCode_m03AF8B3CECAE9106C44A00E3B33E51CBFC45C411((bool*)(&V_0), /*hidden argument*/NULL);
// return hashCode;
return ((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)((int32_t)486187739), (int32_t)((int32_t)486187739))), (int32_t)L_1)), (int32_t)((int32_t)486187739))), (int32_t)L_3)), (int32_t)((int32_t)486187739))), (int32_t)L_5)), (int32_t)((int32_t)486187739))), (int32_t)L_7)), (int32_t)((int32_t)486187739))), (int32_t)L_9)), (int32_t)((int32_t)486187739))), (int32_t)L_11)), (int32_t)((int32_t)486187739))), (int32_t)L_13)), (int32_t)((int32_t)486187739))), (int32_t)L_15)), (int32_t)((int32_t)486187739))), (int32_t)L_17));
}
}
IL2CPP_EXTERN_C int32_t XREnvironmentProbeSubsystemCinfo_GetHashCode_mADDFE56D58883EC3832D901FF566989CB00B5D02_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
XREnvironmentProbeSubsystemCinfo_t6D9368EC95B6B356A67B7289270F27BB6A4440B2 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XREnvironmentProbeSubsystemCinfo_t6D9368EC95B6B356A67B7289270F27BB6A4440B2 *>(__this + _offset);
int32_t _returnValue;
_returnValue = XREnvironmentProbeSubsystemCinfo_GetHashCode_mADDFE56D58883EC3832D901FF566989CB00B5D02(_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
// System.Void UnityEngine.XR.ARSubsystems.XREnvironmentProbeSubsystemDescriptor::.ctor(UnityEngine.XR.ARSubsystems.XREnvironmentProbeSubsystemCinfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XREnvironmentProbeSubsystemDescriptor__ctor_m759C9A99C0F48E2422698CABD21C05A9F9E2ACB6 (XREnvironmentProbeSubsystemDescriptor_t7C10519F545418330347AC7434FBB10F39DD4243 * __this, XREnvironmentProbeSubsystemCinfo_t6D9368EC95B6B356A67B7289270F27BB6A4440B2 ___environmentProbeSubsystemCinfo0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SubsystemDescriptorWithProvider_2__ctor_m72B3AFD426F854BF8E1C6E7B57A5108001019FCF_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
// XREnvironmentProbeSubsystemDescriptor(XREnvironmentProbeSubsystemCinfo environmentProbeSubsystemCinfo)
SubsystemDescriptorWithProvider_2__ctor_m72B3AFD426F854BF8E1C6E7B57A5108001019FCF(__this, /*hidden argument*/SubsystemDescriptorWithProvider_2__ctor_m72B3AFD426F854BF8E1C6E7B57A5108001019FCF_RuntimeMethod_var);
// id = environmentProbeSubsystemCinfo.id;
String_t* L_0;
L_0 = XREnvironmentProbeSubsystemCinfo_get_id_mBEA40C4012D8253E65C525083E3454C93BC6F3BE_inline((XREnvironmentProbeSubsystemCinfo_t6D9368EC95B6B356A67B7289270F27BB6A4440B2 *)(&___environmentProbeSubsystemCinfo0), /*hidden argument*/NULL);
SubsystemDescriptorWithProvider_set_id_mEC6863CDB21597618394D2ED4182A9ED3ACBF220_inline(__this, L_0, /*hidden argument*/NULL);
// providerType = environmentProbeSubsystemCinfo.providerType;
Type_t * L_1;
L_1 = XREnvironmentProbeSubsystemCinfo_get_providerType_m3A3572178EED86B4F98254B4FAB73016B4459AA1_inline((XREnvironmentProbeSubsystemCinfo_t6D9368EC95B6B356A67B7289270F27BB6A4440B2 *)(&___environmentProbeSubsystemCinfo0), /*hidden argument*/NULL);
SubsystemDescriptorWithProvider_set_providerType_m672B1F3CC7A12E8569D801F7C79538753C0D9C2D_inline(__this, L_1, /*hidden argument*/NULL);
// subsystemTypeOverride = environmentProbeSubsystemCinfo.subsystemTypeOverride;
Type_t * L_2;
L_2 = XREnvironmentProbeSubsystemCinfo_get_subsystemTypeOverride_m258F6355EE3F5ED52ADF4A79777AD092AD9B2F22_inline((XREnvironmentProbeSubsystemCinfo_t6D9368EC95B6B356A67B7289270F27BB6A4440B2 *)(&___environmentProbeSubsystemCinfo0), /*hidden argument*/NULL);
SubsystemDescriptorWithProvider_set_subsystemTypeOverride_mA453100A7A8FAB35FBE7154E63B5A17D518F41B6_inline(__this, L_2, /*hidden argument*/NULL);
// supportsManualPlacement = environmentProbeSubsystemCinfo.supportsManualPlacement;
bool L_3;
L_3 = XREnvironmentProbeSubsystemCinfo_get_supportsManualPlacement_m194C593950367B1C7EFB50D6F00E5705597065BF_inline((XREnvironmentProbeSubsystemCinfo_t6D9368EC95B6B356A67B7289270F27BB6A4440B2 *)(&___environmentProbeSubsystemCinfo0), /*hidden argument*/NULL);
XREnvironmentProbeSubsystemDescriptor_set_supportsManualPlacement_mCE20C35437C72E053599F9F900EFE7D5A1B0ECF3_inline(__this, L_3, /*hidden argument*/NULL);
// supportsRemovalOfManual = environmentProbeSubsystemCinfo.supportsRemovalOfManual;
bool L_4;
L_4 = XREnvironmentProbeSubsystemCinfo_get_supportsRemovalOfManual_m7B2DFDB097FAD2FC7FE6AE7F7A8172FA7B34D406_inline((XREnvironmentProbeSubsystemCinfo_t6D9368EC95B6B356A67B7289270F27BB6A4440B2 *)(&___environmentProbeSubsystemCinfo0), /*hidden argument*/NULL);
XREnvironmentProbeSubsystemDescriptor_set_supportsRemovalOfManual_m148569DAD1997E9EFC75977FD58B2E2A0E6A3A29_inline(__this, L_4, /*hidden argument*/NULL);
// supportsAutomaticPlacement = environmentProbeSubsystemCinfo.supportsAutomaticPlacement;
bool L_5;
L_5 = XREnvironmentProbeSubsystemCinfo_get_supportsAutomaticPlacement_m2EAA567973D53F9FFCF91AAD4233F91957281B11_inline((XREnvironmentProbeSubsystemCinfo_t6D9368EC95B6B356A67B7289270F27BB6A4440B2 *)(&___environmentProbeSubsystemCinfo0), /*hidden argument*/NULL);
XREnvironmentProbeSubsystemDescriptor_set_supportsAutomaticPlacement_mE62CB20894AB742E406F1762C9B8C2CE1DA1B359_inline(__this, L_5, /*hidden argument*/NULL);
// supportsRemovalOfAutomatic = environmentProbeSubsystemCinfo.supportsRemovalOfAutomatic;
bool L_6;
L_6 = XREnvironmentProbeSubsystemCinfo_get_supportsRemovalOfAutomatic_mFC9AA46EA023D8A0968ED80B1F88F10AA50F549F_inline((XREnvironmentProbeSubsystemCinfo_t6D9368EC95B6B356A67B7289270F27BB6A4440B2 *)(&___environmentProbeSubsystemCinfo0), /*hidden argument*/NULL);
XREnvironmentProbeSubsystemDescriptor_set_supportsRemovalOfAutomatic_m3210C35AC07979BAFDFA3EA0F6A3677285D6E282_inline(__this, L_6, /*hidden argument*/NULL);
// supportsEnvironmentTexture = environmentProbeSubsystemCinfo.supportsEnvironmentTexture;
bool L_7;
L_7 = XREnvironmentProbeSubsystemCinfo_get_supportsEnvironmentTexture_m3593704263A383A9EC79E765CCC01632707E4A48_inline((XREnvironmentProbeSubsystemCinfo_t6D9368EC95B6B356A67B7289270F27BB6A4440B2 *)(&___environmentProbeSubsystemCinfo0), /*hidden argument*/NULL);
XREnvironmentProbeSubsystemDescriptor_set_supportsEnvironmentTexture_m67C606821F3D139A11628F487EFE764A2A562CC4_inline(__this, L_7, /*hidden argument*/NULL);
// supportsEnvironmentTextureHDR = environmentProbeSubsystemCinfo.supportsEnvironmentTextureHDR;
bool L_8;
L_8 = XREnvironmentProbeSubsystemCinfo_get_supportsEnvironmentTextureHDR_mDD0F30AB731A6010F6F96DBA660415B55FCD580A_inline((XREnvironmentProbeSubsystemCinfo_t6D9368EC95B6B356A67B7289270F27BB6A4440B2 *)(&___environmentProbeSubsystemCinfo0), /*hidden argument*/NULL);
XREnvironmentProbeSubsystemDescriptor_set_supportsEnvironmentTextureHDR_m813F1381535676A236CE05D522515683E6CA795A_inline(__this, L_8, /*hidden argument*/NULL);
// }
return;
}
}
// System.Boolean UnityEngine.XR.ARSubsystems.XREnvironmentProbeSubsystemDescriptor::get_supportsManualPlacement()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XREnvironmentProbeSubsystemDescriptor_get_supportsManualPlacement_m08BC8571DB49533D3940CC743179F8F94A203CC8 (XREnvironmentProbeSubsystemDescriptor_t7C10519F545418330347AC7434FBB10F39DD4243 * __this, const RuntimeMethod* method)
{
{
// public bool supportsManualPlacement { get; private set; }
bool L_0 = __this->get_U3CsupportsManualPlacementU3Ek__BackingField_3();
return L_0;
}
}
// System.Void UnityEngine.XR.ARSubsystems.XREnvironmentProbeSubsystemDescriptor::set_supportsManualPlacement(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XREnvironmentProbeSubsystemDescriptor_set_supportsManualPlacement_mCE20C35437C72E053599F9F900EFE7D5A1B0ECF3 (XREnvironmentProbeSubsystemDescriptor_t7C10519F545418330347AC7434FBB10F39DD4243 * __this, bool ___value0, const RuntimeMethod* method)
{
{
// public bool supportsManualPlacement { get; private set; }
bool L_0 = ___value0;
__this->set_U3CsupportsManualPlacementU3Ek__BackingField_3(L_0);
return;
}
}
// System.Boolean UnityEngine.XR.ARSubsystems.XREnvironmentProbeSubsystemDescriptor::get_supportsRemovalOfManual()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XREnvironmentProbeSubsystemDescriptor_get_supportsRemovalOfManual_m1A720014B0B9CF7ADBC6E5FBD3D2AA8FA6EA01AE (XREnvironmentProbeSubsystemDescriptor_t7C10519F545418330347AC7434FBB10F39DD4243 * __this, const RuntimeMethod* method)
{
{
// public bool supportsRemovalOfManual { get; private set; }
bool L_0 = __this->get_U3CsupportsRemovalOfManualU3Ek__BackingField_4();
return L_0;
}
}
// System.Void UnityEngine.XR.ARSubsystems.XREnvironmentProbeSubsystemDescriptor::set_supportsRemovalOfManual(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XREnvironmentProbeSubsystemDescriptor_set_supportsRemovalOfManual_m148569DAD1997E9EFC75977FD58B2E2A0E6A3A29 (XREnvironmentProbeSubsystemDescriptor_t7C10519F545418330347AC7434FBB10F39DD4243 * __this, bool ___value0, const RuntimeMethod* method)
{
{
// public bool supportsRemovalOfManual { get; private set; }
bool L_0 = ___value0;
__this->set_U3CsupportsRemovalOfManualU3Ek__BackingField_4(L_0);
return;
}
}
// System.Boolean UnityEngine.XR.ARSubsystems.XREnvironmentProbeSubsystemDescriptor::get_supportsAutomaticPlacement()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XREnvironmentProbeSubsystemDescriptor_get_supportsAutomaticPlacement_m12205A40FBD5214E81576F99E35D9996F0E20509 (XREnvironmentProbeSubsystemDescriptor_t7C10519F545418330347AC7434FBB10F39DD4243 * __this, const RuntimeMethod* method)
{
{
// public bool supportsAutomaticPlacement { get; private set; }
bool L_0 = __this->get_U3CsupportsAutomaticPlacementU3Ek__BackingField_5();
return L_0;
}
}
// System.Void UnityEngine.XR.ARSubsystems.XREnvironmentProbeSubsystemDescriptor::set_supportsAutomaticPlacement(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XREnvironmentProbeSubsystemDescriptor_set_supportsAutomaticPlacement_mE62CB20894AB742E406F1762C9B8C2CE1DA1B359 (XREnvironmentProbeSubsystemDescriptor_t7C10519F545418330347AC7434FBB10F39DD4243 * __this, bool ___value0, const RuntimeMethod* method)
{
{
// public bool supportsAutomaticPlacement { get; private set; }
bool L_0 = ___value0;
__this->set_U3CsupportsAutomaticPlacementU3Ek__BackingField_5(L_0);
return;
}
}
// System.Boolean UnityEngine.XR.ARSubsystems.XREnvironmentProbeSubsystemDescriptor::get_supportsRemovalOfAutomatic()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XREnvironmentProbeSubsystemDescriptor_get_supportsRemovalOfAutomatic_m777AF395AF64569B1FCCC6E32973620DC9636C54 (XREnvironmentProbeSubsystemDescriptor_t7C10519F545418330347AC7434FBB10F39DD4243 * __this, const RuntimeMethod* method)
{
{
// public bool supportsRemovalOfAutomatic { get; private set; }
bool L_0 = __this->get_U3CsupportsRemovalOfAutomaticU3Ek__BackingField_6();
return L_0;
}
}
// System.Void UnityEngine.XR.ARSubsystems.XREnvironmentProbeSubsystemDescriptor::set_supportsRemovalOfAutomatic(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XREnvironmentProbeSubsystemDescriptor_set_supportsRemovalOfAutomatic_m3210C35AC07979BAFDFA3EA0F6A3677285D6E282 (XREnvironmentProbeSubsystemDescriptor_t7C10519F545418330347AC7434FBB10F39DD4243 * __this, bool ___value0, const RuntimeMethod* method)
{
{
// public bool supportsRemovalOfAutomatic { get; private set; }
bool L_0 = ___value0;
__this->set_U3CsupportsRemovalOfAutomaticU3Ek__BackingField_6(L_0);
return;
}
}
// System.Void UnityEngine.XR.ARSubsystems.XREnvironmentProbeSubsystemDescriptor::set_supportsEnvironmentTexture(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XREnvironmentProbeSubsystemDescriptor_set_supportsEnvironmentTexture_m67C606821F3D139A11628F487EFE764A2A562CC4 (XREnvironmentProbeSubsystemDescriptor_t7C10519F545418330347AC7434FBB10F39DD4243 * __this, bool ___value0, const RuntimeMethod* method)
{
{
// public bool supportsEnvironmentTexture { get; private set; }
bool L_0 = ___value0;
__this->set_U3CsupportsEnvironmentTextureU3Ek__BackingField_7(L_0);
return;
}
}
// System.Boolean UnityEngine.XR.ARSubsystems.XREnvironmentProbeSubsystemDescriptor::get_supportsEnvironmentTextureHDR()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XREnvironmentProbeSubsystemDescriptor_get_supportsEnvironmentTextureHDR_m7F5545CCA7B538B4399B9C697D24031E89C348AD (XREnvironmentProbeSubsystemDescriptor_t7C10519F545418330347AC7434FBB10F39DD4243 * __this, const RuntimeMethod* method)
{
{
// public bool supportsEnvironmentTextureHDR { get; private set; }
bool L_0 = __this->get_U3CsupportsEnvironmentTextureHDRU3Ek__BackingField_8();
return L_0;
}
}
// System.Void UnityEngine.XR.ARSubsystems.XREnvironmentProbeSubsystemDescriptor::set_supportsEnvironmentTextureHDR(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XREnvironmentProbeSubsystemDescriptor_set_supportsEnvironmentTextureHDR_m813F1381535676A236CE05D522515683E6CA795A (XREnvironmentProbeSubsystemDescriptor_t7C10519F545418330347AC7434FBB10F39DD4243 * __this, bool ___value0, const RuntimeMethod* method)
{
{
// public bool supportsEnvironmentTextureHDR { get; private set; }
bool L_0 = ___value0;
__this->set_U3CsupportsEnvironmentTextureHDRU3Ek__BackingField_8(L_0);
return;
}
}
// UnityEngine.XR.ARSubsystems.XREnvironmentProbeSubsystemDescriptor UnityEngine.XR.ARSubsystems.XREnvironmentProbeSubsystemDescriptor::Create(UnityEngine.XR.ARSubsystems.XREnvironmentProbeSubsystemCinfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XREnvironmentProbeSubsystemDescriptor_t7C10519F545418330347AC7434FBB10F39DD4243 * XREnvironmentProbeSubsystemDescriptor_Create_m64B177418E0330A718E4461D29A11FE8518BB09E (XREnvironmentProbeSubsystemCinfo_t6D9368EC95B6B356A67B7289270F27BB6A4440B2 ___environmentProbeSubsystemCinfo0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Provider_tAF87FE3E906FDBF14F06488A1AA5E80400EFE190_0_0_0_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XREnvironmentProbeSubsystemDescriptor_t7C10519F545418330347AC7434FBB10F39DD4243_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XREnvironmentProbeSubsystem_t0C60258F565400E7C5AF0E0B7FA933F2BCF83CB6_0_0_0_var);
s_Il2CppMethodInitialized = true;
}
{
// if (String.IsNullOrEmpty(environmentProbeSubsystemCinfo.id))
String_t* L_0;
L_0 = XREnvironmentProbeSubsystemCinfo_get_id_mBEA40C4012D8253E65C525083E3454C93BC6F3BE_inline((XREnvironmentProbeSubsystemCinfo_t6D9368EC95B6B356A67B7289270F27BB6A4440B2 *)(&___environmentProbeSubsystemCinfo0), /*hidden argument*/NULL);
bool L_1;
L_1 = String_IsNullOrEmpty_m9AFBB5335B441B94E884B8A9D4A27AD60E3D7F7C(L_0, /*hidden argument*/NULL);
if (!L_1)
{
goto IL_001e;
}
}
{
// throw new ArgumentException("Cannot create environment probe subsystem descriptor because id is invalid",
// "environmentProbeSubsystemCinfo");
ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_2 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var)));
ArgumentException__ctor_m71044C2110E357B71A1C30D2561C3F861AF1DC0D(L_2, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral5845E8DEE033062F8F4F5EAA72A635E5E10F19CA)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral67C8FE59E36A25FD95779FB7535B566AF7F8421C)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XREnvironmentProbeSubsystemDescriptor_Create_m64B177418E0330A718E4461D29A11FE8518BB09E_RuntimeMethod_var)));
}
IL_001e:
{
// if (environmentProbeSubsystemCinfo.providerType == null
// || !environmentProbeSubsystemCinfo.providerType.IsSubclassOf(typeof(XREnvironmentProbeSubsystem.Provider)))
Type_t * L_3;
L_3 = XREnvironmentProbeSubsystemCinfo_get_providerType_m3A3572178EED86B4F98254B4FAB73016B4459AA1_inline((XREnvironmentProbeSubsystemCinfo_t6D9368EC95B6B356A67B7289270F27BB6A4440B2 *)(&___environmentProbeSubsystemCinfo0), /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
bool L_4;
L_4 = Type_op_Equality_mA438719A1FDF103C7BBBB08AEF564E7FAEEA0046(L_3, (Type_t *)NULL, /*hidden argument*/NULL);
if (L_4)
{
goto IL_0045;
}
}
{
Type_t * L_5;
L_5 = XREnvironmentProbeSubsystemCinfo_get_providerType_m3A3572178EED86B4F98254B4FAB73016B4459AA1_inline((XREnvironmentProbeSubsystemCinfo_t6D9368EC95B6B356A67B7289270F27BB6A4440B2 *)(&___environmentProbeSubsystemCinfo0), /*hidden argument*/NULL);
RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_6 = { reinterpret_cast<intptr_t> (Provider_tAF87FE3E906FDBF14F06488A1AA5E80400EFE190_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_7;
L_7 = Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E(L_6, /*hidden argument*/NULL);
NullCheck(L_5);
bool L_8;
L_8 = VirtualFuncInvoker1< bool, Type_t * >::Invoke(103 /* System.Boolean System.Type::IsSubclassOf(System.Type) */, L_5, L_7);
if (L_8)
{
goto IL_0055;
}
}
IL_0045:
{
// throw new ArgumentException("Cannot create environment probe subsystem descriptor because providerType is invalid",
// "environmentProbeSubsystemCinfo");
ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_9 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var)));
ArgumentException__ctor_m71044C2110E357B71A1C30D2561C3F861AF1DC0D(L_9, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral8F12A6F28F1AD2AB573BEA595C276D59ADEE1FDA)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral67C8FE59E36A25FD95779FB7535B566AF7F8421C)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_9, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XREnvironmentProbeSubsystemDescriptor_Create_m64B177418E0330A718E4461D29A11FE8518BB09E_RuntimeMethod_var)));
}
IL_0055:
{
// if (environmentProbeSubsystemCinfo.subsystemTypeOverride != null
// && !environmentProbeSubsystemCinfo.subsystemTypeOverride.IsSubclassOf(typeof(XREnvironmentProbeSubsystem)))
Type_t * L_10;
L_10 = XREnvironmentProbeSubsystemCinfo_get_subsystemTypeOverride_m258F6355EE3F5ED52ADF4A79777AD092AD9B2F22_inline((XREnvironmentProbeSubsystemCinfo_t6D9368EC95B6B356A67B7289270F27BB6A4440B2 *)(&___environmentProbeSubsystemCinfo0), /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
bool L_11;
L_11 = Type_op_Inequality_m6DDC5E923203A79BF505F9275B694AD3FAA36DB0(L_10, (Type_t *)NULL, /*hidden argument*/NULL);
if (!L_11)
{
goto IL_008c;
}
}
{
Type_t * L_12;
L_12 = XREnvironmentProbeSubsystemCinfo_get_subsystemTypeOverride_m258F6355EE3F5ED52ADF4A79777AD092AD9B2F22_inline((XREnvironmentProbeSubsystemCinfo_t6D9368EC95B6B356A67B7289270F27BB6A4440B2 *)(&___environmentProbeSubsystemCinfo0), /*hidden argument*/NULL);
RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_13 = { reinterpret_cast<intptr_t> (XREnvironmentProbeSubsystem_t0C60258F565400E7C5AF0E0B7FA933F2BCF83CB6_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_14;
L_14 = Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E(L_13, /*hidden argument*/NULL);
NullCheck(L_12);
bool L_15;
L_15 = VirtualFuncInvoker1< bool, Type_t * >::Invoke(103 /* System.Boolean System.Type::IsSubclassOf(System.Type) */, L_12, L_14);
if (L_15)
{
goto IL_008c;
}
}
{
// throw new ArgumentException("Cannot create environment probe subsystem descriptor because subsystemTypeOverride is invalid",
// "environmentProbeSubsystemCinfo");
ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_16 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var)));
ArgumentException__ctor_m71044C2110E357B71A1C30D2561C3F861AF1DC0D(L_16, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralA52B348614D1F733D74BED036C2A2E8757BA6B76)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral67C8FE59E36A25FD95779FB7535B566AF7F8421C)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_16, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XREnvironmentProbeSubsystemDescriptor_Create_m64B177418E0330A718E4461D29A11FE8518BB09E_RuntimeMethod_var)));
}
IL_008c:
{
// return new XREnvironmentProbeSubsystemDescriptor(environmentProbeSubsystemCinfo);
XREnvironmentProbeSubsystemCinfo_t6D9368EC95B6B356A67B7289270F27BB6A4440B2 L_17 = ___environmentProbeSubsystemCinfo0;
XREnvironmentProbeSubsystemDescriptor_t7C10519F545418330347AC7434FBB10F39DD4243 * L_18 = (XREnvironmentProbeSubsystemDescriptor_t7C10519F545418330347AC7434FBB10F39DD4243 *)il2cpp_codegen_object_new(XREnvironmentProbeSubsystemDescriptor_t7C10519F545418330347AC7434FBB10F39DD4243_il2cpp_TypeInfo_var);
XREnvironmentProbeSubsystemDescriptor__ctor_m759C9A99C0F48E2422698CABD21C05A9F9E2ACB6(L_18, L_17, /*hidden argument*/NULL);
return L_18;
}
}
#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
// UnityEngine.XR.ARSubsystems.XRFace UnityEngine.XR.ARSubsystems.XRFace::get_defaultValue()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XRFace_tA970995ECE26D43D1CBB9058ABEC72B76D2DA599 XRFace_get_defaultValue_m747D549873462D18EA28AA56D1A0870F6DE4F2D4 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XRFace_tA970995ECE26D43D1CBB9058ABEC72B76D2DA599_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
// public static XRFace defaultValue => s_Default;
IL2CPP_RUNTIME_CLASS_INIT(XRFace_tA970995ECE26D43D1CBB9058ABEC72B76D2DA599_il2cpp_TypeInfo_var);
XRFace_tA970995ECE26D43D1CBB9058ABEC72B76D2DA599 L_0 = ((XRFace_tA970995ECE26D43D1CBB9058ABEC72B76D2DA599_StaticFields*)il2cpp_codegen_static_fields_for(XRFace_tA970995ECE26D43D1CBB9058ABEC72B76D2DA599_il2cpp_TypeInfo_var))->get_s_Default_7();
return L_0;
}
}
// UnityEngine.XR.ARSubsystems.TrackableId UnityEngine.XR.ARSubsystems.XRFace::get_trackableId()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B XRFace_get_trackableId_m997871151FF642B1908F7E352C952A44AB4DD17C (XRFace_tA970995ECE26D43D1CBB9058ABEC72B76D2DA599 * __this, const RuntimeMethod* method)
{
{
// public TrackableId trackableId => m_TrackableId;
TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B L_0 = __this->get_m_TrackableId_0();
return L_0;
}
}
IL2CPP_EXTERN_C TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B XRFace_get_trackableId_m997871151FF642B1908F7E352C952A44AB4DD17C_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
XRFace_tA970995ECE26D43D1CBB9058ABEC72B76D2DA599 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XRFace_tA970995ECE26D43D1CBB9058ABEC72B76D2DA599 *>(__this + _offset);
TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B _returnValue;
_returnValue = XRFace_get_trackableId_m997871151FF642B1908F7E352C952A44AB4DD17C_inline(_thisAdjusted, method);
return _returnValue;
}
// UnityEngine.Pose UnityEngine.XR.ARSubsystems.XRFace::get_pose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A XRFace_get_pose_m482AC4907DC02C0B5D67B84320DA7F9D12A43A75 (XRFace_tA970995ECE26D43D1CBB9058ABEC72B76D2DA599 * __this, const RuntimeMethod* method)
{
{
// public Pose pose => m_Pose;
Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A L_0 = __this->get_m_Pose_1();
return L_0;
}
}
IL2CPP_EXTERN_C Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A XRFace_get_pose_m482AC4907DC02C0B5D67B84320DA7F9D12A43A75_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
XRFace_tA970995ECE26D43D1CBB9058ABEC72B76D2DA599 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XRFace_tA970995ECE26D43D1CBB9058ABEC72B76D2DA599 *>(__this + _offset);
Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A _returnValue;
_returnValue = XRFace_get_pose_m482AC4907DC02C0B5D67B84320DA7F9D12A43A75_inline(_thisAdjusted, method);
return _returnValue;
}
// UnityEngine.XR.ARSubsystems.TrackingState UnityEngine.XR.ARSubsystems.XRFace::get_trackingState()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XRFace_get_trackingState_m8953B01AB6213402157B69083B318D3F2CDCF26A (XRFace_tA970995ECE26D43D1CBB9058ABEC72B76D2DA599 * __this, const RuntimeMethod* method)
{
{
// public TrackingState trackingState => m_TrackingState;
int32_t L_0 = __this->get_m_TrackingState_2();
return L_0;
}
}
IL2CPP_EXTERN_C int32_t XRFace_get_trackingState_m8953B01AB6213402157B69083B318D3F2CDCF26A_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
XRFace_tA970995ECE26D43D1CBB9058ABEC72B76D2DA599 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XRFace_tA970995ECE26D43D1CBB9058ABEC72B76D2DA599 *>(__this + _offset);
int32_t _returnValue;
_returnValue = XRFace_get_trackingState_m8953B01AB6213402157B69083B318D3F2CDCF26A_inline(_thisAdjusted, method);
return _returnValue;
}
// System.IntPtr UnityEngine.XR.ARSubsystems.XRFace::get_nativePtr()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR intptr_t XRFace_get_nativePtr_mCE6C767CB9DBBCDE7B289D8EBDE1DFC86707BC95 (XRFace_tA970995ECE26D43D1CBB9058ABEC72B76D2DA599 * __this, const RuntimeMethod* method)
{
{
// public IntPtr nativePtr => m_NativePtr;
intptr_t L_0 = __this->get_m_NativePtr_3();
return (intptr_t)L_0;
}
}
IL2CPP_EXTERN_C intptr_t XRFace_get_nativePtr_mCE6C767CB9DBBCDE7B289D8EBDE1DFC86707BC95_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
XRFace_tA970995ECE26D43D1CBB9058ABEC72B76D2DA599 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XRFace_tA970995ECE26D43D1CBB9058ABEC72B76D2DA599 *>(__this + _offset);
intptr_t _returnValue;
_returnValue = XRFace_get_nativePtr_mCE6C767CB9DBBCDE7B289D8EBDE1DFC86707BC95_inline(_thisAdjusted, method);
return _returnValue;
}
// UnityEngine.Pose UnityEngine.XR.ARSubsystems.XRFace::get_leftEyePose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A XRFace_get_leftEyePose_mEAF86B00D307A5D96D671A85EA1BBF88D82586BF (XRFace_tA970995ECE26D43D1CBB9058ABEC72B76D2DA599 * __this, const RuntimeMethod* method)
{
{
// public Pose leftEyePose => m_LeftEyePose;
Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A L_0 = __this->get_m_LeftEyePose_4();
return L_0;
}
}
IL2CPP_EXTERN_C Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A XRFace_get_leftEyePose_mEAF86B00D307A5D96D671A85EA1BBF88D82586BF_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
XRFace_tA970995ECE26D43D1CBB9058ABEC72B76D2DA599 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XRFace_tA970995ECE26D43D1CBB9058ABEC72B76D2DA599 *>(__this + _offset);
Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A _returnValue;
_returnValue = XRFace_get_leftEyePose_mEAF86B00D307A5D96D671A85EA1BBF88D82586BF_inline(_thisAdjusted, method);
return _returnValue;
}
// UnityEngine.Pose UnityEngine.XR.ARSubsystems.XRFace::get_rightEyePose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A XRFace_get_rightEyePose_m3FA7FDE9C2D9841FB7496B691FCAB1F35475F2B1 (XRFace_tA970995ECE26D43D1CBB9058ABEC72B76D2DA599 * __this, const RuntimeMethod* method)
{
{
// public Pose rightEyePose => m_RightEyePose;
Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A L_0 = __this->get_m_RightEyePose_5();
return L_0;
}
}
IL2CPP_EXTERN_C Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A XRFace_get_rightEyePose_m3FA7FDE9C2D9841FB7496B691FCAB1F35475F2B1_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
XRFace_tA970995ECE26D43D1CBB9058ABEC72B76D2DA599 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XRFace_tA970995ECE26D43D1CBB9058ABEC72B76D2DA599 *>(__this + _offset);
Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A _returnValue;
_returnValue = XRFace_get_rightEyePose_m3FA7FDE9C2D9841FB7496B691FCAB1F35475F2B1_inline(_thisAdjusted, method);
return _returnValue;
}
// UnityEngine.Vector3 UnityEngine.XR.ARSubsystems.XRFace::get_fixationPoint()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E XRFace_get_fixationPoint_mAEA40B8C8F2C0D0A3B777ACFDE327017C9DF294D (XRFace_tA970995ECE26D43D1CBB9058ABEC72B76D2DA599 * __this, const RuntimeMethod* method)
{
{
// public Vector3 fixationPoint => m_FixationPoint;
Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_0 = __this->get_m_FixationPoint_6();
return L_0;
}
}
IL2CPP_EXTERN_C Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E XRFace_get_fixationPoint_mAEA40B8C8F2C0D0A3B777ACFDE327017C9DF294D_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
XRFace_tA970995ECE26D43D1CBB9058ABEC72B76D2DA599 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XRFace_tA970995ECE26D43D1CBB9058ABEC72B76D2DA599 *>(__this + _offset);
Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E _returnValue;
_returnValue = XRFace_get_fixationPoint_mAEA40B8C8F2C0D0A3B777ACFDE327017C9DF294D_inline(_thisAdjusted, method);
return _returnValue;
}
// System.Boolean UnityEngine.XR.ARSubsystems.XRFace::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XRFace_Equals_mC8676C7F35F0FF582368E8114BDB981C83C82A88 (XRFace_tA970995ECE26D43D1CBB9058ABEC72B76D2DA599 * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XRFace_tA970995ECE26D43D1CBB9058ABEC72B76D2DA599_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
// public override bool Equals(object obj) => obj is XRFace && Equals((XRFace)obj);
RuntimeObject * L_0 = ___obj0;
if (!((RuntimeObject *)IsInstSealed((RuntimeObject*)L_0, XRFace_tA970995ECE26D43D1CBB9058ABEC72B76D2DA599_il2cpp_TypeInfo_var)))
{
goto IL_0015;
}
}
{
RuntimeObject * L_1 = ___obj0;
bool L_2;
L_2 = XRFace_Equals_mF05C24C98D5E1ED344943307E03FE4776CCB4217((XRFace_tA970995ECE26D43D1CBB9058ABEC72B76D2DA599 *)__this, ((*(XRFace_tA970995ECE26D43D1CBB9058ABEC72B76D2DA599 *)((XRFace_tA970995ECE26D43D1CBB9058ABEC72B76D2DA599 *)UnBox(L_1, XRFace_tA970995ECE26D43D1CBB9058ABEC72B76D2DA599_il2cpp_TypeInfo_var)))), /*hidden argument*/NULL);
return L_2;
}
IL_0015:
{
return (bool)0;
}
}
IL2CPP_EXTERN_C bool XRFace_Equals_mC8676C7F35F0FF582368E8114BDB981C83C82A88_AdjustorThunk (RuntimeObject * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
XRFace_tA970995ECE26D43D1CBB9058ABEC72B76D2DA599 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XRFace_tA970995ECE26D43D1CBB9058ABEC72B76D2DA599 *>(__this + _offset);
bool _returnValue;
_returnValue = XRFace_Equals_mC8676C7F35F0FF582368E8114BDB981C83C82A88(_thisAdjusted, ___obj0, method);
return _returnValue;
}
// System.Int32 UnityEngine.XR.ARSubsystems.XRFace::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XRFace_GetHashCode_mDFFE26F3662B1DF33124A0393FA9FDE444167CEC (XRFace_tA970995ECE26D43D1CBB9058ABEC72B76D2DA599 * __this, const RuntimeMethod* method)
{
TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B V_0;
memset((&V_0), 0, sizeof(V_0));
Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A V_1;
memset((&V_1), 0, sizeof(V_1));
int32_t V_2 = 0;
intptr_t V_3;
memset((&V_3), 0, sizeof(V_3));
Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E V_4;
memset((&V_4), 0, sizeof(V_4));
{
// var hashCode = trackableId.GetHashCode();
TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B L_0;
L_0 = XRFace_get_trackableId_m997871151FF642B1908F7E352C952A44AB4DD17C_inline((XRFace_tA970995ECE26D43D1CBB9058ABEC72B76D2DA599 *)__this, /*hidden argument*/NULL);
V_0 = L_0;
int32_t L_1;
L_1 = TrackableId_GetHashCode_mFD297FC6DB40FB5B28C6E9B7A2CF2785D75C4E86((TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B *)(&V_0), /*hidden argument*/NULL);
// hashCode = (hashCode * 486187739) + pose.GetHashCode();
Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A L_2;
L_2 = XRFace_get_pose_m482AC4907DC02C0B5D67B84320DA7F9D12A43A75_inline((XRFace_tA970995ECE26D43D1CBB9058ABEC72B76D2DA599 *)__this, /*hidden argument*/NULL);
V_1 = L_2;
int32_t L_3;
L_3 = Pose_GetHashCode_mE1DD7FBCCB1C979B252F0B117276BA11CF4D2367((Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A *)(&V_1), /*hidden argument*/NULL);
// hashCode = (hashCode * 486187739) + ((int)trackingState).GetHashCode();
int32_t L_4;
L_4 = XRFace_get_trackingState_m8953B01AB6213402157B69083B318D3F2CDCF26A_inline((XRFace_tA970995ECE26D43D1CBB9058ABEC72B76D2DA599 *)__this, /*hidden argument*/NULL);
V_2 = L_4;
int32_t L_5;
L_5 = Int32_GetHashCode_mEDD3F492A5F7CF021125AE3F38E2B8F8743FC667((int32_t*)(&V_2), /*hidden argument*/NULL);
// hashCode = (hashCode * 486187739) + nativePtr.GetHashCode();
intptr_t L_6;
L_6 = XRFace_get_nativePtr_mCE6C767CB9DBBCDE7B289D8EBDE1DFC86707BC95_inline((XRFace_tA970995ECE26D43D1CBB9058ABEC72B76D2DA599 *)__this, /*hidden argument*/NULL);
V_3 = (intptr_t)L_6;
int32_t L_7;
L_7 = IntPtr_GetHashCode_m55E65FB52EFE7C0EBC3C28E66A5D7542F3B1D35D((intptr_t*)(&V_3), /*hidden argument*/NULL);
// hashCode = (hashCode * 486187739) + leftEyePose.GetHashCode();
Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A L_8;
L_8 = XRFace_get_leftEyePose_mEAF86B00D307A5D96D671A85EA1BBF88D82586BF_inline((XRFace_tA970995ECE26D43D1CBB9058ABEC72B76D2DA599 *)__this, /*hidden argument*/NULL);
V_1 = L_8;
int32_t L_9;
L_9 = Pose_GetHashCode_mE1DD7FBCCB1C979B252F0B117276BA11CF4D2367((Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A *)(&V_1), /*hidden argument*/NULL);
// hashCode = (hashCode * 486187739) + rightEyePose.GetHashCode();
Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A L_10;
L_10 = XRFace_get_rightEyePose_m3FA7FDE9C2D9841FB7496B691FCAB1F35475F2B1_inline((XRFace_tA970995ECE26D43D1CBB9058ABEC72B76D2DA599 *)__this, /*hidden argument*/NULL);
V_1 = L_10;
int32_t L_11;
L_11 = Pose_GetHashCode_mE1DD7FBCCB1C979B252F0B117276BA11CF4D2367((Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A *)(&V_1), /*hidden argument*/NULL);
// hashCode = (hashCode * 486187739) + fixationPoint.GetHashCode();
Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_12;
L_12 = XRFace_get_fixationPoint_mAEA40B8C8F2C0D0A3B777ACFDE327017C9DF294D_inline((XRFace_tA970995ECE26D43D1CBB9058ABEC72B76D2DA599 *)__this, /*hidden argument*/NULL);
V_4 = L_12;
int32_t L_13;
L_13 = Vector3_GetHashCode_m9F18401DA6025110A012F55BBB5ACABD36FA9A0A((Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E *)(&V_4), /*hidden argument*/NULL);
// return hashCode;
return ((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)L_1, (int32_t)((int32_t)486187739))), (int32_t)L_3)), (int32_t)((int32_t)486187739))), (int32_t)L_5)), (int32_t)((int32_t)486187739))), (int32_t)L_7)), (int32_t)((int32_t)486187739))), (int32_t)L_9)), (int32_t)((int32_t)486187739))), (int32_t)L_11)), (int32_t)((int32_t)486187739))), (int32_t)L_13));
}
}
IL2CPP_EXTERN_C int32_t XRFace_GetHashCode_mDFFE26F3662B1DF33124A0393FA9FDE444167CEC_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
XRFace_tA970995ECE26D43D1CBB9058ABEC72B76D2DA599 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XRFace_tA970995ECE26D43D1CBB9058ABEC72B76D2DA599 *>(__this + _offset);
int32_t _returnValue;
_returnValue = XRFace_GetHashCode_mDFFE26F3662B1DF33124A0393FA9FDE444167CEC(_thisAdjusted, method);
return _returnValue;
}
// System.Boolean UnityEngine.XR.ARSubsystems.XRFace::Equals(UnityEngine.XR.ARSubsystems.XRFace)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XRFace_Equals_mF05C24C98D5E1ED344943307E03FE4776CCB4217 (XRFace_tA970995ECE26D43D1CBB9058ABEC72B76D2DA599 * __this, XRFace_tA970995ECE26D43D1CBB9058ABEC72B76D2DA599 ___other0, const RuntimeMethod* method)
{
TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B V_0;
memset((&V_0), 0, sizeof(V_0));
Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A V_1;
memset((&V_1), 0, sizeof(V_1));
Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E V_2;
memset((&V_2), 0, sizeof(V_2));
{
// return
// trackableId.Equals(other.trackableId) &&
// pose.Equals(other.pose) &&
// (trackingState == other.trackingState) &&
// (nativePtr == other.nativePtr) &&
// (leftEyePose.Equals(other.leftEyePose)) &&
// (rightEyePose.Equals(other.rightEyePose)) &&
// (fixationPoint.Equals(other.fixationPoint));
TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B L_0;
L_0 = XRFace_get_trackableId_m997871151FF642B1908F7E352C952A44AB4DD17C_inline((XRFace_tA970995ECE26D43D1CBB9058ABEC72B76D2DA599 *)__this, /*hidden argument*/NULL);
V_0 = L_0;
TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B L_1;
L_1 = XRFace_get_trackableId_m997871151FF642B1908F7E352C952A44AB4DD17C_inline((XRFace_tA970995ECE26D43D1CBB9058ABEC72B76D2DA599 *)(&___other0), /*hidden argument*/NULL);
bool L_2;
L_2 = TrackableId_Equals_m1DF35616359175E3D66DE18250E8CDA1E6462B06((TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B *)(&V_0), L_1, /*hidden argument*/NULL);
if (!L_2)
{
goto IL_0095;
}
}
{
Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A L_3;
L_3 = XRFace_get_pose_m482AC4907DC02C0B5D67B84320DA7F9D12A43A75_inline((XRFace_tA970995ECE26D43D1CBB9058ABEC72B76D2DA599 *)__this, /*hidden argument*/NULL);
V_1 = L_3;
Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A L_4;
L_4 = XRFace_get_pose_m482AC4907DC02C0B5D67B84320DA7F9D12A43A75_inline((XRFace_tA970995ECE26D43D1CBB9058ABEC72B76D2DA599 *)(&___other0), /*hidden argument*/NULL);
bool L_5;
L_5 = Pose_Equals_mFAE0041090F2032B8FCE63A0F289DD206134BF15((Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A *)(&V_1), L_4, /*hidden argument*/NULL);
if (!L_5)
{
goto IL_0095;
}
}
{
int32_t L_6;
L_6 = XRFace_get_trackingState_m8953B01AB6213402157B69083B318D3F2CDCF26A_inline((XRFace_tA970995ECE26D43D1CBB9058ABEC72B76D2DA599 *)__this, /*hidden argument*/NULL);
int32_t L_7;
L_7 = XRFace_get_trackingState_m8953B01AB6213402157B69083B318D3F2CDCF26A_inline((XRFace_tA970995ECE26D43D1CBB9058ABEC72B76D2DA599 *)(&___other0), /*hidden argument*/NULL);
if ((!(((uint32_t)L_6) == ((uint32_t)L_7))))
{
goto IL_0095;
}
}
{
intptr_t L_8;
L_8 = XRFace_get_nativePtr_mCE6C767CB9DBBCDE7B289D8EBDE1DFC86707BC95_inline((XRFace_tA970995ECE26D43D1CBB9058ABEC72B76D2DA599 *)__this, /*hidden argument*/NULL);
intptr_t L_9;
L_9 = XRFace_get_nativePtr_mCE6C767CB9DBBCDE7B289D8EBDE1DFC86707BC95_inline((XRFace_tA970995ECE26D43D1CBB9058ABEC72B76D2DA599 *)(&___other0), /*hidden argument*/NULL);
bool L_10;
L_10 = IntPtr_op_Equality_mD94F3FE43A65684EFF984A7B95E70D2520C0AC73((intptr_t)L_8, (intptr_t)L_9, /*hidden argument*/NULL);
if (!L_10)
{
goto IL_0095;
}
}
{
Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A L_11;
L_11 = XRFace_get_leftEyePose_mEAF86B00D307A5D96D671A85EA1BBF88D82586BF_inline((XRFace_tA970995ECE26D43D1CBB9058ABEC72B76D2DA599 *)__this, /*hidden argument*/NULL);
V_1 = L_11;
Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A L_12;
L_12 = XRFace_get_leftEyePose_mEAF86B00D307A5D96D671A85EA1BBF88D82586BF_inline((XRFace_tA970995ECE26D43D1CBB9058ABEC72B76D2DA599 *)(&___other0), /*hidden argument*/NULL);
bool L_13;
L_13 = Pose_Equals_mFAE0041090F2032B8FCE63A0F289DD206134BF15((Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A *)(&V_1), L_12, /*hidden argument*/NULL);
if (!L_13)
{
goto IL_0095;
}
}
{
Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A L_14;
L_14 = XRFace_get_rightEyePose_m3FA7FDE9C2D9841FB7496B691FCAB1F35475F2B1_inline((XRFace_tA970995ECE26D43D1CBB9058ABEC72B76D2DA599 *)__this, /*hidden argument*/NULL);
V_1 = L_14;
Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A L_15;
L_15 = XRFace_get_rightEyePose_m3FA7FDE9C2D9841FB7496B691FCAB1F35475F2B1_inline((XRFace_tA970995ECE26D43D1CBB9058ABEC72B76D2DA599 *)(&___other0), /*hidden argument*/NULL);
bool L_16;
L_16 = Pose_Equals_mFAE0041090F2032B8FCE63A0F289DD206134BF15((Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A *)(&V_1), L_15, /*hidden argument*/NULL);
if (!L_16)
{
goto IL_0095;
}
}
{
Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_17;
L_17 = XRFace_get_fixationPoint_mAEA40B8C8F2C0D0A3B777ACFDE327017C9DF294D_inline((XRFace_tA970995ECE26D43D1CBB9058ABEC72B76D2DA599 *)__this, /*hidden argument*/NULL);
V_2 = L_17;
Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_18;
L_18 = XRFace_get_fixationPoint_mAEA40B8C8F2C0D0A3B777ACFDE327017C9DF294D_inline((XRFace_tA970995ECE26D43D1CBB9058ABEC72B76D2DA599 *)(&___other0), /*hidden argument*/NULL);
bool L_19;
L_19 = Vector3_Equals_mA92800CD98ED6A42DD7C55C5DB22DAB4DEAA6397((Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E *)(&V_2), L_18, /*hidden argument*/NULL);
return L_19;
}
IL_0095:
{
return (bool)0;
}
}
IL2CPP_EXTERN_C bool XRFace_Equals_mF05C24C98D5E1ED344943307E03FE4776CCB4217_AdjustorThunk (RuntimeObject * __this, XRFace_tA970995ECE26D43D1CBB9058ABEC72B76D2DA599 ___other0, const RuntimeMethod* method)
{
XRFace_tA970995ECE26D43D1CBB9058ABEC72B76D2DA599 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XRFace_tA970995ECE26D43D1CBB9058ABEC72B76D2DA599 *>(__this + _offset);
bool _returnValue;
_returnValue = XRFace_Equals_mF05C24C98D5E1ED344943307E03FE4776CCB4217(_thisAdjusted, ___other0, method);
return _returnValue;
}
// System.Void UnityEngine.XR.ARSubsystems.XRFace::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRFace__cctor_mB148EA0217E4B6CAF9C7B40813197BE6AF917BA9 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XRFace_tA970995ECE26D43D1CBB9058ABEC72B76D2DA599_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
XRFace_tA970995ECE26D43D1CBB9058ABEC72B76D2DA599 V_0;
memset((&V_0), 0, sizeof(V_0));
{
// static readonly XRFace s_Default = new XRFace
// {
// m_TrackableId = TrackableId.invalidId,
// m_Pose = Pose.identity,
// m_LeftEyePose = Pose.identity,
// m_RightEyePose = Pose.identity,
// };
il2cpp_codegen_initobj((&V_0), sizeof(XRFace_tA970995ECE26D43D1CBB9058ABEC72B76D2DA599 ));
IL2CPP_RUNTIME_CLASS_INIT(TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B_il2cpp_TypeInfo_var);
TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B L_0;
L_0 = TrackableId_get_invalidId_m06B698EFFA7748E185299C72B5CEC1AA5B221F85_inline(/*hidden argument*/NULL);
(&V_0)->set_m_TrackableId_0(L_0);
IL2CPP_RUNTIME_CLASS_INIT(Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A_il2cpp_TypeInfo_var);
Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A L_1;
L_1 = Pose_get_identity_m334B16AC3024785914BCC5A2B949750A010878BF(/*hidden argument*/NULL);
(&V_0)->set_m_Pose_1(L_1);
Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A L_2;
L_2 = Pose_get_identity_m334B16AC3024785914BCC5A2B949750A010878BF(/*hidden argument*/NULL);
(&V_0)->set_m_LeftEyePose_4(L_2);
Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A L_3;
L_3 = Pose_get_identity_m334B16AC3024785914BCC5A2B949750A010878BF(/*hidden argument*/NULL);
(&V_0)->set_m_RightEyePose_5(L_3);
XRFace_tA970995ECE26D43D1CBB9058ABEC72B76D2DA599 L_4 = V_0;
((XRFace_tA970995ECE26D43D1CBB9058ABEC72B76D2DA599_StaticFields*)il2cpp_codegen_static_fields_for(XRFace_tA970995ECE26D43D1CBB9058ABEC72B76D2DA599_il2cpp_TypeInfo_var))->set_s_Default_7(L_4);
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
// System.Void UnityEngine.XR.ARSubsystems.XRFaceMesh::Resize(System.Int32,System.Int32,UnityEngine.XR.ARSubsystems.XRFaceMesh/Attributes,Unity.Collections.Allocator)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRFaceMesh_Resize_m15BF7254A68B9910F518990A33CF037F310ED1E6 (XRFaceMesh_t2ADC7E6069DCCCFB439A4A60DB9189338C9E1AD0 * __this, int32_t ___vertexCount0, int32_t ___triangleCount1, int32_t ___attributes2, int32_t ___allocator3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XRFaceMesh_Resize_TisInt32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_m786BA056A8C6FDF2F6D3B52D2526981B3BA391F0_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XRFaceMesh_Resize_TisVector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9_mAD9D1AB3912BD722DBA92C5AE79C177DD69AAFFE_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XRFaceMesh_Resize_TisVector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E_mAA24CEC7C20C34C26A9E7512608B8930B450C6C0_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
// Resize(vertexCount, allocator, ref m_Vertices, true);
int32_t L_0 = ___vertexCount0;
int32_t L_1 = ___allocator3;
NativeArray_1_t2577BCA09CA248EFB78BD7FDA7F09D5C395DFF52 * L_2 = __this->get_address_of_m_Vertices_0();
XRFaceMesh_Resize_TisVector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E_mAA24CEC7C20C34C26A9E7512608B8930B450C6C0(L_0, L_1, (NativeArray_1_t2577BCA09CA248EFB78BD7FDA7F09D5C395DFF52 *)L_2, (bool)1, /*hidden argument*/XRFaceMesh_Resize_TisVector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E_mAA24CEC7C20C34C26A9E7512608B8930B450C6C0_RuntimeMethod_var);
// Resize(vertexCount, allocator, ref m_Normals, (attributes & Attributes.Normals) != 0);
int32_t L_3 = ___vertexCount0;
int32_t L_4 = ___allocator3;
NativeArray_1_t2577BCA09CA248EFB78BD7FDA7F09D5C395DFF52 * L_5 = __this->get_address_of_m_Normals_1();
int32_t L_6 = ___attributes2;
XRFaceMesh_Resize_TisVector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E_mAA24CEC7C20C34C26A9E7512608B8930B450C6C0(L_3, L_4, (NativeArray_1_t2577BCA09CA248EFB78BD7FDA7F09D5C395DFF52 *)L_5, (bool)((!(((uint32_t)((int32_t)((int32_t)L_6&(int32_t)1))) <= ((uint32_t)0)))? 1 : 0), /*hidden argument*/XRFaceMesh_Resize_TisVector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E_mAA24CEC7C20C34C26A9E7512608B8930B450C6C0_RuntimeMethod_var);
// Resize(vertexCount, allocator, ref m_UVs, (attributes & Attributes.UVs) != 0);
int32_t L_7 = ___vertexCount0;
int32_t L_8 = ___allocator3;
NativeArray_1_t431C85F30275831D1F5D458AB73DFCE050693BC0 * L_9 = __this->get_address_of_m_UVs_3();
int32_t L_10 = ___attributes2;
XRFaceMesh_Resize_TisVector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9_mAD9D1AB3912BD722DBA92C5AE79C177DD69AAFFE(L_7, L_8, (NativeArray_1_t431C85F30275831D1F5D458AB73DFCE050693BC0 *)L_9, (bool)((!(((uint32_t)((int32_t)((int32_t)L_10&(int32_t)2))) <= ((uint32_t)0)))? 1 : 0), /*hidden argument*/XRFaceMesh_Resize_TisVector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9_mAD9D1AB3912BD722DBA92C5AE79C177DD69AAFFE_RuntimeMethod_var);
// Resize(triangleCount * 3, allocator, ref m_Indices, true);
int32_t L_11 = ___triangleCount1;
int32_t L_12 = ___allocator3;
NativeArray_1_tD60079F06B473C85CF6C2BB4F2D203F38191AE99 * L_13 = __this->get_address_of_m_Indices_2();
XRFaceMesh_Resize_TisInt32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_m786BA056A8C6FDF2F6D3B52D2526981B3BA391F0(((int32_t)il2cpp_codegen_multiply((int32_t)L_11, (int32_t)3)), L_12, (NativeArray_1_tD60079F06B473C85CF6C2BB4F2D203F38191AE99 *)L_13, (bool)1, /*hidden argument*/XRFaceMesh_Resize_TisInt32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_m786BA056A8C6FDF2F6D3B52D2526981B3BA391F0_RuntimeMethod_var);
// }
return;
}
}
IL2CPP_EXTERN_C void XRFaceMesh_Resize_m15BF7254A68B9910F518990A33CF037F310ED1E6_AdjustorThunk (RuntimeObject * __this, int32_t ___vertexCount0, int32_t ___triangleCount1, int32_t ___attributes2, int32_t ___allocator3, const RuntimeMethod* method)
{
XRFaceMesh_t2ADC7E6069DCCCFB439A4A60DB9189338C9E1AD0 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XRFaceMesh_t2ADC7E6069DCCCFB439A4A60DB9189338C9E1AD0 *>(__this + _offset);
XRFaceMesh_Resize_m15BF7254A68B9910F518990A33CF037F310ED1E6(_thisAdjusted, ___vertexCount0, ___triangleCount1, ___attributes2, ___allocator3, method);
}
// Unity.Collections.NativeArray`1<UnityEngine.Vector3> UnityEngine.XR.ARSubsystems.XRFaceMesh::get_vertices()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NativeArray_1_t2577BCA09CA248EFB78BD7FDA7F09D5C395DFF52 XRFaceMesh_get_vertices_m19DE0A4E73ED17C8B6427BE86071E10DB65740DD (XRFaceMesh_t2ADC7E6069DCCCFB439A4A60DB9189338C9E1AD0 * __this, const RuntimeMethod* method)
{
{
// public NativeArray<Vector3> vertices => m_Vertices;
NativeArray_1_t2577BCA09CA248EFB78BD7FDA7F09D5C395DFF52 L_0 = __this->get_m_Vertices_0();
return L_0;
}
}
IL2CPP_EXTERN_C NativeArray_1_t2577BCA09CA248EFB78BD7FDA7F09D5C395DFF52 XRFaceMesh_get_vertices_m19DE0A4E73ED17C8B6427BE86071E10DB65740DD_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
XRFaceMesh_t2ADC7E6069DCCCFB439A4A60DB9189338C9E1AD0 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XRFaceMesh_t2ADC7E6069DCCCFB439A4A60DB9189338C9E1AD0 *>(__this + _offset);
NativeArray_1_t2577BCA09CA248EFB78BD7FDA7F09D5C395DFF52 _returnValue;
_returnValue = XRFaceMesh_get_vertices_m19DE0A4E73ED17C8B6427BE86071E10DB65740DD_inline(_thisAdjusted, method);
return _returnValue;
}
// Unity.Collections.NativeArray`1<UnityEngine.Vector3> UnityEngine.XR.ARSubsystems.XRFaceMesh::get_normals()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NativeArray_1_t2577BCA09CA248EFB78BD7FDA7F09D5C395DFF52 XRFaceMesh_get_normals_m82DE916E7AE8A9BF4768D289E01CD0C65E1001ED (XRFaceMesh_t2ADC7E6069DCCCFB439A4A60DB9189338C9E1AD0 * __this, const RuntimeMethod* method)
{
{
// public NativeArray<Vector3> normals => m_Normals;
NativeArray_1_t2577BCA09CA248EFB78BD7FDA7F09D5C395DFF52 L_0 = __this->get_m_Normals_1();
return L_0;
}
}
IL2CPP_EXTERN_C NativeArray_1_t2577BCA09CA248EFB78BD7FDA7F09D5C395DFF52 XRFaceMesh_get_normals_m82DE916E7AE8A9BF4768D289E01CD0C65E1001ED_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
XRFaceMesh_t2ADC7E6069DCCCFB439A4A60DB9189338C9E1AD0 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XRFaceMesh_t2ADC7E6069DCCCFB439A4A60DB9189338C9E1AD0 *>(__this + _offset);
NativeArray_1_t2577BCA09CA248EFB78BD7FDA7F09D5C395DFF52 _returnValue;
_returnValue = XRFaceMesh_get_normals_m82DE916E7AE8A9BF4768D289E01CD0C65E1001ED_inline(_thisAdjusted, method);
return _returnValue;
}
// Unity.Collections.NativeArray`1<System.Int32> UnityEngine.XR.ARSubsystems.XRFaceMesh::get_indices()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NativeArray_1_tD60079F06B473C85CF6C2BB4F2D203F38191AE99 XRFaceMesh_get_indices_m93B77F79BB4C67AF1AFFAD29ED8D8F48AF4616FE (XRFaceMesh_t2ADC7E6069DCCCFB439A4A60DB9189338C9E1AD0 * __this, const RuntimeMethod* method)
{
{
// public NativeArray<int> indices => m_Indices;
NativeArray_1_tD60079F06B473C85CF6C2BB4F2D203F38191AE99 L_0 = __this->get_m_Indices_2();
return L_0;
}
}
IL2CPP_EXTERN_C NativeArray_1_tD60079F06B473C85CF6C2BB4F2D203F38191AE99 XRFaceMesh_get_indices_m93B77F79BB4C67AF1AFFAD29ED8D8F48AF4616FE_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
XRFaceMesh_t2ADC7E6069DCCCFB439A4A60DB9189338C9E1AD0 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XRFaceMesh_t2ADC7E6069DCCCFB439A4A60DB9189338C9E1AD0 *>(__this + _offset);
NativeArray_1_tD60079F06B473C85CF6C2BB4F2D203F38191AE99 _returnValue;
_returnValue = XRFaceMesh_get_indices_m93B77F79BB4C67AF1AFFAD29ED8D8F48AF4616FE_inline(_thisAdjusted, method);
return _returnValue;
}
// Unity.Collections.NativeArray`1<UnityEngine.Vector2> UnityEngine.XR.ARSubsystems.XRFaceMesh::get_uvs()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NativeArray_1_t431C85F30275831D1F5D458AB73DFCE050693BC0 XRFaceMesh_get_uvs_m89943E9CD34232EF09B81F13EF259C33F1183B49 (XRFaceMesh_t2ADC7E6069DCCCFB439A4A60DB9189338C9E1AD0 * __this, const RuntimeMethod* method)
{
{
// public NativeArray<Vector2> uvs => m_UVs;
NativeArray_1_t431C85F30275831D1F5D458AB73DFCE050693BC0 L_0 = __this->get_m_UVs_3();
return L_0;
}
}
IL2CPP_EXTERN_C NativeArray_1_t431C85F30275831D1F5D458AB73DFCE050693BC0 XRFaceMesh_get_uvs_m89943E9CD34232EF09B81F13EF259C33F1183B49_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
XRFaceMesh_t2ADC7E6069DCCCFB439A4A60DB9189338C9E1AD0 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XRFaceMesh_t2ADC7E6069DCCCFB439A4A60DB9189338C9E1AD0 *>(__this + _offset);
NativeArray_1_t431C85F30275831D1F5D458AB73DFCE050693BC0 _returnValue;
_returnValue = XRFaceMesh_get_uvs_m89943E9CD34232EF09B81F13EF259C33F1183B49_inline(_thisAdjusted, method);
return _returnValue;
}
// System.Void UnityEngine.XR.ARSubsystems.XRFaceMesh::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRFaceMesh_Dispose_m84478F08EEB3D131E0E7785CF4195D424B94543E (XRFaceMesh_t2ADC7E6069DCCCFB439A4A60DB9189338C9E1AD0 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NativeArray_1_Dispose_m69DBDA47FE3991A47E9CFCBFB3292676D22D7655_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NativeArray_1_Dispose_m867A382096AF527E2B854ADC9ED75ED6BF95D76B_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NativeArray_1_Dispose_mE737DADB8C5E4B02C2FB6CB36E86AC6371D806BF_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NativeArray_1_get_IsCreated_m0B7EB9CC11FCECCC0480F589775E99828F222AE5_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NativeArray_1_get_IsCreated_mCD60B11F9FB036F65310E83275A1632E57AAC29C_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NativeArray_1_get_IsCreated_mF82CF064C6050394DEAC11047A6308998101A4AE_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
// if (m_Vertices.IsCreated)
NativeArray_1_t2577BCA09CA248EFB78BD7FDA7F09D5C395DFF52 * L_0 = __this->get_address_of_m_Vertices_0();
bool L_1;
L_1 = NativeArray_1_get_IsCreated_mCD60B11F9FB036F65310E83275A1632E57AAC29C((NativeArray_1_t2577BCA09CA248EFB78BD7FDA7F09D5C395DFF52 *)L_0, /*hidden argument*/NativeArray_1_get_IsCreated_mCD60B11F9FB036F65310E83275A1632E57AAC29C_RuntimeMethod_var);
if (!L_1)
{
goto IL_0018;
}
}
{
// m_Vertices.Dispose();
NativeArray_1_t2577BCA09CA248EFB78BD7FDA7F09D5C395DFF52 * L_2 = __this->get_address_of_m_Vertices_0();
NativeArray_1_Dispose_m867A382096AF527E2B854ADC9ED75ED6BF95D76B((NativeArray_1_t2577BCA09CA248EFB78BD7FDA7F09D5C395DFF52 *)L_2, /*hidden argument*/NativeArray_1_Dispose_m867A382096AF527E2B854ADC9ED75ED6BF95D76B_RuntimeMethod_var);
}
IL_0018:
{
// if (m_Normals.IsCreated)
NativeArray_1_t2577BCA09CA248EFB78BD7FDA7F09D5C395DFF52 * L_3 = __this->get_address_of_m_Normals_1();
bool L_4;
L_4 = NativeArray_1_get_IsCreated_mCD60B11F9FB036F65310E83275A1632E57AAC29C((NativeArray_1_t2577BCA09CA248EFB78BD7FDA7F09D5C395DFF52 *)L_3, /*hidden argument*/NativeArray_1_get_IsCreated_mCD60B11F9FB036F65310E83275A1632E57AAC29C_RuntimeMethod_var);
if (!L_4)
{
goto IL_0030;
}
}
{
// m_Normals.Dispose();
NativeArray_1_t2577BCA09CA248EFB78BD7FDA7F09D5C395DFF52 * L_5 = __this->get_address_of_m_Normals_1();
NativeArray_1_Dispose_m867A382096AF527E2B854ADC9ED75ED6BF95D76B((NativeArray_1_t2577BCA09CA248EFB78BD7FDA7F09D5C395DFF52 *)L_5, /*hidden argument*/NativeArray_1_Dispose_m867A382096AF527E2B854ADC9ED75ED6BF95D76B_RuntimeMethod_var);
}
IL_0030:
{
// if (m_Indices.IsCreated)
NativeArray_1_tD60079F06B473C85CF6C2BB4F2D203F38191AE99 * L_6 = __this->get_address_of_m_Indices_2();
bool L_7;
L_7 = NativeArray_1_get_IsCreated_m0B7EB9CC11FCECCC0480F589775E99828F222AE5((NativeArray_1_tD60079F06B473C85CF6C2BB4F2D203F38191AE99 *)L_6, /*hidden argument*/NativeArray_1_get_IsCreated_m0B7EB9CC11FCECCC0480F589775E99828F222AE5_RuntimeMethod_var);
if (!L_7)
{
goto IL_0048;
}
}
{
// m_Indices.Dispose();
NativeArray_1_tD60079F06B473C85CF6C2BB4F2D203F38191AE99 * L_8 = __this->get_address_of_m_Indices_2();
NativeArray_1_Dispose_m69DBDA47FE3991A47E9CFCBFB3292676D22D7655((NativeArray_1_tD60079F06B473C85CF6C2BB4F2D203F38191AE99 *)L_8, /*hidden argument*/NativeArray_1_Dispose_m69DBDA47FE3991A47E9CFCBFB3292676D22D7655_RuntimeMethod_var);
}
IL_0048:
{
// if (m_UVs.IsCreated)
NativeArray_1_t431C85F30275831D1F5D458AB73DFCE050693BC0 * L_9 = __this->get_address_of_m_UVs_3();
bool L_10;
L_10 = NativeArray_1_get_IsCreated_mF82CF064C6050394DEAC11047A6308998101A4AE((NativeArray_1_t431C85F30275831D1F5D458AB73DFCE050693BC0 *)L_9, /*hidden argument*/NativeArray_1_get_IsCreated_mF82CF064C6050394DEAC11047A6308998101A4AE_RuntimeMethod_var);
if (!L_10)
{
goto IL_0060;
}
}
{
// m_UVs.Dispose();
NativeArray_1_t431C85F30275831D1F5D458AB73DFCE050693BC0 * L_11 = __this->get_address_of_m_UVs_3();
NativeArray_1_Dispose_mE737DADB8C5E4B02C2FB6CB36E86AC6371D806BF((NativeArray_1_t431C85F30275831D1F5D458AB73DFCE050693BC0 *)L_11, /*hidden argument*/NativeArray_1_Dispose_mE737DADB8C5E4B02C2FB6CB36E86AC6371D806BF_RuntimeMethod_var);
}
IL_0060:
{
// }
return;
}
}
IL2CPP_EXTERN_C void XRFaceMesh_Dispose_m84478F08EEB3D131E0E7785CF4195D424B94543E_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
XRFaceMesh_t2ADC7E6069DCCCFB439A4A60DB9189338C9E1AD0 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XRFaceMesh_t2ADC7E6069DCCCFB439A4A60DB9189338C9E1AD0 *>(__this + _offset);
XRFaceMesh_Dispose_m84478F08EEB3D131E0E7785CF4195D424B94543E(_thisAdjusted, method);
}
// System.Int32 UnityEngine.XR.ARSubsystems.XRFaceMesh::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XRFaceMesh_GetHashCode_mC53C827B010796E1A20690766F1A2A1F70DB614D (XRFaceMesh_t2ADC7E6069DCCCFB439A4A60DB9189338C9E1AD0 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NativeArray_1_GetHashCode_m1C0484565632411F701F00B79715B0F483A58383_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NativeArray_1_GetHashCode_mC922CA29222CB7251722A89B2C5B48CFD82A8C5A_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NativeArray_1_GetHashCode_mE3A484ADA1047A341C388F0261DBA091C2F4F9B9_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
// var hash = m_Vertices.GetHashCode();
NativeArray_1_t2577BCA09CA248EFB78BD7FDA7F09D5C395DFF52 * L_0 = __this->get_address_of_m_Vertices_0();
int32_t L_1;
L_1 = NativeArray_1_GetHashCode_mE3A484ADA1047A341C388F0261DBA091C2F4F9B9((NativeArray_1_t2577BCA09CA248EFB78BD7FDA7F09D5C395DFF52 *)L_0, /*hidden argument*/NativeArray_1_GetHashCode_mE3A484ADA1047A341C388F0261DBA091C2F4F9B9_RuntimeMethod_var);
// hash = hash * 486187739 + m_Normals.GetHashCode();
NativeArray_1_t2577BCA09CA248EFB78BD7FDA7F09D5C395DFF52 * L_2 = __this->get_address_of_m_Normals_1();
int32_t L_3;
L_3 = NativeArray_1_GetHashCode_mE3A484ADA1047A341C388F0261DBA091C2F4F9B9((NativeArray_1_t2577BCA09CA248EFB78BD7FDA7F09D5C395DFF52 *)L_2, /*hidden argument*/NativeArray_1_GetHashCode_mE3A484ADA1047A341C388F0261DBA091C2F4F9B9_RuntimeMethod_var);
// hash = hash * 486187739 + m_Indices.GetHashCode();
NativeArray_1_tD60079F06B473C85CF6C2BB4F2D203F38191AE99 * L_4 = __this->get_address_of_m_Indices_2();
int32_t L_5;
L_5 = NativeArray_1_GetHashCode_m1C0484565632411F701F00B79715B0F483A58383((NativeArray_1_tD60079F06B473C85CF6C2BB4F2D203F38191AE99 *)L_4, /*hidden argument*/NativeArray_1_GetHashCode_m1C0484565632411F701F00B79715B0F483A58383_RuntimeMethod_var);
// hash = hash * 486187739 + m_UVs.GetHashCode();
NativeArray_1_t431C85F30275831D1F5D458AB73DFCE050693BC0 * L_6 = __this->get_address_of_m_UVs_3();
int32_t L_7;
L_7 = NativeArray_1_GetHashCode_mC922CA29222CB7251722A89B2C5B48CFD82A8C5A((NativeArray_1_t431C85F30275831D1F5D458AB73DFCE050693BC0 *)L_6, /*hidden argument*/NativeArray_1_GetHashCode_mC922CA29222CB7251722A89B2C5B48CFD82A8C5A_RuntimeMethod_var);
// return hash;
return ((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)L_1, (int32_t)((int32_t)486187739))), (int32_t)L_3)), (int32_t)((int32_t)486187739))), (int32_t)L_5)), (int32_t)((int32_t)486187739))), (int32_t)L_7));
}
}
IL2CPP_EXTERN_C int32_t XRFaceMesh_GetHashCode_mC53C827B010796E1A20690766F1A2A1F70DB614D_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
XRFaceMesh_t2ADC7E6069DCCCFB439A4A60DB9189338C9E1AD0 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XRFaceMesh_t2ADC7E6069DCCCFB439A4A60DB9189338C9E1AD0 *>(__this + _offset);
int32_t _returnValue;
_returnValue = XRFaceMesh_GetHashCode_mC53C827B010796E1A20690766F1A2A1F70DB614D(_thisAdjusted, method);
return _returnValue;
}
// System.Boolean UnityEngine.XR.ARSubsystems.XRFaceMesh::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XRFaceMesh_Equals_mCAC3BFCE776A814088BA4D5361CB771BCC4BE87A (XRFaceMesh_t2ADC7E6069DCCCFB439A4A60DB9189338C9E1AD0 * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XRFaceMesh_t2ADC7E6069DCCCFB439A4A60DB9189338C9E1AD0_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
// if (!(obj is XRFaceMesh))
RuntimeObject * L_0 = ___obj0;
if (((RuntimeObject *)IsInstSealed((RuntimeObject*)L_0, XRFaceMesh_t2ADC7E6069DCCCFB439A4A60DB9189338C9E1AD0_il2cpp_TypeInfo_var)))
{
goto IL_000a;
}
}
{
// return false;
return (bool)0;
}
IL_000a:
{
// return Equals((XRFaceMesh)obj);
RuntimeObject * L_1 = ___obj0;
bool L_2;
L_2 = XRFaceMesh_Equals_m2BB9E69AD22C8521466B981BA077007536189F0C((XRFaceMesh_t2ADC7E6069DCCCFB439A4A60DB9189338C9E1AD0 *)__this, ((*(XRFaceMesh_t2ADC7E6069DCCCFB439A4A60DB9189338C9E1AD0 *)((XRFaceMesh_t2ADC7E6069DCCCFB439A4A60DB9189338C9E1AD0 *)UnBox(L_1, XRFaceMesh_t2ADC7E6069DCCCFB439A4A60DB9189338C9E1AD0_il2cpp_TypeInfo_var)))), /*hidden argument*/NULL);
return L_2;
}
}
IL2CPP_EXTERN_C bool XRFaceMesh_Equals_mCAC3BFCE776A814088BA4D5361CB771BCC4BE87A_AdjustorThunk (RuntimeObject * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
XRFaceMesh_t2ADC7E6069DCCCFB439A4A60DB9189338C9E1AD0 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XRFaceMesh_t2ADC7E6069DCCCFB439A4A60DB9189338C9E1AD0 *>(__this + _offset);
bool _returnValue;
_returnValue = XRFaceMesh_Equals_mCAC3BFCE776A814088BA4D5361CB771BCC4BE87A(_thisAdjusted, ___obj0, method);
return _returnValue;
}
// System.String UnityEngine.XR.ARSubsystems.XRFaceMesh::ToString()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XRFaceMesh_ToString_m1997FC173A5BB7E5EFC51893E3BDD26D34F27897 (XRFaceMesh_t2ADC7E6069DCCCFB439A4A60DB9189338C9E1AD0 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralB0C265238CD8DCB2E075C4DB503EA5E606492B12);
s_Il2CppMethodInitialized = true;
}
{
// return string.Format("XRFaceMesh: {0} vertices {1} normals {2} indices {3} uvs",
// m_Vertices.Length, m_Normals.Length, m_Indices.Length, m_UVs.Length);
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_0 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)SZArrayNew(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE_il2cpp_TypeInfo_var, (uint32_t)4);
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_1 = L_0;
NativeArray_1_t2577BCA09CA248EFB78BD7FDA7F09D5C395DFF52 * L_2 = __this->get_address_of_m_Vertices_0();
int32_t L_3;
L_3 = IL2CPP_NATIVEARRAY_GET_LENGTH(((NativeArray_1_t2577BCA09CA248EFB78BD7FDA7F09D5C395DFF52 *)L_2)->___m_Length_1);
int32_t L_4 = L_3;
RuntimeObject * L_5 = Box(Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var, &L_4);
NullCheck(L_1);
ArrayElementTypeCheck (L_1, L_5);
(L_1)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_5);
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_6 = L_1;
NativeArray_1_t2577BCA09CA248EFB78BD7FDA7F09D5C395DFF52 * L_7 = __this->get_address_of_m_Normals_1();
int32_t L_8;
L_8 = IL2CPP_NATIVEARRAY_GET_LENGTH(((NativeArray_1_t2577BCA09CA248EFB78BD7FDA7F09D5C395DFF52 *)L_7)->___m_Length_1);
int32_t L_9 = L_8;
RuntimeObject * L_10 = Box(Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var, &L_9);
NullCheck(L_6);
ArrayElementTypeCheck (L_6, L_10);
(L_6)->SetAt(static_cast<il2cpp_array_size_t>(1), (RuntimeObject *)L_10);
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_11 = L_6;
NativeArray_1_tD60079F06B473C85CF6C2BB4F2D203F38191AE99 * L_12 = __this->get_address_of_m_Indices_2();
int32_t L_13;
L_13 = IL2CPP_NATIVEARRAY_GET_LENGTH(((NativeArray_1_tD60079F06B473C85CF6C2BB4F2D203F38191AE99 *)L_12)->___m_Length_1);
int32_t L_14 = L_13;
RuntimeObject * L_15 = Box(Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var, &L_14);
NullCheck(L_11);
ArrayElementTypeCheck (L_11, L_15);
(L_11)->SetAt(static_cast<il2cpp_array_size_t>(2), (RuntimeObject *)L_15);
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_16 = L_11;
NativeArray_1_t431C85F30275831D1F5D458AB73DFCE050693BC0 * L_17 = __this->get_address_of_m_UVs_3();
int32_t L_18;
L_18 = IL2CPP_NATIVEARRAY_GET_LENGTH(((NativeArray_1_t431C85F30275831D1F5D458AB73DFCE050693BC0 *)L_17)->___m_Length_1);
int32_t L_19 = L_18;
RuntimeObject * L_20 = Box(Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var, &L_19);
NullCheck(L_16);
ArrayElementTypeCheck (L_16, L_20);
(L_16)->SetAt(static_cast<il2cpp_array_size_t>(3), (RuntimeObject *)L_20);
String_t* L_21;
L_21 = String_Format_mCED6767EA5FEE6F15ABCD5B4F9150D1284C2795B(_stringLiteralB0C265238CD8DCB2E075C4DB503EA5E606492B12, L_16, /*hidden argument*/NULL);
return L_21;
}
}
IL2CPP_EXTERN_C String_t* XRFaceMesh_ToString_m1997FC173A5BB7E5EFC51893E3BDD26D34F27897_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
XRFaceMesh_t2ADC7E6069DCCCFB439A4A60DB9189338C9E1AD0 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XRFaceMesh_t2ADC7E6069DCCCFB439A4A60DB9189338C9E1AD0 *>(__this + _offset);
String_t* _returnValue;
_returnValue = XRFaceMesh_ToString_m1997FC173A5BB7E5EFC51893E3BDD26D34F27897(_thisAdjusted, method);
return _returnValue;
}
// System.Boolean UnityEngine.XR.ARSubsystems.XRFaceMesh::Equals(UnityEngine.XR.ARSubsystems.XRFaceMesh)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XRFaceMesh_Equals_m2BB9E69AD22C8521466B981BA077007536189F0C (XRFaceMesh_t2ADC7E6069DCCCFB439A4A60DB9189338C9E1AD0 * __this, XRFaceMesh_t2ADC7E6069DCCCFB439A4A60DB9189338C9E1AD0 ___other0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NativeArray_1_Equals_m0A873528008D16BDD7E45156AEBC2DF063CB3995_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NativeArray_1_Equals_m4A9EECE699C4FF2E1E1C4F81D6C26DAA3B756A23_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NativeArray_1_Equals_mA564B751B7D08620960FFA67C404F57AEDDDBC79_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
// return
// m_Vertices.Equals(other.m_Vertices) &&
// m_Normals.Equals(other.m_Normals) &&
// m_Indices.Equals(other.m_Indices) &&
// m_UVs.Equals(other.m_UVs);
NativeArray_1_t2577BCA09CA248EFB78BD7FDA7F09D5C395DFF52 * L_0 = __this->get_address_of_m_Vertices_0();
XRFaceMesh_t2ADC7E6069DCCCFB439A4A60DB9189338C9E1AD0 L_1 = ___other0;
NativeArray_1_t2577BCA09CA248EFB78BD7FDA7F09D5C395DFF52 L_2 = L_1.get_m_Vertices_0();
bool L_3;
L_3 = NativeArray_1_Equals_m0A873528008D16BDD7E45156AEBC2DF063CB3995((NativeArray_1_t2577BCA09CA248EFB78BD7FDA7F09D5C395DFF52 *)L_0, L_2, /*hidden argument*/NativeArray_1_Equals_m0A873528008D16BDD7E45156AEBC2DF063CB3995_RuntimeMethod_var);
if (!L_3)
{
goto IL_004b;
}
}
{
NativeArray_1_t2577BCA09CA248EFB78BD7FDA7F09D5C395DFF52 * L_4 = __this->get_address_of_m_Normals_1();
XRFaceMesh_t2ADC7E6069DCCCFB439A4A60DB9189338C9E1AD0 L_5 = ___other0;
NativeArray_1_t2577BCA09CA248EFB78BD7FDA7F09D5C395DFF52 L_6 = L_5.get_m_Normals_1();
bool L_7;
L_7 = NativeArray_1_Equals_m0A873528008D16BDD7E45156AEBC2DF063CB3995((NativeArray_1_t2577BCA09CA248EFB78BD7FDA7F09D5C395DFF52 *)L_4, L_6, /*hidden argument*/NativeArray_1_Equals_m0A873528008D16BDD7E45156AEBC2DF063CB3995_RuntimeMethod_var);
if (!L_7)
{
goto IL_004b;
}
}
{
NativeArray_1_tD60079F06B473C85CF6C2BB4F2D203F38191AE99 * L_8 = __this->get_address_of_m_Indices_2();
XRFaceMesh_t2ADC7E6069DCCCFB439A4A60DB9189338C9E1AD0 L_9 = ___other0;
NativeArray_1_tD60079F06B473C85CF6C2BB4F2D203F38191AE99 L_10 = L_9.get_m_Indices_2();
bool L_11;
L_11 = NativeArray_1_Equals_m4A9EECE699C4FF2E1E1C4F81D6C26DAA3B756A23((NativeArray_1_tD60079F06B473C85CF6C2BB4F2D203F38191AE99 *)L_8, L_10, /*hidden argument*/NativeArray_1_Equals_m4A9EECE699C4FF2E1E1C4F81D6C26DAA3B756A23_RuntimeMethod_var);
if (!L_11)
{
goto IL_004b;
}
}
{
NativeArray_1_t431C85F30275831D1F5D458AB73DFCE050693BC0 * L_12 = __this->get_address_of_m_UVs_3();
XRFaceMesh_t2ADC7E6069DCCCFB439A4A60DB9189338C9E1AD0 L_13 = ___other0;
NativeArray_1_t431C85F30275831D1F5D458AB73DFCE050693BC0 L_14 = L_13.get_m_UVs_3();
bool L_15;
L_15 = NativeArray_1_Equals_mA564B751B7D08620960FFA67C404F57AEDDDBC79((NativeArray_1_t431C85F30275831D1F5D458AB73DFCE050693BC0 *)L_12, L_14, /*hidden argument*/NativeArray_1_Equals_mA564B751B7D08620960FFA67C404F57AEDDDBC79_RuntimeMethod_var);
return L_15;
}
IL_004b:
{
return (bool)0;
}
}
IL2CPP_EXTERN_C bool XRFaceMesh_Equals_m2BB9E69AD22C8521466B981BA077007536189F0C_AdjustorThunk (RuntimeObject * __this, XRFaceMesh_t2ADC7E6069DCCCFB439A4A60DB9189338C9E1AD0 ___other0, const RuntimeMethod* method)
{
XRFaceMesh_t2ADC7E6069DCCCFB439A4A60DB9189338C9E1AD0 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XRFaceMesh_t2ADC7E6069DCCCFB439A4A60DB9189338C9E1AD0 *>(__this + _offset);
bool _returnValue;
_returnValue = XRFaceMesh_Equals_m2BB9E69AD22C8521466B981BA077007536189F0C(_thisAdjusted, ___other0, 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
// System.Void UnityEngine.XR.ARSubsystems.XRFaceSubsystem::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRFaceSubsystem__ctor_m25AB673DD168E2B5CDF6C90C8CD022AB8AA11D2A (XRFaceSubsystem_tBC42015E8BB4ED0A5428E01DBB7BE769A6B140FD * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TrackingSubsystem_4__ctor_m28377E8388C9ACB84F4C762BAC6B2E3014F928B3_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
// public XRFaceSubsystem()
TrackingSubsystem_4__ctor_m28377E8388C9ACB84F4C762BAC6B2E3014F928B3(__this, /*hidden argument*/TrackingSubsystem_4__ctor_m28377E8388C9ACB84F4C762BAC6B2E3014F928B3_RuntimeMethod_var);
// }
return;
}
}
// System.Int32 UnityEngine.XR.ARSubsystems.XRFaceSubsystem::get_requestedMaximumFaceCount()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XRFaceSubsystem_get_requestedMaximumFaceCount_m00EDD38267D87867256888B1BCB623DDA97E8ACD (XRFaceSubsystem_tBC42015E8BB4ED0A5428E01DBB7BE769A6B140FD * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SubsystemWithProvider_3_get_provider_mE2E5F5FDEFCDECF51B39FB65EC6483A69504793C_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
// get => provider.requestedMaximumFaceCount;
Provider_t0133E0DB4F1A68EB3D4814F63B14456832E3EAE7 * L_0;
L_0 = SubsystemWithProvider_3_get_provider_mE2E5F5FDEFCDECF51B39FB65EC6483A69504793C_inline(__this, /*hidden argument*/SubsystemWithProvider_3_get_provider_mE2E5F5FDEFCDECF51B39FB65EC6483A69504793C_RuntimeMethod_var);
NullCheck(L_0);
int32_t L_1;
L_1 = VirtualFuncInvoker0< int32_t >::Invoke(11 /* System.Int32 UnityEngine.XR.ARSubsystems.XRFaceSubsystem/Provider::get_requestedMaximumFaceCount() */, L_0);
return L_1;
}
}
// System.Void UnityEngine.XR.ARSubsystems.XRFaceSubsystem::set_requestedMaximumFaceCount(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRFaceSubsystem_set_requestedMaximumFaceCount_mBA732F461FFA6C2B68CFECBBEB6E478F8ABB0DBB (XRFaceSubsystem_tBC42015E8BB4ED0A5428E01DBB7BE769A6B140FD * __this, int32_t ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SubsystemWithProvider_3_get_provider_mE2E5F5FDEFCDECF51B39FB65EC6483A69504793C_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
// if (value < 1)
int32_t L_0 = ___value0;
if ((((int32_t)L_0) >= ((int32_t)1)))
{
goto IL_0014;
}
}
{
// throw new ArgumentOutOfRangeException("value", "Must track at least one face. Call Stop() if you wish to stop face tracking.");
ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 * L_1 = (ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8_il2cpp_TypeInfo_var)));
ArgumentOutOfRangeException__ctor_mE43AFC74F5F3932913C023A04B24905E093C5005(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral46F273EF641E07D271D91E0DC24A4392582671F8)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral26548CA46A8BBAF979FA375FE01C8EDF043E08D2)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XRFaceSubsystem_set_requestedMaximumFaceCount_mBA732F461FFA6C2B68CFECBBEB6E478F8ABB0DBB_RuntimeMethod_var)));
}
IL_0014:
{
// provider.requestedMaximumFaceCount = value;
Provider_t0133E0DB4F1A68EB3D4814F63B14456832E3EAE7 * L_2;
L_2 = SubsystemWithProvider_3_get_provider_mE2E5F5FDEFCDECF51B39FB65EC6483A69504793C_inline(__this, /*hidden argument*/SubsystemWithProvider_3_get_provider_mE2E5F5FDEFCDECF51B39FB65EC6483A69504793C_RuntimeMethod_var);
int32_t L_3 = ___value0;
NullCheck(L_2);
VirtualActionInvoker1< int32_t >::Invoke(12 /* System.Void UnityEngine.XR.ARSubsystems.XRFaceSubsystem/Provider::set_requestedMaximumFaceCount(System.Int32) */, L_2, L_3);
// }
return;
}
}
// System.Int32 UnityEngine.XR.ARSubsystems.XRFaceSubsystem::get_currentMaximumFaceCount()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XRFaceSubsystem_get_currentMaximumFaceCount_m76FA130393463C6589D5CB03092661E7D05A86B9 (XRFaceSubsystem_tBC42015E8BB4ED0A5428E01DBB7BE769A6B140FD * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SubsystemWithProvider_3_get_provider_mE2E5F5FDEFCDECF51B39FB65EC6483A69504793C_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
// public int currentMaximumFaceCount => provider.currentMaximumFaceCount;
Provider_t0133E0DB4F1A68EB3D4814F63B14456832E3EAE7 * L_0;
L_0 = SubsystemWithProvider_3_get_provider_mE2E5F5FDEFCDECF51B39FB65EC6483A69504793C_inline(__this, /*hidden argument*/SubsystemWithProvider_3_get_provider_mE2E5F5FDEFCDECF51B39FB65EC6483A69504793C_RuntimeMethod_var);
NullCheck(L_0);
int32_t L_1;
L_1 = VirtualFuncInvoker0< int32_t >::Invoke(13 /* System.Int32 UnityEngine.XR.ARSubsystems.XRFaceSubsystem/Provider::get_currentMaximumFaceCount() */, L_0);
return L_1;
}
}
// System.Int32 UnityEngine.XR.ARSubsystems.XRFaceSubsystem::get_supportedFaceCount()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XRFaceSubsystem_get_supportedFaceCount_m2A8A061F62963829A197C0C11383E4225B42EFC0 (XRFaceSubsystem_tBC42015E8BB4ED0A5428E01DBB7BE769A6B140FD * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SubsystemWithProvider_3_get_provider_mE2E5F5FDEFCDECF51B39FB65EC6483A69504793C_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
// public int supportedFaceCount => provider.supportedFaceCount;
Provider_t0133E0DB4F1A68EB3D4814F63B14456832E3EAE7 * L_0;
L_0 = SubsystemWithProvider_3_get_provider_mE2E5F5FDEFCDECF51B39FB65EC6483A69504793C_inline(__this, /*hidden argument*/SubsystemWithProvider_3_get_provider_mE2E5F5FDEFCDECF51B39FB65EC6483A69504793C_RuntimeMethod_var);
NullCheck(L_0);
int32_t L_1;
L_1 = VirtualFuncInvoker0< int32_t >::Invoke(10 /* System.Int32 UnityEngine.XR.ARSubsystems.XRFaceSubsystem/Provider::get_supportedFaceCount() */, L_0);
return L_1;
}
}
// UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.XRFace> UnityEngine.XR.ARSubsystems.XRFaceSubsystem::GetChanges(Unity.Collections.Allocator)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TrackableChanges_1_t4155663F6D60090D5E988A2EB1E4A782792ADA63 XRFaceSubsystem_GetChanges_mD7AEFDD237DD174A519AF11E8363BCCFC4C48953 (XRFaceSubsystem_tBC42015E8BB4ED0A5428E01DBB7BE769A6B140FD * __this, int32_t ___allocator0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SubsystemWithProvider_3_get_provider_mE2E5F5FDEFCDECF51B39FB65EC6483A69504793C_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XRFace_tA970995ECE26D43D1CBB9058ABEC72B76D2DA599_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralCCC539F743E3F97210255E70596588570DD34D8E);
s_Il2CppMethodInitialized = true;
}
ScopedProfiler_t2D56ACC439533AC07E255065961834AAD04BE52E V_0;
memset((&V_0), 0, sizeof(V_0));
TrackableChanges_1_t4155663F6D60090D5E988A2EB1E4A782792ADA63 V_1;
memset((&V_1), 0, sizeof(V_1));
Exception_t * __last_unhandled_exception = 0;
il2cpp::utils::ExceptionSupportStack<int32_t, 1> __leave_targets;
{
// using (new ScopedProfiler("GetChanges"))
ScopedProfiler__ctor_m3426FC301C7541283DA4382EFAFDBDFD08358DAD((ScopedProfiler_t2D56ACC439533AC07E255065961834AAD04BE52E *)(&V_0), _stringLiteralCCC539F743E3F97210255E70596588570DD34D8E, /*hidden argument*/NULL);
}
IL_000c:
try
{// begin try (depth: 1)
// var changes = provider.GetChanges(XRFace.defaultValue, allocator);
Provider_t0133E0DB4F1A68EB3D4814F63B14456832E3EAE7 * L_0;
L_0 = SubsystemWithProvider_3_get_provider_mE2E5F5FDEFCDECF51B39FB65EC6483A69504793C_inline(__this, /*hidden argument*/SubsystemWithProvider_3_get_provider_mE2E5F5FDEFCDECF51B39FB65EC6483A69504793C_RuntimeMethod_var);
IL2CPP_RUNTIME_CLASS_INIT(XRFace_tA970995ECE26D43D1CBB9058ABEC72B76D2DA599_il2cpp_TypeInfo_var);
XRFace_tA970995ECE26D43D1CBB9058ABEC72B76D2DA599 L_1;
L_1 = XRFace_get_defaultValue_m747D549873462D18EA28AA56D1A0870F6DE4F2D4_inline(/*hidden argument*/NULL);
int32_t L_2 = ___allocator0;
NullCheck(L_0);
TrackableChanges_1_t4155663F6D60090D5E988A2EB1E4A782792ADA63 L_3;
L_3 = VirtualFuncInvoker2< TrackableChanges_1_t4155663F6D60090D5E988A2EB1E4A782792ADA63 , XRFace_tA970995ECE26D43D1CBB9058ABEC72B76D2DA599 , int32_t >::Invoke(9 /* UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.XRFace> UnityEngine.XR.ARSubsystems.XRFaceSubsystem/Provider::GetChanges(UnityEngine.XR.ARSubsystems.XRFace,Unity.Collections.Allocator) */, L_0, L_1, L_2);
// return changes;
V_1 = L_3;
IL2CPP_LEAVE(0x2E, FINALLY_0020);
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_0020;
}
FINALLY_0020:
{// begin finally (depth: 1)
ScopedProfiler_Dispose_mB6720C4212A51CBC86104AF46E081B1CB410BC1A((ScopedProfiler_t2D56ACC439533AC07E255065961834AAD04BE52E *)(&V_0), /*hidden argument*/NULL);
IL2CPP_END_FINALLY(32)
}// end finally (depth: 1)
IL2CPP_CLEANUP(32)
{
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
IL2CPP_JUMP_TBL(0x2E, IL_002e)
}
IL_002e:
{
// }
TrackableChanges_1_t4155663F6D60090D5E988A2EB1E4A782792ADA63 L_4 = V_1;
return L_4;
}
}
// System.Void UnityEngine.XR.ARSubsystems.XRFaceSubsystem::GetFaceMesh(UnityEngine.XR.ARSubsystems.TrackableId,Unity.Collections.Allocator,UnityEngine.XR.ARSubsystems.XRFaceMesh&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRFaceSubsystem_GetFaceMesh_m9D239EC1EE36EFC8CC755F469A2470FF5C856BD8 (XRFaceSubsystem_tBC42015E8BB4ED0A5428E01DBB7BE769A6B140FD * __this, TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B ___faceId0, int32_t ___allocator1, XRFaceMesh_t2ADC7E6069DCCCFB439A4A60DB9189338C9E1AD0 * ___faceMesh2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SubsystemWithProvider_3_get_provider_mE2E5F5FDEFCDECF51B39FB65EC6483A69504793C_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralE30658D0ADE6E62208BFA543EF45EB5C784EE9B9);
s_Il2CppMethodInitialized = true;
}
ScopedProfiler_t2D56ACC439533AC07E255065961834AAD04BE52E V_0;
memset((&V_0), 0, sizeof(V_0));
Exception_t * __last_unhandled_exception = 0;
il2cpp::utils::ExceptionSupportStack<int32_t, 1> __leave_targets;
{
// if (allocator == Allocator.Temp)
int32_t L_0 = ___allocator1;
if ((!(((uint32_t)L_0) == ((uint32_t)2))))
{
goto IL_000f;
}
}
{
// throw new InvalidOperationException("Allocator.Temp is not supported. Use Allocator.TempJob if you wish to use a temporary allocator.");
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_1 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral0040832A71810E092F962A5F9A66A6A1866CC7D1)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XRFaceSubsystem_GetFaceMesh_m9D239EC1EE36EFC8CC755F469A2470FF5C856BD8_RuntimeMethod_var)));
}
IL_000f:
{
// if (allocator == Allocator.None)
int32_t L_2 = ___allocator1;
if ((!(((uint32_t)L_2) == ((uint32_t)1))))
{
goto IL_001e;
}
}
{
// throw new InvalidOperationException("Allocator.None is not a valid allocator.");
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_3 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_3, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral1889AF12D766B3A68EB9EE79FE4ECA560C23A4F5)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XRFaceSubsystem_GetFaceMesh_m9D239EC1EE36EFC8CC755F469A2470FF5C856BD8_RuntimeMethod_var)));
}
IL_001e:
{
// using (new ScopedProfiler("GetFaceMesh"))
ScopedProfiler__ctor_m3426FC301C7541283DA4382EFAFDBDFD08358DAD((ScopedProfiler_t2D56ACC439533AC07E255065961834AAD04BE52E *)(&V_0), _stringLiteralE30658D0ADE6E62208BFA543EF45EB5C784EE9B9, /*hidden argument*/NULL);
}
IL_002a:
try
{// begin try (depth: 1)
// provider.GetFaceMesh(faceId, allocator, ref faceMesh);
Provider_t0133E0DB4F1A68EB3D4814F63B14456832E3EAE7 * L_4;
L_4 = SubsystemWithProvider_3_get_provider_mE2E5F5FDEFCDECF51B39FB65EC6483A69504793C_inline(__this, /*hidden argument*/SubsystemWithProvider_3_get_provider_mE2E5F5FDEFCDECF51B39FB65EC6483A69504793C_RuntimeMethod_var);
TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B L_5 = ___faceId0;
int32_t L_6 = ___allocator1;
XRFaceMesh_t2ADC7E6069DCCCFB439A4A60DB9189338C9E1AD0 * L_7 = ___faceMesh2;
NullCheck(L_4);
VirtualActionInvoker3< TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B , int32_t, XRFaceMesh_t2ADC7E6069DCCCFB439A4A60DB9189338C9E1AD0 * >::Invoke(8 /* System.Void UnityEngine.XR.ARSubsystems.XRFaceSubsystem/Provider::GetFaceMesh(UnityEngine.XR.ARSubsystems.TrackableId,Unity.Collections.Allocator,UnityEngine.XR.ARSubsystems.XRFaceMesh&) */, L_4, L_5, L_6, (XRFaceMesh_t2ADC7E6069DCCCFB439A4A60DB9189338C9E1AD0 *)L_7);
IL2CPP_LEAVE(0x48, FINALLY_003a);
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_003a;
}
FINALLY_003a:
{// begin finally (depth: 1)
ScopedProfiler_Dispose_mB6720C4212A51CBC86104AF46E081B1CB410BC1A((ScopedProfiler_t2D56ACC439533AC07E255065961834AAD04BE52E *)(&V_0), /*hidden argument*/NULL);
IL2CPP_END_FINALLY(58)
}// end finally (depth: 1)
IL2CPP_CLEANUP(58)
{
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
IL2CPP_JUMP_TBL(0x48, IL_0048)
}
IL_0048:
{
// }
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
// System.Void UnityEngine.XR.ARSubsystems.XRFaceSubsystemDescriptor::.ctor(UnityEngine.XR.ARSubsystems.FaceSubsystemParams)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRFaceSubsystemDescriptor__ctor_m1B6850C5017E4E5709D0D0A44B4605429C21DB5A (XRFaceSubsystemDescriptor_t129999D2BF40B1016A8C70A0FDE9763C21DCD618 * __this, FaceSubsystemParams_t2FC64133455298391F1A1DDC61B151E688301B09 ___descriptorParams0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SubsystemDescriptorWithProvider_2__ctor_m2EC9A500A904A603347A1D66CB451F04DA0AA3A2_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
// XRFaceSubsystemDescriptor(FaceSubsystemParams descriptorParams)
SubsystemDescriptorWithProvider_2__ctor_m2EC9A500A904A603347A1D66CB451F04DA0AA3A2(__this, /*hidden argument*/SubsystemDescriptorWithProvider_2__ctor_m2EC9A500A904A603347A1D66CB451F04DA0AA3A2_RuntimeMethod_var);
// id = descriptorParams.id;
String_t* L_0;
L_0 = FaceSubsystemParams_get_id_mE2ED204CE1D85C4ADCFB4436EACF3BF8B6893DEB_inline((FaceSubsystemParams_t2FC64133455298391F1A1DDC61B151E688301B09 *)(&___descriptorParams0), /*hidden argument*/NULL);
SubsystemDescriptorWithProvider_set_id_mEC6863CDB21597618394D2ED4182A9ED3ACBF220_inline(__this, L_0, /*hidden argument*/NULL);
// providerType = descriptorParams.providerType;
Type_t * L_1;
L_1 = FaceSubsystemParams_get_providerType_m8984786E19DCC5F9B87060A9BC29F25A4A4A4B3A_inline((FaceSubsystemParams_t2FC64133455298391F1A1DDC61B151E688301B09 *)(&___descriptorParams0), /*hidden argument*/NULL);
SubsystemDescriptorWithProvider_set_providerType_m672B1F3CC7A12E8569D801F7C79538753C0D9C2D_inline(__this, L_1, /*hidden argument*/NULL);
// subsystemTypeOverride = descriptorParams.subsystemTypeOverride;
Type_t * L_2;
L_2 = FaceSubsystemParams_get_subsystemTypeOverride_m1B3FD6EA4014688FC34533C9729176AA668C8321_inline((FaceSubsystemParams_t2FC64133455298391F1A1DDC61B151E688301B09 *)(&___descriptorParams0), /*hidden argument*/NULL);
SubsystemDescriptorWithProvider_set_subsystemTypeOverride_mA453100A7A8FAB35FBE7154E63B5A17D518F41B6_inline(__this, L_2, /*hidden argument*/NULL);
// supportsFacePose = descriptorParams.supportsFacePose;
bool L_3;
L_3 = FaceSubsystemParams_get_supportsFacePose_m59079DE37AD698A2132CFEA0EDA5FD4585FC6161((FaceSubsystemParams_t2FC64133455298391F1A1DDC61B151E688301B09 *)(&___descriptorParams0), /*hidden argument*/NULL);
__this->set_U3CsupportsFacePoseU3Ek__BackingField_3(L_3);
// supportsFaceMeshVerticesAndIndices = descriptorParams.supportsFaceMeshVerticesAndIndices;
bool L_4;
L_4 = FaceSubsystemParams_get_supportsFaceMeshVerticesAndIndices_mCC93952A6D71E81739E596CEB86A242CD6C9A8AF((FaceSubsystemParams_t2FC64133455298391F1A1DDC61B151E688301B09 *)(&___descriptorParams0), /*hidden argument*/NULL);
__this->set_U3CsupportsFaceMeshVerticesAndIndicesU3Ek__BackingField_4(L_4);
// supportsFaceMeshUVs = descriptorParams.supportsFaceMeshUVs;
bool L_5;
L_5 = FaceSubsystemParams_get_supportsFaceMeshUVs_m86C9DD63849FC891FE62F75B87E7BA894B506BBC((FaceSubsystemParams_t2FC64133455298391F1A1DDC61B151E688301B09 *)(&___descriptorParams0), /*hidden argument*/NULL);
__this->set_U3CsupportsFaceMeshUVsU3Ek__BackingField_5(L_5);
// supportsFaceMeshNormals = descriptorParams.supportsFaceMeshNormals;
bool L_6;
L_6 = FaceSubsystemParams_get_supportsFaceMeshNormals_mB5897C36478E2B76A4491DA2C70C89B54AAB92DC((FaceSubsystemParams_t2FC64133455298391F1A1DDC61B151E688301B09 *)(&___descriptorParams0), /*hidden argument*/NULL);
__this->set_U3CsupportsFaceMeshNormalsU3Ek__BackingField_6(L_6);
// supportsEyeTracking = descriptorParams.supportsEyeTracking;
bool L_7;
L_7 = FaceSubsystemParams_get_supportsEyeTracking_mC02E124E7C88BBE8BE1D6ABBBFD3C2C68DF2109F((FaceSubsystemParams_t2FC64133455298391F1A1DDC61B151E688301B09 *)(&___descriptorParams0), /*hidden argument*/NULL);
__this->set_U3CsupportsEyeTrackingU3Ek__BackingField_7(L_7);
// }
return;
}
}
// System.Boolean UnityEngine.XR.ARSubsystems.XRFaceSubsystemDescriptor::get_supportsEyeTracking()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XRFaceSubsystemDescriptor_get_supportsEyeTracking_m509A2CDA04DA198E368A777CABF42B419D30017F (XRFaceSubsystemDescriptor_t129999D2BF40B1016A8C70A0FDE9763C21DCD618 * __this, const RuntimeMethod* method)
{
{
// public bool supportsEyeTracking { get; }
bool L_0 = __this->get_U3CsupportsEyeTrackingU3Ek__BackingField_7();
return L_0;
}
}
// System.Void UnityEngine.XR.ARSubsystems.XRFaceSubsystemDescriptor::Create(UnityEngine.XR.ARSubsystems.FaceSubsystemParams)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRFaceSubsystemDescriptor_Create_mF8B2B433C3625242D3AEACDE1CD7F091BE8775BA (FaceSubsystemParams_t2FC64133455298391F1A1DDC61B151E688301B09 ___descriptorParams0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SubsystemDescriptorStore_tE5D99C3159868DE6506269CB6B830621F8BC31A6_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XRFaceSubsystemDescriptor_t129999D2BF40B1016A8C70A0FDE9763C21DCD618_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
// var descriptor = new XRFaceSubsystemDescriptor(descriptorParams);
FaceSubsystemParams_t2FC64133455298391F1A1DDC61B151E688301B09 L_0 = ___descriptorParams0;
XRFaceSubsystemDescriptor_t129999D2BF40B1016A8C70A0FDE9763C21DCD618 * L_1 = (XRFaceSubsystemDescriptor_t129999D2BF40B1016A8C70A0FDE9763C21DCD618 *)il2cpp_codegen_object_new(XRFaceSubsystemDescriptor_t129999D2BF40B1016A8C70A0FDE9763C21DCD618_il2cpp_TypeInfo_var);
XRFaceSubsystemDescriptor__ctor_m1B6850C5017E4E5709D0D0A44B4605429C21DB5A(L_1, L_0, /*hidden argument*/NULL);
// SubsystemDescriptorStore.RegisterDescriptor(descriptor);
IL2CPP_RUNTIME_CLASS_INIT(SubsystemDescriptorStore_tE5D99C3159868DE6506269CB6B830621F8BC31A6_il2cpp_TypeInfo_var);
SubsystemDescriptorStore_RegisterDescriptor_m5586866BB233EF26B98640851816DD1764657688(L_1, /*hidden argument*/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
// UnityEngine.XR.ARSubsystems.TrackableId UnityEngine.XR.ARSubsystems.XRHumanBody::get_trackableId()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B XRHumanBody_get_trackableId_m1132E7F157E2F1649C9849D0CCCFCCAE12659035 (XRHumanBody_t1AA9DC3BEBCF86A64BE2B83452AC5704AD08C13B * __this, const RuntimeMethod* method)
{
{
// get => m_TrackableId;
TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B L_0 = __this->get_m_TrackableId_0();
return L_0;
}
}
IL2CPP_EXTERN_C TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B XRHumanBody_get_trackableId_m1132E7F157E2F1649C9849D0CCCFCCAE12659035_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
XRHumanBody_t1AA9DC3BEBCF86A64BE2B83452AC5704AD08C13B * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XRHumanBody_t1AA9DC3BEBCF86A64BE2B83452AC5704AD08C13B *>(__this + _offset);
TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B _returnValue;
_returnValue = XRHumanBody_get_trackableId_m1132E7F157E2F1649C9849D0CCCFCCAE12659035_inline(_thisAdjusted, method);
return _returnValue;
}
// System.Void UnityEngine.XR.ARSubsystems.XRHumanBody::set_trackableId(UnityEngine.XR.ARSubsystems.TrackableId)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRHumanBody_set_trackableId_mD3C8385C017B211CB843FBE09F865FCFF6736AD5 (XRHumanBody_t1AA9DC3BEBCF86A64BE2B83452AC5704AD08C13B * __this, TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B ___value0, const RuntimeMethod* method)
{
{
// private set => m_TrackableId = value;
TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B L_0 = ___value0;
__this->set_m_TrackableId_0(L_0);
return;
}
}
IL2CPP_EXTERN_C void XRHumanBody_set_trackableId_mD3C8385C017B211CB843FBE09F865FCFF6736AD5_AdjustorThunk (RuntimeObject * __this, TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B ___value0, const RuntimeMethod* method)
{
XRHumanBody_t1AA9DC3BEBCF86A64BE2B83452AC5704AD08C13B * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XRHumanBody_t1AA9DC3BEBCF86A64BE2B83452AC5704AD08C13B *>(__this + _offset);
XRHumanBody_set_trackableId_mD3C8385C017B211CB843FBE09F865FCFF6736AD5_inline(_thisAdjusted, ___value0, method);
}
// UnityEngine.Pose UnityEngine.XR.ARSubsystems.XRHumanBody::get_pose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A XRHumanBody_get_pose_m5F377842C281F643E6205DF173FAD26A71FD85CB (XRHumanBody_t1AA9DC3BEBCF86A64BE2B83452AC5704AD08C13B * __this, const RuntimeMethod* method)
{
{
// get => m_Pose;
Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A L_0 = __this->get_m_Pose_1();
return L_0;
}
}
IL2CPP_EXTERN_C Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A XRHumanBody_get_pose_m5F377842C281F643E6205DF173FAD26A71FD85CB_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
XRHumanBody_t1AA9DC3BEBCF86A64BE2B83452AC5704AD08C13B * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XRHumanBody_t1AA9DC3BEBCF86A64BE2B83452AC5704AD08C13B *>(__this + _offset);
Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A _returnValue;
_returnValue = XRHumanBody_get_pose_m5F377842C281F643E6205DF173FAD26A71FD85CB_inline(_thisAdjusted, method);
return _returnValue;
}
// System.Void UnityEngine.XR.ARSubsystems.XRHumanBody::set_pose(UnityEngine.Pose)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRHumanBody_set_pose_m041B85CE78A0EEF68E9D04C79D5E896481521F13 (XRHumanBody_t1AA9DC3BEBCF86A64BE2B83452AC5704AD08C13B * __this, Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A ___value0, const RuntimeMethod* method)
{
{
// private set => m_Pose = value;
Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A L_0 = ___value0;
__this->set_m_Pose_1(L_0);
return;
}
}
IL2CPP_EXTERN_C void XRHumanBody_set_pose_m041B85CE78A0EEF68E9D04C79D5E896481521F13_AdjustorThunk (RuntimeObject * __this, Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A ___value0, const RuntimeMethod* method)
{
XRHumanBody_t1AA9DC3BEBCF86A64BE2B83452AC5704AD08C13B * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XRHumanBody_t1AA9DC3BEBCF86A64BE2B83452AC5704AD08C13B *>(__this + _offset);
XRHumanBody_set_pose_m041B85CE78A0EEF68E9D04C79D5E896481521F13_inline(_thisAdjusted, ___value0, method);
}
// System.Single UnityEngine.XR.ARSubsystems.XRHumanBody::get_estimatedHeightScaleFactor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float XRHumanBody_get_estimatedHeightScaleFactor_mCCF772B1264F243207D413D87F9DEB51BAA66625 (XRHumanBody_t1AA9DC3BEBCF86A64BE2B83452AC5704AD08C13B * __this, const RuntimeMethod* method)
{
{
// get => m_EstimatedHeightScaleFactor;
float L_0 = __this->get_m_EstimatedHeightScaleFactor_2();
return L_0;
}
}
IL2CPP_EXTERN_C float XRHumanBody_get_estimatedHeightScaleFactor_mCCF772B1264F243207D413D87F9DEB51BAA66625_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
XRHumanBody_t1AA9DC3BEBCF86A64BE2B83452AC5704AD08C13B * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XRHumanBody_t1AA9DC3BEBCF86A64BE2B83452AC5704AD08C13B *>(__this + _offset);
float _returnValue;
_returnValue = XRHumanBody_get_estimatedHeightScaleFactor_mCCF772B1264F243207D413D87F9DEB51BAA66625_inline(_thisAdjusted, method);
return _returnValue;
}
// System.Void UnityEngine.XR.ARSubsystems.XRHumanBody::set_estimatedHeightScaleFactor(System.Single)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRHumanBody_set_estimatedHeightScaleFactor_m08C6119D250F4EC14458EF86245F41DE6480928B (XRHumanBody_t1AA9DC3BEBCF86A64BE2B83452AC5704AD08C13B * __this, float ___value0, const RuntimeMethod* method)
{
{
// private set => m_EstimatedHeightScaleFactor = value;
float L_0 = ___value0;
__this->set_m_EstimatedHeightScaleFactor_2(L_0);
return;
}
}
IL2CPP_EXTERN_C void XRHumanBody_set_estimatedHeightScaleFactor_m08C6119D250F4EC14458EF86245F41DE6480928B_AdjustorThunk (RuntimeObject * __this, float ___value0, const RuntimeMethod* method)
{
XRHumanBody_t1AA9DC3BEBCF86A64BE2B83452AC5704AD08C13B * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XRHumanBody_t1AA9DC3BEBCF86A64BE2B83452AC5704AD08C13B *>(__this + _offset);
XRHumanBody_set_estimatedHeightScaleFactor_m08C6119D250F4EC14458EF86245F41DE6480928B_inline(_thisAdjusted, ___value0, method);
}
// UnityEngine.XR.ARSubsystems.TrackingState UnityEngine.XR.ARSubsystems.XRHumanBody::get_trackingState()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XRHumanBody_get_trackingState_m1F6F709DD208442C6E3B253BF1E6F5448B0D7913 (XRHumanBody_t1AA9DC3BEBCF86A64BE2B83452AC5704AD08C13B * __this, const RuntimeMethod* method)
{
{
// get => m_TrackingState;
int32_t L_0 = __this->get_m_TrackingState_3();
return L_0;
}
}
IL2CPP_EXTERN_C int32_t XRHumanBody_get_trackingState_m1F6F709DD208442C6E3B253BF1E6F5448B0D7913_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
XRHumanBody_t1AA9DC3BEBCF86A64BE2B83452AC5704AD08C13B * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XRHumanBody_t1AA9DC3BEBCF86A64BE2B83452AC5704AD08C13B *>(__this + _offset);
int32_t _returnValue;
_returnValue = XRHumanBody_get_trackingState_m1F6F709DD208442C6E3B253BF1E6F5448B0D7913_inline(_thisAdjusted, method);
return _returnValue;
}
// UnityEngine.XR.ARSubsystems.XRHumanBody UnityEngine.XR.ARSubsystems.XRHumanBody::get_defaultValue()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XRHumanBody_t1AA9DC3BEBCF86A64BE2B83452AC5704AD08C13B XRHumanBody_get_defaultValue_m0A3A0C5BAFB5C20A12014597FA6690AE6470ACA4 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XRHumanBody_t1AA9DC3BEBCF86A64BE2B83452AC5704AD08C13B_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
// public static XRHumanBody defaultValue => s_Default;
IL2CPP_RUNTIME_CLASS_INIT(XRHumanBody_t1AA9DC3BEBCF86A64BE2B83452AC5704AD08C13B_il2cpp_TypeInfo_var);
XRHumanBody_t1AA9DC3BEBCF86A64BE2B83452AC5704AD08C13B L_0 = ((XRHumanBody_t1AA9DC3BEBCF86A64BE2B83452AC5704AD08C13B_StaticFields*)il2cpp_codegen_static_fields_for(XRHumanBody_t1AA9DC3BEBCF86A64BE2B83452AC5704AD08C13B_il2cpp_TypeInfo_var))->get_s_Default_5();
return L_0;
}
}
// System.Boolean UnityEngine.XR.ARSubsystems.XRHumanBody::Equals(UnityEngine.XR.ARSubsystems.XRHumanBody)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XRHumanBody_Equals_mF1FC1064B3CE595A1D798D2BC6A0A4441E06FEA0 (XRHumanBody_t1AA9DC3BEBCF86A64BE2B83452AC5704AD08C13B * __this, XRHumanBody_t1AA9DC3BEBCF86A64BE2B83452AC5704AD08C13B ___other0, const RuntimeMethod* method)
{
{
// public bool Equals(XRHumanBody other) => m_TrackableId.Equals(other.m_TrackableId);
TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B * L_0 = __this->get_address_of_m_TrackableId_0();
XRHumanBody_t1AA9DC3BEBCF86A64BE2B83452AC5704AD08C13B L_1 = ___other0;
TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B L_2 = L_1.get_m_TrackableId_0();
bool L_3;
L_3 = TrackableId_Equals_m1DF35616359175E3D66DE18250E8CDA1E6462B06((TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B *)L_0, L_2, /*hidden argument*/NULL);
return L_3;
}
}
IL2CPP_EXTERN_C bool XRHumanBody_Equals_mF1FC1064B3CE595A1D798D2BC6A0A4441E06FEA0_AdjustorThunk (RuntimeObject * __this, XRHumanBody_t1AA9DC3BEBCF86A64BE2B83452AC5704AD08C13B ___other0, const RuntimeMethod* method)
{
XRHumanBody_t1AA9DC3BEBCF86A64BE2B83452AC5704AD08C13B * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XRHumanBody_t1AA9DC3BEBCF86A64BE2B83452AC5704AD08C13B *>(__this + _offset);
bool _returnValue;
_returnValue = XRHumanBody_Equals_mF1FC1064B3CE595A1D798D2BC6A0A4441E06FEA0(_thisAdjusted, ___other0, method);
return _returnValue;
}
// System.Boolean UnityEngine.XR.ARSubsystems.XRHumanBody::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XRHumanBody_Equals_mEF4C0F409A971526C9B7E8098F41FCF1B53B7F41 (XRHumanBody_t1AA9DC3BEBCF86A64BE2B83452AC5704AD08C13B * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XRHumanBody_t1AA9DC3BEBCF86A64BE2B83452AC5704AD08C13B_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
// public override bool Equals(System.Object obj) => ((obj is XRHumanBody) && Equals((XRHumanBody)obj));
RuntimeObject * L_0 = ___obj0;
if (!((RuntimeObject *)IsInstSealed((RuntimeObject*)L_0, XRHumanBody_t1AA9DC3BEBCF86A64BE2B83452AC5704AD08C13B_il2cpp_TypeInfo_var)))
{
goto IL_0015;
}
}
{
RuntimeObject * L_1 = ___obj0;
bool L_2;
L_2 = XRHumanBody_Equals_mF1FC1064B3CE595A1D798D2BC6A0A4441E06FEA0((XRHumanBody_t1AA9DC3BEBCF86A64BE2B83452AC5704AD08C13B *)__this, ((*(XRHumanBody_t1AA9DC3BEBCF86A64BE2B83452AC5704AD08C13B *)((XRHumanBody_t1AA9DC3BEBCF86A64BE2B83452AC5704AD08C13B *)UnBox(L_1, XRHumanBody_t1AA9DC3BEBCF86A64BE2B83452AC5704AD08C13B_il2cpp_TypeInfo_var)))), /*hidden argument*/NULL);
return L_2;
}
IL_0015:
{
return (bool)0;
}
}
IL2CPP_EXTERN_C bool XRHumanBody_Equals_mEF4C0F409A971526C9B7E8098F41FCF1B53B7F41_AdjustorThunk (RuntimeObject * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
XRHumanBody_t1AA9DC3BEBCF86A64BE2B83452AC5704AD08C13B * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XRHumanBody_t1AA9DC3BEBCF86A64BE2B83452AC5704AD08C13B *>(__this + _offset);
bool _returnValue;
_returnValue = XRHumanBody_Equals_mEF4C0F409A971526C9B7E8098F41FCF1B53B7F41(_thisAdjusted, ___obj0, method);
return _returnValue;
}
// System.Int32 UnityEngine.XR.ARSubsystems.XRHumanBody::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XRHumanBody_GetHashCode_m6FBB44640B5771F3C0F07996B0391578ADA3ED29 (XRHumanBody_t1AA9DC3BEBCF86A64BE2B83452AC5704AD08C13B * __this, const RuntimeMethod* method)
{
{
// public override int GetHashCode() => m_TrackableId.GetHashCode();
TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B * L_0 = __this->get_address_of_m_TrackableId_0();
int32_t L_1;
L_1 = TrackableId_GetHashCode_mFD297FC6DB40FB5B28C6E9B7A2CF2785D75C4E86((TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B *)L_0, /*hidden argument*/NULL);
return L_1;
}
}
IL2CPP_EXTERN_C int32_t XRHumanBody_GetHashCode_m6FBB44640B5771F3C0F07996B0391578ADA3ED29_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
XRHumanBody_t1AA9DC3BEBCF86A64BE2B83452AC5704AD08C13B * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XRHumanBody_t1AA9DC3BEBCF86A64BE2B83452AC5704AD08C13B *>(__this + _offset);
int32_t _returnValue;
_returnValue = XRHumanBody_GetHashCode_m6FBB44640B5771F3C0F07996B0391578ADA3ED29(_thisAdjusted, method);
return _returnValue;
}
// System.Void UnityEngine.XR.ARSubsystems.XRHumanBody::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRHumanBody__cctor_m4FFC7049EBDF2DF56F6B5A76B62B50467F8919BC (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XRHumanBody_t1AA9DC3BEBCF86A64BE2B83452AC5704AD08C13B_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
XRHumanBody_t1AA9DC3BEBCF86A64BE2B83452AC5704AD08C13B V_0;
memset((&V_0), 0, sizeof(V_0));
{
// static readonly XRHumanBody s_Default = new XRHumanBody
// {
// trackableId = TrackableId.invalidId,
// pose = Pose.identity,
// estimatedHeightScaleFactor = 1.0f,
// };
il2cpp_codegen_initobj((&V_0), sizeof(XRHumanBody_t1AA9DC3BEBCF86A64BE2B83452AC5704AD08C13B ));
IL2CPP_RUNTIME_CLASS_INIT(TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B_il2cpp_TypeInfo_var);
TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B L_0;
L_0 = TrackableId_get_invalidId_m06B698EFFA7748E185299C72B5CEC1AA5B221F85_inline(/*hidden argument*/NULL);
XRHumanBody_set_trackableId_mD3C8385C017B211CB843FBE09F865FCFF6736AD5_inline((XRHumanBody_t1AA9DC3BEBCF86A64BE2B83452AC5704AD08C13B *)(&V_0), L_0, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A_il2cpp_TypeInfo_var);
Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A L_1;
L_1 = Pose_get_identity_m334B16AC3024785914BCC5A2B949750A010878BF(/*hidden argument*/NULL);
XRHumanBody_set_pose_m041B85CE78A0EEF68E9D04C79D5E896481521F13_inline((XRHumanBody_t1AA9DC3BEBCF86A64BE2B83452AC5704AD08C13B *)(&V_0), L_1, /*hidden argument*/NULL);
XRHumanBody_set_estimatedHeightScaleFactor_m08C6119D250F4EC14458EF86245F41DE6480928B_inline((XRHumanBody_t1AA9DC3BEBCF86A64BE2B83452AC5704AD08C13B *)(&V_0), (1.0f), /*hidden argument*/NULL);
XRHumanBody_t1AA9DC3BEBCF86A64BE2B83452AC5704AD08C13B L_2 = V_0;
((XRHumanBody_t1AA9DC3BEBCF86A64BE2B83452AC5704AD08C13B_StaticFields*)il2cpp_codegen_static_fields_for(XRHumanBody_t1AA9DC3BEBCF86A64BE2B83452AC5704AD08C13B_il2cpp_TypeInfo_var))->set_s_Default_5(L_2);
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
// System.Boolean UnityEngine.XR.ARSubsystems.XRHumanBodyJoint::get_tracked()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XRHumanBodyJoint_get_tracked_mFE794D3F10CC9FE8B3BBA7EA3DAA2EAD43265030 (XRHumanBodyJoint_t80D5022A816E4F24C92A9EABD645794FC0B5E2E4 * __this, const RuntimeMethod* method)
{
{
// public bool tracked => (m_Tracked != 0);
int32_t L_0 = __this->get_m_Tracked_6();
return (bool)((!(((uint32_t)L_0) <= ((uint32_t)0)))? 1 : 0);
}
}
IL2CPP_EXTERN_C bool XRHumanBodyJoint_get_tracked_mFE794D3F10CC9FE8B3BBA7EA3DAA2EAD43265030_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
XRHumanBodyJoint_t80D5022A816E4F24C92A9EABD645794FC0B5E2E4 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XRHumanBodyJoint_t80D5022A816E4F24C92A9EABD645794FC0B5E2E4 *>(__this + _offset);
bool _returnValue;
_returnValue = XRHumanBodyJoint_get_tracked_mFE794D3F10CC9FE8B3BBA7EA3DAA2EAD43265030(_thisAdjusted, method);
return _returnValue;
}
// System.Boolean UnityEngine.XR.ARSubsystems.XRHumanBodyJoint::Equals(UnityEngine.XR.ARSubsystems.XRHumanBodyJoint)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XRHumanBodyJoint_Equals_mF61C132B282799A4A8591EEDFD1C93A5ACB5D690 (XRHumanBodyJoint_t80D5022A816E4F24C92A9EABD645794FC0B5E2E4 * __this, XRHumanBodyJoint_t80D5022A816E4F24C92A9EABD645794FC0B5E2E4 ___other0, const RuntimeMethod* method)
{
{
// return (m_Index.Equals(other.m_Index) && m_ParentIndex.Equals(other.m_ParentIndex)
// && m_LocalScale.Equals(other.m_LocalScale) && m_LocalPose.Equals(other.m_LocalPose)
// && m_AnchorScale.Equals(other.m_AnchorScale) && m_AnchorPose.Equals(other.m_AnchorPose)
// && m_Tracked.Equals(other.m_Tracked));
int32_t* L_0 = __this->get_address_of_m_Index_0();
XRHumanBodyJoint_t80D5022A816E4F24C92A9EABD645794FC0B5E2E4 L_1 = ___other0;
int32_t L_2 = L_1.get_m_Index_0();
bool L_3;
L_3 = Int32_Equals_mA73E9B3A01B9B9151C262C1E1A56C6AB4891A5E4((int32_t*)L_0, L_2, /*hidden argument*/NULL);
if (!L_3)
{
goto IL_0084;
}
}
{
int32_t* L_4 = __this->get_address_of_m_ParentIndex_1();
XRHumanBodyJoint_t80D5022A816E4F24C92A9EABD645794FC0B5E2E4 L_5 = ___other0;
int32_t L_6 = L_5.get_m_ParentIndex_1();
bool L_7;
L_7 = Int32_Equals_mA73E9B3A01B9B9151C262C1E1A56C6AB4891A5E4((int32_t*)L_4, L_6, /*hidden argument*/NULL);
if (!L_7)
{
goto IL_0084;
}
}
{
Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * L_8 = __this->get_address_of_m_LocalScale_2();
XRHumanBodyJoint_t80D5022A816E4F24C92A9EABD645794FC0B5E2E4 L_9 = ___other0;
Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_10 = L_9.get_m_LocalScale_2();
bool L_11;
L_11 = Vector3_Equals_mA92800CD98ED6A42DD7C55C5DB22DAB4DEAA6397((Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E *)L_8, L_10, /*hidden argument*/NULL);
if (!L_11)
{
goto IL_0084;
}
}
{
Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A * L_12 = __this->get_address_of_m_LocalPose_3();
XRHumanBodyJoint_t80D5022A816E4F24C92A9EABD645794FC0B5E2E4 L_13 = ___other0;
Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A L_14 = L_13.get_m_LocalPose_3();
bool L_15;
L_15 = Pose_Equals_mFAE0041090F2032B8FCE63A0F289DD206134BF15((Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A *)L_12, L_14, /*hidden argument*/NULL);
if (!L_15)
{
goto IL_0084;
}
}
{
Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * L_16 = __this->get_address_of_m_AnchorScale_4();
XRHumanBodyJoint_t80D5022A816E4F24C92A9EABD645794FC0B5E2E4 L_17 = ___other0;
Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_18 = L_17.get_m_AnchorScale_4();
bool L_19;
L_19 = Vector3_Equals_mA92800CD98ED6A42DD7C55C5DB22DAB4DEAA6397((Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E *)L_16, L_18, /*hidden argument*/NULL);
if (!L_19)
{
goto IL_0084;
}
}
{
Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A * L_20 = __this->get_address_of_m_AnchorPose_5();
XRHumanBodyJoint_t80D5022A816E4F24C92A9EABD645794FC0B5E2E4 L_21 = ___other0;
Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A L_22 = L_21.get_m_AnchorPose_5();
bool L_23;
L_23 = Pose_Equals_mFAE0041090F2032B8FCE63A0F289DD206134BF15((Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A *)L_20, L_22, /*hidden argument*/NULL);
if (!L_23)
{
goto IL_0084;
}
}
{
int32_t* L_24 = __this->get_address_of_m_Tracked_6();
XRHumanBodyJoint_t80D5022A816E4F24C92A9EABD645794FC0B5E2E4 L_25 = ___other0;
int32_t L_26 = L_25.get_m_Tracked_6();
bool L_27;
L_27 = Int32_Equals_mA73E9B3A01B9B9151C262C1E1A56C6AB4891A5E4((int32_t*)L_24, L_26, /*hidden argument*/NULL);
return L_27;
}
IL_0084:
{
return (bool)0;
}
}
IL2CPP_EXTERN_C bool XRHumanBodyJoint_Equals_mF61C132B282799A4A8591EEDFD1C93A5ACB5D690_AdjustorThunk (RuntimeObject * __this, XRHumanBodyJoint_t80D5022A816E4F24C92A9EABD645794FC0B5E2E4 ___other0, const RuntimeMethod* method)
{
XRHumanBodyJoint_t80D5022A816E4F24C92A9EABD645794FC0B5E2E4 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XRHumanBodyJoint_t80D5022A816E4F24C92A9EABD645794FC0B5E2E4 *>(__this + _offset);
bool _returnValue;
_returnValue = XRHumanBodyJoint_Equals_mF61C132B282799A4A8591EEDFD1C93A5ACB5D690(_thisAdjusted, ___other0, method);
return _returnValue;
}
// System.Boolean UnityEngine.XR.ARSubsystems.XRHumanBodyJoint::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XRHumanBodyJoint_Equals_m4FC5F349868C29B492300324ECEA4327199724B5 (XRHumanBodyJoint_t80D5022A816E4F24C92A9EABD645794FC0B5E2E4 * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XRHumanBodyJoint_t80D5022A816E4F24C92A9EABD645794FC0B5E2E4_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
// return ((obj is XRHumanBodyJoint) && Equals((XRHumanBodyJoint)obj));
RuntimeObject * L_0 = ___obj0;
if (!((RuntimeObject *)IsInstSealed((RuntimeObject*)L_0, XRHumanBodyJoint_t80D5022A816E4F24C92A9EABD645794FC0B5E2E4_il2cpp_TypeInfo_var)))
{
goto IL_0015;
}
}
{
RuntimeObject * L_1 = ___obj0;
bool L_2;
L_2 = XRHumanBodyJoint_Equals_mF61C132B282799A4A8591EEDFD1C93A5ACB5D690((XRHumanBodyJoint_t80D5022A816E4F24C92A9EABD645794FC0B5E2E4 *)__this, ((*(XRHumanBodyJoint_t80D5022A816E4F24C92A9EABD645794FC0B5E2E4 *)((XRHumanBodyJoint_t80D5022A816E4F24C92A9EABD645794FC0B5E2E4 *)UnBox(L_1, XRHumanBodyJoint_t80D5022A816E4F24C92A9EABD645794FC0B5E2E4_il2cpp_TypeInfo_var)))), /*hidden argument*/NULL);
return L_2;
}
IL_0015:
{
return (bool)0;
}
}
IL2CPP_EXTERN_C bool XRHumanBodyJoint_Equals_m4FC5F349868C29B492300324ECEA4327199724B5_AdjustorThunk (RuntimeObject * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
XRHumanBodyJoint_t80D5022A816E4F24C92A9EABD645794FC0B5E2E4 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XRHumanBodyJoint_t80D5022A816E4F24C92A9EABD645794FC0B5E2E4 *>(__this + _offset);
bool _returnValue;
_returnValue = XRHumanBodyJoint_Equals_m4FC5F349868C29B492300324ECEA4327199724B5(_thisAdjusted, ___obj0, method);
return _returnValue;
}
// System.Int32 UnityEngine.XR.ARSubsystems.XRHumanBodyJoint::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XRHumanBodyJoint_GetHashCode_mB2B4313B997EB976CF9A0621A8B0B41988F41FEC (XRHumanBodyJoint_t80D5022A816E4F24C92A9EABD645794FC0B5E2E4 * __this, const RuntimeMethod* method)
{
{
// int hashCode = 486187739;
// hashCode = (hashCode * 486187739) + m_Index.GetHashCode();
int32_t* L_0 = __this->get_address_of_m_Index_0();
int32_t L_1;
L_1 = Int32_GetHashCode_mEDD3F492A5F7CF021125AE3F38E2B8F8743FC667((int32_t*)L_0, /*hidden argument*/NULL);
// hashCode = (hashCode * 486187739) + m_ParentIndex.GetHashCode();
int32_t* L_2 = __this->get_address_of_m_ParentIndex_1();
int32_t L_3;
L_3 = Int32_GetHashCode_mEDD3F492A5F7CF021125AE3F38E2B8F8743FC667((int32_t*)L_2, /*hidden argument*/NULL);
// hashCode = (hashCode * 486187739) + m_LocalScale.GetHashCode();
Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * L_4 = __this->get_address_of_m_LocalScale_2();
int32_t L_5;
L_5 = Vector3_GetHashCode_m9F18401DA6025110A012F55BBB5ACABD36FA9A0A((Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E *)L_4, /*hidden argument*/NULL);
// hashCode = (hashCode * 486187739) + m_LocalPose.GetHashCode();
Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A * L_6 = __this->get_address_of_m_LocalPose_3();
int32_t L_7;
L_7 = Pose_GetHashCode_mE1DD7FBCCB1C979B252F0B117276BA11CF4D2367((Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A *)L_6, /*hidden argument*/NULL);
// hashCode = (hashCode * 486187739) + m_AnchorScale.GetHashCode();
Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * L_8 = __this->get_address_of_m_AnchorScale_4();
int32_t L_9;
L_9 = Vector3_GetHashCode_m9F18401DA6025110A012F55BBB5ACABD36FA9A0A((Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E *)L_8, /*hidden argument*/NULL);
// hashCode = (hashCode * 486187739) + m_AnchorPose.GetHashCode();
Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A * L_10 = __this->get_address_of_m_AnchorPose_5();
int32_t L_11;
L_11 = Pose_GetHashCode_mE1DD7FBCCB1C979B252F0B117276BA11CF4D2367((Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A *)L_10, /*hidden argument*/NULL);
// hashCode = (hashCode * 486187739) + m_Tracked.GetHashCode();
int32_t* L_12 = __this->get_address_of_m_Tracked_6();
int32_t L_13;
L_13 = Int32_GetHashCode_mEDD3F492A5F7CF021125AE3F38E2B8F8743FC667((int32_t*)L_12, /*hidden argument*/NULL);
// return hashCode;
return ((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)((int32_t)486187739), (int32_t)((int32_t)486187739))), (int32_t)L_1)), (int32_t)((int32_t)486187739))), (int32_t)L_3)), (int32_t)((int32_t)486187739))), (int32_t)L_5)), (int32_t)((int32_t)486187739))), (int32_t)L_7)), (int32_t)((int32_t)486187739))), (int32_t)L_9)), (int32_t)((int32_t)486187739))), (int32_t)L_11)), (int32_t)((int32_t)486187739))), (int32_t)L_13));
}
}
IL2CPP_EXTERN_C int32_t XRHumanBodyJoint_GetHashCode_mB2B4313B997EB976CF9A0621A8B0B41988F41FEC_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
XRHumanBodyJoint_t80D5022A816E4F24C92A9EABD645794FC0B5E2E4 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XRHumanBodyJoint_t80D5022A816E4F24C92A9EABD645794FC0B5E2E4 *>(__this + _offset);
int32_t _returnValue;
_returnValue = XRHumanBodyJoint_GetHashCode_mB2B4313B997EB976CF9A0621A8B0B41988F41FEC(_thisAdjusted, method);
return _returnValue;
}
// System.String UnityEngine.XR.ARSubsystems.XRHumanBodyJoint::ToString()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XRHumanBodyJoint_ToString_m4A5CA8FD181EF51596129156F8B5D1714B23A0B8 (XRHumanBodyJoint_t80D5022A816E4F24C92A9EABD645794FC0B5E2E4 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralC0A7EDEBF99915540EBE211C25A14FEFF82DDAA7);
s_Il2CppMethodInitialized = true;
}
{
// public override string ToString() => ToString("F5");
String_t* L_0;
L_0 = XRHumanBodyJoint_ToString_m9615CDC8865E5F53A0C1EFC11ED448D8E10517BA((XRHumanBodyJoint_t80D5022A816E4F24C92A9EABD645794FC0B5E2E4 *)__this, _stringLiteralC0A7EDEBF99915540EBE211C25A14FEFF82DDAA7, /*hidden argument*/NULL);
return L_0;
}
}
IL2CPP_EXTERN_C String_t* XRHumanBodyJoint_ToString_m4A5CA8FD181EF51596129156F8B5D1714B23A0B8_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
XRHumanBodyJoint_t80D5022A816E4F24C92A9EABD645794FC0B5E2E4 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XRHumanBodyJoint_t80D5022A816E4F24C92A9EABD645794FC0B5E2E4 *>(__this + _offset);
String_t* _returnValue;
_returnValue = XRHumanBodyJoint_ToString_m4A5CA8FD181EF51596129156F8B5D1714B23A0B8(_thisAdjusted, method);
return _returnValue;
}
// System.String UnityEngine.XR.ARSubsystems.XRHumanBodyJoint::ToString(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XRHumanBodyJoint_ToString_m9615CDC8865E5F53A0C1EFC11ED448D8E10517BA (XRHumanBodyJoint_t80D5022A816E4F24C92A9EABD645794FC0B5E2E4 * __this, String_t* ___format0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral4F30A45443B0F35B99358BDC46A8811E3BE5B054);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
{
// return String.Format("joint [{0}] -> [{1}] localScale:{2} localPose:{3} anchorScale:{4} anchorPose:{5} tracked:{6}",
// m_Index, m_ParentIndex, m_LocalScale.ToString(format), m_LocalPose.ToString(format),
// m_AnchorScale.ToString(format), m_AnchorPose.ToString(format), tracked.ToString());
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_0 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)SZArrayNew(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE_il2cpp_TypeInfo_var, (uint32_t)7);
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_1 = L_0;
int32_t L_2 = __this->get_m_Index_0();
int32_t L_3 = L_2;
RuntimeObject * L_4 = Box(Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var, &L_3);
NullCheck(L_1);
ArrayElementTypeCheck (L_1, L_4);
(L_1)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_4);
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_5 = L_1;
int32_t L_6 = __this->get_m_ParentIndex_1();
int32_t L_7 = L_6;
RuntimeObject * L_8 = Box(Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var, &L_7);
NullCheck(L_5);
ArrayElementTypeCheck (L_5, L_8);
(L_5)->SetAt(static_cast<il2cpp_array_size_t>(1), (RuntimeObject *)L_8);
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_9 = L_5;
Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * L_10 = __this->get_address_of_m_LocalScale_2();
String_t* L_11 = ___format0;
String_t* L_12;
L_12 = Vector3_ToString_mBD710BF9F46219074EE5B095F064EAB4F73B64C1((Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E *)L_10, L_11, /*hidden argument*/NULL);
NullCheck(L_9);
ArrayElementTypeCheck (L_9, L_12);
(L_9)->SetAt(static_cast<il2cpp_array_size_t>(2), (RuntimeObject *)L_12);
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_13 = L_9;
Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A * L_14 = __this->get_address_of_m_LocalPose_3();
String_t* L_15 = ___format0;
String_t* L_16;
L_16 = Pose_ToString_mF545EBBC9D7E041E8FC673068C8DB7E29B696C82((Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A *)L_14, L_15, /*hidden argument*/NULL);
NullCheck(L_13);
ArrayElementTypeCheck (L_13, L_16);
(L_13)->SetAt(static_cast<il2cpp_array_size_t>(3), (RuntimeObject *)L_16);
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_17 = L_13;
Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * L_18 = __this->get_address_of_m_AnchorScale_4();
String_t* L_19 = ___format0;
String_t* L_20;
L_20 = Vector3_ToString_mBD710BF9F46219074EE5B095F064EAB4F73B64C1((Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E *)L_18, L_19, /*hidden argument*/NULL);
NullCheck(L_17);
ArrayElementTypeCheck (L_17, L_20);
(L_17)->SetAt(static_cast<il2cpp_array_size_t>(4), (RuntimeObject *)L_20);
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_21 = L_17;
Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A * L_22 = __this->get_address_of_m_AnchorPose_5();
String_t* L_23 = ___format0;
String_t* L_24;
L_24 = Pose_ToString_mF545EBBC9D7E041E8FC673068C8DB7E29B696C82((Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A *)L_22, L_23, /*hidden argument*/NULL);
NullCheck(L_21);
ArrayElementTypeCheck (L_21, L_24);
(L_21)->SetAt(static_cast<il2cpp_array_size_t>(5), (RuntimeObject *)L_24);
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_25 = L_21;
bool L_26;
L_26 = XRHumanBodyJoint_get_tracked_mFE794D3F10CC9FE8B3BBA7EA3DAA2EAD43265030((XRHumanBodyJoint_t80D5022A816E4F24C92A9EABD645794FC0B5E2E4 *)__this, /*hidden argument*/NULL);
V_0 = L_26;
String_t* L_27;
L_27 = Boolean_ToString_m59BB8456DD05A874BBD756E57EA8AD983287015C((bool*)(&V_0), /*hidden argument*/NULL);
NullCheck(L_25);
ArrayElementTypeCheck (L_25, L_27);
(L_25)->SetAt(static_cast<il2cpp_array_size_t>(6), (RuntimeObject *)L_27);
String_t* L_28;
L_28 = String_Format_mCED6767EA5FEE6F15ABCD5B4F9150D1284C2795B(_stringLiteral4F30A45443B0F35B99358BDC46A8811E3BE5B054, L_25, /*hidden argument*/NULL);
return L_28;
}
}
IL2CPP_EXTERN_C String_t* XRHumanBodyJoint_ToString_m9615CDC8865E5F53A0C1EFC11ED448D8E10517BA_AdjustorThunk (RuntimeObject * __this, String_t* ___format0, const RuntimeMethod* method)
{
XRHumanBodyJoint_t80D5022A816E4F24C92A9EABD645794FC0B5E2E4 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XRHumanBodyJoint_t80D5022A816E4F24C92A9EABD645794FC0B5E2E4 *>(__this + _offset);
String_t* _returnValue;
_returnValue = XRHumanBodyJoint_ToString_m9615CDC8865E5F53A0C1EFC11ED448D8E10517BA(_thisAdjusted, ___format0, 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
// System.Boolean UnityEngine.XR.ARSubsystems.XRHumanBodyPose2DJoint::get_tracked()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XRHumanBodyPose2DJoint_get_tracked_m2482827731EF34E90A03BE36B02CD58DC4ED27BA (XRHumanBodyPose2DJoint_t901EEB0FA2A9FF2D258978EC36EE0852FEF35BA4 * __this, const RuntimeMethod* method)
{
{
// public bool tracked => (m_Tracked != 0);
int32_t L_0 = __this->get_m_Tracked_3();
return (bool)((!(((uint32_t)L_0) <= ((uint32_t)0)))? 1 : 0);
}
}
IL2CPP_EXTERN_C bool XRHumanBodyPose2DJoint_get_tracked_m2482827731EF34E90A03BE36B02CD58DC4ED27BA_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
XRHumanBodyPose2DJoint_t901EEB0FA2A9FF2D258978EC36EE0852FEF35BA4 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XRHumanBodyPose2DJoint_t901EEB0FA2A9FF2D258978EC36EE0852FEF35BA4 *>(__this + _offset);
bool _returnValue;
_returnValue = XRHumanBodyPose2DJoint_get_tracked_m2482827731EF34E90A03BE36B02CD58DC4ED27BA(_thisAdjusted, method);
return _returnValue;
}
// System.Boolean UnityEngine.XR.ARSubsystems.XRHumanBodyPose2DJoint::Equals(UnityEngine.XR.ARSubsystems.XRHumanBodyPose2DJoint)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XRHumanBodyPose2DJoint_Equals_m13D561FB80FAB3235153ECAA81CDF0A1AB61EBE0 (XRHumanBodyPose2DJoint_t901EEB0FA2A9FF2D258978EC36EE0852FEF35BA4 * __this, XRHumanBodyPose2DJoint_t901EEB0FA2A9FF2D258978EC36EE0852FEF35BA4 ___other0, const RuntimeMethod* method)
{
{
// return (m_Index.Equals(other.m_Index) && m_ParentIndex.Equals(other.m_ParentIndex)
// && m_Position.Equals(other.m_Position) && m_Tracked.Equals(other.m_Tracked));
int32_t* L_0 = __this->get_address_of_m_Index_0();
XRHumanBodyPose2DJoint_t901EEB0FA2A9FF2D258978EC36EE0852FEF35BA4 L_1 = ___other0;
int32_t L_2 = L_1.get_m_Index_0();
bool L_3;
L_3 = Int32_Equals_mA73E9B3A01B9B9151C262C1E1A56C6AB4891A5E4((int32_t*)L_0, L_2, /*hidden argument*/NULL);
if (!L_3)
{
goto IL_004b;
}
}
{
int32_t* L_4 = __this->get_address_of_m_ParentIndex_1();
XRHumanBodyPose2DJoint_t901EEB0FA2A9FF2D258978EC36EE0852FEF35BA4 L_5 = ___other0;
int32_t L_6 = L_5.get_m_ParentIndex_1();
bool L_7;
L_7 = Int32_Equals_mA73E9B3A01B9B9151C262C1E1A56C6AB4891A5E4((int32_t*)L_4, L_6, /*hidden argument*/NULL);
if (!L_7)
{
goto IL_004b;
}
}
{
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 * L_8 = __this->get_address_of_m_Position_2();
XRHumanBodyPose2DJoint_t901EEB0FA2A9FF2D258978EC36EE0852FEF35BA4 L_9 = ___other0;
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 L_10 = L_9.get_m_Position_2();
bool L_11;
L_11 = Vector2_Equals_m6E08A16717F2B9EE8B24EBA6B234A03098D5F05D_inline((Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 *)L_8, L_10, /*hidden argument*/NULL);
if (!L_11)
{
goto IL_004b;
}
}
{
int32_t* L_12 = __this->get_address_of_m_Tracked_3();
XRHumanBodyPose2DJoint_t901EEB0FA2A9FF2D258978EC36EE0852FEF35BA4 L_13 = ___other0;
int32_t L_14 = L_13.get_m_Tracked_3();
bool L_15;
L_15 = Int32_Equals_mA73E9B3A01B9B9151C262C1E1A56C6AB4891A5E4((int32_t*)L_12, L_14, /*hidden argument*/NULL);
return L_15;
}
IL_004b:
{
return (bool)0;
}
}
IL2CPP_EXTERN_C bool XRHumanBodyPose2DJoint_Equals_m13D561FB80FAB3235153ECAA81CDF0A1AB61EBE0_AdjustorThunk (RuntimeObject * __this, XRHumanBodyPose2DJoint_t901EEB0FA2A9FF2D258978EC36EE0852FEF35BA4 ___other0, const RuntimeMethod* method)
{
XRHumanBodyPose2DJoint_t901EEB0FA2A9FF2D258978EC36EE0852FEF35BA4 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XRHumanBodyPose2DJoint_t901EEB0FA2A9FF2D258978EC36EE0852FEF35BA4 *>(__this + _offset);
bool _returnValue;
_returnValue = XRHumanBodyPose2DJoint_Equals_m13D561FB80FAB3235153ECAA81CDF0A1AB61EBE0(_thisAdjusted, ___other0, method);
return _returnValue;
}
// System.Boolean UnityEngine.XR.ARSubsystems.XRHumanBodyPose2DJoint::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XRHumanBodyPose2DJoint_Equals_mFD1372A220FB78E1834F741C3C866AA7068614FA (XRHumanBodyPose2DJoint_t901EEB0FA2A9FF2D258978EC36EE0852FEF35BA4 * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XRHumanBodyPose2DJoint_t901EEB0FA2A9FF2D258978EC36EE0852FEF35BA4_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
// return ((obj is XRHumanBodyPose2DJoint) && Equals((XRHumanBodyPose2DJoint)obj));
RuntimeObject * L_0 = ___obj0;
if (!((RuntimeObject *)IsInstSealed((RuntimeObject*)L_0, XRHumanBodyPose2DJoint_t901EEB0FA2A9FF2D258978EC36EE0852FEF35BA4_il2cpp_TypeInfo_var)))
{
goto IL_0015;
}
}
{
RuntimeObject * L_1 = ___obj0;
bool L_2;
L_2 = XRHumanBodyPose2DJoint_Equals_m13D561FB80FAB3235153ECAA81CDF0A1AB61EBE0((XRHumanBodyPose2DJoint_t901EEB0FA2A9FF2D258978EC36EE0852FEF35BA4 *)__this, ((*(XRHumanBodyPose2DJoint_t901EEB0FA2A9FF2D258978EC36EE0852FEF35BA4 *)((XRHumanBodyPose2DJoint_t901EEB0FA2A9FF2D258978EC36EE0852FEF35BA4 *)UnBox(L_1, XRHumanBodyPose2DJoint_t901EEB0FA2A9FF2D258978EC36EE0852FEF35BA4_il2cpp_TypeInfo_var)))), /*hidden argument*/NULL);
return L_2;
}
IL_0015:
{
return (bool)0;
}
}
IL2CPP_EXTERN_C bool XRHumanBodyPose2DJoint_Equals_mFD1372A220FB78E1834F741C3C866AA7068614FA_AdjustorThunk (RuntimeObject * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
XRHumanBodyPose2DJoint_t901EEB0FA2A9FF2D258978EC36EE0852FEF35BA4 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XRHumanBodyPose2DJoint_t901EEB0FA2A9FF2D258978EC36EE0852FEF35BA4 *>(__this + _offset);
bool _returnValue;
_returnValue = XRHumanBodyPose2DJoint_Equals_mFD1372A220FB78E1834F741C3C866AA7068614FA(_thisAdjusted, ___obj0, method);
return _returnValue;
}
// System.Int32 UnityEngine.XR.ARSubsystems.XRHumanBodyPose2DJoint::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XRHumanBodyPose2DJoint_GetHashCode_mA55B9AAABC7536E6C93C93F59F4DB417E95F721A (XRHumanBodyPose2DJoint_t901EEB0FA2A9FF2D258978EC36EE0852FEF35BA4 * __this, const RuntimeMethod* method)
{
{
// int hashCode = 486187739;
// hashCode = (hashCode * 486187739) + m_Index.GetHashCode();
int32_t* L_0 = __this->get_address_of_m_Index_0();
int32_t L_1;
L_1 = Int32_GetHashCode_mEDD3F492A5F7CF021125AE3F38E2B8F8743FC667((int32_t*)L_0, /*hidden argument*/NULL);
// hashCode = (hashCode * 486187739) + m_ParentIndex.GetHashCode();
int32_t* L_2 = __this->get_address_of_m_ParentIndex_1();
int32_t L_3;
L_3 = Int32_GetHashCode_mEDD3F492A5F7CF021125AE3F38E2B8F8743FC667((int32_t*)L_2, /*hidden argument*/NULL);
// hashCode = (hashCode * 486187739) + m_Position.GetHashCode();
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 * L_4 = __this->get_address_of_m_Position_2();
int32_t L_5;
L_5 = Vector2_GetHashCode_m9A5DD8406289F38806CC42C394E324C1C2AB3732((Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 *)L_4, /*hidden argument*/NULL);
// hashCode = (hashCode * 486187739) + m_Tracked.GetHashCode();
int32_t* L_6 = __this->get_address_of_m_Tracked_3();
int32_t L_7;
L_7 = Int32_GetHashCode_mEDD3F492A5F7CF021125AE3F38E2B8F8743FC667((int32_t*)L_6, /*hidden argument*/NULL);
// return hashCode;
return ((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)((int32_t)486187739), (int32_t)((int32_t)486187739))), (int32_t)L_1)), (int32_t)((int32_t)486187739))), (int32_t)L_3)), (int32_t)((int32_t)486187739))), (int32_t)L_5)), (int32_t)((int32_t)486187739))), (int32_t)L_7));
}
}
IL2CPP_EXTERN_C int32_t XRHumanBodyPose2DJoint_GetHashCode_mA55B9AAABC7536E6C93C93F59F4DB417E95F721A_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
XRHumanBodyPose2DJoint_t901EEB0FA2A9FF2D258978EC36EE0852FEF35BA4 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XRHumanBodyPose2DJoint_t901EEB0FA2A9FF2D258978EC36EE0852FEF35BA4 *>(__this + _offset);
int32_t _returnValue;
_returnValue = XRHumanBodyPose2DJoint_GetHashCode_mA55B9AAABC7536E6C93C93F59F4DB417E95F721A(_thisAdjusted, method);
return _returnValue;
}
// System.String UnityEngine.XR.ARSubsystems.XRHumanBodyPose2DJoint::ToString()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XRHumanBodyPose2DJoint_ToString_m0776D12ECE559F6F987CB879DC6578E4B69630F8 (XRHumanBodyPose2DJoint_t901EEB0FA2A9FF2D258978EC36EE0852FEF35BA4 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralC0A7EDEBF99915540EBE211C25A14FEFF82DDAA7);
s_Il2CppMethodInitialized = true;
}
{
// return ToString("F5");
String_t* L_0;
L_0 = XRHumanBodyPose2DJoint_ToString_m0AE3FBFE9BF812C8589AE2F567A79D756700256E((XRHumanBodyPose2DJoint_t901EEB0FA2A9FF2D258978EC36EE0852FEF35BA4 *)__this, _stringLiteralC0A7EDEBF99915540EBE211C25A14FEFF82DDAA7, /*hidden argument*/NULL);
return L_0;
}
}
IL2CPP_EXTERN_C String_t* XRHumanBodyPose2DJoint_ToString_m0776D12ECE559F6F987CB879DC6578E4B69630F8_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
XRHumanBodyPose2DJoint_t901EEB0FA2A9FF2D258978EC36EE0852FEF35BA4 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XRHumanBodyPose2DJoint_t901EEB0FA2A9FF2D258978EC36EE0852FEF35BA4 *>(__this + _offset);
String_t* _returnValue;
_returnValue = XRHumanBodyPose2DJoint_ToString_m0776D12ECE559F6F987CB879DC6578E4B69630F8(_thisAdjusted, method);
return _returnValue;
}
// System.String UnityEngine.XR.ARSubsystems.XRHumanBodyPose2DJoint::ToString(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XRHumanBodyPose2DJoint_ToString_m0AE3FBFE9BF812C8589AE2F567A79D756700256E (XRHumanBodyPose2DJoint_t901EEB0FA2A9FF2D258978EC36EE0852FEF35BA4 * __this, String_t* ___format0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral20BBFE23E73935992537E1127A65E0B5C3687162);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral20BFFC3E3EF9F47EDC311ECA59B9D592C1989F45);
s_Il2CppMethodInitialized = true;
}
RuntimeObject * G_B2_0 = NULL;
RuntimeObject * G_B2_1 = NULL;
String_t* G_B2_2 = NULL;
RuntimeObject * G_B1_0 = NULL;
RuntimeObject * G_B1_1 = NULL;
String_t* G_B1_2 = NULL;
String_t* G_B3_0 = NULL;
RuntimeObject * G_B3_1 = NULL;
RuntimeObject * G_B3_2 = NULL;
String_t* G_B3_3 = NULL;
{
// return String.Format("joint [{0}] -> [{1}] {2}", m_Index, m_ParentIndex,
// tracked ? m_Position.ToString(format) : "<not tracked>");
int32_t L_0 = __this->get_m_Index_0();
int32_t L_1 = L_0;
RuntimeObject * L_2 = Box(Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var, &L_1);
int32_t L_3 = __this->get_m_ParentIndex_1();
int32_t L_4 = L_3;
RuntimeObject * L_5 = Box(Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var, &L_4);
bool L_6;
L_6 = XRHumanBodyPose2DJoint_get_tracked_m2482827731EF34E90A03BE36B02CD58DC4ED27BA((XRHumanBodyPose2DJoint_t901EEB0FA2A9FF2D258978EC36EE0852FEF35BA4 *)__this, /*hidden argument*/NULL);
G_B1_0 = L_5;
G_B1_1 = L_2;
G_B1_2 = _stringLiteral20BFFC3E3EF9F47EDC311ECA59B9D592C1989F45;
if (L_6)
{
G_B2_0 = L_5;
G_B2_1 = L_2;
G_B2_2 = _stringLiteral20BFFC3E3EF9F47EDC311ECA59B9D592C1989F45;
goto IL_002a;
}
}
{
G_B3_0 = _stringLiteral20BBFE23E73935992537E1127A65E0B5C3687162;
G_B3_1 = G_B1_0;
G_B3_2 = G_B1_1;
G_B3_3 = G_B1_2;
goto IL_0036;
}
IL_002a:
{
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 * L_7 = __this->get_address_of_m_Position_2();
String_t* L_8 = ___format0;
String_t* L_9;
L_9 = Vector2_ToString_mDE7D19340491399AD591D38016AD973C3D3A5218((Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 *)L_7, L_8, /*hidden argument*/NULL);
G_B3_0 = L_9;
G_B3_1 = G_B2_0;
G_B3_2 = G_B2_1;
G_B3_3 = G_B2_2;
}
IL_0036:
{
String_t* L_10;
L_10 = String_Format_m039737CCD992C5BFC8D16DFD681F5E8786E87FA6(G_B3_3, G_B3_2, G_B3_1, G_B3_0, /*hidden argument*/NULL);
return L_10;
}
}
IL2CPP_EXTERN_C String_t* XRHumanBodyPose2DJoint_ToString_m0AE3FBFE9BF812C8589AE2F567A79D756700256E_AdjustorThunk (RuntimeObject * __this, String_t* ___format0, const RuntimeMethod* method)
{
XRHumanBodyPose2DJoint_t901EEB0FA2A9FF2D258978EC36EE0852FEF35BA4 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XRHumanBodyPose2DJoint_t901EEB0FA2A9FF2D258978EC36EE0852FEF35BA4 *>(__this + _offset);
String_t* _returnValue;
_returnValue = XRHumanBodyPose2DJoint_ToString_m0AE3FBFE9BF812C8589AE2F567A79D756700256E(_thisAdjusted, ___format0, 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
// System.Boolean UnityEngine.XR.ARSubsystems.XRHumanBodySubsystem::get_pose2DRequested()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XRHumanBodySubsystem_get_pose2DRequested_m73E73A18E279804D2F9CDDD368E57C60022D755D (XRHumanBodySubsystem_t71FBF94503DCE781657FA4F362464EA389CD9F2B * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SubsystemWithProvider_3_get_provider_m39A0718D1138A6DA7C4C408956D26C48D2DC8F8E_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
// get => provider.pose2DRequested;
Provider_t055C90C34B2BCE8D134DF44C12823E320519168C * L_0;
L_0 = SubsystemWithProvider_3_get_provider_m39A0718D1138A6DA7C4C408956D26C48D2DC8F8E_inline(__this, /*hidden argument*/SubsystemWithProvider_3_get_provider_m39A0718D1138A6DA7C4C408956D26C48D2DC8F8E_RuntimeMethod_var);
NullCheck(L_0);
bool L_1;
L_1 = VirtualFuncInvoker0< bool >::Invoke(8 /* System.Boolean UnityEngine.XR.ARSubsystems.XRHumanBodySubsystem/Provider::get_pose2DRequested() */, L_0);
return L_1;
}
}
// System.Void UnityEngine.XR.ARSubsystems.XRHumanBodySubsystem::set_pose2DRequested(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRHumanBodySubsystem_set_pose2DRequested_mB49D7CDEFBAF72E3CF431020DE7DB129929DD36E (XRHumanBodySubsystem_t71FBF94503DCE781657FA4F362464EA389CD9F2B * __this, bool ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SubsystemWithProvider_3_get_provider_m39A0718D1138A6DA7C4C408956D26C48D2DC8F8E_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
// set => provider.pose2DRequested = value;
Provider_t055C90C34B2BCE8D134DF44C12823E320519168C * L_0;
L_0 = SubsystemWithProvider_3_get_provider_m39A0718D1138A6DA7C4C408956D26C48D2DC8F8E_inline(__this, /*hidden argument*/SubsystemWithProvider_3_get_provider_m39A0718D1138A6DA7C4C408956D26C48D2DC8F8E_RuntimeMethod_var);
bool L_1 = ___value0;
NullCheck(L_0);
VirtualActionInvoker1< bool >::Invoke(9 /* System.Void UnityEngine.XR.ARSubsystems.XRHumanBodySubsystem/Provider::set_pose2DRequested(System.Boolean) */, L_0, L_1);
return;
}
}
// System.Boolean UnityEngine.XR.ARSubsystems.XRHumanBodySubsystem::get_pose2DEnabled()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XRHumanBodySubsystem_get_pose2DEnabled_m6E19D5A53F2E784D48041A5D5281067517517AF3 (XRHumanBodySubsystem_t71FBF94503DCE781657FA4F362464EA389CD9F2B * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SubsystemWithProvider_3_get_provider_m39A0718D1138A6DA7C4C408956D26C48D2DC8F8E_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
// public bool pose2DEnabled => provider.pose2DEnabled;
Provider_t055C90C34B2BCE8D134DF44C12823E320519168C * L_0;
L_0 = SubsystemWithProvider_3_get_provider_m39A0718D1138A6DA7C4C408956D26C48D2DC8F8E_inline(__this, /*hidden argument*/SubsystemWithProvider_3_get_provider_m39A0718D1138A6DA7C4C408956D26C48D2DC8F8E_RuntimeMethod_var);
NullCheck(L_0);
bool L_1;
L_1 = VirtualFuncInvoker0< bool >::Invoke(10 /* System.Boolean UnityEngine.XR.ARSubsystems.XRHumanBodySubsystem/Provider::get_pose2DEnabled() */, L_0);
return L_1;
}
}
// System.Boolean UnityEngine.XR.ARSubsystems.XRHumanBodySubsystem::get_pose3DRequested()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XRHumanBodySubsystem_get_pose3DRequested_m1AE5F8B40EF1EF97520855EEE79375B3E588EF57 (XRHumanBodySubsystem_t71FBF94503DCE781657FA4F362464EA389CD9F2B * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SubsystemWithProvider_3_get_provider_m39A0718D1138A6DA7C4C408956D26C48D2DC8F8E_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
// get => provider.pose3DRequested;
Provider_t055C90C34B2BCE8D134DF44C12823E320519168C * L_0;
L_0 = SubsystemWithProvider_3_get_provider_m39A0718D1138A6DA7C4C408956D26C48D2DC8F8E_inline(__this, /*hidden argument*/SubsystemWithProvider_3_get_provider_m39A0718D1138A6DA7C4C408956D26C48D2DC8F8E_RuntimeMethod_var);
NullCheck(L_0);
bool L_1;
L_1 = VirtualFuncInvoker0< bool >::Invoke(11 /* System.Boolean UnityEngine.XR.ARSubsystems.XRHumanBodySubsystem/Provider::get_pose3DRequested() */, L_0);
return L_1;
}
}
// System.Void UnityEngine.XR.ARSubsystems.XRHumanBodySubsystem::set_pose3DRequested(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRHumanBodySubsystem_set_pose3DRequested_m2AC0E39C301D9E6660395E8F295AE7A42779FA12 (XRHumanBodySubsystem_t71FBF94503DCE781657FA4F362464EA389CD9F2B * __this, bool ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SubsystemWithProvider_3_get_provider_m39A0718D1138A6DA7C4C408956D26C48D2DC8F8E_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
// set => provider.pose3DRequested = value;
Provider_t055C90C34B2BCE8D134DF44C12823E320519168C * L_0;
L_0 = SubsystemWithProvider_3_get_provider_m39A0718D1138A6DA7C4C408956D26C48D2DC8F8E_inline(__this, /*hidden argument*/SubsystemWithProvider_3_get_provider_m39A0718D1138A6DA7C4C408956D26C48D2DC8F8E_RuntimeMethod_var);
bool L_1 = ___value0;
NullCheck(L_0);
VirtualActionInvoker1< bool >::Invoke(12 /* System.Void UnityEngine.XR.ARSubsystems.XRHumanBodySubsystem/Provider::set_pose3DRequested(System.Boolean) */, L_0, L_1);
return;
}
}
// System.Boolean UnityEngine.XR.ARSubsystems.XRHumanBodySubsystem::get_pose3DEnabled()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XRHumanBodySubsystem_get_pose3DEnabled_m887A68F14FEB4DC19008AC02FB16DC61FF55810A (XRHumanBodySubsystem_t71FBF94503DCE781657FA4F362464EA389CD9F2B * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SubsystemWithProvider_3_get_provider_m39A0718D1138A6DA7C4C408956D26C48D2DC8F8E_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
// public bool pose3DEnabled => provider.pose3DEnabled;
Provider_t055C90C34B2BCE8D134DF44C12823E320519168C * L_0;
L_0 = SubsystemWithProvider_3_get_provider_m39A0718D1138A6DA7C4C408956D26C48D2DC8F8E_inline(__this, /*hidden argument*/SubsystemWithProvider_3_get_provider_m39A0718D1138A6DA7C4C408956D26C48D2DC8F8E_RuntimeMethod_var);
NullCheck(L_0);
bool L_1;
L_1 = VirtualFuncInvoker0< bool >::Invoke(13 /* System.Boolean UnityEngine.XR.ARSubsystems.XRHumanBodySubsystem/Provider::get_pose3DEnabled() */, L_0);
return L_1;
}
}
// System.Boolean UnityEngine.XR.ARSubsystems.XRHumanBodySubsystem::get_pose3DScaleEstimationRequested()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XRHumanBodySubsystem_get_pose3DScaleEstimationRequested_m9A5F9C0B857BDAE5C9D22A5E435DAFB436B2B00E (XRHumanBodySubsystem_t71FBF94503DCE781657FA4F362464EA389CD9F2B * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SubsystemWithProvider_3_get_provider_m39A0718D1138A6DA7C4C408956D26C48D2DC8F8E_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
// get => provider.pose3DScaleEstimationRequested;
Provider_t055C90C34B2BCE8D134DF44C12823E320519168C * L_0;
L_0 = SubsystemWithProvider_3_get_provider_m39A0718D1138A6DA7C4C408956D26C48D2DC8F8E_inline(__this, /*hidden argument*/SubsystemWithProvider_3_get_provider_m39A0718D1138A6DA7C4C408956D26C48D2DC8F8E_RuntimeMethod_var);
NullCheck(L_0);
bool L_1;
L_1 = VirtualFuncInvoker0< bool >::Invoke(14 /* System.Boolean UnityEngine.XR.ARSubsystems.XRHumanBodySubsystem/Provider::get_pose3DScaleEstimationRequested() */, L_0);
return L_1;
}
}
// System.Void UnityEngine.XR.ARSubsystems.XRHumanBodySubsystem::set_pose3DScaleEstimationRequested(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRHumanBodySubsystem_set_pose3DScaleEstimationRequested_mDA2701A18C56A380D9165719CD01D9F3B67FDD24 (XRHumanBodySubsystem_t71FBF94503DCE781657FA4F362464EA389CD9F2B * __this, bool ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SubsystemWithProvider_3_get_provider_m39A0718D1138A6DA7C4C408956D26C48D2DC8F8E_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
// set => provider.pose3DScaleEstimationRequested = value;
Provider_t055C90C34B2BCE8D134DF44C12823E320519168C * L_0;
L_0 = SubsystemWithProvider_3_get_provider_m39A0718D1138A6DA7C4C408956D26C48D2DC8F8E_inline(__this, /*hidden argument*/SubsystemWithProvider_3_get_provider_m39A0718D1138A6DA7C4C408956D26C48D2DC8F8E_RuntimeMethod_var);
bool L_1 = ___value0;
NullCheck(L_0);
VirtualActionInvoker1< bool >::Invoke(15 /* System.Void UnityEngine.XR.ARSubsystems.XRHumanBodySubsystem/Provider::set_pose3DScaleEstimationRequested(System.Boolean) */, L_0, L_1);
return;
}
}
// System.Boolean UnityEngine.XR.ARSubsystems.XRHumanBodySubsystem::get_pose3DScaleEstimationEnabled()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XRHumanBodySubsystem_get_pose3DScaleEstimationEnabled_mB8C1AB325556413A272D7A9C4E8E621F6946BD45 (XRHumanBodySubsystem_t71FBF94503DCE781657FA4F362464EA389CD9F2B * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SubsystemWithProvider_3_get_provider_m39A0718D1138A6DA7C4C408956D26C48D2DC8F8E_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
// public bool pose3DScaleEstimationEnabled => provider.pose3DScaleEstimationEnabled;
Provider_t055C90C34B2BCE8D134DF44C12823E320519168C * L_0;
L_0 = SubsystemWithProvider_3_get_provider_m39A0718D1138A6DA7C4C408956D26C48D2DC8F8E_inline(__this, /*hidden argument*/SubsystemWithProvider_3_get_provider_m39A0718D1138A6DA7C4C408956D26C48D2DC8F8E_RuntimeMethod_var);
NullCheck(L_0);
bool L_1;
L_1 = VirtualFuncInvoker0< bool >::Invoke(16 /* System.Boolean UnityEngine.XR.ARSubsystems.XRHumanBodySubsystem/Provider::get_pose3DScaleEstimationEnabled() */, L_0);
return L_1;
}
}
// System.Void UnityEngine.XR.ARSubsystems.XRHumanBodySubsystem::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRHumanBodySubsystem__ctor_mF3C86058EA4CFF10DFE59744ACC2DB437B3F8E84 (XRHumanBodySubsystem_t71FBF94503DCE781657FA4F362464EA389CD9F2B * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TrackingSubsystem_4__ctor_mEA3C0400FE095A58F53489AFC1F36B907EE04FBA_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
// public XRHumanBodySubsystem()
TrackingSubsystem_4__ctor_mEA3C0400FE095A58F53489AFC1F36B907EE04FBA(__this, /*hidden argument*/TrackingSubsystem_4__ctor_mEA3C0400FE095A58F53489AFC1F36B907EE04FBA_RuntimeMethod_var);
// }
return;
}
}
// UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.XRHumanBody> UnityEngine.XR.ARSubsystems.XRHumanBodySubsystem::GetChanges(Unity.Collections.Allocator)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TrackableChanges_1_t4BEBDDB9C8CBFF65EC7028CE5BA562A5728C8B82 XRHumanBodySubsystem_GetChanges_mED95DFB0CF28F2C75BF89565FD42C51FD22EB9F4 (XRHumanBodySubsystem_t71FBF94503DCE781657FA4F362464EA389CD9F2B * __this, int32_t ___allocator0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SubsystemWithProvider_3_get_provider_m39A0718D1138A6DA7C4C408956D26C48D2DC8F8E_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XRHumanBody_t1AA9DC3BEBCF86A64BE2B83452AC5704AD08C13B_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
// => provider.GetChanges(XRHumanBody.defaultValue, allocator);
Provider_t055C90C34B2BCE8D134DF44C12823E320519168C * L_0;
L_0 = SubsystemWithProvider_3_get_provider_m39A0718D1138A6DA7C4C408956D26C48D2DC8F8E_inline(__this, /*hidden argument*/SubsystemWithProvider_3_get_provider_m39A0718D1138A6DA7C4C408956D26C48D2DC8F8E_RuntimeMethod_var);
IL2CPP_RUNTIME_CLASS_INIT(XRHumanBody_t1AA9DC3BEBCF86A64BE2B83452AC5704AD08C13B_il2cpp_TypeInfo_var);
XRHumanBody_t1AA9DC3BEBCF86A64BE2B83452AC5704AD08C13B L_1;
L_1 = XRHumanBody_get_defaultValue_m0A3A0C5BAFB5C20A12014597FA6690AE6470ACA4_inline(/*hidden argument*/NULL);
int32_t L_2 = ___allocator0;
NullCheck(L_0);
TrackableChanges_1_t4BEBDDB9C8CBFF65EC7028CE5BA562A5728C8B82 L_3;
L_3 = VirtualFuncInvoker2< TrackableChanges_1_t4BEBDDB9C8CBFF65EC7028CE5BA562A5728C8B82 , XRHumanBody_t1AA9DC3BEBCF86A64BE2B83452AC5704AD08C13B , int32_t >::Invoke(17 /* UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.XRHumanBody> UnityEngine.XR.ARSubsystems.XRHumanBodySubsystem/Provider::GetChanges(UnityEngine.XR.ARSubsystems.XRHumanBody,Unity.Collections.Allocator) */, L_0, L_1, L_2);
return L_3;
}
}
// System.Void UnityEngine.XR.ARSubsystems.XRHumanBodySubsystem::GetSkeleton(UnityEngine.XR.ARSubsystems.TrackableId,Unity.Collections.Allocator,Unity.Collections.NativeArray`1<UnityEngine.XR.ARSubsystems.XRHumanBodyJoint>&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRHumanBodySubsystem_GetSkeleton_m32DBE0ACF71FC569BDEE1E9E7CD2EF044757B4E8 (XRHumanBodySubsystem_t71FBF94503DCE781657FA4F362464EA389CD9F2B * __this, TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B ___trackableId0, int32_t ___allocator1, NativeArray_1_t733A71EE29E0C7D2F944E30A1729F085DEB1138C * ___skeleton2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SubsystemWithProvider_3_get_provider_m39A0718D1138A6DA7C4C408956D26C48D2DC8F8E_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
// => provider.GetSkeleton(trackableId, allocator, ref skeleton);
Provider_t055C90C34B2BCE8D134DF44C12823E320519168C * L_0;
L_0 = SubsystemWithProvider_3_get_provider_m39A0718D1138A6DA7C4C408956D26C48D2DC8F8E_inline(__this, /*hidden argument*/SubsystemWithProvider_3_get_provider_m39A0718D1138A6DA7C4C408956D26C48D2DC8F8E_RuntimeMethod_var);
TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B L_1 = ___trackableId0;
int32_t L_2 = ___allocator1;
NativeArray_1_t733A71EE29E0C7D2F944E30A1729F085DEB1138C * L_3 = ___skeleton2;
NullCheck(L_0);
VirtualActionInvoker3< TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B , int32_t, NativeArray_1_t733A71EE29E0C7D2F944E30A1729F085DEB1138C * >::Invoke(18 /* System.Void UnityEngine.XR.ARSubsystems.XRHumanBodySubsystem/Provider::GetSkeleton(UnityEngine.XR.ARSubsystems.TrackableId,Unity.Collections.Allocator,Unity.Collections.NativeArray`1<UnityEngine.XR.ARSubsystems.XRHumanBodyJoint>&) */, L_0, L_1, L_2, (NativeArray_1_t733A71EE29E0C7D2F944E30A1729F085DEB1138C *)L_3);
return;
}
}
// Unity.Collections.NativeArray`1<UnityEngine.XR.ARSubsystems.XRHumanBodyPose2DJoint> UnityEngine.XR.ARSubsystems.XRHumanBodySubsystem::GetHumanBodyPose2DJoints(Unity.Collections.Allocator)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NativeArray_1_t7946EB09CA991D07040F6E500BA5CA3CECED5E52 XRHumanBodySubsystem_GetHumanBodyPose2DJoints_m9A954E4080DBDEEAF5BA651E2F9837D091F05312 (XRHumanBodySubsystem_t71FBF94503DCE781657FA4F362464EA389CD9F2B * __this, int32_t ___allocator0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SubsystemWithProvider_3_get_provider_m39A0718D1138A6DA7C4C408956D26C48D2DC8F8E_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
XRHumanBodyPose2DJoint_t901EEB0FA2A9FF2D258978EC36EE0852FEF35BA4 V_0;
memset((&V_0), 0, sizeof(V_0));
{
// => provider.GetHumanBodyPose2DJoints(default(XRHumanBodyPose2DJoint), Screen.width, Screen.height,
// Screen.orientation, allocator);
Provider_t055C90C34B2BCE8D134DF44C12823E320519168C * L_0;
L_0 = SubsystemWithProvider_3_get_provider_m39A0718D1138A6DA7C4C408956D26C48D2DC8F8E_inline(__this, /*hidden argument*/SubsystemWithProvider_3_get_provider_m39A0718D1138A6DA7C4C408956D26C48D2DC8F8E_RuntimeMethod_var);
il2cpp_codegen_initobj((&V_0), sizeof(XRHumanBodyPose2DJoint_t901EEB0FA2A9FF2D258978EC36EE0852FEF35BA4 ));
XRHumanBodyPose2DJoint_t901EEB0FA2A9FF2D258978EC36EE0852FEF35BA4 L_1 = V_0;
int32_t L_2;
L_2 = Screen_get_width_m52188F76E8AAF57BE373018CB14083BB74C43C1C(/*hidden argument*/NULL);
int32_t L_3;
L_3 = Screen_get_height_m110C90A573EE67895DC4F59E9165235EA22039EE(/*hidden argument*/NULL);
int32_t L_4;
L_4 = Screen_get_orientation_m1C42BB2AF3CA157B8015FA7AB36F8BB1329660E7(/*hidden argument*/NULL);
int32_t L_5 = ___allocator0;
NullCheck(L_0);
NativeArray_1_t7946EB09CA991D07040F6E500BA5CA3CECED5E52 L_6;
L_6 = VirtualFuncInvoker5< NativeArray_1_t7946EB09CA991D07040F6E500BA5CA3CECED5E52 , XRHumanBodyPose2DJoint_t901EEB0FA2A9FF2D258978EC36EE0852FEF35BA4 , int32_t, int32_t, int32_t, int32_t >::Invoke(19 /* Unity.Collections.NativeArray`1<UnityEngine.XR.ARSubsystems.XRHumanBodyPose2DJoint> UnityEngine.XR.ARSubsystems.XRHumanBodySubsystem/Provider::GetHumanBodyPose2DJoints(UnityEngine.XR.ARSubsystems.XRHumanBodyPose2DJoint,System.Int32,System.Int32,UnityEngine.ScreenOrientation,Unity.Collections.Allocator) */, L_0, L_1, L_2, L_3, L_4, L_5);
return L_6;
}
}
// System.Boolean UnityEngine.XR.ARSubsystems.XRHumanBodySubsystem::Register(UnityEngine.XR.ARSubsystems.XRHumanBodySubsystemCinfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XRHumanBodySubsystem_Register_m6BB9F0962D03E5A76F3D7434D1F4161A51E7485B (XRHumanBodySubsystemCinfo_tAFFD9EF9197B51AA2EAC628F54C90C842B7E54CC ___humanBodySubsystemCinfo0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SubsystemDescriptorStore_tE5D99C3159868DE6506269CB6B830621F8BC31A6_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
// XRHumanBodySubsystemDescriptor humanBodySubsystemDescriptor = XRHumanBodySubsystemDescriptor.Create(humanBodySubsystemCinfo);
XRHumanBodySubsystemCinfo_tAFFD9EF9197B51AA2EAC628F54C90C842B7E54CC L_0 = ___humanBodySubsystemCinfo0;
XRHumanBodySubsystemDescriptor_t00E75DD05B03BCC1BF5A794547615692B7A55C04 * L_1;
L_1 = XRHumanBodySubsystemDescriptor_Create_m2B95524971D41DDAC90B9E194A727C814BAB32C6(L_0, /*hidden argument*/NULL);
// SubsystemDescriptorStore.RegisterDescriptor(humanBodySubsystemDescriptor);
IL2CPP_RUNTIME_CLASS_INIT(SubsystemDescriptorStore_tE5D99C3159868DE6506269CB6B830621F8BC31A6_il2cpp_TypeInfo_var);
SubsystemDescriptorStore_RegisterDescriptor_m5586866BB233EF26B98640851816DD1764657688(L_1, /*hidden argument*/NULL);
// return true;
return (bool)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
// Conversion methods for marshalling of: UnityEngine.XR.ARSubsystems.XRHumanBodySubsystemCinfo
IL2CPP_EXTERN_C void XRHumanBodySubsystemCinfo_tAFFD9EF9197B51AA2EAC628F54C90C842B7E54CC_marshal_pinvoke(const XRHumanBodySubsystemCinfo_tAFFD9EF9197B51AA2EAC628F54C90C842B7E54CC& unmarshaled, XRHumanBodySubsystemCinfo_tAFFD9EF9197B51AA2EAC628F54C90C842B7E54CC_marshaled_pinvoke& marshaled)
{
Exception_t* ___U3CproviderTypeU3Ek__BackingField_1Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field '<providerType>k__BackingField' of type 'XRHumanBodySubsystemCinfo': Reference type field marshaling is not supported.");
IL2CPP_RAISE_MANAGED_EXCEPTION(___U3CproviderTypeU3Ek__BackingField_1Exception, NULL);
}
IL2CPP_EXTERN_C void XRHumanBodySubsystemCinfo_tAFFD9EF9197B51AA2EAC628F54C90C842B7E54CC_marshal_pinvoke_back(const XRHumanBodySubsystemCinfo_tAFFD9EF9197B51AA2EAC628F54C90C842B7E54CC_marshaled_pinvoke& marshaled, XRHumanBodySubsystemCinfo_tAFFD9EF9197B51AA2EAC628F54C90C842B7E54CC& unmarshaled)
{
Exception_t* ___U3CproviderTypeU3Ek__BackingField_1Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field '<providerType>k__BackingField' of type 'XRHumanBodySubsystemCinfo': Reference type field marshaling is not supported.");
IL2CPP_RAISE_MANAGED_EXCEPTION(___U3CproviderTypeU3Ek__BackingField_1Exception, NULL);
}
// Conversion method for clean up from marshalling of: UnityEngine.XR.ARSubsystems.XRHumanBodySubsystemCinfo
IL2CPP_EXTERN_C void XRHumanBodySubsystemCinfo_tAFFD9EF9197B51AA2EAC628F54C90C842B7E54CC_marshal_pinvoke_cleanup(XRHumanBodySubsystemCinfo_tAFFD9EF9197B51AA2EAC628F54C90C842B7E54CC_marshaled_pinvoke& marshaled)
{
}
// Conversion methods for marshalling of: UnityEngine.XR.ARSubsystems.XRHumanBodySubsystemCinfo
IL2CPP_EXTERN_C void XRHumanBodySubsystemCinfo_tAFFD9EF9197B51AA2EAC628F54C90C842B7E54CC_marshal_com(const XRHumanBodySubsystemCinfo_tAFFD9EF9197B51AA2EAC628F54C90C842B7E54CC& unmarshaled, XRHumanBodySubsystemCinfo_tAFFD9EF9197B51AA2EAC628F54C90C842B7E54CC_marshaled_com& marshaled)
{
Exception_t* ___U3CproviderTypeU3Ek__BackingField_1Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field '<providerType>k__BackingField' of type 'XRHumanBodySubsystemCinfo': Reference type field marshaling is not supported.");
IL2CPP_RAISE_MANAGED_EXCEPTION(___U3CproviderTypeU3Ek__BackingField_1Exception, NULL);
}
IL2CPP_EXTERN_C void XRHumanBodySubsystemCinfo_tAFFD9EF9197B51AA2EAC628F54C90C842B7E54CC_marshal_com_back(const XRHumanBodySubsystemCinfo_tAFFD9EF9197B51AA2EAC628F54C90C842B7E54CC_marshaled_com& marshaled, XRHumanBodySubsystemCinfo_tAFFD9EF9197B51AA2EAC628F54C90C842B7E54CC& unmarshaled)
{
Exception_t* ___U3CproviderTypeU3Ek__BackingField_1Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field '<providerType>k__BackingField' of type 'XRHumanBodySubsystemCinfo': Reference type field marshaling is not supported.");
IL2CPP_RAISE_MANAGED_EXCEPTION(___U3CproviderTypeU3Ek__BackingField_1Exception, NULL);
}
// Conversion method for clean up from marshalling of: UnityEngine.XR.ARSubsystems.XRHumanBodySubsystemCinfo
IL2CPP_EXTERN_C void XRHumanBodySubsystemCinfo_tAFFD9EF9197B51AA2EAC628F54C90C842B7E54CC_marshal_com_cleanup(XRHumanBodySubsystemCinfo_tAFFD9EF9197B51AA2EAC628F54C90C842B7E54CC_marshaled_com& marshaled)
{
}
// System.String UnityEngine.XR.ARSubsystems.XRHumanBodySubsystemCinfo::get_id()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XRHumanBodySubsystemCinfo_get_id_m6ECD1B43CC3A0BF83286383CA417ECAFB750CB74 (XRHumanBodySubsystemCinfo_tAFFD9EF9197B51AA2EAC628F54C90C842B7E54CC * __this, const RuntimeMethod* method)
{
{
// public string id { get; set; }
String_t* L_0 = __this->get_U3CidU3Ek__BackingField_0();
return L_0;
}
}
IL2CPP_EXTERN_C String_t* XRHumanBodySubsystemCinfo_get_id_m6ECD1B43CC3A0BF83286383CA417ECAFB750CB74_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
XRHumanBodySubsystemCinfo_tAFFD9EF9197B51AA2EAC628F54C90C842B7E54CC * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XRHumanBodySubsystemCinfo_tAFFD9EF9197B51AA2EAC628F54C90C842B7E54CC *>(__this + _offset);
String_t* _returnValue;
_returnValue = XRHumanBodySubsystemCinfo_get_id_m6ECD1B43CC3A0BF83286383CA417ECAFB750CB74_inline(_thisAdjusted, method);
return _returnValue;
}
// System.Void UnityEngine.XR.ARSubsystems.XRHumanBodySubsystemCinfo::set_id(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRHumanBodySubsystemCinfo_set_id_m379B96A2CE563FFD6CAC41112068975C8875B3A7 (XRHumanBodySubsystemCinfo_tAFFD9EF9197B51AA2EAC628F54C90C842B7E54CC * __this, String_t* ___value0, const RuntimeMethod* method)
{
{
// public string id { get; set; }
String_t* L_0 = ___value0;
__this->set_U3CidU3Ek__BackingField_0(L_0);
return;
}
}
IL2CPP_EXTERN_C void XRHumanBodySubsystemCinfo_set_id_m379B96A2CE563FFD6CAC41112068975C8875B3A7_AdjustorThunk (RuntimeObject * __this, String_t* ___value0, const RuntimeMethod* method)
{
XRHumanBodySubsystemCinfo_tAFFD9EF9197B51AA2EAC628F54C90C842B7E54CC * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XRHumanBodySubsystemCinfo_tAFFD9EF9197B51AA2EAC628F54C90C842B7E54CC *>(__this + _offset);
XRHumanBodySubsystemCinfo_set_id_m379B96A2CE563FFD6CAC41112068975C8875B3A7_inline(_thisAdjusted, ___value0, method);
}
// System.Type UnityEngine.XR.ARSubsystems.XRHumanBodySubsystemCinfo::get_providerType()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t * XRHumanBodySubsystemCinfo_get_providerType_m9FEA7CEFDEEACC1D13C859C31A2325E50A6132DD (XRHumanBodySubsystemCinfo_tAFFD9EF9197B51AA2EAC628F54C90C842B7E54CC * __this, const RuntimeMethod* method)
{
{
// public Type providerType { get; set; }
Type_t * L_0 = __this->get_U3CproviderTypeU3Ek__BackingField_1();
return L_0;
}
}
IL2CPP_EXTERN_C Type_t * XRHumanBodySubsystemCinfo_get_providerType_m9FEA7CEFDEEACC1D13C859C31A2325E50A6132DD_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
XRHumanBodySubsystemCinfo_tAFFD9EF9197B51AA2EAC628F54C90C842B7E54CC * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XRHumanBodySubsystemCinfo_tAFFD9EF9197B51AA2EAC628F54C90C842B7E54CC *>(__this + _offset);
Type_t * _returnValue;
_returnValue = XRHumanBodySubsystemCinfo_get_providerType_m9FEA7CEFDEEACC1D13C859C31A2325E50A6132DD_inline(_thisAdjusted, method);
return _returnValue;
}
// System.Void UnityEngine.XR.ARSubsystems.XRHumanBodySubsystemCinfo::set_providerType(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRHumanBodySubsystemCinfo_set_providerType_mA34C98EF6EDDFADFF83C4062C0AF33F3C7BA61A5 (XRHumanBodySubsystemCinfo_tAFFD9EF9197B51AA2EAC628F54C90C842B7E54CC * __this, Type_t * ___value0, const RuntimeMethod* method)
{
{
// public Type providerType { get; set; }
Type_t * L_0 = ___value0;
__this->set_U3CproviderTypeU3Ek__BackingField_1(L_0);
return;
}
}
IL2CPP_EXTERN_C void XRHumanBodySubsystemCinfo_set_providerType_mA34C98EF6EDDFADFF83C4062C0AF33F3C7BA61A5_AdjustorThunk (RuntimeObject * __this, Type_t * ___value0, const RuntimeMethod* method)
{
XRHumanBodySubsystemCinfo_tAFFD9EF9197B51AA2EAC628F54C90C842B7E54CC * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XRHumanBodySubsystemCinfo_tAFFD9EF9197B51AA2EAC628F54C90C842B7E54CC *>(__this + _offset);
XRHumanBodySubsystemCinfo_set_providerType_mA34C98EF6EDDFADFF83C4062C0AF33F3C7BA61A5_inline(_thisAdjusted, ___value0, method);
}
// System.Type UnityEngine.XR.ARSubsystems.XRHumanBodySubsystemCinfo::get_subsystemTypeOverride()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t * XRHumanBodySubsystemCinfo_get_subsystemTypeOverride_mB03C7A5BC048D86AAE6334A221E1DF2FEE059754 (XRHumanBodySubsystemCinfo_tAFFD9EF9197B51AA2EAC628F54C90C842B7E54CC * __this, const RuntimeMethod* method)
{
{
// public Type subsystemTypeOverride { get; set; }
Type_t * L_0 = __this->get_U3CsubsystemTypeOverrideU3Ek__BackingField_2();
return L_0;
}
}
IL2CPP_EXTERN_C Type_t * XRHumanBodySubsystemCinfo_get_subsystemTypeOverride_mB03C7A5BC048D86AAE6334A221E1DF2FEE059754_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
XRHumanBodySubsystemCinfo_tAFFD9EF9197B51AA2EAC628F54C90C842B7E54CC * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XRHumanBodySubsystemCinfo_tAFFD9EF9197B51AA2EAC628F54C90C842B7E54CC *>(__this + _offset);
Type_t * _returnValue;
_returnValue = XRHumanBodySubsystemCinfo_get_subsystemTypeOverride_mB03C7A5BC048D86AAE6334A221E1DF2FEE059754_inline(_thisAdjusted, method);
return _returnValue;
}
// System.Void UnityEngine.XR.ARSubsystems.XRHumanBodySubsystemCinfo::set_subsystemTypeOverride(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRHumanBodySubsystemCinfo_set_subsystemTypeOverride_m73A633BECC2393CEB62B95FCF9CD7B32BFDB19FF (XRHumanBodySubsystemCinfo_tAFFD9EF9197B51AA2EAC628F54C90C842B7E54CC * __this, Type_t * ___value0, const RuntimeMethod* method)
{
{
// public Type subsystemTypeOverride { get; set; }
Type_t * L_0 = ___value0;
__this->set_U3CsubsystemTypeOverrideU3Ek__BackingField_2(L_0);
return;
}
}
IL2CPP_EXTERN_C void XRHumanBodySubsystemCinfo_set_subsystemTypeOverride_m73A633BECC2393CEB62B95FCF9CD7B32BFDB19FF_AdjustorThunk (RuntimeObject * __this, Type_t * ___value0, const RuntimeMethod* method)
{
XRHumanBodySubsystemCinfo_tAFFD9EF9197B51AA2EAC628F54C90C842B7E54CC * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XRHumanBodySubsystemCinfo_tAFFD9EF9197B51AA2EAC628F54C90C842B7E54CC *>(__this + _offset);
XRHumanBodySubsystemCinfo_set_subsystemTypeOverride_m73A633BECC2393CEB62B95FCF9CD7B32BFDB19FF_inline(_thisAdjusted, ___value0, method);
}
// System.Boolean UnityEngine.XR.ARSubsystems.XRHumanBodySubsystemCinfo::get_supportsHumanBody2D()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XRHumanBodySubsystemCinfo_get_supportsHumanBody2D_m26CC2FAAFF325E448010E9DFFDC2CF78C5118E71 (XRHumanBodySubsystemCinfo_tAFFD9EF9197B51AA2EAC628F54C90C842B7E54CC * __this, const RuntimeMethod* method)
{
{
// public bool supportsHumanBody2D { get; set; }
bool L_0 = __this->get_U3CsupportsHumanBody2DU3Ek__BackingField_4();
return L_0;
}
}
IL2CPP_EXTERN_C bool XRHumanBodySubsystemCinfo_get_supportsHumanBody2D_m26CC2FAAFF325E448010E9DFFDC2CF78C5118E71_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
XRHumanBodySubsystemCinfo_tAFFD9EF9197B51AA2EAC628F54C90C842B7E54CC * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XRHumanBodySubsystemCinfo_tAFFD9EF9197B51AA2EAC628F54C90C842B7E54CC *>(__this + _offset);
bool _returnValue;
_returnValue = XRHumanBodySubsystemCinfo_get_supportsHumanBody2D_m26CC2FAAFF325E448010E9DFFDC2CF78C5118E71_inline(_thisAdjusted, method);
return _returnValue;
}
// System.Void UnityEngine.XR.ARSubsystems.XRHumanBodySubsystemCinfo::set_supportsHumanBody2D(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRHumanBodySubsystemCinfo_set_supportsHumanBody2D_m33B2A01C8E5F61DFE604BDCD2D438EC0B3C45551 (XRHumanBodySubsystemCinfo_tAFFD9EF9197B51AA2EAC628F54C90C842B7E54CC * __this, bool ___value0, const RuntimeMethod* method)
{
{
// public bool supportsHumanBody2D { get; set; }
bool L_0 = ___value0;
__this->set_U3CsupportsHumanBody2DU3Ek__BackingField_4(L_0);
return;
}
}
IL2CPP_EXTERN_C void XRHumanBodySubsystemCinfo_set_supportsHumanBody2D_m33B2A01C8E5F61DFE604BDCD2D438EC0B3C45551_AdjustorThunk (RuntimeObject * __this, bool ___value0, const RuntimeMethod* method)
{
XRHumanBodySubsystemCinfo_tAFFD9EF9197B51AA2EAC628F54C90C842B7E54CC * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XRHumanBodySubsystemCinfo_tAFFD9EF9197B51AA2EAC628F54C90C842B7E54CC *>(__this + _offset);
XRHumanBodySubsystemCinfo_set_supportsHumanBody2D_m33B2A01C8E5F61DFE604BDCD2D438EC0B3C45551_inline(_thisAdjusted, ___value0, method);
}
// System.Boolean UnityEngine.XR.ARSubsystems.XRHumanBodySubsystemCinfo::get_supportsHumanBody3D()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XRHumanBodySubsystemCinfo_get_supportsHumanBody3D_m43BFDC9F4E92ECDE599A826C24D951AF90D76331 (XRHumanBodySubsystemCinfo_tAFFD9EF9197B51AA2EAC628F54C90C842B7E54CC * __this, const RuntimeMethod* method)
{
{
// public bool supportsHumanBody3D { get; set; }
bool L_0 = __this->get_U3CsupportsHumanBody3DU3Ek__BackingField_5();
return L_0;
}
}
IL2CPP_EXTERN_C bool XRHumanBodySubsystemCinfo_get_supportsHumanBody3D_m43BFDC9F4E92ECDE599A826C24D951AF90D76331_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
XRHumanBodySubsystemCinfo_tAFFD9EF9197B51AA2EAC628F54C90C842B7E54CC * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XRHumanBodySubsystemCinfo_tAFFD9EF9197B51AA2EAC628F54C90C842B7E54CC *>(__this + _offset);
bool _returnValue;
_returnValue = XRHumanBodySubsystemCinfo_get_supportsHumanBody3D_m43BFDC9F4E92ECDE599A826C24D951AF90D76331_inline(_thisAdjusted, method);
return _returnValue;
}
// System.Void UnityEngine.XR.ARSubsystems.XRHumanBodySubsystemCinfo::set_supportsHumanBody3D(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRHumanBodySubsystemCinfo_set_supportsHumanBody3D_mE30720F10B501314868ABDBE2EDCE11D0A333D24 (XRHumanBodySubsystemCinfo_tAFFD9EF9197B51AA2EAC628F54C90C842B7E54CC * __this, bool ___value0, const RuntimeMethod* method)
{
{
// public bool supportsHumanBody3D { get; set; }
bool L_0 = ___value0;
__this->set_U3CsupportsHumanBody3DU3Ek__BackingField_5(L_0);
return;
}
}
IL2CPP_EXTERN_C void XRHumanBodySubsystemCinfo_set_supportsHumanBody3D_mE30720F10B501314868ABDBE2EDCE11D0A333D24_AdjustorThunk (RuntimeObject * __this, bool ___value0, const RuntimeMethod* method)
{
XRHumanBodySubsystemCinfo_tAFFD9EF9197B51AA2EAC628F54C90C842B7E54CC * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XRHumanBodySubsystemCinfo_tAFFD9EF9197B51AA2EAC628F54C90C842B7E54CC *>(__this + _offset);
XRHumanBodySubsystemCinfo_set_supportsHumanBody3D_mE30720F10B501314868ABDBE2EDCE11D0A333D24_inline(_thisAdjusted, ___value0, method);
}
// System.Boolean UnityEngine.XR.ARSubsystems.XRHumanBodySubsystemCinfo::get_supportsHumanBody3DScaleEstimation()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XRHumanBodySubsystemCinfo_get_supportsHumanBody3DScaleEstimation_mDC1321982924ADE85F14D4AA959D2B593D378380 (XRHumanBodySubsystemCinfo_tAFFD9EF9197B51AA2EAC628F54C90C842B7E54CC * __this, const RuntimeMethod* method)
{
{
// public bool supportsHumanBody3DScaleEstimation { get; set; }
bool L_0 = __this->get_U3CsupportsHumanBody3DScaleEstimationU3Ek__BackingField_6();
return L_0;
}
}
IL2CPP_EXTERN_C bool XRHumanBodySubsystemCinfo_get_supportsHumanBody3DScaleEstimation_mDC1321982924ADE85F14D4AA959D2B593D378380_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
XRHumanBodySubsystemCinfo_tAFFD9EF9197B51AA2EAC628F54C90C842B7E54CC * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XRHumanBodySubsystemCinfo_tAFFD9EF9197B51AA2EAC628F54C90C842B7E54CC *>(__this + _offset);
bool _returnValue;
_returnValue = XRHumanBodySubsystemCinfo_get_supportsHumanBody3DScaleEstimation_mDC1321982924ADE85F14D4AA959D2B593D378380_inline(_thisAdjusted, method);
return _returnValue;
}
// System.Void UnityEngine.XR.ARSubsystems.XRHumanBodySubsystemCinfo::set_supportsHumanBody3DScaleEstimation(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRHumanBodySubsystemCinfo_set_supportsHumanBody3DScaleEstimation_m72411E882EB28AB5BD33F4D266918FA3DB355782 (XRHumanBodySubsystemCinfo_tAFFD9EF9197B51AA2EAC628F54C90C842B7E54CC * __this, bool ___value0, const RuntimeMethod* method)
{
{
// public bool supportsHumanBody3DScaleEstimation { get; set; }
bool L_0 = ___value0;
__this->set_U3CsupportsHumanBody3DScaleEstimationU3Ek__BackingField_6(L_0);
return;
}
}
IL2CPP_EXTERN_C void XRHumanBodySubsystemCinfo_set_supportsHumanBody3DScaleEstimation_m72411E882EB28AB5BD33F4D266918FA3DB355782_AdjustorThunk (RuntimeObject * __this, bool ___value0, const RuntimeMethod* method)
{
XRHumanBodySubsystemCinfo_tAFFD9EF9197B51AA2EAC628F54C90C842B7E54CC * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XRHumanBodySubsystemCinfo_tAFFD9EF9197B51AA2EAC628F54C90C842B7E54CC *>(__this + _offset);
XRHumanBodySubsystemCinfo_set_supportsHumanBody3DScaleEstimation_m72411E882EB28AB5BD33F4D266918FA3DB355782_inline(_thisAdjusted, ___value0, method);
}
// System.Boolean UnityEngine.XR.ARSubsystems.XRHumanBodySubsystemCinfo::Equals(UnityEngine.XR.ARSubsystems.XRHumanBodySubsystemCinfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XRHumanBodySubsystemCinfo_Equals_m0109935097AF2BEE70F4AABB3B8701C50D300F2A (XRHumanBodySubsystemCinfo_tAFFD9EF9197B51AA2EAC628F54C90C842B7E54CC * __this, XRHumanBodySubsystemCinfo_tAFFD9EF9197B51AA2EAC628F54C90C842B7E54CC ___other0, const RuntimeMethod* method)
{
bool V_0 = false;
{
// return
// ReferenceEquals(id, other.id)
// #if UNITY_2020_2_OR_NEWER
// && ReferenceEquals(providerType, other.providerType)
// && ReferenceEquals(subsystemTypeOverride, subsystemTypeOverride)
// #else
// && ReferenceEquals(implementationType, other.implementationType)
// #endif
// && supportsHumanBody2D.Equals(other.supportsHumanBody2D)
// && supportsHumanBody3D.Equals(other.supportsHumanBody3D)
// && supportsHumanBody3DScaleEstimation.Equals(other.supportsHumanBody3DScaleEstimation);
String_t* L_0;
L_0 = XRHumanBodySubsystemCinfo_get_id_m6ECD1B43CC3A0BF83286383CA417ECAFB750CB74_inline((XRHumanBodySubsystemCinfo_tAFFD9EF9197B51AA2EAC628F54C90C842B7E54CC *)__this, /*hidden argument*/NULL);
String_t* L_1;
L_1 = XRHumanBodySubsystemCinfo_get_id_m6ECD1B43CC3A0BF83286383CA417ECAFB750CB74_inline((XRHumanBodySubsystemCinfo_tAFFD9EF9197B51AA2EAC628F54C90C842B7E54CC *)(&___other0), /*hidden argument*/NULL);
if ((!(((RuntimeObject*)(String_t*)L_0) == ((RuntimeObject*)(String_t*)L_1))))
{
goto IL_0070;
}
}
{
Type_t * L_2;
L_2 = XRHumanBodySubsystemCinfo_get_providerType_m9FEA7CEFDEEACC1D13C859C31A2325E50A6132DD_inline((XRHumanBodySubsystemCinfo_tAFFD9EF9197B51AA2EAC628F54C90C842B7E54CC *)__this, /*hidden argument*/NULL);
Type_t * L_3;
L_3 = XRHumanBodySubsystemCinfo_get_providerType_m9FEA7CEFDEEACC1D13C859C31A2325E50A6132DD_inline((XRHumanBodySubsystemCinfo_tAFFD9EF9197B51AA2EAC628F54C90C842B7E54CC *)(&___other0), /*hidden argument*/NULL);
if ((!(((RuntimeObject*)(Type_t *)L_2) == ((RuntimeObject*)(Type_t *)L_3))))
{
goto IL_0070;
}
}
{
Type_t * L_4;
L_4 = XRHumanBodySubsystemCinfo_get_subsystemTypeOverride_mB03C7A5BC048D86AAE6334A221E1DF2FEE059754_inline((XRHumanBodySubsystemCinfo_tAFFD9EF9197B51AA2EAC628F54C90C842B7E54CC *)__this, /*hidden argument*/NULL);
Type_t * L_5;
L_5 = XRHumanBodySubsystemCinfo_get_subsystemTypeOverride_mB03C7A5BC048D86AAE6334A221E1DF2FEE059754_inline((XRHumanBodySubsystemCinfo_tAFFD9EF9197B51AA2EAC628F54C90C842B7E54CC *)__this, /*hidden argument*/NULL);
if ((!(((RuntimeObject*)(Type_t *)L_4) == ((RuntimeObject*)(Type_t *)L_5))))
{
goto IL_0070;
}
}
{
bool L_6;
L_6 = XRHumanBodySubsystemCinfo_get_supportsHumanBody2D_m26CC2FAAFF325E448010E9DFFDC2CF78C5118E71_inline((XRHumanBodySubsystemCinfo_tAFFD9EF9197B51AA2EAC628F54C90C842B7E54CC *)__this, /*hidden argument*/NULL);
V_0 = L_6;
bool L_7;
L_7 = XRHumanBodySubsystemCinfo_get_supportsHumanBody2D_m26CC2FAAFF325E448010E9DFFDC2CF78C5118E71_inline((XRHumanBodySubsystemCinfo_tAFFD9EF9197B51AA2EAC628F54C90C842B7E54CC *)(&___other0), /*hidden argument*/NULL);
bool L_8;
L_8 = Boolean_Equals_mC63D03B4DE1BBC68835530A9E0384FDDB0AC1A3D((bool*)(&V_0), L_7, /*hidden argument*/NULL);
if (!L_8)
{
goto IL_0070;
}
}
{
bool L_9;
L_9 = XRHumanBodySubsystemCinfo_get_supportsHumanBody3D_m43BFDC9F4E92ECDE599A826C24D951AF90D76331_inline((XRHumanBodySubsystemCinfo_tAFFD9EF9197B51AA2EAC628F54C90C842B7E54CC *)__this, /*hidden argument*/NULL);
V_0 = L_9;
bool L_10;
L_10 = XRHumanBodySubsystemCinfo_get_supportsHumanBody3D_m43BFDC9F4E92ECDE599A826C24D951AF90D76331_inline((XRHumanBodySubsystemCinfo_tAFFD9EF9197B51AA2EAC628F54C90C842B7E54CC *)(&___other0), /*hidden argument*/NULL);
bool L_11;
L_11 = Boolean_Equals_mC63D03B4DE1BBC68835530A9E0384FDDB0AC1A3D((bool*)(&V_0), L_10, /*hidden argument*/NULL);
if (!L_11)
{
goto IL_0070;
}
}
{
bool L_12;
L_12 = XRHumanBodySubsystemCinfo_get_supportsHumanBody3DScaleEstimation_mDC1321982924ADE85F14D4AA959D2B593D378380_inline((XRHumanBodySubsystemCinfo_tAFFD9EF9197B51AA2EAC628F54C90C842B7E54CC *)__this, /*hidden argument*/NULL);
V_0 = L_12;
bool L_13;
L_13 = XRHumanBodySubsystemCinfo_get_supportsHumanBody3DScaleEstimation_mDC1321982924ADE85F14D4AA959D2B593D378380_inline((XRHumanBodySubsystemCinfo_tAFFD9EF9197B51AA2EAC628F54C90C842B7E54CC *)(&___other0), /*hidden argument*/NULL);
bool L_14;
L_14 = Boolean_Equals_mC63D03B4DE1BBC68835530A9E0384FDDB0AC1A3D((bool*)(&V_0), L_13, /*hidden argument*/NULL);
return L_14;
}
IL_0070:
{
return (bool)0;
}
}
IL2CPP_EXTERN_C bool XRHumanBodySubsystemCinfo_Equals_m0109935097AF2BEE70F4AABB3B8701C50D300F2A_AdjustorThunk (RuntimeObject * __this, XRHumanBodySubsystemCinfo_tAFFD9EF9197B51AA2EAC628F54C90C842B7E54CC ___other0, const RuntimeMethod* method)
{
XRHumanBodySubsystemCinfo_tAFFD9EF9197B51AA2EAC628F54C90C842B7E54CC * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XRHumanBodySubsystemCinfo_tAFFD9EF9197B51AA2EAC628F54C90C842B7E54CC *>(__this + _offset);
bool _returnValue;
_returnValue = XRHumanBodySubsystemCinfo_Equals_m0109935097AF2BEE70F4AABB3B8701C50D300F2A(_thisAdjusted, ___other0, method);
return _returnValue;
}
// System.Boolean UnityEngine.XR.ARSubsystems.XRHumanBodySubsystemCinfo::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XRHumanBodySubsystemCinfo_Equals_mC6D157C1801D45FFAA926C64D9C7AFFE6EDAC698 (XRHumanBodySubsystemCinfo_tAFFD9EF9197B51AA2EAC628F54C90C842B7E54CC * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XRHumanBodySubsystemCinfo_tAFFD9EF9197B51AA2EAC628F54C90C842B7E54CC_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
// return ((obj is XRHumanBodySubsystemCinfo) && Equals((XRHumanBodySubsystemCinfo)obj));
RuntimeObject * L_0 = ___obj0;
if (!((RuntimeObject *)IsInstSealed((RuntimeObject*)L_0, XRHumanBodySubsystemCinfo_tAFFD9EF9197B51AA2EAC628F54C90C842B7E54CC_il2cpp_TypeInfo_var)))
{
goto IL_0015;
}
}
{
RuntimeObject * L_1 = ___obj0;
bool L_2;
L_2 = XRHumanBodySubsystemCinfo_Equals_m0109935097AF2BEE70F4AABB3B8701C50D300F2A((XRHumanBodySubsystemCinfo_tAFFD9EF9197B51AA2EAC628F54C90C842B7E54CC *)__this, ((*(XRHumanBodySubsystemCinfo_tAFFD9EF9197B51AA2EAC628F54C90C842B7E54CC *)((XRHumanBodySubsystemCinfo_tAFFD9EF9197B51AA2EAC628F54C90C842B7E54CC *)UnBox(L_1, XRHumanBodySubsystemCinfo_tAFFD9EF9197B51AA2EAC628F54C90C842B7E54CC_il2cpp_TypeInfo_var)))), /*hidden argument*/NULL);
return L_2;
}
IL_0015:
{
return (bool)0;
}
}
IL2CPP_EXTERN_C bool XRHumanBodySubsystemCinfo_Equals_mC6D157C1801D45FFAA926C64D9C7AFFE6EDAC698_AdjustorThunk (RuntimeObject * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
XRHumanBodySubsystemCinfo_tAFFD9EF9197B51AA2EAC628F54C90C842B7E54CC * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XRHumanBodySubsystemCinfo_tAFFD9EF9197B51AA2EAC628F54C90C842B7E54CC *>(__this + _offset);
bool _returnValue;
_returnValue = XRHumanBodySubsystemCinfo_Equals_mC6D157C1801D45FFAA926C64D9C7AFFE6EDAC698(_thisAdjusted, ___obj0, method);
return _returnValue;
}
// System.Int32 UnityEngine.XR.ARSubsystems.XRHumanBodySubsystemCinfo::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XRHumanBodySubsystemCinfo_GetHashCode_m24E654BBE6D31E8A07F1B139BDEFF49BF4D77BAF (XRHumanBodySubsystemCinfo_tAFFD9EF9197B51AA2EAC628F54C90C842B7E54CC * __this, const RuntimeMethod* method)
{
bool V_0 = false;
{
// int hashCode = 486187739;
// hashCode = (hashCode * 486187739) + HashCode.ReferenceHash(id);
String_t* L_0;
L_0 = XRHumanBodySubsystemCinfo_get_id_m6ECD1B43CC3A0BF83286383CA417ECAFB750CB74_inline((XRHumanBodySubsystemCinfo_tAFFD9EF9197B51AA2EAC628F54C90C842B7E54CC *)__this, /*hidden argument*/NULL);
int32_t L_1;
L_1 = HashCode_ReferenceHash_mE6CC6EA3C87D9F040876D66CF582D6FF68FC359C(L_0, /*hidden argument*/NULL);
// hashCode = (hashCode * 486187739) + HashCode.ReferenceHash(providerType);
Type_t * L_2;
L_2 = XRHumanBodySubsystemCinfo_get_providerType_m9FEA7CEFDEEACC1D13C859C31A2325E50A6132DD_inline((XRHumanBodySubsystemCinfo_tAFFD9EF9197B51AA2EAC628F54C90C842B7E54CC *)__this, /*hidden argument*/NULL);
int32_t L_3;
L_3 = HashCode_ReferenceHash_mE6CC6EA3C87D9F040876D66CF582D6FF68FC359C(L_2, /*hidden argument*/NULL);
// hashCode = (hashCode * 486187739) + HashCode.ReferenceHash(subsystemTypeOverride);
Type_t * L_4;
L_4 = XRHumanBodySubsystemCinfo_get_subsystemTypeOverride_mB03C7A5BC048D86AAE6334A221E1DF2FEE059754_inline((XRHumanBodySubsystemCinfo_tAFFD9EF9197B51AA2EAC628F54C90C842B7E54CC *)__this, /*hidden argument*/NULL);
int32_t L_5;
L_5 = HashCode_ReferenceHash_mE6CC6EA3C87D9F040876D66CF582D6FF68FC359C(L_4, /*hidden argument*/NULL);
// hashCode = (hashCode * 486187739) + supportsHumanBody2D.GetHashCode();
bool L_6;
L_6 = XRHumanBodySubsystemCinfo_get_supportsHumanBody2D_m26CC2FAAFF325E448010E9DFFDC2CF78C5118E71_inline((XRHumanBodySubsystemCinfo_tAFFD9EF9197B51AA2EAC628F54C90C842B7E54CC *)__this, /*hidden argument*/NULL);
V_0 = L_6;
int32_t L_7;
L_7 = Boolean_GetHashCode_m03AF8B3CECAE9106C44A00E3B33E51CBFC45C411((bool*)(&V_0), /*hidden argument*/NULL);
// hashCode = (hashCode * 486187739) + supportsHumanBody3D.GetHashCode();
bool L_8;
L_8 = XRHumanBodySubsystemCinfo_get_supportsHumanBody3D_m43BFDC9F4E92ECDE599A826C24D951AF90D76331_inline((XRHumanBodySubsystemCinfo_tAFFD9EF9197B51AA2EAC628F54C90C842B7E54CC *)__this, /*hidden argument*/NULL);
V_0 = L_8;
int32_t L_9;
L_9 = Boolean_GetHashCode_m03AF8B3CECAE9106C44A00E3B33E51CBFC45C411((bool*)(&V_0), /*hidden argument*/NULL);
// hashCode = (hashCode * 486187739) + supportsHumanBody3DScaleEstimation.GetHashCode();
bool L_10;
L_10 = XRHumanBodySubsystemCinfo_get_supportsHumanBody3DScaleEstimation_mDC1321982924ADE85F14D4AA959D2B593D378380_inline((XRHumanBodySubsystemCinfo_tAFFD9EF9197B51AA2EAC628F54C90C842B7E54CC *)__this, /*hidden argument*/NULL);
V_0 = L_10;
int32_t L_11;
L_11 = Boolean_GetHashCode_m03AF8B3CECAE9106C44A00E3B33E51CBFC45C411((bool*)(&V_0), /*hidden argument*/NULL);
// return hashCode;
return ((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)((int32_t)486187739), (int32_t)((int32_t)486187739))), (int32_t)L_1)), (int32_t)((int32_t)486187739))), (int32_t)L_3)), (int32_t)((int32_t)486187739))), (int32_t)L_5)), (int32_t)((int32_t)486187739))), (int32_t)L_7)), (int32_t)((int32_t)486187739))), (int32_t)L_9)), (int32_t)((int32_t)486187739))), (int32_t)L_11));
}
}
IL2CPP_EXTERN_C int32_t XRHumanBodySubsystemCinfo_GetHashCode_m24E654BBE6D31E8A07F1B139BDEFF49BF4D77BAF_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
XRHumanBodySubsystemCinfo_tAFFD9EF9197B51AA2EAC628F54C90C842B7E54CC * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XRHumanBodySubsystemCinfo_tAFFD9EF9197B51AA2EAC628F54C90C842B7E54CC *>(__this + _offset);
int32_t _returnValue;
_returnValue = XRHumanBodySubsystemCinfo_GetHashCode_m24E654BBE6D31E8A07F1B139BDEFF49BF4D77BAF(_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
// System.Void UnityEngine.XR.ARSubsystems.XRHumanBodySubsystemDescriptor::.ctor(UnityEngine.XR.ARSubsystems.XRHumanBodySubsystemCinfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRHumanBodySubsystemDescriptor__ctor_m9E59594DCE6AD50BFD4F71DCF1E5C2178EB0F6B6 (XRHumanBodySubsystemDescriptor_t00E75DD05B03BCC1BF5A794547615692B7A55C04 * __this, XRHumanBodySubsystemCinfo_tAFFD9EF9197B51AA2EAC628F54C90C842B7E54CC ___humanBodySubsystemCinfo0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SubsystemDescriptorWithProvider_2__ctor_m71AD229762C8901343553A86E6D5763202F24677_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
// XRHumanBodySubsystemDescriptor(XRHumanBodySubsystemCinfo humanBodySubsystemCinfo)
SubsystemDescriptorWithProvider_2__ctor_m71AD229762C8901343553A86E6D5763202F24677(__this, /*hidden argument*/SubsystemDescriptorWithProvider_2__ctor_m71AD229762C8901343553A86E6D5763202F24677_RuntimeMethod_var);
// id = humanBodySubsystemCinfo.id;
String_t* L_0;
L_0 = XRHumanBodySubsystemCinfo_get_id_m6ECD1B43CC3A0BF83286383CA417ECAFB750CB74_inline((XRHumanBodySubsystemCinfo_tAFFD9EF9197B51AA2EAC628F54C90C842B7E54CC *)(&___humanBodySubsystemCinfo0), /*hidden argument*/NULL);
SubsystemDescriptorWithProvider_set_id_mEC6863CDB21597618394D2ED4182A9ED3ACBF220_inline(__this, L_0, /*hidden argument*/NULL);
// providerType = humanBodySubsystemCinfo.providerType;
Type_t * L_1;
L_1 = XRHumanBodySubsystemCinfo_get_providerType_m9FEA7CEFDEEACC1D13C859C31A2325E50A6132DD_inline((XRHumanBodySubsystemCinfo_tAFFD9EF9197B51AA2EAC628F54C90C842B7E54CC *)(&___humanBodySubsystemCinfo0), /*hidden argument*/NULL);
SubsystemDescriptorWithProvider_set_providerType_m672B1F3CC7A12E8569D801F7C79538753C0D9C2D_inline(__this, L_1, /*hidden argument*/NULL);
// subsystemTypeOverride = humanBodySubsystemCinfo.subsystemTypeOverride;
Type_t * L_2;
L_2 = XRHumanBodySubsystemCinfo_get_subsystemTypeOverride_mB03C7A5BC048D86AAE6334A221E1DF2FEE059754_inline((XRHumanBodySubsystemCinfo_tAFFD9EF9197B51AA2EAC628F54C90C842B7E54CC *)(&___humanBodySubsystemCinfo0), /*hidden argument*/NULL);
SubsystemDescriptorWithProvider_set_subsystemTypeOverride_mA453100A7A8FAB35FBE7154E63B5A17D518F41B6_inline(__this, L_2, /*hidden argument*/NULL);
// supportsHumanBody2D = humanBodySubsystemCinfo.supportsHumanBody2D;
bool L_3;
L_3 = XRHumanBodySubsystemCinfo_get_supportsHumanBody2D_m26CC2FAAFF325E448010E9DFFDC2CF78C5118E71_inline((XRHumanBodySubsystemCinfo_tAFFD9EF9197B51AA2EAC628F54C90C842B7E54CC *)(&___humanBodySubsystemCinfo0), /*hidden argument*/NULL);
XRHumanBodySubsystemDescriptor_set_supportsHumanBody2D_m69569A3382D7FB0F2E2FE8DCEA0B0132F2746024_inline(__this, L_3, /*hidden argument*/NULL);
// supportsHumanBody3D = humanBodySubsystemCinfo.supportsHumanBody3D;
bool L_4;
L_4 = XRHumanBodySubsystemCinfo_get_supportsHumanBody3D_m43BFDC9F4E92ECDE599A826C24D951AF90D76331_inline((XRHumanBodySubsystemCinfo_tAFFD9EF9197B51AA2EAC628F54C90C842B7E54CC *)(&___humanBodySubsystemCinfo0), /*hidden argument*/NULL);
XRHumanBodySubsystemDescriptor_set_supportsHumanBody3D_m379699D5A666066DDDFBEAA9BCC983EB81BC8AC6_inline(__this, L_4, /*hidden argument*/NULL);
// supportsHumanBody3DScaleEstimation = humanBodySubsystemCinfo.supportsHumanBody3DScaleEstimation;
bool L_5;
L_5 = XRHumanBodySubsystemCinfo_get_supportsHumanBody3DScaleEstimation_mDC1321982924ADE85F14D4AA959D2B593D378380_inline((XRHumanBodySubsystemCinfo_tAFFD9EF9197B51AA2EAC628F54C90C842B7E54CC *)(&___humanBodySubsystemCinfo0), /*hidden argument*/NULL);
XRHumanBodySubsystemDescriptor_set_supportsHumanBody3DScaleEstimation_m1AA010D35D673EFBB060AEED35E04E6141453E81_inline(__this, L_5, /*hidden argument*/NULL);
// }
return;
}
}
// System.Void UnityEngine.XR.ARSubsystems.XRHumanBodySubsystemDescriptor::set_supportsHumanBody2D(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRHumanBodySubsystemDescriptor_set_supportsHumanBody2D_m69569A3382D7FB0F2E2FE8DCEA0B0132F2746024 (XRHumanBodySubsystemDescriptor_t00E75DD05B03BCC1BF5A794547615692B7A55C04 * __this, bool ___value0, const RuntimeMethod* method)
{
{
// public bool supportsHumanBody2D { get; private set; }
bool L_0 = ___value0;
__this->set_U3CsupportsHumanBody2DU3Ek__BackingField_3(L_0);
return;
}
}
// System.Void UnityEngine.XR.ARSubsystems.XRHumanBodySubsystemDescriptor::set_supportsHumanBody3D(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRHumanBodySubsystemDescriptor_set_supportsHumanBody3D_m379699D5A666066DDDFBEAA9BCC983EB81BC8AC6 (XRHumanBodySubsystemDescriptor_t00E75DD05B03BCC1BF5A794547615692B7A55C04 * __this, bool ___value0, const RuntimeMethod* method)
{
{
// public bool supportsHumanBody3D { get; private set; }
bool L_0 = ___value0;
__this->set_U3CsupportsHumanBody3DU3Ek__BackingField_4(L_0);
return;
}
}
// System.Void UnityEngine.XR.ARSubsystems.XRHumanBodySubsystemDescriptor::set_supportsHumanBody3DScaleEstimation(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRHumanBodySubsystemDescriptor_set_supportsHumanBody3DScaleEstimation_m1AA010D35D673EFBB060AEED35E04E6141453E81 (XRHumanBodySubsystemDescriptor_t00E75DD05B03BCC1BF5A794547615692B7A55C04 * __this, bool ___value0, const RuntimeMethod* method)
{
{
// public bool supportsHumanBody3DScaleEstimation { get; private set; }
bool L_0 = ___value0;
__this->set_U3CsupportsHumanBody3DScaleEstimationU3Ek__BackingField_5(L_0);
return;
}
}
// UnityEngine.XR.ARSubsystems.XRHumanBodySubsystemDescriptor UnityEngine.XR.ARSubsystems.XRHumanBodySubsystemDescriptor::Create(UnityEngine.XR.ARSubsystems.XRHumanBodySubsystemCinfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XRHumanBodySubsystemDescriptor_t00E75DD05B03BCC1BF5A794547615692B7A55C04 * XRHumanBodySubsystemDescriptor_Create_m2B95524971D41DDAC90B9E194A727C814BAB32C6 (XRHumanBodySubsystemCinfo_tAFFD9EF9197B51AA2EAC628F54C90C842B7E54CC ___humanBodySubsystemCinfo0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Provider_t055C90C34B2BCE8D134DF44C12823E320519168C_0_0_0_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XRHumanBodySubsystemDescriptor_t00E75DD05B03BCC1BF5A794547615692B7A55C04_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XRHumanBodySubsystem_t71FBF94503DCE781657FA4F362464EA389CD9F2B_0_0_0_var);
s_Il2CppMethodInitialized = true;
}
{
// if (String.IsNullOrEmpty(humanBodySubsystemCinfo.id))
String_t* L_0;
L_0 = XRHumanBodySubsystemCinfo_get_id_m6ECD1B43CC3A0BF83286383CA417ECAFB750CB74_inline((XRHumanBodySubsystemCinfo_tAFFD9EF9197B51AA2EAC628F54C90C842B7E54CC *)(&___humanBodySubsystemCinfo0), /*hidden argument*/NULL);
bool L_1;
L_1 = String_IsNullOrEmpty_m9AFBB5335B441B94E884B8A9D4A27AD60E3D7F7C(L_0, /*hidden argument*/NULL);
if (!L_1)
{
goto IL_001e;
}
}
{
// throw new ArgumentException("Cannot create human body subsystem descriptor because id is invalid",
// "humanBodySubsystemCinfo");
ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_2 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var)));
ArgumentException__ctor_m71044C2110E357B71A1C30D2561C3F861AF1DC0D(L_2, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral60F35647DEA77E887634D85B00663788842E59AC)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral432E8BB3AE5D710869E78463BD79EB5AF1287DF1)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XRHumanBodySubsystemDescriptor_Create_m2B95524971D41DDAC90B9E194A727C814BAB32C6_RuntimeMethod_var)));
}
IL_001e:
{
// if (humanBodySubsystemCinfo.providerType == null
// || !humanBodySubsystemCinfo.providerType.IsSubclassOf(typeof(XRHumanBodySubsystem.Provider)))
Type_t * L_3;
L_3 = XRHumanBodySubsystemCinfo_get_providerType_m9FEA7CEFDEEACC1D13C859C31A2325E50A6132DD_inline((XRHumanBodySubsystemCinfo_tAFFD9EF9197B51AA2EAC628F54C90C842B7E54CC *)(&___humanBodySubsystemCinfo0), /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
bool L_4;
L_4 = Type_op_Equality_mA438719A1FDF103C7BBBB08AEF564E7FAEEA0046(L_3, (Type_t *)NULL, /*hidden argument*/NULL);
if (L_4)
{
goto IL_0045;
}
}
{
Type_t * L_5;
L_5 = XRHumanBodySubsystemCinfo_get_providerType_m9FEA7CEFDEEACC1D13C859C31A2325E50A6132DD_inline((XRHumanBodySubsystemCinfo_tAFFD9EF9197B51AA2EAC628F54C90C842B7E54CC *)(&___humanBodySubsystemCinfo0), /*hidden argument*/NULL);
RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_6 = { reinterpret_cast<intptr_t> (Provider_t055C90C34B2BCE8D134DF44C12823E320519168C_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_7;
L_7 = Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E(L_6, /*hidden argument*/NULL);
NullCheck(L_5);
bool L_8;
L_8 = VirtualFuncInvoker1< bool, Type_t * >::Invoke(103 /* System.Boolean System.Type::IsSubclassOf(System.Type) */, L_5, L_7);
if (L_8)
{
goto IL_0055;
}
}
IL_0045:
{
// throw new ArgumentException("Cannot create human body subsystem descriptor because providerType is invalid",
// "humanBodySubsystemCinfo");
ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_9 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var)));
ArgumentException__ctor_m71044C2110E357B71A1C30D2561C3F861AF1DC0D(L_9, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral4F48AB40ED10C58263B4B8A12B919BFBF7F87427)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral432E8BB3AE5D710869E78463BD79EB5AF1287DF1)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_9, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XRHumanBodySubsystemDescriptor_Create_m2B95524971D41DDAC90B9E194A727C814BAB32C6_RuntimeMethod_var)));
}
IL_0055:
{
// if (humanBodySubsystemCinfo.subsystemTypeOverride != null
// && !humanBodySubsystemCinfo.subsystemTypeOverride.IsSubclassOf(typeof(XRHumanBodySubsystem)))
Type_t * L_10;
L_10 = XRHumanBodySubsystemCinfo_get_subsystemTypeOverride_mB03C7A5BC048D86AAE6334A221E1DF2FEE059754_inline((XRHumanBodySubsystemCinfo_tAFFD9EF9197B51AA2EAC628F54C90C842B7E54CC *)(&___humanBodySubsystemCinfo0), /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
bool L_11;
L_11 = Type_op_Inequality_m6DDC5E923203A79BF505F9275B694AD3FAA36DB0(L_10, (Type_t *)NULL, /*hidden argument*/NULL);
if (!L_11)
{
goto IL_008c;
}
}
{
Type_t * L_12;
L_12 = XRHumanBodySubsystemCinfo_get_subsystemTypeOverride_mB03C7A5BC048D86AAE6334A221E1DF2FEE059754_inline((XRHumanBodySubsystemCinfo_tAFFD9EF9197B51AA2EAC628F54C90C842B7E54CC *)(&___humanBodySubsystemCinfo0), /*hidden argument*/NULL);
RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_13 = { reinterpret_cast<intptr_t> (XRHumanBodySubsystem_t71FBF94503DCE781657FA4F362464EA389CD9F2B_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_14;
L_14 = Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E(L_13, /*hidden argument*/NULL);
NullCheck(L_12);
bool L_15;
L_15 = VirtualFuncInvoker1< bool, Type_t * >::Invoke(103 /* System.Boolean System.Type::IsSubclassOf(System.Type) */, L_12, L_14);
if (L_15)
{
goto IL_008c;
}
}
{
// throw new ArgumentException("Cannot create human body subsystem descriptor because subsystemTypeOverride is invalid",
// "humanBodySubsystemCinfo");
ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_16 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var)));
ArgumentException__ctor_m71044C2110E357B71A1C30D2561C3F861AF1DC0D(L_16, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral6C36D530882356E81C3DF37AF7B6B8FC59FE1FC0)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral432E8BB3AE5D710869E78463BD79EB5AF1287DF1)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_16, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XRHumanBodySubsystemDescriptor_Create_m2B95524971D41DDAC90B9E194A727C814BAB32C6_RuntimeMethod_var)));
}
IL_008c:
{
// return new XRHumanBodySubsystemDescriptor(humanBodySubsystemCinfo);
XRHumanBodySubsystemCinfo_tAFFD9EF9197B51AA2EAC628F54C90C842B7E54CC L_17 = ___humanBodySubsystemCinfo0;
XRHumanBodySubsystemDescriptor_t00E75DD05B03BCC1BF5A794547615692B7A55C04 * L_18 = (XRHumanBodySubsystemDescriptor_t00E75DD05B03BCC1BF5A794547615692B7A55C04 *)il2cpp_codegen_object_new(XRHumanBodySubsystemDescriptor_t00E75DD05B03BCC1BF5A794547615692B7A55C04_il2cpp_TypeInfo_var);
XRHumanBodySubsystemDescriptor__ctor_m9E59594DCE6AD50BFD4F71DCF1E5C2178EB0F6B6(L_18, L_17, /*hidden argument*/NULL);
return L_18;
}
}
#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
// System.Void UnityEngine.XR.ARSubsystems.XRImageTrackingSubsystem::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRImageTrackingSubsystem__ctor_m411C7B39B354BFB6468A5450B91D63A46CAC3A52 (XRImageTrackingSubsystem_tBC68AD21C11D8D67F3343844E129DF505FF705CE * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TrackingSubsystem_4__ctor_m32646D8A91C0431E968D07362F32CCB0B06BA69D_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
// public XRImageTrackingSubsystem()
TrackingSubsystem_4__ctor_m32646D8A91C0431E968D07362F32CCB0B06BA69D(__this, /*hidden argument*/TrackingSubsystem_4__ctor_m32646D8A91C0431E968D07362F32CCB0B06BA69D_RuntimeMethod_var);
// }
return;
}
}
// System.Void UnityEngine.XR.ARSubsystems.XRImageTrackingSubsystem::OnStart()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRImageTrackingSubsystem_OnStart_mAF567D3768F78146ED8BAC36632AC093E6BF80A2 (XRImageTrackingSubsystem_tBC68AD21C11D8D67F3343844E129DF505FF705CE * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SubsystemWithProvider_3_OnStart_m9491710090F756991A1C20AA8900B7A605EC1DD8_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SubsystemWithProvider_3_get_provider_m036F742F9A0CA88CBD4955C5D1D790474832541F_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
// if (m_ImageLibrary == null)
RuntimeReferenceImageLibrary_t76072EC5637B1F0F8FD0A1BFD3AEAF954D6F8D6B * L_0 = __this->get_m_ImageLibrary_4();
if (L_0)
{
goto IL_0013;
}
}
{
// throw new InvalidOperationException("Cannot start image tracking without an image library.");
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_1 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral3A52E7879DE66D0E349B236E72057CAEC73F1854)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XRImageTrackingSubsystem_OnStart_mAF567D3768F78146ED8BAC36632AC093E6BF80A2_RuntimeMethod_var)));
}
IL_0013:
{
// provider.imageLibrary = m_ImageLibrary;
Provider_tA7CEF856C3BC486ADEBD656F5535E24262AAAE9E * L_2;
L_2 = SubsystemWithProvider_3_get_provider_m036F742F9A0CA88CBD4955C5D1D790474832541F_inline(__this, /*hidden argument*/SubsystemWithProvider_3_get_provider_m036F742F9A0CA88CBD4955C5D1D790474832541F_RuntimeMethod_var);
RuntimeReferenceImageLibrary_t76072EC5637B1F0F8FD0A1BFD3AEAF954D6F8D6B * L_3 = __this->get_m_ImageLibrary_4();
NullCheck(L_2);
VirtualActionInvoker1< RuntimeReferenceImageLibrary_t76072EC5637B1F0F8FD0A1BFD3AEAF954D6F8D6B * >::Invoke(9 /* System.Void UnityEngine.XR.ARSubsystems.XRImageTrackingSubsystem/Provider::set_imageLibrary(UnityEngine.XR.ARSubsystems.RuntimeReferenceImageLibrary) */, L_2, L_3);
// base.OnStart();
SubsystemWithProvider_3_OnStart_m9491710090F756991A1C20AA8900B7A605EC1DD8(__this, /*hidden argument*/SubsystemWithProvider_3_OnStart_m9491710090F756991A1C20AA8900B7A605EC1DD8_RuntimeMethod_var);
// }
return;
}
}
// System.Void UnityEngine.XR.ARSubsystems.XRImageTrackingSubsystem::OnStop()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRImageTrackingSubsystem_OnStop_mDC92A8E24CDCBA4AAF645A364450805AA2CAFFC1 (XRImageTrackingSubsystem_tBC68AD21C11D8D67F3343844E129DF505FF705CE * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SubsystemWithProvider_3_OnStop_mA6831ADA346E703D83E088ED2DCF43B0758B9B43_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SubsystemWithProvider_3_get_provider_m036F742F9A0CA88CBD4955C5D1D790474832541F_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
// base.OnStop();
SubsystemWithProvider_3_OnStop_mA6831ADA346E703D83E088ED2DCF43B0758B9B43(__this, /*hidden argument*/SubsystemWithProvider_3_OnStop_mA6831ADA346E703D83E088ED2DCF43B0758B9B43_RuntimeMethod_var);
// provider.imageLibrary = null;
Provider_tA7CEF856C3BC486ADEBD656F5535E24262AAAE9E * L_0;
L_0 = SubsystemWithProvider_3_get_provider_m036F742F9A0CA88CBD4955C5D1D790474832541F_inline(__this, /*hidden argument*/SubsystemWithProvider_3_get_provider_m036F742F9A0CA88CBD4955C5D1D790474832541F_RuntimeMethod_var);
NullCheck(L_0);
VirtualActionInvoker1< RuntimeReferenceImageLibrary_t76072EC5637B1F0F8FD0A1BFD3AEAF954D6F8D6B * >::Invoke(9 /* System.Void UnityEngine.XR.ARSubsystems.XRImageTrackingSubsystem/Provider::set_imageLibrary(UnityEngine.XR.ARSubsystems.RuntimeReferenceImageLibrary) */, L_0, (RuntimeReferenceImageLibrary_t76072EC5637B1F0F8FD0A1BFD3AEAF954D6F8D6B *)NULL);
// }
return;
}
}
// UnityEngine.XR.ARSubsystems.RuntimeReferenceImageLibrary UnityEngine.XR.ARSubsystems.XRImageTrackingSubsystem::get_imageLibrary()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeReferenceImageLibrary_t76072EC5637B1F0F8FD0A1BFD3AEAF954D6F8D6B * XRImageTrackingSubsystem_get_imageLibrary_mAD310B2D70021A61FCD0BA2C75359BABD31EF8B0 (XRImageTrackingSubsystem_tBC68AD21C11D8D67F3343844E129DF505FF705CE * __this, const RuntimeMethod* method)
{
{
// get => m_ImageLibrary;
RuntimeReferenceImageLibrary_t76072EC5637B1F0F8FD0A1BFD3AEAF954D6F8D6B * L_0 = __this->get_m_ImageLibrary_4();
return L_0;
}
}
// System.Void UnityEngine.XR.ARSubsystems.XRImageTrackingSubsystem::set_imageLibrary(UnityEngine.XR.ARSubsystems.RuntimeReferenceImageLibrary)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRImageTrackingSubsystem_set_imageLibrary_m59E1F17C158BF96B79D15189DBA63B89A4C796A6 (XRImageTrackingSubsystem_tBC68AD21C11D8D67F3343844E129DF505FF705CE * __this, RuntimeReferenceImageLibrary_t76072EC5637B1F0F8FD0A1BFD3AEAF954D6F8D6B * ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SubsystemWithProvider_3_get_provider_m036F742F9A0CA88CBD4955C5D1D790474832541F_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
// if (m_ImageLibrary == value)
RuntimeReferenceImageLibrary_t76072EC5637B1F0F8FD0A1BFD3AEAF954D6F8D6B * L_0 = __this->get_m_ImageLibrary_4();
RuntimeReferenceImageLibrary_t76072EC5637B1F0F8FD0A1BFD3AEAF954D6F8D6B * L_1 = ___value0;
if ((!(((RuntimeObject*)(RuntimeReferenceImageLibrary_t76072EC5637B1F0F8FD0A1BFD3AEAF954D6F8D6B *)L_0) == ((RuntimeObject*)(RuntimeReferenceImageLibrary_t76072EC5637B1F0F8FD0A1BFD3AEAF954D6F8D6B *)L_1))))
{
goto IL_000a;
}
}
{
// return;
return;
}
IL_000a:
{
// if (running && value == null)
bool L_2;
L_2 = SubsystemWithProvider_get_running_m42399652EC4AB466AFBAC9035FA77C1BD6C72406_inline(__this, /*hidden argument*/NULL);
if (!L_2)
{
goto IL_0025;
}
}
{
RuntimeReferenceImageLibrary_t76072EC5637B1F0F8FD0A1BFD3AEAF954D6F8D6B * L_3 = ___value0;
if (L_3)
{
goto IL_0025;
}
}
{
// throw new ArgumentNullException(nameof(value), "Cannot set imageLibrary to null while subsystem is running.");
ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB * L_4 = (ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB_il2cpp_TypeInfo_var)));
ArgumentNullException__ctor_mAD2F05A24C92A657CBCA8C43A9A373C53739A283(L_4, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral46F273EF641E07D271D91E0DC24A4392582671F8)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral17DF22DB953B0B2B32295ED5D22675E806114620)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XRImageTrackingSubsystem_set_imageLibrary_m59E1F17C158BF96B79D15189DBA63B89A4C796A6_RuntimeMethod_var)));
}
IL_0025:
{
// m_ImageLibrary = value;
RuntimeReferenceImageLibrary_t76072EC5637B1F0F8FD0A1BFD3AEAF954D6F8D6B * L_5 = ___value0;
__this->set_m_ImageLibrary_4(L_5);
// if (running)
bool L_6;
L_6 = SubsystemWithProvider_get_running_m42399652EC4AB466AFBAC9035FA77C1BD6C72406_inline(__this, /*hidden argument*/NULL);
if (!L_6)
{
goto IL_0045;
}
}
{
// provider.imageLibrary = m_ImageLibrary;
Provider_tA7CEF856C3BC486ADEBD656F5535E24262AAAE9E * L_7;
L_7 = SubsystemWithProvider_3_get_provider_m036F742F9A0CA88CBD4955C5D1D790474832541F_inline(__this, /*hidden argument*/SubsystemWithProvider_3_get_provider_m036F742F9A0CA88CBD4955C5D1D790474832541F_RuntimeMethod_var);
RuntimeReferenceImageLibrary_t76072EC5637B1F0F8FD0A1BFD3AEAF954D6F8D6B * L_8 = __this->get_m_ImageLibrary_4();
NullCheck(L_7);
VirtualActionInvoker1< RuntimeReferenceImageLibrary_t76072EC5637B1F0F8FD0A1BFD3AEAF954D6F8D6B * >::Invoke(9 /* System.Void UnityEngine.XR.ARSubsystems.XRImageTrackingSubsystem/Provider::set_imageLibrary(UnityEngine.XR.ARSubsystems.RuntimeReferenceImageLibrary) */, L_7, L_8);
}
IL_0045:
{
// }
return;
}
}
// UnityEngine.XR.ARSubsystems.RuntimeReferenceImageLibrary UnityEngine.XR.ARSubsystems.XRImageTrackingSubsystem::CreateRuntimeLibrary(UnityEngine.XR.ARSubsystems.XRReferenceImageLibrary)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeReferenceImageLibrary_t76072EC5637B1F0F8FD0A1BFD3AEAF954D6F8D6B * XRImageTrackingSubsystem_CreateRuntimeLibrary_mB44F6478C6920F919C856084AC89E96ED5A543CC (XRImageTrackingSubsystem_tBC68AD21C11D8D67F3343844E129DF505FF705CE * __this, XRReferenceImageLibrary_tC415743C1DDCE2331D5B0F159B2A1D72A70C44B2 * ___serializedLibrary0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SubsystemWithProvider_3_get_provider_m036F742F9A0CA88CBD4955C5D1D790474832541F_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
// var library = provider.CreateRuntimeLibrary(serializedLibrary);
Provider_tA7CEF856C3BC486ADEBD656F5535E24262AAAE9E * L_0;
L_0 = SubsystemWithProvider_3_get_provider_m036F742F9A0CA88CBD4955C5D1D790474832541F_inline(__this, /*hidden argument*/SubsystemWithProvider_3_get_provider_m036F742F9A0CA88CBD4955C5D1D790474832541F_RuntimeMethod_var);
XRReferenceImageLibrary_tC415743C1DDCE2331D5B0F159B2A1D72A70C44B2 * L_1 = ___serializedLibrary0;
NullCheck(L_0);
RuntimeReferenceImageLibrary_t76072EC5637B1F0F8FD0A1BFD3AEAF954D6F8D6B * L_2;
L_2 = VirtualFuncInvoker1< RuntimeReferenceImageLibrary_t76072EC5637B1F0F8FD0A1BFD3AEAF954D6F8D6B *, XRReferenceImageLibrary_tC415743C1DDCE2331D5B0F159B2A1D72A70C44B2 * >::Invoke(10 /* UnityEngine.XR.ARSubsystems.RuntimeReferenceImageLibrary UnityEngine.XR.ARSubsystems.XRImageTrackingSubsystem/Provider::CreateRuntimeLibrary(UnityEngine.XR.ARSubsystems.XRReferenceImageLibrary) */, L_0, L_1);
// return library;
return L_2;
}
}
// UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.XRTrackedImage> UnityEngine.XR.ARSubsystems.XRImageTrackingSubsystem::GetChanges(Unity.Collections.Allocator)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TrackableChanges_1_tDE6975A36D16B9E01B5B7D815A77EDD62A3EA629 XRImageTrackingSubsystem_GetChanges_m9C289E6EF04C2D66CD8FCF6D9B594995899991DB (XRImageTrackingSubsystem_tBC68AD21C11D8D67F3343844E129DF505FF705CE * __this, int32_t ___allocator0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SubsystemWithProvider_3_get_provider_m036F742F9A0CA88CBD4955C5D1D790474832541F_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XRTrackedImage_t92B53E0621C6D2E930761110E719F0E9580A722F_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
// var changes = provider.GetChanges(XRTrackedImage.defaultValue, allocator);
Provider_tA7CEF856C3BC486ADEBD656F5535E24262AAAE9E * L_0;
L_0 = SubsystemWithProvider_3_get_provider_m036F742F9A0CA88CBD4955C5D1D790474832541F_inline(__this, /*hidden argument*/SubsystemWithProvider_3_get_provider_m036F742F9A0CA88CBD4955C5D1D790474832541F_RuntimeMethod_var);
IL2CPP_RUNTIME_CLASS_INIT(XRTrackedImage_t92B53E0621C6D2E930761110E719F0E9580A722F_il2cpp_TypeInfo_var);
XRTrackedImage_t92B53E0621C6D2E930761110E719F0E9580A722F L_1;
L_1 = XRTrackedImage_get_defaultValue_mF1D23DA4557C85FAEB70039F5D14156F1176E84E_inline(/*hidden argument*/NULL);
int32_t L_2 = ___allocator0;
NullCheck(L_0);
TrackableChanges_1_tDE6975A36D16B9E01B5B7D815A77EDD62A3EA629 L_3;
L_3 = VirtualFuncInvoker2< TrackableChanges_1_tDE6975A36D16B9E01B5B7D815A77EDD62A3EA629 , XRTrackedImage_t92B53E0621C6D2E930761110E719F0E9580A722F , int32_t >::Invoke(8 /* UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.XRTrackedImage> UnityEngine.XR.ARSubsystems.XRImageTrackingSubsystem/Provider::GetChanges(UnityEngine.XR.ARSubsystems.XRTrackedImage,Unity.Collections.Allocator) */, L_0, L_1, L_2);
// return changes;
return L_3;
}
}
// System.Int32 UnityEngine.XR.ARSubsystems.XRImageTrackingSubsystem::get_requestedMaxNumberOfMovingImages()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XRImageTrackingSubsystem_get_requestedMaxNumberOfMovingImages_mFAD0E8FF06634759EE07E7986DB6130CE44FD1F8 (XRImageTrackingSubsystem_tBC68AD21C11D8D67F3343844E129DF505FF705CE * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SubsystemWithProvider_3_get_provider_m036F742F9A0CA88CBD4955C5D1D790474832541F_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
// get => provider.requestedMaxNumberOfMovingImages;
Provider_tA7CEF856C3BC486ADEBD656F5535E24262AAAE9E * L_0;
L_0 = SubsystemWithProvider_3_get_provider_m036F742F9A0CA88CBD4955C5D1D790474832541F_inline(__this, /*hidden argument*/SubsystemWithProvider_3_get_provider_m036F742F9A0CA88CBD4955C5D1D790474832541F_RuntimeMethod_var);
NullCheck(L_0);
int32_t L_1;
L_1 = VirtualFuncInvoker0< int32_t >::Invoke(11 /* System.Int32 UnityEngine.XR.ARSubsystems.XRImageTrackingSubsystem/Provider::get_requestedMaxNumberOfMovingImages() */, L_0);
return L_1;
}
}
// System.Void UnityEngine.XR.ARSubsystems.XRImageTrackingSubsystem::set_requestedMaxNumberOfMovingImages(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRImageTrackingSubsystem_set_requestedMaxNumberOfMovingImages_m3A2C00B07693B0445E82F2DD9CACCD2395B258AB (XRImageTrackingSubsystem_tBC68AD21C11D8D67F3343844E129DF505FF705CE * __this, int32_t ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SubsystemWithProvider_3_get_provider_m036F742F9A0CA88CBD4955C5D1D790474832541F_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
// set => provider.requestedMaxNumberOfMovingImages = value;
Provider_tA7CEF856C3BC486ADEBD656F5535E24262AAAE9E * L_0;
L_0 = SubsystemWithProvider_3_get_provider_m036F742F9A0CA88CBD4955C5D1D790474832541F_inline(__this, /*hidden argument*/SubsystemWithProvider_3_get_provider_m036F742F9A0CA88CBD4955C5D1D790474832541F_RuntimeMethod_var);
int32_t L_1 = ___value0;
NullCheck(L_0);
VirtualActionInvoker1< int32_t >::Invoke(12 /* System.Void UnityEngine.XR.ARSubsystems.XRImageTrackingSubsystem/Provider::set_requestedMaxNumberOfMovingImages(System.Int32) */, L_0, L_1);
return;
}
}
// System.Int32 UnityEngine.XR.ARSubsystems.XRImageTrackingSubsystem::get_currentMaxNumberOfMovingImages()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XRImageTrackingSubsystem_get_currentMaxNumberOfMovingImages_mEB66351CADBB5E4765485A91654E3789E6087E53 (XRImageTrackingSubsystem_tBC68AD21C11D8D67F3343844E129DF505FF705CE * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SubsystemWithProvider_3_get_provider_m036F742F9A0CA88CBD4955C5D1D790474832541F_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
// public int currentMaxNumberOfMovingImages => provider.currentMaxNumberOfMovingImages;
Provider_tA7CEF856C3BC486ADEBD656F5535E24262AAAE9E * L_0;
L_0 = SubsystemWithProvider_3_get_provider_m036F742F9A0CA88CBD4955C5D1D790474832541F_inline(__this, /*hidden argument*/SubsystemWithProvider_3_get_provider_m036F742F9A0CA88CBD4955C5D1D790474832541F_RuntimeMethod_var);
NullCheck(L_0);
int32_t L_1;
L_1 = VirtualFuncInvoker0< int32_t >::Invoke(13 /* System.Int32 UnityEngine.XR.ARSubsystems.XRImageTrackingSubsystem/Provider::get_currentMaxNumberOfMovingImages() */, L_0);
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
// System.Boolean UnityEngine.XR.ARSubsystems.XRImageTrackingSubsystemDescriptor::get_supportsMovingImages()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XRImageTrackingSubsystemDescriptor_get_supportsMovingImages_m7100D7317E24CAC9D353C4FBDEAE2C3BCE6E6D4F (XRImageTrackingSubsystemDescriptor_t3EC191739B144A8AA00CEEE03E8F7FF01D7F833B * __this, const RuntimeMethod* method)
{
{
// public bool supportsMovingImages { get; }
bool L_0 = __this->get_U3CsupportsMovingImagesU3Ek__BackingField_3();
return L_0;
}
}
// System.Void UnityEngine.XR.ARSubsystems.XRImageTrackingSubsystemDescriptor::Create(UnityEngine.XR.ARSubsystems.XRImageTrackingSubsystemDescriptor/Cinfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRImageTrackingSubsystemDescriptor_Create_m3B9A00008CACA91AEC367F5D5EC19E57EA3D22A1 (Cinfo_tED92D7CBD16BE657927A6B7DB64A22DA21EB7D32 ___cinfo0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SubsystemDescriptorStore_tE5D99C3159868DE6506269CB6B830621F8BC31A6_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XRImageTrackingSubsystemDescriptor_t3EC191739B144A8AA00CEEE03E8F7FF01D7F833B_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
// SubsystemDescriptorStore.RegisterDescriptor(new XRImageTrackingSubsystemDescriptor(cinfo));
Cinfo_tED92D7CBD16BE657927A6B7DB64A22DA21EB7D32 L_0 = ___cinfo0;
XRImageTrackingSubsystemDescriptor_t3EC191739B144A8AA00CEEE03E8F7FF01D7F833B * L_1 = (XRImageTrackingSubsystemDescriptor_t3EC191739B144A8AA00CEEE03E8F7FF01D7F833B *)il2cpp_codegen_object_new(XRImageTrackingSubsystemDescriptor_t3EC191739B144A8AA00CEEE03E8F7FF01D7F833B_il2cpp_TypeInfo_var);
XRImageTrackingSubsystemDescriptor__ctor_m2A19512EFC73A1237D84A4DFAB41683FB03D6D55(L_1, L_0, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(SubsystemDescriptorStore_tE5D99C3159868DE6506269CB6B830621F8BC31A6_il2cpp_TypeInfo_var);
SubsystemDescriptorStore_RegisterDescriptor_m5586866BB233EF26B98640851816DD1764657688(L_1, /*hidden argument*/NULL);
// }
return;
}
}
// System.Void UnityEngine.XR.ARSubsystems.XRImageTrackingSubsystemDescriptor::.ctor(UnityEngine.XR.ARSubsystems.XRImageTrackingSubsystemDescriptor/Cinfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRImageTrackingSubsystemDescriptor__ctor_m2A19512EFC73A1237D84A4DFAB41683FB03D6D55 (XRImageTrackingSubsystemDescriptor_t3EC191739B144A8AA00CEEE03E8F7FF01D7F833B * __this, Cinfo_tED92D7CBD16BE657927A6B7DB64A22DA21EB7D32 ___cinfo0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SubsystemDescriptorWithProvider_2__ctor_mABB924981A181423ECB10954AC56B09E9A4D71AA_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
// XRImageTrackingSubsystemDescriptor(Cinfo cinfo)
SubsystemDescriptorWithProvider_2__ctor_mABB924981A181423ECB10954AC56B09E9A4D71AA(__this, /*hidden argument*/SubsystemDescriptorWithProvider_2__ctor_mABB924981A181423ECB10954AC56B09E9A4D71AA_RuntimeMethod_var);
// id = cinfo.id;
String_t* L_0;
L_0 = Cinfo_get_id_m7ACB39F94D161A19473B51245A60F0FE3380E9C6_inline((Cinfo_tED92D7CBD16BE657927A6B7DB64A22DA21EB7D32 *)(&___cinfo0), /*hidden argument*/NULL);
SubsystemDescriptorWithProvider_set_id_mEC6863CDB21597618394D2ED4182A9ED3ACBF220_inline(__this, L_0, /*hidden argument*/NULL);
// providerType = cinfo.providerType;
Type_t * L_1;
L_1 = Cinfo_get_providerType_m865B26BBCBE9E542D09269A2CA6BD1FC47976AF2_inline((Cinfo_tED92D7CBD16BE657927A6B7DB64A22DA21EB7D32 *)(&___cinfo0), /*hidden argument*/NULL);
SubsystemDescriptorWithProvider_set_providerType_m672B1F3CC7A12E8569D801F7C79538753C0D9C2D_inline(__this, L_1, /*hidden argument*/NULL);
// subsystemTypeOverride = cinfo.subsystemTypeOverride;
Type_t * L_2;
L_2 = Cinfo_get_subsystemTypeOverride_m0008239CE298C4881102FED287EC52224601A3A5_inline((Cinfo_tED92D7CBD16BE657927A6B7DB64A22DA21EB7D32 *)(&___cinfo0), /*hidden argument*/NULL);
SubsystemDescriptorWithProvider_set_subsystemTypeOverride_mA453100A7A8FAB35FBE7154E63B5A17D518F41B6_inline(__this, L_2, /*hidden argument*/NULL);
// supportsMovingImages = cinfo.supportsMovingImages;
bool L_3;
L_3 = Cinfo_get_supportsMovingImages_m7B1E2171F1304A73339266B64548CF305EFEEA91_inline((Cinfo_tED92D7CBD16BE657927A6B7DB64A22DA21EB7D32 *)(&___cinfo0), /*hidden argument*/NULL);
__this->set_U3CsupportsMovingImagesU3Ek__BackingField_3(L_3);
// requiresPhysicalImageDimensions = cinfo.requiresPhysicalImageDimensions;
bool L_4;
L_4 = Cinfo_get_requiresPhysicalImageDimensions_mEED8602BF9D390F19582D3F706A9C93333AFB0C7_inline((Cinfo_tED92D7CBD16BE657927A6B7DB64A22DA21EB7D32 *)(&___cinfo0), /*hidden argument*/NULL);
__this->set_U3CrequiresPhysicalImageDimensionsU3Ek__BackingField_4(L_4);
// supportsMutableLibrary = cinfo.supportsMutableLibrary;
bool L_5;
L_5 = Cinfo_get_supportsMutableLibrary_mCD0988DBB5810975CB97BEDD9B2E6B6C168D6E19_inline((Cinfo_tED92D7CBD16BE657927A6B7DB64A22DA21EB7D32 *)(&___cinfo0), /*hidden argument*/NULL);
__this->set_U3CsupportsMutableLibraryU3Ek__BackingField_5(L_5);
// supportsImageValidation = cinfo.supportsImageValidation;
bool L_6;
L_6 = Cinfo_get_supportsImageValidation_m417DC16FCA795DB24C8CAA2C81A5E84855D077BD_inline((Cinfo_tED92D7CBD16BE657927A6B7DB64A22DA21EB7D32 *)(&___cinfo0), /*hidden argument*/NULL);
__this->set_U3CsupportsImageValidationU3Ek__BackingField_6(L_6);
// }
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
// System.Void UnityEngine.XR.ARSubsystems.XRObjectTrackingSubsystem::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRObjectTrackingSubsystem__ctor_m75C4A1A4820B9795DEF1CAED15ACC38796F76BDD (XRObjectTrackingSubsystem_t3F31F4C8BCA868FE69BD8EC75BA5A1116026C881 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TrackingSubsystem_4__ctor_mCDE2C2C9D4E42210819D13563C64582F5F97DA39_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
// public XRObjectTrackingSubsystem()
TrackingSubsystem_4__ctor_mCDE2C2C9D4E42210819D13563C64582F5F97DA39(__this, /*hidden argument*/TrackingSubsystem_4__ctor_mCDE2C2C9D4E42210819D13563C64582F5F97DA39_RuntimeMethod_var);
// }
return;
}
}
// System.Void UnityEngine.XR.ARSubsystems.XRObjectTrackingSubsystem::OnStart()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRObjectTrackingSubsystem_OnStart_mB77ED7DD295528980E011D223BC257725DF63FB5 (XRObjectTrackingSubsystem_t3F31F4C8BCA868FE69BD8EC75BA5A1116026C881 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Object_tF2F3778131EFF286AF62B7B013A170F95A91571A_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SubsystemWithProvider_3_OnStart_m025E4FC17E65F6E4F5CCAF97A105B69055BFA72C_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SubsystemWithProvider_3_get_provider_m7E5E1736FFDB6FDCC80558C7B5AA637026DFD20C_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
// if (m_Library == null)
XRReferenceObjectLibrary_t07704B2996E507F23EE3C99CFC3BB73A83C99A7C * L_0 = __this->get_m_Library_4();
IL2CPP_RUNTIME_CLASS_INIT(Object_tF2F3778131EFF286AF62B7B013A170F95A91571A_il2cpp_TypeInfo_var);
bool L_1;
L_1 = Object_op_Equality_mEE9EC7EB5C7DC3E95B94AB904E1986FC4D566D54(L_0, (Object_tF2F3778131EFF286AF62B7B013A170F95A91571A *)NULL, /*hidden argument*/NULL);
if (!L_1)
{
goto IL_0019;
}
}
{
// throw new InvalidOperationException("Cannot start object tracking without an object library.");
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_2 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_2, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral6B4169897FC35167B2A79D0323289E30033EE0C7)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XRObjectTrackingSubsystem_OnStart_mB77ED7DD295528980E011D223BC257725DF63FB5_RuntimeMethod_var)));
}
IL_0019:
{
// provider.library = m_Library;
Provider_t35977A2A0AA6C338BC9893668DD32F0294A9C01E * L_3;
L_3 = SubsystemWithProvider_3_get_provider_m7E5E1736FFDB6FDCC80558C7B5AA637026DFD20C_inline(__this, /*hidden argument*/SubsystemWithProvider_3_get_provider_m7E5E1736FFDB6FDCC80558C7B5AA637026DFD20C_RuntimeMethod_var);
XRReferenceObjectLibrary_t07704B2996E507F23EE3C99CFC3BB73A83C99A7C * L_4 = __this->get_m_Library_4();
NullCheck(L_3);
VirtualActionInvoker1< XRReferenceObjectLibrary_t07704B2996E507F23EE3C99CFC3BB73A83C99A7C * >::Invoke(9 /* System.Void UnityEngine.XR.ARSubsystems.XRObjectTrackingSubsystem/Provider::set_library(UnityEngine.XR.ARSubsystems.XRReferenceObjectLibrary) */, L_3, L_4);
// base.OnStart();
SubsystemWithProvider_3_OnStart_m025E4FC17E65F6E4F5CCAF97A105B69055BFA72C(__this, /*hidden argument*/SubsystemWithProvider_3_OnStart_m025E4FC17E65F6E4F5CCAF97A105B69055BFA72C_RuntimeMethod_var);
// }
return;
}
}
// System.Void UnityEngine.XR.ARSubsystems.XRObjectTrackingSubsystem::set_library(UnityEngine.XR.ARSubsystems.XRReferenceObjectLibrary)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRObjectTrackingSubsystem_set_library_m79D43E82F0D5AD3B58B152275B3375100D40C32C (XRObjectTrackingSubsystem_t3F31F4C8BCA868FE69BD8EC75BA5A1116026C881 * __this, XRReferenceObjectLibrary_t07704B2996E507F23EE3C99CFC3BB73A83C99A7C * ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Object_tF2F3778131EFF286AF62B7B013A170F95A91571A_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SubsystemWithProvider_3_get_provider_m7E5E1736FFDB6FDCC80558C7B5AA637026DFD20C_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
// if (m_Library == value)
XRReferenceObjectLibrary_t07704B2996E507F23EE3C99CFC3BB73A83C99A7C * L_0 = __this->get_m_Library_4();
XRReferenceObjectLibrary_t07704B2996E507F23EE3C99CFC3BB73A83C99A7C * L_1 = ___value0;
IL2CPP_RUNTIME_CLASS_INIT(Object_tF2F3778131EFF286AF62B7B013A170F95A91571A_il2cpp_TypeInfo_var);
bool L_2;
L_2 = Object_op_Equality_mEE9EC7EB5C7DC3E95B94AB904E1986FC4D566D54(L_0, L_1, /*hidden argument*/NULL);
if (!L_2)
{
goto IL_000f;
}
}
{
// return;
return;
}
IL_000f:
{
// if (running && value == null)
bool L_3;
L_3 = SubsystemWithProvider_get_running_m42399652EC4AB466AFBAC9035FA77C1BD6C72406_inline(__this, /*hidden argument*/NULL);
if (!L_3)
{
goto IL_002b;
}
}
{
XRReferenceObjectLibrary_t07704B2996E507F23EE3C99CFC3BB73A83C99A7C * L_4 = ___value0;
IL2CPP_RUNTIME_CLASS_INIT(Object_tF2F3778131EFF286AF62B7B013A170F95A91571A_il2cpp_TypeInfo_var);
bool L_5;
L_5 = Object_op_Equality_mEE9EC7EB5C7DC3E95B94AB904E1986FC4D566D54(L_4, (Object_tF2F3778131EFF286AF62B7B013A170F95A91571A *)NULL, /*hidden argument*/NULL);
if (!L_5)
{
goto IL_002b;
}
}
{
// throw new ArgumentNullException("Cannot set library to null while subsystem is running.");
ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB * L_6 = (ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB_il2cpp_TypeInfo_var)));
ArgumentNullException__ctor_m81AB157B93BFE2FBFDB08B88F84B444293042F97(L_6, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral1DB034D4D0A5AFB7DC73BF7CE25C4958C7427376)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_6, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XRObjectTrackingSubsystem_set_library_m79D43E82F0D5AD3B58B152275B3375100D40C32C_RuntimeMethod_var)));
}
IL_002b:
{
// m_Library = value;
XRReferenceObjectLibrary_t07704B2996E507F23EE3C99CFC3BB73A83C99A7C * L_7 = ___value0;
__this->set_m_Library_4(L_7);
// if (running)
bool L_8;
L_8 = SubsystemWithProvider_get_running_m42399652EC4AB466AFBAC9035FA77C1BD6C72406_inline(__this, /*hidden argument*/NULL);
if (!L_8)
{
goto IL_004b;
}
}
{
// provider.library = m_Library;
Provider_t35977A2A0AA6C338BC9893668DD32F0294A9C01E * L_9;
L_9 = SubsystemWithProvider_3_get_provider_m7E5E1736FFDB6FDCC80558C7B5AA637026DFD20C_inline(__this, /*hidden argument*/SubsystemWithProvider_3_get_provider_m7E5E1736FFDB6FDCC80558C7B5AA637026DFD20C_RuntimeMethod_var);
XRReferenceObjectLibrary_t07704B2996E507F23EE3C99CFC3BB73A83C99A7C * L_10 = __this->get_m_Library_4();
NullCheck(L_9);
VirtualActionInvoker1< XRReferenceObjectLibrary_t07704B2996E507F23EE3C99CFC3BB73A83C99A7C * >::Invoke(9 /* System.Void UnityEngine.XR.ARSubsystems.XRObjectTrackingSubsystem/Provider::set_library(UnityEngine.XR.ARSubsystems.XRReferenceObjectLibrary) */, L_9, L_10);
}
IL_004b:
{
// }
return;
}
}
// System.Void UnityEngine.XR.ARSubsystems.XRObjectTrackingSubsystem::OnStop()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRObjectTrackingSubsystem_OnStop_m4E912083A59608102AA2C7B1A3A2695395575A2C (XRObjectTrackingSubsystem_t3F31F4C8BCA868FE69BD8EC75BA5A1116026C881 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SubsystemWithProvider_3_OnStop_m8EE2F25172A34C63EE5D2C8AF6D8FDA7B312B791_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SubsystemWithProvider_3_get_provider_m7E5E1736FFDB6FDCC80558C7B5AA637026DFD20C_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
// provider.library = null;
Provider_t35977A2A0AA6C338BC9893668DD32F0294A9C01E * L_0;
L_0 = SubsystemWithProvider_3_get_provider_m7E5E1736FFDB6FDCC80558C7B5AA637026DFD20C_inline(__this, /*hidden argument*/SubsystemWithProvider_3_get_provider_m7E5E1736FFDB6FDCC80558C7B5AA637026DFD20C_RuntimeMethod_var);
NullCheck(L_0);
VirtualActionInvoker1< XRReferenceObjectLibrary_t07704B2996E507F23EE3C99CFC3BB73A83C99A7C * >::Invoke(9 /* System.Void UnityEngine.XR.ARSubsystems.XRObjectTrackingSubsystem/Provider::set_library(UnityEngine.XR.ARSubsystems.XRReferenceObjectLibrary) */, L_0, (XRReferenceObjectLibrary_t07704B2996E507F23EE3C99CFC3BB73A83C99A7C *)NULL);
// base.OnStop();
SubsystemWithProvider_3_OnStop_m8EE2F25172A34C63EE5D2C8AF6D8FDA7B312B791(__this, /*hidden argument*/SubsystemWithProvider_3_OnStop_m8EE2F25172A34C63EE5D2C8AF6D8FDA7B312B791_RuntimeMethod_var);
// }
return;
}
}
// UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.XRTrackedObject> UnityEngine.XR.ARSubsystems.XRObjectTrackingSubsystem::GetChanges(Unity.Collections.Allocator)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TrackableChanges_1_t388C13B0BF202AE5F24D0BB3AE0D672AA355E1B1 XRObjectTrackingSubsystem_GetChanges_m3223798AE3E84E31C63CFCB01E719FFE734EB7E8 (XRObjectTrackingSubsystem_t3F31F4C8BCA868FE69BD8EC75BA5A1116026C881 * __this, int32_t ___allocator0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SubsystemWithProvider_3_get_provider_m7E5E1736FFDB6FDCC80558C7B5AA637026DFD20C_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XRTrackedObject_t247BBE67D4F9308544C4BAD807F321E0C404EC58_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
// var changes = provider.GetChanges(XRTrackedObject.defaultValue, allocator);
Provider_t35977A2A0AA6C338BC9893668DD32F0294A9C01E * L_0;
L_0 = SubsystemWithProvider_3_get_provider_m7E5E1736FFDB6FDCC80558C7B5AA637026DFD20C_inline(__this, /*hidden argument*/SubsystemWithProvider_3_get_provider_m7E5E1736FFDB6FDCC80558C7B5AA637026DFD20C_RuntimeMethod_var);
IL2CPP_RUNTIME_CLASS_INIT(XRTrackedObject_t247BBE67D4F9308544C4BAD807F321E0C404EC58_il2cpp_TypeInfo_var);
XRTrackedObject_t247BBE67D4F9308544C4BAD807F321E0C404EC58 L_1;
L_1 = XRTrackedObject_get_defaultValue_m3AC573CBE63C302081874718C743040E3A8C3F89_inline(/*hidden argument*/NULL);
int32_t L_2 = ___allocator0;
NullCheck(L_0);
TrackableChanges_1_t388C13B0BF202AE5F24D0BB3AE0D672AA355E1B1 L_3;
L_3 = VirtualFuncInvoker2< TrackableChanges_1_t388C13B0BF202AE5F24D0BB3AE0D672AA355E1B1 , XRTrackedObject_t247BBE67D4F9308544C4BAD807F321E0C404EC58 , int32_t >::Invoke(8 /* UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.XRTrackedObject> UnityEngine.XR.ARSubsystems.XRObjectTrackingSubsystem/Provider::GetChanges(UnityEngine.XR.ARSubsystems.XRTrackedObject,Unity.Collections.Allocator) */, L_0, L_1, L_2);
// return changes;
return L_3;
}
}
#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
// System.Void UnityEngine.XR.ARSubsystems.XRObjectTrackingSubsystemDescriptor::set_capabilities(UnityEngine.XR.ARSubsystems.XRObjectTrackingSubsystemDescriptor/Capabilities)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRObjectTrackingSubsystemDescriptor_set_capabilities_m0ACF0721272F505AC624521AF7FA03C87033D759 (XRObjectTrackingSubsystemDescriptor_t831B568A9BE175A6A79BB87E25DEFAC519A6C472 * __this, Capabilities_tC6F329DD5C73C6B9E04BE77A3AE0E52390BD8685 ___value0, const RuntimeMethod* method)
{
{
// public Capabilities capabilities { get; private set; }
Capabilities_tC6F329DD5C73C6B9E04BE77A3AE0E52390BD8685 L_0 = ___value0;
__this->set_U3CcapabilitiesU3Ek__BackingField_3(L_0);
return;
}
}
// System.Void UnityEngine.XR.ARSubsystems.XRObjectTrackingSubsystemDescriptor::.ctor(System.String,System.Type,System.Type,UnityEngine.XR.ARSubsystems.XRObjectTrackingSubsystemDescriptor/Capabilities)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRObjectTrackingSubsystemDescriptor__ctor_mE44B346A0A5A035B7DFC7430336DDADED7A4F6A5 (XRObjectTrackingSubsystemDescriptor_t831B568A9BE175A6A79BB87E25DEFAC519A6C472 * __this, String_t* ___id0, Type_t * ___providerType1, Type_t * ___subsystemTypeOverride2, Capabilities_tC6F329DD5C73C6B9E04BE77A3AE0E52390BD8685 ___capabilities3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SubsystemDescriptorWithProvider_2__ctor_mFC8D6E2104BE79940C9ADC8E1859B991CD8AFB34_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
// internal XRObjectTrackingSubsystemDescriptor(string id, Type providerType, Type subsystemTypeOverride, Capabilities capabilities)
SubsystemDescriptorWithProvider_2__ctor_mFC8D6E2104BE79940C9ADC8E1859B991CD8AFB34(__this, /*hidden argument*/SubsystemDescriptorWithProvider_2__ctor_mFC8D6E2104BE79940C9ADC8E1859B991CD8AFB34_RuntimeMethod_var);
// this.id = id;
String_t* L_0 = ___id0;
SubsystemDescriptorWithProvider_set_id_mEC6863CDB21597618394D2ED4182A9ED3ACBF220_inline(__this, L_0, /*hidden argument*/NULL);
// this.providerType = providerType;
Type_t * L_1 = ___providerType1;
SubsystemDescriptorWithProvider_set_providerType_m672B1F3CC7A12E8569D801F7C79538753C0D9C2D_inline(__this, L_1, /*hidden argument*/NULL);
// this.subsystemTypeOverride = subsystemTypeOverride;
Type_t * L_2 = ___subsystemTypeOverride2;
SubsystemDescriptorWithProvider_set_subsystemTypeOverride_mA453100A7A8FAB35FBE7154E63B5A17D518F41B6_inline(__this, L_2, /*hidden argument*/NULL);
// this.capabilities = capabilities;
Capabilities_tC6F329DD5C73C6B9E04BE77A3AE0E52390BD8685 L_3 = ___capabilities3;
XRObjectTrackingSubsystemDescriptor_set_capabilities_m0ACF0721272F505AC624521AF7FA03C87033D759_inline(__this, L_3, /*hidden argument*/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
// UnityEngine.XR.ARSubsystems.HumanSegmentationStencilMode UnityEngine.XR.ARSubsystems.XROcclusionSubsystem::get_requestedHumanStencilMode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XROcclusionSubsystem_get_requestedHumanStencilMode_mC9DCDE40A92C5EE7B7A31B8B9232F5B0BDE514E2 (XROcclusionSubsystem_t7546B929F9B5B6EB13B975FE4DB1F4099EE533B8 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SubsystemWithProvider_3_get_provider_m6EFFE2CA2C3A415FF287A71E20A4601E8108E2C4_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
// get => provider.requestedHumanStencilMode;
Provider_t5B60C630FB68EFEAB6FA2F3D9A732C144003B7FB * L_0;
L_0 = SubsystemWithProvider_3_get_provider_m6EFFE2CA2C3A415FF287A71E20A4601E8108E2C4_inline(__this, /*hidden argument*/SubsystemWithProvider_3_get_provider_m6EFFE2CA2C3A415FF287A71E20A4601E8108E2C4_RuntimeMethod_var);
NullCheck(L_0);
int32_t L_1;
L_1 = VirtualFuncInvoker0< int32_t >::Invoke(8 /* UnityEngine.XR.ARSubsystems.HumanSegmentationStencilMode UnityEngine.XR.ARSubsystems.XROcclusionSubsystem/Provider::get_requestedHumanStencilMode() */, L_0);
return L_1;
}
}
// System.Void UnityEngine.XR.ARSubsystems.XROcclusionSubsystem::set_requestedHumanStencilMode(UnityEngine.XR.ARSubsystems.HumanSegmentationStencilMode)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XROcclusionSubsystem_set_requestedHumanStencilMode_mF67D59B3C057AF7E9FA335280AB8EFDBA2F8F18F (XROcclusionSubsystem_t7546B929F9B5B6EB13B975FE4DB1F4099EE533B8 * __this, int32_t ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SubsystemWithProvider_3_get_provider_m6EFFE2CA2C3A415FF287A71E20A4601E8108E2C4_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
// set => provider.requestedHumanStencilMode = value;
Provider_t5B60C630FB68EFEAB6FA2F3D9A732C144003B7FB * L_0;
L_0 = SubsystemWithProvider_3_get_provider_m6EFFE2CA2C3A415FF287A71E20A4601E8108E2C4_inline(__this, /*hidden argument*/SubsystemWithProvider_3_get_provider_m6EFFE2CA2C3A415FF287A71E20A4601E8108E2C4_RuntimeMethod_var);
int32_t L_1 = ___value0;
NullCheck(L_0);
VirtualActionInvoker1< int32_t >::Invoke(9 /* System.Void UnityEngine.XR.ARSubsystems.XROcclusionSubsystem/Provider::set_requestedHumanStencilMode(UnityEngine.XR.ARSubsystems.HumanSegmentationStencilMode) */, L_0, L_1);
return;
}
}
// UnityEngine.XR.ARSubsystems.HumanSegmentationStencilMode UnityEngine.XR.ARSubsystems.XROcclusionSubsystem::get_currentHumanStencilMode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XROcclusionSubsystem_get_currentHumanStencilMode_m3F1F5440848EEEBFF72F66B6D526845A62DBC057 (XROcclusionSubsystem_t7546B929F9B5B6EB13B975FE4DB1F4099EE533B8 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SubsystemWithProvider_3_get_provider_m6EFFE2CA2C3A415FF287A71E20A4601E8108E2C4_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
// public HumanSegmentationStencilMode currentHumanStencilMode => provider.currentHumanStencilMode;
Provider_t5B60C630FB68EFEAB6FA2F3D9A732C144003B7FB * L_0;
L_0 = SubsystemWithProvider_3_get_provider_m6EFFE2CA2C3A415FF287A71E20A4601E8108E2C4_inline(__this, /*hidden argument*/SubsystemWithProvider_3_get_provider_m6EFFE2CA2C3A415FF287A71E20A4601E8108E2C4_RuntimeMethod_var);
NullCheck(L_0);
int32_t L_1;
L_1 = VirtualFuncInvoker0< int32_t >::Invoke(10 /* UnityEngine.XR.ARSubsystems.HumanSegmentationStencilMode UnityEngine.XR.ARSubsystems.XROcclusionSubsystem/Provider::get_currentHumanStencilMode() */, L_0);
return L_1;
}
}
// UnityEngine.XR.ARSubsystems.HumanSegmentationDepthMode UnityEngine.XR.ARSubsystems.XROcclusionSubsystem::get_requestedHumanDepthMode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XROcclusionSubsystem_get_requestedHumanDepthMode_m0F6A88E6DC1CD2498CACAAD4D47345C35763B1BE (XROcclusionSubsystem_t7546B929F9B5B6EB13B975FE4DB1F4099EE533B8 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SubsystemWithProvider_3_get_provider_m6EFFE2CA2C3A415FF287A71E20A4601E8108E2C4_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
// get => provider.requestedHumanDepthMode;
Provider_t5B60C630FB68EFEAB6FA2F3D9A732C144003B7FB * L_0;
L_0 = SubsystemWithProvider_3_get_provider_m6EFFE2CA2C3A415FF287A71E20A4601E8108E2C4_inline(__this, /*hidden argument*/SubsystemWithProvider_3_get_provider_m6EFFE2CA2C3A415FF287A71E20A4601E8108E2C4_RuntimeMethod_var);
NullCheck(L_0);
int32_t L_1;
L_1 = VirtualFuncInvoker0< int32_t >::Invoke(11 /* UnityEngine.XR.ARSubsystems.HumanSegmentationDepthMode UnityEngine.XR.ARSubsystems.XROcclusionSubsystem/Provider::get_requestedHumanDepthMode() */, L_0);
return L_1;
}
}
// System.Void UnityEngine.XR.ARSubsystems.XROcclusionSubsystem::set_requestedHumanDepthMode(UnityEngine.XR.ARSubsystems.HumanSegmentationDepthMode)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XROcclusionSubsystem_set_requestedHumanDepthMode_m98BC4A743EF49123DAA52F0969F8542B7DB47026 (XROcclusionSubsystem_t7546B929F9B5B6EB13B975FE4DB1F4099EE533B8 * __this, int32_t ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SubsystemWithProvider_3_get_provider_m6EFFE2CA2C3A415FF287A71E20A4601E8108E2C4_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
// set => provider.requestedHumanDepthMode = value;
Provider_t5B60C630FB68EFEAB6FA2F3D9A732C144003B7FB * L_0;
L_0 = SubsystemWithProvider_3_get_provider_m6EFFE2CA2C3A415FF287A71E20A4601E8108E2C4_inline(__this, /*hidden argument*/SubsystemWithProvider_3_get_provider_m6EFFE2CA2C3A415FF287A71E20A4601E8108E2C4_RuntimeMethod_var);
int32_t L_1 = ___value0;
NullCheck(L_0);
VirtualActionInvoker1< int32_t >::Invoke(12 /* System.Void UnityEngine.XR.ARSubsystems.XROcclusionSubsystem/Provider::set_requestedHumanDepthMode(UnityEngine.XR.ARSubsystems.HumanSegmentationDepthMode) */, L_0, L_1);
return;
}
}
// UnityEngine.XR.ARSubsystems.HumanSegmentationDepthMode UnityEngine.XR.ARSubsystems.XROcclusionSubsystem::get_currentHumanDepthMode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XROcclusionSubsystem_get_currentHumanDepthMode_mE04B8DE686090CCE3E783C832EB6DE97FA224A17 (XROcclusionSubsystem_t7546B929F9B5B6EB13B975FE4DB1F4099EE533B8 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SubsystemWithProvider_3_get_provider_m6EFFE2CA2C3A415FF287A71E20A4601E8108E2C4_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
// public HumanSegmentationDepthMode currentHumanDepthMode => provider.currentHumanDepthMode;
Provider_t5B60C630FB68EFEAB6FA2F3D9A732C144003B7FB * L_0;
L_0 = SubsystemWithProvider_3_get_provider_m6EFFE2CA2C3A415FF287A71E20A4601E8108E2C4_inline(__this, /*hidden argument*/SubsystemWithProvider_3_get_provider_m6EFFE2CA2C3A415FF287A71E20A4601E8108E2C4_RuntimeMethod_var);
NullCheck(L_0);
int32_t L_1;
L_1 = VirtualFuncInvoker0< int32_t >::Invoke(13 /* UnityEngine.XR.ARSubsystems.HumanSegmentationDepthMode UnityEngine.XR.ARSubsystems.XROcclusionSubsystem/Provider::get_currentHumanDepthMode() */, L_0);
return L_1;
}
}
// UnityEngine.XR.ARSubsystems.EnvironmentDepthMode UnityEngine.XR.ARSubsystems.XROcclusionSubsystem::get_requestedEnvironmentDepthMode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XROcclusionSubsystem_get_requestedEnvironmentDepthMode_m85FD96A6A87B4BFFA51F5AFE482442FACBEF01C1 (XROcclusionSubsystem_t7546B929F9B5B6EB13B975FE4DB1F4099EE533B8 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SubsystemWithProvider_3_get_provider_m6EFFE2CA2C3A415FF287A71E20A4601E8108E2C4_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
// get => provider.requestedEnvironmentDepthMode;
Provider_t5B60C630FB68EFEAB6FA2F3D9A732C144003B7FB * L_0;
L_0 = SubsystemWithProvider_3_get_provider_m6EFFE2CA2C3A415FF287A71E20A4601E8108E2C4_inline(__this, /*hidden argument*/SubsystemWithProvider_3_get_provider_m6EFFE2CA2C3A415FF287A71E20A4601E8108E2C4_RuntimeMethod_var);
NullCheck(L_0);
int32_t L_1;
L_1 = VirtualFuncInvoker0< int32_t >::Invoke(14 /* UnityEngine.XR.ARSubsystems.EnvironmentDepthMode UnityEngine.XR.ARSubsystems.XROcclusionSubsystem/Provider::get_requestedEnvironmentDepthMode() */, L_0);
return L_1;
}
}
// System.Void UnityEngine.XR.ARSubsystems.XROcclusionSubsystem::set_requestedEnvironmentDepthMode(UnityEngine.XR.ARSubsystems.EnvironmentDepthMode)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XROcclusionSubsystem_set_requestedEnvironmentDepthMode_m98D933939F4684B4258C233C385D756AF6B4C8F2 (XROcclusionSubsystem_t7546B929F9B5B6EB13B975FE4DB1F4099EE533B8 * __this, int32_t ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SubsystemWithProvider_3_get_provider_m6EFFE2CA2C3A415FF287A71E20A4601E8108E2C4_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
// set => provider.requestedEnvironmentDepthMode = value;
Provider_t5B60C630FB68EFEAB6FA2F3D9A732C144003B7FB * L_0;
L_0 = SubsystemWithProvider_3_get_provider_m6EFFE2CA2C3A415FF287A71E20A4601E8108E2C4_inline(__this, /*hidden argument*/SubsystemWithProvider_3_get_provider_m6EFFE2CA2C3A415FF287A71E20A4601E8108E2C4_RuntimeMethod_var);
int32_t L_1 = ___value0;
NullCheck(L_0);
VirtualActionInvoker1< int32_t >::Invoke(15 /* System.Void UnityEngine.XR.ARSubsystems.XROcclusionSubsystem/Provider::set_requestedEnvironmentDepthMode(UnityEngine.XR.ARSubsystems.EnvironmentDepthMode) */, L_0, L_1);
return;
}
}
// UnityEngine.XR.ARSubsystems.EnvironmentDepthMode UnityEngine.XR.ARSubsystems.XROcclusionSubsystem::get_currentEnvironmentDepthMode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XROcclusionSubsystem_get_currentEnvironmentDepthMode_mB34A8639579D93BA74493C29C44BCAD24C5DDA5E (XROcclusionSubsystem_t7546B929F9B5B6EB13B975FE4DB1F4099EE533B8 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SubsystemWithProvider_3_get_provider_m6EFFE2CA2C3A415FF287A71E20A4601E8108E2C4_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
// public EnvironmentDepthMode currentEnvironmentDepthMode => provider.currentEnvironmentDepthMode;
Provider_t5B60C630FB68EFEAB6FA2F3D9A732C144003B7FB * L_0;
L_0 = SubsystemWithProvider_3_get_provider_m6EFFE2CA2C3A415FF287A71E20A4601E8108E2C4_inline(__this, /*hidden argument*/SubsystemWithProvider_3_get_provider_m6EFFE2CA2C3A415FF287A71E20A4601E8108E2C4_RuntimeMethod_var);
NullCheck(L_0);
int32_t L_1;
L_1 = VirtualFuncInvoker0< int32_t >::Invoke(16 /* UnityEngine.XR.ARSubsystems.EnvironmentDepthMode UnityEngine.XR.ARSubsystems.XROcclusionSubsystem/Provider::get_currentEnvironmentDepthMode() */, L_0);
return L_1;
}
}
// UnityEngine.XR.ARSubsystems.OcclusionPreferenceMode UnityEngine.XR.ARSubsystems.XROcclusionSubsystem::get_requestedOcclusionPreferenceMode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XROcclusionSubsystem_get_requestedOcclusionPreferenceMode_m701CF4535F7E170997551B7E010A339D92338F20 (XROcclusionSubsystem_t7546B929F9B5B6EB13B975FE4DB1F4099EE533B8 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SubsystemWithProvider_3_get_provider_m6EFFE2CA2C3A415FF287A71E20A4601E8108E2C4_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
// get => provider.requestedOcclusionPreferenceMode;
Provider_t5B60C630FB68EFEAB6FA2F3D9A732C144003B7FB * L_0;
L_0 = SubsystemWithProvider_3_get_provider_m6EFFE2CA2C3A415FF287A71E20A4601E8108E2C4_inline(__this, /*hidden argument*/SubsystemWithProvider_3_get_provider_m6EFFE2CA2C3A415FF287A71E20A4601E8108E2C4_RuntimeMethod_var);
NullCheck(L_0);
int32_t L_1;
L_1 = VirtualFuncInvoker0< int32_t >::Invoke(17 /* UnityEngine.XR.ARSubsystems.OcclusionPreferenceMode UnityEngine.XR.ARSubsystems.XROcclusionSubsystem/Provider::get_requestedOcclusionPreferenceMode() */, L_0);
return L_1;
}
}
// System.Void UnityEngine.XR.ARSubsystems.XROcclusionSubsystem::set_requestedOcclusionPreferenceMode(UnityEngine.XR.ARSubsystems.OcclusionPreferenceMode)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XROcclusionSubsystem_set_requestedOcclusionPreferenceMode_mC3EABD62187C7EC1B2FA6B1D5CF06BFA553F7D6D (XROcclusionSubsystem_t7546B929F9B5B6EB13B975FE4DB1F4099EE533B8 * __this, int32_t ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SubsystemWithProvider_3_get_provider_m6EFFE2CA2C3A415FF287A71E20A4601E8108E2C4_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
// set => provider.requestedOcclusionPreferenceMode = value;
Provider_t5B60C630FB68EFEAB6FA2F3D9A732C144003B7FB * L_0;
L_0 = SubsystemWithProvider_3_get_provider_m6EFFE2CA2C3A415FF287A71E20A4601E8108E2C4_inline(__this, /*hidden argument*/SubsystemWithProvider_3_get_provider_m6EFFE2CA2C3A415FF287A71E20A4601E8108E2C4_RuntimeMethod_var);
int32_t L_1 = ___value0;
NullCheck(L_0);
VirtualActionInvoker1< int32_t >::Invoke(18 /* System.Void UnityEngine.XR.ARSubsystems.XROcclusionSubsystem/Provider::set_requestedOcclusionPreferenceMode(UnityEngine.XR.ARSubsystems.OcclusionPreferenceMode) */, L_0, L_1);
return;
}
}
// UnityEngine.XR.ARSubsystems.OcclusionPreferenceMode UnityEngine.XR.ARSubsystems.XROcclusionSubsystem::get_currentOcclusionPreferenceMode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XROcclusionSubsystem_get_currentOcclusionPreferenceMode_m53AA761C841959F77C03CBF95E08653A32FC52A9 (XROcclusionSubsystem_t7546B929F9B5B6EB13B975FE4DB1F4099EE533B8 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SubsystemWithProvider_3_get_provider_m6EFFE2CA2C3A415FF287A71E20A4601E8108E2C4_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
// public OcclusionPreferenceMode currentOcclusionPreferenceMode => provider.currentOcclusionPreferenceMode;
Provider_t5B60C630FB68EFEAB6FA2F3D9A732C144003B7FB * L_0;
L_0 = SubsystemWithProvider_3_get_provider_m6EFFE2CA2C3A415FF287A71E20A4601E8108E2C4_inline(__this, /*hidden argument*/SubsystemWithProvider_3_get_provider_m6EFFE2CA2C3A415FF287A71E20A4601E8108E2C4_RuntimeMethod_var);
NullCheck(L_0);
int32_t L_1;
L_1 = VirtualFuncInvoker0< int32_t >::Invoke(19 /* UnityEngine.XR.ARSubsystems.OcclusionPreferenceMode UnityEngine.XR.ARSubsystems.XROcclusionSubsystem/Provider::get_currentOcclusionPreferenceMode() */, L_0);
return L_1;
}
}
// System.Void UnityEngine.XR.ARSubsystems.XROcclusionSubsystem::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XROcclusionSubsystem__ctor_m9EA3B861371659A5607CA2D36A77EAF9023696DD (XROcclusionSubsystem_t7546B929F9B5B6EB13B975FE4DB1F4099EE533B8 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SubsystemWithProvider_3__ctor_m3A4219F4F2F45D2AA4C7EE843B67B609B809C059_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
// public XROcclusionSubsystem()
SubsystemWithProvider_3__ctor_m3A4219F4F2F45D2AA4C7EE843B67B609B809C059(__this, /*hidden argument*/SubsystemWithProvider_3__ctor_m3A4219F4F2F45D2AA4C7EE843B67B609B809C059_RuntimeMethod_var);
// }
return;
}
}
// System.Boolean UnityEngine.XR.ARSubsystems.XROcclusionSubsystem::TryGetHumanStencil(UnityEngine.XR.ARSubsystems.XRTextureDescriptor&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XROcclusionSubsystem_TryGetHumanStencil_mB1EC0C01F2EB597A84AF8C2E661C23E057ECDD98 (XROcclusionSubsystem_t7546B929F9B5B6EB13B975FE4DB1F4099EE533B8 * __this, XRTextureDescriptor_t9CA857DCCC1208B74376787BE4F3008A01B29A57 * ___humanStencilDescriptor0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SubsystemWithProvider_3_get_provider_m6EFFE2CA2C3A415FF287A71E20A4601E8108E2C4_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
// => provider.TryGetHumanStencil(out humanStencilDescriptor);
Provider_t5B60C630FB68EFEAB6FA2F3D9A732C144003B7FB * L_0;
L_0 = SubsystemWithProvider_3_get_provider_m6EFFE2CA2C3A415FF287A71E20A4601E8108E2C4_inline(__this, /*hidden argument*/SubsystemWithProvider_3_get_provider_m6EFFE2CA2C3A415FF287A71E20A4601E8108E2C4_RuntimeMethod_var);
XRTextureDescriptor_t9CA857DCCC1208B74376787BE4F3008A01B29A57 * L_1 = ___humanStencilDescriptor0;
NullCheck(L_0);
bool L_2;
L_2 = VirtualFuncInvoker1< bool, XRTextureDescriptor_t9CA857DCCC1208B74376787BE4F3008A01B29A57 * >::Invoke(20 /* System.Boolean UnityEngine.XR.ARSubsystems.XROcclusionSubsystem/Provider::TryGetHumanStencil(UnityEngine.XR.ARSubsystems.XRTextureDescriptor&) */, L_0, (XRTextureDescriptor_t9CA857DCCC1208B74376787BE4F3008A01B29A57 *)L_1);
return L_2;
}
}
// System.Boolean UnityEngine.XR.ARSubsystems.XROcclusionSubsystem::TryAcquireHumanStencilCpuImage(UnityEngine.XR.ARSubsystems.XRCpuImage&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XROcclusionSubsystem_TryAcquireHumanStencilCpuImage_m95A23BC97400E2E56BF8D0CAF5B5B100CF40A02A (XROcclusionSubsystem_t7546B929F9B5B6EB13B975FE4DB1F4099EE533B8 * __this, XRCpuImage_tA48C0687D95D3D63D1101E4E08EFCF0ABB2431CE * ___cpuImage0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SubsystemWithProvider_3_get_provider_m6EFFE2CA2C3A415FF287A71E20A4601E8108E2C4_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
Cinfo_t4E32E30AF6973611F1DD0F47FC041ED3A8775DA6 V_0;
memset((&V_0), 0, sizeof(V_0));
{
// if (provider.humanStencilCpuImageApi != null && provider.TryAcquireHumanStencilCpuImage(out var cinfo))
Provider_t5B60C630FB68EFEAB6FA2F3D9A732C144003B7FB * L_0;
L_0 = SubsystemWithProvider_3_get_provider_m6EFFE2CA2C3A415FF287A71E20A4601E8108E2C4_inline(__this, /*hidden argument*/SubsystemWithProvider_3_get_provider_m6EFFE2CA2C3A415FF287A71E20A4601E8108E2C4_RuntimeMethod_var);
NullCheck(L_0);
Api_t7C92F00C6416A2C636A44AAC833C3773C567DC3E * L_1;
L_1 = VirtualFuncInvoker0< Api_t7C92F00C6416A2C636A44AAC833C3773C567DC3E * >::Invoke(22 /* UnityEngine.XR.ARSubsystems.XRCpuImage/Api UnityEngine.XR.ARSubsystems.XROcclusionSubsystem/Provider::get_humanStencilCpuImageApi() */, L_0);
if (!L_1)
{
goto IL_0035;
}
}
{
Provider_t5B60C630FB68EFEAB6FA2F3D9A732C144003B7FB * L_2;
L_2 = SubsystemWithProvider_3_get_provider_m6EFFE2CA2C3A415FF287A71E20A4601E8108E2C4_inline(__this, /*hidden argument*/SubsystemWithProvider_3_get_provider_m6EFFE2CA2C3A415FF287A71E20A4601E8108E2C4_RuntimeMethod_var);
NullCheck(L_2);
bool L_3;
L_3 = VirtualFuncInvoker1< bool, Cinfo_t4E32E30AF6973611F1DD0F47FC041ED3A8775DA6 * >::Invoke(21 /* System.Boolean UnityEngine.XR.ARSubsystems.XROcclusionSubsystem/Provider::TryAcquireHumanStencilCpuImage(UnityEngine.XR.ARSubsystems.XRCpuImage/Cinfo&) */, L_2, (Cinfo_t4E32E30AF6973611F1DD0F47FC041ED3A8775DA6 *)(&V_0));
if (!L_3)
{
goto IL_0035;
}
}
{
// cpuImage = new XRCpuImage(provider.humanStencilCpuImageApi, cinfo);
XRCpuImage_tA48C0687D95D3D63D1101E4E08EFCF0ABB2431CE * L_4 = ___cpuImage0;
Provider_t5B60C630FB68EFEAB6FA2F3D9A732C144003B7FB * L_5;
L_5 = SubsystemWithProvider_3_get_provider_m6EFFE2CA2C3A415FF287A71E20A4601E8108E2C4_inline(__this, /*hidden argument*/SubsystemWithProvider_3_get_provider_m6EFFE2CA2C3A415FF287A71E20A4601E8108E2C4_RuntimeMethod_var);
NullCheck(L_5);
Api_t7C92F00C6416A2C636A44AAC833C3773C567DC3E * L_6;
L_6 = VirtualFuncInvoker0< Api_t7C92F00C6416A2C636A44AAC833C3773C567DC3E * >::Invoke(22 /* UnityEngine.XR.ARSubsystems.XRCpuImage/Api UnityEngine.XR.ARSubsystems.XROcclusionSubsystem/Provider::get_humanStencilCpuImageApi() */, L_5);
Cinfo_t4E32E30AF6973611F1DD0F47FC041ED3A8775DA6 L_7 = V_0;
XRCpuImage_tA48C0687D95D3D63D1101E4E08EFCF0ABB2431CE L_8;
memset((&L_8), 0, sizeof(L_8));
XRCpuImage__ctor_mA44BE98BA315639462481743B96A650B89F7C26E((&L_8), L_6, L_7, /*hidden argument*/NULL);
*(XRCpuImage_tA48C0687D95D3D63D1101E4E08EFCF0ABB2431CE *)L_4 = L_8;
Il2CppCodeGenWriteBarrier((void**)&(((XRCpuImage_tA48C0687D95D3D63D1101E4E08EFCF0ABB2431CE *)L_4)->___m_Api_1), (void*)NULL);
// return true;
return (bool)1;
}
IL_0035:
{
// cpuImage = default;
XRCpuImage_tA48C0687D95D3D63D1101E4E08EFCF0ABB2431CE * L_9 = ___cpuImage0;
il2cpp_codegen_initobj(L_9, sizeof(XRCpuImage_tA48C0687D95D3D63D1101E4E08EFCF0ABB2431CE ));
// return false;
return (bool)0;
}
}
// System.Boolean UnityEngine.XR.ARSubsystems.XROcclusionSubsystem::TryGetHumanDepth(UnityEngine.XR.ARSubsystems.XRTextureDescriptor&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XROcclusionSubsystem_TryGetHumanDepth_m84470C4EE9A481989D03BC78307236B8DD2E3C19 (XROcclusionSubsystem_t7546B929F9B5B6EB13B975FE4DB1F4099EE533B8 * __this, XRTextureDescriptor_t9CA857DCCC1208B74376787BE4F3008A01B29A57 * ___humanDepthDescriptor0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SubsystemWithProvider_3_get_provider_m6EFFE2CA2C3A415FF287A71E20A4601E8108E2C4_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
// => provider.TryGetHumanDepth(out humanDepthDescriptor);
Provider_t5B60C630FB68EFEAB6FA2F3D9A732C144003B7FB * L_0;
L_0 = SubsystemWithProvider_3_get_provider_m6EFFE2CA2C3A415FF287A71E20A4601E8108E2C4_inline(__this, /*hidden argument*/SubsystemWithProvider_3_get_provider_m6EFFE2CA2C3A415FF287A71E20A4601E8108E2C4_RuntimeMethod_var);
XRTextureDescriptor_t9CA857DCCC1208B74376787BE4F3008A01B29A57 * L_1 = ___humanDepthDescriptor0;
NullCheck(L_0);
bool L_2;
L_2 = VirtualFuncInvoker1< bool, XRTextureDescriptor_t9CA857DCCC1208B74376787BE4F3008A01B29A57 * >::Invoke(23 /* System.Boolean UnityEngine.XR.ARSubsystems.XROcclusionSubsystem/Provider::TryGetHumanDepth(UnityEngine.XR.ARSubsystems.XRTextureDescriptor&) */, L_0, (XRTextureDescriptor_t9CA857DCCC1208B74376787BE4F3008A01B29A57 *)L_1);
return L_2;
}
}
// System.Boolean UnityEngine.XR.ARSubsystems.XROcclusionSubsystem::TryAcquireHumanDepthCpuImage(UnityEngine.XR.ARSubsystems.XRCpuImage&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XROcclusionSubsystem_TryAcquireHumanDepthCpuImage_m8F88E371C22800DE4C7F0FB8AA4E3731D1F79C39 (XROcclusionSubsystem_t7546B929F9B5B6EB13B975FE4DB1F4099EE533B8 * __this, XRCpuImage_tA48C0687D95D3D63D1101E4E08EFCF0ABB2431CE * ___cpuImage0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SubsystemWithProvider_3_get_provider_m6EFFE2CA2C3A415FF287A71E20A4601E8108E2C4_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
Cinfo_t4E32E30AF6973611F1DD0F47FC041ED3A8775DA6 V_0;
memset((&V_0), 0, sizeof(V_0));
{
// if (provider.humanDepthCpuImageApi != null && provider.TryAcquireHumanDepthCpuImage(out var cinfo))
Provider_t5B60C630FB68EFEAB6FA2F3D9A732C144003B7FB * L_0;
L_0 = SubsystemWithProvider_3_get_provider_m6EFFE2CA2C3A415FF287A71E20A4601E8108E2C4_inline(__this, /*hidden argument*/SubsystemWithProvider_3_get_provider_m6EFFE2CA2C3A415FF287A71E20A4601E8108E2C4_RuntimeMethod_var);
NullCheck(L_0);
Api_t7C92F00C6416A2C636A44AAC833C3773C567DC3E * L_1;
L_1 = VirtualFuncInvoker0< Api_t7C92F00C6416A2C636A44AAC833C3773C567DC3E * >::Invoke(25 /* UnityEngine.XR.ARSubsystems.XRCpuImage/Api UnityEngine.XR.ARSubsystems.XROcclusionSubsystem/Provider::get_humanDepthCpuImageApi() */, L_0);
if (!L_1)
{
goto IL_0035;
}
}
{
Provider_t5B60C630FB68EFEAB6FA2F3D9A732C144003B7FB * L_2;
L_2 = SubsystemWithProvider_3_get_provider_m6EFFE2CA2C3A415FF287A71E20A4601E8108E2C4_inline(__this, /*hidden argument*/SubsystemWithProvider_3_get_provider_m6EFFE2CA2C3A415FF287A71E20A4601E8108E2C4_RuntimeMethod_var);
NullCheck(L_2);
bool L_3;
L_3 = VirtualFuncInvoker1< bool, Cinfo_t4E32E30AF6973611F1DD0F47FC041ED3A8775DA6 * >::Invoke(24 /* System.Boolean UnityEngine.XR.ARSubsystems.XROcclusionSubsystem/Provider::TryAcquireHumanDepthCpuImage(UnityEngine.XR.ARSubsystems.XRCpuImage/Cinfo&) */, L_2, (Cinfo_t4E32E30AF6973611F1DD0F47FC041ED3A8775DA6 *)(&V_0));
if (!L_3)
{
goto IL_0035;
}
}
{
// cpuImage = new XRCpuImage(provider.humanDepthCpuImageApi, cinfo);
XRCpuImage_tA48C0687D95D3D63D1101E4E08EFCF0ABB2431CE * L_4 = ___cpuImage0;
Provider_t5B60C630FB68EFEAB6FA2F3D9A732C144003B7FB * L_5;
L_5 = SubsystemWithProvider_3_get_provider_m6EFFE2CA2C3A415FF287A71E20A4601E8108E2C4_inline(__this, /*hidden argument*/SubsystemWithProvider_3_get_provider_m6EFFE2CA2C3A415FF287A71E20A4601E8108E2C4_RuntimeMethod_var);
NullCheck(L_5);
Api_t7C92F00C6416A2C636A44AAC833C3773C567DC3E * L_6;
L_6 = VirtualFuncInvoker0< Api_t7C92F00C6416A2C636A44AAC833C3773C567DC3E * >::Invoke(25 /* UnityEngine.XR.ARSubsystems.XRCpuImage/Api UnityEngine.XR.ARSubsystems.XROcclusionSubsystem/Provider::get_humanDepthCpuImageApi() */, L_5);
Cinfo_t4E32E30AF6973611F1DD0F47FC041ED3A8775DA6 L_7 = V_0;
XRCpuImage_tA48C0687D95D3D63D1101E4E08EFCF0ABB2431CE L_8;
memset((&L_8), 0, sizeof(L_8));
XRCpuImage__ctor_mA44BE98BA315639462481743B96A650B89F7C26E((&L_8), L_6, L_7, /*hidden argument*/NULL);
*(XRCpuImage_tA48C0687D95D3D63D1101E4E08EFCF0ABB2431CE *)L_4 = L_8;
Il2CppCodeGenWriteBarrier((void**)&(((XRCpuImage_tA48C0687D95D3D63D1101E4E08EFCF0ABB2431CE *)L_4)->___m_Api_1), (void*)NULL);
// return true;
return (bool)1;
}
IL_0035:
{
// cpuImage = default;
XRCpuImage_tA48C0687D95D3D63D1101E4E08EFCF0ABB2431CE * L_9 = ___cpuImage0;
il2cpp_codegen_initobj(L_9, sizeof(XRCpuImage_tA48C0687D95D3D63D1101E4E08EFCF0ABB2431CE ));
// return false;
return (bool)0;
}
}
// System.Boolean UnityEngine.XR.ARSubsystems.XROcclusionSubsystem::TryGetEnvironmentDepth(UnityEngine.XR.ARSubsystems.XRTextureDescriptor&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XROcclusionSubsystem_TryGetEnvironmentDepth_m3250960687DA0BCD02C6C933B8F27824DEF9186E (XROcclusionSubsystem_t7546B929F9B5B6EB13B975FE4DB1F4099EE533B8 * __this, XRTextureDescriptor_t9CA857DCCC1208B74376787BE4F3008A01B29A57 * ___environmentDepthDescriptor0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SubsystemWithProvider_3_get_provider_m6EFFE2CA2C3A415FF287A71E20A4601E8108E2C4_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
// => provider.TryGetEnvironmentDepth(out environmentDepthDescriptor);
Provider_t5B60C630FB68EFEAB6FA2F3D9A732C144003B7FB * L_0;
L_0 = SubsystemWithProvider_3_get_provider_m6EFFE2CA2C3A415FF287A71E20A4601E8108E2C4_inline(__this, /*hidden argument*/SubsystemWithProvider_3_get_provider_m6EFFE2CA2C3A415FF287A71E20A4601E8108E2C4_RuntimeMethod_var);
XRTextureDescriptor_t9CA857DCCC1208B74376787BE4F3008A01B29A57 * L_1 = ___environmentDepthDescriptor0;
NullCheck(L_0);
bool L_2;
L_2 = VirtualFuncInvoker1< bool, XRTextureDescriptor_t9CA857DCCC1208B74376787BE4F3008A01B29A57 * >::Invoke(26 /* System.Boolean UnityEngine.XR.ARSubsystems.XROcclusionSubsystem/Provider::TryGetEnvironmentDepth(UnityEngine.XR.ARSubsystems.XRTextureDescriptor&) */, L_0, (XRTextureDescriptor_t9CA857DCCC1208B74376787BE4F3008A01B29A57 *)L_1);
return L_2;
}
}
// System.Boolean UnityEngine.XR.ARSubsystems.XROcclusionSubsystem::TryAcquireEnvironmentDepthCpuImage(UnityEngine.XR.ARSubsystems.XRCpuImage&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XROcclusionSubsystem_TryAcquireEnvironmentDepthCpuImage_m325D766B287246E7D0A4E80A6CB099AC2D303EEA (XROcclusionSubsystem_t7546B929F9B5B6EB13B975FE4DB1F4099EE533B8 * __this, XRCpuImage_tA48C0687D95D3D63D1101E4E08EFCF0ABB2431CE * ___cpuImage0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SubsystemWithProvider_3_get_provider_m6EFFE2CA2C3A415FF287A71E20A4601E8108E2C4_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
Cinfo_t4E32E30AF6973611F1DD0F47FC041ED3A8775DA6 V_0;
memset((&V_0), 0, sizeof(V_0));
{
// if (provider.environmentDepthCpuImageApi != null && provider.TryAcquireEnvironmentDepthCpuImage(out var cinfo))
Provider_t5B60C630FB68EFEAB6FA2F3D9A732C144003B7FB * L_0;
L_0 = SubsystemWithProvider_3_get_provider_m6EFFE2CA2C3A415FF287A71E20A4601E8108E2C4_inline(__this, /*hidden argument*/SubsystemWithProvider_3_get_provider_m6EFFE2CA2C3A415FF287A71E20A4601E8108E2C4_RuntimeMethod_var);
NullCheck(L_0);
Api_t7C92F00C6416A2C636A44AAC833C3773C567DC3E * L_1;
L_1 = VirtualFuncInvoker0< Api_t7C92F00C6416A2C636A44AAC833C3773C567DC3E * >::Invoke(28 /* UnityEngine.XR.ARSubsystems.XRCpuImage/Api UnityEngine.XR.ARSubsystems.XROcclusionSubsystem/Provider::get_environmentDepthCpuImageApi() */, L_0);
if (!L_1)
{
goto IL_0035;
}
}
{
Provider_t5B60C630FB68EFEAB6FA2F3D9A732C144003B7FB * L_2;
L_2 = SubsystemWithProvider_3_get_provider_m6EFFE2CA2C3A415FF287A71E20A4601E8108E2C4_inline(__this, /*hidden argument*/SubsystemWithProvider_3_get_provider_m6EFFE2CA2C3A415FF287A71E20A4601E8108E2C4_RuntimeMethod_var);
NullCheck(L_2);
bool L_3;
L_3 = VirtualFuncInvoker1< bool, Cinfo_t4E32E30AF6973611F1DD0F47FC041ED3A8775DA6 * >::Invoke(27 /* System.Boolean UnityEngine.XR.ARSubsystems.XROcclusionSubsystem/Provider::TryAcquireEnvironmentDepthCpuImage(UnityEngine.XR.ARSubsystems.XRCpuImage/Cinfo&) */, L_2, (Cinfo_t4E32E30AF6973611F1DD0F47FC041ED3A8775DA6 *)(&V_0));
if (!L_3)
{
goto IL_0035;
}
}
{
// cpuImage = new XRCpuImage(provider.environmentDepthCpuImageApi, cinfo);
XRCpuImage_tA48C0687D95D3D63D1101E4E08EFCF0ABB2431CE * L_4 = ___cpuImage0;
Provider_t5B60C630FB68EFEAB6FA2F3D9A732C144003B7FB * L_5;
L_5 = SubsystemWithProvider_3_get_provider_m6EFFE2CA2C3A415FF287A71E20A4601E8108E2C4_inline(__this, /*hidden argument*/SubsystemWithProvider_3_get_provider_m6EFFE2CA2C3A415FF287A71E20A4601E8108E2C4_RuntimeMethod_var);
NullCheck(L_5);
Api_t7C92F00C6416A2C636A44AAC833C3773C567DC3E * L_6;
L_6 = VirtualFuncInvoker0< Api_t7C92F00C6416A2C636A44AAC833C3773C567DC3E * >::Invoke(28 /* UnityEngine.XR.ARSubsystems.XRCpuImage/Api UnityEngine.XR.ARSubsystems.XROcclusionSubsystem/Provider::get_environmentDepthCpuImageApi() */, L_5);
Cinfo_t4E32E30AF6973611F1DD0F47FC041ED3A8775DA6 L_7 = V_0;
XRCpuImage_tA48C0687D95D3D63D1101E4E08EFCF0ABB2431CE L_8;
memset((&L_8), 0, sizeof(L_8));
XRCpuImage__ctor_mA44BE98BA315639462481743B96A650B89F7C26E((&L_8), L_6, L_7, /*hidden argument*/NULL);
*(XRCpuImage_tA48C0687D95D3D63D1101E4E08EFCF0ABB2431CE *)L_4 = L_8;
Il2CppCodeGenWriteBarrier((void**)&(((XRCpuImage_tA48C0687D95D3D63D1101E4E08EFCF0ABB2431CE *)L_4)->___m_Api_1), (void*)NULL);
// return true;
return (bool)1;
}
IL_0035:
{
// cpuImage = default;
XRCpuImage_tA48C0687D95D3D63D1101E4E08EFCF0ABB2431CE * L_9 = ___cpuImage0;
il2cpp_codegen_initobj(L_9, sizeof(XRCpuImage_tA48C0687D95D3D63D1101E4E08EFCF0ABB2431CE ));
// return false;
return (bool)0;
}
}
// System.Boolean UnityEngine.XR.ARSubsystems.XROcclusionSubsystem::TryGetEnvironmentDepthConfidence(UnityEngine.XR.ARSubsystems.XRTextureDescriptor&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XROcclusionSubsystem_TryGetEnvironmentDepthConfidence_m7ADE5E051A906BA8C42DE40EFD5151663033002A (XROcclusionSubsystem_t7546B929F9B5B6EB13B975FE4DB1F4099EE533B8 * __this, XRTextureDescriptor_t9CA857DCCC1208B74376787BE4F3008A01B29A57 * ___environmentDepthConfidenceDescriptor0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SubsystemWithProvider_3_get_provider_m6EFFE2CA2C3A415FF287A71E20A4601E8108E2C4_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
// => provider.TryGetEnvironmentDepthConfidence(out environmentDepthConfidenceDescriptor);
Provider_t5B60C630FB68EFEAB6FA2F3D9A732C144003B7FB * L_0;
L_0 = SubsystemWithProvider_3_get_provider_m6EFFE2CA2C3A415FF287A71E20A4601E8108E2C4_inline(__this, /*hidden argument*/SubsystemWithProvider_3_get_provider_m6EFFE2CA2C3A415FF287A71E20A4601E8108E2C4_RuntimeMethod_var);
XRTextureDescriptor_t9CA857DCCC1208B74376787BE4F3008A01B29A57 * L_1 = ___environmentDepthConfidenceDescriptor0;
NullCheck(L_0);
bool L_2;
L_2 = VirtualFuncInvoker1< bool, XRTextureDescriptor_t9CA857DCCC1208B74376787BE4F3008A01B29A57 * >::Invoke(29 /* System.Boolean UnityEngine.XR.ARSubsystems.XROcclusionSubsystem/Provider::TryGetEnvironmentDepthConfidence(UnityEngine.XR.ARSubsystems.XRTextureDescriptor&) */, L_0, (XRTextureDescriptor_t9CA857DCCC1208B74376787BE4F3008A01B29A57 *)L_1);
return L_2;
}
}
// System.Boolean UnityEngine.XR.ARSubsystems.XROcclusionSubsystem::TryAcquireEnvironmentDepthConfidenceCpuImage(UnityEngine.XR.ARSubsystems.XRCpuImage&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XROcclusionSubsystem_TryAcquireEnvironmentDepthConfidenceCpuImage_m1DE682066BB3A73A81945750A7324F28FBAD80DB (XROcclusionSubsystem_t7546B929F9B5B6EB13B975FE4DB1F4099EE533B8 * __this, XRCpuImage_tA48C0687D95D3D63D1101E4E08EFCF0ABB2431CE * ___cpuImage0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SubsystemWithProvider_3_get_provider_m6EFFE2CA2C3A415FF287A71E20A4601E8108E2C4_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
Cinfo_t4E32E30AF6973611F1DD0F47FC041ED3A8775DA6 V_0;
memset((&V_0), 0, sizeof(V_0));
{
// if (provider.environmentDepthConfidenceCpuImageApi != null && provider.TryAcquireEnvironmentDepthConfidenceCpuImage(out var cinfo))
Provider_t5B60C630FB68EFEAB6FA2F3D9A732C144003B7FB * L_0;
L_0 = SubsystemWithProvider_3_get_provider_m6EFFE2CA2C3A415FF287A71E20A4601E8108E2C4_inline(__this, /*hidden argument*/SubsystemWithProvider_3_get_provider_m6EFFE2CA2C3A415FF287A71E20A4601E8108E2C4_RuntimeMethod_var);
NullCheck(L_0);
Api_t7C92F00C6416A2C636A44AAC833C3773C567DC3E * L_1;
L_1 = VirtualFuncInvoker0< Api_t7C92F00C6416A2C636A44AAC833C3773C567DC3E * >::Invoke(31 /* UnityEngine.XR.ARSubsystems.XRCpuImage/Api UnityEngine.XR.ARSubsystems.XROcclusionSubsystem/Provider::get_environmentDepthConfidenceCpuImageApi() */, L_0);
if (!L_1)
{
goto IL_0035;
}
}
{
Provider_t5B60C630FB68EFEAB6FA2F3D9A732C144003B7FB * L_2;
L_2 = SubsystemWithProvider_3_get_provider_m6EFFE2CA2C3A415FF287A71E20A4601E8108E2C4_inline(__this, /*hidden argument*/SubsystemWithProvider_3_get_provider_m6EFFE2CA2C3A415FF287A71E20A4601E8108E2C4_RuntimeMethod_var);
NullCheck(L_2);
bool L_3;
L_3 = VirtualFuncInvoker1< bool, Cinfo_t4E32E30AF6973611F1DD0F47FC041ED3A8775DA6 * >::Invoke(30 /* System.Boolean UnityEngine.XR.ARSubsystems.XROcclusionSubsystem/Provider::TryAcquireEnvironmentDepthConfidenceCpuImage(UnityEngine.XR.ARSubsystems.XRCpuImage/Cinfo&) */, L_2, (Cinfo_t4E32E30AF6973611F1DD0F47FC041ED3A8775DA6 *)(&V_0));
if (!L_3)
{
goto IL_0035;
}
}
{
// cpuImage = new XRCpuImage(provider.environmentDepthCpuImageApi, cinfo);
XRCpuImage_tA48C0687D95D3D63D1101E4E08EFCF0ABB2431CE * L_4 = ___cpuImage0;
Provider_t5B60C630FB68EFEAB6FA2F3D9A732C144003B7FB * L_5;
L_5 = SubsystemWithProvider_3_get_provider_m6EFFE2CA2C3A415FF287A71E20A4601E8108E2C4_inline(__this, /*hidden argument*/SubsystemWithProvider_3_get_provider_m6EFFE2CA2C3A415FF287A71E20A4601E8108E2C4_RuntimeMethod_var);
NullCheck(L_5);
Api_t7C92F00C6416A2C636A44AAC833C3773C567DC3E * L_6;
L_6 = VirtualFuncInvoker0< Api_t7C92F00C6416A2C636A44AAC833C3773C567DC3E * >::Invoke(28 /* UnityEngine.XR.ARSubsystems.XRCpuImage/Api UnityEngine.XR.ARSubsystems.XROcclusionSubsystem/Provider::get_environmentDepthCpuImageApi() */, L_5);
Cinfo_t4E32E30AF6973611F1DD0F47FC041ED3A8775DA6 L_7 = V_0;
XRCpuImage_tA48C0687D95D3D63D1101E4E08EFCF0ABB2431CE L_8;
memset((&L_8), 0, sizeof(L_8));
XRCpuImage__ctor_mA44BE98BA315639462481743B96A650B89F7C26E((&L_8), L_6, L_7, /*hidden argument*/NULL);
*(XRCpuImage_tA48C0687D95D3D63D1101E4E08EFCF0ABB2431CE *)L_4 = L_8;
Il2CppCodeGenWriteBarrier((void**)&(((XRCpuImage_tA48C0687D95D3D63D1101E4E08EFCF0ABB2431CE *)L_4)->___m_Api_1), (void*)NULL);
// return true;
return (bool)1;
}
IL_0035:
{
// cpuImage = default;
XRCpuImage_tA48C0687D95D3D63D1101E4E08EFCF0ABB2431CE * L_9 = ___cpuImage0;
il2cpp_codegen_initobj(L_9, sizeof(XRCpuImage_tA48C0687D95D3D63D1101E4E08EFCF0ABB2431CE ));
// return false;
return (bool)0;
}
}
// Unity.Collections.NativeArray`1<UnityEngine.XR.ARSubsystems.XRTextureDescriptor> UnityEngine.XR.ARSubsystems.XROcclusionSubsystem::GetTextureDescriptors(Unity.Collections.Allocator)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NativeArray_1_t290DD5A348463DD4415AFE27775047312478F952 XROcclusionSubsystem_GetTextureDescriptors_mAFD50E268CDFFAAC07B14246FC620DFCE7D8371F (XROcclusionSubsystem_t7546B929F9B5B6EB13B975FE4DB1F4099EE533B8 * __this, int32_t ___allocator0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SubsystemWithProvider_3_get_provider_m6EFFE2CA2C3A415FF287A71E20A4601E8108E2C4_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
XRTextureDescriptor_t9CA857DCCC1208B74376787BE4F3008A01B29A57 V_0;
memset((&V_0), 0, sizeof(V_0));
{
// => provider.GetTextureDescriptors(default(XRTextureDescriptor), allocator);
Provider_t5B60C630FB68EFEAB6FA2F3D9A732C144003B7FB * L_0;
L_0 = SubsystemWithProvider_3_get_provider_m6EFFE2CA2C3A415FF287A71E20A4601E8108E2C4_inline(__this, /*hidden argument*/SubsystemWithProvider_3_get_provider_m6EFFE2CA2C3A415FF287A71E20A4601E8108E2C4_RuntimeMethod_var);
il2cpp_codegen_initobj((&V_0), sizeof(XRTextureDescriptor_t9CA857DCCC1208B74376787BE4F3008A01B29A57 ));
XRTextureDescriptor_t9CA857DCCC1208B74376787BE4F3008A01B29A57 L_1 = V_0;
int32_t L_2 = ___allocator0;
NullCheck(L_0);
NativeArray_1_t290DD5A348463DD4415AFE27775047312478F952 L_3;
L_3 = VirtualFuncInvoker2< NativeArray_1_t290DD5A348463DD4415AFE27775047312478F952 , XRTextureDescriptor_t9CA857DCCC1208B74376787BE4F3008A01B29A57 , int32_t >::Invoke(32 /* Unity.Collections.NativeArray`1<UnityEngine.XR.ARSubsystems.XRTextureDescriptor> UnityEngine.XR.ARSubsystems.XROcclusionSubsystem/Provider::GetTextureDescriptors(UnityEngine.XR.ARSubsystems.XRTextureDescriptor,Unity.Collections.Allocator) */, L_0, L_1, L_2);
return L_3;
}
}
// System.Void UnityEngine.XR.ARSubsystems.XROcclusionSubsystem::GetMaterialKeywords(System.Collections.Generic.List`1<System.String>&,System.Collections.Generic.List`1<System.String>&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XROcclusionSubsystem_GetMaterialKeywords_mEE0AF1514718B811FCD728CFF19906F1233A4962 (XROcclusionSubsystem_t7546B929F9B5B6EB13B975FE4DB1F4099EE533B8 * __this, List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3 ** ___enabledKeywords0, List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3 ** ___disabledKeywords1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SubsystemWithProvider_3_get_provider_m6EFFE2CA2C3A415FF287A71E20A4601E8108E2C4_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
// => provider.GetMaterialKeywords(out enabledKeywords, out disabledKeywords);
Provider_t5B60C630FB68EFEAB6FA2F3D9A732C144003B7FB * L_0;
L_0 = SubsystemWithProvider_3_get_provider_m6EFFE2CA2C3A415FF287A71E20A4601E8108E2C4_inline(__this, /*hidden argument*/SubsystemWithProvider_3_get_provider_m6EFFE2CA2C3A415FF287A71E20A4601E8108E2C4_RuntimeMethod_var);
List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3 ** L_1 = ___enabledKeywords0;
List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3 ** L_2 = ___disabledKeywords1;
NullCheck(L_0);
VirtualActionInvoker2< List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3 **, List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3 ** >::Invoke(33 /* System.Void UnityEngine.XR.ARSubsystems.XROcclusionSubsystem/Provider::GetMaterialKeywords(System.Collections.Generic.List`1<System.String>&,System.Collections.Generic.List`1<System.String>&) */, L_0, (List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3 **)L_1, (List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3 **)L_2);
return;
}
}
// System.Boolean UnityEngine.XR.ARSubsystems.XROcclusionSubsystem::Register(UnityEngine.XR.ARSubsystems.XROcclusionSubsystemCinfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XROcclusionSubsystem_Register_mC754EFF602648A08D654B4CAFF0906CBFEFB9EB0 (XROcclusionSubsystemCinfo_tA29FDBA57EBA835927124FC18780DDD9CC4D84FD ___occlusionSubsystemCinfo0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SubsystemDescriptorStore_tE5D99C3159868DE6506269CB6B830621F8BC31A6_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
// XROcclusionSubsystemDescriptor occlusionSubsystemDescriptor = XROcclusionSubsystemDescriptor.Create(occlusionSubsystemCinfo);
XROcclusionSubsystemCinfo_tA29FDBA57EBA835927124FC18780DDD9CC4D84FD L_0 = ___occlusionSubsystemCinfo0;
XROcclusionSubsystemDescriptor_tC9C8F2EFB7768358C203968CA71D353F0DD234FB * L_1;
L_1 = XROcclusionSubsystemDescriptor_Create_m31FA1D0EDAF351742A97C9E655F069AF8544C852(L_0, /*hidden argument*/NULL);
// SubsystemDescriptorStore.RegisterDescriptor(occlusionSubsystemDescriptor);
IL2CPP_RUNTIME_CLASS_INIT(SubsystemDescriptorStore_tE5D99C3159868DE6506269CB6B830621F8BC31A6_il2cpp_TypeInfo_var);
SubsystemDescriptorStore_RegisterDescriptor_m5586866BB233EF26B98640851816DD1764657688(L_1, /*hidden argument*/NULL);
// return true;
return (bool)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
// Conversion methods for marshalling of: UnityEngine.XR.ARSubsystems.XROcclusionSubsystemCinfo
IL2CPP_EXTERN_C void XROcclusionSubsystemCinfo_tA29FDBA57EBA835927124FC18780DDD9CC4D84FD_marshal_pinvoke(const XROcclusionSubsystemCinfo_tA29FDBA57EBA835927124FC18780DDD9CC4D84FD& unmarshaled, XROcclusionSubsystemCinfo_tA29FDBA57EBA835927124FC18780DDD9CC4D84FD_marshaled_pinvoke& marshaled)
{
Exception_t* ___U3CproviderTypeU3Ek__BackingField_1Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field '<providerType>k__BackingField' of type 'XROcclusionSubsystemCinfo': Reference type field marshaling is not supported.");
IL2CPP_RAISE_MANAGED_EXCEPTION(___U3CproviderTypeU3Ek__BackingField_1Exception, NULL);
}
IL2CPP_EXTERN_C void XROcclusionSubsystemCinfo_tA29FDBA57EBA835927124FC18780DDD9CC4D84FD_marshal_pinvoke_back(const XROcclusionSubsystemCinfo_tA29FDBA57EBA835927124FC18780DDD9CC4D84FD_marshaled_pinvoke& marshaled, XROcclusionSubsystemCinfo_tA29FDBA57EBA835927124FC18780DDD9CC4D84FD& unmarshaled)
{
Exception_t* ___U3CproviderTypeU3Ek__BackingField_1Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field '<providerType>k__BackingField' of type 'XROcclusionSubsystemCinfo': Reference type field marshaling is not supported.");
IL2CPP_RAISE_MANAGED_EXCEPTION(___U3CproviderTypeU3Ek__BackingField_1Exception, NULL);
}
// Conversion method for clean up from marshalling of: UnityEngine.XR.ARSubsystems.XROcclusionSubsystemCinfo
IL2CPP_EXTERN_C void XROcclusionSubsystemCinfo_tA29FDBA57EBA835927124FC18780DDD9CC4D84FD_marshal_pinvoke_cleanup(XROcclusionSubsystemCinfo_tA29FDBA57EBA835927124FC18780DDD9CC4D84FD_marshaled_pinvoke& marshaled)
{
}
// Conversion methods for marshalling of: UnityEngine.XR.ARSubsystems.XROcclusionSubsystemCinfo
IL2CPP_EXTERN_C void XROcclusionSubsystemCinfo_tA29FDBA57EBA835927124FC18780DDD9CC4D84FD_marshal_com(const XROcclusionSubsystemCinfo_tA29FDBA57EBA835927124FC18780DDD9CC4D84FD& unmarshaled, XROcclusionSubsystemCinfo_tA29FDBA57EBA835927124FC18780DDD9CC4D84FD_marshaled_com& marshaled)
{
Exception_t* ___U3CproviderTypeU3Ek__BackingField_1Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field '<providerType>k__BackingField' of type 'XROcclusionSubsystemCinfo': Reference type field marshaling is not supported.");
IL2CPP_RAISE_MANAGED_EXCEPTION(___U3CproviderTypeU3Ek__BackingField_1Exception, NULL);
}
IL2CPP_EXTERN_C void XROcclusionSubsystemCinfo_tA29FDBA57EBA835927124FC18780DDD9CC4D84FD_marshal_com_back(const XROcclusionSubsystemCinfo_tA29FDBA57EBA835927124FC18780DDD9CC4D84FD_marshaled_com& marshaled, XROcclusionSubsystemCinfo_tA29FDBA57EBA835927124FC18780DDD9CC4D84FD& unmarshaled)
{
Exception_t* ___U3CproviderTypeU3Ek__BackingField_1Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field '<providerType>k__BackingField' of type 'XROcclusionSubsystemCinfo': Reference type field marshaling is not supported.");
IL2CPP_RAISE_MANAGED_EXCEPTION(___U3CproviderTypeU3Ek__BackingField_1Exception, NULL);
}
// Conversion method for clean up from marshalling of: UnityEngine.XR.ARSubsystems.XROcclusionSubsystemCinfo
IL2CPP_EXTERN_C void XROcclusionSubsystemCinfo_tA29FDBA57EBA835927124FC18780DDD9CC4D84FD_marshal_com_cleanup(XROcclusionSubsystemCinfo_tA29FDBA57EBA835927124FC18780DDD9CC4D84FD_marshaled_com& marshaled)
{
}
// System.String UnityEngine.XR.ARSubsystems.XROcclusionSubsystemCinfo::get_id()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XROcclusionSubsystemCinfo_get_id_m52AA71D202632FA1607B0FEF64946642B6C3608C (XROcclusionSubsystemCinfo_tA29FDBA57EBA835927124FC18780DDD9CC4D84FD * __this, const RuntimeMethod* method)
{
{
// public string id { get; set; }
String_t* L_0 = __this->get_U3CidU3Ek__BackingField_0();
return L_0;
}
}
IL2CPP_EXTERN_C String_t* XROcclusionSubsystemCinfo_get_id_m52AA71D202632FA1607B0FEF64946642B6C3608C_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
XROcclusionSubsystemCinfo_tA29FDBA57EBA835927124FC18780DDD9CC4D84FD * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XROcclusionSubsystemCinfo_tA29FDBA57EBA835927124FC18780DDD9CC4D84FD *>(__this + _offset);
String_t* _returnValue;
_returnValue = XROcclusionSubsystemCinfo_get_id_m52AA71D202632FA1607B0FEF64946642B6C3608C_inline(_thisAdjusted, method);
return _returnValue;
}
// System.Void UnityEngine.XR.ARSubsystems.XROcclusionSubsystemCinfo::set_id(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XROcclusionSubsystemCinfo_set_id_m19076B4B5E6D6AA32BE751C1F2611CB7C3C152A0 (XROcclusionSubsystemCinfo_tA29FDBA57EBA835927124FC18780DDD9CC4D84FD * __this, String_t* ___value0, const RuntimeMethod* method)
{
{
// public string id { get; set; }
String_t* L_0 = ___value0;
__this->set_U3CidU3Ek__BackingField_0(L_0);
return;
}
}
IL2CPP_EXTERN_C void XROcclusionSubsystemCinfo_set_id_m19076B4B5E6D6AA32BE751C1F2611CB7C3C152A0_AdjustorThunk (RuntimeObject * __this, String_t* ___value0, const RuntimeMethod* method)
{
XROcclusionSubsystemCinfo_tA29FDBA57EBA835927124FC18780DDD9CC4D84FD * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XROcclusionSubsystemCinfo_tA29FDBA57EBA835927124FC18780DDD9CC4D84FD *>(__this + _offset);
XROcclusionSubsystemCinfo_set_id_m19076B4B5E6D6AA32BE751C1F2611CB7C3C152A0_inline(_thisAdjusted, ___value0, method);
}
// System.Type UnityEngine.XR.ARSubsystems.XROcclusionSubsystemCinfo::get_providerType()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t * XROcclusionSubsystemCinfo_get_providerType_m8D7C8F76AE3FAEEC4952D6FF75134CE4DADFFA22 (XROcclusionSubsystemCinfo_tA29FDBA57EBA835927124FC18780DDD9CC4D84FD * __this, const RuntimeMethod* method)
{
{
// public Type providerType { get; set; }
Type_t * L_0 = __this->get_U3CproviderTypeU3Ek__BackingField_1();
return L_0;
}
}
IL2CPP_EXTERN_C Type_t * XROcclusionSubsystemCinfo_get_providerType_m8D7C8F76AE3FAEEC4952D6FF75134CE4DADFFA22_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
XROcclusionSubsystemCinfo_tA29FDBA57EBA835927124FC18780DDD9CC4D84FD * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XROcclusionSubsystemCinfo_tA29FDBA57EBA835927124FC18780DDD9CC4D84FD *>(__this + _offset);
Type_t * _returnValue;
_returnValue = XROcclusionSubsystemCinfo_get_providerType_m8D7C8F76AE3FAEEC4952D6FF75134CE4DADFFA22_inline(_thisAdjusted, method);
return _returnValue;
}
// System.Void UnityEngine.XR.ARSubsystems.XROcclusionSubsystemCinfo::set_providerType(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XROcclusionSubsystemCinfo_set_providerType_mA9E2685FC29652BBF41CD7398D8A434B72B68556 (XROcclusionSubsystemCinfo_tA29FDBA57EBA835927124FC18780DDD9CC4D84FD * __this, Type_t * ___value0, const RuntimeMethod* method)
{
{
// public Type providerType { get; set; }
Type_t * L_0 = ___value0;
__this->set_U3CproviderTypeU3Ek__BackingField_1(L_0);
return;
}
}
IL2CPP_EXTERN_C void XROcclusionSubsystemCinfo_set_providerType_mA9E2685FC29652BBF41CD7398D8A434B72B68556_AdjustorThunk (RuntimeObject * __this, Type_t * ___value0, const RuntimeMethod* method)
{
XROcclusionSubsystemCinfo_tA29FDBA57EBA835927124FC18780DDD9CC4D84FD * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XROcclusionSubsystemCinfo_tA29FDBA57EBA835927124FC18780DDD9CC4D84FD *>(__this + _offset);
XROcclusionSubsystemCinfo_set_providerType_mA9E2685FC29652BBF41CD7398D8A434B72B68556_inline(_thisAdjusted, ___value0, method);
}
// System.Type UnityEngine.XR.ARSubsystems.XROcclusionSubsystemCinfo::get_subsystemTypeOverride()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t * XROcclusionSubsystemCinfo_get_subsystemTypeOverride_m60945479B5A62376EEA5633F4FF21D4BD137C125 (XROcclusionSubsystemCinfo_tA29FDBA57EBA835927124FC18780DDD9CC4D84FD * __this, const RuntimeMethod* method)
{
{
// public Type subsystemTypeOverride { get; set; }
Type_t * L_0 = __this->get_U3CsubsystemTypeOverrideU3Ek__BackingField_2();
return L_0;
}
}
IL2CPP_EXTERN_C Type_t * XROcclusionSubsystemCinfo_get_subsystemTypeOverride_m60945479B5A62376EEA5633F4FF21D4BD137C125_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
XROcclusionSubsystemCinfo_tA29FDBA57EBA835927124FC18780DDD9CC4D84FD * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XROcclusionSubsystemCinfo_tA29FDBA57EBA835927124FC18780DDD9CC4D84FD *>(__this + _offset);
Type_t * _returnValue;
_returnValue = XROcclusionSubsystemCinfo_get_subsystemTypeOverride_m60945479B5A62376EEA5633F4FF21D4BD137C125_inline(_thisAdjusted, method);
return _returnValue;
}
// System.Void UnityEngine.XR.ARSubsystems.XROcclusionSubsystemCinfo::set_subsystemTypeOverride(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XROcclusionSubsystemCinfo_set_subsystemTypeOverride_mC5D9DB3F2CDC007F826FC2AB790F1622DFBA0F63 (XROcclusionSubsystemCinfo_tA29FDBA57EBA835927124FC18780DDD9CC4D84FD * __this, Type_t * ___value0, const RuntimeMethod* method)
{
{
// public Type subsystemTypeOverride { get; set; }
Type_t * L_0 = ___value0;
__this->set_U3CsubsystemTypeOverrideU3Ek__BackingField_2(L_0);
return;
}
}
IL2CPP_EXTERN_C void XROcclusionSubsystemCinfo_set_subsystemTypeOverride_mC5D9DB3F2CDC007F826FC2AB790F1622DFBA0F63_AdjustorThunk (RuntimeObject * __this, Type_t * ___value0, const RuntimeMethod* method)
{
XROcclusionSubsystemCinfo_tA29FDBA57EBA835927124FC18780DDD9CC4D84FD * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XROcclusionSubsystemCinfo_tA29FDBA57EBA835927124FC18780DDD9CC4D84FD *>(__this + _offset);
XROcclusionSubsystemCinfo_set_subsystemTypeOverride_mC5D9DB3F2CDC007F826FC2AB790F1622DFBA0F63_inline(_thisAdjusted, ___value0, method);
}
// System.Boolean UnityEngine.XR.ARSubsystems.XROcclusionSubsystemCinfo::get_supportsHumanSegmentationStencilImage()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XROcclusionSubsystemCinfo_get_supportsHumanSegmentationStencilImage_m3F2F9B49E2326FE8A773C655848F6497A5F8A797 (XROcclusionSubsystemCinfo_tA29FDBA57EBA835927124FC18780DDD9CC4D84FD * __this, const RuntimeMethod* method)
{
{
// public bool supportsHumanSegmentationStencilImage { get; set; }
bool L_0 = __this->get_U3CsupportsHumanSegmentationStencilImageU3Ek__BackingField_4();
return L_0;
}
}
IL2CPP_EXTERN_C bool XROcclusionSubsystemCinfo_get_supportsHumanSegmentationStencilImage_m3F2F9B49E2326FE8A773C655848F6497A5F8A797_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
XROcclusionSubsystemCinfo_tA29FDBA57EBA835927124FC18780DDD9CC4D84FD * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XROcclusionSubsystemCinfo_tA29FDBA57EBA835927124FC18780DDD9CC4D84FD *>(__this + _offset);
bool _returnValue;
_returnValue = XROcclusionSubsystemCinfo_get_supportsHumanSegmentationStencilImage_m3F2F9B49E2326FE8A773C655848F6497A5F8A797_inline(_thisAdjusted, method);
return _returnValue;
}
// System.Void UnityEngine.XR.ARSubsystems.XROcclusionSubsystemCinfo::set_supportsHumanSegmentationStencilImage(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XROcclusionSubsystemCinfo_set_supportsHumanSegmentationStencilImage_mEC6C58C95DF515008316ED9A33A37ABBFBFD88BD (XROcclusionSubsystemCinfo_tA29FDBA57EBA835927124FC18780DDD9CC4D84FD * __this, bool ___value0, const RuntimeMethod* method)
{
{
// public bool supportsHumanSegmentationStencilImage { get; set; }
bool L_0 = ___value0;
__this->set_U3CsupportsHumanSegmentationStencilImageU3Ek__BackingField_4(L_0);
return;
}
}
IL2CPP_EXTERN_C void XROcclusionSubsystemCinfo_set_supportsHumanSegmentationStencilImage_mEC6C58C95DF515008316ED9A33A37ABBFBFD88BD_AdjustorThunk (RuntimeObject * __this, bool ___value0, const RuntimeMethod* method)
{
XROcclusionSubsystemCinfo_tA29FDBA57EBA835927124FC18780DDD9CC4D84FD * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XROcclusionSubsystemCinfo_tA29FDBA57EBA835927124FC18780DDD9CC4D84FD *>(__this + _offset);
XROcclusionSubsystemCinfo_set_supportsHumanSegmentationStencilImage_mEC6C58C95DF515008316ED9A33A37ABBFBFD88BD_inline(_thisAdjusted, ___value0, method);
}
// System.Boolean UnityEngine.XR.ARSubsystems.XROcclusionSubsystemCinfo::get_supportsHumanSegmentationDepthImage()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XROcclusionSubsystemCinfo_get_supportsHumanSegmentationDepthImage_mBFFC1F3611B38652EEFD21E2D7433B71F36A172D (XROcclusionSubsystemCinfo_tA29FDBA57EBA835927124FC18780DDD9CC4D84FD * __this, const RuntimeMethod* method)
{
{
// public bool supportsHumanSegmentationDepthImage { get; set; }
bool L_0 = __this->get_U3CsupportsHumanSegmentationDepthImageU3Ek__BackingField_5();
return L_0;
}
}
IL2CPP_EXTERN_C bool XROcclusionSubsystemCinfo_get_supportsHumanSegmentationDepthImage_mBFFC1F3611B38652EEFD21E2D7433B71F36A172D_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
XROcclusionSubsystemCinfo_tA29FDBA57EBA835927124FC18780DDD9CC4D84FD * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XROcclusionSubsystemCinfo_tA29FDBA57EBA835927124FC18780DDD9CC4D84FD *>(__this + _offset);
bool _returnValue;
_returnValue = XROcclusionSubsystemCinfo_get_supportsHumanSegmentationDepthImage_mBFFC1F3611B38652EEFD21E2D7433B71F36A172D_inline(_thisAdjusted, method);
return _returnValue;
}
// System.Void UnityEngine.XR.ARSubsystems.XROcclusionSubsystemCinfo::set_supportsHumanSegmentationDepthImage(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XROcclusionSubsystemCinfo_set_supportsHumanSegmentationDepthImage_mF08FD3863AEB93D47CCF50BD197780D2AB6F0705 (XROcclusionSubsystemCinfo_tA29FDBA57EBA835927124FC18780DDD9CC4D84FD * __this, bool ___value0, const RuntimeMethod* method)
{
{
// public bool supportsHumanSegmentationDepthImage { get; set; }
bool L_0 = ___value0;
__this->set_U3CsupportsHumanSegmentationDepthImageU3Ek__BackingField_5(L_0);
return;
}
}
IL2CPP_EXTERN_C void XROcclusionSubsystemCinfo_set_supportsHumanSegmentationDepthImage_mF08FD3863AEB93D47CCF50BD197780D2AB6F0705_AdjustorThunk (RuntimeObject * __this, bool ___value0, const RuntimeMethod* method)
{
XROcclusionSubsystemCinfo_tA29FDBA57EBA835927124FC18780DDD9CC4D84FD * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XROcclusionSubsystemCinfo_tA29FDBA57EBA835927124FC18780DDD9CC4D84FD *>(__this + _offset);
XROcclusionSubsystemCinfo_set_supportsHumanSegmentationDepthImage_mF08FD3863AEB93D47CCF50BD197780D2AB6F0705_inline(_thisAdjusted, ___value0, method);
}
// System.Func`1<System.Boolean> UnityEngine.XR.ARSubsystems.XROcclusionSubsystemCinfo::get_queryForSupportsEnvironmentDepthImage()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Func_1_t76FCDA5C58178ED310C472967481FDE5F47DCF0F * XROcclusionSubsystemCinfo_get_queryForSupportsEnvironmentDepthImage_m7E021A482EB4D3F52CA43ABEF71FD654304330AC (XROcclusionSubsystemCinfo_tA29FDBA57EBA835927124FC18780DDD9CC4D84FD * __this, const RuntimeMethod* method)
{
{
// public Func<bool> queryForSupportsEnvironmentDepthImage { get; set; }
Func_1_t76FCDA5C58178ED310C472967481FDE5F47DCF0F * L_0 = __this->get_U3CqueryForSupportsEnvironmentDepthImageU3Ek__BackingField_6();
return L_0;
}
}
IL2CPP_EXTERN_C Func_1_t76FCDA5C58178ED310C472967481FDE5F47DCF0F * XROcclusionSubsystemCinfo_get_queryForSupportsEnvironmentDepthImage_m7E021A482EB4D3F52CA43ABEF71FD654304330AC_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
XROcclusionSubsystemCinfo_tA29FDBA57EBA835927124FC18780DDD9CC4D84FD * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XROcclusionSubsystemCinfo_tA29FDBA57EBA835927124FC18780DDD9CC4D84FD *>(__this + _offset);
Func_1_t76FCDA5C58178ED310C472967481FDE5F47DCF0F * _returnValue;
_returnValue = XROcclusionSubsystemCinfo_get_queryForSupportsEnvironmentDepthImage_m7E021A482EB4D3F52CA43ABEF71FD654304330AC_inline(_thisAdjusted, method);
return _returnValue;
}
// System.Void UnityEngine.XR.ARSubsystems.XROcclusionSubsystemCinfo::set_queryForSupportsEnvironmentDepthImage(System.Func`1<System.Boolean>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XROcclusionSubsystemCinfo_set_queryForSupportsEnvironmentDepthImage_m51449A6122E2D967180669F6C0425F5D1E038F7E (XROcclusionSubsystemCinfo_tA29FDBA57EBA835927124FC18780DDD9CC4D84FD * __this, Func_1_t76FCDA5C58178ED310C472967481FDE5F47DCF0F * ___value0, const RuntimeMethod* method)
{
{
// public Func<bool> queryForSupportsEnvironmentDepthImage { get; set; }
Func_1_t76FCDA5C58178ED310C472967481FDE5F47DCF0F * L_0 = ___value0;
__this->set_U3CqueryForSupportsEnvironmentDepthImageU3Ek__BackingField_6(L_0);
return;
}
}
IL2CPP_EXTERN_C void XROcclusionSubsystemCinfo_set_queryForSupportsEnvironmentDepthImage_m51449A6122E2D967180669F6C0425F5D1E038F7E_AdjustorThunk (RuntimeObject * __this, Func_1_t76FCDA5C58178ED310C472967481FDE5F47DCF0F * ___value0, const RuntimeMethod* method)
{
XROcclusionSubsystemCinfo_tA29FDBA57EBA835927124FC18780DDD9CC4D84FD * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XROcclusionSubsystemCinfo_tA29FDBA57EBA835927124FC18780DDD9CC4D84FD *>(__this + _offset);
XROcclusionSubsystemCinfo_set_queryForSupportsEnvironmentDepthImage_m51449A6122E2D967180669F6C0425F5D1E038F7E_inline(_thisAdjusted, ___value0, method);
}
// System.Func`1<System.Boolean> UnityEngine.XR.ARSubsystems.XROcclusionSubsystemCinfo::get_queryForSupportsEnvironmentDepthConfidenceImage()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Func_1_t76FCDA5C58178ED310C472967481FDE5F47DCF0F * XROcclusionSubsystemCinfo_get_queryForSupportsEnvironmentDepthConfidenceImage_m3A9518505C78739C2476A7E64F6942D83C582DD5 (XROcclusionSubsystemCinfo_tA29FDBA57EBA835927124FC18780DDD9CC4D84FD * __this, const RuntimeMethod* method)
{
{
// public Func<bool> queryForSupportsEnvironmentDepthConfidenceImage { get; set; }
Func_1_t76FCDA5C58178ED310C472967481FDE5F47DCF0F * L_0 = __this->get_U3CqueryForSupportsEnvironmentDepthConfidenceImageU3Ek__BackingField_7();
return L_0;
}
}
IL2CPP_EXTERN_C Func_1_t76FCDA5C58178ED310C472967481FDE5F47DCF0F * XROcclusionSubsystemCinfo_get_queryForSupportsEnvironmentDepthConfidenceImage_m3A9518505C78739C2476A7E64F6942D83C582DD5_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
XROcclusionSubsystemCinfo_tA29FDBA57EBA835927124FC18780DDD9CC4D84FD * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XROcclusionSubsystemCinfo_tA29FDBA57EBA835927124FC18780DDD9CC4D84FD *>(__this + _offset);
Func_1_t76FCDA5C58178ED310C472967481FDE5F47DCF0F * _returnValue;
_returnValue = XROcclusionSubsystemCinfo_get_queryForSupportsEnvironmentDepthConfidenceImage_m3A9518505C78739C2476A7E64F6942D83C582DD5_inline(_thisAdjusted, method);
return _returnValue;
}
// System.Void UnityEngine.XR.ARSubsystems.XROcclusionSubsystemCinfo::set_queryForSupportsEnvironmentDepthConfidenceImage(System.Func`1<System.Boolean>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XROcclusionSubsystemCinfo_set_queryForSupportsEnvironmentDepthConfidenceImage_m24C48D100ECEEC534C92273C21C18FBCCD98C740 (XROcclusionSubsystemCinfo_tA29FDBA57EBA835927124FC18780DDD9CC4D84FD * __this, Func_1_t76FCDA5C58178ED310C472967481FDE5F47DCF0F * ___value0, const RuntimeMethod* method)
{
{
// public Func<bool> queryForSupportsEnvironmentDepthConfidenceImage { get; set; }
Func_1_t76FCDA5C58178ED310C472967481FDE5F47DCF0F * L_0 = ___value0;
__this->set_U3CqueryForSupportsEnvironmentDepthConfidenceImageU3Ek__BackingField_7(L_0);
return;
}
}
IL2CPP_EXTERN_C void XROcclusionSubsystemCinfo_set_queryForSupportsEnvironmentDepthConfidenceImage_m24C48D100ECEEC534C92273C21C18FBCCD98C740_AdjustorThunk (RuntimeObject * __this, Func_1_t76FCDA5C58178ED310C472967481FDE5F47DCF0F * ___value0, const RuntimeMethod* method)
{
XROcclusionSubsystemCinfo_tA29FDBA57EBA835927124FC18780DDD9CC4D84FD * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XROcclusionSubsystemCinfo_tA29FDBA57EBA835927124FC18780DDD9CC4D84FD *>(__this + _offset);
XROcclusionSubsystemCinfo_set_queryForSupportsEnvironmentDepthConfidenceImage_m24C48D100ECEEC534C92273C21C18FBCCD98C740_inline(_thisAdjusted, ___value0, method);
}
// System.Boolean UnityEngine.XR.ARSubsystems.XROcclusionSubsystemCinfo::Equals(UnityEngine.XR.ARSubsystems.XROcclusionSubsystemCinfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XROcclusionSubsystemCinfo_Equals_mBF75B2160741AC5D0F43480949D690FE94ECCE18 (XROcclusionSubsystemCinfo_tA29FDBA57EBA835927124FC18780DDD9CC4D84FD * __this, XROcclusionSubsystemCinfo_tA29FDBA57EBA835927124FC18780DDD9CC4D84FD ___other0, const RuntimeMethod* method)
{
bool V_0 = false;
{
// return
// ReferenceEquals(id, other.id)
// #if UNITY_2020_2_OR_NEWER
// && ReferenceEquals(providerType, other.providerType)
// && ReferenceEquals(subsystemTypeOverride, other.subsystemTypeOverride)
// #else
// && ReferenceEquals(implementationType, other.implementationType)
// #endif
// && supportsHumanSegmentationStencilImage.Equals(other.supportsHumanSegmentationStencilImage)
// && supportsHumanSegmentationDepthImage.Equals(other.supportsHumanSegmentationDepthImage)
// && ReferenceEquals(queryForSupportsEnvironmentDepthImage, other.queryForSupportsEnvironmentDepthImage)
// && ReferenceEquals(queryForSupportsEnvironmentDepthConfidenceImage, other.queryForSupportsEnvironmentDepthConfidenceImage);
String_t* L_0;
L_0 = XROcclusionSubsystemCinfo_get_id_m52AA71D202632FA1607B0FEF64946642B6C3608C_inline((XROcclusionSubsystemCinfo_tA29FDBA57EBA835927124FC18780DDD9CC4D84FD *)__this, /*hidden argument*/NULL);
String_t* L_1;
L_1 = XROcclusionSubsystemCinfo_get_id_m52AA71D202632FA1607B0FEF64946642B6C3608C_inline((XROcclusionSubsystemCinfo_tA29FDBA57EBA835927124FC18780DDD9CC4D84FD *)(&___other0), /*hidden argument*/NULL);
if ((!(((RuntimeObject*)(String_t*)L_0) == ((RuntimeObject*)(String_t*)L_1))))
{
goto IL_007a;
}
}
{
Type_t * L_2;
L_2 = XROcclusionSubsystemCinfo_get_providerType_m8D7C8F76AE3FAEEC4952D6FF75134CE4DADFFA22_inline((XROcclusionSubsystemCinfo_tA29FDBA57EBA835927124FC18780DDD9CC4D84FD *)__this, /*hidden argument*/NULL);
Type_t * L_3;
L_3 = XROcclusionSubsystemCinfo_get_providerType_m8D7C8F76AE3FAEEC4952D6FF75134CE4DADFFA22_inline((XROcclusionSubsystemCinfo_tA29FDBA57EBA835927124FC18780DDD9CC4D84FD *)(&___other0), /*hidden argument*/NULL);
if ((!(((RuntimeObject*)(Type_t *)L_2) == ((RuntimeObject*)(Type_t *)L_3))))
{
goto IL_007a;
}
}
{
Type_t * L_4;
L_4 = XROcclusionSubsystemCinfo_get_subsystemTypeOverride_m60945479B5A62376EEA5633F4FF21D4BD137C125_inline((XROcclusionSubsystemCinfo_tA29FDBA57EBA835927124FC18780DDD9CC4D84FD *)__this, /*hidden argument*/NULL);
Type_t * L_5;
L_5 = XROcclusionSubsystemCinfo_get_subsystemTypeOverride_m60945479B5A62376EEA5633F4FF21D4BD137C125_inline((XROcclusionSubsystemCinfo_tA29FDBA57EBA835927124FC18780DDD9CC4D84FD *)(&___other0), /*hidden argument*/NULL);
if ((!(((RuntimeObject*)(Type_t *)L_4) == ((RuntimeObject*)(Type_t *)L_5))))
{
goto IL_007a;
}
}
{
bool L_6;
L_6 = XROcclusionSubsystemCinfo_get_supportsHumanSegmentationStencilImage_m3F2F9B49E2326FE8A773C655848F6497A5F8A797_inline((XROcclusionSubsystemCinfo_tA29FDBA57EBA835927124FC18780DDD9CC4D84FD *)__this, /*hidden argument*/NULL);
V_0 = L_6;
bool L_7;
L_7 = XROcclusionSubsystemCinfo_get_supportsHumanSegmentationStencilImage_m3F2F9B49E2326FE8A773C655848F6497A5F8A797_inline((XROcclusionSubsystemCinfo_tA29FDBA57EBA835927124FC18780DDD9CC4D84FD *)(&___other0), /*hidden argument*/NULL);
bool L_8;
L_8 = Boolean_Equals_mC63D03B4DE1BBC68835530A9E0384FDDB0AC1A3D((bool*)(&V_0), L_7, /*hidden argument*/NULL);
if (!L_8)
{
goto IL_007a;
}
}
{
bool L_9;
L_9 = XROcclusionSubsystemCinfo_get_supportsHumanSegmentationDepthImage_mBFFC1F3611B38652EEFD21E2D7433B71F36A172D_inline((XROcclusionSubsystemCinfo_tA29FDBA57EBA835927124FC18780DDD9CC4D84FD *)__this, /*hidden argument*/NULL);
V_0 = L_9;
bool L_10;
L_10 = XROcclusionSubsystemCinfo_get_supportsHumanSegmentationDepthImage_mBFFC1F3611B38652EEFD21E2D7433B71F36A172D_inline((XROcclusionSubsystemCinfo_tA29FDBA57EBA835927124FC18780DDD9CC4D84FD *)(&___other0), /*hidden argument*/NULL);
bool L_11;
L_11 = Boolean_Equals_mC63D03B4DE1BBC68835530A9E0384FDDB0AC1A3D((bool*)(&V_0), L_10, /*hidden argument*/NULL);
if (!L_11)
{
goto IL_007a;
}
}
{
Func_1_t76FCDA5C58178ED310C472967481FDE5F47DCF0F * L_12;
L_12 = XROcclusionSubsystemCinfo_get_queryForSupportsEnvironmentDepthImage_m7E021A482EB4D3F52CA43ABEF71FD654304330AC_inline((XROcclusionSubsystemCinfo_tA29FDBA57EBA835927124FC18780DDD9CC4D84FD *)__this, /*hidden argument*/NULL);
Func_1_t76FCDA5C58178ED310C472967481FDE5F47DCF0F * L_13;
L_13 = XROcclusionSubsystemCinfo_get_queryForSupportsEnvironmentDepthImage_m7E021A482EB4D3F52CA43ABEF71FD654304330AC_inline((XROcclusionSubsystemCinfo_tA29FDBA57EBA835927124FC18780DDD9CC4D84FD *)(&___other0), /*hidden argument*/NULL);
if ((!(((RuntimeObject*)(Func_1_t76FCDA5C58178ED310C472967481FDE5F47DCF0F *)L_12) == ((RuntimeObject*)(Func_1_t76FCDA5C58178ED310C472967481FDE5F47DCF0F *)L_13))))
{
goto IL_007a;
}
}
{
Func_1_t76FCDA5C58178ED310C472967481FDE5F47DCF0F * L_14;
L_14 = XROcclusionSubsystemCinfo_get_queryForSupportsEnvironmentDepthConfidenceImage_m3A9518505C78739C2476A7E64F6942D83C582DD5_inline((XROcclusionSubsystemCinfo_tA29FDBA57EBA835927124FC18780DDD9CC4D84FD *)__this, /*hidden argument*/NULL);
Func_1_t76FCDA5C58178ED310C472967481FDE5F47DCF0F * L_15;
L_15 = XROcclusionSubsystemCinfo_get_queryForSupportsEnvironmentDepthConfidenceImage_m3A9518505C78739C2476A7E64F6942D83C582DD5_inline((XROcclusionSubsystemCinfo_tA29FDBA57EBA835927124FC18780DDD9CC4D84FD *)(&___other0), /*hidden argument*/NULL);
return (bool)((((RuntimeObject*)(Func_1_t76FCDA5C58178ED310C472967481FDE5F47DCF0F *)L_14) == ((RuntimeObject*)(Func_1_t76FCDA5C58178ED310C472967481FDE5F47DCF0F *)L_15))? 1 : 0);
}
IL_007a:
{
return (bool)0;
}
}
IL2CPP_EXTERN_C bool XROcclusionSubsystemCinfo_Equals_mBF75B2160741AC5D0F43480949D690FE94ECCE18_AdjustorThunk (RuntimeObject * __this, XROcclusionSubsystemCinfo_tA29FDBA57EBA835927124FC18780DDD9CC4D84FD ___other0, const RuntimeMethod* method)
{
XROcclusionSubsystemCinfo_tA29FDBA57EBA835927124FC18780DDD9CC4D84FD * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XROcclusionSubsystemCinfo_tA29FDBA57EBA835927124FC18780DDD9CC4D84FD *>(__this + _offset);
bool _returnValue;
_returnValue = XROcclusionSubsystemCinfo_Equals_mBF75B2160741AC5D0F43480949D690FE94ECCE18(_thisAdjusted, ___other0, method);
return _returnValue;
}
// System.Boolean UnityEngine.XR.ARSubsystems.XROcclusionSubsystemCinfo::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XROcclusionSubsystemCinfo_Equals_m046DEDAFD67F305D51E59636AF310702B5152EEB (XROcclusionSubsystemCinfo_tA29FDBA57EBA835927124FC18780DDD9CC4D84FD * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XROcclusionSubsystemCinfo_tA29FDBA57EBA835927124FC18780DDD9CC4D84FD_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
// public override bool Equals(System.Object obj) => ((obj is XROcclusionSubsystemCinfo) && Equals((XROcclusionSubsystemCinfo)obj));
RuntimeObject * L_0 = ___obj0;
if (!((RuntimeObject *)IsInstSealed((RuntimeObject*)L_0, XROcclusionSubsystemCinfo_tA29FDBA57EBA835927124FC18780DDD9CC4D84FD_il2cpp_TypeInfo_var)))
{
goto IL_0015;
}
}
{
RuntimeObject * L_1 = ___obj0;
bool L_2;
L_2 = XROcclusionSubsystemCinfo_Equals_mBF75B2160741AC5D0F43480949D690FE94ECCE18((XROcclusionSubsystemCinfo_tA29FDBA57EBA835927124FC18780DDD9CC4D84FD *)__this, ((*(XROcclusionSubsystemCinfo_tA29FDBA57EBA835927124FC18780DDD9CC4D84FD *)((XROcclusionSubsystemCinfo_tA29FDBA57EBA835927124FC18780DDD9CC4D84FD *)UnBox(L_1, XROcclusionSubsystemCinfo_tA29FDBA57EBA835927124FC18780DDD9CC4D84FD_il2cpp_TypeInfo_var)))), /*hidden argument*/NULL);
return L_2;
}
IL_0015:
{
return (bool)0;
}
}
IL2CPP_EXTERN_C bool XROcclusionSubsystemCinfo_Equals_m046DEDAFD67F305D51E59636AF310702B5152EEB_AdjustorThunk (RuntimeObject * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
XROcclusionSubsystemCinfo_tA29FDBA57EBA835927124FC18780DDD9CC4D84FD * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XROcclusionSubsystemCinfo_tA29FDBA57EBA835927124FC18780DDD9CC4D84FD *>(__this + _offset);
bool _returnValue;
_returnValue = XROcclusionSubsystemCinfo_Equals_m046DEDAFD67F305D51E59636AF310702B5152EEB(_thisAdjusted, ___obj0, method);
return _returnValue;
}
// System.Int32 UnityEngine.XR.ARSubsystems.XROcclusionSubsystemCinfo::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XROcclusionSubsystemCinfo_GetHashCode_m8A26E07DD1C840DFEC9373E26990B3DA40F1D8A1 (XROcclusionSubsystemCinfo_tA29FDBA57EBA835927124FC18780DDD9CC4D84FD * __this, const RuntimeMethod* method)
{
bool V_0 = false;
{
// int hashCode = 486187739;
// hashCode = (hashCode * 486187739) + HashCode.ReferenceHash(id);
String_t* L_0;
L_0 = XROcclusionSubsystemCinfo_get_id_m52AA71D202632FA1607B0FEF64946642B6C3608C_inline((XROcclusionSubsystemCinfo_tA29FDBA57EBA835927124FC18780DDD9CC4D84FD *)__this, /*hidden argument*/NULL);
int32_t L_1;
L_1 = HashCode_ReferenceHash_mE6CC6EA3C87D9F040876D66CF582D6FF68FC359C(L_0, /*hidden argument*/NULL);
// hashCode = (hashCode * 486187739) + HashCode.ReferenceHash(providerType);
Type_t * L_2;
L_2 = XROcclusionSubsystemCinfo_get_providerType_m8D7C8F76AE3FAEEC4952D6FF75134CE4DADFFA22_inline((XROcclusionSubsystemCinfo_tA29FDBA57EBA835927124FC18780DDD9CC4D84FD *)__this, /*hidden argument*/NULL);
int32_t L_3;
L_3 = HashCode_ReferenceHash_mE6CC6EA3C87D9F040876D66CF582D6FF68FC359C(L_2, /*hidden argument*/NULL);
// hashCode = (hashCode * 486187739) + HashCode.ReferenceHash(subsystemTypeOverride);
Type_t * L_4;
L_4 = XROcclusionSubsystemCinfo_get_subsystemTypeOverride_m60945479B5A62376EEA5633F4FF21D4BD137C125_inline((XROcclusionSubsystemCinfo_tA29FDBA57EBA835927124FC18780DDD9CC4D84FD *)__this, /*hidden argument*/NULL);
int32_t L_5;
L_5 = HashCode_ReferenceHash_mE6CC6EA3C87D9F040876D66CF582D6FF68FC359C(L_4, /*hidden argument*/NULL);
// hashCode = (hashCode * 486187739) + supportsHumanSegmentationStencilImage.GetHashCode();
bool L_6;
L_6 = XROcclusionSubsystemCinfo_get_supportsHumanSegmentationStencilImage_m3F2F9B49E2326FE8A773C655848F6497A5F8A797_inline((XROcclusionSubsystemCinfo_tA29FDBA57EBA835927124FC18780DDD9CC4D84FD *)__this, /*hidden argument*/NULL);
V_0 = L_6;
int32_t L_7;
L_7 = Boolean_GetHashCode_m03AF8B3CECAE9106C44A00E3B33E51CBFC45C411((bool*)(&V_0), /*hidden argument*/NULL);
// hashCode = (hashCode * 486187739) + supportsHumanSegmentationDepthImage.GetHashCode();
bool L_8;
L_8 = XROcclusionSubsystemCinfo_get_supportsHumanSegmentationDepthImage_mBFFC1F3611B38652EEFD21E2D7433B71F36A172D_inline((XROcclusionSubsystemCinfo_tA29FDBA57EBA835927124FC18780DDD9CC4D84FD *)__this, /*hidden argument*/NULL);
V_0 = L_8;
int32_t L_9;
L_9 = Boolean_GetHashCode_m03AF8B3CECAE9106C44A00E3B33E51CBFC45C411((bool*)(&V_0), /*hidden argument*/NULL);
// hashCode = (hashCode * 486187739) + HashCode.ReferenceHash(queryForSupportsEnvironmentDepthImage);
Func_1_t76FCDA5C58178ED310C472967481FDE5F47DCF0F * L_10;
L_10 = XROcclusionSubsystemCinfo_get_queryForSupportsEnvironmentDepthImage_m7E021A482EB4D3F52CA43ABEF71FD654304330AC_inline((XROcclusionSubsystemCinfo_tA29FDBA57EBA835927124FC18780DDD9CC4D84FD *)__this, /*hidden argument*/NULL);
int32_t L_11;
L_11 = HashCode_ReferenceHash_mE6CC6EA3C87D9F040876D66CF582D6FF68FC359C(L_10, /*hidden argument*/NULL);
// hashCode = (hashCode * 486187739) + HashCode.ReferenceHash(queryForSupportsEnvironmentDepthConfidenceImage);
Func_1_t76FCDA5C58178ED310C472967481FDE5F47DCF0F * L_12;
L_12 = XROcclusionSubsystemCinfo_get_queryForSupportsEnvironmentDepthConfidenceImage_m3A9518505C78739C2476A7E64F6942D83C582DD5_inline((XROcclusionSubsystemCinfo_tA29FDBA57EBA835927124FC18780DDD9CC4D84FD *)__this, /*hidden argument*/NULL);
int32_t L_13;
L_13 = HashCode_ReferenceHash_mE6CC6EA3C87D9F040876D66CF582D6FF68FC359C(L_12, /*hidden argument*/NULL);
// return hashCode;
return ((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)((int32_t)486187739), (int32_t)((int32_t)486187739))), (int32_t)L_1)), (int32_t)((int32_t)486187739))), (int32_t)L_3)), (int32_t)((int32_t)486187739))), (int32_t)L_5)), (int32_t)((int32_t)486187739))), (int32_t)L_7)), (int32_t)((int32_t)486187739))), (int32_t)L_9)), (int32_t)((int32_t)486187739))), (int32_t)L_11)), (int32_t)((int32_t)486187739))), (int32_t)L_13));
}
}
IL2CPP_EXTERN_C int32_t XROcclusionSubsystemCinfo_GetHashCode_m8A26E07DD1C840DFEC9373E26990B3DA40F1D8A1_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
XROcclusionSubsystemCinfo_tA29FDBA57EBA835927124FC18780DDD9CC4D84FD * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XROcclusionSubsystemCinfo_tA29FDBA57EBA835927124FC18780DDD9CC4D84FD *>(__this + _offset);
int32_t _returnValue;
_returnValue = XROcclusionSubsystemCinfo_GetHashCode_m8A26E07DD1C840DFEC9373E26990B3DA40F1D8A1(_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
// System.Void UnityEngine.XR.ARSubsystems.XROcclusionSubsystemDescriptor::.ctor(UnityEngine.XR.ARSubsystems.XROcclusionSubsystemCinfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XROcclusionSubsystemDescriptor__ctor_mC7893752CE0EB8F9130E7127BFC306B11BE4AA42 (XROcclusionSubsystemDescriptor_tC9C8F2EFB7768358C203968CA71D353F0DD234FB * __this, XROcclusionSubsystemCinfo_tA29FDBA57EBA835927124FC18780DDD9CC4D84FD ___occlusionSubsystemCinfo0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SubsystemDescriptorWithProvider_2__ctor_m4CBC56B4E2A8A4BC63FC246F6DEA77EED160B4E1_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
// XROcclusionSubsystemDescriptor(XROcclusionSubsystemCinfo occlusionSubsystemCinfo)
SubsystemDescriptorWithProvider_2__ctor_m4CBC56B4E2A8A4BC63FC246F6DEA77EED160B4E1(__this, /*hidden argument*/SubsystemDescriptorWithProvider_2__ctor_m4CBC56B4E2A8A4BC63FC246F6DEA77EED160B4E1_RuntimeMethod_var);
// id = occlusionSubsystemCinfo.id;
String_t* L_0;
L_0 = XROcclusionSubsystemCinfo_get_id_m52AA71D202632FA1607B0FEF64946642B6C3608C_inline((XROcclusionSubsystemCinfo_tA29FDBA57EBA835927124FC18780DDD9CC4D84FD *)(&___occlusionSubsystemCinfo0), /*hidden argument*/NULL);
SubsystemDescriptorWithProvider_set_id_mEC6863CDB21597618394D2ED4182A9ED3ACBF220_inline(__this, L_0, /*hidden argument*/NULL);
// providerType = occlusionSubsystemCinfo.providerType;
Type_t * L_1;
L_1 = XROcclusionSubsystemCinfo_get_providerType_m8D7C8F76AE3FAEEC4952D6FF75134CE4DADFFA22_inline((XROcclusionSubsystemCinfo_tA29FDBA57EBA835927124FC18780DDD9CC4D84FD *)(&___occlusionSubsystemCinfo0), /*hidden argument*/NULL);
SubsystemDescriptorWithProvider_set_providerType_m672B1F3CC7A12E8569D801F7C79538753C0D9C2D_inline(__this, L_1, /*hidden argument*/NULL);
// subsystemTypeOverride = occlusionSubsystemCinfo.subsystemTypeOverride;
Type_t * L_2;
L_2 = XROcclusionSubsystemCinfo_get_subsystemTypeOverride_m60945479B5A62376EEA5633F4FF21D4BD137C125_inline((XROcclusionSubsystemCinfo_tA29FDBA57EBA835927124FC18780DDD9CC4D84FD *)(&___occlusionSubsystemCinfo0), /*hidden argument*/NULL);
SubsystemDescriptorWithProvider_set_subsystemTypeOverride_mA453100A7A8FAB35FBE7154E63B5A17D518F41B6_inline(__this, L_2, /*hidden argument*/NULL);
// supportsHumanSegmentationStencilImage = occlusionSubsystemCinfo.supportsHumanSegmentationStencilImage;
bool L_3;
L_3 = XROcclusionSubsystemCinfo_get_supportsHumanSegmentationStencilImage_m3F2F9B49E2326FE8A773C655848F6497A5F8A797_inline((XROcclusionSubsystemCinfo_tA29FDBA57EBA835927124FC18780DDD9CC4D84FD *)(&___occlusionSubsystemCinfo0), /*hidden argument*/NULL);
XROcclusionSubsystemDescriptor_set_supportsHumanSegmentationStencilImage_m8D7F47CF55EE1F758A1CF9A53700B78FAAD3A9DE_inline(__this, L_3, /*hidden argument*/NULL);
// supportsHumanSegmentationDepthImage = occlusionSubsystemCinfo.supportsHumanSegmentationDepthImage;
bool L_4;
L_4 = XROcclusionSubsystemCinfo_get_supportsHumanSegmentationDepthImage_mBFFC1F3611B38652EEFD21E2D7433B71F36A172D_inline((XROcclusionSubsystemCinfo_tA29FDBA57EBA835927124FC18780DDD9CC4D84FD *)(&___occlusionSubsystemCinfo0), /*hidden argument*/NULL);
XROcclusionSubsystemDescriptor_set_supportsHumanSegmentationDepthImage_mD48BEC8C3460FA7B6BC492D70DF7E70C468DB38F_inline(__this, L_4, /*hidden argument*/NULL);
// m_QueryForSupportsEnvironmentDepthImage = occlusionSubsystemCinfo.queryForSupportsEnvironmentDepthImage;
Func_1_t76FCDA5C58178ED310C472967481FDE5F47DCF0F * L_5;
L_5 = XROcclusionSubsystemCinfo_get_queryForSupportsEnvironmentDepthImage_m7E021A482EB4D3F52CA43ABEF71FD654304330AC_inline((XROcclusionSubsystemCinfo_tA29FDBA57EBA835927124FC18780DDD9CC4D84FD *)(&___occlusionSubsystemCinfo0), /*hidden argument*/NULL);
__this->set_m_QueryForSupportsEnvironmentDepthImage_3(L_5);
// m_QueryForSupportsEnvironmentDepthConfidenceImage = occlusionSubsystemCinfo.queryForSupportsEnvironmentDepthConfidenceImage;
Func_1_t76FCDA5C58178ED310C472967481FDE5F47DCF0F * L_6;
L_6 = XROcclusionSubsystemCinfo_get_queryForSupportsEnvironmentDepthConfidenceImage_m3A9518505C78739C2476A7E64F6942D83C582DD5_inline((XROcclusionSubsystemCinfo_tA29FDBA57EBA835927124FC18780DDD9CC4D84FD *)(&___occlusionSubsystemCinfo0), /*hidden argument*/NULL);
__this->set_m_QueryForSupportsEnvironmentDepthConfidenceImage_4(L_6);
// }
return;
}
}
// System.Boolean UnityEngine.XR.ARSubsystems.XROcclusionSubsystemDescriptor::get_supportsHumanSegmentationStencilImage()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XROcclusionSubsystemDescriptor_get_supportsHumanSegmentationStencilImage_m568E947E892CB4927549EF2E47BD0A40D85124A3 (XROcclusionSubsystemDescriptor_tC9C8F2EFB7768358C203968CA71D353F0DD234FB * __this, const RuntimeMethod* method)
{
{
// public bool supportsHumanSegmentationStencilImage { get; private set; }
bool L_0 = __this->get_U3CsupportsHumanSegmentationStencilImageU3Ek__BackingField_5();
return L_0;
}
}
// System.Void UnityEngine.XR.ARSubsystems.XROcclusionSubsystemDescriptor::set_supportsHumanSegmentationStencilImage(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XROcclusionSubsystemDescriptor_set_supportsHumanSegmentationStencilImage_m8D7F47CF55EE1F758A1CF9A53700B78FAAD3A9DE (XROcclusionSubsystemDescriptor_tC9C8F2EFB7768358C203968CA71D353F0DD234FB * __this, bool ___value0, const RuntimeMethod* method)
{
{
// public bool supportsHumanSegmentationStencilImage { get; private set; }
bool L_0 = ___value0;
__this->set_U3CsupportsHumanSegmentationStencilImageU3Ek__BackingField_5(L_0);
return;
}
}
// System.Boolean UnityEngine.XR.ARSubsystems.XROcclusionSubsystemDescriptor::get_supportsHumanSegmentationDepthImage()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XROcclusionSubsystemDescriptor_get_supportsHumanSegmentationDepthImage_m2A660F032C38F34D2ACE3A927214C17895FB7530 (XROcclusionSubsystemDescriptor_tC9C8F2EFB7768358C203968CA71D353F0DD234FB * __this, const RuntimeMethod* method)
{
{
// public bool supportsHumanSegmentationDepthImage { get; private set; }
bool L_0 = __this->get_U3CsupportsHumanSegmentationDepthImageU3Ek__BackingField_6();
return L_0;
}
}
// System.Void UnityEngine.XR.ARSubsystems.XROcclusionSubsystemDescriptor::set_supportsHumanSegmentationDepthImage(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XROcclusionSubsystemDescriptor_set_supportsHumanSegmentationDepthImage_mD48BEC8C3460FA7B6BC492D70DF7E70C468DB38F (XROcclusionSubsystemDescriptor_tC9C8F2EFB7768358C203968CA71D353F0DD234FB * __this, bool ___value0, const RuntimeMethod* method)
{
{
// public bool supportsHumanSegmentationDepthImage { get; private set; }
bool L_0 = ___value0;
__this->set_U3CsupportsHumanSegmentationDepthImageU3Ek__BackingField_6(L_0);
return;
}
}
// System.Boolean UnityEngine.XR.ARSubsystems.XROcclusionSubsystemDescriptor::get_supportsEnvironmentDepthImage()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XROcclusionSubsystemDescriptor_get_supportsEnvironmentDepthImage_mBC659B981990D4BBD0E0D52290351CFDB8947ECA (XROcclusionSubsystemDescriptor_tC9C8F2EFB7768358C203968CA71D353F0DD234FB * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Func_1_Invoke_mCA605B0373C1EE39807AB82AEA983289D3F15C79_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
// public bool supportsEnvironmentDepthImage => (m_QueryForSupportsEnvironmentDepthImage == null) ? false : m_QueryForSupportsEnvironmentDepthImage();
Func_1_t76FCDA5C58178ED310C472967481FDE5F47DCF0F * L_0 = __this->get_m_QueryForSupportsEnvironmentDepthImage_3();
if (!L_0)
{
goto IL_0014;
}
}
{
Func_1_t76FCDA5C58178ED310C472967481FDE5F47DCF0F * L_1 = __this->get_m_QueryForSupportsEnvironmentDepthImage_3();
NullCheck(L_1);
bool L_2;
L_2 = Func_1_Invoke_mCA605B0373C1EE39807AB82AEA983289D3F15C79(L_1, /*hidden argument*/Func_1_Invoke_mCA605B0373C1EE39807AB82AEA983289D3F15C79_RuntimeMethod_var);
return L_2;
}
IL_0014:
{
return (bool)0;
}
}
// System.Boolean UnityEngine.XR.ARSubsystems.XROcclusionSubsystemDescriptor::get_supportsEnvironmentDepthConfidenceImage()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XROcclusionSubsystemDescriptor_get_supportsEnvironmentDepthConfidenceImage_m80B81280456C3215266FF98FEF89C2CC23C2D6D3 (XROcclusionSubsystemDescriptor_tC9C8F2EFB7768358C203968CA71D353F0DD234FB * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Func_1_Invoke_mCA605B0373C1EE39807AB82AEA983289D3F15C79_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
// public bool supportsEnvironmentDepthConfidenceImage => (m_QueryForSupportsEnvironmentDepthConfidenceImage == null) ? false : m_QueryForSupportsEnvironmentDepthConfidenceImage();
Func_1_t76FCDA5C58178ED310C472967481FDE5F47DCF0F * L_0 = __this->get_m_QueryForSupportsEnvironmentDepthConfidenceImage_4();
if (!L_0)
{
goto IL_0014;
}
}
{
Func_1_t76FCDA5C58178ED310C472967481FDE5F47DCF0F * L_1 = __this->get_m_QueryForSupportsEnvironmentDepthConfidenceImage_4();
NullCheck(L_1);
bool L_2;
L_2 = Func_1_Invoke_mCA605B0373C1EE39807AB82AEA983289D3F15C79(L_1, /*hidden argument*/Func_1_Invoke_mCA605B0373C1EE39807AB82AEA983289D3F15C79_RuntimeMethod_var);
return L_2;
}
IL_0014:
{
return (bool)0;
}
}
// UnityEngine.XR.ARSubsystems.XROcclusionSubsystemDescriptor UnityEngine.XR.ARSubsystems.XROcclusionSubsystemDescriptor::Create(UnityEngine.XR.ARSubsystems.XROcclusionSubsystemCinfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XROcclusionSubsystemDescriptor_tC9C8F2EFB7768358C203968CA71D353F0DD234FB * XROcclusionSubsystemDescriptor_Create_m31FA1D0EDAF351742A97C9E655F069AF8544C852 (XROcclusionSubsystemCinfo_tA29FDBA57EBA835927124FC18780DDD9CC4D84FD ___occlusionSubsystemCinfo0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Provider_t5B60C630FB68EFEAB6FA2F3D9A732C144003B7FB_0_0_0_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XROcclusionSubsystemDescriptor_tC9C8F2EFB7768358C203968CA71D353F0DD234FB_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XROcclusionSubsystem_t7546B929F9B5B6EB13B975FE4DB1F4099EE533B8_0_0_0_var);
s_Il2CppMethodInitialized = true;
}
{
// if (String.IsNullOrEmpty(occlusionSubsystemCinfo.id))
String_t* L_0;
L_0 = XROcclusionSubsystemCinfo_get_id_m52AA71D202632FA1607B0FEF64946642B6C3608C_inline((XROcclusionSubsystemCinfo_tA29FDBA57EBA835927124FC18780DDD9CC4D84FD *)(&___occlusionSubsystemCinfo0), /*hidden argument*/NULL);
bool L_1;
L_1 = String_IsNullOrEmpty_m9AFBB5335B441B94E884B8A9D4A27AD60E3D7F7C(L_0, /*hidden argument*/NULL);
if (!L_1)
{
goto IL_001e;
}
}
{
// throw new ArgumentException("Cannot create occlusion subsystem descriptor because id is invalid",
// "occlusionSubsystemCinfo");
ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_2 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var)));
ArgumentException__ctor_m71044C2110E357B71A1C30D2561C3F861AF1DC0D(L_2, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral4D7D028B9D260D7794BD2CA2ECD9BB14052C874D)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral5685B6BCB3992CB9D612CE4663B4E2CC474D63E5)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XROcclusionSubsystemDescriptor_Create_m31FA1D0EDAF351742A97C9E655F069AF8544C852_RuntimeMethod_var)));
}
IL_001e:
{
// if (occlusionSubsystemCinfo.providerType == null
// || !occlusionSubsystemCinfo.providerType.IsSubclassOf(typeof(XROcclusionSubsystem.Provider)))
Type_t * L_3;
L_3 = XROcclusionSubsystemCinfo_get_providerType_m8D7C8F76AE3FAEEC4952D6FF75134CE4DADFFA22_inline((XROcclusionSubsystemCinfo_tA29FDBA57EBA835927124FC18780DDD9CC4D84FD *)(&___occlusionSubsystemCinfo0), /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
bool L_4;
L_4 = Type_op_Equality_mA438719A1FDF103C7BBBB08AEF564E7FAEEA0046(L_3, (Type_t *)NULL, /*hidden argument*/NULL);
if (L_4)
{
goto IL_0045;
}
}
{
Type_t * L_5;
L_5 = XROcclusionSubsystemCinfo_get_providerType_m8D7C8F76AE3FAEEC4952D6FF75134CE4DADFFA22_inline((XROcclusionSubsystemCinfo_tA29FDBA57EBA835927124FC18780DDD9CC4D84FD *)(&___occlusionSubsystemCinfo0), /*hidden argument*/NULL);
RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_6 = { reinterpret_cast<intptr_t> (Provider_t5B60C630FB68EFEAB6FA2F3D9A732C144003B7FB_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_7;
L_7 = Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E(L_6, /*hidden argument*/NULL);
NullCheck(L_5);
bool L_8;
L_8 = VirtualFuncInvoker1< bool, Type_t * >::Invoke(103 /* System.Boolean System.Type::IsSubclassOf(System.Type) */, L_5, L_7);
if (L_8)
{
goto IL_0055;
}
}
IL_0045:
{
// throw new ArgumentException("Cannot create occlusion subsystem descriptor because providerType is invalid",
// "occlusionSubsystemCinfo");
ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_9 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var)));
ArgumentException__ctor_m71044C2110E357B71A1C30D2561C3F861AF1DC0D(L_9, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral1019523B443E3F92C49FF4D29AF1F20C6CBD4E73)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral5685B6BCB3992CB9D612CE4663B4E2CC474D63E5)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_9, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XROcclusionSubsystemDescriptor_Create_m31FA1D0EDAF351742A97C9E655F069AF8544C852_RuntimeMethod_var)));
}
IL_0055:
{
// if (occlusionSubsystemCinfo.subsystemTypeOverride == null
// && !occlusionSubsystemCinfo.subsystemTypeOverride.IsSubclassOf(typeof(XROcclusionSubsystem)))
Type_t * L_10;
L_10 = XROcclusionSubsystemCinfo_get_subsystemTypeOverride_m60945479B5A62376EEA5633F4FF21D4BD137C125_inline((XROcclusionSubsystemCinfo_tA29FDBA57EBA835927124FC18780DDD9CC4D84FD *)(&___occlusionSubsystemCinfo0), /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
bool L_11;
L_11 = Type_op_Equality_mA438719A1FDF103C7BBBB08AEF564E7FAEEA0046(L_10, (Type_t *)NULL, /*hidden argument*/NULL);
if (!L_11)
{
goto IL_008c;
}
}
{
Type_t * L_12;
L_12 = XROcclusionSubsystemCinfo_get_subsystemTypeOverride_m60945479B5A62376EEA5633F4FF21D4BD137C125_inline((XROcclusionSubsystemCinfo_tA29FDBA57EBA835927124FC18780DDD9CC4D84FD *)(&___occlusionSubsystemCinfo0), /*hidden argument*/NULL);
RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_13 = { reinterpret_cast<intptr_t> (XROcclusionSubsystem_t7546B929F9B5B6EB13B975FE4DB1F4099EE533B8_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_14;
L_14 = Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E(L_13, /*hidden argument*/NULL);
NullCheck(L_12);
bool L_15;
L_15 = VirtualFuncInvoker1< bool, Type_t * >::Invoke(103 /* System.Boolean System.Type::IsSubclassOf(System.Type) */, L_12, L_14);
if (L_15)
{
goto IL_008c;
}
}
{
// throw new ArgumentException("Cannot create occlusion subsystem descriptor because subsystemTypeOverride is invalid",
// "occlusionSubsystemCinfo");
ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_16 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var)));
ArgumentException__ctor_m71044C2110E357B71A1C30D2561C3F861AF1DC0D(L_16, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralCD6929759E4F65FD23C942E751989013B1E90A1A)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral5685B6BCB3992CB9D612CE4663B4E2CC474D63E5)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_16, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XROcclusionSubsystemDescriptor_Create_m31FA1D0EDAF351742A97C9E655F069AF8544C852_RuntimeMethod_var)));
}
IL_008c:
{
// return new XROcclusionSubsystemDescriptor(occlusionSubsystemCinfo);
XROcclusionSubsystemCinfo_tA29FDBA57EBA835927124FC18780DDD9CC4D84FD L_17 = ___occlusionSubsystemCinfo0;
XROcclusionSubsystemDescriptor_tC9C8F2EFB7768358C203968CA71D353F0DD234FB * L_18 = (XROcclusionSubsystemDescriptor_tC9C8F2EFB7768358C203968CA71D353F0DD234FB *)il2cpp_codegen_object_new(XROcclusionSubsystemDescriptor_tC9C8F2EFB7768358C203968CA71D353F0DD234FB_il2cpp_TypeInfo_var);
XROcclusionSubsystemDescriptor__ctor_mC7893752CE0EB8F9130E7127BFC306B11BE4AA42(L_18, L_17, /*hidden argument*/NULL);
return L_18;
}
}
#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
// UnityEngine.XR.ARSubsystems.XRParticipant UnityEngine.XR.ARSubsystems.XRParticipant::get_defaultParticipant()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XRParticipant_t8CFF46A2CDD860A7591AD0FC0EE563458C8FA13F XRParticipant_get_defaultParticipant_mD2641CE602FDDA1E32641A60101077BF5E10B49D (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XRParticipant_t8CFF46A2CDD860A7591AD0FC0EE563458C8FA13F_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
// public static XRParticipant defaultParticipant => k_Default;
IL2CPP_RUNTIME_CLASS_INIT(XRParticipant_t8CFF46A2CDD860A7591AD0FC0EE563458C8FA13F_il2cpp_TypeInfo_var);
XRParticipant_t8CFF46A2CDD860A7591AD0FC0EE563458C8FA13F L_0 = ((XRParticipant_t8CFF46A2CDD860A7591AD0FC0EE563458C8FA13F_StaticFields*)il2cpp_codegen_static_fields_for(XRParticipant_t8CFF46A2CDD860A7591AD0FC0EE563458C8FA13F_il2cpp_TypeInfo_var))->get_k_Default_5();
return L_0;
}
}
// UnityEngine.XR.ARSubsystems.TrackableId UnityEngine.XR.ARSubsystems.XRParticipant::get_trackableId()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B XRParticipant_get_trackableId_mFE20FF09B28F44F916FD7175C9D1B50658DB8D13 (XRParticipant_t8CFF46A2CDD860A7591AD0FC0EE563458C8FA13F * __this, const RuntimeMethod* method)
{
{
// public TrackableId trackableId => m_TrackableId;
TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B L_0 = __this->get_m_TrackableId_0();
return L_0;
}
}
IL2CPP_EXTERN_C TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B XRParticipant_get_trackableId_mFE20FF09B28F44F916FD7175C9D1B50658DB8D13_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
XRParticipant_t8CFF46A2CDD860A7591AD0FC0EE563458C8FA13F * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XRParticipant_t8CFF46A2CDD860A7591AD0FC0EE563458C8FA13F *>(__this + _offset);
TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B _returnValue;
_returnValue = XRParticipant_get_trackableId_mFE20FF09B28F44F916FD7175C9D1B50658DB8D13_inline(_thisAdjusted, method);
return _returnValue;
}
// UnityEngine.Pose UnityEngine.XR.ARSubsystems.XRParticipant::get_pose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A XRParticipant_get_pose_m8BC5243C4975CE29D2E98B803908FE7B0B2A1D1B (XRParticipant_t8CFF46A2CDD860A7591AD0FC0EE563458C8FA13F * __this, const RuntimeMethod* method)
{
{
// public Pose pose => m_Pose;
Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A L_0 = __this->get_m_Pose_1();
return L_0;
}
}
IL2CPP_EXTERN_C Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A XRParticipant_get_pose_m8BC5243C4975CE29D2E98B803908FE7B0B2A1D1B_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
XRParticipant_t8CFF46A2CDD860A7591AD0FC0EE563458C8FA13F * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XRParticipant_t8CFF46A2CDD860A7591AD0FC0EE563458C8FA13F *>(__this + _offset);
Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A _returnValue;
_returnValue = XRParticipant_get_pose_m8BC5243C4975CE29D2E98B803908FE7B0B2A1D1B_inline(_thisAdjusted, method);
return _returnValue;
}
// UnityEngine.XR.ARSubsystems.TrackingState UnityEngine.XR.ARSubsystems.XRParticipant::get_trackingState()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XRParticipant_get_trackingState_m0510505F8AE642CCCEBD2D784CB898CEDD59A08F (XRParticipant_t8CFF46A2CDD860A7591AD0FC0EE563458C8FA13F * __this, const RuntimeMethod* method)
{
{
// public TrackingState trackingState => m_TrackingState;
int32_t L_0 = __this->get_m_TrackingState_2();
return L_0;
}
}
IL2CPP_EXTERN_C int32_t XRParticipant_get_trackingState_m0510505F8AE642CCCEBD2D784CB898CEDD59A08F_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
XRParticipant_t8CFF46A2CDD860A7591AD0FC0EE563458C8FA13F * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XRParticipant_t8CFF46A2CDD860A7591AD0FC0EE563458C8FA13F *>(__this + _offset);
int32_t _returnValue;
_returnValue = XRParticipant_get_trackingState_m0510505F8AE642CCCEBD2D784CB898CEDD59A08F_inline(_thisAdjusted, method);
return _returnValue;
}
// System.IntPtr UnityEngine.XR.ARSubsystems.XRParticipant::get_nativePtr()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR intptr_t XRParticipant_get_nativePtr_mF4BBE0CC8C5CFA70984EAAD24CFF13E9BCFE0FE4 (XRParticipant_t8CFF46A2CDD860A7591AD0FC0EE563458C8FA13F * __this, const RuntimeMethod* method)
{
{
// public IntPtr nativePtr => m_NativePtr;
intptr_t L_0 = __this->get_m_NativePtr_3();
return (intptr_t)L_0;
}
}
IL2CPP_EXTERN_C intptr_t XRParticipant_get_nativePtr_mF4BBE0CC8C5CFA70984EAAD24CFF13E9BCFE0FE4_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
XRParticipant_t8CFF46A2CDD860A7591AD0FC0EE563458C8FA13F * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XRParticipant_t8CFF46A2CDD860A7591AD0FC0EE563458C8FA13F *>(__this + _offset);
intptr_t _returnValue;
_returnValue = XRParticipant_get_nativePtr_mF4BBE0CC8C5CFA70984EAAD24CFF13E9BCFE0FE4_inline(_thisAdjusted, method);
return _returnValue;
}
// System.Guid UnityEngine.XR.ARSubsystems.XRParticipant::get_sessionId()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Guid_t XRParticipant_get_sessionId_m25D8BC6B31A8216FF6959B2C4792CCC7040A2300 (XRParticipant_t8CFF46A2CDD860A7591AD0FC0EE563458C8FA13F * __this, const RuntimeMethod* method)
{
{
// public Guid sessionId => m_SessionId;
Guid_t L_0 = __this->get_m_SessionId_4();
return L_0;
}
}
IL2CPP_EXTERN_C Guid_t XRParticipant_get_sessionId_m25D8BC6B31A8216FF6959B2C4792CCC7040A2300_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
XRParticipant_t8CFF46A2CDD860A7591AD0FC0EE563458C8FA13F * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XRParticipant_t8CFF46A2CDD860A7591AD0FC0EE563458C8FA13F *>(__this + _offset);
Guid_t _returnValue;
_returnValue = XRParticipant_get_sessionId_m25D8BC6B31A8216FF6959B2C4792CCC7040A2300_inline(_thisAdjusted, method);
return _returnValue;
}
// System.Int32 UnityEngine.XR.ARSubsystems.XRParticipant::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XRParticipant_GetHashCode_mF04382E10454D77B4F1AA3AF615488B98D9D62EC (XRParticipant_t8CFF46A2CDD860A7591AD0FC0EE563458C8FA13F * __this, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
// int hash = m_TrackableId.GetHashCode();
TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B * L_0 = __this->get_address_of_m_TrackableId_0();
int32_t L_1;
L_1 = TrackableId_GetHashCode_mFD297FC6DB40FB5B28C6E9B7A2CF2785D75C4E86((TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B *)L_0, /*hidden argument*/NULL);
// hash = hash * 486187739 + m_Pose.GetHashCode();
Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A * L_2 = __this->get_address_of_m_Pose_1();
int32_t L_3;
L_3 = Pose_GetHashCode_mE1DD7FBCCB1C979B252F0B117276BA11CF4D2367((Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A *)L_2, /*hidden argument*/NULL);
// hash = hash * 486187739 + ((int)m_TrackingState).GetHashCode();
int32_t L_4 = __this->get_m_TrackingState_2();
V_0 = L_4;
int32_t L_5;
L_5 = Int32_GetHashCode_mEDD3F492A5F7CF021125AE3F38E2B8F8743FC667((int32_t*)(&V_0), /*hidden argument*/NULL);
// hash = hash * 486187739 + m_NativePtr.GetHashCode();
intptr_t* L_6 = __this->get_address_of_m_NativePtr_3();
int32_t L_7;
L_7 = IntPtr_GetHashCode_m55E65FB52EFE7C0EBC3C28E66A5D7542F3B1D35D((intptr_t*)L_6, /*hidden argument*/NULL);
// return hash;
return ((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)L_1, (int32_t)((int32_t)486187739))), (int32_t)L_3)), (int32_t)((int32_t)486187739))), (int32_t)L_5)), (int32_t)((int32_t)486187739))), (int32_t)L_7));
}
}
IL2CPP_EXTERN_C int32_t XRParticipant_GetHashCode_mF04382E10454D77B4F1AA3AF615488B98D9D62EC_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
XRParticipant_t8CFF46A2CDD860A7591AD0FC0EE563458C8FA13F * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XRParticipant_t8CFF46A2CDD860A7591AD0FC0EE563458C8FA13F *>(__this + _offset);
int32_t _returnValue;
_returnValue = XRParticipant_GetHashCode_mF04382E10454D77B4F1AA3AF615488B98D9D62EC(_thisAdjusted, method);
return _returnValue;
}
// System.Boolean UnityEngine.XR.ARSubsystems.XRParticipant::Equals(UnityEngine.XR.ARSubsystems.XRParticipant)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XRParticipant_Equals_mE1679D0AAFE2566EA4CE5AF7992F1ADD3D2AFEDA (XRParticipant_t8CFF46A2CDD860A7591AD0FC0EE563458C8FA13F * __this, XRParticipant_t8CFF46A2CDD860A7591AD0FC0EE563458C8FA13F ___other0, const RuntimeMethod* method)
{
{
// return
// m_TrackableId.Equals(other.m_TrackableId) &&
// m_Pose.Equals(other.m_Pose) &&
// (m_TrackingState == other.m_TrackingState) &&
// (m_NativePtr == other.m_NativePtr);
TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B * L_0 = __this->get_address_of_m_TrackableId_0();
XRParticipant_t8CFF46A2CDD860A7591AD0FC0EE563458C8FA13F L_1 = ___other0;
TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B L_2 = L_1.get_m_TrackableId_0();
bool L_3;
L_3 = TrackableId_Equals_m1DF35616359175E3D66DE18250E8CDA1E6462B06((TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B *)L_0, L_2, /*hidden argument*/NULL);
if (!L_3)
{
goto IL_0046;
}
}
{
Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A * L_4 = __this->get_address_of_m_Pose_1();
XRParticipant_t8CFF46A2CDD860A7591AD0FC0EE563458C8FA13F L_5 = ___other0;
Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A L_6 = L_5.get_m_Pose_1();
bool L_7;
L_7 = Pose_Equals_mFAE0041090F2032B8FCE63A0F289DD206134BF15((Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A *)L_4, L_6, /*hidden argument*/NULL);
if (!L_7)
{
goto IL_0046;
}
}
{
int32_t L_8 = __this->get_m_TrackingState_2();
XRParticipant_t8CFF46A2CDD860A7591AD0FC0EE563458C8FA13F L_9 = ___other0;
int32_t L_10 = L_9.get_m_TrackingState_2();
if ((!(((uint32_t)L_8) == ((uint32_t)L_10))))
{
goto IL_0046;
}
}
{
intptr_t L_11 = __this->get_m_NativePtr_3();
XRParticipant_t8CFF46A2CDD860A7591AD0FC0EE563458C8FA13F L_12 = ___other0;
intptr_t L_13 = L_12.get_m_NativePtr_3();
bool L_14;
L_14 = IntPtr_op_Equality_mD94F3FE43A65684EFF984A7B95E70D2520C0AC73((intptr_t)L_11, (intptr_t)L_13, /*hidden argument*/NULL);
return L_14;
}
IL_0046:
{
return (bool)0;
}
}
IL2CPP_EXTERN_C bool XRParticipant_Equals_mE1679D0AAFE2566EA4CE5AF7992F1ADD3D2AFEDA_AdjustorThunk (RuntimeObject * __this, XRParticipant_t8CFF46A2CDD860A7591AD0FC0EE563458C8FA13F ___other0, const RuntimeMethod* method)
{
XRParticipant_t8CFF46A2CDD860A7591AD0FC0EE563458C8FA13F * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XRParticipant_t8CFF46A2CDD860A7591AD0FC0EE563458C8FA13F *>(__this + _offset);
bool _returnValue;
_returnValue = XRParticipant_Equals_mE1679D0AAFE2566EA4CE5AF7992F1ADD3D2AFEDA(_thisAdjusted, ___other0, method);
return _returnValue;
}
// System.Boolean UnityEngine.XR.ARSubsystems.XRParticipant::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XRParticipant_Equals_mBA488A840ABD4DBB6432E2D03126062EC1A6768C (XRParticipant_t8CFF46A2CDD860A7591AD0FC0EE563458C8FA13F * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XRParticipant_t8CFF46A2CDD860A7591AD0FC0EE563458C8FA13F_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
// public override bool Equals(object obj) => (obj is XRParticipant) && Equals((XRParticipant)obj);
RuntimeObject * L_0 = ___obj0;
if (!((RuntimeObject *)IsInstSealed((RuntimeObject*)L_0, XRParticipant_t8CFF46A2CDD860A7591AD0FC0EE563458C8FA13F_il2cpp_TypeInfo_var)))
{
goto IL_0015;
}
}
{
RuntimeObject * L_1 = ___obj0;
bool L_2;
L_2 = XRParticipant_Equals_mE1679D0AAFE2566EA4CE5AF7992F1ADD3D2AFEDA((XRParticipant_t8CFF46A2CDD860A7591AD0FC0EE563458C8FA13F *)__this, ((*(XRParticipant_t8CFF46A2CDD860A7591AD0FC0EE563458C8FA13F *)((XRParticipant_t8CFF46A2CDD860A7591AD0FC0EE563458C8FA13F *)UnBox(L_1, XRParticipant_t8CFF46A2CDD860A7591AD0FC0EE563458C8FA13F_il2cpp_TypeInfo_var)))), /*hidden argument*/NULL);
return L_2;
}
IL_0015:
{
return (bool)0;
}
}
IL2CPP_EXTERN_C bool XRParticipant_Equals_mBA488A840ABD4DBB6432E2D03126062EC1A6768C_AdjustorThunk (RuntimeObject * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
XRParticipant_t8CFF46A2CDD860A7591AD0FC0EE563458C8FA13F * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XRParticipant_t8CFF46A2CDD860A7591AD0FC0EE563458C8FA13F *>(__this + _offset);
bool _returnValue;
_returnValue = XRParticipant_Equals_mBA488A840ABD4DBB6432E2D03126062EC1A6768C(_thisAdjusted, ___obj0, method);
return _returnValue;
}
// System.Void UnityEngine.XR.ARSubsystems.XRParticipant::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRParticipant__cctor_mBD235B2B36E92A66051E85204403C005DFAF9C96 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IntPtr_t_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XRParticipant_t8CFF46A2CDD860A7591AD0FC0EE563458C8FA13F_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
XRParticipant_t8CFF46A2CDD860A7591AD0FC0EE563458C8FA13F V_0;
memset((&V_0), 0, sizeof(V_0));
{
// static readonly XRParticipant k_Default = new XRParticipant
// {
// m_TrackableId = TrackableId.invalidId,
// m_Pose = Pose.identity,
// m_NativePtr = IntPtr.Zero
// };
il2cpp_codegen_initobj((&V_0), sizeof(XRParticipant_t8CFF46A2CDD860A7591AD0FC0EE563458C8FA13F ));
IL2CPP_RUNTIME_CLASS_INIT(TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B_il2cpp_TypeInfo_var);
TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B L_0;
L_0 = TrackableId_get_invalidId_m06B698EFFA7748E185299C72B5CEC1AA5B221F85_inline(/*hidden argument*/NULL);
(&V_0)->set_m_TrackableId_0(L_0);
IL2CPP_RUNTIME_CLASS_INIT(Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A_il2cpp_TypeInfo_var);
Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A L_1;
L_1 = Pose_get_identity_m334B16AC3024785914BCC5A2B949750A010878BF(/*hidden argument*/NULL);
(&V_0)->set_m_Pose_1(L_1);
(&V_0)->set_m_NativePtr_3((intptr_t)(0));
XRParticipant_t8CFF46A2CDD860A7591AD0FC0EE563458C8FA13F L_2 = V_0;
((XRParticipant_t8CFF46A2CDD860A7591AD0FC0EE563458C8FA13F_StaticFields*)il2cpp_codegen_static_fields_for(XRParticipant_t8CFF46A2CDD860A7591AD0FC0EE563458C8FA13F_il2cpp_TypeInfo_var))->set_k_Default_5(L_2);
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
// System.Void UnityEngine.XR.ARSubsystems.XRParticipantSubsystem::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRParticipantSubsystem__ctor_mC7EB236E3A4BBC45C055B94C26493FBB19DF4056 (XRParticipantSubsystem_t7F710E46FC5A17967E7CAE126DE9443C752C36FC * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TrackingSubsystem_4__ctor_m43E33972537CDF7416C9596A64D27D09A749F0D2_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
// public XRParticipantSubsystem()
TrackingSubsystem_4__ctor_m43E33972537CDF7416C9596A64D27D09A749F0D2(__this, /*hidden argument*/TrackingSubsystem_4__ctor_m43E33972537CDF7416C9596A64D27D09A749F0D2_RuntimeMethod_var);
// }
return;
}
}
// UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.XRParticipant> UnityEngine.XR.ARSubsystems.XRParticipantSubsystem::GetChanges(Unity.Collections.Allocator)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TrackableChanges_1_tCBDEADFC15FC0570F012431A5227C2E6B92BAC3F XRParticipantSubsystem_GetChanges_mFC86BCBEF9E0E318E661D36AC316B6D01A068AA8 (XRParticipantSubsystem_t7F710E46FC5A17967E7CAE126DE9443C752C36FC * __this, int32_t ___allocator0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SubsystemWithProvider_3_get_provider_m3CF16A15D858F5FDFDE6A86865C734C33D7B563E_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XRParticipant_t8CFF46A2CDD860A7591AD0FC0EE563458C8FA13F_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
// var changes = provider.GetChanges(XRParticipant.defaultParticipant, allocator);
Provider_t1D0BC515976D24FD30341AC456ACFCB2DE4A344E * L_0;
L_0 = SubsystemWithProvider_3_get_provider_m3CF16A15D858F5FDFDE6A86865C734C33D7B563E_inline(__this, /*hidden argument*/SubsystemWithProvider_3_get_provider_m3CF16A15D858F5FDFDE6A86865C734C33D7B563E_RuntimeMethod_var);
IL2CPP_RUNTIME_CLASS_INIT(XRParticipant_t8CFF46A2CDD860A7591AD0FC0EE563458C8FA13F_il2cpp_TypeInfo_var);
XRParticipant_t8CFF46A2CDD860A7591AD0FC0EE563458C8FA13F L_1;
L_1 = XRParticipant_get_defaultParticipant_mD2641CE602FDDA1E32641A60101077BF5E10B49D_inline(/*hidden argument*/NULL);
int32_t L_2 = ___allocator0;
NullCheck(L_0);
TrackableChanges_1_tCBDEADFC15FC0570F012431A5227C2E6B92BAC3F L_3;
L_3 = VirtualFuncInvoker2< TrackableChanges_1_tCBDEADFC15FC0570F012431A5227C2E6B92BAC3F , XRParticipant_t8CFF46A2CDD860A7591AD0FC0EE563458C8FA13F , int32_t >::Invoke(8 /* UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.XRParticipant> UnityEngine.XR.ARSubsystems.XRParticipantSubsystem/Provider::GetChanges(UnityEngine.XR.ARSubsystems.XRParticipant,Unity.Collections.Allocator) */, L_0, L_1, L_2);
// return changes;
return L_3;
}
}
#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
// System.Void UnityEngine.XR.ARSubsystems.XRParticipantSubsystemDescriptor::set_capabilities(UnityEngine.XR.ARSubsystems.XRParticipantSubsystemDescriptor/Capabilities)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRParticipantSubsystemDescriptor_set_capabilities_m3CDF9EDC1BF57F513846DE87A9E4996ED543759A (XRParticipantSubsystemDescriptor_t533EE70DC8D4B105B9C87B76D35A7D59A84BCA55 * __this, int32_t ___value0, const RuntimeMethod* method)
{
{
// public Capabilities capabilities { get; private set; }
int32_t L_0 = ___value0;
__this->set_U3CcapabilitiesU3Ek__BackingField_3(L_0);
return;
}
}
// System.Void UnityEngine.XR.ARSubsystems.XRParticipantSubsystemDescriptor::.ctor(System.String,System.Type,System.Type,UnityEngine.XR.ARSubsystems.XRParticipantSubsystemDescriptor/Capabilities)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRParticipantSubsystemDescriptor__ctor_m83A6821A71C68D58354ACE8289E8F621F2E183DC (XRParticipantSubsystemDescriptor_t533EE70DC8D4B105B9C87B76D35A7D59A84BCA55 * __this, String_t* ___subsystemId0, Type_t * ___providerType1, Type_t * ___subsystemTypeOverride2, int32_t ___capabilities3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SubsystemDescriptorWithProvider_2__ctor_m2F3E41C1EE0822F68A7AACCB231B6D3D1DCC8BCC_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
// XRParticipantSubsystemDescriptor(string subsystemId, Type providerType, Type subsystemTypeOverride, Capabilities capabilities)
SubsystemDescriptorWithProvider_2__ctor_m2F3E41C1EE0822F68A7AACCB231B6D3D1DCC8BCC(__this, /*hidden argument*/SubsystemDescriptorWithProvider_2__ctor_m2F3E41C1EE0822F68A7AACCB231B6D3D1DCC8BCC_RuntimeMethod_var);
// id = subsystemId;
String_t* L_0 = ___subsystemId0;
SubsystemDescriptorWithProvider_set_id_mEC6863CDB21597618394D2ED4182A9ED3ACBF220_inline(__this, L_0, /*hidden argument*/NULL);
// this.providerType = providerType;
Type_t * L_1 = ___providerType1;
SubsystemDescriptorWithProvider_set_providerType_m672B1F3CC7A12E8569D801F7C79538753C0D9C2D_inline(__this, L_1, /*hidden argument*/NULL);
// this.subsystemTypeOverride = subsystemTypeOverride;
Type_t * L_2 = ___subsystemTypeOverride2;
SubsystemDescriptorWithProvider_set_subsystemTypeOverride_mA453100A7A8FAB35FBE7154E63B5A17D518F41B6_inline(__this, L_2, /*hidden argument*/NULL);
// this.capabilities = capabilities;
int32_t L_3 = ___capabilities3;
XRParticipantSubsystemDescriptor_set_capabilities_m3CDF9EDC1BF57F513846DE87A9E4996ED543759A_inline(__this, L_3, /*hidden argument*/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
// System.Void UnityEngine.XR.ARSubsystems.XRPlaneSubsystem::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRPlaneSubsystem__ctor_mDD4F1B44F90E2F50D3C78601413F01D05990B20C (XRPlaneSubsystem_t7C76F9D2C993B0DC38F0A7CDCE745EA7C12417EE * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TrackingSubsystem_4__ctor_m66B311A47D5E648C66011BA6F376723D0BAB98DE_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
// public XRPlaneSubsystem()
TrackingSubsystem_4__ctor_m66B311A47D5E648C66011BA6F376723D0BAB98DE(__this, /*hidden argument*/TrackingSubsystem_4__ctor_m66B311A47D5E648C66011BA6F376723D0BAB98DE_RuntimeMethod_var);
// }
return;
}
}
// UnityEngine.XR.ARSubsystems.PlaneDetectionMode UnityEngine.XR.ARSubsystems.XRPlaneSubsystem::get_requestedPlaneDetectionMode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XRPlaneSubsystem_get_requestedPlaneDetectionMode_m51078C58B303EDA9CF614D48CE5E66F5A7136671 (XRPlaneSubsystem_t7C76F9D2C993B0DC38F0A7CDCE745EA7C12417EE * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SubsystemWithProvider_3_get_provider_mE1CD1BFCD049073456FC41A22EB19726E965327D_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
// get => provider.requestedPlaneDetectionMode;
Provider_t6CB5B1036B0AAED1379F3828D695A6942B72BA12 * L_0;
L_0 = SubsystemWithProvider_3_get_provider_mE1CD1BFCD049073456FC41A22EB19726E965327D_inline(__this, /*hidden argument*/SubsystemWithProvider_3_get_provider_mE1CD1BFCD049073456FC41A22EB19726E965327D_RuntimeMethod_var);
NullCheck(L_0);
int32_t L_1;
L_1 = VirtualFuncInvoker0< int32_t >::Invoke(10 /* UnityEngine.XR.ARSubsystems.PlaneDetectionMode UnityEngine.XR.ARSubsystems.XRPlaneSubsystem/Provider::get_requestedPlaneDetectionMode() */, L_0);
return L_1;
}
}
// System.Void UnityEngine.XR.ARSubsystems.XRPlaneSubsystem::set_requestedPlaneDetectionMode(UnityEngine.XR.ARSubsystems.PlaneDetectionMode)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRPlaneSubsystem_set_requestedPlaneDetectionMode_m5417F9F8388C4FFEF240FDA59C658C7BC7BE31E6 (XRPlaneSubsystem_t7C76F9D2C993B0DC38F0A7CDCE745EA7C12417EE * __this, int32_t ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SubsystemWithProvider_3_get_provider_mE1CD1BFCD049073456FC41A22EB19726E965327D_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
// set => provider.requestedPlaneDetectionMode = value;
Provider_t6CB5B1036B0AAED1379F3828D695A6942B72BA12 * L_0;
L_0 = SubsystemWithProvider_3_get_provider_mE1CD1BFCD049073456FC41A22EB19726E965327D_inline(__this, /*hidden argument*/SubsystemWithProvider_3_get_provider_mE1CD1BFCD049073456FC41A22EB19726E965327D_RuntimeMethod_var);
int32_t L_1 = ___value0;
NullCheck(L_0);
VirtualActionInvoker1< int32_t >::Invoke(11 /* System.Void UnityEngine.XR.ARSubsystems.XRPlaneSubsystem/Provider::set_requestedPlaneDetectionMode(UnityEngine.XR.ARSubsystems.PlaneDetectionMode) */, L_0, L_1);
return;
}
}
// UnityEngine.XR.ARSubsystems.PlaneDetectionMode UnityEngine.XR.ARSubsystems.XRPlaneSubsystem::get_currentPlaneDetectionMode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XRPlaneSubsystem_get_currentPlaneDetectionMode_m118C25A13FE903AA0811ADC0DBEFEED9E6527FA1 (XRPlaneSubsystem_t7C76F9D2C993B0DC38F0A7CDCE745EA7C12417EE * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SubsystemWithProvider_3_get_provider_mE1CD1BFCD049073456FC41A22EB19726E965327D_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
// public PlaneDetectionMode currentPlaneDetectionMode => provider.currentPlaneDetectionMode;
Provider_t6CB5B1036B0AAED1379F3828D695A6942B72BA12 * L_0;
L_0 = SubsystemWithProvider_3_get_provider_mE1CD1BFCD049073456FC41A22EB19726E965327D_inline(__this, /*hidden argument*/SubsystemWithProvider_3_get_provider_mE1CD1BFCD049073456FC41A22EB19726E965327D_RuntimeMethod_var);
NullCheck(L_0);
int32_t L_1;
L_1 = VirtualFuncInvoker0< int32_t >::Invoke(12 /* UnityEngine.XR.ARSubsystems.PlaneDetectionMode UnityEngine.XR.ARSubsystems.XRPlaneSubsystem/Provider::get_currentPlaneDetectionMode() */, L_0);
return L_1;
}
}
// UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.BoundedPlane> UnityEngine.XR.ARSubsystems.XRPlaneSubsystem::GetChanges(Unity.Collections.Allocator)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TrackableChanges_1_t8B0834EED4AC44A71FC9071BDA349BA9D8FE0717 XRPlaneSubsystem_GetChanges_m041C14703F9160E7C1A0C740F534D4881D9BA4EA (XRPlaneSubsystem_t7C76F9D2C993B0DC38F0A7CDCE745EA7C12417EE * __this, int32_t ___allocator0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&BoundedPlane_t9001963C43ACDF4CDEA8BBF97CD783B7969B79C5_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SubsystemWithProvider_3_get_provider_mE1CD1BFCD049073456FC41A22EB19726E965327D_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
// var changes = provider.GetChanges(BoundedPlane.defaultValue, allocator);
Provider_t6CB5B1036B0AAED1379F3828D695A6942B72BA12 * L_0;
L_0 = SubsystemWithProvider_3_get_provider_mE1CD1BFCD049073456FC41A22EB19726E965327D_inline(__this, /*hidden argument*/SubsystemWithProvider_3_get_provider_mE1CD1BFCD049073456FC41A22EB19726E965327D_RuntimeMethod_var);
IL2CPP_RUNTIME_CLASS_INIT(BoundedPlane_t9001963C43ACDF4CDEA8BBF97CD783B7969B79C5_il2cpp_TypeInfo_var);
BoundedPlane_t9001963C43ACDF4CDEA8BBF97CD783B7969B79C5 L_1;
L_1 = BoundedPlane_get_defaultValue_m0C1F8EA6D681C3333CF429425254F63E1BE99003_inline(/*hidden argument*/NULL);
int32_t L_2 = ___allocator0;
NullCheck(L_0);
TrackableChanges_1_t8B0834EED4AC44A71FC9071BDA349BA9D8FE0717 L_3;
L_3 = VirtualFuncInvoker2< TrackableChanges_1_t8B0834EED4AC44A71FC9071BDA349BA9D8FE0717 , BoundedPlane_t9001963C43ACDF4CDEA8BBF97CD783B7969B79C5 , int32_t >::Invoke(9 /* UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.BoundedPlane> UnityEngine.XR.ARSubsystems.XRPlaneSubsystem/Provider::GetChanges(UnityEngine.XR.ARSubsystems.BoundedPlane,Unity.Collections.Allocator) */, L_0, L_1, L_2);
// return changes;
return L_3;
}
}
// System.Void UnityEngine.XR.ARSubsystems.XRPlaneSubsystem::GetBoundary(UnityEngine.XR.ARSubsystems.TrackableId,Unity.Collections.Allocator,Unity.Collections.NativeArray`1<UnityEngine.Vector2>&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRPlaneSubsystem_GetBoundary_mE3A06B4C37DB403DC6E5DD45A7E30700C73B3CA3 (XRPlaneSubsystem_t7C76F9D2C993B0DC38F0A7CDCE745EA7C12417EE * __this, TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B ___trackableId0, int32_t ___allocator1, NativeArray_1_t431C85F30275831D1F5D458AB73DFCE050693BC0 * ___boundary2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SubsystemWithProvider_3_get_provider_mE1CD1BFCD049073456FC41A22EB19726E965327D_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
// if (allocator == Allocator.Temp)
int32_t L_0 = ___allocator1;
if ((!(((uint32_t)L_0) == ((uint32_t)2))))
{
goto IL_000f;
}
}
{
// throw new InvalidOperationException("Allocator.Temp is not supported. Use Allocator.TempJob if you wish to use a temporary allocator.");
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_1 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral0040832A71810E092F962A5F9A66A6A1866CC7D1)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XRPlaneSubsystem_GetBoundary_mE3A06B4C37DB403DC6E5DD45A7E30700C73B3CA3_RuntimeMethod_var)));
}
IL_000f:
{
// if (allocator == Allocator.None)
int32_t L_2 = ___allocator1;
if ((!(((uint32_t)L_2) == ((uint32_t)1))))
{
goto IL_001e;
}
}
{
// throw new InvalidOperationException("Allocator.None is not a valid allocator.");
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_3 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_3, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral1889AF12D766B3A68EB9EE79FE4ECA560C23A4F5)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XRPlaneSubsystem_GetBoundary_mE3A06B4C37DB403DC6E5DD45A7E30700C73B3CA3_RuntimeMethod_var)));
}
IL_001e:
{
// provider.GetBoundary(trackableId, allocator, ref boundary);
Provider_t6CB5B1036B0AAED1379F3828D695A6942B72BA12 * L_4;
L_4 = SubsystemWithProvider_3_get_provider_mE1CD1BFCD049073456FC41A22EB19726E965327D_inline(__this, /*hidden argument*/SubsystemWithProvider_3_get_provider_mE1CD1BFCD049073456FC41A22EB19726E965327D_RuntimeMethod_var);
TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B L_5 = ___trackableId0;
int32_t L_6 = ___allocator1;
NativeArray_1_t431C85F30275831D1F5D458AB73DFCE050693BC0 * L_7 = ___boundary2;
NullCheck(L_4);
VirtualActionInvoker3< TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B , int32_t, NativeArray_1_t431C85F30275831D1F5D458AB73DFCE050693BC0 * >::Invoke(8 /* System.Void UnityEngine.XR.ARSubsystems.XRPlaneSubsystem/Provider::GetBoundary(UnityEngine.XR.ARSubsystems.TrackableId,Unity.Collections.Allocator,Unity.Collections.NativeArray`1<UnityEngine.Vector2>&) */, L_4, L_5, L_6, (NativeArray_1_t431C85F30275831D1F5D458AB73DFCE050693BC0 *)L_7);
// }
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
// System.Void UnityEngine.XR.ARSubsystems.XRPlaneSubsystemDescriptor::set_supportsHorizontalPlaneDetection(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRPlaneSubsystemDescriptor_set_supportsHorizontalPlaneDetection_m2BB45C7A44E14368A0FAEADA130A6F6158B1042D (XRPlaneSubsystemDescriptor_t98B66B6D99804656DDDB45C9BDA61C2EE4EDB483 * __this, bool ___value0, const RuntimeMethod* method)
{
{
// public bool supportsHorizontalPlaneDetection { get; private set; }
bool L_0 = ___value0;
__this->set_U3CsupportsHorizontalPlaneDetectionU3Ek__BackingField_3(L_0);
return;
}
}
// System.Void UnityEngine.XR.ARSubsystems.XRPlaneSubsystemDescriptor::set_supportsVerticalPlaneDetection(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRPlaneSubsystemDescriptor_set_supportsVerticalPlaneDetection_m050259C60036A9B08459ED7BDFC06D24270927B2 (XRPlaneSubsystemDescriptor_t98B66B6D99804656DDDB45C9BDA61C2EE4EDB483 * __this, bool ___value0, const RuntimeMethod* method)
{
{
// public bool supportsVerticalPlaneDetection { get; private set; }
bool L_0 = ___value0;
__this->set_U3CsupportsVerticalPlaneDetectionU3Ek__BackingField_4(L_0);
return;
}
}
// System.Void UnityEngine.XR.ARSubsystems.XRPlaneSubsystemDescriptor::set_supportsArbitraryPlaneDetection(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRPlaneSubsystemDescriptor_set_supportsArbitraryPlaneDetection_m2A4804EC8ED1137CB21F6589FBAE85CF01B1A5A0 (XRPlaneSubsystemDescriptor_t98B66B6D99804656DDDB45C9BDA61C2EE4EDB483 * __this, bool ___value0, const RuntimeMethod* method)
{
{
// public bool supportsArbitraryPlaneDetection { get; private set; }
bool L_0 = ___value0;
__this->set_U3CsupportsArbitraryPlaneDetectionU3Ek__BackingField_5(L_0);
return;
}
}
// System.Boolean UnityEngine.XR.ARSubsystems.XRPlaneSubsystemDescriptor::get_supportsBoundaryVertices()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XRPlaneSubsystemDescriptor_get_supportsBoundaryVertices_m4345B5F3CA73C685A3F741C4EDFF6B69EEEB8431 (XRPlaneSubsystemDescriptor_t98B66B6D99804656DDDB45C9BDA61C2EE4EDB483 * __this, const RuntimeMethod* method)
{
{
// public bool supportsBoundaryVertices { get; private set; }
bool L_0 = __this->get_U3CsupportsBoundaryVerticesU3Ek__BackingField_6();
return L_0;
}
}
// System.Void UnityEngine.XR.ARSubsystems.XRPlaneSubsystemDescriptor::set_supportsBoundaryVertices(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRPlaneSubsystemDescriptor_set_supportsBoundaryVertices_mDF9E00121A6509790D704D77FF0B863A99436747 (XRPlaneSubsystemDescriptor_t98B66B6D99804656DDDB45C9BDA61C2EE4EDB483 * __this, bool ___value0, const RuntimeMethod* method)
{
{
// public bool supportsBoundaryVertices { get; private set; }
bool L_0 = ___value0;
__this->set_U3CsupportsBoundaryVerticesU3Ek__BackingField_6(L_0);
return;
}
}
// System.Void UnityEngine.XR.ARSubsystems.XRPlaneSubsystemDescriptor::set_supportsClassification(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRPlaneSubsystemDescriptor_set_supportsClassification_mA74FCEFD28F8CC7E1BB2E97E69DFA8E20BD0904A (XRPlaneSubsystemDescriptor_t98B66B6D99804656DDDB45C9BDA61C2EE4EDB483 * __this, bool ___value0, const RuntimeMethod* method)
{
{
// public bool supportsClassification { get; private set; }
bool L_0 = ___value0;
__this->set_U3CsupportsClassificationU3Ek__BackingField_7(L_0);
return;
}
}
// System.Void UnityEngine.XR.ARSubsystems.XRPlaneSubsystemDescriptor::Create(UnityEngine.XR.ARSubsystems.XRPlaneSubsystemDescriptor/Cinfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRPlaneSubsystemDescriptor_Create_mB69A44F54AB64DF4361D3C16AE48C2F1B474EA32 (Cinfo_tC49A76BF09DB3F926B17955E1B8D729DC9B272AD ___cinfo0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SubsystemDescriptorStore_tE5D99C3159868DE6506269CB6B830621F8BC31A6_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XRPlaneSubsystemDescriptor_t98B66B6D99804656DDDB45C9BDA61C2EE4EDB483_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
// var descriptor = new XRPlaneSubsystemDescriptor(cinfo);
Cinfo_tC49A76BF09DB3F926B17955E1B8D729DC9B272AD L_0 = ___cinfo0;
XRPlaneSubsystemDescriptor_t98B66B6D99804656DDDB45C9BDA61C2EE4EDB483 * L_1 = (XRPlaneSubsystemDescriptor_t98B66B6D99804656DDDB45C9BDA61C2EE4EDB483 *)il2cpp_codegen_object_new(XRPlaneSubsystemDescriptor_t98B66B6D99804656DDDB45C9BDA61C2EE4EDB483_il2cpp_TypeInfo_var);
XRPlaneSubsystemDescriptor__ctor_mC8788AC7F6940BA1E88AE0277C1D099DD0EEB935(L_1, L_0, /*hidden argument*/NULL);
// SubsystemDescriptorStore.RegisterDescriptor(descriptor);
IL2CPP_RUNTIME_CLASS_INIT(SubsystemDescriptorStore_tE5D99C3159868DE6506269CB6B830621F8BC31A6_il2cpp_TypeInfo_var);
SubsystemDescriptorStore_RegisterDescriptor_m5586866BB233EF26B98640851816DD1764657688(L_1, /*hidden argument*/NULL);
// }
return;
}
}
// System.Void UnityEngine.XR.ARSubsystems.XRPlaneSubsystemDescriptor::.ctor(UnityEngine.XR.ARSubsystems.XRPlaneSubsystemDescriptor/Cinfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRPlaneSubsystemDescriptor__ctor_mC8788AC7F6940BA1E88AE0277C1D099DD0EEB935 (XRPlaneSubsystemDescriptor_t98B66B6D99804656DDDB45C9BDA61C2EE4EDB483 * __this, Cinfo_tC49A76BF09DB3F926B17955E1B8D729DC9B272AD ___cinfo0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SubsystemDescriptorWithProvider_2__ctor_mC9825ABADBFD661143DBD286E7A4203D29661704_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
// XRPlaneSubsystemDescriptor(Cinfo cinfo)
SubsystemDescriptorWithProvider_2__ctor_mC9825ABADBFD661143DBD286E7A4203D29661704(__this, /*hidden argument*/SubsystemDescriptorWithProvider_2__ctor_mC9825ABADBFD661143DBD286E7A4203D29661704_RuntimeMethod_var);
// id = cinfo.id;
String_t* L_0;
L_0 = Cinfo_get_id_m62022D2EE6912F0B1BDBCA687A4FC63321DE3F86_inline((Cinfo_tC49A76BF09DB3F926B17955E1B8D729DC9B272AD *)(&___cinfo0), /*hidden argument*/NULL);
SubsystemDescriptorWithProvider_set_id_mEC6863CDB21597618394D2ED4182A9ED3ACBF220_inline(__this, L_0, /*hidden argument*/NULL);
// providerType = cinfo.providerType;
Type_t * L_1;
L_1 = Cinfo_get_providerType_m496CFFD5CAAF878266582DECEC5CDFB92A9C0A55_inline((Cinfo_tC49A76BF09DB3F926B17955E1B8D729DC9B272AD *)(&___cinfo0), /*hidden argument*/NULL);
SubsystemDescriptorWithProvider_set_providerType_m672B1F3CC7A12E8569D801F7C79538753C0D9C2D_inline(__this, L_1, /*hidden argument*/NULL);
// subsystemTypeOverride = cinfo.subsystemTypeOverride;
Type_t * L_2;
L_2 = Cinfo_get_subsystemTypeOverride_m67ACD12818B5C91D42707639EA205E13BB15171A_inline((Cinfo_tC49A76BF09DB3F926B17955E1B8D729DC9B272AD *)(&___cinfo0), /*hidden argument*/NULL);
SubsystemDescriptorWithProvider_set_subsystemTypeOverride_mA453100A7A8FAB35FBE7154E63B5A17D518F41B6_inline(__this, L_2, /*hidden argument*/NULL);
// supportsHorizontalPlaneDetection = cinfo.supportsHorizontalPlaneDetection;
bool L_3;
L_3 = Cinfo_get_supportsHorizontalPlaneDetection_mBC3012C667106D47D9429F9C8001774038A38216_inline((Cinfo_tC49A76BF09DB3F926B17955E1B8D729DC9B272AD *)(&___cinfo0), /*hidden argument*/NULL);
XRPlaneSubsystemDescriptor_set_supportsHorizontalPlaneDetection_m2BB45C7A44E14368A0FAEADA130A6F6158B1042D_inline(__this, L_3, /*hidden argument*/NULL);
// supportsVerticalPlaneDetection = cinfo.supportsVerticalPlaneDetection;
bool L_4;
L_4 = Cinfo_get_supportsVerticalPlaneDetection_m4E3BE200E11784D049B94A054F15E4C76D29D7C6_inline((Cinfo_tC49A76BF09DB3F926B17955E1B8D729DC9B272AD *)(&___cinfo0), /*hidden argument*/NULL);
XRPlaneSubsystemDescriptor_set_supportsVerticalPlaneDetection_m050259C60036A9B08459ED7BDFC06D24270927B2_inline(__this, L_4, /*hidden argument*/NULL);
// supportsArbitraryPlaneDetection = cinfo.supportsArbitraryPlaneDetection;
bool L_5;
L_5 = Cinfo_get_supportsArbitraryPlaneDetection_mF6CB379C9781FE8B8473949DA99196508EF91DB5_inline((Cinfo_tC49A76BF09DB3F926B17955E1B8D729DC9B272AD *)(&___cinfo0), /*hidden argument*/NULL);
XRPlaneSubsystemDescriptor_set_supportsArbitraryPlaneDetection_m2A4804EC8ED1137CB21F6589FBAE85CF01B1A5A0_inline(__this, L_5, /*hidden argument*/NULL);
// supportsBoundaryVertices = cinfo.supportsBoundaryVertices;
bool L_6;
L_6 = Cinfo_get_supportsBoundaryVertices_m5BA762B342FCF81EAE6E3645D3BAF04C1E8EAAD9_inline((Cinfo_tC49A76BF09DB3F926B17955E1B8D729DC9B272AD *)(&___cinfo0), /*hidden argument*/NULL);
XRPlaneSubsystemDescriptor_set_supportsBoundaryVertices_mDF9E00121A6509790D704D77FF0B863A99436747_inline(__this, L_6, /*hidden argument*/NULL);
// supportsClassification = cinfo.supportsClassification;
bool L_7;
L_7 = Cinfo_get_supportsClassification_m0396A2A62F840D9E283402BFB3681A5CC19C810E_inline((Cinfo_tC49A76BF09DB3F926B17955E1B8D729DC9B272AD *)(&___cinfo0), /*hidden argument*/NULL);
XRPlaneSubsystemDescriptor_set_supportsClassification_mA74FCEFD28F8CC7E1BB2E97E69DFA8E20BD0904A_inline(__this, L_7, /*hidden argument*/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
// UnityEngine.XR.ARSubsystems.XRPointCloud UnityEngine.XR.ARSubsystems.XRPointCloud::get_defaultValue()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XRPointCloud_t08B41A05528E45CE709F8C14CA6C484D360A62F2 XRPointCloud_get_defaultValue_m484986BE6FCCFD493B66A7BC4895B0AC49F043E2 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XRPointCloud_t08B41A05528E45CE709F8C14CA6C484D360A62F2_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
// public static XRPointCloud defaultValue => s_Default;
IL2CPP_RUNTIME_CLASS_INIT(XRPointCloud_t08B41A05528E45CE709F8C14CA6C484D360A62F2_il2cpp_TypeInfo_var);
XRPointCloud_t08B41A05528E45CE709F8C14CA6C484D360A62F2 L_0 = ((XRPointCloud_t08B41A05528E45CE709F8C14CA6C484D360A62F2_StaticFields*)il2cpp_codegen_static_fields_for(XRPointCloud_t08B41A05528E45CE709F8C14CA6C484D360A62F2_il2cpp_TypeInfo_var))->get_s_Default_0();
return L_0;
}
}
// UnityEngine.XR.ARSubsystems.TrackableId UnityEngine.XR.ARSubsystems.XRPointCloud::get_trackableId()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B XRPointCloud_get_trackableId_m45E06C0C6CD525985ED5FF3A0DC9D1F41A845889 (XRPointCloud_t08B41A05528E45CE709F8C14CA6C484D360A62F2 * __this, const RuntimeMethod* method)
{
{
// public TrackableId trackableId => m_TrackableId;
TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B L_0 = __this->get_m_TrackableId_1();
return L_0;
}
}
IL2CPP_EXTERN_C TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B XRPointCloud_get_trackableId_m45E06C0C6CD525985ED5FF3A0DC9D1F41A845889_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
XRPointCloud_t08B41A05528E45CE709F8C14CA6C484D360A62F2 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XRPointCloud_t08B41A05528E45CE709F8C14CA6C484D360A62F2 *>(__this + _offset);
TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B _returnValue;
_returnValue = XRPointCloud_get_trackableId_m45E06C0C6CD525985ED5FF3A0DC9D1F41A845889_inline(_thisAdjusted, method);
return _returnValue;
}
// UnityEngine.Pose UnityEngine.XR.ARSubsystems.XRPointCloud::get_pose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A XRPointCloud_get_pose_m4291F970BA7E4F2DE67BB6666D365FF510B8AC39 (XRPointCloud_t08B41A05528E45CE709F8C14CA6C484D360A62F2 * __this, const RuntimeMethod* method)
{
{
// public Pose pose => m_Pose;
Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A L_0 = __this->get_m_Pose_2();
return L_0;
}
}
IL2CPP_EXTERN_C Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A XRPointCloud_get_pose_m4291F970BA7E4F2DE67BB6666D365FF510B8AC39_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
XRPointCloud_t08B41A05528E45CE709F8C14CA6C484D360A62F2 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XRPointCloud_t08B41A05528E45CE709F8C14CA6C484D360A62F2 *>(__this + _offset);
Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A _returnValue;
_returnValue = XRPointCloud_get_pose_m4291F970BA7E4F2DE67BB6666D365FF510B8AC39_inline(_thisAdjusted, method);
return _returnValue;
}
// UnityEngine.XR.ARSubsystems.TrackingState UnityEngine.XR.ARSubsystems.XRPointCloud::get_trackingState()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XRPointCloud_get_trackingState_mE90A4EE69C3F5EA084CB0BF1B3D128160C719242 (XRPointCloud_t08B41A05528E45CE709F8C14CA6C484D360A62F2 * __this, const RuntimeMethod* method)
{
{
// public TrackingState trackingState => m_TrackingState;
int32_t L_0 = __this->get_m_TrackingState_3();
return L_0;
}
}
IL2CPP_EXTERN_C int32_t XRPointCloud_get_trackingState_mE90A4EE69C3F5EA084CB0BF1B3D128160C719242_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
XRPointCloud_t08B41A05528E45CE709F8C14CA6C484D360A62F2 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XRPointCloud_t08B41A05528E45CE709F8C14CA6C484D360A62F2 *>(__this + _offset);
int32_t _returnValue;
_returnValue = XRPointCloud_get_trackingState_mE90A4EE69C3F5EA084CB0BF1B3D128160C719242_inline(_thisAdjusted, method);
return _returnValue;
}
// System.Int32 UnityEngine.XR.ARSubsystems.XRPointCloud::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XRPointCloud_GetHashCode_m27CF26ED9655FD5EF9E3F83986059017A37E6778 (XRPointCloud_t08B41A05528E45CE709F8C14CA6C484D360A62F2 * __this, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
// var hash = m_TrackableId.GetHashCode();
TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B * L_0 = __this->get_address_of_m_TrackableId_1();
int32_t L_1;
L_1 = TrackableId_GetHashCode_mFD297FC6DB40FB5B28C6E9B7A2CF2785D75C4E86((TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B *)L_0, /*hidden argument*/NULL);
// hash = hash * 486187739 + m_Pose.GetHashCode();
Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A * L_2 = __this->get_address_of_m_Pose_2();
int32_t L_3;
L_3 = Pose_GetHashCode_mE1DD7FBCCB1C979B252F0B117276BA11CF4D2367((Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A *)L_2, /*hidden argument*/NULL);
// hash = hash * 486187739 + ((int)m_TrackingState).GetHashCode();
int32_t L_4 = __this->get_m_TrackingState_3();
V_0 = L_4;
int32_t L_5;
L_5 = Int32_GetHashCode_mEDD3F492A5F7CF021125AE3F38E2B8F8743FC667((int32_t*)(&V_0), /*hidden argument*/NULL);
// hash = hash * 486187739 + m_NativePtr.GetHashCode();
intptr_t* L_6 = __this->get_address_of_m_NativePtr_4();
int32_t L_7;
L_7 = IntPtr_GetHashCode_m55E65FB52EFE7C0EBC3C28E66A5D7542F3B1D35D((intptr_t*)L_6, /*hidden argument*/NULL);
// return hash;
return ((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)L_1, (int32_t)((int32_t)486187739))), (int32_t)L_3)), (int32_t)((int32_t)486187739))), (int32_t)L_5)), (int32_t)((int32_t)486187739))), (int32_t)L_7));
}
}
IL2CPP_EXTERN_C int32_t XRPointCloud_GetHashCode_m27CF26ED9655FD5EF9E3F83986059017A37E6778_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
XRPointCloud_t08B41A05528E45CE709F8C14CA6C484D360A62F2 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XRPointCloud_t08B41A05528E45CE709F8C14CA6C484D360A62F2 *>(__this + _offset);
int32_t _returnValue;
_returnValue = XRPointCloud_GetHashCode_m27CF26ED9655FD5EF9E3F83986059017A37E6778(_thisAdjusted, method);
return _returnValue;
}
// System.Boolean UnityEngine.XR.ARSubsystems.XRPointCloud::Equals(UnityEngine.XR.ARSubsystems.XRPointCloud)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XRPointCloud_Equals_mFB272AE1F45D6A70C7E5C18D49E2ED7E2375AC0C (XRPointCloud_t08B41A05528E45CE709F8C14CA6C484D360A62F2 * __this, XRPointCloud_t08B41A05528E45CE709F8C14CA6C484D360A62F2 ___other0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
// return
// (m_TrackableId == other.m_TrackableId) &&
// (m_Pose.Equals(other.pose)) &&
// (m_TrackingState == other.m_TrackingState) &&
// (m_NativePtr == other.m_NativePtr);
TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B L_0 = __this->get_m_TrackableId_1();
XRPointCloud_t08B41A05528E45CE709F8C14CA6C484D360A62F2 L_1 = ___other0;
TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B L_2 = L_1.get_m_TrackableId_1();
IL2CPP_RUNTIME_CLASS_INIT(TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B_il2cpp_TypeInfo_var);
bool L_3;
L_3 = TrackableId_op_Equality_m0868EBB6BB9BA72B226D0717352604B3E8EA119B(L_0, L_2, /*hidden argument*/NULL);
if (!L_3)
{
goto IL_0047;
}
}
{
Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A * L_4 = __this->get_address_of_m_Pose_2();
Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A L_5;
L_5 = XRPointCloud_get_pose_m4291F970BA7E4F2DE67BB6666D365FF510B8AC39_inline((XRPointCloud_t08B41A05528E45CE709F8C14CA6C484D360A62F2 *)(&___other0), /*hidden argument*/NULL);
bool L_6;
L_6 = Pose_Equals_mFAE0041090F2032B8FCE63A0F289DD206134BF15((Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A *)L_4, L_5, /*hidden argument*/NULL);
if (!L_6)
{
goto IL_0047;
}
}
{
int32_t L_7 = __this->get_m_TrackingState_3();
XRPointCloud_t08B41A05528E45CE709F8C14CA6C484D360A62F2 L_8 = ___other0;
int32_t L_9 = L_8.get_m_TrackingState_3();
if ((!(((uint32_t)L_7) == ((uint32_t)L_9))))
{
goto IL_0047;
}
}
{
intptr_t L_10 = __this->get_m_NativePtr_4();
XRPointCloud_t08B41A05528E45CE709F8C14CA6C484D360A62F2 L_11 = ___other0;
intptr_t L_12 = L_11.get_m_NativePtr_4();
bool L_13;
L_13 = IntPtr_op_Equality_mD94F3FE43A65684EFF984A7B95E70D2520C0AC73((intptr_t)L_10, (intptr_t)L_12, /*hidden argument*/NULL);
return L_13;
}
IL_0047:
{
return (bool)0;
}
}
IL2CPP_EXTERN_C bool XRPointCloud_Equals_mFB272AE1F45D6A70C7E5C18D49E2ED7E2375AC0C_AdjustorThunk (RuntimeObject * __this, XRPointCloud_t08B41A05528E45CE709F8C14CA6C484D360A62F2 ___other0, const RuntimeMethod* method)
{
XRPointCloud_t08B41A05528E45CE709F8C14CA6C484D360A62F2 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XRPointCloud_t08B41A05528E45CE709F8C14CA6C484D360A62F2 *>(__this + _offset);
bool _returnValue;
_returnValue = XRPointCloud_Equals_mFB272AE1F45D6A70C7E5C18D49E2ED7E2375AC0C(_thisAdjusted, ___other0, method);
return _returnValue;
}
// System.Boolean UnityEngine.XR.ARSubsystems.XRPointCloud::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XRPointCloud_Equals_m7123CA7CBF03D2DDAEAFD63768A78A559B70D34A (XRPointCloud_t08B41A05528E45CE709F8C14CA6C484D360A62F2 * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XRPointCloud_t08B41A05528E45CE709F8C14CA6C484D360A62F2_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
// public override bool Equals(object obj) => (obj is XRPointCloud) && Equals((XRPointCloud)obj);
RuntimeObject * L_0 = ___obj0;
if (!((RuntimeObject *)IsInstSealed((RuntimeObject*)L_0, XRPointCloud_t08B41A05528E45CE709F8C14CA6C484D360A62F2_il2cpp_TypeInfo_var)))
{
goto IL_0015;
}
}
{
RuntimeObject * L_1 = ___obj0;
bool L_2;
L_2 = XRPointCloud_Equals_mFB272AE1F45D6A70C7E5C18D49E2ED7E2375AC0C((XRPointCloud_t08B41A05528E45CE709F8C14CA6C484D360A62F2 *)__this, ((*(XRPointCloud_t08B41A05528E45CE709F8C14CA6C484D360A62F2 *)((XRPointCloud_t08B41A05528E45CE709F8C14CA6C484D360A62F2 *)UnBox(L_1, XRPointCloud_t08B41A05528E45CE709F8C14CA6C484D360A62F2_il2cpp_TypeInfo_var)))), /*hidden argument*/NULL);
return L_2;
}
IL_0015:
{
return (bool)0;
}
}
IL2CPP_EXTERN_C bool XRPointCloud_Equals_m7123CA7CBF03D2DDAEAFD63768A78A559B70D34A_AdjustorThunk (RuntimeObject * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
XRPointCloud_t08B41A05528E45CE709F8C14CA6C484D360A62F2 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XRPointCloud_t08B41A05528E45CE709F8C14CA6C484D360A62F2 *>(__this + _offset);
bool _returnValue;
_returnValue = XRPointCloud_Equals_m7123CA7CBF03D2DDAEAFD63768A78A559B70D34A(_thisAdjusted, ___obj0, method);
return _returnValue;
}
// System.Void UnityEngine.XR.ARSubsystems.XRPointCloud::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRPointCloud__cctor_m2491726ECECF7EBAD790AD20F7AAF000215186DB (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XRPointCloud_t08B41A05528E45CE709F8C14CA6C484D360A62F2_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
XRPointCloud_t08B41A05528E45CE709F8C14CA6C484D360A62F2 V_0;
memset((&V_0), 0, sizeof(V_0));
{
// static readonly XRPointCloud s_Default = new XRPointCloud
// {
// m_TrackableId = TrackableId.invalidId,
// m_Pose = Pose.identity,
// };
il2cpp_codegen_initobj((&V_0), sizeof(XRPointCloud_t08B41A05528E45CE709F8C14CA6C484D360A62F2 ));
IL2CPP_RUNTIME_CLASS_INIT(TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B_il2cpp_TypeInfo_var);
TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B L_0;
L_0 = TrackableId_get_invalidId_m06B698EFFA7748E185299C72B5CEC1AA5B221F85_inline(/*hidden argument*/NULL);
(&V_0)->set_m_TrackableId_1(L_0);
IL2CPP_RUNTIME_CLASS_INIT(Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A_il2cpp_TypeInfo_var);
Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A L_1;
L_1 = Pose_get_identity_m334B16AC3024785914BCC5A2B949750A010878BF(/*hidden argument*/NULL);
(&V_0)->set_m_Pose_2(L_1);
XRPointCloud_t08B41A05528E45CE709F8C14CA6C484D360A62F2 L_2 = V_0;
((XRPointCloud_t08B41A05528E45CE709F8C14CA6C484D360A62F2_StaticFields*)il2cpp_codegen_static_fields_for(XRPointCloud_t08B41A05528E45CE709F8C14CA6C484D360A62F2_il2cpp_TypeInfo_var))->set_s_Default_0(L_2);
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
// Unity.Collections.NativeArray`1<UnityEngine.Vector3> UnityEngine.XR.ARSubsystems.XRPointCloudData::get_positions()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NativeArray_1_t2577BCA09CA248EFB78BD7FDA7F09D5C395DFF52 XRPointCloudData_get_positions_mD0152EB78841C8D8CB83101868169887235C6BD3 (XRPointCloudData_t3AFE7A70A93C061F8C3B3B7AEDE07EDF6A86B177 * __this, const RuntimeMethod* method)
{
{
// get => m_Positions;
NativeArray_1_t2577BCA09CA248EFB78BD7FDA7F09D5C395DFF52 L_0 = __this->get_m_Positions_0();
return L_0;
}
}
IL2CPP_EXTERN_C NativeArray_1_t2577BCA09CA248EFB78BD7FDA7F09D5C395DFF52 XRPointCloudData_get_positions_mD0152EB78841C8D8CB83101868169887235C6BD3_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
XRPointCloudData_t3AFE7A70A93C061F8C3B3B7AEDE07EDF6A86B177 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XRPointCloudData_t3AFE7A70A93C061F8C3B3B7AEDE07EDF6A86B177 *>(__this + _offset);
NativeArray_1_t2577BCA09CA248EFB78BD7FDA7F09D5C395DFF52 _returnValue;
_returnValue = XRPointCloudData_get_positions_mD0152EB78841C8D8CB83101868169887235C6BD3_inline(_thisAdjusted, method);
return _returnValue;
}
// System.Void UnityEngine.XR.ARSubsystems.XRPointCloudData::set_positions(Unity.Collections.NativeArray`1<UnityEngine.Vector3>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRPointCloudData_set_positions_m5B37C4E8FCCE5AF8E16D83D4BAE520F45971CCD7 (XRPointCloudData_t3AFE7A70A93C061F8C3B3B7AEDE07EDF6A86B177 * __this, NativeArray_1_t2577BCA09CA248EFB78BD7FDA7F09D5C395DFF52 ___value0, const RuntimeMethod* method)
{
{
// set => m_Positions = value;
NativeArray_1_t2577BCA09CA248EFB78BD7FDA7F09D5C395DFF52 L_0 = ___value0;
__this->set_m_Positions_0(L_0);
return;
}
}
IL2CPP_EXTERN_C void XRPointCloudData_set_positions_m5B37C4E8FCCE5AF8E16D83D4BAE520F45971CCD7_AdjustorThunk (RuntimeObject * __this, NativeArray_1_t2577BCA09CA248EFB78BD7FDA7F09D5C395DFF52 ___value0, const RuntimeMethod* method)
{
XRPointCloudData_t3AFE7A70A93C061F8C3B3B7AEDE07EDF6A86B177 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XRPointCloudData_t3AFE7A70A93C061F8C3B3B7AEDE07EDF6A86B177 *>(__this + _offset);
XRPointCloudData_set_positions_m5B37C4E8FCCE5AF8E16D83D4BAE520F45971CCD7_inline(_thisAdjusted, ___value0, method);
}
// Unity.Collections.NativeArray`1<System.Single> UnityEngine.XR.ARSubsystems.XRPointCloudData::get_confidenceValues()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NativeArray_1_t5F920DC5A531D604D161A0FAD3479B5BFE0D9232 XRPointCloudData_get_confidenceValues_mA510FDF9A0F8B21FEA6905400EA6F3A709F8DD82 (XRPointCloudData_t3AFE7A70A93C061F8C3B3B7AEDE07EDF6A86B177 * __this, const RuntimeMethod* method)
{
{
// get => m_ConfidenceValues;
NativeArray_1_t5F920DC5A531D604D161A0FAD3479B5BFE0D9232 L_0 = __this->get_m_ConfidenceValues_1();
return L_0;
}
}
IL2CPP_EXTERN_C NativeArray_1_t5F920DC5A531D604D161A0FAD3479B5BFE0D9232 XRPointCloudData_get_confidenceValues_mA510FDF9A0F8B21FEA6905400EA6F3A709F8DD82_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
XRPointCloudData_t3AFE7A70A93C061F8C3B3B7AEDE07EDF6A86B177 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XRPointCloudData_t3AFE7A70A93C061F8C3B3B7AEDE07EDF6A86B177 *>(__this + _offset);
NativeArray_1_t5F920DC5A531D604D161A0FAD3479B5BFE0D9232 _returnValue;
_returnValue = XRPointCloudData_get_confidenceValues_mA510FDF9A0F8B21FEA6905400EA6F3A709F8DD82_inline(_thisAdjusted, method);
return _returnValue;
}
// Unity.Collections.NativeArray`1<System.UInt64> UnityEngine.XR.ARSubsystems.XRPointCloudData::get_identifiers()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NativeArray_1_t9D118727A643E61710D0A4DF5B0C8CD1A918A40B XRPointCloudData_get_identifiers_mF1A688282A3DBD819C5F43EE4A1B44B6548787D3 (XRPointCloudData_t3AFE7A70A93C061F8C3B3B7AEDE07EDF6A86B177 * __this, const RuntimeMethod* method)
{
{
// get => m_Identifiers;
NativeArray_1_t9D118727A643E61710D0A4DF5B0C8CD1A918A40B L_0 = __this->get_m_Identifiers_2();
return L_0;
}
}
IL2CPP_EXTERN_C NativeArray_1_t9D118727A643E61710D0A4DF5B0C8CD1A918A40B XRPointCloudData_get_identifiers_mF1A688282A3DBD819C5F43EE4A1B44B6548787D3_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
XRPointCloudData_t3AFE7A70A93C061F8C3B3B7AEDE07EDF6A86B177 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XRPointCloudData_t3AFE7A70A93C061F8C3B3B7AEDE07EDF6A86B177 *>(__this + _offset);
NativeArray_1_t9D118727A643E61710D0A4DF5B0C8CD1A918A40B _returnValue;
_returnValue = XRPointCloudData_get_identifiers_mF1A688282A3DBD819C5F43EE4A1B44B6548787D3_inline(_thisAdjusted, method);
return _returnValue;
}
// System.Void UnityEngine.XR.ARSubsystems.XRPointCloudData::set_identifiers(Unity.Collections.NativeArray`1<System.UInt64>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRPointCloudData_set_identifiers_mBA475172386D8F500AE9F2D50D4B009FD8D26319 (XRPointCloudData_t3AFE7A70A93C061F8C3B3B7AEDE07EDF6A86B177 * __this, NativeArray_1_t9D118727A643E61710D0A4DF5B0C8CD1A918A40B ___value0, const RuntimeMethod* method)
{
{
// set => m_Identifiers = value;
NativeArray_1_t9D118727A643E61710D0A4DF5B0C8CD1A918A40B L_0 = ___value0;
__this->set_m_Identifiers_2(L_0);
return;
}
}
IL2CPP_EXTERN_C void XRPointCloudData_set_identifiers_mBA475172386D8F500AE9F2D50D4B009FD8D26319_AdjustorThunk (RuntimeObject * __this, NativeArray_1_t9D118727A643E61710D0A4DF5B0C8CD1A918A40B ___value0, const RuntimeMethod* method)
{
XRPointCloudData_t3AFE7A70A93C061F8C3B3B7AEDE07EDF6A86B177 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XRPointCloudData_t3AFE7A70A93C061F8C3B3B7AEDE07EDF6A86B177 *>(__this + _offset);
XRPointCloudData_set_identifiers_mBA475172386D8F500AE9F2D50D4B009FD8D26319_inline(_thisAdjusted, ___value0, method);
}
// System.Void UnityEngine.XR.ARSubsystems.XRPointCloudData::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRPointCloudData_Dispose_m600FFE0CF6B2D3D7B31B7F51406C4818159C5120 (XRPointCloudData_t3AFE7A70A93C061F8C3B3B7AEDE07EDF6A86B177 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NativeArray_1_Dispose_m02DA8137FD41E7E6BB40E763EA2F6535B770C375_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NativeArray_1_Dispose_m867A382096AF527E2B854ADC9ED75ED6BF95D76B_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NativeArray_1_Dispose_mC03B89A2188FC84335036FA76CEB1925D7DC4294_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NativeArray_1_get_IsCreated_m394E202D29B5488CB56139D346E1A64EBBDA2E9C_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NativeArray_1_get_IsCreated_mC0D0556229A19FBA32063A797CAE4BE1A8417E22_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NativeArray_1_get_IsCreated_mCD60B11F9FB036F65310E83275A1632E57AAC29C_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
// if (m_Positions.IsCreated)
NativeArray_1_t2577BCA09CA248EFB78BD7FDA7F09D5C395DFF52 * L_0 = __this->get_address_of_m_Positions_0();
bool L_1;
L_1 = NativeArray_1_get_IsCreated_mCD60B11F9FB036F65310E83275A1632E57AAC29C((NativeArray_1_t2577BCA09CA248EFB78BD7FDA7F09D5C395DFF52 *)L_0, /*hidden argument*/NativeArray_1_get_IsCreated_mCD60B11F9FB036F65310E83275A1632E57AAC29C_RuntimeMethod_var);
if (!L_1)
{
goto IL_0018;
}
}
{
// m_Positions.Dispose();
NativeArray_1_t2577BCA09CA248EFB78BD7FDA7F09D5C395DFF52 * L_2 = __this->get_address_of_m_Positions_0();
NativeArray_1_Dispose_m867A382096AF527E2B854ADC9ED75ED6BF95D76B((NativeArray_1_t2577BCA09CA248EFB78BD7FDA7F09D5C395DFF52 *)L_2, /*hidden argument*/NativeArray_1_Dispose_m867A382096AF527E2B854ADC9ED75ED6BF95D76B_RuntimeMethod_var);
}
IL_0018:
{
// if (m_ConfidenceValues.IsCreated)
NativeArray_1_t5F920DC5A531D604D161A0FAD3479B5BFE0D9232 * L_3 = __this->get_address_of_m_ConfidenceValues_1();
bool L_4;
L_4 = NativeArray_1_get_IsCreated_m394E202D29B5488CB56139D346E1A64EBBDA2E9C((NativeArray_1_t5F920DC5A531D604D161A0FAD3479B5BFE0D9232 *)L_3, /*hidden argument*/NativeArray_1_get_IsCreated_m394E202D29B5488CB56139D346E1A64EBBDA2E9C_RuntimeMethod_var);
if (!L_4)
{
goto IL_0030;
}
}
{
// m_ConfidenceValues.Dispose();
NativeArray_1_t5F920DC5A531D604D161A0FAD3479B5BFE0D9232 * L_5 = __this->get_address_of_m_ConfidenceValues_1();
NativeArray_1_Dispose_mC03B89A2188FC84335036FA76CEB1925D7DC4294((NativeArray_1_t5F920DC5A531D604D161A0FAD3479B5BFE0D9232 *)L_5, /*hidden argument*/NativeArray_1_Dispose_mC03B89A2188FC84335036FA76CEB1925D7DC4294_RuntimeMethod_var);
}
IL_0030:
{
// if (m_Identifiers.IsCreated)
NativeArray_1_t9D118727A643E61710D0A4DF5B0C8CD1A918A40B * L_6 = __this->get_address_of_m_Identifiers_2();
bool L_7;
L_7 = NativeArray_1_get_IsCreated_mC0D0556229A19FBA32063A797CAE4BE1A8417E22((NativeArray_1_t9D118727A643E61710D0A4DF5B0C8CD1A918A40B *)L_6, /*hidden argument*/NativeArray_1_get_IsCreated_mC0D0556229A19FBA32063A797CAE4BE1A8417E22_RuntimeMethod_var);
if (!L_7)
{
goto IL_0048;
}
}
{
// m_Identifiers.Dispose();
NativeArray_1_t9D118727A643E61710D0A4DF5B0C8CD1A918A40B * L_8 = __this->get_address_of_m_Identifiers_2();
NativeArray_1_Dispose_m02DA8137FD41E7E6BB40E763EA2F6535B770C375((NativeArray_1_t9D118727A643E61710D0A4DF5B0C8CD1A918A40B *)L_8, /*hidden argument*/NativeArray_1_Dispose_m02DA8137FD41E7E6BB40E763EA2F6535B770C375_RuntimeMethod_var);
}
IL_0048:
{
// }
return;
}
}
IL2CPP_EXTERN_C void XRPointCloudData_Dispose_m600FFE0CF6B2D3D7B31B7F51406C4818159C5120_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
XRPointCloudData_t3AFE7A70A93C061F8C3B3B7AEDE07EDF6A86B177 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XRPointCloudData_t3AFE7A70A93C061F8C3B3B7AEDE07EDF6A86B177 *>(__this + _offset);
XRPointCloudData_Dispose_m600FFE0CF6B2D3D7B31B7F51406C4818159C5120(_thisAdjusted, method);
}
// System.Int32 UnityEngine.XR.ARSubsystems.XRPointCloudData::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XRPointCloudData_GetHashCode_mC10886AFDA538D306F9E455166BB6D2F81071912 (XRPointCloudData_t3AFE7A70A93C061F8C3B3B7AEDE07EDF6A86B177 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NativeArray_1_GetHashCode_m84FE16CA6E708E33854BE0C102597EE6D16DED19_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NativeArray_1_GetHashCode_mC443459008949D4F14829D441CAE3C82A4D3F86B_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NativeArray_1_GetHashCode_mE3A484ADA1047A341C388F0261DBA091C2F4F9B9_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
// var hash = m_Positions.GetHashCode();
NativeArray_1_t2577BCA09CA248EFB78BD7FDA7F09D5C395DFF52 * L_0 = __this->get_address_of_m_Positions_0();
int32_t L_1;
L_1 = NativeArray_1_GetHashCode_mE3A484ADA1047A341C388F0261DBA091C2F4F9B9((NativeArray_1_t2577BCA09CA248EFB78BD7FDA7F09D5C395DFF52 *)L_0, /*hidden argument*/NativeArray_1_GetHashCode_mE3A484ADA1047A341C388F0261DBA091C2F4F9B9_RuntimeMethod_var);
// hash = hash * 486187739 + m_ConfidenceValues.GetHashCode();
NativeArray_1_t5F920DC5A531D604D161A0FAD3479B5BFE0D9232 * L_2 = __this->get_address_of_m_ConfidenceValues_1();
int32_t L_3;
L_3 = NativeArray_1_GetHashCode_mC443459008949D4F14829D441CAE3C82A4D3F86B((NativeArray_1_t5F920DC5A531D604D161A0FAD3479B5BFE0D9232 *)L_2, /*hidden argument*/NativeArray_1_GetHashCode_mC443459008949D4F14829D441CAE3C82A4D3F86B_RuntimeMethod_var);
// hash = hash * 486187739 + m_Identifiers.GetHashCode();
NativeArray_1_t9D118727A643E61710D0A4DF5B0C8CD1A918A40B * L_4 = __this->get_address_of_m_Identifiers_2();
int32_t L_5;
L_5 = NativeArray_1_GetHashCode_m84FE16CA6E708E33854BE0C102597EE6D16DED19((NativeArray_1_t9D118727A643E61710D0A4DF5B0C8CD1A918A40B *)L_4, /*hidden argument*/NativeArray_1_GetHashCode_m84FE16CA6E708E33854BE0C102597EE6D16DED19_RuntimeMethod_var);
// return hash;
return ((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)L_1, (int32_t)((int32_t)486187739))), (int32_t)L_3)), (int32_t)((int32_t)486187739))), (int32_t)L_5));
}
}
IL2CPP_EXTERN_C int32_t XRPointCloudData_GetHashCode_mC10886AFDA538D306F9E455166BB6D2F81071912_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
XRPointCloudData_t3AFE7A70A93C061F8C3B3B7AEDE07EDF6A86B177 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XRPointCloudData_t3AFE7A70A93C061F8C3B3B7AEDE07EDF6A86B177 *>(__this + _offset);
int32_t _returnValue;
_returnValue = XRPointCloudData_GetHashCode_mC10886AFDA538D306F9E455166BB6D2F81071912(_thisAdjusted, method);
return _returnValue;
}
// System.Boolean UnityEngine.XR.ARSubsystems.XRPointCloudData::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XRPointCloudData_Equals_m5553859ECF1F500F0153472EA6D6E547D251936D (XRPointCloudData_t3AFE7A70A93C061F8C3B3B7AEDE07EDF6A86B177 * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XRPointCloudData_t3AFE7A70A93C061F8C3B3B7AEDE07EDF6A86B177_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
// public override bool Equals(object obj) => obj is XRPointCloudData && Equals((XRPointCloudData)obj);
RuntimeObject * L_0 = ___obj0;
if (!((RuntimeObject *)IsInstSealed((RuntimeObject*)L_0, XRPointCloudData_t3AFE7A70A93C061F8C3B3B7AEDE07EDF6A86B177_il2cpp_TypeInfo_var)))
{
goto IL_0015;
}
}
{
RuntimeObject * L_1 = ___obj0;
bool L_2;
L_2 = XRPointCloudData_Equals_m6655FF22F1E7FE07B0A71ACE455A742E8DF7DAEA((XRPointCloudData_t3AFE7A70A93C061F8C3B3B7AEDE07EDF6A86B177 *)__this, ((*(XRPointCloudData_t3AFE7A70A93C061F8C3B3B7AEDE07EDF6A86B177 *)((XRPointCloudData_t3AFE7A70A93C061F8C3B3B7AEDE07EDF6A86B177 *)UnBox(L_1, XRPointCloudData_t3AFE7A70A93C061F8C3B3B7AEDE07EDF6A86B177_il2cpp_TypeInfo_var)))), /*hidden argument*/NULL);
return L_2;
}
IL_0015:
{
return (bool)0;
}
}
IL2CPP_EXTERN_C bool XRPointCloudData_Equals_m5553859ECF1F500F0153472EA6D6E547D251936D_AdjustorThunk (RuntimeObject * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
XRPointCloudData_t3AFE7A70A93C061F8C3B3B7AEDE07EDF6A86B177 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XRPointCloudData_t3AFE7A70A93C061F8C3B3B7AEDE07EDF6A86B177 *>(__this + _offset);
bool _returnValue;
_returnValue = XRPointCloudData_Equals_m5553859ECF1F500F0153472EA6D6E547D251936D(_thisAdjusted, ___obj0, method);
return _returnValue;
}
// System.String UnityEngine.XR.ARSubsystems.XRPointCloudData::ToString()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XRPointCloudData_ToString_m9712C0206584CBD90DF2A44CE36DDC78141E607A (XRPointCloudData_t3AFE7A70A93C061F8C3B3B7AEDE07EDF6A86B177 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral607249559B663C70F82F5656FA321C4A466736D4);
s_Il2CppMethodInitialized = true;
}
{
// return string.Format("XRPointCloudData: {0} positions {1} confidence values {2} identifiers",
// m_Positions.Length, m_ConfidenceValues.Length, m_Identifiers.Length);
NativeArray_1_t2577BCA09CA248EFB78BD7FDA7F09D5C395DFF52 * L_0 = __this->get_address_of_m_Positions_0();
int32_t L_1;
L_1 = IL2CPP_NATIVEARRAY_GET_LENGTH(((NativeArray_1_t2577BCA09CA248EFB78BD7FDA7F09D5C395DFF52 *)L_0)->___m_Length_1);
int32_t L_2 = L_1;
RuntimeObject * L_3 = Box(Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var, &L_2);
NativeArray_1_t5F920DC5A531D604D161A0FAD3479B5BFE0D9232 * L_4 = __this->get_address_of_m_ConfidenceValues_1();
int32_t L_5;
L_5 = IL2CPP_NATIVEARRAY_GET_LENGTH(((NativeArray_1_t5F920DC5A531D604D161A0FAD3479B5BFE0D9232 *)L_4)->___m_Length_1);
int32_t L_6 = L_5;
RuntimeObject * L_7 = Box(Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var, &L_6);
NativeArray_1_t9D118727A643E61710D0A4DF5B0C8CD1A918A40B * L_8 = __this->get_address_of_m_Identifiers_2();
int32_t L_9;
L_9 = IL2CPP_NATIVEARRAY_GET_LENGTH(((NativeArray_1_t9D118727A643E61710D0A4DF5B0C8CD1A918A40B *)L_8)->___m_Length_1);
int32_t L_10 = L_9;
RuntimeObject * L_11 = Box(Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var, &L_10);
String_t* L_12;
L_12 = String_Format_m039737CCD992C5BFC8D16DFD681F5E8786E87FA6(_stringLiteral607249559B663C70F82F5656FA321C4A466736D4, L_3, L_7, L_11, /*hidden argument*/NULL);
return L_12;
}
}
IL2CPP_EXTERN_C String_t* XRPointCloudData_ToString_m9712C0206584CBD90DF2A44CE36DDC78141E607A_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
XRPointCloudData_t3AFE7A70A93C061F8C3B3B7AEDE07EDF6A86B177 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XRPointCloudData_t3AFE7A70A93C061F8C3B3B7AEDE07EDF6A86B177 *>(__this + _offset);
String_t* _returnValue;
_returnValue = XRPointCloudData_ToString_m9712C0206584CBD90DF2A44CE36DDC78141E607A(_thisAdjusted, method);
return _returnValue;
}
// System.Boolean UnityEngine.XR.ARSubsystems.XRPointCloudData::Equals(UnityEngine.XR.ARSubsystems.XRPointCloudData)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XRPointCloudData_Equals_m6655FF22F1E7FE07B0A71ACE455A742E8DF7DAEA (XRPointCloudData_t3AFE7A70A93C061F8C3B3B7AEDE07EDF6A86B177 * __this, XRPointCloudData_t3AFE7A70A93C061F8C3B3B7AEDE07EDF6A86B177 ___other0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NativeArray_1_Equals_m0A873528008D16BDD7E45156AEBC2DF063CB3995_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NativeArray_1_Equals_m71BD7AE6B5085F75CED3D638275DCFF43B231A5B_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NativeArray_1_Equals_m982D9159B14354AF45D0234A0ACF47BF81D62A99_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
// return
// m_Positions.Equals(other.m_Positions) &&
// m_ConfidenceValues.Equals(other.m_ConfidenceValues) &&
// m_Identifiers.Equals(other.m_Identifiers);
NativeArray_1_t2577BCA09CA248EFB78BD7FDA7F09D5C395DFF52 * L_0 = __this->get_address_of_m_Positions_0();
XRPointCloudData_t3AFE7A70A93C061F8C3B3B7AEDE07EDF6A86B177 L_1 = ___other0;
NativeArray_1_t2577BCA09CA248EFB78BD7FDA7F09D5C395DFF52 L_2 = L_1.get_m_Positions_0();
bool L_3;
L_3 = NativeArray_1_Equals_m0A873528008D16BDD7E45156AEBC2DF063CB3995((NativeArray_1_t2577BCA09CA248EFB78BD7FDA7F09D5C395DFF52 *)L_0, L_2, /*hidden argument*/NativeArray_1_Equals_m0A873528008D16BDD7E45156AEBC2DF063CB3995_RuntimeMethod_var);
if (!L_3)
{
goto IL_0038;
}
}
{
NativeArray_1_t5F920DC5A531D604D161A0FAD3479B5BFE0D9232 * L_4 = __this->get_address_of_m_ConfidenceValues_1();
XRPointCloudData_t3AFE7A70A93C061F8C3B3B7AEDE07EDF6A86B177 L_5 = ___other0;
NativeArray_1_t5F920DC5A531D604D161A0FAD3479B5BFE0D9232 L_6 = L_5.get_m_ConfidenceValues_1();
bool L_7;
L_7 = NativeArray_1_Equals_m71BD7AE6B5085F75CED3D638275DCFF43B231A5B((NativeArray_1_t5F920DC5A531D604D161A0FAD3479B5BFE0D9232 *)L_4, L_6, /*hidden argument*/NativeArray_1_Equals_m71BD7AE6B5085F75CED3D638275DCFF43B231A5B_RuntimeMethod_var);
if (!L_7)
{
goto IL_0038;
}
}
{
NativeArray_1_t9D118727A643E61710D0A4DF5B0C8CD1A918A40B * L_8 = __this->get_address_of_m_Identifiers_2();
XRPointCloudData_t3AFE7A70A93C061F8C3B3B7AEDE07EDF6A86B177 L_9 = ___other0;
NativeArray_1_t9D118727A643E61710D0A4DF5B0C8CD1A918A40B L_10 = L_9.get_m_Identifiers_2();
bool L_11;
L_11 = NativeArray_1_Equals_m982D9159B14354AF45D0234A0ACF47BF81D62A99((NativeArray_1_t9D118727A643E61710D0A4DF5B0C8CD1A918A40B *)L_8, L_10, /*hidden argument*/NativeArray_1_Equals_m982D9159B14354AF45D0234A0ACF47BF81D62A99_RuntimeMethod_var);
return L_11;
}
IL_0038:
{
return (bool)0;
}
}
IL2CPP_EXTERN_C bool XRPointCloudData_Equals_m6655FF22F1E7FE07B0A71ACE455A742E8DF7DAEA_AdjustorThunk (RuntimeObject * __this, XRPointCloudData_t3AFE7A70A93C061F8C3B3B7AEDE07EDF6A86B177 ___other0, const RuntimeMethod* method)
{
XRPointCloudData_t3AFE7A70A93C061F8C3B3B7AEDE07EDF6A86B177 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XRPointCloudData_t3AFE7A70A93C061F8C3B3B7AEDE07EDF6A86B177 *>(__this + _offset);
bool _returnValue;
_returnValue = XRPointCloudData_Equals_m6655FF22F1E7FE07B0A71ACE455A742E8DF7DAEA(_thisAdjusted, ___other0, 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
// UnityEngine.XR.ARSubsystems.XRRaycast UnityEngine.XR.ARSubsystems.XRRaycast::get_defaultValue()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XRRaycast_tA18F9107EFF1D692E70EF15233BB6134A5F66C55 XRRaycast_get_defaultValue_mC4E3CDC7E9F4C17F3708B82DCDA95FFD395C2BE0 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XRRaycast_tA18F9107EFF1D692E70EF15233BB6134A5F66C55_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
// public static XRRaycast defaultValue => s_Default;
IL2CPP_RUNTIME_CLASS_INIT(XRRaycast_tA18F9107EFF1D692E70EF15233BB6134A5F66C55_il2cpp_TypeInfo_var);
XRRaycast_tA18F9107EFF1D692E70EF15233BB6134A5F66C55 L_0 = ((XRRaycast_tA18F9107EFF1D692E70EF15233BB6134A5F66C55_StaticFields*)il2cpp_codegen_static_fields_for(XRRaycast_tA18F9107EFF1D692E70EF15233BB6134A5F66C55_il2cpp_TypeInfo_var))->get_s_Default_0();
return L_0;
}
}
// UnityEngine.XR.ARSubsystems.TrackableId UnityEngine.XR.ARSubsystems.XRRaycast::get_trackableId()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B XRRaycast_get_trackableId_m58733DD621FACDF9F32633AA0247FDDE4B6F4EBE (XRRaycast_tA18F9107EFF1D692E70EF15233BB6134A5F66C55 * __this, const RuntimeMethod* method)
{
{
// public TrackableId trackableId => m_TrackableId;
TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B L_0 = __this->get_m_TrackableId_1();
return L_0;
}
}
IL2CPP_EXTERN_C TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B XRRaycast_get_trackableId_m58733DD621FACDF9F32633AA0247FDDE4B6F4EBE_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
XRRaycast_tA18F9107EFF1D692E70EF15233BB6134A5F66C55 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XRRaycast_tA18F9107EFF1D692E70EF15233BB6134A5F66C55 *>(__this + _offset);
TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B _returnValue;
_returnValue = XRRaycast_get_trackableId_m58733DD621FACDF9F32633AA0247FDDE4B6F4EBE_inline(_thisAdjusted, method);
return _returnValue;
}
// UnityEngine.Pose UnityEngine.XR.ARSubsystems.XRRaycast::get_pose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A XRRaycast_get_pose_m62D623D6E37AE82B0E223804F034E604037E24E1 (XRRaycast_tA18F9107EFF1D692E70EF15233BB6134A5F66C55 * __this, const RuntimeMethod* method)
{
{
// public Pose pose => m_Pose;
Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A L_0 = __this->get_m_Pose_2();
return L_0;
}
}
IL2CPP_EXTERN_C Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A XRRaycast_get_pose_m62D623D6E37AE82B0E223804F034E604037E24E1_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
XRRaycast_tA18F9107EFF1D692E70EF15233BB6134A5F66C55 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XRRaycast_tA18F9107EFF1D692E70EF15233BB6134A5F66C55 *>(__this + _offset);
Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A _returnValue;
_returnValue = XRRaycast_get_pose_m62D623D6E37AE82B0E223804F034E604037E24E1_inline(_thisAdjusted, method);
return _returnValue;
}
// UnityEngine.XR.ARSubsystems.TrackingState UnityEngine.XR.ARSubsystems.XRRaycast::get_trackingState()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XRRaycast_get_trackingState_m8A926660A7D03F72E558198E760AE01936FB8DF0 (XRRaycast_tA18F9107EFF1D692E70EF15233BB6134A5F66C55 * __this, const RuntimeMethod* method)
{
{
// public TrackingState trackingState => m_TrackingState;
int32_t L_0 = __this->get_m_TrackingState_3();
return L_0;
}
}
IL2CPP_EXTERN_C int32_t XRRaycast_get_trackingState_m8A926660A7D03F72E558198E760AE01936FB8DF0_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
XRRaycast_tA18F9107EFF1D692E70EF15233BB6134A5F66C55 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XRRaycast_tA18F9107EFF1D692E70EF15233BB6134A5F66C55 *>(__this + _offset);
int32_t _returnValue;
_returnValue = XRRaycast_get_trackingState_m8A926660A7D03F72E558198E760AE01936FB8DF0_inline(_thisAdjusted, method);
return _returnValue;
}
// System.IntPtr UnityEngine.XR.ARSubsystems.XRRaycast::get_nativePtr()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR intptr_t XRRaycast_get_nativePtr_m079CE750F279F664A8D524ACA2D070056143389D (XRRaycast_tA18F9107EFF1D692E70EF15233BB6134A5F66C55 * __this, const RuntimeMethod* method)
{
{
// public IntPtr nativePtr => m_NativePtr;
intptr_t L_0 = __this->get_m_NativePtr_4();
return (intptr_t)L_0;
}
}
IL2CPP_EXTERN_C intptr_t XRRaycast_get_nativePtr_m079CE750F279F664A8D524ACA2D070056143389D_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
XRRaycast_tA18F9107EFF1D692E70EF15233BB6134A5F66C55 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XRRaycast_tA18F9107EFF1D692E70EF15233BB6134A5F66C55 *>(__this + _offset);
intptr_t _returnValue;
_returnValue = XRRaycast_get_nativePtr_m079CE750F279F664A8D524ACA2D070056143389D_inline(_thisAdjusted, method);
return _returnValue;
}
// System.Single UnityEngine.XR.ARSubsystems.XRRaycast::get_distance()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float XRRaycast_get_distance_m4D3B928473544B72D50CF70503B18DBC75951263 (XRRaycast_tA18F9107EFF1D692E70EF15233BB6134A5F66C55 * __this, const RuntimeMethod* method)
{
{
// public float distance => m_Distance;
float L_0 = __this->get_m_Distance_5();
return L_0;
}
}
IL2CPP_EXTERN_C float XRRaycast_get_distance_m4D3B928473544B72D50CF70503B18DBC75951263_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
XRRaycast_tA18F9107EFF1D692E70EF15233BB6134A5F66C55 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XRRaycast_tA18F9107EFF1D692E70EF15233BB6134A5F66C55 *>(__this + _offset);
float _returnValue;
_returnValue = XRRaycast_get_distance_m4D3B928473544B72D50CF70503B18DBC75951263_inline(_thisAdjusted, method);
return _returnValue;
}
// UnityEngine.XR.ARSubsystems.TrackableId UnityEngine.XR.ARSubsystems.XRRaycast::get_hitTrackableId()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B XRRaycast_get_hitTrackableId_mA4EE855CDEE8AC2D109FDE58A7EF4AED262CBFFE (XRRaycast_tA18F9107EFF1D692E70EF15233BB6134A5F66C55 * __this, const RuntimeMethod* method)
{
{
// public TrackableId hitTrackableId => m_HitTrackableId;
TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B L_0 = __this->get_m_HitTrackableId_6();
return L_0;
}
}
IL2CPP_EXTERN_C TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B XRRaycast_get_hitTrackableId_mA4EE855CDEE8AC2D109FDE58A7EF4AED262CBFFE_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
XRRaycast_tA18F9107EFF1D692E70EF15233BB6134A5F66C55 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XRRaycast_tA18F9107EFF1D692E70EF15233BB6134A5F66C55 *>(__this + _offset);
TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B _returnValue;
_returnValue = XRRaycast_get_hitTrackableId_mA4EE855CDEE8AC2D109FDE58A7EF4AED262CBFFE_inline(_thisAdjusted, method);
return _returnValue;
}
// System.Void UnityEngine.XR.ARSubsystems.XRRaycast::.ctor(UnityEngine.XR.ARSubsystems.TrackableId,UnityEngine.Pose,UnityEngine.XR.ARSubsystems.TrackingState,System.IntPtr,System.Single,UnityEngine.XR.ARSubsystems.TrackableId)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRRaycast__ctor_mCB8C71860ADB4EEEAECBB9D2FD6373FA7EE13A48 (XRRaycast_tA18F9107EFF1D692E70EF15233BB6134A5F66C55 * __this, TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B ___trackableId0, Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A ___pose1, int32_t ___trackingState2, intptr_t ___nativePtr3, float ___distance4, TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B ___hitTrackableId5, const RuntimeMethod* method)
{
{
// m_TrackableId = trackableId;
TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B L_0 = ___trackableId0;
__this->set_m_TrackableId_1(L_0);
// m_Pose = pose;
Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A L_1 = ___pose1;
__this->set_m_Pose_2(L_1);
// m_TrackingState = trackingState;
int32_t L_2 = ___trackingState2;
__this->set_m_TrackingState_3(L_2);
// m_NativePtr = nativePtr;
intptr_t L_3 = ___nativePtr3;
__this->set_m_NativePtr_4((intptr_t)L_3);
// m_Distance = distance;
float L_4 = ___distance4;
__this->set_m_Distance_5(L_4);
// m_HitTrackableId = hitTrackableId;
TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B L_5 = ___hitTrackableId5;
__this->set_m_HitTrackableId_6(L_5);
// }
return;
}
}
IL2CPP_EXTERN_C void XRRaycast__ctor_mCB8C71860ADB4EEEAECBB9D2FD6373FA7EE13A48_AdjustorThunk (RuntimeObject * __this, TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B ___trackableId0, Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A ___pose1, int32_t ___trackingState2, intptr_t ___nativePtr3, float ___distance4, TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B ___hitTrackableId5, const RuntimeMethod* method)
{
XRRaycast_tA18F9107EFF1D692E70EF15233BB6134A5F66C55 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XRRaycast_tA18F9107EFF1D692E70EF15233BB6134A5F66C55 *>(__this + _offset);
XRRaycast__ctor_mCB8C71860ADB4EEEAECBB9D2FD6373FA7EE13A48(_thisAdjusted, ___trackableId0, ___pose1, ___trackingState2, ___nativePtr3, ___distance4, ___hitTrackableId5, method);
}
// System.Int32 UnityEngine.XR.ARSubsystems.XRRaycast::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XRRaycast_GetHashCode_m68040849E5282B2DAEE10DEC5F13B22E69A9EA36 (XRRaycast_tA18F9107EFF1D692E70EF15233BB6134A5F66C55 * __this, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
// var hash = m_TrackableId.GetHashCode();
TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B * L_0 = __this->get_address_of_m_TrackableId_1();
int32_t L_1;
L_1 = TrackableId_GetHashCode_mFD297FC6DB40FB5B28C6E9B7A2CF2785D75C4E86((TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B *)L_0, /*hidden argument*/NULL);
// hash = hash * 486187739 + m_Pose.GetHashCode();
Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A * L_2 = __this->get_address_of_m_Pose_2();
int32_t L_3;
L_3 = Pose_GetHashCode_mE1DD7FBCCB1C979B252F0B117276BA11CF4D2367((Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A *)L_2, /*hidden argument*/NULL);
// hash = hash * 486187739 + ((int)m_TrackingState).GetHashCode();
int32_t L_4 = __this->get_m_TrackingState_3();
V_0 = L_4;
int32_t L_5;
L_5 = Int32_GetHashCode_mEDD3F492A5F7CF021125AE3F38E2B8F8743FC667((int32_t*)(&V_0), /*hidden argument*/NULL);
// hash = hash * 486187739 + m_NativePtr.GetHashCode();
intptr_t* L_6 = __this->get_address_of_m_NativePtr_4();
int32_t L_7;
L_7 = IntPtr_GetHashCode_m55E65FB52EFE7C0EBC3C28E66A5D7542F3B1D35D((intptr_t*)L_6, /*hidden argument*/NULL);
// hash = hash * 486187739 + m_Distance.GetHashCode();
float* L_8 = __this->get_address_of_m_Distance_5();
int32_t L_9;
L_9 = Single_GetHashCode_m7662E1812DDDBC85D464398740CFFC3588DFB2C9((float*)L_8, /*hidden argument*/NULL);
// hash = hash * 486187739 + m_HitTrackableId.GetHashCode();
TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B * L_10 = __this->get_address_of_m_HitTrackableId_6();
int32_t L_11;
L_11 = TrackableId_GetHashCode_mFD297FC6DB40FB5B28C6E9B7A2CF2785D75C4E86((TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B *)L_10, /*hidden argument*/NULL);
// return hash;
return ((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)L_1, (int32_t)((int32_t)486187739))), (int32_t)L_3)), (int32_t)((int32_t)486187739))), (int32_t)L_5)), (int32_t)((int32_t)486187739))), (int32_t)L_7)), (int32_t)((int32_t)486187739))), (int32_t)L_9)), (int32_t)((int32_t)486187739))), (int32_t)L_11));
}
}
IL2CPP_EXTERN_C int32_t XRRaycast_GetHashCode_m68040849E5282B2DAEE10DEC5F13B22E69A9EA36_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
XRRaycast_tA18F9107EFF1D692E70EF15233BB6134A5F66C55 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XRRaycast_tA18F9107EFF1D692E70EF15233BB6134A5F66C55 *>(__this + _offset);
int32_t _returnValue;
_returnValue = XRRaycast_GetHashCode_m68040849E5282B2DAEE10DEC5F13B22E69A9EA36(_thisAdjusted, method);
return _returnValue;
}
// System.Boolean UnityEngine.XR.ARSubsystems.XRRaycast::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XRRaycast_Equals_m808F58AFF56D3598C410DBB759CD48CBEBFBE553 (XRRaycast_tA18F9107EFF1D692E70EF15233BB6134A5F66C55 * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XRRaycast_tA18F9107EFF1D692E70EF15233BB6134A5F66C55_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
// public override bool Equals(object obj) => (obj is XRRaycast) && Equals((XRRaycast)obj);
RuntimeObject * L_0 = ___obj0;
if (!((RuntimeObject *)IsInstSealed((RuntimeObject*)L_0, XRRaycast_tA18F9107EFF1D692E70EF15233BB6134A5F66C55_il2cpp_TypeInfo_var)))
{
goto IL_0015;
}
}
{
RuntimeObject * L_1 = ___obj0;
bool L_2;
L_2 = XRRaycast_Equals_m155EE0BDA8E10977C499A22B2EE32D252A960535((XRRaycast_tA18F9107EFF1D692E70EF15233BB6134A5F66C55 *)__this, ((*(XRRaycast_tA18F9107EFF1D692E70EF15233BB6134A5F66C55 *)((XRRaycast_tA18F9107EFF1D692E70EF15233BB6134A5F66C55 *)UnBox(L_1, XRRaycast_tA18F9107EFF1D692E70EF15233BB6134A5F66C55_il2cpp_TypeInfo_var)))), /*hidden argument*/NULL);
return L_2;
}
IL_0015:
{
return (bool)0;
}
}
IL2CPP_EXTERN_C bool XRRaycast_Equals_m808F58AFF56D3598C410DBB759CD48CBEBFBE553_AdjustorThunk (RuntimeObject * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
XRRaycast_tA18F9107EFF1D692E70EF15233BB6134A5F66C55 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XRRaycast_tA18F9107EFF1D692E70EF15233BB6134A5F66C55 *>(__this + _offset);
bool _returnValue;
_returnValue = XRRaycast_Equals_m808F58AFF56D3598C410DBB759CD48CBEBFBE553(_thisAdjusted, ___obj0, method);
return _returnValue;
}
// System.Boolean UnityEngine.XR.ARSubsystems.XRRaycast::Equals(UnityEngine.XR.ARSubsystems.XRRaycast)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XRRaycast_Equals_m155EE0BDA8E10977C499A22B2EE32D252A960535 (XRRaycast_tA18F9107EFF1D692E70EF15233BB6134A5F66C55 * __this, XRRaycast_tA18F9107EFF1D692E70EF15233BB6134A5F66C55 ___other0, const RuntimeMethod* method)
{
{
// m_TrackableId.Equals(other.m_TrackableId) &&
// m_Pose.Equals(other.m_Pose) &&
// (m_TrackingState == other.m_TrackingState) &&
// (m_NativePtr == other.m_NativePtr) &&
// m_HitTrackableId.Equals(other.m_HitTrackableId) &&
// m_Distance.Equals(other.m_Distance);
TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B * L_0 = __this->get_address_of_m_TrackableId_1();
XRRaycast_tA18F9107EFF1D692E70EF15233BB6134A5F66C55 L_1 = ___other0;
TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B L_2 = L_1.get_m_TrackableId_1();
bool L_3;
L_3 = TrackableId_Equals_m1DF35616359175E3D66DE18250E8CDA1E6462B06((TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B *)L_0, L_2, /*hidden argument*/NULL);
if (!L_3)
{
goto IL_006c;
}
}
{
Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A * L_4 = __this->get_address_of_m_Pose_2();
XRRaycast_tA18F9107EFF1D692E70EF15233BB6134A5F66C55 L_5 = ___other0;
Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A L_6 = L_5.get_m_Pose_2();
bool L_7;
L_7 = Pose_Equals_mFAE0041090F2032B8FCE63A0F289DD206134BF15((Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A *)L_4, L_6, /*hidden argument*/NULL);
if (!L_7)
{
goto IL_006c;
}
}
{
int32_t L_8 = __this->get_m_TrackingState_3();
XRRaycast_tA18F9107EFF1D692E70EF15233BB6134A5F66C55 L_9 = ___other0;
int32_t L_10 = L_9.get_m_TrackingState_3();
if ((!(((uint32_t)L_8) == ((uint32_t)L_10))))
{
goto IL_006c;
}
}
{
intptr_t L_11 = __this->get_m_NativePtr_4();
XRRaycast_tA18F9107EFF1D692E70EF15233BB6134A5F66C55 L_12 = ___other0;
intptr_t L_13 = L_12.get_m_NativePtr_4();
bool L_14;
L_14 = IntPtr_op_Equality_mD94F3FE43A65684EFF984A7B95E70D2520C0AC73((intptr_t)L_11, (intptr_t)L_13, /*hidden argument*/NULL);
if (!L_14)
{
goto IL_006c;
}
}
{
TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B * L_15 = __this->get_address_of_m_HitTrackableId_6();
XRRaycast_tA18F9107EFF1D692E70EF15233BB6134A5F66C55 L_16 = ___other0;
TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B L_17 = L_16.get_m_HitTrackableId_6();
bool L_18;
L_18 = TrackableId_Equals_m1DF35616359175E3D66DE18250E8CDA1E6462B06((TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B *)L_15, L_17, /*hidden argument*/NULL);
if (!L_18)
{
goto IL_006c;
}
}
{
float* L_19 = __this->get_address_of_m_Distance_5();
XRRaycast_tA18F9107EFF1D692E70EF15233BB6134A5F66C55 L_20 = ___other0;
float L_21 = L_20.get_m_Distance_5();
bool L_22;
L_22 = Single_Equals_m298A3A849F30B9900813BE6DD98AE6810CDBE914((float*)L_19, L_21, /*hidden argument*/NULL);
return L_22;
}
IL_006c:
{
return (bool)0;
}
}
IL2CPP_EXTERN_C bool XRRaycast_Equals_m155EE0BDA8E10977C499A22B2EE32D252A960535_AdjustorThunk (RuntimeObject * __this, XRRaycast_tA18F9107EFF1D692E70EF15233BB6134A5F66C55 ___other0, const RuntimeMethod* method)
{
XRRaycast_tA18F9107EFF1D692E70EF15233BB6134A5F66C55 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XRRaycast_tA18F9107EFF1D692E70EF15233BB6134A5F66C55 *>(__this + _offset);
bool _returnValue;
_returnValue = XRRaycast_Equals_m155EE0BDA8E10977C499A22B2EE32D252A960535(_thisAdjusted, ___other0, method);
return _returnValue;
}
// System.Void UnityEngine.XR.ARSubsystems.XRRaycast::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRRaycast__cctor_mF4E28BD54EAB27ED12CEBC7643C8A599E7D93562 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IntPtr_t_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XRRaycast_tA18F9107EFF1D692E70EF15233BB6134A5F66C55_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
// static readonly XRRaycast s_Default = new XRRaycast(
// TrackableId.invalidId, Pose.identity, TrackingState.None, IntPtr.Zero, 0, TrackableId.invalidId);
IL2CPP_RUNTIME_CLASS_INIT(TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B_il2cpp_TypeInfo_var);
TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B L_0;
L_0 = TrackableId_get_invalidId_m06B698EFFA7748E185299C72B5CEC1AA5B221F85_inline(/*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A_il2cpp_TypeInfo_var);
Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A L_1;
L_1 = Pose_get_identity_m334B16AC3024785914BCC5A2B949750A010878BF(/*hidden argument*/NULL);
TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B L_2;
L_2 = TrackableId_get_invalidId_m06B698EFFA7748E185299C72B5CEC1AA5B221F85_inline(/*hidden argument*/NULL);
XRRaycast_tA18F9107EFF1D692E70EF15233BB6134A5F66C55 L_3;
memset((&L_3), 0, sizeof(L_3));
XRRaycast__ctor_mCB8C71860ADB4EEEAECBB9D2FD6373FA7EE13A48((&L_3), L_0, L_1, 0, (intptr_t)(0), (0.0f), L_2, /*hidden argument*/NULL);
((XRRaycast_tA18F9107EFF1D692E70EF15233BB6134A5F66C55_StaticFields*)il2cpp_codegen_static_fields_for(XRRaycast_tA18F9107EFF1D692E70EF15233BB6134A5F66C55_il2cpp_TypeInfo_var))->set_s_Default_0(L_3);
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
// UnityEngine.XR.ARSubsystems.XRRaycastHit UnityEngine.XR.ARSubsystems.XRRaycastHit::get_defaultValue()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XRRaycastHit_t94A3D13B245A9D0A7A7F2D0919DCAAC7C8DF8DDB XRRaycastHit_get_defaultValue_m23C7AB55A53165C8E2F13CC8F1B70104C37B833A (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XRRaycastHit_t94A3D13B245A9D0A7A7F2D0919DCAAC7C8DF8DDB_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
// public static XRRaycastHit defaultValue => s_Default;
IL2CPP_RUNTIME_CLASS_INIT(XRRaycastHit_t94A3D13B245A9D0A7A7F2D0919DCAAC7C8DF8DDB_il2cpp_TypeInfo_var);
XRRaycastHit_t94A3D13B245A9D0A7A7F2D0919DCAAC7C8DF8DDB L_0 = ((XRRaycastHit_t94A3D13B245A9D0A7A7F2D0919DCAAC7C8DF8DDB_StaticFields*)il2cpp_codegen_static_fields_for(XRRaycastHit_t94A3D13B245A9D0A7A7F2D0919DCAAC7C8DF8DDB_il2cpp_TypeInfo_var))->get_s_Default_0();
return L_0;
}
}
// UnityEngine.XR.ARSubsystems.TrackableId UnityEngine.XR.ARSubsystems.XRRaycastHit::get_trackableId()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B XRRaycastHit_get_trackableId_m39A90CBBE6D03C7C726715BEE8404A5411ACECBA (XRRaycastHit_t94A3D13B245A9D0A7A7F2D0919DCAAC7C8DF8DDB * __this, const RuntimeMethod* method)
{
{
// get => m_TrackableId;
TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B L_0 = __this->get_m_TrackableId_1();
return L_0;
}
}
IL2CPP_EXTERN_C TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B XRRaycastHit_get_trackableId_m39A90CBBE6D03C7C726715BEE8404A5411ACECBA_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
XRRaycastHit_t94A3D13B245A9D0A7A7F2D0919DCAAC7C8DF8DDB * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XRRaycastHit_t94A3D13B245A9D0A7A7F2D0919DCAAC7C8DF8DDB *>(__this + _offset);
TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B _returnValue;
_returnValue = XRRaycastHit_get_trackableId_m39A90CBBE6D03C7C726715BEE8404A5411ACECBA_inline(_thisAdjusted, method);
return _returnValue;
}
// UnityEngine.Pose UnityEngine.XR.ARSubsystems.XRRaycastHit::get_pose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A XRRaycastHit_get_pose_m7374236222252D08D08C85145B88AF698FAA77F4 (XRRaycastHit_t94A3D13B245A9D0A7A7F2D0919DCAAC7C8DF8DDB * __this, const RuntimeMethod* method)
{
{
// get => m_Pose;
Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A L_0 = __this->get_m_Pose_2();
return L_0;
}
}
IL2CPP_EXTERN_C Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A XRRaycastHit_get_pose_m7374236222252D08D08C85145B88AF698FAA77F4_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
XRRaycastHit_t94A3D13B245A9D0A7A7F2D0919DCAAC7C8DF8DDB * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XRRaycastHit_t94A3D13B245A9D0A7A7F2D0919DCAAC7C8DF8DDB *>(__this + _offset);
Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A _returnValue;
_returnValue = XRRaycastHit_get_pose_m7374236222252D08D08C85145B88AF698FAA77F4_inline(_thisAdjusted, method);
return _returnValue;
}
// System.Single UnityEngine.XR.ARSubsystems.XRRaycastHit::get_distance()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float XRRaycastHit_get_distance_m51570C654B1EED732C9EE7C73D51B13B9CF8262B (XRRaycastHit_t94A3D13B245A9D0A7A7F2D0919DCAAC7C8DF8DDB * __this, const RuntimeMethod* method)
{
{
// get => m_Distance;
float L_0 = __this->get_m_Distance_3();
return L_0;
}
}
IL2CPP_EXTERN_C float XRRaycastHit_get_distance_m51570C654B1EED732C9EE7C73D51B13B9CF8262B_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
XRRaycastHit_t94A3D13B245A9D0A7A7F2D0919DCAAC7C8DF8DDB * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XRRaycastHit_t94A3D13B245A9D0A7A7F2D0919DCAAC7C8DF8DDB *>(__this + _offset);
float _returnValue;
_returnValue = XRRaycastHit_get_distance_m51570C654B1EED732C9EE7C73D51B13B9CF8262B_inline(_thisAdjusted, method);
return _returnValue;
}
// UnityEngine.XR.ARSubsystems.TrackableType UnityEngine.XR.ARSubsystems.XRRaycastHit::get_hitType()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XRRaycastHit_get_hitType_m14A0398215ED8B10A1E505427C7584100189C222 (XRRaycastHit_t94A3D13B245A9D0A7A7F2D0919DCAAC7C8DF8DDB * __this, const RuntimeMethod* method)
{
{
// get => m_HitType;
int32_t L_0 = __this->get_m_HitType_4();
return L_0;
}
}
IL2CPP_EXTERN_C int32_t XRRaycastHit_get_hitType_m14A0398215ED8B10A1E505427C7584100189C222_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
XRRaycastHit_t94A3D13B245A9D0A7A7F2D0919DCAAC7C8DF8DDB * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XRRaycastHit_t94A3D13B245A9D0A7A7F2D0919DCAAC7C8DF8DDB *>(__this + _offset);
int32_t _returnValue;
_returnValue = XRRaycastHit_get_hitType_m14A0398215ED8B10A1E505427C7584100189C222_inline(_thisAdjusted, method);
return _returnValue;
}
// System.Void UnityEngine.XR.ARSubsystems.XRRaycastHit::.ctor(UnityEngine.XR.ARSubsystems.TrackableId,UnityEngine.Pose,System.Single,UnityEngine.XR.ARSubsystems.TrackableType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRRaycastHit__ctor_mF47DE3277FA881FCB8E74A5ADEC8E9624F00900F (XRRaycastHit_t94A3D13B245A9D0A7A7F2D0919DCAAC7C8DF8DDB * __this, TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B ___trackableId0, Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A ___pose1, float ___distance2, int32_t ___hitType3, const RuntimeMethod* method)
{
{
// m_TrackableId = trackableId;
TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B L_0 = ___trackableId0;
__this->set_m_TrackableId_1(L_0);
// m_Pose = pose;
Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A L_1 = ___pose1;
__this->set_m_Pose_2(L_1);
// m_Distance = distance;
float L_2 = ___distance2;
__this->set_m_Distance_3(L_2);
// m_HitType = hitType;
int32_t L_3 = ___hitType3;
__this->set_m_HitType_4(L_3);
// }
return;
}
}
IL2CPP_EXTERN_C void XRRaycastHit__ctor_mF47DE3277FA881FCB8E74A5ADEC8E9624F00900F_AdjustorThunk (RuntimeObject * __this, TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B ___trackableId0, Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A ___pose1, float ___distance2, int32_t ___hitType3, const RuntimeMethod* method)
{
XRRaycastHit_t94A3D13B245A9D0A7A7F2D0919DCAAC7C8DF8DDB * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XRRaycastHit_t94A3D13B245A9D0A7A7F2D0919DCAAC7C8DF8DDB *>(__this + _offset);
XRRaycastHit__ctor_mF47DE3277FA881FCB8E74A5ADEC8E9624F00900F(_thisAdjusted, ___trackableId0, ___pose1, ___distance2, ___hitType3, method);
}
// System.Int32 UnityEngine.XR.ARSubsystems.XRRaycastHit::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XRRaycastHit_GetHashCode_m3BA94B911CC05BEC9FB3D5BB2D37142929AF3F33 (XRRaycastHit_t94A3D13B245A9D0A7A7F2D0919DCAAC7C8DF8DDB * __this, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
// var hash = m_TrackableId.GetHashCode();
TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B * L_0 = __this->get_address_of_m_TrackableId_1();
int32_t L_1;
L_1 = TrackableId_GetHashCode_mFD297FC6DB40FB5B28C6E9B7A2CF2785D75C4E86((TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B *)L_0, /*hidden argument*/NULL);
// hash = hash * 486187739 + m_Pose.GetHashCode();
Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A * L_2 = __this->get_address_of_m_Pose_2();
int32_t L_3;
L_3 = Pose_GetHashCode_mE1DD7FBCCB1C979B252F0B117276BA11CF4D2367((Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A *)L_2, /*hidden argument*/NULL);
// hash = hash * 486187739 + m_Distance.GetHashCode();
float* L_4 = __this->get_address_of_m_Distance_3();
int32_t L_5;
L_5 = Single_GetHashCode_m7662E1812DDDBC85D464398740CFFC3588DFB2C9((float*)L_4, /*hidden argument*/NULL);
// hash = hash * 486187739 + ((int)m_HitType).GetHashCode();
int32_t L_6 = __this->get_m_HitType_4();
V_0 = L_6;
int32_t L_7;
L_7 = Int32_GetHashCode_mEDD3F492A5F7CF021125AE3F38E2B8F8743FC667((int32_t*)(&V_0), /*hidden argument*/NULL);
// return hash;
return ((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)L_1, (int32_t)((int32_t)486187739))), (int32_t)L_3)), (int32_t)((int32_t)486187739))), (int32_t)L_5)), (int32_t)((int32_t)486187739))), (int32_t)L_7));
}
}
IL2CPP_EXTERN_C int32_t XRRaycastHit_GetHashCode_m3BA94B911CC05BEC9FB3D5BB2D37142929AF3F33_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
XRRaycastHit_t94A3D13B245A9D0A7A7F2D0919DCAAC7C8DF8DDB * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XRRaycastHit_t94A3D13B245A9D0A7A7F2D0919DCAAC7C8DF8DDB *>(__this + _offset);
int32_t _returnValue;
_returnValue = XRRaycastHit_GetHashCode_m3BA94B911CC05BEC9FB3D5BB2D37142929AF3F33(_thisAdjusted, method);
return _returnValue;
}
// System.Boolean UnityEngine.XR.ARSubsystems.XRRaycastHit::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XRRaycastHit_Equals_m227F3BD461F3EDA16E3AAF42E40B32607C58F8BB (XRRaycastHit_t94A3D13B245A9D0A7A7F2D0919DCAAC7C8DF8DDB * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XRRaycastHit_t94A3D13B245A9D0A7A7F2D0919DCAAC7C8DF8DDB_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
XRRaycastHit_t94A3D13B245A9D0A7A7F2D0919DCAAC7C8DF8DDB V_0;
memset((&V_0), 0, sizeof(V_0));
{
// public override bool Equals(object obj) => (obj is XRRaycastHit other) && Equals(other);
RuntimeObject * L_0 = ___obj0;
if (!((RuntimeObject *)IsInstSealed((RuntimeObject*)L_0, XRRaycastHit_t94A3D13B245A9D0A7A7F2D0919DCAAC7C8DF8DDB_il2cpp_TypeInfo_var)))
{
goto IL_0017;
}
}
{
RuntimeObject * L_1 = ___obj0;
V_0 = ((*(XRRaycastHit_t94A3D13B245A9D0A7A7F2D0919DCAAC7C8DF8DDB *)((XRRaycastHit_t94A3D13B245A9D0A7A7F2D0919DCAAC7C8DF8DDB *)UnBox(L_1, XRRaycastHit_t94A3D13B245A9D0A7A7F2D0919DCAAC7C8DF8DDB_il2cpp_TypeInfo_var))));
XRRaycastHit_t94A3D13B245A9D0A7A7F2D0919DCAAC7C8DF8DDB L_2 = V_0;
bool L_3;
L_3 = XRRaycastHit_Equals_m84983BF79308ADA4ED84E210840E2F950B549FA0((XRRaycastHit_t94A3D13B245A9D0A7A7F2D0919DCAAC7C8DF8DDB *)__this, L_2, /*hidden argument*/NULL);
return L_3;
}
IL_0017:
{
return (bool)0;
}
}
IL2CPP_EXTERN_C bool XRRaycastHit_Equals_m227F3BD461F3EDA16E3AAF42E40B32607C58F8BB_AdjustorThunk (RuntimeObject * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
XRRaycastHit_t94A3D13B245A9D0A7A7F2D0919DCAAC7C8DF8DDB * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XRRaycastHit_t94A3D13B245A9D0A7A7F2D0919DCAAC7C8DF8DDB *>(__this + _offset);
bool _returnValue;
_returnValue = XRRaycastHit_Equals_m227F3BD461F3EDA16E3AAF42E40B32607C58F8BB(_thisAdjusted, ___obj0, method);
return _returnValue;
}
// System.Boolean UnityEngine.XR.ARSubsystems.XRRaycastHit::Equals(UnityEngine.XR.ARSubsystems.XRRaycastHit)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XRRaycastHit_Equals_m84983BF79308ADA4ED84E210840E2F950B549FA0 (XRRaycastHit_t94A3D13B245A9D0A7A7F2D0919DCAAC7C8DF8DDB * __this, XRRaycastHit_t94A3D13B245A9D0A7A7F2D0919DCAAC7C8DF8DDB ___other0, const RuntimeMethod* method)
{
{
// return
// (m_TrackableId.Equals(other.m_TrackableId)) &&
// (m_Pose.Equals(other.m_Pose)) &&
// (m_Distance.Equals(other.m_Distance)) &&
// (m_HitType == other.m_HitType);
TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B * L_0 = __this->get_address_of_m_TrackableId_1();
XRRaycastHit_t94A3D13B245A9D0A7A7F2D0919DCAAC7C8DF8DDB L_1 = ___other0;
TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B L_2 = L_1.get_m_TrackableId_1();
bool L_3;
L_3 = TrackableId_Equals_m1DF35616359175E3D66DE18250E8CDA1E6462B06((TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B *)L_0, L_2, /*hidden argument*/NULL);
if (!L_3)
{
goto IL_0048;
}
}
{
Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A * L_4 = __this->get_address_of_m_Pose_2();
XRRaycastHit_t94A3D13B245A9D0A7A7F2D0919DCAAC7C8DF8DDB L_5 = ___other0;
Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A L_6 = L_5.get_m_Pose_2();
bool L_7;
L_7 = Pose_Equals_mFAE0041090F2032B8FCE63A0F289DD206134BF15((Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A *)L_4, L_6, /*hidden argument*/NULL);
if (!L_7)
{
goto IL_0048;
}
}
{
float* L_8 = __this->get_address_of_m_Distance_3();
XRRaycastHit_t94A3D13B245A9D0A7A7F2D0919DCAAC7C8DF8DDB L_9 = ___other0;
float L_10 = L_9.get_m_Distance_3();
bool L_11;
L_11 = Single_Equals_m298A3A849F30B9900813BE6DD98AE6810CDBE914((float*)L_8, L_10, /*hidden argument*/NULL);
if (!L_11)
{
goto IL_0048;
}
}
{
int32_t L_12 = __this->get_m_HitType_4();
XRRaycastHit_t94A3D13B245A9D0A7A7F2D0919DCAAC7C8DF8DDB L_13 = ___other0;
int32_t L_14 = L_13.get_m_HitType_4();
return (bool)((((int32_t)L_12) == ((int32_t)L_14))? 1 : 0);
}
IL_0048:
{
return (bool)0;
}
}
IL2CPP_EXTERN_C bool XRRaycastHit_Equals_m84983BF79308ADA4ED84E210840E2F950B549FA0_AdjustorThunk (RuntimeObject * __this, XRRaycastHit_t94A3D13B245A9D0A7A7F2D0919DCAAC7C8DF8DDB ___other0, const RuntimeMethod* method)
{
XRRaycastHit_t94A3D13B245A9D0A7A7F2D0919DCAAC7C8DF8DDB * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XRRaycastHit_t94A3D13B245A9D0A7A7F2D0919DCAAC7C8DF8DDB *>(__this + _offset);
bool _returnValue;
_returnValue = XRRaycastHit_Equals_m84983BF79308ADA4ED84E210840E2F950B549FA0(_thisAdjusted, ___other0, method);
return _returnValue;
}
// System.Void UnityEngine.XR.ARSubsystems.XRRaycastHit::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRRaycastHit__cctor_m192CB55E4570D447209605B30A0546AC65D70601 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XRRaycastHit_t94A3D13B245A9D0A7A7F2D0919DCAAC7C8DF8DDB_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
// static readonly XRRaycastHit s_Default = new XRRaycastHit(
// TrackableId.invalidId, Pose.identity, 0, TrackableType.None);
IL2CPP_RUNTIME_CLASS_INIT(TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B_il2cpp_TypeInfo_var);
TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B L_0;
L_0 = TrackableId_get_invalidId_m06B698EFFA7748E185299C72B5CEC1AA5B221F85_inline(/*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A_il2cpp_TypeInfo_var);
Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A L_1;
L_1 = Pose_get_identity_m334B16AC3024785914BCC5A2B949750A010878BF(/*hidden argument*/NULL);
XRRaycastHit_t94A3D13B245A9D0A7A7F2D0919DCAAC7C8DF8DDB L_2;
memset((&L_2), 0, sizeof(L_2));
XRRaycastHit__ctor_mF47DE3277FA881FCB8E74A5ADEC8E9624F00900F((&L_2), L_0, L_1, (0.0f), 0, /*hidden argument*/NULL);
((XRRaycastHit_t94A3D13B245A9D0A7A7F2D0919DCAAC7C8DF8DDB_StaticFields*)il2cpp_codegen_static_fields_for(XRRaycastHit_t94A3D13B245A9D0A7A7F2D0919DCAAC7C8DF8DDB_il2cpp_TypeInfo_var))->set_s_Default_0(L_2);
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
// System.Void UnityEngine.XR.ARSubsystems.XRRaycastSubsystem::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRRaycastSubsystem__ctor_m73E44C9109F84F8DFB603F6E480200EF0A62A15B (XRRaycastSubsystem_t62FDAC9AA1BD44C4557AEE3FEF3D2FA24C71B6B8 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TrackingSubsystem_4__ctor_mEBA68D2AF3E32AF7F962362371B19DD06C4951AF_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
// public XRRaycastSubsystem()
TrackingSubsystem_4__ctor_mEBA68D2AF3E32AF7F962362371B19DD06C4951AF(__this, /*hidden argument*/TrackingSubsystem_4__ctor_mEBA68D2AF3E32AF7F962362371B19DD06C4951AF_RuntimeMethod_var);
// }
return;
}
}
// UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.XRRaycast> UnityEngine.XR.ARSubsystems.XRRaycastSubsystem::GetChanges(Unity.Collections.Allocator)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TrackableChanges_1_t092C2BBB89690C350B949DDFFA9F551F85536ED3 XRRaycastSubsystem_GetChanges_m6200FBDEEF32324D55A39BABCFDA4485152158D7 (XRRaycastSubsystem_t62FDAC9AA1BD44C4557AEE3FEF3D2FA24C71B6B8 * __this, int32_t ___allocator0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SubsystemWithProvider_3_get_provider_mC92DCD08C8EA7888D3AA28D11BA2667499A7AA59_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XRRaycast_tA18F9107EFF1D692E70EF15233BB6134A5F66C55_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
// var changes = provider.GetChanges(XRRaycast.defaultValue, allocator);
Provider_tF185BE0541D2066CD242583CEFE7709DD22DD227 * L_0;
L_0 = SubsystemWithProvider_3_get_provider_mC92DCD08C8EA7888D3AA28D11BA2667499A7AA59_inline(__this, /*hidden argument*/SubsystemWithProvider_3_get_provider_mC92DCD08C8EA7888D3AA28D11BA2667499A7AA59_RuntimeMethod_var);
IL2CPP_RUNTIME_CLASS_INIT(XRRaycast_tA18F9107EFF1D692E70EF15233BB6134A5F66C55_il2cpp_TypeInfo_var);
XRRaycast_tA18F9107EFF1D692E70EF15233BB6134A5F66C55 L_1;
L_1 = XRRaycast_get_defaultValue_mC4E3CDC7E9F4C17F3708B82DCDA95FFD395C2BE0_inline(/*hidden argument*/NULL);
int32_t L_2 = ___allocator0;
NullCheck(L_0);
TrackableChanges_1_t092C2BBB89690C350B949DDFFA9F551F85536ED3 L_3;
L_3 = VirtualFuncInvoker2< TrackableChanges_1_t092C2BBB89690C350B949DDFFA9F551F85536ED3 , XRRaycast_tA18F9107EFF1D692E70EF15233BB6134A5F66C55 , int32_t >::Invoke(11 /* UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.XRRaycast> UnityEngine.XR.ARSubsystems.XRRaycastSubsystem/Provider::GetChanges(UnityEngine.XR.ARSubsystems.XRRaycast,Unity.Collections.Allocator) */, L_0, L_1, L_2);
// return changes;
return L_3;
}
}
// System.Boolean UnityEngine.XR.ARSubsystems.XRRaycastSubsystem::TryAddRaycast(UnityEngine.Vector2,System.Single,UnityEngine.XR.ARSubsystems.XRRaycast&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XRRaycastSubsystem_TryAddRaycast_mADDC2D2907EA853D5772BDBDF5515C6BEE5273E6 (XRRaycastSubsystem_t62FDAC9AA1BD44C4557AEE3FEF3D2FA24C71B6B8 * __this, Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___screenPoint0, float ___estimatedDistance1, XRRaycast_tA18F9107EFF1D692E70EF15233BB6134A5F66C55 * ___raycast2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SubsystemWithProvider_3_get_provider_mC92DCD08C8EA7888D3AA28D11BA2667499A7AA59_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
// public bool TryAddRaycast(Vector2 screenPoint, float estimatedDistance, out XRRaycast raycast) => provider.TryAddRaycast(screenPoint, estimatedDistance, out raycast);
Provider_tF185BE0541D2066CD242583CEFE7709DD22DD227 * L_0;
L_0 = SubsystemWithProvider_3_get_provider_mC92DCD08C8EA7888D3AA28D11BA2667499A7AA59_inline(__this, /*hidden argument*/SubsystemWithProvider_3_get_provider_mC92DCD08C8EA7888D3AA28D11BA2667499A7AA59_RuntimeMethod_var);
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 L_1 = ___screenPoint0;
float L_2 = ___estimatedDistance1;
XRRaycast_tA18F9107EFF1D692E70EF15233BB6134A5F66C55 * L_3 = ___raycast2;
NullCheck(L_0);
bool L_4;
L_4 = VirtualFuncInvoker3< bool, Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 , float, XRRaycast_tA18F9107EFF1D692E70EF15233BB6134A5F66C55 * >::Invoke(8 /* System.Boolean UnityEngine.XR.ARSubsystems.XRRaycastSubsystem/Provider::TryAddRaycast(UnityEngine.Vector2,System.Single,UnityEngine.XR.ARSubsystems.XRRaycast&) */, L_0, L_1, L_2, (XRRaycast_tA18F9107EFF1D692E70EF15233BB6134A5F66C55 *)L_3);
return L_4;
}
}
// System.Boolean UnityEngine.XR.ARSubsystems.XRRaycastSubsystem::TryAddRaycast(UnityEngine.Ray,System.Single,UnityEngine.XR.ARSubsystems.XRRaycast&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XRRaycastSubsystem_TryAddRaycast_m0E3CB340F43243817F58EAFF05AD30B5926AB888 (XRRaycastSubsystem_t62FDAC9AA1BD44C4557AEE3FEF3D2FA24C71B6B8 * __this, Ray_t2E9E67CC8B03EE6ED2BBF3D2C9C96DDF70E1D5E6 ___ray0, float ___estimatedDistance1, XRRaycast_tA18F9107EFF1D692E70EF15233BB6134A5F66C55 * ___raycast2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SubsystemWithProvider_3_get_provider_mC92DCD08C8EA7888D3AA28D11BA2667499A7AA59_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
// public bool TryAddRaycast(Ray ray, float estimatedDistance, out XRRaycast raycast) => provider.TryAddRaycast(ray, estimatedDistance, out raycast);
Provider_tF185BE0541D2066CD242583CEFE7709DD22DD227 * L_0;
L_0 = SubsystemWithProvider_3_get_provider_mC92DCD08C8EA7888D3AA28D11BA2667499A7AA59_inline(__this, /*hidden argument*/SubsystemWithProvider_3_get_provider_mC92DCD08C8EA7888D3AA28D11BA2667499A7AA59_RuntimeMethod_var);
Ray_t2E9E67CC8B03EE6ED2BBF3D2C9C96DDF70E1D5E6 L_1 = ___ray0;
float L_2 = ___estimatedDistance1;
XRRaycast_tA18F9107EFF1D692E70EF15233BB6134A5F66C55 * L_3 = ___raycast2;
NullCheck(L_0);
bool L_4;
L_4 = VirtualFuncInvoker3< bool, Ray_t2E9E67CC8B03EE6ED2BBF3D2C9C96DDF70E1D5E6 , float, XRRaycast_tA18F9107EFF1D692E70EF15233BB6134A5F66C55 * >::Invoke(9 /* System.Boolean UnityEngine.XR.ARSubsystems.XRRaycastSubsystem/Provider::TryAddRaycast(UnityEngine.Ray,System.Single,UnityEngine.XR.ARSubsystems.XRRaycast&) */, L_0, L_1, L_2, (XRRaycast_tA18F9107EFF1D692E70EF15233BB6134A5F66C55 *)L_3);
return L_4;
}
}
// System.Void UnityEngine.XR.ARSubsystems.XRRaycastSubsystem::RemoveRaycast(UnityEngine.XR.ARSubsystems.TrackableId)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRRaycastSubsystem_RemoveRaycast_mD6B80384ECD82726C5A8BD098684FEDF708E8F7B (XRRaycastSubsystem_t62FDAC9AA1BD44C4557AEE3FEF3D2FA24C71B6B8 * __this, TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B ___trackableId0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SubsystemWithProvider_3_get_provider_mC92DCD08C8EA7888D3AA28D11BA2667499A7AA59_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
// public void RemoveRaycast(TrackableId trackableId) => provider.RemoveRaycast(trackableId);
Provider_tF185BE0541D2066CD242583CEFE7709DD22DD227 * L_0;
L_0 = SubsystemWithProvider_3_get_provider_mC92DCD08C8EA7888D3AA28D11BA2667499A7AA59_inline(__this, /*hidden argument*/SubsystemWithProvider_3_get_provider_mC92DCD08C8EA7888D3AA28D11BA2667499A7AA59_RuntimeMethod_var);
TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B L_1 = ___trackableId0;
NullCheck(L_0);
VirtualActionInvoker1< TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B >::Invoke(10 /* System.Void UnityEngine.XR.ARSubsystems.XRRaycastSubsystem/Provider::RemoveRaycast(UnityEngine.XR.ARSubsystems.TrackableId) */, L_0, L_1);
return;
}
}
// Unity.Collections.NativeArray`1<UnityEngine.XR.ARSubsystems.XRRaycastHit> UnityEngine.XR.ARSubsystems.XRRaycastSubsystem::Raycast(UnityEngine.Ray,UnityEngine.XR.ARSubsystems.TrackableType,Unity.Collections.Allocator)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NativeArray_1_t35F2E89DF840C06C68595E9289A07A26CBB07FCB XRRaycastSubsystem_Raycast_m888778039168DBFBF958BF0E82674CD370DBC485 (XRRaycastSubsystem_t62FDAC9AA1BD44C4557AEE3FEF3D2FA24C71B6B8 * __this, Ray_t2E9E67CC8B03EE6ED2BBF3D2C9C96DDF70E1D5E6 ___ray0, int32_t ___trackableTypeMask1, int32_t ___allocator2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SubsystemWithProvider_3_get_provider_mC92DCD08C8EA7888D3AA28D11BA2667499A7AA59_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XRRaycastHit_t94A3D13B245A9D0A7A7F2D0919DCAAC7C8DF8DDB_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
// return provider.Raycast(XRRaycastHit.defaultValue, ray, trackableTypeMask, allocator);
Provider_tF185BE0541D2066CD242583CEFE7709DD22DD227 * L_0;
L_0 = SubsystemWithProvider_3_get_provider_mC92DCD08C8EA7888D3AA28D11BA2667499A7AA59_inline(__this, /*hidden argument*/SubsystemWithProvider_3_get_provider_mC92DCD08C8EA7888D3AA28D11BA2667499A7AA59_RuntimeMethod_var);
IL2CPP_RUNTIME_CLASS_INIT(XRRaycastHit_t94A3D13B245A9D0A7A7F2D0919DCAAC7C8DF8DDB_il2cpp_TypeInfo_var);
XRRaycastHit_t94A3D13B245A9D0A7A7F2D0919DCAAC7C8DF8DDB L_1;
L_1 = XRRaycastHit_get_defaultValue_m23C7AB55A53165C8E2F13CC8F1B70104C37B833A_inline(/*hidden argument*/NULL);
Ray_t2E9E67CC8B03EE6ED2BBF3D2C9C96DDF70E1D5E6 L_2 = ___ray0;
int32_t L_3 = ___trackableTypeMask1;
int32_t L_4 = ___allocator2;
NullCheck(L_0);
NativeArray_1_t35F2E89DF840C06C68595E9289A07A26CBB07FCB L_5;
L_5 = VirtualFuncInvoker4< NativeArray_1_t35F2E89DF840C06C68595E9289A07A26CBB07FCB , XRRaycastHit_t94A3D13B245A9D0A7A7F2D0919DCAAC7C8DF8DDB , Ray_t2E9E67CC8B03EE6ED2BBF3D2C9C96DDF70E1D5E6 , int32_t, int32_t >::Invoke(12 /* Unity.Collections.NativeArray`1<UnityEngine.XR.ARSubsystems.XRRaycastHit> UnityEngine.XR.ARSubsystems.XRRaycastSubsystem/Provider::Raycast(UnityEngine.XR.ARSubsystems.XRRaycastHit,UnityEngine.Ray,UnityEngine.XR.ARSubsystems.TrackableType,Unity.Collections.Allocator) */, L_0, L_1, L_2, L_3, L_4);
return L_5;
}
}
// Unity.Collections.NativeArray`1<UnityEngine.XR.ARSubsystems.XRRaycastHit> UnityEngine.XR.ARSubsystems.XRRaycastSubsystem::Raycast(UnityEngine.Vector2,UnityEngine.XR.ARSubsystems.TrackableType,Unity.Collections.Allocator)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NativeArray_1_t35F2E89DF840C06C68595E9289A07A26CBB07FCB XRRaycastSubsystem_Raycast_m6EF56F1AD3C1A4385729B9FBEFC05ED91DEEA4C7 (XRRaycastSubsystem_t62FDAC9AA1BD44C4557AEE3FEF3D2FA24C71B6B8 * __this, Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___screenPoint0, int32_t ___trackableTypeMask1, int32_t ___allocator2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SubsystemWithProvider_3_get_provider_mC92DCD08C8EA7888D3AA28D11BA2667499A7AA59_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XRRaycastHit_t94A3D13B245A9D0A7A7F2D0919DCAAC7C8DF8DDB_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
// return provider.Raycast(XRRaycastHit.defaultValue, screenPoint, trackableTypeMask, allocator);
Provider_tF185BE0541D2066CD242583CEFE7709DD22DD227 * L_0;
L_0 = SubsystemWithProvider_3_get_provider_mC92DCD08C8EA7888D3AA28D11BA2667499A7AA59_inline(__this, /*hidden argument*/SubsystemWithProvider_3_get_provider_mC92DCD08C8EA7888D3AA28D11BA2667499A7AA59_RuntimeMethod_var);
IL2CPP_RUNTIME_CLASS_INIT(XRRaycastHit_t94A3D13B245A9D0A7A7F2D0919DCAAC7C8DF8DDB_il2cpp_TypeInfo_var);
XRRaycastHit_t94A3D13B245A9D0A7A7F2D0919DCAAC7C8DF8DDB L_1;
L_1 = XRRaycastHit_get_defaultValue_m23C7AB55A53165C8E2F13CC8F1B70104C37B833A_inline(/*hidden argument*/NULL);
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 L_2 = ___screenPoint0;
int32_t L_3 = ___trackableTypeMask1;
int32_t L_4 = ___allocator2;
NullCheck(L_0);
NativeArray_1_t35F2E89DF840C06C68595E9289A07A26CBB07FCB L_5;
L_5 = VirtualFuncInvoker4< NativeArray_1_t35F2E89DF840C06C68595E9289A07A26CBB07FCB , XRRaycastHit_t94A3D13B245A9D0A7A7F2D0919DCAAC7C8DF8DDB , Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 , int32_t, int32_t >::Invoke(13 /* Unity.Collections.NativeArray`1<UnityEngine.XR.ARSubsystems.XRRaycastHit> UnityEngine.XR.ARSubsystems.XRRaycastSubsystem/Provider::Raycast(UnityEngine.XR.ARSubsystems.XRRaycastHit,UnityEngine.Vector2,UnityEngine.XR.ARSubsystems.TrackableType,Unity.Collections.Allocator) */, L_0, L_1, L_2, L_3, L_4);
return L_5;
}
}
#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
// System.Boolean UnityEngine.XR.ARSubsystems.XRRaycastSubsystemDescriptor::get_supportsViewportBasedRaycast()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XRRaycastSubsystemDescriptor_get_supportsViewportBasedRaycast_mB431E0A243FBE6F37AEAB566B124E502FEEC267B (XRRaycastSubsystemDescriptor_tB9891F63FC4871797BCD04DB7167142BE2049B2C * __this, const RuntimeMethod* method)
{
{
// public bool supportsViewportBasedRaycast { get; private set; }
bool L_0 = __this->get_U3CsupportsViewportBasedRaycastU3Ek__BackingField_3();
return L_0;
}
}
// System.Void UnityEngine.XR.ARSubsystems.XRRaycastSubsystemDescriptor::set_supportsViewportBasedRaycast(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRRaycastSubsystemDescriptor_set_supportsViewportBasedRaycast_m573D624059387ECB8EAB5386DDA18F04A8B74A29 (XRRaycastSubsystemDescriptor_tB9891F63FC4871797BCD04DB7167142BE2049B2C * __this, bool ___value0, const RuntimeMethod* method)
{
{
// public bool supportsViewportBasedRaycast { get; private set; }
bool L_0 = ___value0;
__this->set_U3CsupportsViewportBasedRaycastU3Ek__BackingField_3(L_0);
return;
}
}
// System.Boolean UnityEngine.XR.ARSubsystems.XRRaycastSubsystemDescriptor::get_supportsWorldBasedRaycast()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XRRaycastSubsystemDescriptor_get_supportsWorldBasedRaycast_m242C4F2136709274DAF885FCC520546E682AD0DF (XRRaycastSubsystemDescriptor_tB9891F63FC4871797BCD04DB7167142BE2049B2C * __this, const RuntimeMethod* method)
{
{
// public bool supportsWorldBasedRaycast { get; private set; }
bool L_0 = __this->get_U3CsupportsWorldBasedRaycastU3Ek__BackingField_4();
return L_0;
}
}
// System.Void UnityEngine.XR.ARSubsystems.XRRaycastSubsystemDescriptor::set_supportsWorldBasedRaycast(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRRaycastSubsystemDescriptor_set_supportsWorldBasedRaycast_mA63CC456D0FD28CD57DD2D0C3DEB3AC0DEA60C8B (XRRaycastSubsystemDescriptor_tB9891F63FC4871797BCD04DB7167142BE2049B2C * __this, bool ___value0, const RuntimeMethod* method)
{
{
// public bool supportsWorldBasedRaycast { get; private set; }
bool L_0 = ___value0;
__this->set_U3CsupportsWorldBasedRaycastU3Ek__BackingField_4(L_0);
return;
}
}
// System.Void UnityEngine.XR.ARSubsystems.XRRaycastSubsystemDescriptor::set_supportedTrackableTypes(UnityEngine.XR.ARSubsystems.TrackableType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRRaycastSubsystemDescriptor_set_supportedTrackableTypes_mAFC6D42C7EFE47219C8461162392E994364BBD53 (XRRaycastSubsystemDescriptor_tB9891F63FC4871797BCD04DB7167142BE2049B2C * __this, int32_t ___value0, const RuntimeMethod* method)
{
{
// public TrackableType supportedTrackableTypes { get; private set; }
int32_t L_0 = ___value0;
__this->set_U3CsupportedTrackableTypesU3Ek__BackingField_5(L_0);
return;
}
}
// System.Void UnityEngine.XR.ARSubsystems.XRRaycastSubsystemDescriptor::set_supportsTrackedRaycasts(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRRaycastSubsystemDescriptor_set_supportsTrackedRaycasts_mD10EA0CD0E6F8FB9D499544B0DE27A5EBCED30C9 (XRRaycastSubsystemDescriptor_tB9891F63FC4871797BCD04DB7167142BE2049B2C * __this, bool ___value0, const RuntimeMethod* method)
{
{
// public bool supportsTrackedRaycasts { get; set; }
bool L_0 = ___value0;
__this->set_U3CsupportsTrackedRaycastsU3Ek__BackingField_6(L_0);
return;
}
}
// System.Void UnityEngine.XR.ARSubsystems.XRRaycastSubsystemDescriptor::RegisterDescriptor(UnityEngine.XR.ARSubsystems.XRRaycastSubsystemDescriptor/Cinfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRRaycastSubsystemDescriptor_RegisterDescriptor_mD9A0FD5846AA09D7D7D32A1093566607D0082ABA (Cinfo_tAC330BB49E2D0C7E18C66AB4018927A6EC856E01 ___cinfo0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SubsystemDescriptorStore_tE5D99C3159868DE6506269CB6B830621F8BC31A6_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XRRaycastSubsystemDescriptor_tB9891F63FC4871797BCD04DB7167142BE2049B2C_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
// SubsystemDescriptorStore.RegisterDescriptor(new XRRaycastSubsystemDescriptor(cinfo));
Cinfo_tAC330BB49E2D0C7E18C66AB4018927A6EC856E01 L_0 = ___cinfo0;
XRRaycastSubsystemDescriptor_tB9891F63FC4871797BCD04DB7167142BE2049B2C * L_1 = (XRRaycastSubsystemDescriptor_tB9891F63FC4871797BCD04DB7167142BE2049B2C *)il2cpp_codegen_object_new(XRRaycastSubsystemDescriptor_tB9891F63FC4871797BCD04DB7167142BE2049B2C_il2cpp_TypeInfo_var);
XRRaycastSubsystemDescriptor__ctor_m2185C8C50AB138A0C3B5165A92534E2E0D7D57A7(L_1, L_0, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(SubsystemDescriptorStore_tE5D99C3159868DE6506269CB6B830621F8BC31A6_il2cpp_TypeInfo_var);
SubsystemDescriptorStore_RegisterDescriptor_m5586866BB233EF26B98640851816DD1764657688(L_1, /*hidden argument*/NULL);
// }
return;
}
}
// System.Void UnityEngine.XR.ARSubsystems.XRRaycastSubsystemDescriptor::.ctor(UnityEngine.XR.ARSubsystems.XRRaycastSubsystemDescriptor/Cinfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRRaycastSubsystemDescriptor__ctor_m2185C8C50AB138A0C3B5165A92534E2E0D7D57A7 (XRRaycastSubsystemDescriptor_tB9891F63FC4871797BCD04DB7167142BE2049B2C * __this, Cinfo_tAC330BB49E2D0C7E18C66AB4018927A6EC856E01 ___cinfo0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SubsystemDescriptorWithProvider_2__ctor_m44F60A7BB6F0282109ED44817703F6FDE0DAD8E7_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
// XRRaycastSubsystemDescriptor(Cinfo cinfo)
SubsystemDescriptorWithProvider_2__ctor_m44F60A7BB6F0282109ED44817703F6FDE0DAD8E7(__this, /*hidden argument*/SubsystemDescriptorWithProvider_2__ctor_m44F60A7BB6F0282109ED44817703F6FDE0DAD8E7_RuntimeMethod_var);
// id = cinfo.id;
String_t* L_0;
L_0 = Cinfo_get_id_m9A34BB7AAEFCB43E1627AA047A68C058D730EDC4_inline((Cinfo_tAC330BB49E2D0C7E18C66AB4018927A6EC856E01 *)(&___cinfo0), /*hidden argument*/NULL);
SubsystemDescriptorWithProvider_set_id_mEC6863CDB21597618394D2ED4182A9ED3ACBF220_inline(__this, L_0, /*hidden argument*/NULL);
// providerType = cinfo.providerType;
Type_t * L_1;
L_1 = Cinfo_get_providerType_m6AFB0E29047AF8A34F780EBACFC0CDDA44AAF50C_inline((Cinfo_tAC330BB49E2D0C7E18C66AB4018927A6EC856E01 *)(&___cinfo0), /*hidden argument*/NULL);
SubsystemDescriptorWithProvider_set_providerType_m672B1F3CC7A12E8569D801F7C79538753C0D9C2D_inline(__this, L_1, /*hidden argument*/NULL);
// subsystemTypeOverride = cinfo.subsystemTypeOverride;
Type_t * L_2;
L_2 = Cinfo_get_subsystemTypeOverride_mCFC851E4227172E1E01130E60CC64F4B2FFC8C63_inline((Cinfo_tAC330BB49E2D0C7E18C66AB4018927A6EC856E01 *)(&___cinfo0), /*hidden argument*/NULL);
SubsystemDescriptorWithProvider_set_subsystemTypeOverride_mA453100A7A8FAB35FBE7154E63B5A17D518F41B6_inline(__this, L_2, /*hidden argument*/NULL);
// supportsViewportBasedRaycast = cinfo.supportsViewportBasedRaycast;
bool L_3;
L_3 = Cinfo_get_supportsViewportBasedRaycast_m76E31D4FF84E88050FE4E8B6C44FB6E4E71A5A3A_inline((Cinfo_tAC330BB49E2D0C7E18C66AB4018927A6EC856E01 *)(&___cinfo0), /*hidden argument*/NULL);
XRRaycastSubsystemDescriptor_set_supportsViewportBasedRaycast_m573D624059387ECB8EAB5386DDA18F04A8B74A29_inline(__this, L_3, /*hidden argument*/NULL);
// supportsWorldBasedRaycast = cinfo.supportsWorldBasedRaycast;
bool L_4;
L_4 = Cinfo_get_supportsWorldBasedRaycast_m5242363FA90D64968F4ED236EC35973B7ABC180A_inline((Cinfo_tAC330BB49E2D0C7E18C66AB4018927A6EC856E01 *)(&___cinfo0), /*hidden argument*/NULL);
XRRaycastSubsystemDescriptor_set_supportsWorldBasedRaycast_mA63CC456D0FD28CD57DD2D0C3DEB3AC0DEA60C8B_inline(__this, L_4, /*hidden argument*/NULL);
// supportedTrackableTypes = cinfo.supportedTrackableTypes;
int32_t L_5;
L_5 = Cinfo_get_supportedTrackableTypes_m0DA573866D46012B650151C7538796542A3E2C70_inline((Cinfo_tAC330BB49E2D0C7E18C66AB4018927A6EC856E01 *)(&___cinfo0), /*hidden argument*/NULL);
XRRaycastSubsystemDescriptor_set_supportedTrackableTypes_mAFC6D42C7EFE47219C8461162392E994364BBD53_inline(__this, L_5, /*hidden argument*/NULL);
// supportsTrackedRaycasts = cinfo.supportsTrackedRaycasts;
bool L_6;
L_6 = Cinfo_get_supportsTrackedRaycasts_mB923DE37AE981FB26768CFF11B34A63F481A261A_inline((Cinfo_tAC330BB49E2D0C7E18C66AB4018927A6EC856E01 *)(&___cinfo0), /*hidden argument*/NULL);
XRRaycastSubsystemDescriptor_set_supportsTrackedRaycasts_mD10EA0CD0E6F8FB9D499544B0DE27A5EBCED30C9_inline(__this, L_6, /*hidden argument*/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
// Conversion methods for marshalling of: UnityEngine.XR.ARSubsystems.XRReferenceImage
IL2CPP_EXTERN_C void XRReferenceImage_tB1803A72EB581FB35B2CA944973679132A1D4467_marshal_pinvoke(const XRReferenceImage_tB1803A72EB581FB35B2CA944973679132A1D4467& unmarshaled, XRReferenceImage_tB1803A72EB581FB35B2CA944973679132A1D4467_marshaled_pinvoke& marshaled)
{
Exception_t* ___m_Texture_5Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'm_Texture' of type 'XRReferenceImage': Reference type field marshaling is not supported.");
IL2CPP_RAISE_MANAGED_EXCEPTION(___m_Texture_5Exception, NULL);
}
IL2CPP_EXTERN_C void XRReferenceImage_tB1803A72EB581FB35B2CA944973679132A1D4467_marshal_pinvoke_back(const XRReferenceImage_tB1803A72EB581FB35B2CA944973679132A1D4467_marshaled_pinvoke& marshaled, XRReferenceImage_tB1803A72EB581FB35B2CA944973679132A1D4467& unmarshaled)
{
Exception_t* ___m_Texture_5Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'm_Texture' of type 'XRReferenceImage': Reference type field marshaling is not supported.");
IL2CPP_RAISE_MANAGED_EXCEPTION(___m_Texture_5Exception, NULL);
}
// Conversion method for clean up from marshalling of: UnityEngine.XR.ARSubsystems.XRReferenceImage
IL2CPP_EXTERN_C void XRReferenceImage_tB1803A72EB581FB35B2CA944973679132A1D4467_marshal_pinvoke_cleanup(XRReferenceImage_tB1803A72EB581FB35B2CA944973679132A1D4467_marshaled_pinvoke& marshaled)
{
}
// Conversion methods for marshalling of: UnityEngine.XR.ARSubsystems.XRReferenceImage
IL2CPP_EXTERN_C void XRReferenceImage_tB1803A72EB581FB35B2CA944973679132A1D4467_marshal_com(const XRReferenceImage_tB1803A72EB581FB35B2CA944973679132A1D4467& unmarshaled, XRReferenceImage_tB1803A72EB581FB35B2CA944973679132A1D4467_marshaled_com& marshaled)
{
Exception_t* ___m_Texture_5Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'm_Texture' of type 'XRReferenceImage': Reference type field marshaling is not supported.");
IL2CPP_RAISE_MANAGED_EXCEPTION(___m_Texture_5Exception, NULL);
}
IL2CPP_EXTERN_C void XRReferenceImage_tB1803A72EB581FB35B2CA944973679132A1D4467_marshal_com_back(const XRReferenceImage_tB1803A72EB581FB35B2CA944973679132A1D4467_marshaled_com& marshaled, XRReferenceImage_tB1803A72EB581FB35B2CA944973679132A1D4467& unmarshaled)
{
Exception_t* ___m_Texture_5Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'm_Texture' of type 'XRReferenceImage': Reference type field marshaling is not supported.");
IL2CPP_RAISE_MANAGED_EXCEPTION(___m_Texture_5Exception, NULL);
}
// Conversion method for clean up from marshalling of: UnityEngine.XR.ARSubsystems.XRReferenceImage
IL2CPP_EXTERN_C void XRReferenceImage_tB1803A72EB581FB35B2CA944973679132A1D4467_marshal_com_cleanup(XRReferenceImage_tB1803A72EB581FB35B2CA944973679132A1D4467_marshaled_com& marshaled)
{
}
// System.Void UnityEngine.XR.ARSubsystems.XRReferenceImage::.ctor(UnityEngine.XR.ARSubsystems.SerializableGuid,UnityEngine.XR.ARSubsystems.SerializableGuid,System.Nullable`1<UnityEngine.Vector2>,System.String,UnityEngine.Texture2D)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRReferenceImage__ctor_m6D6343387F201C296D5D28E2A90D4BB1E83CDBDF (XRReferenceImage_tB1803A72EB581FB35B2CA944973679132A1D4467 * __this, SerializableGuid_t5F8E8B4FF33F91AF9B16C6CC3F75AE00014505CC ___guid0, SerializableGuid_t5F8E8B4FF33F91AF9B16C6CC3F75AE00014505CC ___textureGuid1, Nullable_1_tF7B8C31618B00224A735E543E66CD257CB7E42FB ___size2, String_t* ___name3, Texture2D_t9B604D0D8E28032123641A7E7338FA872E2698BF * ___texture4, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1_get_HasValue_m68E887776727FD03427726B3149807754F1B770B_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1_get_Value_m47529826F53174F3E761F99E88ACC08B02820E4D_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
XRReferenceImage_tB1803A72EB581FB35B2CA944973679132A1D4467 * G_B2_0 = NULL;
XRReferenceImage_tB1803A72EB581FB35B2CA944973679132A1D4467 * G_B1_0 = NULL;
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 G_B3_0;
memset((&G_B3_0), 0, sizeof(G_B3_0));
XRReferenceImage_tB1803A72EB581FB35B2CA944973679132A1D4467 * G_B3_1 = NULL;
{
// m_SerializedGuid = guid;
SerializableGuid_t5F8E8B4FF33F91AF9B16C6CC3F75AE00014505CC L_0 = ___guid0;
__this->set_m_SerializedGuid_0(L_0);
// m_SerializedTextureGuid = textureGuid;
SerializableGuid_t5F8E8B4FF33F91AF9B16C6CC3F75AE00014505CC L_1 = ___textureGuid1;
__this->set_m_SerializedTextureGuid_1(L_1);
// m_SpecifySize = size.HasValue;
bool L_2;
L_2 = Nullable_1_get_HasValue_m68E887776727FD03427726B3149807754F1B770B_inline((Nullable_1_tF7B8C31618B00224A735E543E66CD257CB7E42FB *)(&___size2), /*hidden argument*/Nullable_1_get_HasValue_m68E887776727FD03427726B3149807754F1B770B_RuntimeMethod_var);
__this->set_m_SpecifySize_3(L_2);
// m_Size = size.HasValue ? size.Value : Vector2.zero;
bool L_3;
L_3 = Nullable_1_get_HasValue_m68E887776727FD03427726B3149807754F1B770B_inline((Nullable_1_tF7B8C31618B00224A735E543E66CD257CB7E42FB *)(&___size2), /*hidden argument*/Nullable_1_get_HasValue_m68E887776727FD03427726B3149807754F1B770B_RuntimeMethod_var);
G_B1_0 = __this;
if (L_3)
{
G_B2_0 = __this;
goto IL_002c;
}
}
{
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 L_4;
L_4 = Vector2_get_zero_m621041B9DF5FAE86C1EF4CB28C224FEA089CB828(/*hidden argument*/NULL);
G_B3_0 = L_4;
G_B3_1 = G_B1_0;
goto IL_0033;
}
IL_002c:
{
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 L_5;
L_5 = Nullable_1_get_Value_m47529826F53174F3E761F99E88ACC08B02820E4D((Nullable_1_tF7B8C31618B00224A735E543E66CD257CB7E42FB *)(&___size2), /*hidden argument*/Nullable_1_get_Value_m47529826F53174F3E761F99E88ACC08B02820E4D_RuntimeMethod_var);
G_B3_0 = L_5;
G_B3_1 = G_B2_0;
}
IL_0033:
{
G_B3_1->set_m_Size_2(G_B3_0);
// m_Name = name;
String_t* L_6 = ___name3;
__this->set_m_Name_4(L_6);
// m_Texture = texture;
Texture2D_t9B604D0D8E28032123641A7E7338FA872E2698BF * L_7 = ___texture4;
__this->set_m_Texture_5(L_7);
// }
return;
}
}
IL2CPP_EXTERN_C void XRReferenceImage__ctor_m6D6343387F201C296D5D28E2A90D4BB1E83CDBDF_AdjustorThunk (RuntimeObject * __this, SerializableGuid_t5F8E8B4FF33F91AF9B16C6CC3F75AE00014505CC ___guid0, SerializableGuid_t5F8E8B4FF33F91AF9B16C6CC3F75AE00014505CC ___textureGuid1, Nullable_1_tF7B8C31618B00224A735E543E66CD257CB7E42FB ___size2, String_t* ___name3, Texture2D_t9B604D0D8E28032123641A7E7338FA872E2698BF * ___texture4, const RuntimeMethod* method)
{
XRReferenceImage_tB1803A72EB581FB35B2CA944973679132A1D4467 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XRReferenceImage_tB1803A72EB581FB35B2CA944973679132A1D4467 *>(__this + _offset);
XRReferenceImage__ctor_m6D6343387F201C296D5D28E2A90D4BB1E83CDBDF(_thisAdjusted, ___guid0, ___textureGuid1, ___size2, ___name3, ___texture4, method);
}
// System.Guid UnityEngine.XR.ARSubsystems.XRReferenceImage::get_guid()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Guid_t XRReferenceImage_get_guid_m1C4FCDF5CE4DB41074E50AB2B3D8B4A20CE290BE (XRReferenceImage_tB1803A72EB581FB35B2CA944973679132A1D4467 * __this, const RuntimeMethod* method)
{
{
// public Guid guid => m_SerializedGuid.guid;
SerializableGuid_t5F8E8B4FF33F91AF9B16C6CC3F75AE00014505CC * L_0 = __this->get_address_of_m_SerializedGuid_0();
Guid_t L_1;
L_1 = SerializableGuid_get_guid_m54618233E4BD08410123A50B4E8DAC66FCE46032((SerializableGuid_t5F8E8B4FF33F91AF9B16C6CC3F75AE00014505CC *)L_0, /*hidden argument*/NULL);
return L_1;
}
}
IL2CPP_EXTERN_C Guid_t XRReferenceImage_get_guid_m1C4FCDF5CE4DB41074E50AB2B3D8B4A20CE290BE_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
XRReferenceImage_tB1803A72EB581FB35B2CA944973679132A1D4467 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XRReferenceImage_tB1803A72EB581FB35B2CA944973679132A1D4467 *>(__this + _offset);
Guid_t _returnValue;
_returnValue = XRReferenceImage_get_guid_m1C4FCDF5CE4DB41074E50AB2B3D8B4A20CE290BE(_thisAdjusted, method);
return _returnValue;
}
// System.Guid UnityEngine.XR.ARSubsystems.XRReferenceImage::get_textureGuid()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Guid_t XRReferenceImage_get_textureGuid_mDABB849D0FAF44F4FD86B6D794706DC6667A732F (XRReferenceImage_tB1803A72EB581FB35B2CA944973679132A1D4467 * __this, const RuntimeMethod* method)
{
{
// public Guid textureGuid => m_SerializedTextureGuid.guid;
SerializableGuid_t5F8E8B4FF33F91AF9B16C6CC3F75AE00014505CC * L_0 = __this->get_address_of_m_SerializedTextureGuid_1();
Guid_t L_1;
L_1 = SerializableGuid_get_guid_m54618233E4BD08410123A50B4E8DAC66FCE46032((SerializableGuid_t5F8E8B4FF33F91AF9B16C6CC3F75AE00014505CC *)L_0, /*hidden argument*/NULL);
return L_1;
}
}
IL2CPP_EXTERN_C Guid_t XRReferenceImage_get_textureGuid_mDABB849D0FAF44F4FD86B6D794706DC6667A732F_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
XRReferenceImage_tB1803A72EB581FB35B2CA944973679132A1D4467 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XRReferenceImage_tB1803A72EB581FB35B2CA944973679132A1D4467 *>(__this + _offset);
Guid_t _returnValue;
_returnValue = XRReferenceImage_get_textureGuid_mDABB849D0FAF44F4FD86B6D794706DC6667A732F(_thisAdjusted, method);
return _returnValue;
}
// System.Boolean UnityEngine.XR.ARSubsystems.XRReferenceImage::get_specifySize()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XRReferenceImage_get_specifySize_mAC02B5D0DBF9D66C2668206B7603C58149EE7D8B (XRReferenceImage_tB1803A72EB581FB35B2CA944973679132A1D4467 * __this, const RuntimeMethod* method)
{
{
// public bool specifySize => m_SpecifySize;
bool L_0 = __this->get_m_SpecifySize_3();
return L_0;
}
}
IL2CPP_EXTERN_C bool XRReferenceImage_get_specifySize_mAC02B5D0DBF9D66C2668206B7603C58149EE7D8B_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
XRReferenceImage_tB1803A72EB581FB35B2CA944973679132A1D4467 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XRReferenceImage_tB1803A72EB581FB35B2CA944973679132A1D4467 *>(__this + _offset);
bool _returnValue;
_returnValue = XRReferenceImage_get_specifySize_mAC02B5D0DBF9D66C2668206B7603C58149EE7D8B_inline(_thisAdjusted, method);
return _returnValue;
}
// UnityEngine.Vector2 UnityEngine.XR.ARSubsystems.XRReferenceImage::get_size()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 XRReferenceImage_get_size_m135B7EF1ED61FE27A8793503E8FC84543642C166 (XRReferenceImage_tB1803A72EB581FB35B2CA944973679132A1D4467 * __this, const RuntimeMethod* method)
{
{
// public Vector2 size => m_Size;
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 L_0 = __this->get_m_Size_2();
return L_0;
}
}
IL2CPP_EXTERN_C Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 XRReferenceImage_get_size_m135B7EF1ED61FE27A8793503E8FC84543642C166_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
XRReferenceImage_tB1803A72EB581FB35B2CA944973679132A1D4467 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XRReferenceImage_tB1803A72EB581FB35B2CA944973679132A1D4467 *>(__this + _offset);
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 _returnValue;
_returnValue = XRReferenceImage_get_size_m135B7EF1ED61FE27A8793503E8FC84543642C166_inline(_thisAdjusted, method);
return _returnValue;
}
// System.String UnityEngine.XR.ARSubsystems.XRReferenceImage::get_name()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XRReferenceImage_get_name_mE8F3368C2587552333AB78EA72A02E5B73E355C7 (XRReferenceImage_tB1803A72EB581FB35B2CA944973679132A1D4467 * __this, const RuntimeMethod* method)
{
{
// public string name => m_Name;
String_t* L_0 = __this->get_m_Name_4();
return L_0;
}
}
IL2CPP_EXTERN_C String_t* XRReferenceImage_get_name_mE8F3368C2587552333AB78EA72A02E5B73E355C7_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
XRReferenceImage_tB1803A72EB581FB35B2CA944973679132A1D4467 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XRReferenceImage_tB1803A72EB581FB35B2CA944973679132A1D4467 *>(__this + _offset);
String_t* _returnValue;
_returnValue = XRReferenceImage_get_name_mE8F3368C2587552333AB78EA72A02E5B73E355C7_inline(_thisAdjusted, method);
return _returnValue;
}
// UnityEngine.Texture2D UnityEngine.XR.ARSubsystems.XRReferenceImage::get_texture()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Texture2D_t9B604D0D8E28032123641A7E7338FA872E2698BF * XRReferenceImage_get_texture_mA66A0D26E463C232CA008D5F44A23F9D0AA838B1 (XRReferenceImage_tB1803A72EB581FB35B2CA944973679132A1D4467 * __this, const RuntimeMethod* method)
{
{
// public Texture2D texture => m_Texture;
Texture2D_t9B604D0D8E28032123641A7E7338FA872E2698BF * L_0 = __this->get_m_Texture_5();
return L_0;
}
}
IL2CPP_EXTERN_C Texture2D_t9B604D0D8E28032123641A7E7338FA872E2698BF * XRReferenceImage_get_texture_mA66A0D26E463C232CA008D5F44A23F9D0AA838B1_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
XRReferenceImage_tB1803A72EB581FB35B2CA944973679132A1D4467 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XRReferenceImage_tB1803A72EB581FB35B2CA944973679132A1D4467 *>(__this + _offset);
Texture2D_t9B604D0D8E28032123641A7E7338FA872E2698BF * _returnValue;
_returnValue = XRReferenceImage_get_texture_mA66A0D26E463C232CA008D5F44A23F9D0AA838B1_inline(_thisAdjusted, method);
return _returnValue;
}
// System.String UnityEngine.XR.ARSubsystems.XRReferenceImage::ToString()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XRReferenceImage_ToString_mF01AB8377D55DC49917B09F0C12A6B02BD5BEE78 (XRReferenceImage_tB1803A72EB581FB35B2CA944973679132A1D4467 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Guid_t_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral3AD8505B7B0110F8402179136782389ECCC50E3A);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral4BA02032FD29B99FE1D3EF320CFADB809174DF13);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709);
s_Il2CppMethodInitialized = true;
}
int32_t G_B2_0 = 0;
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* G_B2_1 = NULL;
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* G_B2_2 = NULL;
String_t* G_B2_3 = NULL;
int32_t G_B1_0 = 0;
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* G_B1_1 = NULL;
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* G_B1_2 = NULL;
String_t* G_B1_3 = NULL;
String_t* G_B3_0 = NULL;
int32_t G_B3_1 = 0;
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* G_B3_2 = NULL;
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* G_B3_3 = NULL;
String_t* G_B3_4 = NULL;
{
// $"GUID: '{guid}', Texture GUID: '{textureGuid}` Size: {(m_SpecifySize ? "" : "NOT ")} specified {m_Size}";
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_0 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)SZArrayNew(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE_il2cpp_TypeInfo_var, (uint32_t)4);
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_1 = L_0;
Guid_t L_2;
L_2 = XRReferenceImage_get_guid_m1C4FCDF5CE4DB41074E50AB2B3D8B4A20CE290BE((XRReferenceImage_tB1803A72EB581FB35B2CA944973679132A1D4467 *)__this, /*hidden argument*/NULL);
Guid_t L_3 = L_2;
RuntimeObject * L_4 = Box(Guid_t_il2cpp_TypeInfo_var, &L_3);
NullCheck(L_1);
ArrayElementTypeCheck (L_1, L_4);
(L_1)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_4);
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_5 = L_1;
Guid_t L_6;
L_6 = XRReferenceImage_get_textureGuid_mDABB849D0FAF44F4FD86B6D794706DC6667A732F((XRReferenceImage_tB1803A72EB581FB35B2CA944973679132A1D4467 *)__this, /*hidden argument*/NULL);
Guid_t L_7 = L_6;
RuntimeObject * L_8 = Box(Guid_t_il2cpp_TypeInfo_var, &L_7);
NullCheck(L_5);
ArrayElementTypeCheck (L_5, L_8);
(L_5)->SetAt(static_cast<il2cpp_array_size_t>(1), (RuntimeObject *)L_8);
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_9 = L_5;
bool L_10 = __this->get_m_SpecifySize_3();
G_B1_0 = 2;
G_B1_1 = L_9;
G_B1_2 = L_9;
G_B1_3 = _stringLiteral4BA02032FD29B99FE1D3EF320CFADB809174DF13;
if (L_10)
{
G_B2_0 = 2;
G_B2_1 = L_9;
G_B2_2 = L_9;
G_B2_3 = _stringLiteral4BA02032FD29B99FE1D3EF320CFADB809174DF13;
goto IL_0038;
}
}
{
G_B3_0 = _stringLiteral3AD8505B7B0110F8402179136782389ECCC50E3A;
G_B3_1 = G_B1_0;
G_B3_2 = G_B1_1;
G_B3_3 = G_B1_2;
G_B3_4 = G_B1_3;
goto IL_003d;
}
IL_0038:
{
G_B3_0 = _stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709;
G_B3_1 = G_B2_0;
G_B3_2 = G_B2_1;
G_B3_3 = G_B2_2;
G_B3_4 = G_B2_3;
}
IL_003d:
{
NullCheck(G_B3_2);
ArrayElementTypeCheck (G_B3_2, G_B3_0);
(G_B3_2)->SetAt(static_cast<il2cpp_array_size_t>(G_B3_1), (RuntimeObject *)G_B3_0);
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_11 = G_B3_3;
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 L_12 = __this->get_m_Size_2();
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 L_13 = L_12;
RuntimeObject * L_14 = Box(Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9_il2cpp_TypeInfo_var, &L_13);
NullCheck(L_11);
ArrayElementTypeCheck (L_11, L_14);
(L_11)->SetAt(static_cast<il2cpp_array_size_t>(3), (RuntimeObject *)L_14);
String_t* L_15;
L_15 = String_Format_mCED6767EA5FEE6F15ABCD5B4F9150D1284C2795B(G_B3_4, L_11, /*hidden argument*/NULL);
return L_15;
}
}
IL2CPP_EXTERN_C String_t* XRReferenceImage_ToString_mF01AB8377D55DC49917B09F0C12A6B02BD5BEE78_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
XRReferenceImage_tB1803A72EB581FB35B2CA944973679132A1D4467 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XRReferenceImage_tB1803A72EB581FB35B2CA944973679132A1D4467 *>(__this + _offset);
String_t* _returnValue;
_returnValue = XRReferenceImage_ToString_mF01AB8377D55DC49917B09F0C12A6B02BD5BEE78(_thisAdjusted, method);
return _returnValue;
}
// System.Int32 UnityEngine.XR.ARSubsystems.XRReferenceImage::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XRReferenceImage_GetHashCode_m04CE90A2F730C6030216560645C2FD3A81C42985 (XRReferenceImage_tB1803A72EB581FB35B2CA944973679132A1D4467 * __this, const RuntimeMethod* method)
{
Guid_t V_0;
memset((&V_0), 0, sizeof(V_0));
{
// public override int GetHashCode() => guid.GetHashCode();
Guid_t L_0;
L_0 = XRReferenceImage_get_guid_m1C4FCDF5CE4DB41074E50AB2B3D8B4A20CE290BE((XRReferenceImage_tB1803A72EB581FB35B2CA944973679132A1D4467 *)__this, /*hidden argument*/NULL);
V_0 = L_0;
int32_t L_1;
L_1 = Guid_GetHashCode_mD32F5054E937C98B3D082594B3849808F1E92AE7((Guid_t *)(&V_0), /*hidden argument*/NULL);
return L_1;
}
}
IL2CPP_EXTERN_C int32_t XRReferenceImage_GetHashCode_m04CE90A2F730C6030216560645C2FD3A81C42985_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
XRReferenceImage_tB1803A72EB581FB35B2CA944973679132A1D4467 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XRReferenceImage_tB1803A72EB581FB35B2CA944973679132A1D4467 *>(__this + _offset);
int32_t _returnValue;
_returnValue = XRReferenceImage_GetHashCode_m04CE90A2F730C6030216560645C2FD3A81C42985(_thisAdjusted, method);
return _returnValue;
}
// System.Boolean UnityEngine.XR.ARSubsystems.XRReferenceImage::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XRReferenceImage_Equals_m85D0F3511051929A1F06F75CE015DA98934BC211 (XRReferenceImage_tB1803A72EB581FB35B2CA944973679132A1D4467 * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XRReferenceImage_tB1803A72EB581FB35B2CA944973679132A1D4467_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
// public override bool Equals(object obj) => (obj is XRReferenceImage) && Equals((XRReferenceImage)obj);
RuntimeObject * L_0 = ___obj0;
if (!((RuntimeObject *)IsInstSealed((RuntimeObject*)L_0, XRReferenceImage_tB1803A72EB581FB35B2CA944973679132A1D4467_il2cpp_TypeInfo_var)))
{
goto IL_0015;
}
}
{
RuntimeObject * L_1 = ___obj0;
bool L_2;
L_2 = XRReferenceImage_Equals_m8F01D42083D0F6155DEDA29D457A0EDA600629AB((XRReferenceImage_tB1803A72EB581FB35B2CA944973679132A1D4467 *)__this, ((*(XRReferenceImage_tB1803A72EB581FB35B2CA944973679132A1D4467 *)((XRReferenceImage_tB1803A72EB581FB35B2CA944973679132A1D4467 *)UnBox(L_1, XRReferenceImage_tB1803A72EB581FB35B2CA944973679132A1D4467_il2cpp_TypeInfo_var)))), /*hidden argument*/NULL);
return L_2;
}
IL_0015:
{
return (bool)0;
}
}
IL2CPP_EXTERN_C bool XRReferenceImage_Equals_m85D0F3511051929A1F06F75CE015DA98934BC211_AdjustorThunk (RuntimeObject * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
XRReferenceImage_tB1803A72EB581FB35B2CA944973679132A1D4467 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XRReferenceImage_tB1803A72EB581FB35B2CA944973679132A1D4467 *>(__this + _offset);
bool _returnValue;
_returnValue = XRReferenceImage_Equals_m85D0F3511051929A1F06F75CE015DA98934BC211(_thisAdjusted, ___obj0, method);
return _returnValue;
}
// System.Boolean UnityEngine.XR.ARSubsystems.XRReferenceImage::Equals(UnityEngine.XR.ARSubsystems.XRReferenceImage)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XRReferenceImage_Equals_m8F01D42083D0F6155DEDA29D457A0EDA600629AB (XRReferenceImage_tB1803A72EB581FB35B2CA944973679132A1D4467 * __this, XRReferenceImage_tB1803A72EB581FB35B2CA944973679132A1D4467 ___other0, const RuntimeMethod* method)
{
Guid_t V_0;
memset((&V_0), 0, sizeof(V_0));
{
// public bool Equals(XRReferenceImage other) => guid.Equals(other.guid);
Guid_t L_0;
L_0 = XRReferenceImage_get_guid_m1C4FCDF5CE4DB41074E50AB2B3D8B4A20CE290BE((XRReferenceImage_tB1803A72EB581FB35B2CA944973679132A1D4467 *)__this, /*hidden argument*/NULL);
V_0 = L_0;
Guid_t L_1;
L_1 = XRReferenceImage_get_guid_m1C4FCDF5CE4DB41074E50AB2B3D8B4A20CE290BE((XRReferenceImage_tB1803A72EB581FB35B2CA944973679132A1D4467 *)(&___other0), /*hidden argument*/NULL);
bool L_2;
L_2 = Guid_Equals_m602304DBC4842AB53670762A6DB52D30C3973258((Guid_t *)(&V_0), L_1, /*hidden argument*/NULL);
return L_2;
}
}
IL2CPP_EXTERN_C bool XRReferenceImage_Equals_m8F01D42083D0F6155DEDA29D457A0EDA600629AB_AdjustorThunk (RuntimeObject * __this, XRReferenceImage_tB1803A72EB581FB35B2CA944973679132A1D4467 ___other0, const RuntimeMethod* method)
{
XRReferenceImage_tB1803A72EB581FB35B2CA944973679132A1D4467 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XRReferenceImage_tB1803A72EB581FB35B2CA944973679132A1D4467 *>(__this + _offset);
bool _returnValue;
_returnValue = XRReferenceImage_Equals_m8F01D42083D0F6155DEDA29D457A0EDA600629AB(_thisAdjusted, ___other0, 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
// System.Int32 UnityEngine.XR.ARSubsystems.XRReferenceImageLibrary::get_count()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XRReferenceImageLibrary_get_count_m23E1EA6C92988B7A11A51D532F4630CB7DE513BD (XRReferenceImageLibrary_tC415743C1DDCE2331D5B0F159B2A1D72A70C44B2 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Count_m0793D9FA487681001881232EFD626044240AD7D4_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
// public int count => m_Images.Count;
List_1_tBFEC44C63782254A7C0F22D20FC51F72002482EC * L_0 = __this->get_m_Images_6();
NullCheck(L_0);
int32_t L_1;
L_1 = List_1_get_Count_m0793D9FA487681001881232EFD626044240AD7D4_inline(L_0, /*hidden argument*/List_1_get_Count_m0793D9FA487681001881232EFD626044240AD7D4_RuntimeMethod_var);
return L_1;
}
}
// System.Collections.Generic.List`1/Enumerator<UnityEngine.XR.ARSubsystems.XRReferenceImage> UnityEngine.XR.ARSubsystems.XRReferenceImageLibrary::GetEnumerator()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Enumerator_tF7E144ED2E7144FAE6449F9929026EE5345AF091 XRReferenceImageLibrary_GetEnumerator_m95EFD96B0750E15CF00C4B47B7DF3E2961F2183C (XRReferenceImageLibrary_tC415743C1DDCE2331D5B0F159B2A1D72A70C44B2 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_GetEnumerator_mCA314B5D3AF7A49BB0A0F9A7678AB806E1634C84_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
// public List<XRReferenceImage>.Enumerator GetEnumerator() => m_Images.GetEnumerator();
List_1_tBFEC44C63782254A7C0F22D20FC51F72002482EC * L_0 = __this->get_m_Images_6();
NullCheck(L_0);
Enumerator_tF7E144ED2E7144FAE6449F9929026EE5345AF091 L_1;
L_1 = List_1_GetEnumerator_mCA314B5D3AF7A49BB0A0F9A7678AB806E1634C84(L_0, /*hidden argument*/List_1_GetEnumerator_mCA314B5D3AF7A49BB0A0F9A7678AB806E1634C84_RuntimeMethod_var);
return L_1;
}
}
// UnityEngine.XR.ARSubsystems.XRReferenceImage UnityEngine.XR.ARSubsystems.XRReferenceImageLibrary::get_Item(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XRReferenceImage_tB1803A72EB581FB35B2CA944973679132A1D4467 XRReferenceImageLibrary_get_Item_mBA540DAACBCA13289FA41DD2291435CBFE2F00F9 (XRReferenceImageLibrary_tC415743C1DDCE2331D5B0F159B2A1D72A70C44B2 * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Item_mB9758E724C2CACE0CC41D0AA2B78FCCB962CEA37_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
// if (count == 0)
int32_t L_0;
L_0 = XRReferenceImageLibrary_get_count_m23E1EA6C92988B7A11A51D532F4630CB7DE513BD(__this, /*hidden argument*/NULL);
if (L_0)
{
goto IL_0013;
}
}
{
// throw new IndexOutOfRangeException("The reference image library is empty; cannot index into it.");
IndexOutOfRangeException_tDC9EF7A0346CE39E54DA1083F07BE6DFC3CE2EDD * L_1 = (IndexOutOfRangeException_tDC9EF7A0346CE39E54DA1083F07BE6DFC3CE2EDD *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&IndexOutOfRangeException_tDC9EF7A0346CE39E54DA1083F07BE6DFC3CE2EDD_il2cpp_TypeInfo_var)));
IndexOutOfRangeException__ctor_mC5747EC0E0F49AAD1AD782ACC7A0CCD80D192FEF(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralE5ECD7F1FA08F134058D380D997446C6D15C2FC0)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XRReferenceImageLibrary_get_Item_mBA540DAACBCA13289FA41DD2291435CBFE2F00F9_RuntimeMethod_var)));
}
IL_0013:
{
// if (index < 0 || index >= count)
int32_t L_2 = ___index0;
if ((((int32_t)L_2) < ((int32_t)0)))
{
goto IL_0020;
}
}
{
int32_t L_3 = ___index0;
int32_t L_4;
L_4 = XRReferenceImageLibrary_get_count_m23E1EA6C92988B7A11A51D532F4630CB7DE513BD(__this, /*hidden argument*/NULL);
if ((((int32_t)L_3) < ((int32_t)L_4)))
{
goto IL_0043;
}
}
IL_0020:
{
// throw new IndexOutOfRangeException(string.Format("{0} is out of range. 'index' must be between 0 and {1}", index, count - 1));
int32_t L_5 = ___index0;
int32_t L_6 = L_5;
RuntimeObject * L_7 = Box(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var)), &L_6);
int32_t L_8;
L_8 = XRReferenceImageLibrary_get_count_m23E1EA6C92988B7A11A51D532F4630CB7DE513BD(__this, /*hidden argument*/NULL);
int32_t L_9 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_8, (int32_t)1));
RuntimeObject * L_10 = Box(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var)), &L_9);
String_t* L_11;
L_11 = String_Format_m8D1CB0410C35E052A53AE957C914C841E54BAB66(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral01CAFAD1F22E5D95AAF12FA8EE6DE7393938DC36)), L_7, L_10, /*hidden argument*/NULL);
IndexOutOfRangeException_tDC9EF7A0346CE39E54DA1083F07BE6DFC3CE2EDD * L_12 = (IndexOutOfRangeException_tDC9EF7A0346CE39E54DA1083F07BE6DFC3CE2EDD *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&IndexOutOfRangeException_tDC9EF7A0346CE39E54DA1083F07BE6DFC3CE2EDD_il2cpp_TypeInfo_var)));
IndexOutOfRangeException__ctor_mC5747EC0E0F49AAD1AD782ACC7A0CCD80D192FEF(L_12, L_11, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_12, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XRReferenceImageLibrary_get_Item_mBA540DAACBCA13289FA41DD2291435CBFE2F00F9_RuntimeMethod_var)));
}
IL_0043:
{
// return m_Images[index];
List_1_tBFEC44C63782254A7C0F22D20FC51F72002482EC * L_13 = __this->get_m_Images_6();
int32_t L_14 = ___index0;
NullCheck(L_13);
XRReferenceImage_tB1803A72EB581FB35B2CA944973679132A1D4467 L_15;
L_15 = List_1_get_Item_mB9758E724C2CACE0CC41D0AA2B78FCCB962CEA37_inline(L_13, L_14, /*hidden argument*/List_1_get_Item_mB9758E724C2CACE0CC41D0AA2B78FCCB962CEA37_RuntimeMethod_var);
return L_15;
}
}
// System.Int32 UnityEngine.XR.ARSubsystems.XRReferenceImageLibrary::indexOf(UnityEngine.XR.ARSubsystems.XRReferenceImage)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XRReferenceImageLibrary_indexOf_m1E9DB6343C72280F3837B3F41C1D7C455EAFA4D4 (XRReferenceImageLibrary_tC415743C1DDCE2331D5B0F159B2A1D72A70C44B2 * __this, XRReferenceImage_tB1803A72EB581FB35B2CA944973679132A1D4467 ___referenceImage0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_IndexOf_m66260729958DA566371F821C7BC904679A0D5745_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
// return m_Images.IndexOf(referenceImage);
List_1_tBFEC44C63782254A7C0F22D20FC51F72002482EC * L_0 = __this->get_m_Images_6();
XRReferenceImage_tB1803A72EB581FB35B2CA944973679132A1D4467 L_1 = ___referenceImage0;
NullCheck(L_0);
int32_t L_2;
L_2 = List_1_IndexOf_m66260729958DA566371F821C7BC904679A0D5745(L_0, L_1, /*hidden argument*/List_1_IndexOf_m66260729958DA566371F821C7BC904679A0D5745_RuntimeMethod_var);
return L_2;
}
}
// System.Guid UnityEngine.XR.ARSubsystems.XRReferenceImageLibrary::get_guid()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Guid_t XRReferenceImageLibrary_get_guid_m1B80F372AE1175A697DBA4C7F48F2E010DE0670C (XRReferenceImageLibrary_tC415743C1DDCE2331D5B0F159B2A1D72A70C44B2 * __this, const RuntimeMethod* method)
{
{
// public Guid guid => GuidUtil.Compose(m_GuidLow, m_GuidHigh);
uint64_t L_0 = __this->get_m_GuidLow_4();
uint64_t L_1 = __this->get_m_GuidHigh_5();
Guid_t L_2;
L_2 = GuidUtil_Compose_m0EE004B20CD802F981C34180EFA91C39A9400DCB(L_0, L_1, /*hidden argument*/NULL);
return L_2;
}
}
// System.Void UnityEngine.XR.ARSubsystems.XRReferenceImageLibrary::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRReferenceImageLibrary__ctor_m165A9ED1DC448CA4413E2055E7A8BA325FB9FF4C (XRReferenceImageLibrary_tC415743C1DDCE2331D5B0F159B2A1D72A70C44B2 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1__ctor_m07F165CAD958CA1F86EA27507BCC2528E3933D2B_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_tBFEC44C63782254A7C0F22D20FC51F72002482EC_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
// internal List<XRReferenceImage> m_Images = new List<XRReferenceImage>();
List_1_tBFEC44C63782254A7C0F22D20FC51F72002482EC * L_0 = (List_1_tBFEC44C63782254A7C0F22D20FC51F72002482EC *)il2cpp_codegen_object_new(List_1_tBFEC44C63782254A7C0F22D20FC51F72002482EC_il2cpp_TypeInfo_var);
List_1__ctor_m07F165CAD958CA1F86EA27507BCC2528E3933D2B(L_0, /*hidden argument*/List_1__ctor_m07F165CAD958CA1F86EA27507BCC2528E3933D2B_RuntimeMethod_var);
__this->set_m_Images_6(L_0);
ScriptableObject__ctor_m8DAE6CDCFA34E16F2543B02CC3669669FF203063(__this, /*hidden argument*/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
// Conversion methods for marshalling of: UnityEngine.XR.ARSubsystems.XRReferenceObject
IL2CPP_EXTERN_C void XRReferenceObject_t18877E1C9F50FF11192A86805D881349020032AE_marshal_pinvoke(const XRReferenceObject_t18877E1C9F50FF11192A86805D881349020032AE& unmarshaled, XRReferenceObject_t18877E1C9F50FF11192A86805D881349020032AE_marshaled_pinvoke& marshaled)
{
Exception_t* ___m_Entries_3Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'm_Entries' of type 'XRReferenceObject'.");
IL2CPP_RAISE_MANAGED_EXCEPTION(___m_Entries_3Exception, NULL);
}
IL2CPP_EXTERN_C void XRReferenceObject_t18877E1C9F50FF11192A86805D881349020032AE_marshal_pinvoke_back(const XRReferenceObject_t18877E1C9F50FF11192A86805D881349020032AE_marshaled_pinvoke& marshaled, XRReferenceObject_t18877E1C9F50FF11192A86805D881349020032AE& unmarshaled)
{
Exception_t* ___m_Entries_3Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'm_Entries' of type 'XRReferenceObject'.");
IL2CPP_RAISE_MANAGED_EXCEPTION(___m_Entries_3Exception, NULL);
}
// Conversion method for clean up from marshalling of: UnityEngine.XR.ARSubsystems.XRReferenceObject
IL2CPP_EXTERN_C void XRReferenceObject_t18877E1C9F50FF11192A86805D881349020032AE_marshal_pinvoke_cleanup(XRReferenceObject_t18877E1C9F50FF11192A86805D881349020032AE_marshaled_pinvoke& marshaled)
{
}
// Conversion methods for marshalling of: UnityEngine.XR.ARSubsystems.XRReferenceObject
IL2CPP_EXTERN_C void XRReferenceObject_t18877E1C9F50FF11192A86805D881349020032AE_marshal_com(const XRReferenceObject_t18877E1C9F50FF11192A86805D881349020032AE& unmarshaled, XRReferenceObject_t18877E1C9F50FF11192A86805D881349020032AE_marshaled_com& marshaled)
{
Exception_t* ___m_Entries_3Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'm_Entries' of type 'XRReferenceObject'.");
IL2CPP_RAISE_MANAGED_EXCEPTION(___m_Entries_3Exception, NULL);
}
IL2CPP_EXTERN_C void XRReferenceObject_t18877E1C9F50FF11192A86805D881349020032AE_marshal_com_back(const XRReferenceObject_t18877E1C9F50FF11192A86805D881349020032AE_marshaled_com& marshaled, XRReferenceObject_t18877E1C9F50FF11192A86805D881349020032AE& unmarshaled)
{
Exception_t* ___m_Entries_3Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'm_Entries' of type 'XRReferenceObject'.");
IL2CPP_RAISE_MANAGED_EXCEPTION(___m_Entries_3Exception, NULL);
}
// Conversion method for clean up from marshalling of: UnityEngine.XR.ARSubsystems.XRReferenceObject
IL2CPP_EXTERN_C void XRReferenceObject_t18877E1C9F50FF11192A86805D881349020032AE_marshal_com_cleanup(XRReferenceObject_t18877E1C9F50FF11192A86805D881349020032AE_marshaled_com& marshaled)
{
}
// System.Guid UnityEngine.XR.ARSubsystems.XRReferenceObject::get_guid()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Guid_t XRReferenceObject_get_guid_m5D1CC7D28AEF760CC4C8E7AEAE550549C879E204 (XRReferenceObject_t18877E1C9F50FF11192A86805D881349020032AE * __this, const RuntimeMethod* method)
{
{
// public Guid guid => GuidUtil.Compose(m_GuidLow, m_GuidHigh);
uint64_t L_0 = __this->get_m_GuidLow_0();
uint64_t L_1 = __this->get_m_GuidHigh_1();
Guid_t L_2;
L_2 = GuidUtil_Compose_m0EE004B20CD802F981C34180EFA91C39A9400DCB(L_0, L_1, /*hidden argument*/NULL);
return L_2;
}
}
IL2CPP_EXTERN_C Guid_t XRReferenceObject_get_guid_m5D1CC7D28AEF760CC4C8E7AEAE550549C879E204_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
XRReferenceObject_t18877E1C9F50FF11192A86805D881349020032AE * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XRReferenceObject_t18877E1C9F50FF11192A86805D881349020032AE *>(__this + _offset);
Guid_t _returnValue;
_returnValue = XRReferenceObject_get_guid_m5D1CC7D28AEF760CC4C8E7AEAE550549C879E204(_thisAdjusted, method);
return _returnValue;
}
// System.Boolean UnityEngine.XR.ARSubsystems.XRReferenceObject::Equals(UnityEngine.XR.ARSubsystems.XRReferenceObject)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XRReferenceObject_Equals_mE5200369D784FC38ACF7C16EAAC303D845B5F1B4 (XRReferenceObject_t18877E1C9F50FF11192A86805D881349020032AE * __this, XRReferenceObject_t18877E1C9F50FF11192A86805D881349020032AE ___other0, const RuntimeMethod* method)
{
{
// return
// (m_GuidLow == other.m_GuidLow) &&
// (m_GuidHigh == other.m_GuidHigh) &&
// string.Equals(m_Name, other.m_Name) &&
// ReferenceEquals(m_Entries, other.m_Entries);
uint64_t L_0 = __this->get_m_GuidLow_0();
XRReferenceObject_t18877E1C9F50FF11192A86805D881349020032AE L_1 = ___other0;
uint64_t L_2 = L_1.get_m_GuidLow_0();
if ((!(((uint64_t)L_0) == ((uint64_t)L_2))))
{
goto IL_003e;
}
}
{
uint64_t L_3 = __this->get_m_GuidHigh_1();
XRReferenceObject_t18877E1C9F50FF11192A86805D881349020032AE L_4 = ___other0;
uint64_t L_5 = L_4.get_m_GuidHigh_1();
if ((!(((uint64_t)L_3) == ((uint64_t)L_5))))
{
goto IL_003e;
}
}
{
String_t* L_6 = __this->get_m_Name_2();
XRReferenceObject_t18877E1C9F50FF11192A86805D881349020032AE L_7 = ___other0;
String_t* L_8 = L_7.get_m_Name_2();
bool L_9;
L_9 = String_Equals_mAFC6038D294F341434D9D67D7EADC7F97C556C9B(L_6, L_8, /*hidden argument*/NULL);
if (!L_9)
{
goto IL_003e;
}
}
{
List_1_tB23AEDE769BF4EA511C93F224596EF58939F8E5A * L_10 = __this->get_m_Entries_3();
XRReferenceObject_t18877E1C9F50FF11192A86805D881349020032AE L_11 = ___other0;
List_1_tB23AEDE769BF4EA511C93F224596EF58939F8E5A * L_12 = L_11.get_m_Entries_3();
return (bool)((((RuntimeObject*)(List_1_tB23AEDE769BF4EA511C93F224596EF58939F8E5A *)L_10) == ((RuntimeObject*)(List_1_tB23AEDE769BF4EA511C93F224596EF58939F8E5A *)L_12))? 1 : 0);
}
IL_003e:
{
return (bool)0;
}
}
IL2CPP_EXTERN_C bool XRReferenceObject_Equals_mE5200369D784FC38ACF7C16EAAC303D845B5F1B4_AdjustorThunk (RuntimeObject * __this, XRReferenceObject_t18877E1C9F50FF11192A86805D881349020032AE ___other0, const RuntimeMethod* method)
{
XRReferenceObject_t18877E1C9F50FF11192A86805D881349020032AE * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XRReferenceObject_t18877E1C9F50FF11192A86805D881349020032AE *>(__this + _offset);
bool _returnValue;
_returnValue = XRReferenceObject_Equals_mE5200369D784FC38ACF7C16EAAC303D845B5F1B4(_thisAdjusted, ___other0, method);
return _returnValue;
}
// System.Int32 UnityEngine.XR.ARSubsystems.XRReferenceObject::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XRReferenceObject_GetHashCode_m088BCD3E046B562DDD8CBFB25AEBF9C5747E2A7C (XRReferenceObject_t18877E1C9F50FF11192A86805D881349020032AE * __this, const RuntimeMethod* method)
{
{
// var hash = m_GuidLow.GetHashCode();
uint64_t* L_0 = __this->get_address_of_m_GuidLow_0();
int32_t L_1;
L_1 = UInt64_GetHashCode_mCDF662897A3F02CED11A9F9E66C5BF4E28C02B33((uint64_t*)L_0, /*hidden argument*/NULL);
// hash = hash * 486187739 + m_GuidHigh.GetHashCode();
uint64_t* L_2 = __this->get_address_of_m_GuidHigh_1();
int32_t L_3;
L_3 = UInt64_GetHashCode_mCDF662897A3F02CED11A9F9E66C5BF4E28C02B33((uint64_t*)L_2, /*hidden argument*/NULL);
// hash = hash * 486187739 + HashCode.ReferenceHash(m_Name);
String_t* L_4 = __this->get_m_Name_2();
int32_t L_5;
L_5 = HashCode_ReferenceHash_mE6CC6EA3C87D9F040876D66CF582D6FF68FC359C(L_4, /*hidden argument*/NULL);
// hash = hash * 486187739 + HashCode.ReferenceHash(m_Entries);
List_1_tB23AEDE769BF4EA511C93F224596EF58939F8E5A * L_6 = __this->get_m_Entries_3();
int32_t L_7;
L_7 = HashCode_ReferenceHash_mE6CC6EA3C87D9F040876D66CF582D6FF68FC359C(L_6, /*hidden argument*/NULL);
// return hash;
return ((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)L_1, (int32_t)((int32_t)486187739))), (int32_t)L_3)), (int32_t)((int32_t)486187739))), (int32_t)L_5)), (int32_t)((int32_t)486187739))), (int32_t)L_7));
}
}
IL2CPP_EXTERN_C int32_t XRReferenceObject_GetHashCode_m088BCD3E046B562DDD8CBFB25AEBF9C5747E2A7C_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
XRReferenceObject_t18877E1C9F50FF11192A86805D881349020032AE * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XRReferenceObject_t18877E1C9F50FF11192A86805D881349020032AE *>(__this + _offset);
int32_t _returnValue;
_returnValue = XRReferenceObject_GetHashCode_m088BCD3E046B562DDD8CBFB25AEBF9C5747E2A7C(_thisAdjusted, method);
return _returnValue;
}
// System.Boolean UnityEngine.XR.ARSubsystems.XRReferenceObject::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XRReferenceObject_Equals_m63933178BE0E783B54B6A983BD3B5ADDF0817ADA (XRReferenceObject_t18877E1C9F50FF11192A86805D881349020032AE * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XRReferenceObject_t18877E1C9F50FF11192A86805D881349020032AE_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
// public override bool Equals(object obj) => obj is XRReferenceObject && Equals((XRReferenceObject)obj);
RuntimeObject * L_0 = ___obj0;
if (!((RuntimeObject *)IsInstSealed((RuntimeObject*)L_0, XRReferenceObject_t18877E1C9F50FF11192A86805D881349020032AE_il2cpp_TypeInfo_var)))
{
goto IL_0015;
}
}
{
RuntimeObject * L_1 = ___obj0;
bool L_2;
L_2 = XRReferenceObject_Equals_mE5200369D784FC38ACF7C16EAAC303D845B5F1B4((XRReferenceObject_t18877E1C9F50FF11192A86805D881349020032AE *)__this, ((*(XRReferenceObject_t18877E1C9F50FF11192A86805D881349020032AE *)((XRReferenceObject_t18877E1C9F50FF11192A86805D881349020032AE *)UnBox(L_1, XRReferenceObject_t18877E1C9F50FF11192A86805D881349020032AE_il2cpp_TypeInfo_var)))), /*hidden argument*/NULL);
return L_2;
}
IL_0015:
{
return (bool)0;
}
}
IL2CPP_EXTERN_C bool XRReferenceObject_Equals_m63933178BE0E783B54B6A983BD3B5ADDF0817ADA_AdjustorThunk (RuntimeObject * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
XRReferenceObject_t18877E1C9F50FF11192A86805D881349020032AE * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XRReferenceObject_t18877E1C9F50FF11192A86805D881349020032AE *>(__this + _offset);
bool _returnValue;
_returnValue = XRReferenceObject_Equals_m63933178BE0E783B54B6A983BD3B5ADDF0817ADA(_thisAdjusted, ___obj0, 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
// System.Void UnityEngine.XR.ARSubsystems.XRReferenceObjectEntry::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRReferenceObjectEntry__ctor_m83901C9E2F4E96DE96A5B2C1940A4A26FA1D54CB (XRReferenceObjectEntry_t873762C96E954D47B49C3B36CABD423408DC72D2 * __this, const RuntimeMethod* method)
{
{
ScriptableObject__ctor_m8DAE6CDCFA34E16F2543B02CC3669669FF203063(__this, /*hidden argument*/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
// System.Int32 UnityEngine.XR.ARSubsystems.XRReferenceObjectLibrary::get_count()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XRReferenceObjectLibrary_get_count_mEF484EA0E2C038259FE773DC915B3EF49B4F1C1A (XRReferenceObjectLibrary_t07704B2996E507F23EE3C99CFC3BB73A83C99A7C * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Count_m84A3D8A14DE6FA8E93A6DBA5F857B6E2861FF246_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
// public int count { get { return m_ReferenceObjects.Count; } }
List_1_t3A1F09045329A30B2867F24E69EC807BE36BEA9B * L_0 = __this->get_m_ReferenceObjects_6();
NullCheck(L_0);
int32_t L_1;
L_1 = List_1_get_Count_m84A3D8A14DE6FA8E93A6DBA5F857B6E2861FF246_inline(L_0, /*hidden argument*/List_1_get_Count_m84A3D8A14DE6FA8E93A6DBA5F857B6E2861FF246_RuntimeMethod_var);
return L_1;
}
}
// System.Collections.Generic.List`1/Enumerator<UnityEngine.XR.ARSubsystems.XRReferenceObject> UnityEngine.XR.ARSubsystems.XRReferenceObjectLibrary::GetEnumerator()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Enumerator_t70FBF5DA5BEDE113A92C759B1356E6AA38D54708 XRReferenceObjectLibrary_GetEnumerator_mCCCCFBD0A4F304D789401FD7EF3938193190B4AF (XRReferenceObjectLibrary_t07704B2996E507F23EE3C99CFC3BB73A83C99A7C * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_GetEnumerator_m45E71AF4863349632BEE157CA69F3A54CF72443F_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
// return m_ReferenceObjects.GetEnumerator();
List_1_t3A1F09045329A30B2867F24E69EC807BE36BEA9B * L_0 = __this->get_m_ReferenceObjects_6();
NullCheck(L_0);
Enumerator_t70FBF5DA5BEDE113A92C759B1356E6AA38D54708 L_1;
L_1 = List_1_GetEnumerator_m45E71AF4863349632BEE157CA69F3A54CF72443F(L_0, /*hidden argument*/List_1_GetEnumerator_m45E71AF4863349632BEE157CA69F3A54CF72443F_RuntimeMethod_var);
return L_1;
}
}
// UnityEngine.XR.ARSubsystems.XRReferenceObject UnityEngine.XR.ARSubsystems.XRReferenceObjectLibrary::get_Item(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XRReferenceObject_t18877E1C9F50FF11192A86805D881349020032AE XRReferenceObjectLibrary_get_Item_m08D1081C37C23D5ECAD98FD63A5E6B4363D3B96D (XRReferenceObjectLibrary_t07704B2996E507F23EE3C99CFC3BB73A83C99A7C * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Item_m198C10E9F0F98950D2C37B38E085E659EBF05243_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
// return m_ReferenceObjects[index];
List_1_t3A1F09045329A30B2867F24E69EC807BE36BEA9B * L_0 = __this->get_m_ReferenceObjects_6();
int32_t L_1 = ___index0;
NullCheck(L_0);
XRReferenceObject_t18877E1C9F50FF11192A86805D881349020032AE L_2;
L_2 = List_1_get_Item_m198C10E9F0F98950D2C37B38E085E659EBF05243_inline(L_0, L_1, /*hidden argument*/List_1_get_Item_m198C10E9F0F98950D2C37B38E085E659EBF05243_RuntimeMethod_var);
return L_2;
}
}
// System.Guid UnityEngine.XR.ARSubsystems.XRReferenceObjectLibrary::get_guid()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Guid_t XRReferenceObjectLibrary_get_guid_m47C1EC317BB367A2C7B631E20D0755C617F23728 (XRReferenceObjectLibrary_t07704B2996E507F23EE3C99CFC3BB73A83C99A7C * __this, const RuntimeMethod* method)
{
{
// get { return GuidUtil.Compose(m_GuidLow, m_GuidHigh); }
uint64_t L_0 = __this->get_m_GuidLow_4();
uint64_t L_1 = __this->get_m_GuidHigh_5();
Guid_t L_2;
L_2 = GuidUtil_Compose_m0EE004B20CD802F981C34180EFA91C39A9400DCB(L_0, L_1, /*hidden argument*/NULL);
return L_2;
}
}
// System.Int32 UnityEngine.XR.ARSubsystems.XRReferenceObjectLibrary::indexOf(UnityEngine.XR.ARSubsystems.XRReferenceObject)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XRReferenceObjectLibrary_indexOf_m723FA9F0217C8122BDA75AAFB36EB622FA46DABD (XRReferenceObjectLibrary_t07704B2996E507F23EE3C99CFC3BB73A83C99A7C * __this, XRReferenceObject_t18877E1C9F50FF11192A86805D881349020032AE ___referenceObject0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_IndexOf_m379AA5FE2596B5AD6A4E1EF381A223C3A54CE492_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
// return m_ReferenceObjects.IndexOf(referenceObject);
List_1_t3A1F09045329A30B2867F24E69EC807BE36BEA9B * L_0 = __this->get_m_ReferenceObjects_6();
XRReferenceObject_t18877E1C9F50FF11192A86805D881349020032AE L_1 = ___referenceObject0;
NullCheck(L_0);
int32_t L_2;
L_2 = List_1_IndexOf_m379AA5FE2596B5AD6A4E1EF381A223C3A54CE492(L_0, L_1, /*hidden argument*/List_1_IndexOf_m379AA5FE2596B5AD6A4E1EF381A223C3A54CE492_RuntimeMethod_var);
return L_2;
}
}
// System.Void UnityEngine.XR.ARSubsystems.XRReferenceObjectLibrary::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRReferenceObjectLibrary__ctor_m4FA11F97BB6F008011D76A38C1DFD1DD76CA616D (XRReferenceObjectLibrary_t07704B2996E507F23EE3C99CFC3BB73A83C99A7C * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1__ctor_m78DBF761B0A442EE07D9A114BC9981A3866E72CC_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_t3A1F09045329A30B2867F24E69EC807BE36BEA9B_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
// internal List<XRReferenceObject> m_ReferenceObjects = new List<XRReferenceObject>();
List_1_t3A1F09045329A30B2867F24E69EC807BE36BEA9B * L_0 = (List_1_t3A1F09045329A30B2867F24E69EC807BE36BEA9B *)il2cpp_codegen_object_new(List_1_t3A1F09045329A30B2867F24E69EC807BE36BEA9B_il2cpp_TypeInfo_var);
List_1__ctor_m78DBF761B0A442EE07D9A114BC9981A3866E72CC(L_0, /*hidden argument*/List_1__ctor_m78DBF761B0A442EE07D9A114BC9981A3866E72CC_RuntimeMethod_var);
__this->set_m_ReferenceObjects_6(L_0);
ScriptableObject__ctor_m8DAE6CDCFA34E16F2543B02CC3669669FF203063(__this, /*hidden argument*/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
// UnityEngine.XR.ARSubsystems.XRReferencePoint UnityEngine.XR.ARSubsystems.XRReferencePoint::get_defaultValue()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XRReferencePoint_tF3ACF949B4AE1EC67F527F5D30DD8B912A814634 XRReferencePoint_get_defaultValue_m9AF89D3F11BF14D60BDC4FB2F360911F56E17013 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XRReferencePoint_tF3ACF949B4AE1EC67F527F5D30DD8B912A814634_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
// public static XRReferencePoint defaultValue => s_Default;
IL2CPP_RUNTIME_CLASS_INIT(XRReferencePoint_tF3ACF949B4AE1EC67F527F5D30DD8B912A814634_il2cpp_TypeInfo_var);
XRReferencePoint_tF3ACF949B4AE1EC67F527F5D30DD8B912A814634 L_0 = ((XRReferencePoint_tF3ACF949B4AE1EC67F527F5D30DD8B912A814634_StaticFields*)il2cpp_codegen_static_fields_for(XRReferencePoint_tF3ACF949B4AE1EC67F527F5D30DD8B912A814634_il2cpp_TypeInfo_var))->get_s_Default_0();
return L_0;
}
}
// UnityEngine.XR.ARSubsystems.TrackableId UnityEngine.XR.ARSubsystems.XRReferencePoint::get_trackableId()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B XRReferencePoint_get_trackableId_mEE1B3349EA8F19E94BF8B76CBB644822317D2758 (XRReferencePoint_tF3ACF949B4AE1EC67F527F5D30DD8B912A814634 * __this, const RuntimeMethod* method)
{
{
// public TrackableId trackableId => m_Id;
TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B L_0 = __this->get_m_Id_1();
return L_0;
}
}
IL2CPP_EXTERN_C TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B XRReferencePoint_get_trackableId_mEE1B3349EA8F19E94BF8B76CBB644822317D2758_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
XRReferencePoint_tF3ACF949B4AE1EC67F527F5D30DD8B912A814634 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XRReferencePoint_tF3ACF949B4AE1EC67F527F5D30DD8B912A814634 *>(__this + _offset);
TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B _returnValue;
_returnValue = XRReferencePoint_get_trackableId_mEE1B3349EA8F19E94BF8B76CBB644822317D2758_inline(_thisAdjusted, method);
return _returnValue;
}
// UnityEngine.Pose UnityEngine.XR.ARSubsystems.XRReferencePoint::get_pose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A XRReferencePoint_get_pose_mFDB2701C343707F0FA479C2C775B77BEC2092D61 (XRReferencePoint_tF3ACF949B4AE1EC67F527F5D30DD8B912A814634 * __this, const RuntimeMethod* method)
{
{
// public Pose pose => m_Pose;
Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A L_0 = __this->get_m_Pose_2();
return L_0;
}
}
IL2CPP_EXTERN_C Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A XRReferencePoint_get_pose_mFDB2701C343707F0FA479C2C775B77BEC2092D61_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
XRReferencePoint_tF3ACF949B4AE1EC67F527F5D30DD8B912A814634 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XRReferencePoint_tF3ACF949B4AE1EC67F527F5D30DD8B912A814634 *>(__this + _offset);
Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A _returnValue;
_returnValue = XRReferencePoint_get_pose_mFDB2701C343707F0FA479C2C775B77BEC2092D61_inline(_thisAdjusted, method);
return _returnValue;
}
// UnityEngine.XR.ARSubsystems.TrackingState UnityEngine.XR.ARSubsystems.XRReferencePoint::get_trackingState()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XRReferencePoint_get_trackingState_m9C6DD336B0E91F39FA04F298B0543148433F11B2 (XRReferencePoint_tF3ACF949B4AE1EC67F527F5D30DD8B912A814634 * __this, const RuntimeMethod* method)
{
{
// public TrackingState trackingState => m_TrackingState;
int32_t L_0 = __this->get_m_TrackingState_3();
return L_0;
}
}
IL2CPP_EXTERN_C int32_t XRReferencePoint_get_trackingState_m9C6DD336B0E91F39FA04F298B0543148433F11B2_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
XRReferencePoint_tF3ACF949B4AE1EC67F527F5D30DD8B912A814634 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XRReferencePoint_tF3ACF949B4AE1EC67F527F5D30DD8B912A814634 *>(__this + _offset);
int32_t _returnValue;
_returnValue = XRReferencePoint_get_trackingState_m9C6DD336B0E91F39FA04F298B0543148433F11B2_inline(_thisAdjusted, method);
return _returnValue;
}
// System.IntPtr UnityEngine.XR.ARSubsystems.XRReferencePoint::get_nativePtr()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR intptr_t XRReferencePoint_get_nativePtr_m80EFF4D6D345E7B7CC5687B506C410C84B09EFBA (XRReferencePoint_tF3ACF949B4AE1EC67F527F5D30DD8B912A814634 * __this, const RuntimeMethod* method)
{
{
// public IntPtr nativePtr => m_NativePtr;
intptr_t L_0 = __this->get_m_NativePtr_4();
return (intptr_t)L_0;
}
}
IL2CPP_EXTERN_C intptr_t XRReferencePoint_get_nativePtr_m80EFF4D6D345E7B7CC5687B506C410C84B09EFBA_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
XRReferencePoint_tF3ACF949B4AE1EC67F527F5D30DD8B912A814634 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XRReferencePoint_tF3ACF949B4AE1EC67F527F5D30DD8B912A814634 *>(__this + _offset);
intptr_t _returnValue;
_returnValue = XRReferencePoint_get_nativePtr_m80EFF4D6D345E7B7CC5687B506C410C84B09EFBA_inline(_thisAdjusted, method);
return _returnValue;
}
// System.Guid UnityEngine.XR.ARSubsystems.XRReferencePoint::get_sessionId()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Guid_t XRReferencePoint_get_sessionId_mC498F0CAE614B4048B79742479252D923D4FED46 (XRReferencePoint_tF3ACF949B4AE1EC67F527F5D30DD8B912A814634 * __this, const RuntimeMethod* method)
{
{
// public Guid sessionId => m_SessionId;
Guid_t L_0 = __this->get_m_SessionId_5();
return L_0;
}
}
IL2CPP_EXTERN_C Guid_t XRReferencePoint_get_sessionId_mC498F0CAE614B4048B79742479252D923D4FED46_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
XRReferencePoint_tF3ACF949B4AE1EC67F527F5D30DD8B912A814634 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XRReferencePoint_tF3ACF949B4AE1EC67F527F5D30DD8B912A814634 *>(__this + _offset);
Guid_t _returnValue;
_returnValue = XRReferencePoint_get_sessionId_mC498F0CAE614B4048B79742479252D923D4FED46_inline(_thisAdjusted, method);
return _returnValue;
}
// System.Int32 UnityEngine.XR.ARSubsystems.XRReferencePoint::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XRReferencePoint_GetHashCode_mD1C610489F910DB8AF23C5ED39B3930487B2F450 (XRReferencePoint_tF3ACF949B4AE1EC67F527F5D30DD8B912A814634 * __this, const RuntimeMethod* method)
{
{
// var hashCode = m_Id.GetHashCode();
TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B * L_0 = __this->get_address_of_m_Id_1();
int32_t L_1;
L_1 = TrackableId_GetHashCode_mFD297FC6DB40FB5B28C6E9B7A2CF2785D75C4E86((TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B *)L_0, /*hidden argument*/NULL);
// hashCode = hashCode * 486187739 + m_Pose.GetHashCode();
Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A * L_2 = __this->get_address_of_m_Pose_2();
int32_t L_3;
L_3 = Pose_GetHashCode_mE1DD7FBCCB1C979B252F0B117276BA11CF4D2367((Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A *)L_2, /*hidden argument*/NULL);
// hashCode = hashCode * 486187739 + m_TrackingState.GetHashCode();
int32_t* L_4 = __this->get_address_of_m_TrackingState_3();
int32_t L_5;
L_5 = Int32_GetHashCode_mEDD3F492A5F7CF021125AE3F38E2B8F8743FC667((int32_t*)L_4, /*hidden argument*/NULL);
// hashCode = hashCode * 486187739 + m_NativePtr.GetHashCode();
intptr_t* L_6 = __this->get_address_of_m_NativePtr_4();
int32_t L_7;
L_7 = IntPtr_GetHashCode_m55E65FB52EFE7C0EBC3C28E66A5D7542F3B1D35D((intptr_t*)L_6, /*hidden argument*/NULL);
// hashCode = hashCode * 486187739 + m_SessionId.GetHashCode();
Guid_t * L_8 = __this->get_address_of_m_SessionId_5();
int32_t L_9;
L_9 = Guid_GetHashCode_mD32F5054E937C98B3D082594B3849808F1E92AE7((Guid_t *)L_8, /*hidden argument*/NULL);
// return hashCode;
return ((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)L_1, (int32_t)((int32_t)486187739))), (int32_t)L_3)), (int32_t)((int32_t)486187739))), (int32_t)L_5)), (int32_t)((int32_t)486187739))), (int32_t)L_7)), (int32_t)((int32_t)486187739))), (int32_t)L_9));
}
}
IL2CPP_EXTERN_C int32_t XRReferencePoint_GetHashCode_mD1C610489F910DB8AF23C5ED39B3930487B2F450_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
XRReferencePoint_tF3ACF949B4AE1EC67F527F5D30DD8B912A814634 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XRReferencePoint_tF3ACF949B4AE1EC67F527F5D30DD8B912A814634 *>(__this + _offset);
int32_t _returnValue;
_returnValue = XRReferencePoint_GetHashCode_mD1C610489F910DB8AF23C5ED39B3930487B2F450(_thisAdjusted, method);
return _returnValue;
}
// System.Boolean UnityEngine.XR.ARSubsystems.XRReferencePoint::Equals(UnityEngine.XR.ARSubsystems.XRReferencePoint)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XRReferencePoint_Equals_m139BA3698F72E149B33FB577B616A0043DBBB8E6 (XRReferencePoint_tF3ACF949B4AE1EC67F527F5D30DD8B912A814634 * __this, XRReferencePoint_tF3ACF949B4AE1EC67F527F5D30DD8B912A814634 ___other0, const RuntimeMethod* method)
{
{
// return
// m_Id.Equals(other.m_Id) &&
// m_Pose.Equals(other.m_Pose) &&
// m_TrackingState == other.m_TrackingState &&
// m_NativePtr == other.m_NativePtr &&
// m_SessionId.Equals(other.m_SessionId);
TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B * L_0 = __this->get_address_of_m_Id_1();
XRReferencePoint_tF3ACF949B4AE1EC67F527F5D30DD8B912A814634 L_1 = ___other0;
TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B L_2 = L_1.get_m_Id_1();
bool L_3;
L_3 = TrackableId_Equals_m1DF35616359175E3D66DE18250E8CDA1E6462B06((TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B *)L_0, L_2, /*hidden argument*/NULL);
if (!L_3)
{
goto IL_0059;
}
}
{
Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A * L_4 = __this->get_address_of_m_Pose_2();
XRReferencePoint_tF3ACF949B4AE1EC67F527F5D30DD8B912A814634 L_5 = ___other0;
Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A L_6 = L_5.get_m_Pose_2();
bool L_7;
L_7 = Pose_Equals_mFAE0041090F2032B8FCE63A0F289DD206134BF15((Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A *)L_4, L_6, /*hidden argument*/NULL);
if (!L_7)
{
goto IL_0059;
}
}
{
int32_t L_8 = __this->get_m_TrackingState_3();
XRReferencePoint_tF3ACF949B4AE1EC67F527F5D30DD8B912A814634 L_9 = ___other0;
int32_t L_10 = L_9.get_m_TrackingState_3();
if ((!(((uint32_t)L_8) == ((uint32_t)L_10))))
{
goto IL_0059;
}
}
{
intptr_t L_11 = __this->get_m_NativePtr_4();
XRReferencePoint_tF3ACF949B4AE1EC67F527F5D30DD8B912A814634 L_12 = ___other0;
intptr_t L_13 = L_12.get_m_NativePtr_4();
bool L_14;
L_14 = IntPtr_op_Equality_mD94F3FE43A65684EFF984A7B95E70D2520C0AC73((intptr_t)L_11, (intptr_t)L_13, /*hidden argument*/NULL);
if (!L_14)
{
goto IL_0059;
}
}
{
Guid_t * L_15 = __this->get_address_of_m_SessionId_5();
XRReferencePoint_tF3ACF949B4AE1EC67F527F5D30DD8B912A814634 L_16 = ___other0;
Guid_t L_17 = L_16.get_m_SessionId_5();
bool L_18;
L_18 = Guid_Equals_m602304DBC4842AB53670762A6DB52D30C3973258((Guid_t *)L_15, L_17, /*hidden argument*/NULL);
return L_18;
}
IL_0059:
{
return (bool)0;
}
}
IL2CPP_EXTERN_C bool XRReferencePoint_Equals_m139BA3698F72E149B33FB577B616A0043DBBB8E6_AdjustorThunk (RuntimeObject * __this, XRReferencePoint_tF3ACF949B4AE1EC67F527F5D30DD8B912A814634 ___other0, const RuntimeMethod* method)
{
XRReferencePoint_tF3ACF949B4AE1EC67F527F5D30DD8B912A814634 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XRReferencePoint_tF3ACF949B4AE1EC67F527F5D30DD8B912A814634 *>(__this + _offset);
bool _returnValue;
_returnValue = XRReferencePoint_Equals_m139BA3698F72E149B33FB577B616A0043DBBB8E6(_thisAdjusted, ___other0, method);
return _returnValue;
}
// System.Boolean UnityEngine.XR.ARSubsystems.XRReferencePoint::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XRReferencePoint_Equals_m464FBE4D3BF000716BC20737865CC263128FCF9B (XRReferencePoint_tF3ACF949B4AE1EC67F527F5D30DD8B912A814634 * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XRReferencePoint_tF3ACF949B4AE1EC67F527F5D30DD8B912A814634_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
// public override bool Equals(object obj) => obj is XRReferencePoint && Equals((XRReferencePoint)obj);
RuntimeObject * L_0 = ___obj0;
if (!((RuntimeObject *)IsInstSealed((RuntimeObject*)L_0, XRReferencePoint_tF3ACF949B4AE1EC67F527F5D30DD8B912A814634_il2cpp_TypeInfo_var)))
{
goto IL_0015;
}
}
{
RuntimeObject * L_1 = ___obj0;
bool L_2;
L_2 = XRReferencePoint_Equals_m139BA3698F72E149B33FB577B616A0043DBBB8E6((XRReferencePoint_tF3ACF949B4AE1EC67F527F5D30DD8B912A814634 *)__this, ((*(XRReferencePoint_tF3ACF949B4AE1EC67F527F5D30DD8B912A814634 *)((XRReferencePoint_tF3ACF949B4AE1EC67F527F5D30DD8B912A814634 *)UnBox(L_1, XRReferencePoint_tF3ACF949B4AE1EC67F527F5D30DD8B912A814634_il2cpp_TypeInfo_var)))), /*hidden argument*/NULL);
return L_2;
}
IL_0015:
{
return (bool)0;
}
}
IL2CPP_EXTERN_C bool XRReferencePoint_Equals_m464FBE4D3BF000716BC20737865CC263128FCF9B_AdjustorThunk (RuntimeObject * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
XRReferencePoint_tF3ACF949B4AE1EC67F527F5D30DD8B912A814634 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XRReferencePoint_tF3ACF949B4AE1EC67F527F5D30DD8B912A814634 *>(__this + _offset);
bool _returnValue;
_returnValue = XRReferencePoint_Equals_m464FBE4D3BF000716BC20737865CC263128FCF9B(_thisAdjusted, ___obj0, method);
return _returnValue;
}
// System.Void UnityEngine.XR.ARSubsystems.XRReferencePoint::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRReferencePoint__cctor_m14BE01E3A1C266EC61D10C6C8AD23F89DFA7594C (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Guid_t_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XRReferencePoint_tF3ACF949B4AE1EC67F527F5D30DD8B912A814634_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
XRReferencePoint_tF3ACF949B4AE1EC67F527F5D30DD8B912A814634 V_0;
memset((&V_0), 0, sizeof(V_0));
{
// static readonly XRReferencePoint s_Default = new XRReferencePoint
// {
// m_Id = TrackableId.invalidId,
// m_Pose = Pose.identity,
// m_SessionId = Guid.Empty
// };
il2cpp_codegen_initobj((&V_0), sizeof(XRReferencePoint_tF3ACF949B4AE1EC67F527F5D30DD8B912A814634 ));
IL2CPP_RUNTIME_CLASS_INIT(TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B_il2cpp_TypeInfo_var);
TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B L_0;
L_0 = TrackableId_get_invalidId_m06B698EFFA7748E185299C72B5CEC1AA5B221F85_inline(/*hidden argument*/NULL);
(&V_0)->set_m_Id_1(L_0);
IL2CPP_RUNTIME_CLASS_INIT(Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A_il2cpp_TypeInfo_var);
Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A L_1;
L_1 = Pose_get_identity_m334B16AC3024785914BCC5A2B949750A010878BF(/*hidden argument*/NULL);
(&V_0)->set_m_Pose_2(L_1);
IL2CPP_RUNTIME_CLASS_INIT(Guid_t_il2cpp_TypeInfo_var);
Guid_t L_2 = ((Guid_t_StaticFields*)il2cpp_codegen_static_fields_for(Guid_t_il2cpp_TypeInfo_var))->get_Empty_0();
(&V_0)->set_m_SessionId_5(L_2);
XRReferencePoint_tF3ACF949B4AE1EC67F527F5D30DD8B912A814634 L_3 = V_0;
((XRReferencePoint_tF3ACF949B4AE1EC67F527F5D30DD8B912A814634_StaticFields*)il2cpp_codegen_static_fields_for(XRReferencePoint_tF3ACF949B4AE1EC67F527F5D30DD8B912A814634_il2cpp_TypeInfo_var))->set_s_Default_0(L_3);
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
// UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.XRReferencePoint> UnityEngine.XR.ARSubsystems.XRReferencePointSubsystem::GetChanges(Unity.Collections.Allocator)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TrackableChanges_1_t4F3E80A7CED9B2D7CD7F28650988E9EE62523358 XRReferencePointSubsystem_GetChanges_m9F0EC9E0522340CBD75626D185D848CFBFE3F456 (XRReferencePointSubsystem_t2EF6E3F26C69D006F83E8E837FB60461D8033634 * __this, int32_t ___allocator0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SubsystemWithProvider_3_get_provider_m54FA9023920512A3EC6956B1E999FFA426604CD8_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XRReferencePoint_tF3ACF949B4AE1EC67F527F5D30DD8B912A814634_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
// if (!running)
bool L_0;
L_0 = SubsystemWithProvider_get_running_m42399652EC4AB466AFBAC9035FA77C1BD6C72406_inline(__this, /*hidden argument*/NULL);
if (L_0)
{
goto IL_0013;
}
}
{
// throw new InvalidOperationException("Can't call \"GetChanges\" without \"Start\"ing the reference-point subsystem!");
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_1 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7DDE72F2A774F9DBACCB80FF4D0729AB6C3FD6CE)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XRReferencePointSubsystem_GetChanges_m9F0EC9E0522340CBD75626D185D848CFBFE3F456_RuntimeMethod_var)));
}
IL_0013:
{
// var changes = provider.GetChanges(XRReferencePoint.defaultValue, allocator);
Provider_t7974F3BD624EC305575E361EE0BCAAA3DC5B253C * L_2;
L_2 = SubsystemWithProvider_3_get_provider_m54FA9023920512A3EC6956B1E999FFA426604CD8_inline(__this, /*hidden argument*/SubsystemWithProvider_3_get_provider_m54FA9023920512A3EC6956B1E999FFA426604CD8_RuntimeMethod_var);
IL2CPP_RUNTIME_CLASS_INIT(XRReferencePoint_tF3ACF949B4AE1EC67F527F5D30DD8B912A814634_il2cpp_TypeInfo_var);
XRReferencePoint_tF3ACF949B4AE1EC67F527F5D30DD8B912A814634 L_3;
L_3 = XRReferencePoint_get_defaultValue_m9AF89D3F11BF14D60BDC4FB2F360911F56E17013_inline(/*hidden argument*/NULL);
int32_t L_4 = ___allocator0;
NullCheck(L_2);
TrackableChanges_1_t4F3E80A7CED9B2D7CD7F28650988E9EE62523358 L_5;
L_5 = VirtualFuncInvoker2< TrackableChanges_1_t4F3E80A7CED9B2D7CD7F28650988E9EE62523358 , XRReferencePoint_tF3ACF949B4AE1EC67F527F5D30DD8B912A814634 , int32_t >::Invoke(8 /* UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.XRReferencePoint> UnityEngine.XR.ARSubsystems.XRReferencePointSubsystem/Provider::GetChanges(UnityEngine.XR.ARSubsystems.XRReferencePoint,Unity.Collections.Allocator) */, L_2, L_3, L_4);
// return changes;
return L_5;
}
}
// System.Boolean UnityEngine.XR.ARSubsystems.XRReferencePointSubsystem::TryAddReferencePoint(UnityEngine.Pose,UnityEngine.XR.ARSubsystems.XRReferencePoint&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XRReferencePointSubsystem_TryAddReferencePoint_m671606BA15B6A84BB3637C20C72387772A9CCF80 (XRReferencePointSubsystem_t2EF6E3F26C69D006F83E8E837FB60461D8033634 * __this, Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A ___pose0, XRReferencePoint_tF3ACF949B4AE1EC67F527F5D30DD8B912A814634 * ___referencePoint1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SubsystemWithProvider_3_get_provider_m54FA9023920512A3EC6956B1E999FFA426604CD8_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
// return provider.TryAddReferencePoint(pose, out referencePoint);
Provider_t7974F3BD624EC305575E361EE0BCAAA3DC5B253C * L_0;
L_0 = SubsystemWithProvider_3_get_provider_m54FA9023920512A3EC6956B1E999FFA426604CD8_inline(__this, /*hidden argument*/SubsystemWithProvider_3_get_provider_m54FA9023920512A3EC6956B1E999FFA426604CD8_RuntimeMethod_var);
Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A L_1 = ___pose0;
XRReferencePoint_tF3ACF949B4AE1EC67F527F5D30DD8B912A814634 * L_2 = ___referencePoint1;
NullCheck(L_0);
bool L_3;
L_3 = VirtualFuncInvoker2< bool, Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A , XRReferencePoint_tF3ACF949B4AE1EC67F527F5D30DD8B912A814634 * >::Invoke(9 /* System.Boolean UnityEngine.XR.ARSubsystems.XRReferencePointSubsystem/Provider::TryAddReferencePoint(UnityEngine.Pose,UnityEngine.XR.ARSubsystems.XRReferencePoint&) */, L_0, L_1, (XRReferencePoint_tF3ACF949B4AE1EC67F527F5D30DD8B912A814634 *)L_2);
return L_3;
}
}
// System.Boolean UnityEngine.XR.ARSubsystems.XRReferencePointSubsystem::TryAttachReferencePoint(UnityEngine.XR.ARSubsystems.TrackableId,UnityEngine.Pose,UnityEngine.XR.ARSubsystems.XRReferencePoint&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XRReferencePointSubsystem_TryAttachReferencePoint_m88BA8C12582778654F08A7906AB34C3AE89274BA (XRReferencePointSubsystem_t2EF6E3F26C69D006F83E8E837FB60461D8033634 * __this, TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B ___trackableToAffix0, Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A ___pose1, XRReferencePoint_tF3ACF949B4AE1EC67F527F5D30DD8B912A814634 * ___referencePoint2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SubsystemWithProvider_3_get_provider_m54FA9023920512A3EC6956B1E999FFA426604CD8_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
// return provider.TryAttachReferencePoint(trackableToAffix, pose, out referencePoint);
Provider_t7974F3BD624EC305575E361EE0BCAAA3DC5B253C * L_0;
L_0 = SubsystemWithProvider_3_get_provider_m54FA9023920512A3EC6956B1E999FFA426604CD8_inline(__this, /*hidden argument*/SubsystemWithProvider_3_get_provider_m54FA9023920512A3EC6956B1E999FFA426604CD8_RuntimeMethod_var);
TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B L_1 = ___trackableToAffix0;
Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A L_2 = ___pose1;
XRReferencePoint_tF3ACF949B4AE1EC67F527F5D30DD8B912A814634 * L_3 = ___referencePoint2;
NullCheck(L_0);
bool L_4;
L_4 = VirtualFuncInvoker3< bool, TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B , Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A , XRReferencePoint_tF3ACF949B4AE1EC67F527F5D30DD8B912A814634 * >::Invoke(10 /* System.Boolean UnityEngine.XR.ARSubsystems.XRReferencePointSubsystem/Provider::TryAttachReferencePoint(UnityEngine.XR.ARSubsystems.TrackableId,UnityEngine.Pose,UnityEngine.XR.ARSubsystems.XRReferencePoint&) */, L_0, L_1, L_2, (XRReferencePoint_tF3ACF949B4AE1EC67F527F5D30DD8B912A814634 *)L_3);
return L_4;
}
}
// System.Boolean UnityEngine.XR.ARSubsystems.XRReferencePointSubsystem::TryRemoveReferencePoint(UnityEngine.XR.ARSubsystems.TrackableId)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XRReferencePointSubsystem_TryRemoveReferencePoint_mE7F6B247F12026A9920896461914AE894E004346 (XRReferencePointSubsystem_t2EF6E3F26C69D006F83E8E837FB60461D8033634 * __this, TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B ___referencePointId0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SubsystemWithProvider_3_get_provider_m54FA9023920512A3EC6956B1E999FFA426604CD8_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
// return provider.TryRemoveReferencePoint(referencePointId);
Provider_t7974F3BD624EC305575E361EE0BCAAA3DC5B253C * L_0;
L_0 = SubsystemWithProvider_3_get_provider_m54FA9023920512A3EC6956B1E999FFA426604CD8_inline(__this, /*hidden argument*/SubsystemWithProvider_3_get_provider_m54FA9023920512A3EC6956B1E999FFA426604CD8_RuntimeMethod_var);
TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B L_1 = ___referencePointId0;
NullCheck(L_0);
bool L_2;
L_2 = VirtualFuncInvoker1< bool, TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B >::Invoke(11 /* System.Boolean UnityEngine.XR.ARSubsystems.XRReferencePointSubsystem/Provider::TryRemoveReferencePoint(UnityEngine.XR.ARSubsystems.TrackableId) */, L_0, L_1);
return L_2;
}
}
// System.Void UnityEngine.XR.ARSubsystems.XRReferencePointSubsystem::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRReferencePointSubsystem__ctor_m5D17ED57D2A7F6EDB8CD21F4E5027D096C9241B9 (XRReferencePointSubsystem_t2EF6E3F26C69D006F83E8E837FB60461D8033634 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TrackingSubsystem_4__ctor_m8DF67D818E5517081896C05CF8F384D577161D69_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
TrackingSubsystem_4__ctor_m8DF67D818E5517081896C05CF8F384D577161D69(__this, /*hidden argument*/TrackingSubsystem_4__ctor_m8DF67D818E5517081896C05CF8F384D577161D69_RuntimeMethod_var);
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
// UnityEngine.XR.ARSubsystems.Promise`1<UnityEngine.XR.ARSubsystems.SessionAvailability> UnityEngine.XR.ARSubsystems.XRSessionSubsystem::GetAvailabilityAsync()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Promise_1_tB8B428F557CD6742430DB416C0B99C79CA1AA167 * XRSessionSubsystem_GetAvailabilityAsync_mA4038195D2F008EB5267493DB3CF19CCFC973047 (XRSessionSubsystem_t8AD3C01568AA19BF038D23A6031FF9814CAF93CD * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SubsystemWithProvider_3_get_provider_m20316B506B5A09573D369C405120B428801947C9_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
// public Promise<SessionAvailability> GetAvailabilityAsync() => provider.GetAvailabilityAsync();
Provider_t4C3675997BB8AF3A6A32C3EC3C93C10E4D3E8D1A * L_0;
L_0 = SubsystemWithProvider_3_get_provider_m20316B506B5A09573D369C405120B428801947C9_inline(__this, /*hidden argument*/SubsystemWithProvider_3_get_provider_m20316B506B5A09573D369C405120B428801947C9_RuntimeMethod_var);
NullCheck(L_0);
Promise_1_tB8B428F557CD6742430DB416C0B99C79CA1AA167 * L_1;
L_1 = VirtualFuncInvoker0< Promise_1_tB8B428F557CD6742430DB416C0B99C79CA1AA167 * >::Invoke(19 /* UnityEngine.XR.ARSubsystems.Promise`1<UnityEngine.XR.ARSubsystems.SessionAvailability> UnityEngine.XR.ARSubsystems.XRSessionSubsystem/Provider::GetAvailabilityAsync() */, L_0);
return L_1;
}
}
// UnityEngine.XR.ARSubsystems.Promise`1<UnityEngine.XR.ARSubsystems.SessionInstallationStatus> UnityEngine.XR.ARSubsystems.XRSessionSubsystem::InstallAsync()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Promise_1_tB8B3F3631C923F82F653F3D73D6B3082CF7CDD88 * XRSessionSubsystem_InstallAsync_m173C37A6ED69160C9634E89383D515FC28EF59BF (XRSessionSubsystem_t8AD3C01568AA19BF038D23A6031FF9814CAF93CD * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SubsystemWithProvider_3_get_provider_m20316B506B5A09573D369C405120B428801947C9_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SubsystemWithProvider_3_get_subsystemDescriptor_m37072FA7A4F1A2CACCCD955D446491B861FF9E6E_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
// if (!subsystemDescriptor.supportsInstall)
XRSessionSubsystemDescriptor_tC45A49D1179090D5C6D3B3DC1DC31CAB5A627B1C * L_0;
L_0 = SubsystemWithProvider_3_get_subsystemDescriptor_m37072FA7A4F1A2CACCCD955D446491B861FF9E6E_inline(__this, /*hidden argument*/SubsystemWithProvider_3_get_subsystemDescriptor_m37072FA7A4F1A2CACCCD955D446491B861FF9E6E_RuntimeMethod_var);
NullCheck(L_0);
bool L_1;
L_1 = XRSessionSubsystemDescriptor_get_supportsInstall_mEBC6C00B6B07C4F0511E6CADEB7FD7F6099A27D3_inline(L_0, /*hidden argument*/NULL);
if (L_1)
{
goto IL_0018;
}
}
{
// throw new NotSupportedException("InstallAsync is not supported on this platform.");
NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 * L_2 = (NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339_il2cpp_TypeInfo_var)));
NotSupportedException__ctor_m40BC57BDA6E0E119B73700CC809A14B57DC65A90(L_2, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralE446F5E5E3D5CD70111EE44D96D38C2402691299)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XRSessionSubsystem_InstallAsync_m173C37A6ED69160C9634E89383D515FC28EF59BF_RuntimeMethod_var)));
}
IL_0018:
{
// return provider.InstallAsync();
Provider_t4C3675997BB8AF3A6A32C3EC3C93C10E4D3E8D1A * L_3;
L_3 = SubsystemWithProvider_3_get_provider_m20316B506B5A09573D369C405120B428801947C9_inline(__this, /*hidden argument*/SubsystemWithProvider_3_get_provider_m20316B506B5A09573D369C405120B428801947C9_RuntimeMethod_var);
NullCheck(L_3);
Promise_1_tB8B3F3631C923F82F653F3D73D6B3082CF7CDD88 * L_4;
L_4 = VirtualFuncInvoker0< Promise_1_tB8B3F3631C923F82F653F3D73D6B3082CF7CDD88 * >::Invoke(20 /* UnityEngine.XR.ARSubsystems.Promise`1<UnityEngine.XR.ARSubsystems.SessionInstallationStatus> UnityEngine.XR.ARSubsystems.XRSessionSubsystem/Provider::InstallAsync() */, L_3);
return L_4;
}
}
// System.Void UnityEngine.XR.ARSubsystems.XRSessionSubsystem::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRSessionSubsystem__ctor_m8485F39F339764D3FCA4FD0E1D77ADE16CAE1676 (XRSessionSubsystem_t8AD3C01568AA19BF038D23A6031FF9814CAF93CD * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DefaultConfigurationChooser_tC3488EB08C98156663D851D9F0F0AD9294D4613F_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SubsystemWithProvider_3__ctor_mD3D1B91DF52028332010B72032C7E8388C99CEA4_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
// ConfigurationChooser m_DefaultConfigurationChooser = new DefaultConfigurationChooser();
DefaultConfigurationChooser_tC3488EB08C98156663D851D9F0F0AD9294D4613F * L_0 = (DefaultConfigurationChooser_tC3488EB08C98156663D851D9F0F0AD9294D4613F *)il2cpp_codegen_object_new(DefaultConfigurationChooser_tC3488EB08C98156663D851D9F0F0AD9294D4613F_il2cpp_TypeInfo_var);
DefaultConfigurationChooser__ctor_m01D5B274BA5A7C81A20C94A920681CAE8466A4BC(L_0, /*hidden argument*/NULL);
__this->set_m_DefaultConfigurationChooser_5(L_0);
// public XRSessionSubsystem()
SubsystemWithProvider_3__ctor_mD3D1B91DF52028332010B72032C7E8388C99CEA4(__this, /*hidden argument*/SubsystemWithProvider_3__ctor_mD3D1B91DF52028332010B72032C7E8388C99CEA4_RuntimeMethod_var);
// m_ConfigurationChooser = m_DefaultConfigurationChooser;
ConfigurationChooser_t0CCF856A226297A702F306A2217CF17D652E72C4 * L_1 = __this->get_m_DefaultConfigurationChooser_5();
__this->set_m_ConfigurationChooser_6(L_1);
// }
return;
}
}
// System.Void UnityEngine.XR.ARSubsystems.XRSessionSubsystem::Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRSessionSubsystem_Reset_mFA88E84DCF6A271F853C9B52A28F0A34AFCAE74D (XRSessionSubsystem_t8AD3C01568AA19BF038D23A6031FF9814CAF93CD * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SubsystemWithProvider_3_get_provider_m20316B506B5A09573D369C405120B428801947C9_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
// public void Reset() => provider.Reset();
Provider_t4C3675997BB8AF3A6A32C3EC3C93C10E4D3E8D1A * L_0;
L_0 = SubsystemWithProvider_3_get_provider_m20316B506B5A09573D369C405120B428801947C9_inline(__this, /*hidden argument*/SubsystemWithProvider_3_get_provider_m20316B506B5A09573D369C405120B428801947C9_RuntimeMethod_var);
NullCheck(L_0);
VirtualActionInvoker0::Invoke(15 /* System.Void UnityEngine.XR.ARSubsystems.XRSessionSubsystem/Provider::Reset() */, L_0);
return;
}
}
// System.Nullable`1<UnityEngine.XR.ARSubsystems.Configuration> UnityEngine.XR.ARSubsystems.XRSessionSubsystem::DetermineConfiguration(UnityEngine.XR.ARSubsystems.Feature)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Nullable_1_t0FF36C2ABCA6430FFCD4ED32922F18F36382E494 XRSessionSubsystem_DetermineConfiguration_mC3CBA78160165C46FCB97DDA58E9B32A46B43770 (XRSessionSubsystem_t8AD3C01568AA19BF038D23A6031FF9814CAF93CD * __this, uint64_t ___features0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NativeArray_1_Dispose_m366C5B6CC3F2B8D322B33FA8A94C30460A38C174_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NativeArray_1_get_IsCreated_m558F60AA76D10E2CDBB1B2882F4175B8B9F9F9AB_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NativeSlice_1_op_Implicit_m494BB4F27DEE7CD30ADD66B1A6FC945E828865D5_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1__ctor_m92BC32A206E9876BAD178B5E19AD685B8894AB4C_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
NativeArray_1_tC9A9DFD8C5E8BBF71F83CBC0CCF7C4BC38E3A4CA V_0;
memset((&V_0), 0, sizeof(V_0));
NativeArray_1_tC9A9DFD8C5E8BBF71F83CBC0CCF7C4BC38E3A4CA V_1;
memset((&V_1), 0, sizeof(V_1));
Nullable_1_t0FF36C2ABCA6430FFCD4ED32922F18F36382E494 V_2;
memset((&V_2), 0, sizeof(V_2));
Nullable_1_t0FF36C2ABCA6430FFCD4ED32922F18F36382E494 V_3;
memset((&V_3), 0, sizeof(V_3));
Exception_t * __last_unhandled_exception = 0;
il2cpp::utils::ExceptionSupportStack<int32_t, 2> __leave_targets;
{
// var descriptors = GetConfigurationDescriptors(Allocator.Temp);
NativeArray_1_tC9A9DFD8C5E8BBF71F83CBC0CCF7C4BC38E3A4CA L_0;
L_0 = XRSessionSubsystem_GetConfigurationDescriptors_m38E9B6B5B75399594BBF74FE3E1B685EBC7494A1(__this, 2, /*hidden argument*/NULL);
V_0 = L_0;
// if (descriptors.IsCreated)
bool L_1;
L_1 = NativeArray_1_get_IsCreated_m558F60AA76D10E2CDBB1B2882F4175B8B9F9F9AB((NativeArray_1_tC9A9DFD8C5E8BBF71F83CBC0CCF7C4BC38E3A4CA *)(&V_0), /*hidden argument*/NativeArray_1_get_IsCreated_m558F60AA76D10E2CDBB1B2882F4175B8B9F9F9AB_RuntimeMethod_var);
if (!L_1)
{
goto IL_0047;
}
}
{
// using (descriptors)
NativeArray_1_tC9A9DFD8C5E8BBF71F83CBC0CCF7C4BC38E3A4CA L_2 = V_0;
V_1 = L_2;
}
IL_0013:
try
{// begin try (depth: 1)
{
// if (descriptors.Length > 0)
int32_t L_3;
L_3 = IL2CPP_NATIVEARRAY_GET_LENGTH(((NativeArray_1_tC9A9DFD8C5E8BBF71F83CBC0CCF7C4BC38E3A4CA *)(&V_0))->___m_Length_1);
if ((((int32_t)L_3) <= ((int32_t)0)))
{
goto IL_0037;
}
}
IL_001d:
{
// return m_ConfigurationChooser.ChooseConfiguration(descriptors, features);
ConfigurationChooser_t0CCF856A226297A702F306A2217CF17D652E72C4 * L_4 = __this->get_m_ConfigurationChooser_6();
NativeArray_1_tC9A9DFD8C5E8BBF71F83CBC0CCF7C4BC38E3A4CA L_5 = V_0;
NativeSlice_1_tEFBDB61DC6CB8E764B0E92727E8B9EA61662F8F2 L_6;
L_6 = NativeSlice_1_op_Implicit_m494BB4F27DEE7CD30ADD66B1A6FC945E828865D5(L_5, /*hidden argument*/NativeSlice_1_op_Implicit_m494BB4F27DEE7CD30ADD66B1A6FC945E828865D5_RuntimeMethod_var);
uint64_t L_7 = ___features0;
NullCheck(L_4);
Configuration_t29C11C7E576D64F717543048BDA1EBCEF0CF60C0 L_8;
L_8 = VirtualFuncInvoker2< Configuration_t29C11C7E576D64F717543048BDA1EBCEF0CF60C0 , NativeSlice_1_tEFBDB61DC6CB8E764B0E92727E8B9EA61662F8F2 , uint64_t >::Invoke(4 /* UnityEngine.XR.ARSubsystems.Configuration UnityEngine.XR.ARSubsystems.ConfigurationChooser::ChooseConfiguration(Unity.Collections.NativeSlice`1<UnityEngine.XR.ARSubsystems.ConfigurationDescriptor>,UnityEngine.XR.ARSubsystems.Feature) */, L_4, L_6, L_7);
Nullable_1_t0FF36C2ABCA6430FFCD4ED32922F18F36382E494 L_9;
memset((&L_9), 0, sizeof(L_9));
Nullable_1__ctor_m92BC32A206E9876BAD178B5E19AD685B8894AB4C((&L_9), L_8, /*hidden argument*/Nullable_1__ctor_m92BC32A206E9876BAD178B5E19AD685B8894AB4C_RuntimeMethod_var);
V_2 = L_9;
IL2CPP_LEAVE(0x51, FINALLY_0039);
}
IL_0037:
{
// }
IL2CPP_LEAVE(0x47, FINALLY_0039);
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_0039;
}
FINALLY_0039:
{// begin finally (depth: 1)
NativeArray_1_Dispose_m366C5B6CC3F2B8D322B33FA8A94C30460A38C174((NativeArray_1_tC9A9DFD8C5E8BBF71F83CBC0CCF7C4BC38E3A4CA *)(&V_1), /*hidden argument*/NativeArray_1_Dispose_m366C5B6CC3F2B8D322B33FA8A94C30460A38C174_RuntimeMethod_var);
IL2CPP_END_FINALLY(57)
}// end finally (depth: 1)
IL2CPP_CLEANUP(57)
{
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
IL2CPP_JUMP_TBL(0x51, IL_0051)
IL2CPP_JUMP_TBL(0x47, IL_0047)
}
IL_0047:
{
// return null;
il2cpp_codegen_initobj((&V_3), sizeof(Nullable_1_t0FF36C2ABCA6430FFCD4ED32922F18F36382E494 ));
Nullable_1_t0FF36C2ABCA6430FFCD4ED32922F18F36382E494 L_10 = V_3;
return L_10;
}
IL_0051:
{
// }
Nullable_1_t0FF36C2ABCA6430FFCD4ED32922F18F36382E494 L_11 = V_2;
return L_11;
}
}
// System.Void UnityEngine.XR.ARSubsystems.XRSessionSubsystem::Update(UnityEngine.XR.ARSubsystems.XRSessionUpdateParams)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRSessionSubsystem_Update_mB98D19BDD6613D1140C2FEDE5107B87DEE9960AC (XRSessionSubsystem_t8AD3C01568AA19BF038D23A6031FF9814CAF93CD * __this, XRSessionUpdateParams_t106E075C3B348969D6F3B634195F295CE47DB77F ___updateParams0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1_get_HasValue_m965388873B2BD6BFE630C83A6B9D18EA421A8793_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1_get_Value_m3C3A95F64243501B1C7A94F24C463A2B13DC2E1A_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SubsystemWithProvider_3_get_provider_m20316B506B5A09573D369C405120B428801947C9_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
Nullable_1_t0FF36C2ABCA6430FFCD4ED32922F18F36382E494 V_0;
memset((&V_0), 0, sizeof(V_0));
{
// currentConfiguration = DetermineConfiguration(requestedFeatures);
uint64_t L_0;
L_0 = XRSessionSubsystem_get_requestedFeatures_m3D5B22B790EC0E1CA2903F88DDC339ADC6E3805F(__this, /*hidden argument*/NULL);
Nullable_1_t0FF36C2ABCA6430FFCD4ED32922F18F36382E494 L_1;
L_1 = XRSessionSubsystem_DetermineConfiguration_mC3CBA78160165C46FCB97DDA58E9B32A46B43770(__this, L_0, /*hidden argument*/NULL);
XRSessionSubsystem_set_currentConfiguration_m676D72EA2E4E14328D3ADDF29C98D5397DE4A646_inline(__this, L_1, /*hidden argument*/NULL);
// if (currentConfiguration.HasValue)
Nullable_1_t0FF36C2ABCA6430FFCD4ED32922F18F36382E494 L_2;
L_2 = XRSessionSubsystem_get_currentConfiguration_m7B3DC4591DB239331BDEA94C32CA927E78C991CC_inline(__this, /*hidden argument*/NULL);
V_0 = L_2;
bool L_3;
L_3 = Nullable_1_get_HasValue_m965388873B2BD6BFE630C83A6B9D18EA421A8793_inline((Nullable_1_t0FF36C2ABCA6430FFCD4ED32922F18F36382E494 *)(&V_0), /*hidden argument*/Nullable_1_get_HasValue_m965388873B2BD6BFE630C83A6B9D18EA421A8793_RuntimeMethod_var);
if (!L_3)
{
goto IL_003d;
}
}
{
// provider.Update(updateParams, currentConfiguration.Value);
Provider_t4C3675997BB8AF3A6A32C3EC3C93C10E4D3E8D1A * L_4;
L_4 = SubsystemWithProvider_3_get_provider_m20316B506B5A09573D369C405120B428801947C9_inline(__this, /*hidden argument*/SubsystemWithProvider_3_get_provider_m20316B506B5A09573D369C405120B428801947C9_RuntimeMethod_var);
XRSessionUpdateParams_t106E075C3B348969D6F3B634195F295CE47DB77F L_5 = ___updateParams0;
Nullable_1_t0FF36C2ABCA6430FFCD4ED32922F18F36382E494 L_6;
L_6 = XRSessionSubsystem_get_currentConfiguration_m7B3DC4591DB239331BDEA94C32CA927E78C991CC_inline(__this, /*hidden argument*/NULL);
V_0 = L_6;
Configuration_t29C11C7E576D64F717543048BDA1EBCEF0CF60C0 L_7;
L_7 = Nullable_1_get_Value_m3C3A95F64243501B1C7A94F24C463A2B13DC2E1A((Nullable_1_t0FF36C2ABCA6430FFCD4ED32922F18F36382E494 *)(&V_0), /*hidden argument*/Nullable_1_get_Value_m3C3A95F64243501B1C7A94F24C463A2B13DC2E1A_RuntimeMethod_var);
NullCheck(L_4);
VirtualActionInvoker2< XRSessionUpdateParams_t106E075C3B348969D6F3B634195F295CE47DB77F , Configuration_t29C11C7E576D64F717543048BDA1EBCEF0CF60C0 >::Invoke(9 /* System.Void UnityEngine.XR.ARSubsystems.XRSessionSubsystem/Provider::Update(UnityEngine.XR.ARSubsystems.XRSessionUpdateParams,UnityEngine.XR.ARSubsystems.Configuration) */, L_4, L_5, L_7);
// }
return;
}
IL_003d:
{
// provider.Update(updateParams);
Provider_t4C3675997BB8AF3A6A32C3EC3C93C10E4D3E8D1A * L_8;
L_8 = SubsystemWithProvider_3_get_provider_m20316B506B5A09573D369C405120B428801947C9_inline(__this, /*hidden argument*/SubsystemWithProvider_3_get_provider_m20316B506B5A09573D369C405120B428801947C9_RuntimeMethod_var);
XRSessionUpdateParams_t106E075C3B348969D6F3B634195F295CE47DB77F L_9 = ___updateParams0;
NullCheck(L_8);
VirtualActionInvoker1< XRSessionUpdateParams_t106E075C3B348969D6F3B634195F295CE47DB77F >::Invoke(8 /* System.Void UnityEngine.XR.ARSubsystems.XRSessionSubsystem/Provider::Update(UnityEngine.XR.ARSubsystems.XRSessionUpdateParams) */, L_8, L_9);
// }
return;
}
}
// System.Nullable`1<UnityEngine.XR.ARSubsystems.Configuration> UnityEngine.XR.ARSubsystems.XRSessionSubsystem::get_currentConfiguration()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Nullable_1_t0FF36C2ABCA6430FFCD4ED32922F18F36382E494 XRSessionSubsystem_get_currentConfiguration_m7B3DC4591DB239331BDEA94C32CA927E78C991CC (XRSessionSubsystem_t8AD3C01568AA19BF038D23A6031FF9814CAF93CD * __this, const RuntimeMethod* method)
{
{
// public Configuration? currentConfiguration { get; private set; }
Nullable_1_t0FF36C2ABCA6430FFCD4ED32922F18F36382E494 L_0 = __this->get_U3CcurrentConfigurationU3Ek__BackingField_4();
return L_0;
}
}
// System.Void UnityEngine.XR.ARSubsystems.XRSessionSubsystem::set_currentConfiguration(System.Nullable`1<UnityEngine.XR.ARSubsystems.Configuration>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRSessionSubsystem_set_currentConfiguration_m676D72EA2E4E14328D3ADDF29C98D5397DE4A646 (XRSessionSubsystem_t8AD3C01568AA19BF038D23A6031FF9814CAF93CD * __this, Nullable_1_t0FF36C2ABCA6430FFCD4ED32922F18F36382E494 ___value0, const RuntimeMethod* method)
{
{
// public Configuration? currentConfiguration { get; private set; }
Nullable_1_t0FF36C2ABCA6430FFCD4ED32922F18F36382E494 L_0 = ___value0;
__this->set_U3CcurrentConfigurationU3Ek__BackingField_4(L_0);
return;
}
}
// UnityEngine.XR.ARSubsystems.Feature UnityEngine.XR.ARSubsystems.XRSessionSubsystem::get_requestedFeatures()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t XRSessionSubsystem_get_requestedFeatures_m3D5B22B790EC0E1CA2903F88DDC339ADC6E3805F (XRSessionSubsystem_t8AD3C01568AA19BF038D23A6031FF9814CAF93CD * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SubsystemWithProvider_3_get_provider_m20316B506B5A09573D369C405120B428801947C9_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
// public Feature requestedFeatures => provider.requestedFeatures;
Provider_t4C3675997BB8AF3A6A32C3EC3C93C10E4D3E8D1A * L_0;
L_0 = SubsystemWithProvider_3_get_provider_m20316B506B5A09573D369C405120B428801947C9_inline(__this, /*hidden argument*/SubsystemWithProvider_3_get_provider_m20316B506B5A09573D369C405120B428801947C9_RuntimeMethod_var);
NullCheck(L_0);
uint64_t L_1;
L_1 = VirtualFuncInvoker0< uint64_t >::Invoke(10 /* UnityEngine.XR.ARSubsystems.Feature UnityEngine.XR.ARSubsystems.XRSessionSubsystem/Provider::get_requestedFeatures() */, L_0);
return L_1;
}
}
// Unity.Collections.NativeArray`1<UnityEngine.XR.ARSubsystems.ConfigurationDescriptor> UnityEngine.XR.ARSubsystems.XRSessionSubsystem::GetConfigurationDescriptors(Unity.Collections.Allocator)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NativeArray_1_tC9A9DFD8C5E8BBF71F83CBC0CCF7C4BC38E3A4CA XRSessionSubsystem_GetConfigurationDescriptors_m38E9B6B5B75399594BBF74FE3E1B685EBC7494A1 (XRSessionSubsystem_t8AD3C01568AA19BF038D23A6031FF9814CAF93CD * __this, int32_t ___allocator0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SubsystemWithProvider_3_get_provider_m20316B506B5A09573D369C405120B428801947C9_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
// public NativeArray<ConfigurationDescriptor> GetConfigurationDescriptors(Allocator allocator) => provider.GetConfigurationDescriptors(allocator);
Provider_t4C3675997BB8AF3A6A32C3EC3C93C10E4D3E8D1A * L_0;
L_0 = SubsystemWithProvider_3_get_provider_m20316B506B5A09573D369C405120B428801947C9_inline(__this, /*hidden argument*/SubsystemWithProvider_3_get_provider_m20316B506B5A09573D369C405120B428801947C9_RuntimeMethod_var);
int32_t L_1 = ___allocator0;
NullCheck(L_0);
NativeArray_1_tC9A9DFD8C5E8BBF71F83CBC0CCF7C4BC38E3A4CA L_2;
L_2 = VirtualFuncInvoker1< NativeArray_1_tC9A9DFD8C5E8BBF71F83CBC0CCF7C4BC38E3A4CA , int32_t >::Invoke(14 /* Unity.Collections.NativeArray`1<UnityEngine.XR.ARSubsystems.ConfigurationDescriptor> UnityEngine.XR.ARSubsystems.XRSessionSubsystem/Provider::GetConfigurationDescriptors(Unity.Collections.Allocator) */, L_0, L_1);
return L_2;
}
}
// System.Void UnityEngine.XR.ARSubsystems.XRSessionSubsystem::OnApplicationPause()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRSessionSubsystem_OnApplicationPause_m863413E205047A9329A534A2955ABAF34953C136 (XRSessionSubsystem_t8AD3C01568AA19BF038D23A6031FF9814CAF93CD * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SubsystemWithProvider_3_get_provider_m20316B506B5A09573D369C405120B428801947C9_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
// public void OnApplicationPause() => provider.OnApplicationPause();
Provider_t4C3675997BB8AF3A6A32C3EC3C93C10E4D3E8D1A * L_0;
L_0 = SubsystemWithProvider_3_get_provider_m20316B506B5A09573D369C405120B428801947C9_inline(__this, /*hidden argument*/SubsystemWithProvider_3_get_provider_m20316B506B5A09573D369C405120B428801947C9_RuntimeMethod_var);
NullCheck(L_0);
VirtualActionInvoker0::Invoke(16 /* System.Void UnityEngine.XR.ARSubsystems.XRSessionSubsystem/Provider::OnApplicationPause() */, L_0);
return;
}
}
// System.Void UnityEngine.XR.ARSubsystems.XRSessionSubsystem::OnApplicationResume()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRSessionSubsystem_OnApplicationResume_m7CC922F44D20F20791E6DCDDB87682E7798A1160 (XRSessionSubsystem_t8AD3C01568AA19BF038D23A6031FF9814CAF93CD * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SubsystemWithProvider_3_get_provider_m20316B506B5A09573D369C405120B428801947C9_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
// public void OnApplicationResume() => provider.OnApplicationResume();
Provider_t4C3675997BB8AF3A6A32C3EC3C93C10E4D3E8D1A * L_0;
L_0 = SubsystemWithProvider_3_get_provider_m20316B506B5A09573D369C405120B428801947C9_inline(__this, /*hidden argument*/SubsystemWithProvider_3_get_provider_m20316B506B5A09573D369C405120B428801947C9_RuntimeMethod_var);
NullCheck(L_0);
VirtualActionInvoker0::Invoke(17 /* System.Void UnityEngine.XR.ARSubsystems.XRSessionSubsystem/Provider::OnApplicationResume() */, L_0);
return;
}
}
// UnityEngine.XR.ARSubsystems.TrackingState UnityEngine.XR.ARSubsystems.XRSessionSubsystem::get_trackingState()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XRSessionSubsystem_get_trackingState_m65EE2B0335117F7508AC8A82DB81421AC88AC687 (XRSessionSubsystem_t8AD3C01568AA19BF038D23A6031FF9814CAF93CD * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SubsystemWithProvider_3_get_provider_m20316B506B5A09573D369C405120B428801947C9_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
// public TrackingState trackingState => provider.trackingState;
Provider_t4C3675997BB8AF3A6A32C3EC3C93C10E4D3E8D1A * L_0;
L_0 = SubsystemWithProvider_3_get_provider_m20316B506B5A09573D369C405120B428801947C9_inline(__this, /*hidden argument*/SubsystemWithProvider_3_get_provider_m20316B506B5A09573D369C405120B428801947C9_RuntimeMethod_var);
NullCheck(L_0);
int32_t L_1;
L_1 = VirtualFuncInvoker0< int32_t >::Invoke(21 /* UnityEngine.XR.ARSubsystems.TrackingState UnityEngine.XR.ARSubsystems.XRSessionSubsystem/Provider::get_trackingState() */, L_0);
return L_1;
}
}
// UnityEngine.XR.ARSubsystems.Feature UnityEngine.XR.ARSubsystems.XRSessionSubsystem::get_requestedTrackingMode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t XRSessionSubsystem_get_requestedTrackingMode_m4F6519898E617E15D1F4CB2EF96057F6D38CBD1B (XRSessionSubsystem_t8AD3C01568AA19BF038D23A6031FF9814CAF93CD * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SubsystemWithProvider_3_get_provider_m20316B506B5A09573D369C405120B428801947C9_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
// get => provider.requestedTrackingMode.TrackingModes();
Provider_t4C3675997BB8AF3A6A32C3EC3C93C10E4D3E8D1A * L_0;
L_0 = SubsystemWithProvider_3_get_provider_m20316B506B5A09573D369C405120B428801947C9_inline(__this, /*hidden argument*/SubsystemWithProvider_3_get_provider_m20316B506B5A09573D369C405120B428801947C9_RuntimeMethod_var);
NullCheck(L_0);
uint64_t L_1;
L_1 = VirtualFuncInvoker0< uint64_t >::Invoke(11 /* UnityEngine.XR.ARSubsystems.Feature UnityEngine.XR.ARSubsystems.XRSessionSubsystem/Provider::get_requestedTrackingMode() */, L_0);
uint64_t L_2;
L_2 = FeatureExtensions_TrackingModes_m42E19D4C37D0B9A70CACE5810FBE94B8A517D127(L_1, /*hidden argument*/NULL);
return L_2;
}
}
// System.Void UnityEngine.XR.ARSubsystems.XRSessionSubsystem::set_requestedTrackingMode(UnityEngine.XR.ARSubsystems.Feature)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRSessionSubsystem_set_requestedTrackingMode_m43499C22FDB4E328BBEA1992222DC348052992E1 (XRSessionSubsystem_t8AD3C01568AA19BF038D23A6031FF9814CAF93CD * __this, uint64_t ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SubsystemWithProvider_3_get_provider_m20316B506B5A09573D369C405120B428801947C9_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
// set => provider.requestedTrackingMode = value.TrackingModes();
Provider_t4C3675997BB8AF3A6A32C3EC3C93C10E4D3E8D1A * L_0;
L_0 = SubsystemWithProvider_3_get_provider_m20316B506B5A09573D369C405120B428801947C9_inline(__this, /*hidden argument*/SubsystemWithProvider_3_get_provider_m20316B506B5A09573D369C405120B428801947C9_RuntimeMethod_var);
uint64_t L_1 = ___value0;
uint64_t L_2;
L_2 = FeatureExtensions_TrackingModes_m42E19D4C37D0B9A70CACE5810FBE94B8A517D127(L_1, /*hidden argument*/NULL);
NullCheck(L_0);
VirtualActionInvoker1< uint64_t >::Invoke(12 /* System.Void UnityEngine.XR.ARSubsystems.XRSessionSubsystem/Provider::set_requestedTrackingMode(UnityEngine.XR.ARSubsystems.Feature) */, L_0, L_2);
return;
}
}
// UnityEngine.XR.ARSubsystems.Feature UnityEngine.XR.ARSubsystems.XRSessionSubsystem::get_currentTrackingMode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t XRSessionSubsystem_get_currentTrackingMode_m36511B6DC40F6363FEB7DD1222086522B54E26AE (XRSessionSubsystem_t8AD3C01568AA19BF038D23A6031FF9814CAF93CD * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SubsystemWithProvider_3_get_provider_m20316B506B5A09573D369C405120B428801947C9_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
// public Feature currentTrackingMode => provider.currentTrackingMode.TrackingModes();
Provider_t4C3675997BB8AF3A6A32C3EC3C93C10E4D3E8D1A * L_0;
L_0 = SubsystemWithProvider_3_get_provider_m20316B506B5A09573D369C405120B428801947C9_inline(__this, /*hidden argument*/SubsystemWithProvider_3_get_provider_m20316B506B5A09573D369C405120B428801947C9_RuntimeMethod_var);
NullCheck(L_0);
uint64_t L_1;
L_1 = VirtualFuncInvoker0< uint64_t >::Invoke(13 /* UnityEngine.XR.ARSubsystems.Feature UnityEngine.XR.ARSubsystems.XRSessionSubsystem/Provider::get_currentTrackingMode() */, L_0);
uint64_t L_2;
L_2 = FeatureExtensions_TrackingModes_m42E19D4C37D0B9A70CACE5810FBE94B8A517D127(L_1, /*hidden argument*/NULL);
return L_2;
}
}
// UnityEngine.XR.ARSubsystems.NotTrackingReason UnityEngine.XR.ARSubsystems.XRSessionSubsystem::get_notTrackingReason()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XRSessionSubsystem_get_notTrackingReason_m2FB94CC40A6732E380A9713537C13D1067EC8928 (XRSessionSubsystem_t8AD3C01568AA19BF038D23A6031FF9814CAF93CD * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SubsystemWithProvider_3_get_provider_m20316B506B5A09573D369C405120B428801947C9_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
// public NotTrackingReason notTrackingReason => provider.notTrackingReason;
Provider_t4C3675997BB8AF3A6A32C3EC3C93C10E4D3E8D1A * L_0;
L_0 = SubsystemWithProvider_3_get_provider_m20316B506B5A09573D369C405120B428801947C9_inline(__this, /*hidden argument*/SubsystemWithProvider_3_get_provider_m20316B506B5A09573D369C405120B428801947C9_RuntimeMethod_var);
NullCheck(L_0);
int32_t L_1;
L_1 = VirtualFuncInvoker0< int32_t >::Invoke(22 /* UnityEngine.XR.ARSubsystems.NotTrackingReason UnityEngine.XR.ARSubsystems.XRSessionSubsystem/Provider::get_notTrackingReason() */, L_0);
return L_1;
}
}
// System.Boolean UnityEngine.XR.ARSubsystems.XRSessionSubsystem::get_matchFrameRateEnabled()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XRSessionSubsystem_get_matchFrameRateEnabled_m8B5B88A363EC86DE2F5851CFC4D0D388ADF890A0 (XRSessionSubsystem_t8AD3C01568AA19BF038D23A6031FF9814CAF93CD * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SubsystemWithProvider_3_get_provider_m20316B506B5A09573D369C405120B428801947C9_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
// get => provider.matchFrameRateEnabled;
Provider_t4C3675997BB8AF3A6A32C3EC3C93C10E4D3E8D1A * L_0;
L_0 = SubsystemWithProvider_3_get_provider_m20316B506B5A09573D369C405120B428801947C9_inline(__this, /*hidden argument*/SubsystemWithProvider_3_get_provider_m20316B506B5A09573D369C405120B428801947C9_RuntimeMethod_var);
NullCheck(L_0);
bool L_1;
L_1 = VirtualFuncInvoker0< bool >::Invoke(24 /* System.Boolean UnityEngine.XR.ARSubsystems.XRSessionSubsystem/Provider::get_matchFrameRateEnabled() */, L_0);
return L_1;
}
}
// System.Boolean UnityEngine.XR.ARSubsystems.XRSessionSubsystem::get_matchFrameRateRequested()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XRSessionSubsystem_get_matchFrameRateRequested_mCABF94E8C5BA04F7AE3A708360DFEE216A9BE97F (XRSessionSubsystem_t8AD3C01568AA19BF038D23A6031FF9814CAF93CD * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SubsystemWithProvider_3_get_provider_m20316B506B5A09573D369C405120B428801947C9_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
// get => provider.matchFrameRateRequested;
Provider_t4C3675997BB8AF3A6A32C3EC3C93C10E4D3E8D1A * L_0;
L_0 = SubsystemWithProvider_3_get_provider_m20316B506B5A09573D369C405120B428801947C9_inline(__this, /*hidden argument*/SubsystemWithProvider_3_get_provider_m20316B506B5A09573D369C405120B428801947C9_RuntimeMethod_var);
NullCheck(L_0);
bool L_1;
L_1 = VirtualFuncInvoker0< bool >::Invoke(25 /* System.Boolean UnityEngine.XR.ARSubsystems.XRSessionSubsystem/Provider::get_matchFrameRateRequested() */, L_0);
return L_1;
}
}
// System.Void UnityEngine.XR.ARSubsystems.XRSessionSubsystem::set_matchFrameRateRequested(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRSessionSubsystem_set_matchFrameRateRequested_m1059EAC1993A8F333B791C10C5B2173E171EB330 (XRSessionSubsystem_t8AD3C01568AA19BF038D23A6031FF9814CAF93CD * __this, bool ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SubsystemWithProvider_3_get_provider_m20316B506B5A09573D369C405120B428801947C9_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
// set => provider.matchFrameRateRequested = value;
Provider_t4C3675997BB8AF3A6A32C3EC3C93C10E4D3E8D1A * L_0;
L_0 = SubsystemWithProvider_3_get_provider_m20316B506B5A09573D369C405120B428801947C9_inline(__this, /*hidden argument*/SubsystemWithProvider_3_get_provider_m20316B506B5A09573D369C405120B428801947C9_RuntimeMethod_var);
bool L_1 = ___value0;
NullCheck(L_0);
VirtualActionInvoker1< bool >::Invoke(26 /* System.Void UnityEngine.XR.ARSubsystems.XRSessionSubsystem/Provider::set_matchFrameRateRequested(System.Boolean) */, L_0, L_1);
return;
}
}
// System.Int32 UnityEngine.XR.ARSubsystems.XRSessionSubsystem::get_frameRate()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XRSessionSubsystem_get_frameRate_mE5994F649324FE45138D7D5A56DE4CB6CDEA9784 (XRSessionSubsystem_t8AD3C01568AA19BF038D23A6031FF9814CAF93CD * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SubsystemWithProvider_3_get_provider_m20316B506B5A09573D369C405120B428801947C9_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
// public int frameRate => provider.frameRate;
Provider_t4C3675997BB8AF3A6A32C3EC3C93C10E4D3E8D1A * L_0;
L_0 = SubsystemWithProvider_3_get_provider_m20316B506B5A09573D369C405120B428801947C9_inline(__this, /*hidden argument*/SubsystemWithProvider_3_get_provider_m20316B506B5A09573D369C405120B428801947C9_RuntimeMethod_var);
NullCheck(L_0);
int32_t L_1;
L_1 = VirtualFuncInvoker0< int32_t >::Invoke(27 /* System.Int32 UnityEngine.XR.ARSubsystems.XRSessionSubsystem/Provider::get_frameRate() */, L_0);
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
// System.Boolean UnityEngine.XR.ARSubsystems.XRSessionSubsystemDescriptor::get_supportsInstall()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XRSessionSubsystemDescriptor_get_supportsInstall_mEBC6C00B6B07C4F0511E6CADEB7FD7F6099A27D3 (XRSessionSubsystemDescriptor_tC45A49D1179090D5C6D3B3DC1DC31CAB5A627B1C * __this, const RuntimeMethod* method)
{
{
// public bool supportsInstall { get; private set; }
bool L_0 = __this->get_U3CsupportsInstallU3Ek__BackingField_3();
return L_0;
}
}
// System.Void UnityEngine.XR.ARSubsystems.XRSessionSubsystemDescriptor::set_supportsInstall(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRSessionSubsystemDescriptor_set_supportsInstall_mE8D2939BADC8A5579685249EEA3C12617416CEF2 (XRSessionSubsystemDescriptor_tC45A49D1179090D5C6D3B3DC1DC31CAB5A627B1C * __this, bool ___value0, const RuntimeMethod* method)
{
{
// public bool supportsInstall { get; private set; }
bool L_0 = ___value0;
__this->set_U3CsupportsInstallU3Ek__BackingField_3(L_0);
return;
}
}
// System.Boolean UnityEngine.XR.ARSubsystems.XRSessionSubsystemDescriptor::get_supportsMatchFrameRate()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XRSessionSubsystemDescriptor_get_supportsMatchFrameRate_m5C032C3C19BA1C47856442A7290690061E41E87C (XRSessionSubsystemDescriptor_tC45A49D1179090D5C6D3B3DC1DC31CAB5A627B1C * __this, const RuntimeMethod* method)
{
{
// public bool supportsMatchFrameRate { get; private set; }
bool L_0 = __this->get_U3CsupportsMatchFrameRateU3Ek__BackingField_4();
return L_0;
}
}
// System.Void UnityEngine.XR.ARSubsystems.XRSessionSubsystemDescriptor::set_supportsMatchFrameRate(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRSessionSubsystemDescriptor_set_supportsMatchFrameRate_m9FB2B904E2E7E4EC51E2089C8DDE97463F4C031D (XRSessionSubsystemDescriptor_tC45A49D1179090D5C6D3B3DC1DC31CAB5A627B1C * __this, bool ___value0, const RuntimeMethod* method)
{
{
// public bool supportsMatchFrameRate { get; private set; }
bool L_0 = ___value0;
__this->set_U3CsupportsMatchFrameRateU3Ek__BackingField_4(L_0);
return;
}
}
// System.Void UnityEngine.XR.ARSubsystems.XRSessionSubsystemDescriptor::RegisterDescriptor(UnityEngine.XR.ARSubsystems.XRSessionSubsystemDescriptor/Cinfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRSessionSubsystemDescriptor_RegisterDescriptor_m60DE0DD6782289BAD4D67D15E2361D1B7B71C262 (Cinfo_t2842A97DA95F40ECADDCA24A291B6114A3A5F71A ___cinfo0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SubsystemDescriptorStore_tE5D99C3159868DE6506269CB6B830621F8BC31A6_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XRSessionSubsystemDescriptor_tC45A49D1179090D5C6D3B3DC1DC31CAB5A627B1C_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
// SubsystemDescriptorStore.RegisterDescriptor(new XRSessionSubsystemDescriptor(cinfo));
Cinfo_t2842A97DA95F40ECADDCA24A291B6114A3A5F71A L_0 = ___cinfo0;
XRSessionSubsystemDescriptor_tC45A49D1179090D5C6D3B3DC1DC31CAB5A627B1C * L_1 = (XRSessionSubsystemDescriptor_tC45A49D1179090D5C6D3B3DC1DC31CAB5A627B1C *)il2cpp_codegen_object_new(XRSessionSubsystemDescriptor_tC45A49D1179090D5C6D3B3DC1DC31CAB5A627B1C_il2cpp_TypeInfo_var);
XRSessionSubsystemDescriptor__ctor_mC3487128AC53B5697213AFF8B2F98F1C3288B3A7(L_1, L_0, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(SubsystemDescriptorStore_tE5D99C3159868DE6506269CB6B830621F8BC31A6_il2cpp_TypeInfo_var);
SubsystemDescriptorStore_RegisterDescriptor_m5586866BB233EF26B98640851816DD1764657688(L_1, /*hidden argument*/NULL);
// }
return;
}
}
// System.Void UnityEngine.XR.ARSubsystems.XRSessionSubsystemDescriptor::.ctor(UnityEngine.XR.ARSubsystems.XRSessionSubsystemDescriptor/Cinfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRSessionSubsystemDescriptor__ctor_mC3487128AC53B5697213AFF8B2F98F1C3288B3A7 (XRSessionSubsystemDescriptor_tC45A49D1179090D5C6D3B3DC1DC31CAB5A627B1C * __this, Cinfo_t2842A97DA95F40ECADDCA24A291B6114A3A5F71A ___cinfo0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SubsystemDescriptorWithProvider_2__ctor_m63E1420F5B2D7E40BDAAD6BC312979C25D61C6EE_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
// XRSessionSubsystemDescriptor(Cinfo cinfo)
SubsystemDescriptorWithProvider_2__ctor_m63E1420F5B2D7E40BDAAD6BC312979C25D61C6EE(__this, /*hidden argument*/SubsystemDescriptorWithProvider_2__ctor_m63E1420F5B2D7E40BDAAD6BC312979C25D61C6EE_RuntimeMethod_var);
// id = cinfo.id;
String_t* L_0;
L_0 = Cinfo_get_id_mA521F604882D1F4C6FD30262F3E2C3B0609BFC55_inline((Cinfo_t2842A97DA95F40ECADDCA24A291B6114A3A5F71A *)(&___cinfo0), /*hidden argument*/NULL);
SubsystemDescriptorWithProvider_set_id_mEC6863CDB21597618394D2ED4182A9ED3ACBF220_inline(__this, L_0, /*hidden argument*/NULL);
// providerType = cinfo.providerType;
Type_t * L_1;
L_1 = Cinfo_get_providerType_mC64DDA0FD5E23FD53F7B9DAEAF4433487436835E_inline((Cinfo_t2842A97DA95F40ECADDCA24A291B6114A3A5F71A *)(&___cinfo0), /*hidden argument*/NULL);
SubsystemDescriptorWithProvider_set_providerType_m672B1F3CC7A12E8569D801F7C79538753C0D9C2D_inline(__this, L_1, /*hidden argument*/NULL);
// subsystemTypeOverride = cinfo.subsystemTypeOverride;
Type_t * L_2;
L_2 = Cinfo_get_subsystemTypeOverride_mFB0EAD46EF91216924D0509C72DF82ADA526B99D_inline((Cinfo_t2842A97DA95F40ECADDCA24A291B6114A3A5F71A *)(&___cinfo0), /*hidden argument*/NULL);
SubsystemDescriptorWithProvider_set_subsystemTypeOverride_mA453100A7A8FAB35FBE7154E63B5A17D518F41B6_inline(__this, L_2, /*hidden argument*/NULL);
// supportsInstall = cinfo.supportsInstall;
bool L_3;
L_3 = Cinfo_get_supportsInstall_m706A828C9AE61FF74DF4640D80E52148CDF4F3AD_inline((Cinfo_t2842A97DA95F40ECADDCA24A291B6114A3A5F71A *)(&___cinfo0), /*hidden argument*/NULL);
XRSessionSubsystemDescriptor_set_supportsInstall_mE8D2939BADC8A5579685249EEA3C12617416CEF2_inline(__this, L_3, /*hidden argument*/NULL);
// supportsMatchFrameRate = cinfo.supportsMatchFrameRate;
bool L_4;
L_4 = Cinfo_get_supportsMatchFrameRate_m1E603F47BF0A28EE5E7377A28D9D2BB29BFD3B6F_inline((Cinfo_t2842A97DA95F40ECADDCA24A291B6114A3A5F71A *)(&___cinfo0), /*hidden argument*/NULL);
XRSessionSubsystemDescriptor_set_supportsMatchFrameRate_m9FB2B904E2E7E4EC51E2089C8DDE97463F4C031D_inline(__this, L_4, /*hidden argument*/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
// UnityEngine.ScreenOrientation UnityEngine.XR.ARSubsystems.XRSessionUpdateParams::get_screenOrientation()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XRSessionUpdateParams_get_screenOrientation_m3200C056D5EF350333CBEC08C5BADCB3F9B3588A (XRSessionUpdateParams_t106E075C3B348969D6F3B634195F295CE47DB77F * __this, const RuntimeMethod* method)
{
{
// public ScreenOrientation screenOrientation { get; set; }
int32_t L_0 = __this->get_U3CscreenOrientationU3Ek__BackingField_0();
return L_0;
}
}
IL2CPP_EXTERN_C int32_t XRSessionUpdateParams_get_screenOrientation_m3200C056D5EF350333CBEC08C5BADCB3F9B3588A_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
XRSessionUpdateParams_t106E075C3B348969D6F3B634195F295CE47DB77F * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XRSessionUpdateParams_t106E075C3B348969D6F3B634195F295CE47DB77F *>(__this + _offset);
int32_t _returnValue;
_returnValue = XRSessionUpdateParams_get_screenOrientation_m3200C056D5EF350333CBEC08C5BADCB3F9B3588A_inline(_thisAdjusted, method);
return _returnValue;
}
// System.Void UnityEngine.XR.ARSubsystems.XRSessionUpdateParams::set_screenOrientation(UnityEngine.ScreenOrientation)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRSessionUpdateParams_set_screenOrientation_m958168FC8048AE33DC4757F9A1184520B15FD341 (XRSessionUpdateParams_t106E075C3B348969D6F3B634195F295CE47DB77F * __this, int32_t ___value0, const RuntimeMethod* method)
{
{
// public ScreenOrientation screenOrientation { get; set; }
int32_t L_0 = ___value0;
__this->set_U3CscreenOrientationU3Ek__BackingField_0(L_0);
return;
}
}
IL2CPP_EXTERN_C void XRSessionUpdateParams_set_screenOrientation_m958168FC8048AE33DC4757F9A1184520B15FD341_AdjustorThunk (RuntimeObject * __this, int32_t ___value0, const RuntimeMethod* method)
{
XRSessionUpdateParams_t106E075C3B348969D6F3B634195F295CE47DB77F * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XRSessionUpdateParams_t106E075C3B348969D6F3B634195F295CE47DB77F *>(__this + _offset);
XRSessionUpdateParams_set_screenOrientation_m958168FC8048AE33DC4757F9A1184520B15FD341_inline(_thisAdjusted, ___value0, method);
}
// UnityEngine.Vector2Int UnityEngine.XR.ARSubsystems.XRSessionUpdateParams::get_screenDimensions()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9 XRSessionUpdateParams_get_screenDimensions_m68257DCBBAEB4090559AC18A180C8E54D02F5118 (XRSessionUpdateParams_t106E075C3B348969D6F3B634195F295CE47DB77F * __this, const RuntimeMethod* method)
{
{
// public Vector2Int screenDimensions { get; set; }
Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9 L_0 = __this->get_U3CscreenDimensionsU3Ek__BackingField_1();
return L_0;
}
}
IL2CPP_EXTERN_C Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9 XRSessionUpdateParams_get_screenDimensions_m68257DCBBAEB4090559AC18A180C8E54D02F5118_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
XRSessionUpdateParams_t106E075C3B348969D6F3B634195F295CE47DB77F * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XRSessionUpdateParams_t106E075C3B348969D6F3B634195F295CE47DB77F *>(__this + _offset);
Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9 _returnValue;
_returnValue = XRSessionUpdateParams_get_screenDimensions_m68257DCBBAEB4090559AC18A180C8E54D02F5118_inline(_thisAdjusted, method);
return _returnValue;
}
// System.Void UnityEngine.XR.ARSubsystems.XRSessionUpdateParams::set_screenDimensions(UnityEngine.Vector2Int)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRSessionUpdateParams_set_screenDimensions_m3658D658C653B6ED72DB68F099A4512FE756D8F6 (XRSessionUpdateParams_t106E075C3B348969D6F3B634195F295CE47DB77F * __this, Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9 ___value0, const RuntimeMethod* method)
{
{
// public Vector2Int screenDimensions { get; set; }
Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9 L_0 = ___value0;
__this->set_U3CscreenDimensionsU3Ek__BackingField_1(L_0);
return;
}
}
IL2CPP_EXTERN_C void XRSessionUpdateParams_set_screenDimensions_m3658D658C653B6ED72DB68F099A4512FE756D8F6_AdjustorThunk (RuntimeObject * __this, Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9 ___value0, const RuntimeMethod* method)
{
XRSessionUpdateParams_t106E075C3B348969D6F3B634195F295CE47DB77F * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XRSessionUpdateParams_t106E075C3B348969D6F3B634195F295CE47DB77F *>(__this + _offset);
XRSessionUpdateParams_set_screenDimensions_m3658D658C653B6ED72DB68F099A4512FE756D8F6_inline(_thisAdjusted, ___value0, method);
}
// System.Int32 UnityEngine.XR.ARSubsystems.XRSessionUpdateParams::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XRSessionUpdateParams_GetHashCode_mCCE320FCC4DE7EEF2FC1778BB15E422BAC190908 (XRSessionUpdateParams_t106E075C3B348969D6F3B634195F295CE47DB77F * __this, const RuntimeMethod* method)
{
int32_t V_0 = 0;
Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9 V_1;
memset((&V_1), 0, sizeof(V_1));
{
// public override int GetHashCode() => HashCode.Combine(((int)screenOrientation).GetHashCode(), screenDimensions.GetHashCode());
int32_t L_0;
L_0 = XRSessionUpdateParams_get_screenOrientation_m3200C056D5EF350333CBEC08C5BADCB3F9B3588A_inline((XRSessionUpdateParams_t106E075C3B348969D6F3B634195F295CE47DB77F *)__this, /*hidden argument*/NULL);
V_0 = L_0;
int32_t L_1;
L_1 = Int32_GetHashCode_mEDD3F492A5F7CF021125AE3F38E2B8F8743FC667((int32_t*)(&V_0), /*hidden argument*/NULL);
Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9 L_2;
L_2 = XRSessionUpdateParams_get_screenDimensions_m68257DCBBAEB4090559AC18A180C8E54D02F5118_inline((XRSessionUpdateParams_t106E075C3B348969D6F3B634195F295CE47DB77F *)__this, /*hidden argument*/NULL);
V_1 = L_2;
int32_t L_3;
L_3 = Vector2Int_GetHashCode_mB963D0B9A29E161BC4B73F97AEAF2F843FC8EF71((Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9 *)(&V_1), /*hidden argument*/NULL);
int32_t L_4;
L_4 = HashCode_Combine_m23C951F115303C9E040D18947821969B602863FC(L_1, L_3, /*hidden argument*/NULL);
return L_4;
}
}
IL2CPP_EXTERN_C int32_t XRSessionUpdateParams_GetHashCode_mCCE320FCC4DE7EEF2FC1778BB15E422BAC190908_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
XRSessionUpdateParams_t106E075C3B348969D6F3B634195F295CE47DB77F * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XRSessionUpdateParams_t106E075C3B348969D6F3B634195F295CE47DB77F *>(__this + _offset);
int32_t _returnValue;
_returnValue = XRSessionUpdateParams_GetHashCode_mCCE320FCC4DE7EEF2FC1778BB15E422BAC190908(_thisAdjusted, method);
return _returnValue;
}
// System.Boolean UnityEngine.XR.ARSubsystems.XRSessionUpdateParams::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XRSessionUpdateParams_Equals_m2501DC639F937DCBD2423619545AC556DE71F3B2 (XRSessionUpdateParams_t106E075C3B348969D6F3B634195F295CE47DB77F * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XRSessionUpdateParams_t106E075C3B348969D6F3B634195F295CE47DB77F_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
// public override bool Equals(object obj) => (obj is XRSessionUpdateParams) && Equals((XRSessionUpdateParams)obj);
RuntimeObject * L_0 = ___obj0;
if (!((RuntimeObject *)IsInstSealed((RuntimeObject*)L_0, XRSessionUpdateParams_t106E075C3B348969D6F3B634195F295CE47DB77F_il2cpp_TypeInfo_var)))
{
goto IL_0015;
}
}
{
RuntimeObject * L_1 = ___obj0;
bool L_2;
L_2 = XRSessionUpdateParams_Equals_m57475F3E7F97539B697A4DC77122F934C321ECD0((XRSessionUpdateParams_t106E075C3B348969D6F3B634195F295CE47DB77F *)__this, ((*(XRSessionUpdateParams_t106E075C3B348969D6F3B634195F295CE47DB77F *)((XRSessionUpdateParams_t106E075C3B348969D6F3B634195F295CE47DB77F *)UnBox(L_1, XRSessionUpdateParams_t106E075C3B348969D6F3B634195F295CE47DB77F_il2cpp_TypeInfo_var)))), /*hidden argument*/NULL);
return L_2;
}
IL_0015:
{
return (bool)0;
}
}
IL2CPP_EXTERN_C bool XRSessionUpdateParams_Equals_m2501DC639F937DCBD2423619545AC556DE71F3B2_AdjustorThunk (RuntimeObject * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
XRSessionUpdateParams_t106E075C3B348969D6F3B634195F295CE47DB77F * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XRSessionUpdateParams_t106E075C3B348969D6F3B634195F295CE47DB77F *>(__this + _offset);
bool _returnValue;
_returnValue = XRSessionUpdateParams_Equals_m2501DC639F937DCBD2423619545AC556DE71F3B2(_thisAdjusted, ___obj0, method);
return _returnValue;
}
// System.String UnityEngine.XR.ARSubsystems.XRSessionUpdateParams::ToString()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XRSessionUpdateParams_ToString_m01D74BEF4A53B620271579234011D2F6D0522598 (XRSessionUpdateParams_t106E075C3B348969D6F3B634195F295CE47DB77F * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ScreenOrientation_tDD9EF2729A0D580721770597532935B0A7ADE020_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral371D4A83362DFDF00E89BA68C82057A64E205D24);
s_Il2CppMethodInitialized = true;
}
{
// public override string ToString() => $"Screen Orientation: {screenOrientation}, Screen Dimensions: {screenDimensions}";
int32_t L_0;
L_0 = XRSessionUpdateParams_get_screenOrientation_m3200C056D5EF350333CBEC08C5BADCB3F9B3588A_inline((XRSessionUpdateParams_t106E075C3B348969D6F3B634195F295CE47DB77F *)__this, /*hidden argument*/NULL);
int32_t L_1 = L_0;
RuntimeObject * L_2 = Box(ScreenOrientation_tDD9EF2729A0D580721770597532935B0A7ADE020_il2cpp_TypeInfo_var, &L_1);
Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9 L_3;
L_3 = XRSessionUpdateParams_get_screenDimensions_m68257DCBBAEB4090559AC18A180C8E54D02F5118_inline((XRSessionUpdateParams_t106E075C3B348969D6F3B634195F295CE47DB77F *)__this, /*hidden argument*/NULL);
Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9 L_4 = L_3;
RuntimeObject * L_5 = Box(Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9_il2cpp_TypeInfo_var, &L_4);
String_t* L_6;
L_6 = String_Format_m8D1CB0410C35E052A53AE957C914C841E54BAB66(_stringLiteral371D4A83362DFDF00E89BA68C82057A64E205D24, L_2, L_5, /*hidden argument*/NULL);
return L_6;
}
}
IL2CPP_EXTERN_C String_t* XRSessionUpdateParams_ToString_m01D74BEF4A53B620271579234011D2F6D0522598_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
XRSessionUpdateParams_t106E075C3B348969D6F3B634195F295CE47DB77F * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XRSessionUpdateParams_t106E075C3B348969D6F3B634195F295CE47DB77F *>(__this + _offset);
String_t* _returnValue;
_returnValue = XRSessionUpdateParams_ToString_m01D74BEF4A53B620271579234011D2F6D0522598(_thisAdjusted, method);
return _returnValue;
}
// System.Boolean UnityEngine.XR.ARSubsystems.XRSessionUpdateParams::Equals(UnityEngine.XR.ARSubsystems.XRSessionUpdateParams)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XRSessionUpdateParams_Equals_m57475F3E7F97539B697A4DC77122F934C321ECD0 (XRSessionUpdateParams_t106E075C3B348969D6F3B634195F295CE47DB77F * __this, XRSessionUpdateParams_t106E075C3B348969D6F3B634195F295CE47DB77F ___other0, const RuntimeMethod* method)
{
Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9 V_0;
memset((&V_0), 0, sizeof(V_0));
{
// (screenOrientation == other.screenOrientation) &&
// screenDimensions.Equals(other.screenDimensions);
int32_t L_0;
L_0 = XRSessionUpdateParams_get_screenOrientation_m3200C056D5EF350333CBEC08C5BADCB3F9B3588A_inline((XRSessionUpdateParams_t106E075C3B348969D6F3B634195F295CE47DB77F *)__this, /*hidden argument*/NULL);
int32_t L_1;
L_1 = XRSessionUpdateParams_get_screenOrientation_m3200C056D5EF350333CBEC08C5BADCB3F9B3588A_inline((XRSessionUpdateParams_t106E075C3B348969D6F3B634195F295CE47DB77F *)(&___other0), /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) == ((uint32_t)L_1))))
{
goto IL_0025;
}
}
{
Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9 L_2;
L_2 = XRSessionUpdateParams_get_screenDimensions_m68257DCBBAEB4090559AC18A180C8E54D02F5118_inline((XRSessionUpdateParams_t106E075C3B348969D6F3B634195F295CE47DB77F *)__this, /*hidden argument*/NULL);
V_0 = L_2;
Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9 L_3;
L_3 = XRSessionUpdateParams_get_screenDimensions_m68257DCBBAEB4090559AC18A180C8E54D02F5118_inline((XRSessionUpdateParams_t106E075C3B348969D6F3B634195F295CE47DB77F *)(&___other0), /*hidden argument*/NULL);
bool L_4;
L_4 = Vector2Int_Equals_m96F4F602CE85AFD675A8096AB9D5E2D4544382FF_inline((Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9 *)(&V_0), L_3, /*hidden argument*/NULL);
return L_4;
}
IL_0025:
{
return (bool)0;
}
}
IL2CPP_EXTERN_C bool XRSessionUpdateParams_Equals_m57475F3E7F97539B697A4DC77122F934C321ECD0_AdjustorThunk (RuntimeObject * __this, XRSessionUpdateParams_t106E075C3B348969D6F3B634195F295CE47DB77F ___other0, const RuntimeMethod* method)
{
XRSessionUpdateParams_t106E075C3B348969D6F3B634195F295CE47DB77F * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XRSessionUpdateParams_t106E075C3B348969D6F3B634195F295CE47DB77F *>(__this + _offset);
bool _returnValue;
_returnValue = XRSessionUpdateParams_Equals_m57475F3E7F97539B697A4DC77122F934C321ECD0(_thisAdjusted, ___other0, 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
// System.IntPtr UnityEngine.XR.ARSubsystems.XRTextureDescriptor::get_nativeTexture()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR intptr_t XRTextureDescriptor_get_nativeTexture_mC7D28CAE1A948B378FF5966C85883508435C2B1A (XRTextureDescriptor_t9CA857DCCC1208B74376787BE4F3008A01B29A57 * __this, const RuntimeMethod* method)
{
{
// get { return m_NativeTexture; }
intptr_t L_0 = __this->get_m_NativeTexture_0();
return (intptr_t)L_0;
}
}
IL2CPP_EXTERN_C intptr_t XRTextureDescriptor_get_nativeTexture_mC7D28CAE1A948B378FF5966C85883508435C2B1A_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
XRTextureDescriptor_t9CA857DCCC1208B74376787BE4F3008A01B29A57 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XRTextureDescriptor_t9CA857DCCC1208B74376787BE4F3008A01B29A57 *>(__this + _offset);
intptr_t _returnValue;
_returnValue = XRTextureDescriptor_get_nativeTexture_mC7D28CAE1A948B378FF5966C85883508435C2B1A_inline(_thisAdjusted, method);
return _returnValue;
}
// System.Int32 UnityEngine.XR.ARSubsystems.XRTextureDescriptor::get_width()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XRTextureDescriptor_get_width_m16F58793E411A03BDB01C19D0BCDBA8DC52455DC (XRTextureDescriptor_t9CA857DCCC1208B74376787BE4F3008A01B29A57 * __this, const RuntimeMethod* method)
{
{
// get { return m_Width; }
int32_t L_0 = __this->get_m_Width_1();
return L_0;
}
}
IL2CPP_EXTERN_C int32_t XRTextureDescriptor_get_width_m16F58793E411A03BDB01C19D0BCDBA8DC52455DC_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
XRTextureDescriptor_t9CA857DCCC1208B74376787BE4F3008A01B29A57 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XRTextureDescriptor_t9CA857DCCC1208B74376787BE4F3008A01B29A57 *>(__this + _offset);
int32_t _returnValue;
_returnValue = XRTextureDescriptor_get_width_m16F58793E411A03BDB01C19D0BCDBA8DC52455DC_inline(_thisAdjusted, method);
return _returnValue;
}
// System.Int32 UnityEngine.XR.ARSubsystems.XRTextureDescriptor::get_height()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XRTextureDescriptor_get_height_mF20F82E1D3B8739A79F017147847B051FD33E554 (XRTextureDescriptor_t9CA857DCCC1208B74376787BE4F3008A01B29A57 * __this, const RuntimeMethod* method)
{
{
// get { return m_Height; }
int32_t L_0 = __this->get_m_Height_2();
return L_0;
}
}
IL2CPP_EXTERN_C int32_t XRTextureDescriptor_get_height_mF20F82E1D3B8739A79F017147847B051FD33E554_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
XRTextureDescriptor_t9CA857DCCC1208B74376787BE4F3008A01B29A57 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XRTextureDescriptor_t9CA857DCCC1208B74376787BE4F3008A01B29A57 *>(__this + _offset);
int32_t _returnValue;
_returnValue = XRTextureDescriptor_get_height_mF20F82E1D3B8739A79F017147847B051FD33E554_inline(_thisAdjusted, method);
return _returnValue;
}
// System.Int32 UnityEngine.XR.ARSubsystems.XRTextureDescriptor::get_mipmapCount()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XRTextureDescriptor_get_mipmapCount_mE8FD55B645419BA7DA6959B000B8218BE142B302 (XRTextureDescriptor_t9CA857DCCC1208B74376787BE4F3008A01B29A57 * __this, const RuntimeMethod* method)
{
{
// get { return m_MipmapCount; }
int32_t L_0 = __this->get_m_MipmapCount_3();
return L_0;
}
}
IL2CPP_EXTERN_C int32_t XRTextureDescriptor_get_mipmapCount_mE8FD55B645419BA7DA6959B000B8218BE142B302_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
XRTextureDescriptor_t9CA857DCCC1208B74376787BE4F3008A01B29A57 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XRTextureDescriptor_t9CA857DCCC1208B74376787BE4F3008A01B29A57 *>(__this + _offset);
int32_t _returnValue;
_returnValue = XRTextureDescriptor_get_mipmapCount_mE8FD55B645419BA7DA6959B000B8218BE142B302_inline(_thisAdjusted, method);
return _returnValue;
}
// UnityEngine.TextureFormat UnityEngine.XR.ARSubsystems.XRTextureDescriptor::get_format()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XRTextureDescriptor_get_format_mB5A486F3100EB333CF52F505ACB63E68C7CB511D (XRTextureDescriptor_t9CA857DCCC1208B74376787BE4F3008A01B29A57 * __this, const RuntimeMethod* method)
{
{
// get { return m_Format; }
int32_t L_0 = __this->get_m_Format_4();
return L_0;
}
}
IL2CPP_EXTERN_C int32_t XRTextureDescriptor_get_format_mB5A486F3100EB333CF52F505ACB63E68C7CB511D_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
XRTextureDescriptor_t9CA857DCCC1208B74376787BE4F3008A01B29A57 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XRTextureDescriptor_t9CA857DCCC1208B74376787BE4F3008A01B29A57 *>(__this + _offset);
int32_t _returnValue;
_returnValue = XRTextureDescriptor_get_format_mB5A486F3100EB333CF52F505ACB63E68C7CB511D_inline(_thisAdjusted, method);
return _returnValue;
}
// System.Int32 UnityEngine.XR.ARSubsystems.XRTextureDescriptor::get_propertyNameId()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XRTextureDescriptor_get_propertyNameId_mF90DF67F19E16118CB3D31EB44E643F4C48DE7C8 (XRTextureDescriptor_t9CA857DCCC1208B74376787BE4F3008A01B29A57 * __this, const RuntimeMethod* method)
{
{
// get { return m_PropertyNameId; }
int32_t L_0 = __this->get_m_PropertyNameId_5();
return L_0;
}
}
IL2CPP_EXTERN_C int32_t XRTextureDescriptor_get_propertyNameId_mF90DF67F19E16118CB3D31EB44E643F4C48DE7C8_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
XRTextureDescriptor_t9CA857DCCC1208B74376787BE4F3008A01B29A57 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XRTextureDescriptor_t9CA857DCCC1208B74376787BE4F3008A01B29A57 *>(__this + _offset);
int32_t _returnValue;
_returnValue = XRTextureDescriptor_get_propertyNameId_mF90DF67F19E16118CB3D31EB44E643F4C48DE7C8_inline(_thisAdjusted, method);
return _returnValue;
}
// System.Boolean UnityEngine.XR.ARSubsystems.XRTextureDescriptor::get_valid()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XRTextureDescriptor_get_valid_m921AF29648A562E6C6D2CA5F0E4A84109368A1E6 (XRTextureDescriptor_t9CA857DCCC1208B74376787BE4F3008A01B29A57 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IntPtr_t_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
// get { return (m_NativeTexture != IntPtr.Zero) && (m_Width > 0) && (m_Height > 0); }
intptr_t L_0 = __this->get_m_NativeTexture_0();
bool L_1;
L_1 = IntPtr_op_Inequality_m212AF0E66AA81FEDC982B1C8A44ADDA24B995EB8((intptr_t)L_0, (intptr_t)(0), /*hidden argument*/NULL);
if (!L_1)
{
goto IL_0025;
}
}
{
int32_t L_2 = __this->get_m_Width_1();
if ((((int32_t)L_2) <= ((int32_t)0)))
{
goto IL_0025;
}
}
{
int32_t L_3 = __this->get_m_Height_2();
return (bool)((((int32_t)L_3) > ((int32_t)0))? 1 : 0);
}
IL_0025:
{
return (bool)0;
}
}
IL2CPP_EXTERN_C bool XRTextureDescriptor_get_valid_m921AF29648A562E6C6D2CA5F0E4A84109368A1E6_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
XRTextureDescriptor_t9CA857DCCC1208B74376787BE4F3008A01B29A57 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XRTextureDescriptor_t9CA857DCCC1208B74376787BE4F3008A01B29A57 *>(__this + _offset);
bool _returnValue;
_returnValue = XRTextureDescriptor_get_valid_m921AF29648A562E6C6D2CA5F0E4A84109368A1E6(_thisAdjusted, method);
return _returnValue;
}
// System.Int32 UnityEngine.XR.ARSubsystems.XRTextureDescriptor::get_depth()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XRTextureDescriptor_get_depth_m27FA31D85456F65E706B03743250CB3858EBE0E3 (XRTextureDescriptor_t9CA857DCCC1208B74376787BE4F3008A01B29A57 * __this, const RuntimeMethod* method)
{
{
// get => m_Depth;
int32_t L_0 = __this->get_m_Depth_6();
return L_0;
}
}
IL2CPP_EXTERN_C int32_t XRTextureDescriptor_get_depth_m27FA31D85456F65E706B03743250CB3858EBE0E3_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
XRTextureDescriptor_t9CA857DCCC1208B74376787BE4F3008A01B29A57 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XRTextureDescriptor_t9CA857DCCC1208B74376787BE4F3008A01B29A57 *>(__this + _offset);
int32_t _returnValue;
_returnValue = XRTextureDescriptor_get_depth_m27FA31D85456F65E706B03743250CB3858EBE0E3_inline(_thisAdjusted, method);
return _returnValue;
}
// UnityEngine.Rendering.TextureDimension UnityEngine.XR.ARSubsystems.XRTextureDescriptor::get_dimension()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XRTextureDescriptor_get_dimension_mAB82596EFC83FBC3477D496E77FD9B0579922CCC (XRTextureDescriptor_t9CA857DCCC1208B74376787BE4F3008A01B29A57 * __this, const RuntimeMethod* method)
{
{
// get => m_Dimension;
int32_t L_0 = __this->get_m_Dimension_7();
return L_0;
}
}
IL2CPP_EXTERN_C int32_t XRTextureDescriptor_get_dimension_mAB82596EFC83FBC3477D496E77FD9B0579922CCC_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
XRTextureDescriptor_t9CA857DCCC1208B74376787BE4F3008A01B29A57 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XRTextureDescriptor_t9CA857DCCC1208B74376787BE4F3008A01B29A57 *>(__this + _offset);
int32_t _returnValue;
_returnValue = XRTextureDescriptor_get_dimension_mAB82596EFC83FBC3477D496E77FD9B0579922CCC_inline(_thisAdjusted, method);
return _returnValue;
}
// System.Boolean UnityEngine.XR.ARSubsystems.XRTextureDescriptor::hasIdenticalTextureMetadata(UnityEngine.XR.ARSubsystems.XRTextureDescriptor)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XRTextureDescriptor_hasIdenticalTextureMetadata_mEEAE086BC369920DB89D8E38BA6A1133436100F2 (XRTextureDescriptor_t9CA857DCCC1208B74376787BE4F3008A01B29A57 * __this, XRTextureDescriptor_t9CA857DCCC1208B74376787BE4F3008A01B29A57 ___other0, const RuntimeMethod* method)
{
{
// return
// m_Width.Equals(other.m_Width) &&
// m_Height.Equals(other.m_Height) &&
// m_Depth.Equals(other.m_Depth) &&
// m_Dimension == other.m_Dimension &&
// m_MipmapCount.Equals(other.m_MipmapCount) &&
// (m_Format == other.m_Format);
int32_t* L_0 = __this->get_address_of_m_Width_1();
XRTextureDescriptor_t9CA857DCCC1208B74376787BE4F3008A01B29A57 L_1 = ___other0;
int32_t L_2 = L_1.get_m_Width_1();
bool L_3;
L_3 = Int32_Equals_mA73E9B3A01B9B9151C262C1E1A56C6AB4891A5E4((int32_t*)L_0, L_2, /*hidden argument*/NULL);
if (!L_3)
{
goto IL_0069;
}
}
{
int32_t* L_4 = __this->get_address_of_m_Height_2();
XRTextureDescriptor_t9CA857DCCC1208B74376787BE4F3008A01B29A57 L_5 = ___other0;
int32_t L_6 = L_5.get_m_Height_2();
bool L_7;
L_7 = Int32_Equals_mA73E9B3A01B9B9151C262C1E1A56C6AB4891A5E4((int32_t*)L_4, L_6, /*hidden argument*/NULL);
if (!L_7)
{
goto IL_0069;
}
}
{
int32_t* L_8 = __this->get_address_of_m_Depth_6();
XRTextureDescriptor_t9CA857DCCC1208B74376787BE4F3008A01B29A57 L_9 = ___other0;
int32_t L_10 = L_9.get_m_Depth_6();
bool L_11;
L_11 = Int32_Equals_mA73E9B3A01B9B9151C262C1E1A56C6AB4891A5E4((int32_t*)L_8, L_10, /*hidden argument*/NULL);
if (!L_11)
{
goto IL_0069;
}
}
{
int32_t L_12 = __this->get_m_Dimension_7();
XRTextureDescriptor_t9CA857DCCC1208B74376787BE4F3008A01B29A57 L_13 = ___other0;
int32_t L_14 = L_13.get_m_Dimension_7();
if ((!(((uint32_t)L_12) == ((uint32_t)L_14))))
{
goto IL_0069;
}
}
{
int32_t* L_15 = __this->get_address_of_m_MipmapCount_3();
XRTextureDescriptor_t9CA857DCCC1208B74376787BE4F3008A01B29A57 L_16 = ___other0;
int32_t L_17 = L_16.get_m_MipmapCount_3();
bool L_18;
L_18 = Int32_Equals_mA73E9B3A01B9B9151C262C1E1A56C6AB4891A5E4((int32_t*)L_15, L_17, /*hidden argument*/NULL);
if (!L_18)
{
goto IL_0069;
}
}
{
int32_t L_19 = __this->get_m_Format_4();
XRTextureDescriptor_t9CA857DCCC1208B74376787BE4F3008A01B29A57 L_20 = ___other0;
int32_t L_21 = L_20.get_m_Format_4();
return (bool)((((int32_t)L_19) == ((int32_t)L_21))? 1 : 0);
}
IL_0069:
{
return (bool)0;
}
}
IL2CPP_EXTERN_C bool XRTextureDescriptor_hasIdenticalTextureMetadata_mEEAE086BC369920DB89D8E38BA6A1133436100F2_AdjustorThunk (RuntimeObject * __this, XRTextureDescriptor_t9CA857DCCC1208B74376787BE4F3008A01B29A57 ___other0, const RuntimeMethod* method)
{
XRTextureDescriptor_t9CA857DCCC1208B74376787BE4F3008A01B29A57 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XRTextureDescriptor_t9CA857DCCC1208B74376787BE4F3008A01B29A57 *>(__this + _offset);
bool _returnValue;
_returnValue = XRTextureDescriptor_hasIdenticalTextureMetadata_mEEAE086BC369920DB89D8E38BA6A1133436100F2(_thisAdjusted, ___other0, method);
return _returnValue;
}
// System.Void UnityEngine.XR.ARSubsystems.XRTextureDescriptor::Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRTextureDescriptor_Reset_m7C4468143C7A9EA8B43068E809C8A392CCF31F09 (XRTextureDescriptor_t9CA857DCCC1208B74376787BE4F3008A01B29A57 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IntPtr_t_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
// m_NativeTexture = IntPtr.Zero;
__this->set_m_NativeTexture_0((intptr_t)(0));
// m_Width = 0;
__this->set_m_Width_1(0);
// m_Height = 0;
__this->set_m_Height_2(0);
// m_Depth = 0;
__this->set_m_Depth_6(0);
// m_Dimension = (TextureDimension)0;
__this->set_m_Dimension_7(0);
// m_MipmapCount = 0;
__this->set_m_MipmapCount_3(0);
// m_Format = (TextureFormat)0;
__this->set_m_Format_4(0);
// m_PropertyNameId = 0;
__this->set_m_PropertyNameId_5(0);
// }
return;
}
}
IL2CPP_EXTERN_C void XRTextureDescriptor_Reset_m7C4468143C7A9EA8B43068E809C8A392CCF31F09_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
XRTextureDescriptor_t9CA857DCCC1208B74376787BE4F3008A01B29A57 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XRTextureDescriptor_t9CA857DCCC1208B74376787BE4F3008A01B29A57 *>(__this + _offset);
XRTextureDescriptor_Reset_m7C4468143C7A9EA8B43068E809C8A392CCF31F09(_thisAdjusted, method);
}
// System.Boolean UnityEngine.XR.ARSubsystems.XRTextureDescriptor::Equals(UnityEngine.XR.ARSubsystems.XRTextureDescriptor)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XRTextureDescriptor_Equals_mD2A71E4A2D68686E74A648896FAC0FCDF02BE0B1 (XRTextureDescriptor_t9CA857DCCC1208B74376787BE4F3008A01B29A57 * __this, XRTextureDescriptor_t9CA857DCCC1208B74376787BE4F3008A01B29A57 ___other0, const RuntimeMethod* method)
{
{
// return
// hasIdenticalTextureMetadata(other) &&
// m_PropertyNameId.Equals(other.m_PropertyNameId) &&
// (m_NativeTexture == other.m_NativeTexture);
XRTextureDescriptor_t9CA857DCCC1208B74376787BE4F3008A01B29A57 L_0 = ___other0;
bool L_1;
L_1 = XRTextureDescriptor_hasIdenticalTextureMetadata_mEEAE086BC369920DB89D8E38BA6A1133436100F2((XRTextureDescriptor_t9CA857DCCC1208B74376787BE4F3008A01B29A57 *)__this, L_0, /*hidden argument*/NULL);
if (!L_1)
{
goto IL_002e;
}
}
{
int32_t* L_2 = __this->get_address_of_m_PropertyNameId_5();
XRTextureDescriptor_t9CA857DCCC1208B74376787BE4F3008A01B29A57 L_3 = ___other0;
int32_t L_4 = L_3.get_m_PropertyNameId_5();
bool L_5;
L_5 = Int32_Equals_mA73E9B3A01B9B9151C262C1E1A56C6AB4891A5E4((int32_t*)L_2, L_4, /*hidden argument*/NULL);
if (!L_5)
{
goto IL_002e;
}
}
{
intptr_t L_6 = __this->get_m_NativeTexture_0();
XRTextureDescriptor_t9CA857DCCC1208B74376787BE4F3008A01B29A57 L_7 = ___other0;
intptr_t L_8 = L_7.get_m_NativeTexture_0();
bool L_9;
L_9 = IntPtr_op_Equality_mD94F3FE43A65684EFF984A7B95E70D2520C0AC73((intptr_t)L_6, (intptr_t)L_8, /*hidden argument*/NULL);
return L_9;
}
IL_002e:
{
return (bool)0;
}
}
IL2CPP_EXTERN_C bool XRTextureDescriptor_Equals_mD2A71E4A2D68686E74A648896FAC0FCDF02BE0B1_AdjustorThunk (RuntimeObject * __this, XRTextureDescriptor_t9CA857DCCC1208B74376787BE4F3008A01B29A57 ___other0, const RuntimeMethod* method)
{
XRTextureDescriptor_t9CA857DCCC1208B74376787BE4F3008A01B29A57 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XRTextureDescriptor_t9CA857DCCC1208B74376787BE4F3008A01B29A57 *>(__this + _offset);
bool _returnValue;
_returnValue = XRTextureDescriptor_Equals_mD2A71E4A2D68686E74A648896FAC0FCDF02BE0B1(_thisAdjusted, ___other0, method);
return _returnValue;
}
// System.Boolean UnityEngine.XR.ARSubsystems.XRTextureDescriptor::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XRTextureDescriptor_Equals_m37D3AFD7E110F62E8977937DD66AC053B3F64C8D (XRTextureDescriptor_t9CA857DCCC1208B74376787BE4F3008A01B29A57 * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XRTextureDescriptor_t9CA857DCCC1208B74376787BE4F3008A01B29A57_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
// return ((obj is XRTextureDescriptor) && Equals((XRTextureDescriptor)obj));
RuntimeObject * L_0 = ___obj0;
if (!((RuntimeObject *)IsInstSealed((RuntimeObject*)L_0, XRTextureDescriptor_t9CA857DCCC1208B74376787BE4F3008A01B29A57_il2cpp_TypeInfo_var)))
{
goto IL_0015;
}
}
{
RuntimeObject * L_1 = ___obj0;
bool L_2;
L_2 = XRTextureDescriptor_Equals_mD2A71E4A2D68686E74A648896FAC0FCDF02BE0B1((XRTextureDescriptor_t9CA857DCCC1208B74376787BE4F3008A01B29A57 *)__this, ((*(XRTextureDescriptor_t9CA857DCCC1208B74376787BE4F3008A01B29A57 *)((XRTextureDescriptor_t9CA857DCCC1208B74376787BE4F3008A01B29A57 *)UnBox(L_1, XRTextureDescriptor_t9CA857DCCC1208B74376787BE4F3008A01B29A57_il2cpp_TypeInfo_var)))), /*hidden argument*/NULL);
return L_2;
}
IL_0015:
{
return (bool)0;
}
}
IL2CPP_EXTERN_C bool XRTextureDescriptor_Equals_m37D3AFD7E110F62E8977937DD66AC053B3F64C8D_AdjustorThunk (RuntimeObject * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
XRTextureDescriptor_t9CA857DCCC1208B74376787BE4F3008A01B29A57 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XRTextureDescriptor_t9CA857DCCC1208B74376787BE4F3008A01B29A57 *>(__this + _offset);
bool _returnValue;
_returnValue = XRTextureDescriptor_Equals_m37D3AFD7E110F62E8977937DD66AC053B3F64C8D(_thisAdjusted, ___obj0, method);
return _returnValue;
}
// System.Int32 UnityEngine.XR.ARSubsystems.XRTextureDescriptor::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XRTextureDescriptor_GetHashCode_m8628ACEB1A4A6203BCD28B01D59B588715C83291 (XRTextureDescriptor_t9CA857DCCC1208B74376787BE4F3008A01B29A57 * __this, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
// int hashCode = 486187739;
// hashCode = (hashCode * 486187739) + m_NativeTexture.GetHashCode();
intptr_t* L_0 = __this->get_address_of_m_NativeTexture_0();
int32_t L_1;
L_1 = IntPtr_GetHashCode_m55E65FB52EFE7C0EBC3C28E66A5D7542F3B1D35D((intptr_t*)L_0, /*hidden argument*/NULL);
// hashCode = (hashCode * 486187739) + m_Width.GetHashCode();
int32_t* L_2 = __this->get_address_of_m_Width_1();
int32_t L_3;
L_3 = Int32_GetHashCode_mEDD3F492A5F7CF021125AE3F38E2B8F8743FC667((int32_t*)L_2, /*hidden argument*/NULL);
// hashCode = (hashCode * 486187739) + m_Height.GetHashCode();
int32_t* L_4 = __this->get_address_of_m_Height_2();
int32_t L_5;
L_5 = Int32_GetHashCode_mEDD3F492A5F7CF021125AE3F38E2B8F8743FC667((int32_t*)L_4, /*hidden argument*/NULL);
// hashCode = (hashCode * 486187739) + m_Depth.GetHashCode();
int32_t* L_6 = __this->get_address_of_m_Depth_6();
int32_t L_7;
L_7 = Int32_GetHashCode_mEDD3F492A5F7CF021125AE3F38E2B8F8743FC667((int32_t*)L_6, /*hidden argument*/NULL);
// hashCode = (hashCode * 486187739) + ((int)m_Dimension).GetHashCode();
int32_t L_8 = __this->get_m_Dimension_7();
V_0 = L_8;
int32_t L_9;
L_9 = Int32_GetHashCode_mEDD3F492A5F7CF021125AE3F38E2B8F8743FC667((int32_t*)(&V_0), /*hidden argument*/NULL);
// hashCode = (hashCode * 486187739) + m_MipmapCount.GetHashCode();
int32_t* L_10 = __this->get_address_of_m_MipmapCount_3();
int32_t L_11;
L_11 = Int32_GetHashCode_mEDD3F492A5F7CF021125AE3F38E2B8F8743FC667((int32_t*)L_10, /*hidden argument*/NULL);
// hashCode = (hashCode * 486187739) + ((int)m_Format).GetHashCode();
int32_t L_12 = __this->get_m_Format_4();
V_0 = L_12;
int32_t L_13;
L_13 = Int32_GetHashCode_mEDD3F492A5F7CF021125AE3F38E2B8F8743FC667((int32_t*)(&V_0), /*hidden argument*/NULL);
// hashCode = (hashCode * 486187739) + m_PropertyNameId.GetHashCode();
int32_t* L_14 = __this->get_address_of_m_PropertyNameId_5();
int32_t L_15;
L_15 = Int32_GetHashCode_mEDD3F492A5F7CF021125AE3F38E2B8F8743FC667((int32_t*)L_14, /*hidden argument*/NULL);
// return hashCode;
return ((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)((int32_t)486187739), (int32_t)((int32_t)486187739))), (int32_t)L_1)), (int32_t)((int32_t)486187739))), (int32_t)L_3)), (int32_t)((int32_t)486187739))), (int32_t)L_5)), (int32_t)((int32_t)486187739))), (int32_t)L_7)), (int32_t)((int32_t)486187739))), (int32_t)L_9)), (int32_t)((int32_t)486187739))), (int32_t)L_11)), (int32_t)((int32_t)486187739))), (int32_t)L_13)), (int32_t)((int32_t)486187739))), (int32_t)L_15));
}
}
IL2CPP_EXTERN_C int32_t XRTextureDescriptor_GetHashCode_m8628ACEB1A4A6203BCD28B01D59B588715C83291_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
XRTextureDescriptor_t9CA857DCCC1208B74376787BE4F3008A01B29A57 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XRTextureDescriptor_t9CA857DCCC1208B74376787BE4F3008A01B29A57 *>(__this + _offset);
int32_t _returnValue;
_returnValue = XRTextureDescriptor_GetHashCode_m8628ACEB1A4A6203BCD28B01D59B588715C83291(_thisAdjusted, method);
return _returnValue;
}
// System.String UnityEngine.XR.ARSubsystems.XRTextureDescriptor::ToString()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XRTextureDescriptor_ToString_m13E8A051346374949A95D217BBAAD298893A25EB (XRTextureDescriptor_t9CA857DCCC1208B74376787BE4F3008A01B29A57 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TextureDimension_tADCCB7C1D30E4D1182651BA9094B4DE61B63EACC_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TextureFormat_tBED5388A0445FE978F97B41D247275B036407932_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral062DB096C728515E033CF8C48A1C1F0B9A79384B);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral1C60D08AD178165742EAA66ED6E17B425304C141);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral2386E77CF610F786B06A91AF2C1B3FD2282D2745);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral2ABD255D5E79D438044AA7D302C04ABEC3F505B5);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral3B2C1C62D4D1C2A0C8A9AC42DB00D33C654F9AD0);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral5A65C5353FCF9B2392130B62992E8D50E5552C89);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral92580D64BA310146F0049A68E639333564037B8B);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralFDA1C52D0E58360F4E8FD608757CCD98D8772D4F);
s_Il2CppMethodInitialized = true;
}
{
// return $"0x{m_NativeTexture.ToString("X16")} {m_Width.ToString()}x{ m_Height.ToString()}"+
// $"x{m_Depth.ToString()}-{m_MipmapCount.ToString()} dimension:{m_Dimension.ToString()}"+
// $" format:{m_Format.ToString()} propertyNameId:{m_PropertyNameId.ToString()}";
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_0 = (StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)(StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)SZArrayNew(StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A_il2cpp_TypeInfo_var, (uint32_t)((int32_t)16));
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_1 = L_0;
NullCheck(L_1);
ArrayElementTypeCheck (L_1, _stringLiteral5A65C5353FCF9B2392130B62992E8D50E5552C89);
(L_1)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)_stringLiteral5A65C5353FCF9B2392130B62992E8D50E5552C89);
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_2 = L_1;
intptr_t* L_3 = __this->get_address_of_m_NativeTexture_0();
String_t* L_4;
L_4 = IntPtr_ToString_m7CDFDC84936276E62AB76AA238F7571B54DF90B4((intptr_t*)L_3, _stringLiteralFDA1C52D0E58360F4E8FD608757CCD98D8772D4F, /*hidden argument*/NULL);
NullCheck(L_2);
ArrayElementTypeCheck (L_2, L_4);
(L_2)->SetAt(static_cast<il2cpp_array_size_t>(1), (String_t*)L_4);
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_5 = L_2;
NullCheck(L_5);
ArrayElementTypeCheck (L_5, _stringLiteral2386E77CF610F786B06A91AF2C1B3FD2282D2745);
(L_5)->SetAt(static_cast<il2cpp_array_size_t>(2), (String_t*)_stringLiteral2386E77CF610F786B06A91AF2C1B3FD2282D2745);
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_6 = L_5;
int32_t* L_7 = __this->get_address_of_m_Width_1();
String_t* L_8;
L_8 = Int32_ToString_m340C0A14D16799421EFDF8A81C8A16FA76D48411((int32_t*)L_7, /*hidden argument*/NULL);
NullCheck(L_6);
ArrayElementTypeCheck (L_6, L_8);
(L_6)->SetAt(static_cast<il2cpp_array_size_t>(3), (String_t*)L_8);
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_9 = L_6;
NullCheck(L_9);
ArrayElementTypeCheck (L_9, _stringLiteral062DB096C728515E033CF8C48A1C1F0B9A79384B);
(L_9)->SetAt(static_cast<il2cpp_array_size_t>(4), (String_t*)_stringLiteral062DB096C728515E033CF8C48A1C1F0B9A79384B);
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_10 = L_9;
int32_t* L_11 = __this->get_address_of_m_Height_2();
String_t* L_12;
L_12 = Int32_ToString_m340C0A14D16799421EFDF8A81C8A16FA76D48411((int32_t*)L_11, /*hidden argument*/NULL);
NullCheck(L_10);
ArrayElementTypeCheck (L_10, L_12);
(L_10)->SetAt(static_cast<il2cpp_array_size_t>(5), (String_t*)L_12);
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_13 = L_10;
NullCheck(L_13);
ArrayElementTypeCheck (L_13, _stringLiteral062DB096C728515E033CF8C48A1C1F0B9A79384B);
(L_13)->SetAt(static_cast<il2cpp_array_size_t>(6), (String_t*)_stringLiteral062DB096C728515E033CF8C48A1C1F0B9A79384B);
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_14 = L_13;
int32_t* L_15 = __this->get_address_of_m_Depth_6();
String_t* L_16;
L_16 = Int32_ToString_m340C0A14D16799421EFDF8A81C8A16FA76D48411((int32_t*)L_15, /*hidden argument*/NULL);
NullCheck(L_14);
ArrayElementTypeCheck (L_14, L_16);
(L_14)->SetAt(static_cast<il2cpp_array_size_t>(7), (String_t*)L_16);
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_17 = L_14;
NullCheck(L_17);
ArrayElementTypeCheck (L_17, _stringLiteral3B2C1C62D4D1C2A0C8A9AC42DB00D33C654F9AD0);
(L_17)->SetAt(static_cast<il2cpp_array_size_t>(8), (String_t*)_stringLiteral3B2C1C62D4D1C2A0C8A9AC42DB00D33C654F9AD0);
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_18 = L_17;
int32_t* L_19 = __this->get_address_of_m_MipmapCount_3();
String_t* L_20;
L_20 = Int32_ToString_m340C0A14D16799421EFDF8A81C8A16FA76D48411((int32_t*)L_19, /*hidden argument*/NULL);
NullCheck(L_18);
ArrayElementTypeCheck (L_18, L_20);
(L_18)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)9)), (String_t*)L_20);
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_21 = L_18;
NullCheck(L_21);
ArrayElementTypeCheck (L_21, _stringLiteral92580D64BA310146F0049A68E639333564037B8B);
(L_21)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)10)), (String_t*)_stringLiteral92580D64BA310146F0049A68E639333564037B8B);
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_22 = L_21;
int32_t* L_23 = __this->get_address_of_m_Dimension_7();
RuntimeObject * L_24 = Box(TextureDimension_tADCCB7C1D30E4D1182651BA9094B4DE61B63EACC_il2cpp_TypeInfo_var, L_23);
NullCheck(L_24);
String_t* L_25;
L_25 = VirtualFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_24);
*L_23 = *(int32_t*)UnBox(L_24);
NullCheck(L_22);
ArrayElementTypeCheck (L_22, L_25);
(L_22)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)11)), (String_t*)L_25);
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_26 = L_22;
NullCheck(L_26);
ArrayElementTypeCheck (L_26, _stringLiteral2ABD255D5E79D438044AA7D302C04ABEC3F505B5);
(L_26)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)12)), (String_t*)_stringLiteral2ABD255D5E79D438044AA7D302C04ABEC3F505B5);
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_27 = L_26;
int32_t* L_28 = __this->get_address_of_m_Format_4();
RuntimeObject * L_29 = Box(TextureFormat_tBED5388A0445FE978F97B41D247275B036407932_il2cpp_TypeInfo_var, L_28);
NullCheck(L_29);
String_t* L_30;
L_30 = VirtualFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_29);
*L_28 = *(int32_t*)UnBox(L_29);
NullCheck(L_27);
ArrayElementTypeCheck (L_27, L_30);
(L_27)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)13)), (String_t*)L_30);
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_31 = L_27;
NullCheck(L_31);
ArrayElementTypeCheck (L_31, _stringLiteral1C60D08AD178165742EAA66ED6E17B425304C141);
(L_31)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)14)), (String_t*)_stringLiteral1C60D08AD178165742EAA66ED6E17B425304C141);
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_32 = L_31;
int32_t* L_33 = __this->get_address_of_m_PropertyNameId_5();
String_t* L_34;
L_34 = Int32_ToString_m340C0A14D16799421EFDF8A81C8A16FA76D48411((int32_t*)L_33, /*hidden argument*/NULL);
NullCheck(L_32);
ArrayElementTypeCheck (L_32, L_34);
(L_32)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)15)), (String_t*)L_34);
String_t* L_35;
L_35 = String_Concat_mFEA7EFA1A6E75B96B1B7BC4526AAC864BFF83CC9(L_32, /*hidden argument*/NULL);
return L_35;
}
}
IL2CPP_EXTERN_C String_t* XRTextureDescriptor_ToString_m13E8A051346374949A95D217BBAAD298893A25EB_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
XRTextureDescriptor_t9CA857DCCC1208B74376787BE4F3008A01B29A57 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XRTextureDescriptor_t9CA857DCCC1208B74376787BE4F3008A01B29A57 *>(__this + _offset);
String_t* _returnValue;
_returnValue = XRTextureDescriptor_ToString_m13E8A051346374949A95D217BBAAD298893A25EB(_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
// UnityEngine.XR.ARSubsystems.XRTrackedImage UnityEngine.XR.ARSubsystems.XRTrackedImage::get_defaultValue()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XRTrackedImage_t92B53E0621C6D2E930761110E719F0E9580A722F XRTrackedImage_get_defaultValue_mF1D23DA4557C85FAEB70039F5D14156F1176E84E (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XRTrackedImage_t92B53E0621C6D2E930761110E719F0E9580A722F_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
// public static XRTrackedImage defaultValue => s_Default;
IL2CPP_RUNTIME_CLASS_INIT(XRTrackedImage_t92B53E0621C6D2E930761110E719F0E9580A722F_il2cpp_TypeInfo_var);
XRTrackedImage_t92B53E0621C6D2E930761110E719F0E9580A722F L_0 = ((XRTrackedImage_t92B53E0621C6D2E930761110E719F0E9580A722F_StaticFields*)il2cpp_codegen_static_fields_for(XRTrackedImage_t92B53E0621C6D2E930761110E719F0E9580A722F_il2cpp_TypeInfo_var))->get_s_Default_0();
return L_0;
}
}
// UnityEngine.XR.ARSubsystems.TrackableId UnityEngine.XR.ARSubsystems.XRTrackedImage::get_trackableId()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B XRTrackedImage_get_trackableId_m908642D8D46876C10767B693C55A4076AA0230D6 (XRTrackedImage_t92B53E0621C6D2E930761110E719F0E9580A722F * __this, const RuntimeMethod* method)
{
{
// public TrackableId trackableId => m_Id;
TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B L_0 = __this->get_m_Id_1();
return L_0;
}
}
IL2CPP_EXTERN_C TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B XRTrackedImage_get_trackableId_m908642D8D46876C10767B693C55A4076AA0230D6_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
XRTrackedImage_t92B53E0621C6D2E930761110E719F0E9580A722F * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XRTrackedImage_t92B53E0621C6D2E930761110E719F0E9580A722F *>(__this + _offset);
TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B _returnValue;
_returnValue = XRTrackedImage_get_trackableId_m908642D8D46876C10767B693C55A4076AA0230D6_inline(_thisAdjusted, method);
return _returnValue;
}
// System.Guid UnityEngine.XR.ARSubsystems.XRTrackedImage::get_sourceImageId()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Guid_t XRTrackedImage_get_sourceImageId_m7840008F6FBB7242723DBA7ADB29411BF199B063 (XRTrackedImage_t92B53E0621C6D2E930761110E719F0E9580A722F * __this, const RuntimeMethod* method)
{
{
// public Guid sourceImageId => m_SourceImageId;
Guid_t L_0 = __this->get_m_SourceImageId_2();
return L_0;
}
}
IL2CPP_EXTERN_C Guid_t XRTrackedImage_get_sourceImageId_m7840008F6FBB7242723DBA7ADB29411BF199B063_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
XRTrackedImage_t92B53E0621C6D2E930761110E719F0E9580A722F * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XRTrackedImage_t92B53E0621C6D2E930761110E719F0E9580A722F *>(__this + _offset);
Guid_t _returnValue;
_returnValue = XRTrackedImage_get_sourceImageId_m7840008F6FBB7242723DBA7ADB29411BF199B063_inline(_thisAdjusted, method);
return _returnValue;
}
// UnityEngine.Pose UnityEngine.XR.ARSubsystems.XRTrackedImage::get_pose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A XRTrackedImage_get_pose_m2DA4B57E9B5317F353B2766538088CFF8991DAB1 (XRTrackedImage_t92B53E0621C6D2E930761110E719F0E9580A722F * __this, const RuntimeMethod* method)
{
{
// public Pose pose => m_Pose;
Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A L_0 = __this->get_m_Pose_3();
return L_0;
}
}
IL2CPP_EXTERN_C Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A XRTrackedImage_get_pose_m2DA4B57E9B5317F353B2766538088CFF8991DAB1_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
XRTrackedImage_t92B53E0621C6D2E930761110E719F0E9580A722F * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XRTrackedImage_t92B53E0621C6D2E930761110E719F0E9580A722F *>(__this + _offset);
Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A _returnValue;
_returnValue = XRTrackedImage_get_pose_m2DA4B57E9B5317F353B2766538088CFF8991DAB1_inline(_thisAdjusted, method);
return _returnValue;
}
// UnityEngine.Vector2 UnityEngine.XR.ARSubsystems.XRTrackedImage::get_size()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 XRTrackedImage_get_size_mBDB5B8715E7C74B9459198230517668BD215E75F (XRTrackedImage_t92B53E0621C6D2E930761110E719F0E9580A722F * __this, const RuntimeMethod* method)
{
{
// public Vector2 size => m_Size;
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 L_0 = __this->get_m_Size_4();
return L_0;
}
}
IL2CPP_EXTERN_C Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 XRTrackedImage_get_size_mBDB5B8715E7C74B9459198230517668BD215E75F_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
XRTrackedImage_t92B53E0621C6D2E930761110E719F0E9580A722F * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XRTrackedImage_t92B53E0621C6D2E930761110E719F0E9580A722F *>(__this + _offset);
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 _returnValue;
_returnValue = XRTrackedImage_get_size_mBDB5B8715E7C74B9459198230517668BD215E75F_inline(_thisAdjusted, method);
return _returnValue;
}
// UnityEngine.XR.ARSubsystems.TrackingState UnityEngine.XR.ARSubsystems.XRTrackedImage::get_trackingState()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XRTrackedImage_get_trackingState_m7ADAE68E0B5A3D253B1E086276EE5BC5D9768E71 (XRTrackedImage_t92B53E0621C6D2E930761110E719F0E9580A722F * __this, const RuntimeMethod* method)
{
{
// public TrackingState trackingState => m_TrackingState;
int32_t L_0 = __this->get_m_TrackingState_5();
return L_0;
}
}
IL2CPP_EXTERN_C int32_t XRTrackedImage_get_trackingState_m7ADAE68E0B5A3D253B1E086276EE5BC5D9768E71_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
XRTrackedImage_t92B53E0621C6D2E930761110E719F0E9580A722F * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XRTrackedImage_t92B53E0621C6D2E930761110E719F0E9580A722F *>(__this + _offset);
int32_t _returnValue;
_returnValue = XRTrackedImage_get_trackingState_m7ADAE68E0B5A3D253B1E086276EE5BC5D9768E71_inline(_thisAdjusted, method);
return _returnValue;
}
// System.IntPtr UnityEngine.XR.ARSubsystems.XRTrackedImage::get_nativePtr()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR intptr_t XRTrackedImage_get_nativePtr_mF92D042188F2FF5DADA33AB61235DC6CD874B202 (XRTrackedImage_t92B53E0621C6D2E930761110E719F0E9580A722F * __this, const RuntimeMethod* method)
{
{
// public IntPtr nativePtr => m_NativePtr;
intptr_t L_0 = __this->get_m_NativePtr_6();
return (intptr_t)L_0;
}
}
IL2CPP_EXTERN_C intptr_t XRTrackedImage_get_nativePtr_mF92D042188F2FF5DADA33AB61235DC6CD874B202_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
XRTrackedImage_t92B53E0621C6D2E930761110E719F0E9580A722F * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XRTrackedImage_t92B53E0621C6D2E930761110E719F0E9580A722F *>(__this + _offset);
intptr_t _returnValue;
_returnValue = XRTrackedImage_get_nativePtr_mF92D042188F2FF5DADA33AB61235DC6CD874B202_inline(_thisAdjusted, method);
return _returnValue;
}
// System.Int32 UnityEngine.XR.ARSubsystems.XRTrackedImage::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XRTrackedImage_GetHashCode_m312EB4C09316425C0F30B8988A915F647035846B (XRTrackedImage_t92B53E0621C6D2E930761110E719F0E9580A722F * __this, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
// var hashCode = m_Id.GetHashCode();
TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B * L_0 = __this->get_address_of_m_Id_1();
int32_t L_1;
L_1 = TrackableId_GetHashCode_mFD297FC6DB40FB5B28C6E9B7A2CF2785D75C4E86((TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B *)L_0, /*hidden argument*/NULL);
// hashCode = hashCode * 486187739 + m_SourceImageId.GetHashCode();
Guid_t * L_2 = __this->get_address_of_m_SourceImageId_2();
int32_t L_3;
L_3 = Guid_GetHashCode_mD32F5054E937C98B3D082594B3849808F1E92AE7((Guid_t *)L_2, /*hidden argument*/NULL);
// hashCode = hashCode * 486187739 + m_Pose.GetHashCode();
Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A * L_4 = __this->get_address_of_m_Pose_3();
int32_t L_5;
L_5 = Pose_GetHashCode_mE1DD7FBCCB1C979B252F0B117276BA11CF4D2367((Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A *)L_4, /*hidden argument*/NULL);
// hashCode = hashCode * 486187739 + m_Size.GetHashCode();
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 * L_6 = __this->get_address_of_m_Size_4();
int32_t L_7;
L_7 = Vector2_GetHashCode_m9A5DD8406289F38806CC42C394E324C1C2AB3732((Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 *)L_6, /*hidden argument*/NULL);
// hashCode = hashCode * 486187739 + ((int)m_TrackingState).GetHashCode();
int32_t L_8 = __this->get_m_TrackingState_5();
V_0 = L_8;
int32_t L_9;
L_9 = Int32_GetHashCode_mEDD3F492A5F7CF021125AE3F38E2B8F8743FC667((int32_t*)(&V_0), /*hidden argument*/NULL);
// return hashCode;
return ((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)L_1, (int32_t)((int32_t)486187739))), (int32_t)L_3)), (int32_t)((int32_t)486187739))), (int32_t)L_5)), (int32_t)((int32_t)486187739))), (int32_t)L_7)), (int32_t)((int32_t)486187739))), (int32_t)L_9));
}
}
IL2CPP_EXTERN_C int32_t XRTrackedImage_GetHashCode_m312EB4C09316425C0F30B8988A915F647035846B_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
XRTrackedImage_t92B53E0621C6D2E930761110E719F0E9580A722F * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XRTrackedImage_t92B53E0621C6D2E930761110E719F0E9580A722F *>(__this + _offset);
int32_t _returnValue;
_returnValue = XRTrackedImage_GetHashCode_m312EB4C09316425C0F30B8988A915F647035846B(_thisAdjusted, method);
return _returnValue;
}
// System.Boolean UnityEngine.XR.ARSubsystems.XRTrackedImage::Equals(UnityEngine.XR.ARSubsystems.XRTrackedImage)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XRTrackedImage_Equals_mFE06306D9BB3EBD3C7CCDD555A2F193ED4FE7D65 (XRTrackedImage_t92B53E0621C6D2E930761110E719F0E9580A722F * __this, XRTrackedImage_t92B53E0621C6D2E930761110E719F0E9580A722F ___other0, const RuntimeMethod* method)
{
{
// return
// m_Id.Equals(other.m_Id) &&
// m_SourceImageId.Equals(other.m_SourceImageId) &&
// m_Pose.Equals(other.m_Pose) &&
// m_Size.Equals(other.m_Size) &&
// m_TrackingState == other.m_TrackingState;
TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B * L_0 = __this->get_address_of_m_Id_1();
XRTrackedImage_t92B53E0621C6D2E930761110E719F0E9580A722F L_1 = ___other0;
TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B L_2 = L_1.get_m_Id_1();
bool L_3;
L_3 = TrackableId_Equals_m1DF35616359175E3D66DE18250E8CDA1E6462B06((TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B *)L_0, L_2, /*hidden argument*/NULL);
if (!L_3)
{
goto IL_005b;
}
}
{
Guid_t * L_4 = __this->get_address_of_m_SourceImageId_2();
XRTrackedImage_t92B53E0621C6D2E930761110E719F0E9580A722F L_5 = ___other0;
Guid_t L_6 = L_5.get_m_SourceImageId_2();
bool L_7;
L_7 = Guid_Equals_m602304DBC4842AB53670762A6DB52D30C3973258((Guid_t *)L_4, L_6, /*hidden argument*/NULL);
if (!L_7)
{
goto IL_005b;
}
}
{
Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A * L_8 = __this->get_address_of_m_Pose_3();
XRTrackedImage_t92B53E0621C6D2E930761110E719F0E9580A722F L_9 = ___other0;
Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A L_10 = L_9.get_m_Pose_3();
bool L_11;
L_11 = Pose_Equals_mFAE0041090F2032B8FCE63A0F289DD206134BF15((Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A *)L_8, L_10, /*hidden argument*/NULL);
if (!L_11)
{
goto IL_005b;
}
}
{
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 * L_12 = __this->get_address_of_m_Size_4();
XRTrackedImage_t92B53E0621C6D2E930761110E719F0E9580A722F L_13 = ___other0;
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 L_14 = L_13.get_m_Size_4();
bool L_15;
L_15 = Vector2_Equals_m6E08A16717F2B9EE8B24EBA6B234A03098D5F05D_inline((Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 *)L_12, L_14, /*hidden argument*/NULL);
if (!L_15)
{
goto IL_005b;
}
}
{
int32_t L_16 = __this->get_m_TrackingState_5();
XRTrackedImage_t92B53E0621C6D2E930761110E719F0E9580A722F L_17 = ___other0;
int32_t L_18 = L_17.get_m_TrackingState_5();
return (bool)((((int32_t)L_16) == ((int32_t)L_18))? 1 : 0);
}
IL_005b:
{
return (bool)0;
}
}
IL2CPP_EXTERN_C bool XRTrackedImage_Equals_mFE06306D9BB3EBD3C7CCDD555A2F193ED4FE7D65_AdjustorThunk (RuntimeObject * __this, XRTrackedImage_t92B53E0621C6D2E930761110E719F0E9580A722F ___other0, const RuntimeMethod* method)
{
XRTrackedImage_t92B53E0621C6D2E930761110E719F0E9580A722F * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XRTrackedImage_t92B53E0621C6D2E930761110E719F0E9580A722F *>(__this + _offset);
bool _returnValue;
_returnValue = XRTrackedImage_Equals_mFE06306D9BB3EBD3C7CCDD555A2F193ED4FE7D65(_thisAdjusted, ___other0, method);
return _returnValue;
}
// System.Boolean UnityEngine.XR.ARSubsystems.XRTrackedImage::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XRTrackedImage_Equals_m953C1CFB9A3879975873D13E24071F51C772635A (XRTrackedImage_t92B53E0621C6D2E930761110E719F0E9580A722F * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XRTrackedImage_t92B53E0621C6D2E930761110E719F0E9580A722F_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
// public override bool Equals(object obj) => obj is XRTrackedImage && Equals((XRTrackedImage)obj);
RuntimeObject * L_0 = ___obj0;
if (!((RuntimeObject *)IsInstSealed((RuntimeObject*)L_0, XRTrackedImage_t92B53E0621C6D2E930761110E719F0E9580A722F_il2cpp_TypeInfo_var)))
{
goto IL_0015;
}
}
{
RuntimeObject * L_1 = ___obj0;
bool L_2;
L_2 = XRTrackedImage_Equals_mFE06306D9BB3EBD3C7CCDD555A2F193ED4FE7D65((XRTrackedImage_t92B53E0621C6D2E930761110E719F0E9580A722F *)__this, ((*(XRTrackedImage_t92B53E0621C6D2E930761110E719F0E9580A722F *)((XRTrackedImage_t92B53E0621C6D2E930761110E719F0E9580A722F *)UnBox(L_1, XRTrackedImage_t92B53E0621C6D2E930761110E719F0E9580A722F_il2cpp_TypeInfo_var)))), /*hidden argument*/NULL);
return L_2;
}
IL_0015:
{
return (bool)0;
}
}
IL2CPP_EXTERN_C bool XRTrackedImage_Equals_m953C1CFB9A3879975873D13E24071F51C772635A_AdjustorThunk (RuntimeObject * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
XRTrackedImage_t92B53E0621C6D2E930761110E719F0E9580A722F * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XRTrackedImage_t92B53E0621C6D2E930761110E719F0E9580A722F *>(__this + _offset);
bool _returnValue;
_returnValue = XRTrackedImage_Equals_m953C1CFB9A3879975873D13E24071F51C772635A(_thisAdjusted, ___obj0, method);
return _returnValue;
}
// System.Void UnityEngine.XR.ARSubsystems.XRTrackedImage::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRTrackedImage__cctor_mE7FFB610B77B6A729504D17C98C52C09522FDDEA (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Guid_t_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XRTrackedImage_t92B53E0621C6D2E930761110E719F0E9580A722F_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
XRTrackedImage_t92B53E0621C6D2E930761110E719F0E9580A722F V_0;
memset((&V_0), 0, sizeof(V_0));
{
// static readonly XRTrackedImage s_Default = new XRTrackedImage
// {
// m_Id = TrackableId.invalidId,
// m_SourceImageId = Guid.Empty,
// m_Pose = Pose.identity,
// };
il2cpp_codegen_initobj((&V_0), sizeof(XRTrackedImage_t92B53E0621C6D2E930761110E719F0E9580A722F ));
IL2CPP_RUNTIME_CLASS_INIT(TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B_il2cpp_TypeInfo_var);
TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B L_0;
L_0 = TrackableId_get_invalidId_m06B698EFFA7748E185299C72B5CEC1AA5B221F85_inline(/*hidden argument*/NULL);
(&V_0)->set_m_Id_1(L_0);
IL2CPP_RUNTIME_CLASS_INIT(Guid_t_il2cpp_TypeInfo_var);
Guid_t L_1 = ((Guid_t_StaticFields*)il2cpp_codegen_static_fields_for(Guid_t_il2cpp_TypeInfo_var))->get_Empty_0();
(&V_0)->set_m_SourceImageId_2(L_1);
IL2CPP_RUNTIME_CLASS_INIT(Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A_il2cpp_TypeInfo_var);
Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A L_2;
L_2 = Pose_get_identity_m334B16AC3024785914BCC5A2B949750A010878BF(/*hidden argument*/NULL);
(&V_0)->set_m_Pose_3(L_2);
XRTrackedImage_t92B53E0621C6D2E930761110E719F0E9580A722F L_3 = V_0;
((XRTrackedImage_t92B53E0621C6D2E930761110E719F0E9580A722F_StaticFields*)il2cpp_codegen_static_fields_for(XRTrackedImage_t92B53E0621C6D2E930761110E719F0E9580A722F_il2cpp_TypeInfo_var))->set_s_Default_0(L_3);
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
// UnityEngine.XR.ARSubsystems.XRTrackedObject UnityEngine.XR.ARSubsystems.XRTrackedObject::get_defaultValue()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XRTrackedObject_t247BBE67D4F9308544C4BAD807F321E0C404EC58 XRTrackedObject_get_defaultValue_m3AC573CBE63C302081874718C743040E3A8C3F89 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XRTrackedObject_t247BBE67D4F9308544C4BAD807F321E0C404EC58_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
// public static XRTrackedObject defaultValue => s_Default;
IL2CPP_RUNTIME_CLASS_INIT(XRTrackedObject_t247BBE67D4F9308544C4BAD807F321E0C404EC58_il2cpp_TypeInfo_var);
XRTrackedObject_t247BBE67D4F9308544C4BAD807F321E0C404EC58 L_0 = ((XRTrackedObject_t247BBE67D4F9308544C4BAD807F321E0C404EC58_StaticFields*)il2cpp_codegen_static_fields_for(XRTrackedObject_t247BBE67D4F9308544C4BAD807F321E0C404EC58_il2cpp_TypeInfo_var))->get_s_Default_5();
return L_0;
}
}
// UnityEngine.XR.ARSubsystems.TrackableId UnityEngine.XR.ARSubsystems.XRTrackedObject::get_trackableId()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B XRTrackedObject_get_trackableId_mB62A1367121F404E7E641459F7A2DE4A35801E72 (XRTrackedObject_t247BBE67D4F9308544C4BAD807F321E0C404EC58 * __this, const RuntimeMethod* method)
{
{
// public TrackableId trackableId => m_TrackableId;
TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B L_0 = __this->get_m_TrackableId_0();
return L_0;
}
}
IL2CPP_EXTERN_C TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B XRTrackedObject_get_trackableId_mB62A1367121F404E7E641459F7A2DE4A35801E72_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
XRTrackedObject_t247BBE67D4F9308544C4BAD807F321E0C404EC58 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XRTrackedObject_t247BBE67D4F9308544C4BAD807F321E0C404EC58 *>(__this + _offset);
TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B _returnValue;
_returnValue = XRTrackedObject_get_trackableId_mB62A1367121F404E7E641459F7A2DE4A35801E72_inline(_thisAdjusted, method);
return _returnValue;
}
// UnityEngine.Pose UnityEngine.XR.ARSubsystems.XRTrackedObject::get_pose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A XRTrackedObject_get_pose_mCF3749FD97A427BF58737E1F72C958B688BF4B14 (XRTrackedObject_t247BBE67D4F9308544C4BAD807F321E0C404EC58 * __this, const RuntimeMethod* method)
{
{
// public Pose pose => m_Pose;
Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A L_0 = __this->get_m_Pose_1();
return L_0;
}
}
IL2CPP_EXTERN_C Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A XRTrackedObject_get_pose_mCF3749FD97A427BF58737E1F72C958B688BF4B14_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
XRTrackedObject_t247BBE67D4F9308544C4BAD807F321E0C404EC58 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XRTrackedObject_t247BBE67D4F9308544C4BAD807F321E0C404EC58 *>(__this + _offset);
Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A _returnValue;
_returnValue = XRTrackedObject_get_pose_mCF3749FD97A427BF58737E1F72C958B688BF4B14_inline(_thisAdjusted, method);
return _returnValue;
}
// UnityEngine.XR.ARSubsystems.TrackingState UnityEngine.XR.ARSubsystems.XRTrackedObject::get_trackingState()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XRTrackedObject_get_trackingState_m33C9F81469B2E6174337D76F6109B79B03975349 (XRTrackedObject_t247BBE67D4F9308544C4BAD807F321E0C404EC58 * __this, const RuntimeMethod* method)
{
{
// public TrackingState trackingState => m_TrackingState;
int32_t L_0 = __this->get_m_TrackingState_2();
return L_0;
}
}
IL2CPP_EXTERN_C int32_t XRTrackedObject_get_trackingState_m33C9F81469B2E6174337D76F6109B79B03975349_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
XRTrackedObject_t247BBE67D4F9308544C4BAD807F321E0C404EC58 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XRTrackedObject_t247BBE67D4F9308544C4BAD807F321E0C404EC58 *>(__this + _offset);
int32_t _returnValue;
_returnValue = XRTrackedObject_get_trackingState_m33C9F81469B2E6174337D76F6109B79B03975349_inline(_thisAdjusted, method);
return _returnValue;
}
// System.IntPtr UnityEngine.XR.ARSubsystems.XRTrackedObject::get_nativePtr()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR intptr_t XRTrackedObject_get_nativePtr_m13B4B110BB339AF7AF03B1219247112B4ABB38D8 (XRTrackedObject_t247BBE67D4F9308544C4BAD807F321E0C404EC58 * __this, const RuntimeMethod* method)
{
{
// public IntPtr nativePtr => m_NativePtr;
intptr_t L_0 = __this->get_m_NativePtr_3();
return (intptr_t)L_0;
}
}
IL2CPP_EXTERN_C intptr_t XRTrackedObject_get_nativePtr_m13B4B110BB339AF7AF03B1219247112B4ABB38D8_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
XRTrackedObject_t247BBE67D4F9308544C4BAD807F321E0C404EC58 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XRTrackedObject_t247BBE67D4F9308544C4BAD807F321E0C404EC58 *>(__this + _offset);
intptr_t _returnValue;
_returnValue = XRTrackedObject_get_nativePtr_m13B4B110BB339AF7AF03B1219247112B4ABB38D8_inline(_thisAdjusted, method);
return _returnValue;
}
// System.Guid UnityEngine.XR.ARSubsystems.XRTrackedObject::get_referenceObjectGuid()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Guid_t XRTrackedObject_get_referenceObjectGuid_m277B42932D6C8D42820F47A888407FBE9B0A7436 (XRTrackedObject_t247BBE67D4F9308544C4BAD807F321E0C404EC58 * __this, const RuntimeMethod* method)
{
{
// public Guid referenceObjectGuid => m_ReferenceObjectGuid;
Guid_t L_0 = __this->get_m_ReferenceObjectGuid_4();
return L_0;
}
}
IL2CPP_EXTERN_C Guid_t XRTrackedObject_get_referenceObjectGuid_m277B42932D6C8D42820F47A888407FBE9B0A7436_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
XRTrackedObject_t247BBE67D4F9308544C4BAD807F321E0C404EC58 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XRTrackedObject_t247BBE67D4F9308544C4BAD807F321E0C404EC58 *>(__this + _offset);
Guid_t _returnValue;
_returnValue = XRTrackedObject_get_referenceObjectGuid_m277B42932D6C8D42820F47A888407FBE9B0A7436_inline(_thisAdjusted, method);
return _returnValue;
}
// System.Boolean UnityEngine.XR.ARSubsystems.XRTrackedObject::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XRTrackedObject_Equals_m20B63BFBF61F3D819390A5A574B9916CCE0A7F8B (XRTrackedObject_t247BBE67D4F9308544C4BAD807F321E0C404EC58 * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XRTrackedObject_t247BBE67D4F9308544C4BAD807F321E0C404EC58_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
XRTrackedObject_t247BBE67D4F9308544C4BAD807F321E0C404EC58 V_0;
memset((&V_0), 0, sizeof(V_0));
{
// public override bool Equals(object obj) => obj is XRTrackedObject other && Equals(other);
RuntimeObject * L_0 = ___obj0;
if (!((RuntimeObject *)IsInstSealed((RuntimeObject*)L_0, XRTrackedObject_t247BBE67D4F9308544C4BAD807F321E0C404EC58_il2cpp_TypeInfo_var)))
{
goto IL_0017;
}
}
{
RuntimeObject * L_1 = ___obj0;
V_0 = ((*(XRTrackedObject_t247BBE67D4F9308544C4BAD807F321E0C404EC58 *)((XRTrackedObject_t247BBE67D4F9308544C4BAD807F321E0C404EC58 *)UnBox(L_1, XRTrackedObject_t247BBE67D4F9308544C4BAD807F321E0C404EC58_il2cpp_TypeInfo_var))));
XRTrackedObject_t247BBE67D4F9308544C4BAD807F321E0C404EC58 L_2 = V_0;
bool L_3;
L_3 = XRTrackedObject_Equals_mAA87562E27ABE20500A8537F56A551B584A551C5((XRTrackedObject_t247BBE67D4F9308544C4BAD807F321E0C404EC58 *)__this, L_2, /*hidden argument*/NULL);
return L_3;
}
IL_0017:
{
return (bool)0;
}
}
IL2CPP_EXTERN_C bool XRTrackedObject_Equals_m20B63BFBF61F3D819390A5A574B9916CCE0A7F8B_AdjustorThunk (RuntimeObject * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
XRTrackedObject_t247BBE67D4F9308544C4BAD807F321E0C404EC58 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XRTrackedObject_t247BBE67D4F9308544C4BAD807F321E0C404EC58 *>(__this + _offset);
bool _returnValue;
_returnValue = XRTrackedObject_Equals_m20B63BFBF61F3D819390A5A574B9916CCE0A7F8B(_thisAdjusted, ___obj0, method);
return _returnValue;
}
// System.Int32 UnityEngine.XR.ARSubsystems.XRTrackedObject::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XRTrackedObject_GetHashCode_m0456DF4A009ED3B00F2036F603881D9DB74EDAF9 (XRTrackedObject_t247BBE67D4F9308544C4BAD807F321E0C404EC58 * __this, const RuntimeMethod* method)
{
{
// public override int GetHashCode() => m_TrackableId.GetHashCode();
TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B * L_0 = __this->get_address_of_m_TrackableId_0();
int32_t L_1;
L_1 = TrackableId_GetHashCode_mFD297FC6DB40FB5B28C6E9B7A2CF2785D75C4E86((TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B *)L_0, /*hidden argument*/NULL);
return L_1;
}
}
IL2CPP_EXTERN_C int32_t XRTrackedObject_GetHashCode_m0456DF4A009ED3B00F2036F603881D9DB74EDAF9_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
XRTrackedObject_t247BBE67D4F9308544C4BAD807F321E0C404EC58 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XRTrackedObject_t247BBE67D4F9308544C4BAD807F321E0C404EC58 *>(__this + _offset);
int32_t _returnValue;
_returnValue = XRTrackedObject_GetHashCode_m0456DF4A009ED3B00F2036F603881D9DB74EDAF9(_thisAdjusted, method);
return _returnValue;
}
// System.Boolean UnityEngine.XR.ARSubsystems.XRTrackedObject::Equals(UnityEngine.XR.ARSubsystems.XRTrackedObject)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XRTrackedObject_Equals_mAA87562E27ABE20500A8537F56A551B584A551C5 (XRTrackedObject_t247BBE67D4F9308544C4BAD807F321E0C404EC58 * __this, XRTrackedObject_t247BBE67D4F9308544C4BAD807F321E0C404EC58 ___other0, const RuntimeMethod* method)
{
{
// public bool Equals(XRTrackedObject other) => m_TrackableId.Equals(other.m_TrackableId);
TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B * L_0 = __this->get_address_of_m_TrackableId_0();
XRTrackedObject_t247BBE67D4F9308544C4BAD807F321E0C404EC58 L_1 = ___other0;
TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B L_2 = L_1.get_m_TrackableId_0();
bool L_3;
L_3 = TrackableId_Equals_m1DF35616359175E3D66DE18250E8CDA1E6462B06((TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B *)L_0, L_2, /*hidden argument*/NULL);
return L_3;
}
}
IL2CPP_EXTERN_C bool XRTrackedObject_Equals_mAA87562E27ABE20500A8537F56A551B584A551C5_AdjustorThunk (RuntimeObject * __this, XRTrackedObject_t247BBE67D4F9308544C4BAD807F321E0C404EC58 ___other0, const RuntimeMethod* method)
{
XRTrackedObject_t247BBE67D4F9308544C4BAD807F321E0C404EC58 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<XRTrackedObject_t247BBE67D4F9308544C4BAD807F321E0C404EC58 *>(__this + _offset);
bool _returnValue;
_returnValue = XRTrackedObject_Equals_mAA87562E27ABE20500A8537F56A551B584A551C5(_thisAdjusted, ___other0, method);
return _returnValue;
}
// System.Void UnityEngine.XR.ARSubsystems.XRTrackedObject::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRTrackedObject__cctor_m814A8B4D6D86DE23C211495A7B14F2F8CE172886 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Guid_t_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XRTrackedObject_t247BBE67D4F9308544C4BAD807F321E0C404EC58_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
XRTrackedObject_t247BBE67D4F9308544C4BAD807F321E0C404EC58 V_0;
memset((&V_0), 0, sizeof(V_0));
{
// static readonly XRTrackedObject s_Default = new XRTrackedObject
// {
// m_TrackableId = TrackableId.invalidId,
// m_Pose = Pose.identity,
// m_ReferenceObjectGuid = Guid.Empty,
// };
il2cpp_codegen_initobj((&V_0), sizeof(XRTrackedObject_t247BBE67D4F9308544C4BAD807F321E0C404EC58 ));
IL2CPP_RUNTIME_CLASS_INIT(TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B_il2cpp_TypeInfo_var);
TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B L_0;
L_0 = TrackableId_get_invalidId_m06B698EFFA7748E185299C72B5CEC1AA5B221F85_inline(/*hidden argument*/NULL);
(&V_0)->set_m_TrackableId_0(L_0);
IL2CPP_RUNTIME_CLASS_INIT(Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A_il2cpp_TypeInfo_var);
Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A L_1;
L_1 = Pose_get_identity_m334B16AC3024785914BCC5A2B949750A010878BF(/*hidden argument*/NULL);
(&V_0)->set_m_Pose_1(L_1);
IL2CPP_RUNTIME_CLASS_INIT(Guid_t_il2cpp_TypeInfo_var);
Guid_t L_2 = ((Guid_t_StaticFields*)il2cpp_codegen_static_fields_for(Guid_t_il2cpp_TypeInfo_var))->get_Empty_0();
(&V_0)->set_m_ReferenceObjectGuid_4(L_2);
XRTrackedObject_t247BBE67D4F9308544C4BAD807F321E0C404EC58 L_3 = V_0;
((XRTrackedObject_t247BBE67D4F9308544C4BAD807F321E0C404EC58_StaticFields*)il2cpp_codegen_static_fields_for(XRTrackedObject_t247BBE67D4F9308544C4BAD807F321E0C404EC58_il2cpp_TypeInfo_var))->set_s_Default_5(L_3);
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
// Conversion methods for marshalling of: UnityEngine.XR.ARSubsystems.MutableRuntimeReferenceImageLibrary/Enumerator
IL2CPP_EXTERN_C void Enumerator_t9B104B3EE1E7390464361D775D18230CF662A7D5_marshal_pinvoke(const Enumerator_t9B104B3EE1E7390464361D775D18230CF662A7D5& unmarshaled, Enumerator_t9B104B3EE1E7390464361D775D18230CF662A7D5_marshaled_pinvoke& marshaled)
{
Exception_t* ___m_Library_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'm_Library' of type 'Enumerator': Reference type field marshaling is not supported.");
IL2CPP_RAISE_MANAGED_EXCEPTION(___m_Library_0Exception, NULL);
}
IL2CPP_EXTERN_C void Enumerator_t9B104B3EE1E7390464361D775D18230CF662A7D5_marshal_pinvoke_back(const Enumerator_t9B104B3EE1E7390464361D775D18230CF662A7D5_marshaled_pinvoke& marshaled, Enumerator_t9B104B3EE1E7390464361D775D18230CF662A7D5& unmarshaled)
{
Exception_t* ___m_Library_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'm_Library' of type 'Enumerator': Reference type field marshaling is not supported.");
IL2CPP_RAISE_MANAGED_EXCEPTION(___m_Library_0Exception, NULL);
}
// Conversion method for clean up from marshalling of: UnityEngine.XR.ARSubsystems.MutableRuntimeReferenceImageLibrary/Enumerator
IL2CPP_EXTERN_C void Enumerator_t9B104B3EE1E7390464361D775D18230CF662A7D5_marshal_pinvoke_cleanup(Enumerator_t9B104B3EE1E7390464361D775D18230CF662A7D5_marshaled_pinvoke& marshaled)
{
}
// Conversion methods for marshalling of: UnityEngine.XR.ARSubsystems.MutableRuntimeReferenceImageLibrary/Enumerator
IL2CPP_EXTERN_C void Enumerator_t9B104B3EE1E7390464361D775D18230CF662A7D5_marshal_com(const Enumerator_t9B104B3EE1E7390464361D775D18230CF662A7D5& unmarshaled, Enumerator_t9B104B3EE1E7390464361D775D18230CF662A7D5_marshaled_com& marshaled)
{
Exception_t* ___m_Library_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'm_Library' of type 'Enumerator': Reference type field marshaling is not supported.");
IL2CPP_RAISE_MANAGED_EXCEPTION(___m_Library_0Exception, NULL);
}
IL2CPP_EXTERN_C void Enumerator_t9B104B3EE1E7390464361D775D18230CF662A7D5_marshal_com_back(const Enumerator_t9B104B3EE1E7390464361D775D18230CF662A7D5_marshaled_com& marshaled, Enumerator_t9B104B3EE1E7390464361D775D18230CF662A7D5& unmarshaled)
{
Exception_t* ___m_Library_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'm_Library' of type 'Enumerator': Reference type field marshaling is not supported.");
IL2CPP_RAISE_MANAGED_EXCEPTION(___m_Library_0Exception, NULL);
}
// Conversion method for clean up from marshalling of: UnityEngine.XR.ARSubsystems.MutableRuntimeReferenceImageLibrary/Enumerator
IL2CPP_EXTERN_C void Enumerator_t9B104B3EE1E7390464361D775D18230CF662A7D5_marshal_com_cleanup(Enumerator_t9B104B3EE1E7390464361D775D18230CF662A7D5_marshaled_com& marshaled)
{
}
// System.Void UnityEngine.XR.ARSubsystems.MutableRuntimeReferenceImageLibrary/Enumerator::.ctor(UnityEngine.XR.ARSubsystems.MutableRuntimeReferenceImageLibrary)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m614C5DEAACB06ED98FFE5BBE716D9F16124A4F81 (Enumerator_t9B104B3EE1E7390464361D775D18230CF662A7D5 * __this, MutableRuntimeReferenceImageLibrary_t887376CE46B48DEEC6E8655D429BADCA6E3C7EAA * ___lib0, const RuntimeMethod* method)
{
{
// m_Library = lib;
MutableRuntimeReferenceImageLibrary_t887376CE46B48DEEC6E8655D429BADCA6E3C7EAA * L_0 = ___lib0;
__this->set_m_Library_0(L_0);
// m_Index = -1;
__this->set_m_Index_1((-1));
// }
return;
}
}
IL2CPP_EXTERN_C void Enumerator__ctor_m614C5DEAACB06ED98FFE5BBE716D9F16124A4F81_AdjustorThunk (RuntimeObject * __this, MutableRuntimeReferenceImageLibrary_t887376CE46B48DEEC6E8655D429BADCA6E3C7EAA * ___lib0, const RuntimeMethod* method)
{
Enumerator_t9B104B3EE1E7390464361D775D18230CF662A7D5 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<Enumerator_t9B104B3EE1E7390464361D775D18230CF662A7D5 *>(__this + _offset);
Enumerator__ctor_m614C5DEAACB06ED98FFE5BBE716D9F16124A4F81(_thisAdjusted, ___lib0, method);
}
// System.Boolean UnityEngine.XR.ARSubsystems.MutableRuntimeReferenceImageLibrary/Enumerator::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m2B35A4EE1CF9A5E1EA6B97AEDFAED2CC7F99D3C5 (Enumerator_t9B104B3EE1E7390464361D775D18230CF662A7D5 * __this, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
// public bool MoveNext() => ++m_Index < m_Library.count;
int32_t L_0 = __this->get_m_Index_1();
V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_0, (int32_t)1));
int32_t L_1 = V_0;
__this->set_m_Index_1(L_1);
int32_t L_2 = V_0;
MutableRuntimeReferenceImageLibrary_t887376CE46B48DEEC6E8655D429BADCA6E3C7EAA * L_3 = __this->get_m_Library_0();
NullCheck(L_3);
int32_t L_4;
L_4 = VirtualFuncInvoker0< int32_t >::Invoke(5 /* System.Int32 UnityEngine.XR.ARSubsystems.RuntimeReferenceImageLibrary::get_count() */, L_3);
return (bool)((((int32_t)L_2) < ((int32_t)L_4))? 1 : 0);
}
}
IL2CPP_EXTERN_C bool Enumerator_MoveNext_m2B35A4EE1CF9A5E1EA6B97AEDFAED2CC7F99D3C5_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
Enumerator_t9B104B3EE1E7390464361D775D18230CF662A7D5 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<Enumerator_t9B104B3EE1E7390464361D775D18230CF662A7D5 *>(__this + _offset);
bool _returnValue;
_returnValue = Enumerator_MoveNext_m2B35A4EE1CF9A5E1EA6B97AEDFAED2CC7F99D3C5(_thisAdjusted, method);
return _returnValue;
}
// UnityEngine.XR.ARSubsystems.XRReferenceImage UnityEngine.XR.ARSubsystems.MutableRuntimeReferenceImageLibrary/Enumerator::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XRReferenceImage_tB1803A72EB581FB35B2CA944973679132A1D4467 Enumerator_get_Current_m5C9F6233409C9A2321C6CB831457C55C4FCB4570 (Enumerator_t9B104B3EE1E7390464361D775D18230CF662A7D5 * __this, const RuntimeMethod* method)
{
{
// public XRReferenceImage Current => m_Library[m_Index];
MutableRuntimeReferenceImageLibrary_t887376CE46B48DEEC6E8655D429BADCA6E3C7EAA * L_0 = __this->get_m_Library_0();
int32_t L_1 = __this->get_m_Index_1();
NullCheck(L_0);
XRReferenceImage_tB1803A72EB581FB35B2CA944973679132A1D4467 L_2;
L_2 = RuntimeReferenceImageLibrary_get_Item_mEB525ED69F54BD63CE3942B99521D4D1E04B6CBB(L_0, L_1, /*hidden argument*/NULL);
return L_2;
}
}
IL2CPP_EXTERN_C XRReferenceImage_tB1803A72EB581FB35B2CA944973679132A1D4467 Enumerator_get_Current_m5C9F6233409C9A2321C6CB831457C55C4FCB4570_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
Enumerator_t9B104B3EE1E7390464361D775D18230CF662A7D5 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<Enumerator_t9B104B3EE1E7390464361D775D18230CF662A7D5 *>(__this + _offset);
XRReferenceImage_tB1803A72EB581FB35B2CA944973679132A1D4467 _returnValue;
_returnValue = Enumerator_get_Current_m5C9F6233409C9A2321C6CB831457C55C4FCB4570(_thisAdjusted, method);
return _returnValue;
}
// System.Int32 UnityEngine.XR.ARSubsystems.MutableRuntimeReferenceImageLibrary/Enumerator::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Enumerator_GetHashCode_mB41365E33A4AC2A52659D36571BBCE9BC93C2546 (Enumerator_t9B104B3EE1E7390464361D775D18230CF662A7D5 * __this, const RuntimeMethod* method)
{
int32_t G_B3_0 = 0;
{
// var hash = ReferenceEquals(m_Library, null) ? 0 : m_Library.GetHashCode();
MutableRuntimeReferenceImageLibrary_t887376CE46B48DEEC6E8655D429BADCA6E3C7EAA * L_0 = __this->get_m_Library_0();
if (!L_0)
{
goto IL_0015;
}
}
{
MutableRuntimeReferenceImageLibrary_t887376CE46B48DEEC6E8655D429BADCA6E3C7EAA * L_1 = __this->get_m_Library_0();
NullCheck(L_1);
int32_t L_2;
L_2 = VirtualFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 System.Object::GetHashCode() */, L_1);
G_B3_0 = L_2;
goto IL_0016;
}
IL_0015:
{
G_B3_0 = 0;
}
IL_0016:
{
// return hash * 486187739 + m_Index.GetHashCode();
int32_t* L_3 = __this->get_address_of_m_Index_1();
int32_t L_4;
L_4 = Int32_GetHashCode_mEDD3F492A5F7CF021125AE3F38E2B8F8743FC667((int32_t*)L_3, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)G_B3_0, (int32_t)((int32_t)486187739))), (int32_t)L_4));
}
}
IL2CPP_EXTERN_C int32_t Enumerator_GetHashCode_mB41365E33A4AC2A52659D36571BBCE9BC93C2546_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
Enumerator_t9B104B3EE1E7390464361D775D18230CF662A7D5 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<Enumerator_t9B104B3EE1E7390464361D775D18230CF662A7D5 *>(__this + _offset);
int32_t _returnValue;
_returnValue = Enumerator_GetHashCode_mB41365E33A4AC2A52659D36571BBCE9BC93C2546(_thisAdjusted, method);
return _returnValue;
}
// System.Boolean UnityEngine.XR.ARSubsystems.MutableRuntimeReferenceImageLibrary/Enumerator::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_Equals_m5A39AA8617AA067134152ED2D95037C914B42AF4 (Enumerator_t9B104B3EE1E7390464361D775D18230CF662A7D5 * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_t9B104B3EE1E7390464361D775D18230CF662A7D5_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
// public override bool Equals(object obj) => (obj is Enumerator) && Equals((Enumerator)obj);
RuntimeObject * L_0 = ___obj0;
if (!((RuntimeObject *)IsInstSealed((RuntimeObject*)L_0, Enumerator_t9B104B3EE1E7390464361D775D18230CF662A7D5_il2cpp_TypeInfo_var)))
{
goto IL_0015;
}
}
{
RuntimeObject * L_1 = ___obj0;
bool L_2;
L_2 = Enumerator_Equals_mCBAAE58B6FD7DBD90F3C98F10F06C777E5781A98((Enumerator_t9B104B3EE1E7390464361D775D18230CF662A7D5 *)__this, ((*(Enumerator_t9B104B3EE1E7390464361D775D18230CF662A7D5 *)((Enumerator_t9B104B3EE1E7390464361D775D18230CF662A7D5 *)UnBox(L_1, Enumerator_t9B104B3EE1E7390464361D775D18230CF662A7D5_il2cpp_TypeInfo_var)))), /*hidden argument*/NULL);
return L_2;
}
IL_0015:
{
return (bool)0;
}
}
IL2CPP_EXTERN_C bool Enumerator_Equals_m5A39AA8617AA067134152ED2D95037C914B42AF4_AdjustorThunk (RuntimeObject * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
Enumerator_t9B104B3EE1E7390464361D775D18230CF662A7D5 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<Enumerator_t9B104B3EE1E7390464361D775D18230CF662A7D5 *>(__this + _offset);
bool _returnValue;
_returnValue = Enumerator_Equals_m5A39AA8617AA067134152ED2D95037C914B42AF4(_thisAdjusted, ___obj0, method);
return _returnValue;
}
// System.Boolean UnityEngine.XR.ARSubsystems.MutableRuntimeReferenceImageLibrary/Enumerator::Equals(UnityEngine.XR.ARSubsystems.MutableRuntimeReferenceImageLibrary/Enumerator)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_Equals_mCBAAE58B6FD7DBD90F3C98F10F06C777E5781A98 (Enumerator_t9B104B3EE1E7390464361D775D18230CF662A7D5 * __this, Enumerator_t9B104B3EE1E7390464361D775D18230CF662A7D5 ___other0, const RuntimeMethod* method)
{
{
// return
// ReferenceEquals(m_Library, other.m_Library) &&
// (m_Index == other.m_Index);
MutableRuntimeReferenceImageLibrary_t887376CE46B48DEEC6E8655D429BADCA6E3C7EAA * L_0 = __this->get_m_Library_0();
Enumerator_t9B104B3EE1E7390464361D775D18230CF662A7D5 L_1 = ___other0;
MutableRuntimeReferenceImageLibrary_t887376CE46B48DEEC6E8655D429BADCA6E3C7EAA * L_2 = L_1.get_m_Library_0();
if ((!(((RuntimeObject*)(MutableRuntimeReferenceImageLibrary_t887376CE46B48DEEC6E8655D429BADCA6E3C7EAA *)L_0) == ((RuntimeObject*)(MutableRuntimeReferenceImageLibrary_t887376CE46B48DEEC6E8655D429BADCA6E3C7EAA *)L_2))))
{
goto IL_001d;
}
}
{
int32_t L_3 = __this->get_m_Index_1();
Enumerator_t9B104B3EE1E7390464361D775D18230CF662A7D5 L_4 = ___other0;
int32_t L_5 = L_4.get_m_Index_1();
return (bool)((((int32_t)L_3) == ((int32_t)L_5))? 1 : 0);
}
IL_001d:
{
return (bool)0;
}
}
IL2CPP_EXTERN_C bool Enumerator_Equals_mCBAAE58B6FD7DBD90F3C98F10F06C777E5781A98_AdjustorThunk (RuntimeObject * __this, Enumerator_t9B104B3EE1E7390464361D775D18230CF662A7D5 ___other0, const RuntimeMethod* method)
{
Enumerator_t9B104B3EE1E7390464361D775D18230CF662A7D5 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<Enumerator_t9B104B3EE1E7390464361D775D18230CF662A7D5 *>(__this + _offset);
bool _returnValue;
_returnValue = Enumerator_Equals_mCBAAE58B6FD7DBD90F3C98F10F06C777E5781A98(_thisAdjusted, ___other0, 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
// System.Boolean UnityEngine.XR.ARSubsystems.XRAnchorSubsystem/Provider::TryAddAnchor(UnityEngine.Pose,UnityEngine.XR.ARSubsystems.XRAnchor&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Provider_TryAddAnchor_m8BAE08000E72193AE272504162CD3CAE9E2011D3 (Provider_t9F286D20EB73EBBA4B6E7203C7A9051BE673C2E2 * __this, Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A ___pose0, XRAnchor_t8E92DD70D9FA9B3ED2799305E05228184932099C * ___anchor1, const RuntimeMethod* method)
{
{
// anchor = default(XRAnchor);
XRAnchor_t8E92DD70D9FA9B3ED2799305E05228184932099C * L_0 = ___anchor1;
il2cpp_codegen_initobj(L_0, sizeof(XRAnchor_t8E92DD70D9FA9B3ED2799305E05228184932099C ));
// return false;
return (bool)0;
}
}
// System.Boolean UnityEngine.XR.ARSubsystems.XRAnchorSubsystem/Provider::TryAttachAnchor(UnityEngine.XR.ARSubsystems.TrackableId,UnityEngine.Pose,UnityEngine.XR.ARSubsystems.XRAnchor&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Provider_TryAttachAnchor_mAAFB29BF47A06D1B7B5EA30849047CFC2E91072A (Provider_t9F286D20EB73EBBA4B6E7203C7A9051BE673C2E2 * __this, TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B ___trackableToAffix0, Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A ___pose1, XRAnchor_t8E92DD70D9FA9B3ED2799305E05228184932099C * ___anchor2, const RuntimeMethod* method)
{
{
// anchor = default(XRAnchor);
XRAnchor_t8E92DD70D9FA9B3ED2799305E05228184932099C * L_0 = ___anchor2;
il2cpp_codegen_initobj(L_0, sizeof(XRAnchor_t8E92DD70D9FA9B3ED2799305E05228184932099C ));
// return false;
return (bool)0;
}
}
// System.Boolean UnityEngine.XR.ARSubsystems.XRAnchorSubsystem/Provider::TryRemoveAnchor(UnityEngine.XR.ARSubsystems.TrackableId)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Provider_TryRemoveAnchor_m21FBBF8C515908F05CF755B85B9643760E6BB2F7 (Provider_t9F286D20EB73EBBA4B6E7203C7A9051BE673C2E2 * __this, TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B ___anchorId0, const RuntimeMethod* method)
{
{
// public virtual bool TryRemoveAnchor(TrackableId anchorId) => false;
return (bool)0;
}
}
// System.Void UnityEngine.XR.ARSubsystems.XRAnchorSubsystem/Provider::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Provider__ctor_mFE4941CFC3CA511BBD7C0A498BB2C74DE96FF498 (Provider_t9F286D20EB73EBBA4B6E7203C7A9051BE673C2E2 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SubsystemProvider_1__ctor_m3070FB0F5EDD35A102DFE6DB270CB1423E80A059_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
SubsystemProvider_1__ctor_m3070FB0F5EDD35A102DFE6DB270CB1423E80A059(__this, /*hidden argument*/SubsystemProvider_1__ctor_m3070FB0F5EDD35A102DFE6DB270CB1423E80A059_RuntimeMethod_var);
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
// Conversion methods for marshalling of: UnityEngine.XR.ARSubsystems.XRAnchorSubsystemDescriptor/Cinfo
IL2CPP_EXTERN_C void Cinfo_tF42131D7F2B721976AAF20DD0240D9C46397F7F7_marshal_pinvoke(const Cinfo_tF42131D7F2B721976AAF20DD0240D9C46397F7F7& unmarshaled, Cinfo_tF42131D7F2B721976AAF20DD0240D9C46397F7F7_marshaled_pinvoke& marshaled)
{
Exception_t* ___U3CproviderTypeU3Ek__BackingField_1Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field '<providerType>k__BackingField' of type 'Cinfo': Reference type field marshaling is not supported.");
IL2CPP_RAISE_MANAGED_EXCEPTION(___U3CproviderTypeU3Ek__BackingField_1Exception, NULL);
}
IL2CPP_EXTERN_C void Cinfo_tF42131D7F2B721976AAF20DD0240D9C46397F7F7_marshal_pinvoke_back(const Cinfo_tF42131D7F2B721976AAF20DD0240D9C46397F7F7_marshaled_pinvoke& marshaled, Cinfo_tF42131D7F2B721976AAF20DD0240D9C46397F7F7& unmarshaled)
{
Exception_t* ___U3CproviderTypeU3Ek__BackingField_1Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field '<providerType>k__BackingField' of type 'Cinfo': Reference type field marshaling is not supported.");
IL2CPP_RAISE_MANAGED_EXCEPTION(___U3CproviderTypeU3Ek__BackingField_1Exception, NULL);
}
// Conversion method for clean up from marshalling of: UnityEngine.XR.ARSubsystems.XRAnchorSubsystemDescriptor/Cinfo
IL2CPP_EXTERN_C void Cinfo_tF42131D7F2B721976AAF20DD0240D9C46397F7F7_marshal_pinvoke_cleanup(Cinfo_tF42131D7F2B721976AAF20DD0240D9C46397F7F7_marshaled_pinvoke& marshaled)
{
}
// Conversion methods for marshalling of: UnityEngine.XR.ARSubsystems.XRAnchorSubsystemDescriptor/Cinfo
IL2CPP_EXTERN_C void Cinfo_tF42131D7F2B721976AAF20DD0240D9C46397F7F7_marshal_com(const Cinfo_tF42131D7F2B721976AAF20DD0240D9C46397F7F7& unmarshaled, Cinfo_tF42131D7F2B721976AAF20DD0240D9C46397F7F7_marshaled_com& marshaled)
{
Exception_t* ___U3CproviderTypeU3Ek__BackingField_1Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field '<providerType>k__BackingField' of type 'Cinfo': Reference type field marshaling is not supported.");
IL2CPP_RAISE_MANAGED_EXCEPTION(___U3CproviderTypeU3Ek__BackingField_1Exception, NULL);
}
IL2CPP_EXTERN_C void Cinfo_tF42131D7F2B721976AAF20DD0240D9C46397F7F7_marshal_com_back(const Cinfo_tF42131D7F2B721976AAF20DD0240D9C46397F7F7_marshaled_com& marshaled, Cinfo_tF42131D7F2B721976AAF20DD0240D9C46397F7F7& unmarshaled)
{
Exception_t* ___U3CproviderTypeU3Ek__BackingField_1Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field '<providerType>k__BackingField' of type 'Cinfo': Reference type field marshaling is not supported.");
IL2CPP_RAISE_MANAGED_EXCEPTION(___U3CproviderTypeU3Ek__BackingField_1Exception, NULL);
}
// Conversion method for clean up from marshalling of: UnityEngine.XR.ARSubsystems.XRAnchorSubsystemDescriptor/Cinfo
IL2CPP_EXTERN_C void Cinfo_tF42131D7F2B721976AAF20DD0240D9C46397F7F7_marshal_com_cleanup(Cinfo_tF42131D7F2B721976AAF20DD0240D9C46397F7F7_marshaled_com& marshaled)
{
}
// System.String UnityEngine.XR.ARSubsystems.XRAnchorSubsystemDescriptor/Cinfo::get_id()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Cinfo_get_id_m7C38252CE360F061914361192300AECA8CB5307B (Cinfo_tF42131D7F2B721976AAF20DD0240D9C46397F7F7 * __this, const RuntimeMethod* method)
{
{
// public string id { get; set; }
String_t* L_0 = __this->get_U3CidU3Ek__BackingField_0();
return L_0;
}
}
IL2CPP_EXTERN_C String_t* Cinfo_get_id_m7C38252CE360F061914361192300AECA8CB5307B_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
Cinfo_tF42131D7F2B721976AAF20DD0240D9C46397F7F7 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<Cinfo_tF42131D7F2B721976AAF20DD0240D9C46397F7F7 *>(__this + _offset);
String_t* _returnValue;
_returnValue = Cinfo_get_id_m7C38252CE360F061914361192300AECA8CB5307B_inline(_thisAdjusted, method);
return _returnValue;
}
// System.Void UnityEngine.XR.ARSubsystems.XRAnchorSubsystemDescriptor/Cinfo::set_id(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Cinfo_set_id_mCB169DF169C36D9D12651785DCBF71ABCC10FD9D (Cinfo_tF42131D7F2B721976AAF20DD0240D9C46397F7F7 * __this, String_t* ___value0, const RuntimeMethod* method)
{
{
// public string id { get; set; }
String_t* L_0 = ___value0;
__this->set_U3CidU3Ek__BackingField_0(L_0);
return;
}
}
IL2CPP_EXTERN_C void Cinfo_set_id_mCB169DF169C36D9D12651785DCBF71ABCC10FD9D_AdjustorThunk (RuntimeObject * __this, String_t* ___value0, const RuntimeMethod* method)
{
Cinfo_tF42131D7F2B721976AAF20DD0240D9C46397F7F7 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<Cinfo_tF42131D7F2B721976AAF20DD0240D9C46397F7F7 *>(__this + _offset);
Cinfo_set_id_mCB169DF169C36D9D12651785DCBF71ABCC10FD9D_inline(_thisAdjusted, ___value0, method);
}
// System.Type UnityEngine.XR.ARSubsystems.XRAnchorSubsystemDescriptor/Cinfo::get_providerType()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t * Cinfo_get_providerType_m6A1DFCD062C95265E8E1C6502D44D6C464B50EED (Cinfo_tF42131D7F2B721976AAF20DD0240D9C46397F7F7 * __this, const RuntimeMethod* method)
{
{
// public Type providerType { get; set; }
Type_t * L_0 = __this->get_U3CproviderTypeU3Ek__BackingField_1();
return L_0;
}
}
IL2CPP_EXTERN_C Type_t * Cinfo_get_providerType_m6A1DFCD062C95265E8E1C6502D44D6C464B50EED_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
Cinfo_tF42131D7F2B721976AAF20DD0240D9C46397F7F7 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<Cinfo_tF42131D7F2B721976AAF20DD0240D9C46397F7F7 *>(__this + _offset);
Type_t * _returnValue;
_returnValue = Cinfo_get_providerType_m6A1DFCD062C95265E8E1C6502D44D6C464B50EED_inline(_thisAdjusted, method);
return _returnValue;
}
// System.Void UnityEngine.XR.ARSubsystems.XRAnchorSubsystemDescriptor/Cinfo::set_providerType(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Cinfo_set_providerType_m9E012FF4CD325826F838F663BAEE045C452A3C26 (Cinfo_tF42131D7F2B721976AAF20DD0240D9C46397F7F7 * __this, Type_t * ___value0, const RuntimeMethod* method)
{
{
// public Type providerType { get; set; }
Type_t * L_0 = ___value0;
__this->set_U3CproviderTypeU3Ek__BackingField_1(L_0);
return;
}
}
IL2CPP_EXTERN_C void Cinfo_set_providerType_m9E012FF4CD325826F838F663BAEE045C452A3C26_AdjustorThunk (RuntimeObject * __this, Type_t * ___value0, const RuntimeMethod* method)
{
Cinfo_tF42131D7F2B721976AAF20DD0240D9C46397F7F7 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<Cinfo_tF42131D7F2B721976AAF20DD0240D9C46397F7F7 *>(__this + _offset);
Cinfo_set_providerType_m9E012FF4CD325826F838F663BAEE045C452A3C26_inline(_thisAdjusted, ___value0, method);
}
// System.Type UnityEngine.XR.ARSubsystems.XRAnchorSubsystemDescriptor/Cinfo::get_subsystemTypeOverride()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t * Cinfo_get_subsystemTypeOverride_m169F49BB024275E13DF95C274191A675CC0F66B9 (Cinfo_tF42131D7F2B721976AAF20DD0240D9C46397F7F7 * __this, const RuntimeMethod* method)
{
{
// public Type subsystemTypeOverride { get; set; }
Type_t * L_0 = __this->get_U3CsubsystemTypeOverrideU3Ek__BackingField_2();
return L_0;
}
}
IL2CPP_EXTERN_C Type_t * Cinfo_get_subsystemTypeOverride_m169F49BB024275E13DF95C274191A675CC0F66B9_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
Cinfo_tF42131D7F2B721976AAF20DD0240D9C46397F7F7 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<Cinfo_tF42131D7F2B721976AAF20DD0240D9C46397F7F7 *>(__this + _offset);
Type_t * _returnValue;
_returnValue = Cinfo_get_subsystemTypeOverride_m169F49BB024275E13DF95C274191A675CC0F66B9_inline(_thisAdjusted, method);
return _returnValue;
}
// System.Void UnityEngine.XR.ARSubsystems.XRAnchorSubsystemDescriptor/Cinfo::set_subsystemTypeOverride(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Cinfo_set_subsystemTypeOverride_mC525A48B08F8F826275950FFB61C780C4AEA6A6B (Cinfo_tF42131D7F2B721976AAF20DD0240D9C46397F7F7 * __this, Type_t * ___value0, const RuntimeMethod* method)
{
{
// public Type subsystemTypeOverride { get; set; }
Type_t * L_0 = ___value0;
__this->set_U3CsubsystemTypeOverrideU3Ek__BackingField_2(L_0);
return;
}
}
IL2CPP_EXTERN_C void Cinfo_set_subsystemTypeOverride_mC525A48B08F8F826275950FFB61C780C4AEA6A6B_AdjustorThunk (RuntimeObject * __this, Type_t * ___value0, const RuntimeMethod* method)
{
Cinfo_tF42131D7F2B721976AAF20DD0240D9C46397F7F7 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<Cinfo_tF42131D7F2B721976AAF20DD0240D9C46397F7F7 *>(__this + _offset);
Cinfo_set_subsystemTypeOverride_mC525A48B08F8F826275950FFB61C780C4AEA6A6B_inline(_thisAdjusted, ___value0, method);
}
// System.Boolean UnityEngine.XR.ARSubsystems.XRAnchorSubsystemDescriptor/Cinfo::get_supportsTrackableAttachments()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Cinfo_get_supportsTrackableAttachments_m13B6C9977641F3E284C69AA3554EBD19478538B8 (Cinfo_tF42131D7F2B721976AAF20DD0240D9C46397F7F7 * __this, const RuntimeMethod* method)
{
{
// public bool supportsTrackableAttachments { get; set; }
bool L_0 = __this->get_U3CsupportsTrackableAttachmentsU3Ek__BackingField_4();
return L_0;
}
}
IL2CPP_EXTERN_C bool Cinfo_get_supportsTrackableAttachments_m13B6C9977641F3E284C69AA3554EBD19478538B8_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
Cinfo_tF42131D7F2B721976AAF20DD0240D9C46397F7F7 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<Cinfo_tF42131D7F2B721976AAF20DD0240D9C46397F7F7 *>(__this + _offset);
bool _returnValue;
_returnValue = Cinfo_get_supportsTrackableAttachments_m13B6C9977641F3E284C69AA3554EBD19478538B8_inline(_thisAdjusted, method);
return _returnValue;
}
// System.Void UnityEngine.XR.ARSubsystems.XRAnchorSubsystemDescriptor/Cinfo::set_supportsTrackableAttachments(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Cinfo_set_supportsTrackableAttachments_m0B0516A50FFA22C3F60483E3498DC6BB1D460995 (Cinfo_tF42131D7F2B721976AAF20DD0240D9C46397F7F7 * __this, bool ___value0, const RuntimeMethod* method)
{
{
// public bool supportsTrackableAttachments { get; set; }
bool L_0 = ___value0;
__this->set_U3CsupportsTrackableAttachmentsU3Ek__BackingField_4(L_0);
return;
}
}
IL2CPP_EXTERN_C void Cinfo_set_supportsTrackableAttachments_m0B0516A50FFA22C3F60483E3498DC6BB1D460995_AdjustorThunk (RuntimeObject * __this, bool ___value0, const RuntimeMethod* method)
{
Cinfo_tF42131D7F2B721976AAF20DD0240D9C46397F7F7 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<Cinfo_tF42131D7F2B721976AAF20DD0240D9C46397F7F7 *>(__this + _offset);
Cinfo_set_supportsTrackableAttachments_m0B0516A50FFA22C3F60483E3498DC6BB1D460995_inline(_thisAdjusted, ___value0, method);
}
// System.Int32 UnityEngine.XR.ARSubsystems.XRAnchorSubsystemDescriptor/Cinfo::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Cinfo_GetHashCode_mBBEF5C69D3B91763153EDE624C76AC428ECFABB1 (Cinfo_tF42131D7F2B721976AAF20DD0240D9C46397F7F7 * __this, const RuntimeMethod* method)
{
int32_t V_0 = 0;
bool V_1 = false;
{
// int hash = HashCode.ReferenceHash(id);
String_t* L_0;
L_0 = Cinfo_get_id_m7C38252CE360F061914361192300AECA8CB5307B_inline((Cinfo_tF42131D7F2B721976AAF20DD0240D9C46397F7F7 *)__this, /*hidden argument*/NULL);
int32_t L_1;
L_1 = HashCode_ReferenceHash_mE6CC6EA3C87D9F040876D66CF582D6FF68FC359C(L_0, /*hidden argument*/NULL);
V_0 = L_1;
// hash = 486187739 * hash + HashCode.ReferenceHash(providerType);
int32_t L_2 = V_0;
Type_t * L_3;
L_3 = Cinfo_get_providerType_m6A1DFCD062C95265E8E1C6502D44D6C464B50EED_inline((Cinfo_tF42131D7F2B721976AAF20DD0240D9C46397F7F7 *)__this, /*hidden argument*/NULL);
int32_t L_4;
L_4 = HashCode_ReferenceHash_mE6CC6EA3C87D9F040876D66CF582D6FF68FC359C(L_3, /*hidden argument*/NULL);
V_0 = ((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)((int32_t)486187739), (int32_t)L_2)), (int32_t)L_4));
// hash = 486187739 * hash + HashCode.ReferenceHash(subsystemTypeOverride);
int32_t L_5 = V_0;
Type_t * L_6;
L_6 = Cinfo_get_subsystemTypeOverride_m169F49BB024275E13DF95C274191A675CC0F66B9_inline((Cinfo_tF42131D7F2B721976AAF20DD0240D9C46397F7F7 *)__this, /*hidden argument*/NULL);
int32_t L_7;
L_7 = HashCode_ReferenceHash_mE6CC6EA3C87D9F040876D66CF582D6FF68FC359C(L_6, /*hidden argument*/NULL);
V_0 = ((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)((int32_t)486187739), (int32_t)L_5)), (int32_t)L_7));
// hash = 486187738 * hash + supportsTrackableAttachments.GetHashCode();
int32_t L_8 = V_0;
bool L_9;
L_9 = Cinfo_get_supportsTrackableAttachments_m13B6C9977641F3E284C69AA3554EBD19478538B8_inline((Cinfo_tF42131D7F2B721976AAF20DD0240D9C46397F7F7 *)__this, /*hidden argument*/NULL);
V_1 = L_9;
int32_t L_10;
L_10 = Boolean_GetHashCode_m03AF8B3CECAE9106C44A00E3B33E51CBFC45C411((bool*)(&V_1), /*hidden argument*/NULL);
V_0 = ((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)((int32_t)486187738), (int32_t)L_8)), (int32_t)L_10));
// return hash;
int32_t L_11 = V_0;
return L_11;
}
}
IL2CPP_EXTERN_C int32_t Cinfo_GetHashCode_mBBEF5C69D3B91763153EDE624C76AC428ECFABB1_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
Cinfo_tF42131D7F2B721976AAF20DD0240D9C46397F7F7 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<Cinfo_tF42131D7F2B721976AAF20DD0240D9C46397F7F7 *>(__this + _offset);
int32_t _returnValue;
_returnValue = Cinfo_GetHashCode_mBBEF5C69D3B91763153EDE624C76AC428ECFABB1(_thisAdjusted, method);
return _returnValue;
}
// System.Boolean UnityEngine.XR.ARSubsystems.XRAnchorSubsystemDescriptor/Cinfo::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Cinfo_Equals_m8E52493318DDE5F675E85E0733F5F7CCDA3C8339 (Cinfo_tF42131D7F2B721976AAF20DD0240D9C46397F7F7 * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Cinfo_tF42131D7F2B721976AAF20DD0240D9C46397F7F7_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
Cinfo_tF42131D7F2B721976AAF20DD0240D9C46397F7F7 V_0;
memset((&V_0), 0, sizeof(V_0));
{
// public override bool Equals(object obj) => (obj is Cinfo other) && Equals(other);
RuntimeObject * L_0 = ___obj0;
if (!((RuntimeObject *)IsInstSealed((RuntimeObject*)L_0, Cinfo_tF42131D7F2B721976AAF20DD0240D9C46397F7F7_il2cpp_TypeInfo_var)))
{
goto IL_0017;
}
}
{
RuntimeObject * L_1 = ___obj0;
V_0 = ((*(Cinfo_tF42131D7F2B721976AAF20DD0240D9C46397F7F7 *)((Cinfo_tF42131D7F2B721976AAF20DD0240D9C46397F7F7 *)UnBox(L_1, Cinfo_tF42131D7F2B721976AAF20DD0240D9C46397F7F7_il2cpp_TypeInfo_var))));
Cinfo_tF42131D7F2B721976AAF20DD0240D9C46397F7F7 L_2 = V_0;
bool L_3;
L_3 = Cinfo_Equals_m07BCEC0FF4D8C2A43AE850689AC5AA4FC0603DE8((Cinfo_tF42131D7F2B721976AAF20DD0240D9C46397F7F7 *)__this, L_2, /*hidden argument*/NULL);
return L_3;
}
IL_0017:
{
return (bool)0;
}
}
IL2CPP_EXTERN_C bool Cinfo_Equals_m8E52493318DDE5F675E85E0733F5F7CCDA3C8339_AdjustorThunk (RuntimeObject * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
Cinfo_tF42131D7F2B721976AAF20DD0240D9C46397F7F7 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<Cinfo_tF42131D7F2B721976AAF20DD0240D9C46397F7F7 *>(__this + _offset);
bool _returnValue;
_returnValue = Cinfo_Equals_m8E52493318DDE5F675E85E0733F5F7CCDA3C8339(_thisAdjusted, ___obj0, method);
return _returnValue;
}
// System.Boolean UnityEngine.XR.ARSubsystems.XRAnchorSubsystemDescriptor/Cinfo::Equals(UnityEngine.XR.ARSubsystems.XRAnchorSubsystemDescriptor/Cinfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Cinfo_Equals_m07BCEC0FF4D8C2A43AE850689AC5AA4FC0603DE8 (Cinfo_tF42131D7F2B721976AAF20DD0240D9C46397F7F7 * __this, Cinfo_tF42131D7F2B721976AAF20DD0240D9C46397F7F7 ___other0, const RuntimeMethod* method)
{
{
// return
// String.Equals(id, other.id) &&
// #if UNITY_2020_2_OR_NEWER
// ReferenceEquals(providerType, other.providerType) &&
// ReferenceEquals(subsystemTypeOverride, other.subsystemTypeOverride) &&
// supportsTrackableAttachments == other.supportsTrackableAttachments; // NB: before 2020.2, this was excluded - just trying to keep from changing behavior
String_t* L_0;
L_0 = Cinfo_get_id_m7C38252CE360F061914361192300AECA8CB5307B_inline((Cinfo_tF42131D7F2B721976AAF20DD0240D9C46397F7F7 *)__this, /*hidden argument*/NULL);
String_t* L_1;
L_1 = Cinfo_get_id_m7C38252CE360F061914361192300AECA8CB5307B_inline((Cinfo_tF42131D7F2B721976AAF20DD0240D9C46397F7F7 *)(&___other0), /*hidden argument*/NULL);
bool L_2;
L_2 = String_Equals_mAFC6038D294F341434D9D67D7EADC7F97C556C9B(L_0, L_1, /*hidden argument*/NULL);
if (!L_2)
{
goto IL_0042;
}
}
{
Type_t * L_3;
L_3 = Cinfo_get_providerType_m6A1DFCD062C95265E8E1C6502D44D6C464B50EED_inline((Cinfo_tF42131D7F2B721976AAF20DD0240D9C46397F7F7 *)__this, /*hidden argument*/NULL);
Type_t * L_4;
L_4 = Cinfo_get_providerType_m6A1DFCD062C95265E8E1C6502D44D6C464B50EED_inline((Cinfo_tF42131D7F2B721976AAF20DD0240D9C46397F7F7 *)(&___other0), /*hidden argument*/NULL);
if ((!(((RuntimeObject*)(Type_t *)L_3) == ((RuntimeObject*)(Type_t *)L_4))))
{
goto IL_0042;
}
}
{
Type_t * L_5;
L_5 = Cinfo_get_subsystemTypeOverride_m169F49BB024275E13DF95C274191A675CC0F66B9_inline((Cinfo_tF42131D7F2B721976AAF20DD0240D9C46397F7F7 *)__this, /*hidden argument*/NULL);
Type_t * L_6;
L_6 = Cinfo_get_subsystemTypeOverride_m169F49BB024275E13DF95C274191A675CC0F66B9_inline((Cinfo_tF42131D7F2B721976AAF20DD0240D9C46397F7F7 *)(&___other0), /*hidden argument*/NULL);
if ((!(((RuntimeObject*)(Type_t *)L_5) == ((RuntimeObject*)(Type_t *)L_6))))
{
goto IL_0042;
}
}
{
bool L_7;
L_7 = Cinfo_get_supportsTrackableAttachments_m13B6C9977641F3E284C69AA3554EBD19478538B8_inline((Cinfo_tF42131D7F2B721976AAF20DD0240D9C46397F7F7 *)__this, /*hidden argument*/NULL);
bool L_8;
L_8 = Cinfo_get_supportsTrackableAttachments_m13B6C9977641F3E284C69AA3554EBD19478538B8_inline((Cinfo_tF42131D7F2B721976AAF20DD0240D9C46397F7F7 *)(&___other0), /*hidden argument*/NULL);
return (bool)((((int32_t)L_7) == ((int32_t)L_8))? 1 : 0);
}
IL_0042:
{
return (bool)0;
}
}
IL2CPP_EXTERN_C bool Cinfo_Equals_m07BCEC0FF4D8C2A43AE850689AC5AA4FC0603DE8_AdjustorThunk (RuntimeObject * __this, Cinfo_tF42131D7F2B721976AAF20DD0240D9C46397F7F7 ___other0, const RuntimeMethod* method)
{
Cinfo_tF42131D7F2B721976AAF20DD0240D9C46397F7F7 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<Cinfo_tF42131D7F2B721976AAF20DD0240D9C46397F7F7 *>(__this + _offset);
bool _returnValue;
_returnValue = Cinfo_Equals_m07BCEC0FF4D8C2A43AE850689AC5AA4FC0603DE8(_thisAdjusted, ___other0, 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
// UnityEngine.XR.ARSubsystems.XRCpuImage/Api UnityEngine.XR.ARSubsystems.XRCameraSubsystem/Provider::get_cpuImageApi()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Api_t7C92F00C6416A2C636A44AAC833C3773C567DC3E * Provider_get_cpuImageApi_m663AFB0EB8E8ECF57CBC2F75EA732B154082EFFE (Provider_t55916B0D2766C320DCA36A0C870BA2FD80F8B6D1 * __this, const RuntimeMethod* method)
{
{
// public virtual XRCpuImage.Api cpuImageApi => null;
return (Api_t7C92F00C6416A2C636A44AAC833C3773C567DC3E *)NULL;
}
}
// UnityEngine.Material UnityEngine.XR.ARSubsystems.XRCameraSubsystem/Provider::get_cameraMaterial()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Material_t8927C00353A72755313F046D0CE85178AE8218EE * Provider_get_cameraMaterial_mB2216E3065B59A4316FE44269B7F72452FC91CAF (Provider_t55916B0D2766C320DCA36A0C870BA2FD80F8B6D1 * __this, const RuntimeMethod* method)
{
{
// public virtual Material cameraMaterial => null;
return (Material_t8927C00353A72755313F046D0CE85178AE8218EE *)NULL;
}
}
// System.Boolean UnityEngine.XR.ARSubsystems.XRCameraSubsystem/Provider::get_permissionGranted()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Provider_get_permissionGranted_m81B4D509343689A6B7E05DCE7DC4F23CDCBFFC06 (Provider_t55916B0D2766C320DCA36A0C870BA2FD80F8B6D1 * __this, const RuntimeMethod* method)
{
{
// public virtual bool permissionGranted => false;
return (bool)0;
}
}
// System.Boolean UnityEngine.XR.ARSubsystems.XRCameraSubsystem/Provider::get_invertCulling()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Provider_get_invertCulling_m1D0C3A5DE10FC21E76F36B206D36279B31DAAF59 (Provider_t55916B0D2766C320DCA36A0C870BA2FD80F8B6D1 * __this, const RuntimeMethod* method)
{
{
// public virtual bool invertCulling => false;
return (bool)0;
}
}
// UnityEngine.XR.ARSubsystems.Feature UnityEngine.XR.ARSubsystems.XRCameraSubsystem/Provider::get_currentCamera()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t Provider_get_currentCamera_m102ED2EB903E9B0A233C5DD86F697A54BB07B84E (Provider_t55916B0D2766C320DCA36A0C870BA2FD80F8B6D1 * __this, const RuntimeMethod* method)
{
{
// public virtual Feature currentCamera => Feature.None;
return (uint64_t)(((int64_t)((int64_t)0)));
}
}
// UnityEngine.XR.ARSubsystems.Feature UnityEngine.XR.ARSubsystems.XRCameraSubsystem/Provider::get_requestedCamera()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t Provider_get_requestedCamera_m9D75D7C883BE213F9B0750C7A50646BFC1691DD1 (Provider_t55916B0D2766C320DCA36A0C870BA2FD80F8B6D1 * __this, const RuntimeMethod* method)
{
{
// get => Feature.None;
return (uint64_t)(((int64_t)((int64_t)0)));
}
}
// System.Void UnityEngine.XR.ARSubsystems.XRCameraSubsystem/Provider::set_requestedCamera(UnityEngine.XR.ARSubsystems.Feature)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Provider_set_requestedCamera_mB7502C5875663E3FE9FA9C577D238CFD4FEF5E0A (Provider_t55916B0D2766C320DCA36A0C870BA2FD80F8B6D1 * __this, uint64_t ___value0, const RuntimeMethod* method)
{
{
// set { }
return;
}
}
// System.Void UnityEngine.XR.ARSubsystems.XRCameraSubsystem/Provider::Start()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Provider_Start_m21B1CE84F39D9289CD6B0463FEFE123035A03595 (Provider_t55916B0D2766C320DCA36A0C870BA2FD80F8B6D1 * __this, const RuntimeMethod* method)
{
{
// public override void Start() { }
return;
}
}
// System.Void UnityEngine.XR.ARSubsystems.XRCameraSubsystem/Provider::Stop()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Provider_Stop_mBC0382A741C3D457CE9306E73C78E31ABE428AC0 (Provider_t55916B0D2766C320DCA36A0C870BA2FD80F8B6D1 * __this, const RuntimeMethod* method)
{
{
// public override void Stop() { }
return;
}
}
// System.Void UnityEngine.XR.ARSubsystems.XRCameraSubsystem/Provider::Destroy()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Provider_Destroy_m811EEFB83BCE7A7F55B8126A0CA06F4A0081FF23 (Provider_t55916B0D2766C320DCA36A0C870BA2FD80F8B6D1 * __this, const RuntimeMethod* method)
{
{
// public override void Destroy() { }
return;
}
}
// System.Boolean UnityEngine.XR.ARSubsystems.XRCameraSubsystem/Provider::TryGetFrame(UnityEngine.XR.ARSubsystems.XRCameraParams,UnityEngine.XR.ARSubsystems.XRCameraFrame&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Provider_TryGetFrame_m9BDEADBA9AB8CA56E51906D409DADAE31634631E (Provider_t55916B0D2766C320DCA36A0C870BA2FD80F8B6D1 * __this, XRCameraParams_t9FCECBDAEFCC1084042B75393990959B28B64B18 ___cameraParams0, XRCameraFrame_t5FD7B7FC22B478AC6B00AD01A0AD6F2295EA1BA8 * ___cameraFrame1, const RuntimeMethod* method)
{
{
// cameraFrame = default(XRCameraFrame);
XRCameraFrame_t5FD7B7FC22B478AC6B00AD01A0AD6F2295EA1BA8 * L_0 = ___cameraFrame1;
il2cpp_codegen_initobj(L_0, sizeof(XRCameraFrame_t5FD7B7FC22B478AC6B00AD01A0AD6F2295EA1BA8 ));
// return false;
return (bool)0;
}
}
// System.Boolean UnityEngine.XR.ARSubsystems.XRCameraSubsystem/Provider::get_autoFocusEnabled()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Provider_get_autoFocusEnabled_mE089188B6717EF34C0795BD4F2237ADC67C3CA64 (Provider_t55916B0D2766C320DCA36A0C870BA2FD80F8B6D1 * __this, const RuntimeMethod* method)
{
{
// public virtual bool autoFocusEnabled => false;
return (bool)0;
}
}
// System.Boolean UnityEngine.XR.ARSubsystems.XRCameraSubsystem/Provider::get_autoFocusRequested()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Provider_get_autoFocusRequested_m61B18E2A0EA9B643C04EBC6AD3E73B9B8E2FFE3F (Provider_t55916B0D2766C320DCA36A0C870BA2FD80F8B6D1 * __this, const RuntimeMethod* method)
{
{
// get => false;
return (bool)0;
}
}
// System.Void UnityEngine.XR.ARSubsystems.XRCameraSubsystem/Provider::set_autoFocusRequested(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Provider_set_autoFocusRequested_m44CF6A0456BF6AEC21730BF6B09A231C4200F432 (Provider_t55916B0D2766C320DCA36A0C870BA2FD80F8B6D1 * __this, bool ___value0, const RuntimeMethod* method)
{
{
// set { }
return;
}
}
// UnityEngine.XR.ARSubsystems.Feature UnityEngine.XR.ARSubsystems.XRCameraSubsystem/Provider::get_currentLightEstimation()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t Provider_get_currentLightEstimation_m3FC885BECFB5B757A5AFC5188B23433E81D89D65 (Provider_t55916B0D2766C320DCA36A0C870BA2FD80F8B6D1 * __this, const RuntimeMethod* method)
{
{
// public virtual Feature currentLightEstimation => Feature.None;
return (uint64_t)(((int64_t)((int64_t)0)));
}
}
// UnityEngine.XR.ARSubsystems.Feature UnityEngine.XR.ARSubsystems.XRCameraSubsystem/Provider::get_requestedLightEstimation()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t Provider_get_requestedLightEstimation_mE06529A3562BE322D3899904DB9D37570AAF159A (Provider_t55916B0D2766C320DCA36A0C870BA2FD80F8B6D1 * __this, const RuntimeMethod* method)
{
{
// get => Feature.None;
return (uint64_t)(((int64_t)((int64_t)0)));
}
}
// System.Void UnityEngine.XR.ARSubsystems.XRCameraSubsystem/Provider::set_requestedLightEstimation(UnityEngine.XR.ARSubsystems.Feature)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Provider_set_requestedLightEstimation_mAC9935863F31DFC2CAB242A1AC74AF9EAB56F977 (Provider_t55916B0D2766C320DCA36A0C870BA2FD80F8B6D1 * __this, uint64_t ___value0, const RuntimeMethod* method)
{
{
// set { }
return;
}
}
// System.Boolean UnityEngine.XR.ARSubsystems.XRCameraSubsystem/Provider::TryGetIntrinsics(UnityEngine.XR.ARSubsystems.XRCameraIntrinsics&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Provider_TryGetIntrinsics_m173355798904E72FC3D80477AE5426A54ABC95BF (Provider_t55916B0D2766C320DCA36A0C870BA2FD80F8B6D1 * __this, XRCameraIntrinsics_t85F1514E263A6C6DE96DBA5448B44F11F35395FD * ___cameraIntrinsics0, const RuntimeMethod* method)
{
{
// cameraIntrinsics = default(XRCameraIntrinsics);
XRCameraIntrinsics_t85F1514E263A6C6DE96DBA5448B44F11F35395FD * L_0 = ___cameraIntrinsics0;
il2cpp_codegen_initobj(L_0, sizeof(XRCameraIntrinsics_t85F1514E263A6C6DE96DBA5448B44F11F35395FD ));
// return false;
return (bool)0;
}
}
// Unity.Collections.NativeArray`1<UnityEngine.XR.ARSubsystems.XRCameraConfiguration> UnityEngine.XR.ARSubsystems.XRCameraSubsystem/Provider::GetConfigurations(UnityEngine.XR.ARSubsystems.XRCameraConfiguration,Unity.Collections.Allocator)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NativeArray_1_t80D42D57D2D76B05EFDA2CF74AE660AB5FDD9545 Provider_GetConfigurations_m528095C5BA179D1FD2CF679EE89B6B1C216E6834 (Provider_t55916B0D2766C320DCA36A0C870BA2FD80F8B6D1 * __this, XRCameraConfiguration_t2393055E5547307393E9C73AB13B95E0785A4F7A ___defaultCameraConfiguration0, int32_t ___allocator1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NativeArray_1__ctor_m55427120ACDC71253ECC88FB9FE3C72B9B8DC920_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
// return new NativeArray<XRCameraConfiguration>(0, allocator);
int32_t L_0 = ___allocator1;
NativeArray_1_t80D42D57D2D76B05EFDA2CF74AE660AB5FDD9545 L_1;
memset((&L_1), 0, sizeof(L_1));
NativeArray_1__ctor_m55427120ACDC71253ECC88FB9FE3C72B9B8DC920((&L_1), 0, L_0, 1, /*hidden argument*/NativeArray_1__ctor_m55427120ACDC71253ECC88FB9FE3C72B9B8DC920_RuntimeMethod_var);
return L_1;
}
}
// System.Nullable`1<UnityEngine.XR.ARSubsystems.XRCameraConfiguration> UnityEngine.XR.ARSubsystems.XRCameraSubsystem/Provider::get_currentConfiguration()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Nullable_1_t661141E668063C73311C9DF09B3AE945EA9A1D8C Provider_get_currentConfiguration_mD21D1EB06936263616664DB5D8A1698419E98AE2 (Provider_t55916B0D2766C320DCA36A0C870BA2FD80F8B6D1 * __this, const RuntimeMethod* method)
{
Nullable_1_t661141E668063C73311C9DF09B3AE945EA9A1D8C V_0;
memset((&V_0), 0, sizeof(V_0));
{
// get => null;
il2cpp_codegen_initobj((&V_0), sizeof(Nullable_1_t661141E668063C73311C9DF09B3AE945EA9A1D8C ));
Nullable_1_t661141E668063C73311C9DF09B3AE945EA9A1D8C L_0 = V_0;
return L_0;
}
}
// System.Void UnityEngine.XR.ARSubsystems.XRCameraSubsystem/Provider::set_currentConfiguration(System.Nullable`1<UnityEngine.XR.ARSubsystems.XRCameraConfiguration>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Provider_set_currentConfiguration_m99D438CC1ABE5E92215CA7FA369BE61A7652ED66 (Provider_t55916B0D2766C320DCA36A0C870BA2FD80F8B6D1 * __this, Nullable_1_t661141E668063C73311C9DF09B3AE945EA9A1D8C ___value0, const RuntimeMethod* method)
{
{
// set => throw new NotSupportedException("setting current camera configuration is not supported by this implementation");
NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 * L_0 = (NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339_il2cpp_TypeInfo_var)));
NotSupportedException__ctor_m40BC57BDA6E0E119B73700CC809A14B57DC65A90(L_0, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7C870909849A9D8B2B4A755041CC27EB6D76483B)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Provider_set_currentConfiguration_m99D438CC1ABE5E92215CA7FA369BE61A7652ED66_RuntimeMethod_var)));
}
}
// Unity.Collections.NativeArray`1<UnityEngine.XR.ARSubsystems.XRTextureDescriptor> UnityEngine.XR.ARSubsystems.XRCameraSubsystem/Provider::GetTextureDescriptors(UnityEngine.XR.ARSubsystems.XRTextureDescriptor,Unity.Collections.Allocator)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NativeArray_1_t290DD5A348463DD4415AFE27775047312478F952 Provider_GetTextureDescriptors_mB6ED5AD6E33BCFE3E70916A227CC81541307C68A (Provider_t55916B0D2766C320DCA36A0C870BA2FD80F8B6D1 * __this, XRTextureDescriptor_t9CA857DCCC1208B74376787BE4F3008A01B29A57 ___defaultDescriptor0, int32_t ___allocator1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NativeArray_1__ctor_m2BCB109D4076B26086589A4C8600C49A9F38FA7A_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
// return new NativeArray<XRTextureDescriptor>(0, allocator);
int32_t L_0 = ___allocator1;
NativeArray_1_t290DD5A348463DD4415AFE27775047312478F952 L_1;
memset((&L_1), 0, sizeof(L_1));
NativeArray_1__ctor_m2BCB109D4076B26086589A4C8600C49A9F38FA7A((&L_1), 0, L_0, 1, /*hidden argument*/NativeArray_1__ctor_m2BCB109D4076B26086589A4C8600C49A9F38FA7A_RuntimeMethod_var);
return L_1;
}
}
// System.Void UnityEngine.XR.ARSubsystems.XRCameraSubsystem/Provider::GetMaterialKeywords(System.Collections.Generic.List`1<System.String>&,System.Collections.Generic.List`1<System.String>&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Provider_GetMaterialKeywords_m160DF6037C4E84C194CC5D3564184D4DEE8A48E4 (Provider_t55916B0D2766C320DCA36A0C870BA2FD80F8B6D1 * __this, List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3 ** ___enabledKeywords0, List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3 ** ___disabledKeywords1, const RuntimeMethod* method)
{
{
// enabledKeywords = null;
List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3 ** L_0 = ___enabledKeywords0;
*((RuntimeObject **)L_0) = (RuntimeObject *)NULL;
Il2CppCodeGenWriteBarrier((void**)(RuntimeObject **)L_0, (void*)(RuntimeObject *)NULL);
// disabledKeywords = null;
List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3 ** L_1 = ___disabledKeywords1;
*((RuntimeObject **)L_1) = (RuntimeObject *)NULL;
Il2CppCodeGenWriteBarrier((void**)(RuntimeObject **)L_1, (void*)(RuntimeObject *)NULL);
// }
return;
}
}
// System.Boolean UnityEngine.XR.ARSubsystems.XRCameraSubsystem/Provider::TryAcquireLatestCpuImage(UnityEngine.XR.ARSubsystems.XRCpuImage/Cinfo&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Provider_TryAcquireLatestCpuImage_mAB2F3E8C6C6EE2C1DE5181FAF044999FCD6521CA (Provider_t55916B0D2766C320DCA36A0C870BA2FD80F8B6D1 * __this, Cinfo_t4E32E30AF6973611F1DD0F47FC041ED3A8775DA6 * ___cameraImageCinfo0, const RuntimeMethod* method)
{
{
// throw new NotSupportedException("getting camera image is not supported by this implementation");
NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 * L_0 = (NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339_il2cpp_TypeInfo_var)));
NotSupportedException__ctor_m40BC57BDA6E0E119B73700CC809A14B57DC65A90(L_0, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral66302D2613F26AFE177C77015981C7FA27A369BB)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Provider_TryAcquireLatestCpuImage_mAB2F3E8C6C6EE2C1DE5181FAF044999FCD6521CA_RuntimeMethod_var)));
}
}
// UnityEngine.Material UnityEngine.XR.ARSubsystems.XRCameraSubsystem/Provider::CreateCameraMaterial(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Material_t8927C00353A72755313F046D0CE85178AE8218EE * Provider_CreateCameraMaterial_mE1F6AD1B1D9F9BA80FE1B8DB3138262545FC018C (Provider_t55916B0D2766C320DCA36A0C870BA2FD80F8B6D1 * __this, String_t* ___cameraShaderName0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Material_t8927C00353A72755313F046D0CE85178AE8218EE_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Object_tF2F3778131EFF286AF62B7B013A170F95A91571A_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
Shader_tB2355DC4F3CAF20B2F1AB5AABBF37C3555FFBC39 * G_B2_0 = NULL;
Shader_tB2355DC4F3CAF20B2F1AB5AABBF37C3555FFBC39 * G_B1_0 = NULL;
Material_t8927C00353A72755313F046D0CE85178AE8218EE * G_B4_0 = NULL;
Material_t8927C00353A72755313F046D0CE85178AE8218EE * G_B3_0 = NULL;
{
// var shader = Shader.Find(cameraShaderName);
String_t* L_0 = ___cameraShaderName0;
Shader_tB2355DC4F3CAF20B2F1AB5AABBF37C3555FFBC39 * L_1;
L_1 = Shader_Find_m596EC6EBDCA8C9D5D86E2410A319928C1E8E6B5A(L_0, /*hidden argument*/NULL);
// if (shader == null)
Shader_tB2355DC4F3CAF20B2F1AB5AABBF37C3555FFBC39 * L_2 = L_1;
IL2CPP_RUNTIME_CLASS_INIT(Object_tF2F3778131EFF286AF62B7B013A170F95A91571A_il2cpp_TypeInfo_var);
bool L_3;
L_3 = Object_op_Equality_mEE9EC7EB5C7DC3E95B94AB904E1986FC4D566D54(L_2, (Object_tF2F3778131EFF286AF62B7B013A170F95A91571A *)NULL, /*hidden argument*/NULL);
G_B1_0 = L_2;
if (!L_3)
{
G_B2_0 = L_2;
goto IL_0025;
}
}
{
// throw new InvalidOperationException($"Could not find shader named '{cameraShaderName}' required "
// + $"for video overlay on camera subsystem.");
String_t* L_4 = ___cameraShaderName0;
String_t* L_5;
L_5 = String_Concat_m89EAB4C6A96B0E5C3F87300D6BE78D386B9EFC44(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral704C51A0DAD6B36AE5557F6EC82739898E4BFB61)), L_4, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral489BDF1FA9922AB5F829F5BE893907E419364DF4)), /*hidden argument*/NULL);
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_6 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_6, L_5, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_6, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Provider_CreateCameraMaterial_mE1F6AD1B1D9F9BA80FE1B8DB3138262545FC018C_RuntimeMethod_var)));
}
IL_0025:
{
// Material material = new Material(shader);
Material_t8927C00353A72755313F046D0CE85178AE8218EE * L_7 = (Material_t8927C00353A72755313F046D0CE85178AE8218EE *)il2cpp_codegen_object_new(Material_t8927C00353A72755313F046D0CE85178AE8218EE_il2cpp_TypeInfo_var);
Material__ctor_mD2A3BCD3B4F17F5C6E95F3B34DAF4B497B67127E(L_7, G_B2_0, /*hidden argument*/NULL);
// if (material == null)
Material_t8927C00353A72755313F046D0CE85178AE8218EE * L_8 = L_7;
IL2CPP_RUNTIME_CLASS_INIT(Object_tF2F3778131EFF286AF62B7B013A170F95A91571A_il2cpp_TypeInfo_var);
bool L_9;
L_9 = Object_op_Equality_mEE9EC7EB5C7DC3E95B94AB904E1986FC4D566D54(L_8, (Object_tF2F3778131EFF286AF62B7B013A170F95A91571A *)NULL, /*hidden argument*/NULL);
G_B3_0 = L_8;
if (!L_9)
{
G_B4_0 = L_8;
goto IL_0049;
}
}
{
// throw new InvalidOperationException($"Could not create a material for shader named "
// + $"'{cameraShaderName}' required for video overlay on camera "
// + $"subsystem.");
String_t* L_10 = ___cameraShaderName0;
String_t* L_11;
L_11 = String_Concat_m89EAB4C6A96B0E5C3F87300D6BE78D386B9EFC44(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralCD0C03FFF40E6F1D242821369D83EC4658F16D35)), L_10, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral489BDF1FA9922AB5F829F5BE893907E419364DF4)), /*hidden argument*/NULL);
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_12 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_12, L_11, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_12, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Provider_CreateCameraMaterial_mE1F6AD1B1D9F9BA80FE1B8DB3138262545FC018C_RuntimeMethod_var)));
}
IL_0049:
{
// return material;
return G_B4_0;
}
}
// System.Void UnityEngine.XR.ARSubsystems.XRCameraSubsystem/Provider::OnBeforeBackgroundRender(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Provider_OnBeforeBackgroundRender_mB0345F2E598C207A2C7A3C1FCD6AEB7080DF1D75 (Provider_t55916B0D2766C320DCA36A0C870BA2FD80F8B6D1 * __this, int32_t ___id0, const RuntimeMethod* method)
{
{
// public virtual void OnBeforeBackgroundRender(int id) {}
return;
}
}
// System.Void UnityEngine.XR.ARSubsystems.XRCameraSubsystem/Provider::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Provider__ctor_mA61CB0610059584FC8190F2C54D845C7612D82BE (Provider_t55916B0D2766C320DCA36A0C870BA2FD80F8B6D1 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SubsystemProvider_1__ctor_m1FA71B1964321737193BC8E0C9C0D64FE79DDCC3_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
SubsystemProvider_1__ctor_m1FA71B1964321737193BC8E0C9C0D64FE79DDCC3(__this, /*hidden argument*/SubsystemProvider_1__ctor_m1FA71B1964321737193BC8E0C9C0D64FE79DDCC3_RuntimeMethod_var);
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
// System.Boolean UnityEngine.XR.ARSubsystems.XRCpuImage/Api::TryGetPlane(System.Int32,System.Int32,UnityEngine.XR.ARSubsystems.XRCpuImage/Plane/Cinfo&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Api_TryGetPlane_m9EDAE9347615522A0C95F387DF4D274D655090A8 (Api_t7C92F00C6416A2C636A44AAC833C3773C567DC3E * __this, int32_t ___nativeHandle0, int32_t ___planeIndex1, Cinfo_t11C577CFE4A1D91F887A6423F6D1350DA45CA5FC * ___planeCinfo2, const RuntimeMethod* method)
{
{
// throw new NotSupportedException("camera image conversion is not supported by this implementation");
NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 * L_0 = (NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339_il2cpp_TypeInfo_var)));
NotSupportedException__ctor_m40BC57BDA6E0E119B73700CC809A14B57DC65A90(L_0, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral50462E987F01EE38DE56F70AE720A4C4512F3F59)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Api_TryGetPlane_m9EDAE9347615522A0C95F387DF4D274D655090A8_RuntimeMethod_var)));
}
}
// System.Boolean UnityEngine.XR.ARSubsystems.XRCpuImage/Api::TryGetConvertedDataSize(System.Int32,UnityEngine.Vector2Int,UnityEngine.TextureFormat,System.Int32&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Api_TryGetConvertedDataSize_m50DDC92171F520516E21205E3817BEE0D51A9A51 (Api_t7C92F00C6416A2C636A44AAC833C3773C567DC3E * __this, int32_t ___nativeHandle0, Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9 ___dimensions1, int32_t ___format2, int32_t* ___size3, const RuntimeMethod* method)
{
{
// throw new NotSupportedException("Camera image conversion is not supported by this implementation");
NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 * L_0 = (NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339_il2cpp_TypeInfo_var)));
NotSupportedException__ctor_m40BC57BDA6E0E119B73700CC809A14B57DC65A90(L_0, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralE3B3C6EBFEA166D20BF43554ADFEFAB3308E3F3E)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Api_TryGetConvertedDataSize_m50DDC92171F520516E21205E3817BEE0D51A9A51_RuntimeMethod_var)));
}
}
// System.Boolean UnityEngine.XR.ARSubsystems.XRCpuImage/Api::TryConvert(System.Int32,UnityEngine.XR.ARSubsystems.XRCpuImage/ConversionParams,System.IntPtr,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Api_TryConvert_m2FB4CAC6639BE6EDDD65D74A3C296C9A72C1E6FD (Api_t7C92F00C6416A2C636A44AAC833C3773C567DC3E * __this, int32_t ___nativeHandle0, ConversionParams_t3DDB9752BA823641A302D0783C14048D9B09B74A ___conversionParams1, intptr_t ___destinationBuffer2, int32_t ___bufferLength3, const RuntimeMethod* method)
{
{
// throw new NotSupportedException("camera image conversion is not supported by this implementation");
NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 * L_0 = (NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339_il2cpp_TypeInfo_var)));
NotSupportedException__ctor_m40BC57BDA6E0E119B73700CC809A14B57DC65A90(L_0, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral50462E987F01EE38DE56F70AE720A4C4512F3F59)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Api_TryConvert_m2FB4CAC6639BE6EDDD65D74A3C296C9A72C1E6FD_RuntimeMethod_var)));
}
}
// System.Int32 UnityEngine.XR.ARSubsystems.XRCpuImage/Api::ConvertAsync(System.Int32,UnityEngine.XR.ARSubsystems.XRCpuImage/ConversionParams)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Api_ConvertAsync_m7D88B9B493A448A03FBED33FE2C675805A2417F0 (Api_t7C92F00C6416A2C636A44AAC833C3773C567DC3E * __this, int32_t ___nativeHandle0, ConversionParams_t3DDB9752BA823641A302D0783C14048D9B09B74A ___conversionParams1, const RuntimeMethod* method)
{
{
// throw new NotSupportedException("camera image conversion is not supported by this implementation");
NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 * L_0 = (NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339_il2cpp_TypeInfo_var)));
NotSupportedException__ctor_m40BC57BDA6E0E119B73700CC809A14B57DC65A90(L_0, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral50462E987F01EE38DE56F70AE720A4C4512F3F59)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Api_ConvertAsync_m7D88B9B493A448A03FBED33FE2C675805A2417F0_RuntimeMethod_var)));
}
}
// System.Boolean UnityEngine.XR.ARSubsystems.XRCpuImage/Api::NativeHandleValid(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Api_NativeHandleValid_m25628942A0D2320EAB96887219972ED8257FC858 (Api_t7C92F00C6416A2C636A44AAC833C3773C567DC3E * __this, int32_t ___nativeHandle0, const RuntimeMethod* method)
{
{
// throw new NotSupportedException("camera image conversion is not supported by this implementation");
NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 * L_0 = (NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339_il2cpp_TypeInfo_var)));
NotSupportedException__ctor_m40BC57BDA6E0E119B73700CC809A14B57DC65A90(L_0, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral50462E987F01EE38DE56F70AE720A4C4512F3F59)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Api_NativeHandleValid_m25628942A0D2320EAB96887219972ED8257FC858_RuntimeMethod_var)));
}
}
// System.Boolean UnityEngine.XR.ARSubsystems.XRCpuImage/Api::TryGetAsyncRequestData(System.Int32,System.IntPtr&,System.Int32&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Api_TryGetAsyncRequestData_mCEB60B8F55366677F05AAF1651F46C4B28AFAEA3 (Api_t7C92F00C6416A2C636A44AAC833C3773C567DC3E * __this, int32_t ___requestId0, intptr_t* ___dataPtr1, int32_t* ___dataLength2, const RuntimeMethod* method)
{
{
// throw new NotSupportedException("camera image conversion is not supported by this implementation");
NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 * L_0 = (NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339_il2cpp_TypeInfo_var)));
NotSupportedException__ctor_m40BC57BDA6E0E119B73700CC809A14B57DC65A90(L_0, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral50462E987F01EE38DE56F70AE720A4C4512F3F59)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Api_TryGetAsyncRequestData_mCEB60B8F55366677F05AAF1651F46C4B28AFAEA3_RuntimeMethod_var)));
}
}
// System.Void UnityEngine.XR.ARSubsystems.XRCpuImage/Api::ConvertAsync(System.Int32,UnityEngine.XR.ARSubsystems.XRCpuImage/ConversionParams,UnityEngine.XR.ARSubsystems.XRCpuImage/Api/OnImageRequestCompleteDelegate,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Api_ConvertAsync_mE9BFD28B9BC1C3A063FC0B84B014B3538A155E99 (Api_t7C92F00C6416A2C636A44AAC833C3773C567DC3E * __this, int32_t ___nativeHandle0, ConversionParams_t3DDB9752BA823641A302D0783C14048D9B09B74A ___conversionParams1, OnImageRequestCompleteDelegate_t118FB01E93241BFD5BCA5BEF2A6FD082ACAAB4DD * ___callback2, intptr_t ___context3, const RuntimeMethod* method)
{
{
// throw new NotSupportedException("camera image conversion is not supported by this implementation");
NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 * L_0 = (NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339_il2cpp_TypeInfo_var)));
NotSupportedException__ctor_m40BC57BDA6E0E119B73700CC809A14B57DC65A90(L_0, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral50462E987F01EE38DE56F70AE720A4C4512F3F59)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Api_ConvertAsync_mE9BFD28B9BC1C3A063FC0B84B014B3538A155E99_RuntimeMethod_var)));
}
}
// System.Void UnityEngine.XR.ARSubsystems.XRCpuImage/Api::DisposeImage(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Api_DisposeImage_m6AEAAF9EF11D19294B441CF6DBB8FEDD58933989 (Api_t7C92F00C6416A2C636A44AAC833C3773C567DC3E * __this, int32_t ___nativeHandle0, const RuntimeMethod* method)
{
{
// throw new NotSupportedException("camera image conversion is not supported by this implementation");
NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 * L_0 = (NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339_il2cpp_TypeInfo_var)));
NotSupportedException__ctor_m40BC57BDA6E0E119B73700CC809A14B57DC65A90(L_0, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral50462E987F01EE38DE56F70AE720A4C4512F3F59)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Api_DisposeImage_m6AEAAF9EF11D19294B441CF6DBB8FEDD58933989_RuntimeMethod_var)));
}
}
// System.Void UnityEngine.XR.ARSubsystems.XRCpuImage/Api::DisposeAsyncRequest(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Api_DisposeAsyncRequest_m06C972C865763DF2DE877124295F4A48B0574ABE (Api_t7C92F00C6416A2C636A44AAC833C3773C567DC3E * __this, int32_t ___requestId0, const RuntimeMethod* method)
{
{
// throw new NotSupportedException("camera image conversion is not supported by this implementation");
NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 * L_0 = (NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339_il2cpp_TypeInfo_var)));
NotSupportedException__ctor_m40BC57BDA6E0E119B73700CC809A14B57DC65A90(L_0, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral50462E987F01EE38DE56F70AE720A4C4512F3F59)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Api_DisposeAsyncRequest_m06C972C865763DF2DE877124295F4A48B0574ABE_RuntimeMethod_var)));
}
}
// UnityEngine.XR.ARSubsystems.XRCpuImage/AsyncConversionStatus UnityEngine.XR.ARSubsystems.XRCpuImage/Api::GetAsyncRequestStatus(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Api_GetAsyncRequestStatus_m920A8C2BA437BF3581A737DE8AF350094577300B (Api_t7C92F00C6416A2C636A44AAC833C3773C567DC3E * __this, int32_t ___requestId0, const RuntimeMethod* method)
{
{
// throw new NotSupportedException("camera image conversion is not supported by this implementation");
NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 * L_0 = (NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339_il2cpp_TypeInfo_var)));
NotSupportedException__ctor_m40BC57BDA6E0E119B73700CC809A14B57DC65A90(L_0, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral50462E987F01EE38DE56F70AE720A4C4512F3F59)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Api_GetAsyncRequestStatus_m920A8C2BA437BF3581A737DE8AF350094577300B_RuntimeMethod_var)));
}
}
// System.Boolean UnityEngine.XR.ARSubsystems.XRCpuImage/Api::FormatSupported(UnityEngine.XR.ARSubsystems.XRCpuImage,UnityEngine.TextureFormat)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Api_FormatSupported_mD53B1C7B2A9D9D49ADDCE94794198C5A0FB64828 (Api_t7C92F00C6416A2C636A44AAC833C3773C567DC3E * __this, XRCpuImage_tA48C0687D95D3D63D1101E4E08EFCF0ABB2431CE ___image0, int32_t ___format1, const RuntimeMethod* method)
{
{
// public virtual bool FormatSupported(XRCpuImage image, TextureFormat format) => false;
return (bool)0;
}
}
// System.Void UnityEngine.XR.ARSubsystems.XRCpuImage/Api::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Api__ctor_mEC96F88C341E160F9DDE41F5FA275DFAFF8522BA (Api_t7C92F00C6416A2C636A44AAC833C3773C567DC3E * __this, const RuntimeMethod* method)
{
{
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__this, /*hidden argument*/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
// System.Int32 UnityEngine.XR.ARSubsystems.XRCpuImage/Cinfo::get_nativeHandle()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Cinfo_get_nativeHandle_mAB50E5453B3ED928372EC45DF5E0F4E2ADF341BC (Cinfo_t4E32E30AF6973611F1DD0F47FC041ED3A8775DA6 * __this, const RuntimeMethod* method)
{
{
// public int nativeHandle => m_NativeHandle;
int32_t L_0 = __this->get_m_NativeHandle_0();
return L_0;
}
}
IL2CPP_EXTERN_C int32_t Cinfo_get_nativeHandle_mAB50E5453B3ED928372EC45DF5E0F4E2ADF341BC_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
Cinfo_t4E32E30AF6973611F1DD0F47FC041ED3A8775DA6 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<Cinfo_t4E32E30AF6973611F1DD0F47FC041ED3A8775DA6 *>(__this + _offset);
int32_t _returnValue;
_returnValue = Cinfo_get_nativeHandle_mAB50E5453B3ED928372EC45DF5E0F4E2ADF341BC_inline(_thisAdjusted, method);
return _returnValue;
}
// UnityEngine.Vector2Int UnityEngine.XR.ARSubsystems.XRCpuImage/Cinfo::get_dimensions()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9 Cinfo_get_dimensions_mA8AFF01543915A325187A41369F6DA11231A3E50 (Cinfo_t4E32E30AF6973611F1DD0F47FC041ED3A8775DA6 * __this, const RuntimeMethod* method)
{
{
// public Vector2Int dimensions => m_Dimensions;
Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9 L_0 = __this->get_m_Dimensions_1();
return L_0;
}
}
IL2CPP_EXTERN_C Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9 Cinfo_get_dimensions_mA8AFF01543915A325187A41369F6DA11231A3E50_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
Cinfo_t4E32E30AF6973611F1DD0F47FC041ED3A8775DA6 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<Cinfo_t4E32E30AF6973611F1DD0F47FC041ED3A8775DA6 *>(__this + _offset);
Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9 _returnValue;
_returnValue = Cinfo_get_dimensions_mA8AFF01543915A325187A41369F6DA11231A3E50_inline(_thisAdjusted, method);
return _returnValue;
}
// System.Int32 UnityEngine.XR.ARSubsystems.XRCpuImage/Cinfo::get_planeCount()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Cinfo_get_planeCount_m88E3C67F9E06017A46B7FF90368B24A6F48E1271 (Cinfo_t4E32E30AF6973611F1DD0F47FC041ED3A8775DA6 * __this, const RuntimeMethod* method)
{
{
// public int planeCount => m_PlaneCount;
int32_t L_0 = __this->get_m_PlaneCount_2();
return L_0;
}
}
IL2CPP_EXTERN_C int32_t Cinfo_get_planeCount_m88E3C67F9E06017A46B7FF90368B24A6F48E1271_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
Cinfo_t4E32E30AF6973611F1DD0F47FC041ED3A8775DA6 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<Cinfo_t4E32E30AF6973611F1DD0F47FC041ED3A8775DA6 *>(__this + _offset);
int32_t _returnValue;
_returnValue = Cinfo_get_planeCount_m88E3C67F9E06017A46B7FF90368B24A6F48E1271_inline(_thisAdjusted, method);
return _returnValue;
}
// System.Double UnityEngine.XR.ARSubsystems.XRCpuImage/Cinfo::get_timestamp()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR double Cinfo_get_timestamp_mAF782E097B2324BD673D8D98C68CA2D6CA4891EF (Cinfo_t4E32E30AF6973611F1DD0F47FC041ED3A8775DA6 * __this, const RuntimeMethod* method)
{
{
// public double timestamp => m_Timestamp;
double L_0 = __this->get_m_Timestamp_3();
return L_0;
}
}
IL2CPP_EXTERN_C double Cinfo_get_timestamp_mAF782E097B2324BD673D8D98C68CA2D6CA4891EF_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
Cinfo_t4E32E30AF6973611F1DD0F47FC041ED3A8775DA6 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<Cinfo_t4E32E30AF6973611F1DD0F47FC041ED3A8775DA6 *>(__this + _offset);
double _returnValue;
_returnValue = Cinfo_get_timestamp_mAF782E097B2324BD673D8D98C68CA2D6CA4891EF_inline(_thisAdjusted, method);
return _returnValue;
}
// UnityEngine.XR.ARSubsystems.XRCpuImage/Format UnityEngine.XR.ARSubsystems.XRCpuImage/Cinfo::get_format()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Cinfo_get_format_m42CBF60A496CB04541CC04C97E1745AFBC7259BD (Cinfo_t4E32E30AF6973611F1DD0F47FC041ED3A8775DA6 * __this, const RuntimeMethod* method)
{
{
// public Format format => m_Format;
int32_t L_0 = __this->get_m_Format_4();
return L_0;
}
}
IL2CPP_EXTERN_C int32_t Cinfo_get_format_m42CBF60A496CB04541CC04C97E1745AFBC7259BD_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
Cinfo_t4E32E30AF6973611F1DD0F47FC041ED3A8775DA6 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<Cinfo_t4E32E30AF6973611F1DD0F47FC041ED3A8775DA6 *>(__this + _offset);
int32_t _returnValue;
_returnValue = Cinfo_get_format_m42CBF60A496CB04541CC04C97E1745AFBC7259BD_inline(_thisAdjusted, method);
return _returnValue;
}
// System.Boolean UnityEngine.XR.ARSubsystems.XRCpuImage/Cinfo::Equals(UnityEngine.XR.ARSubsystems.XRCpuImage/Cinfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Cinfo_Equals_m52B0C058E8FB2AB4089B91E1EDD0DFD2F9F22642 (Cinfo_t4E32E30AF6973611F1DD0F47FC041ED3A8775DA6 * __this, Cinfo_t4E32E30AF6973611F1DD0F47FC041ED3A8775DA6 ___other0, const RuntimeMethod* method)
{
int32_t V_0 = 0;
Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9 V_1;
memset((&V_1), 0, sizeof(V_1));
double V_2 = 0.0;
{
// return (nativeHandle.Equals(other.nativeHandle) && dimensions.Equals(other.dimensions)
// && planeCount.Equals(other.planeCount) && timestamp.Equals(other.timestamp)
// && (format == other.format));
int32_t L_0;
L_0 = Cinfo_get_nativeHandle_mAB50E5453B3ED928372EC45DF5E0F4E2ADF341BC_inline((Cinfo_t4E32E30AF6973611F1DD0F47FC041ED3A8775DA6 *)__this, /*hidden argument*/NULL);
V_0 = L_0;
int32_t L_1;
L_1 = Cinfo_get_nativeHandle_mAB50E5453B3ED928372EC45DF5E0F4E2ADF341BC_inline((Cinfo_t4E32E30AF6973611F1DD0F47FC041ED3A8775DA6 *)(&___other0), /*hidden argument*/NULL);
bool L_2;
L_2 = Int32_Equals_mA73E9B3A01B9B9151C262C1E1A56C6AB4891A5E4((int32_t*)(&V_0), L_1, /*hidden argument*/NULL);
if (!L_2)
{
goto IL_006c;
}
}
{
Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9 L_3;
L_3 = Cinfo_get_dimensions_mA8AFF01543915A325187A41369F6DA11231A3E50_inline((Cinfo_t4E32E30AF6973611F1DD0F47FC041ED3A8775DA6 *)__this, /*hidden argument*/NULL);
V_1 = L_3;
Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9 L_4;
L_4 = Cinfo_get_dimensions_mA8AFF01543915A325187A41369F6DA11231A3E50_inline((Cinfo_t4E32E30AF6973611F1DD0F47FC041ED3A8775DA6 *)(&___other0), /*hidden argument*/NULL);
bool L_5;
L_5 = Vector2Int_Equals_m96F4F602CE85AFD675A8096AB9D5E2D4544382FF_inline((Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9 *)(&V_1), L_4, /*hidden argument*/NULL);
if (!L_5)
{
goto IL_006c;
}
}
{
int32_t L_6;
L_6 = Cinfo_get_planeCount_m88E3C67F9E06017A46B7FF90368B24A6F48E1271_inline((Cinfo_t4E32E30AF6973611F1DD0F47FC041ED3A8775DA6 *)__this, /*hidden argument*/NULL);
V_0 = L_6;
int32_t L_7;
L_7 = Cinfo_get_planeCount_m88E3C67F9E06017A46B7FF90368B24A6F48E1271_inline((Cinfo_t4E32E30AF6973611F1DD0F47FC041ED3A8775DA6 *)(&___other0), /*hidden argument*/NULL);
bool L_8;
L_8 = Int32_Equals_mA73E9B3A01B9B9151C262C1E1A56C6AB4891A5E4((int32_t*)(&V_0), L_7, /*hidden argument*/NULL);
if (!L_8)
{
goto IL_006c;
}
}
{
double L_9;
L_9 = Cinfo_get_timestamp_mAF782E097B2324BD673D8D98C68CA2D6CA4891EF_inline((Cinfo_t4E32E30AF6973611F1DD0F47FC041ED3A8775DA6 *)__this, /*hidden argument*/NULL);
V_2 = L_9;
double L_10;
L_10 = Cinfo_get_timestamp_mAF782E097B2324BD673D8D98C68CA2D6CA4891EF_inline((Cinfo_t4E32E30AF6973611F1DD0F47FC041ED3A8775DA6 *)(&___other0), /*hidden argument*/NULL);
bool L_11;
L_11 = Double_Equals_m8C171E8C7F556087E707D1396DB29D1D8B21A46B((double*)(&V_2), L_10, /*hidden argument*/NULL);
if (!L_11)
{
goto IL_006c;
}
}
{
int32_t L_12;
L_12 = Cinfo_get_format_m42CBF60A496CB04541CC04C97E1745AFBC7259BD_inline((Cinfo_t4E32E30AF6973611F1DD0F47FC041ED3A8775DA6 *)__this, /*hidden argument*/NULL);
int32_t L_13;
L_13 = Cinfo_get_format_m42CBF60A496CB04541CC04C97E1745AFBC7259BD_inline((Cinfo_t4E32E30AF6973611F1DD0F47FC041ED3A8775DA6 *)(&___other0), /*hidden argument*/NULL);
return (bool)((((int32_t)L_12) == ((int32_t)L_13))? 1 : 0);
}
IL_006c:
{
return (bool)0;
}
}
IL2CPP_EXTERN_C bool Cinfo_Equals_m52B0C058E8FB2AB4089B91E1EDD0DFD2F9F22642_AdjustorThunk (RuntimeObject * __this, Cinfo_t4E32E30AF6973611F1DD0F47FC041ED3A8775DA6 ___other0, const RuntimeMethod* method)
{
Cinfo_t4E32E30AF6973611F1DD0F47FC041ED3A8775DA6 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<Cinfo_t4E32E30AF6973611F1DD0F47FC041ED3A8775DA6 *>(__this + _offset);
bool _returnValue;
_returnValue = Cinfo_Equals_m52B0C058E8FB2AB4089B91E1EDD0DFD2F9F22642(_thisAdjusted, ___other0, method);
return _returnValue;
}
// System.Boolean UnityEngine.XR.ARSubsystems.XRCpuImage/Cinfo::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Cinfo_Equals_m8140023C141235A77C2153E9A8B54E5356EC6C6F (Cinfo_t4E32E30AF6973611F1DD0F47FC041ED3A8775DA6 * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Cinfo_t4E32E30AF6973611F1DD0F47FC041ED3A8775DA6_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
Cinfo_t4E32E30AF6973611F1DD0F47FC041ED3A8775DA6 V_0;
memset((&V_0), 0, sizeof(V_0));
{
// public override bool Equals(System.Object obj) => obj is Cinfo other && Equals(other);
RuntimeObject * L_0 = ___obj0;
if (!((RuntimeObject *)IsInstSealed((RuntimeObject*)L_0, Cinfo_t4E32E30AF6973611F1DD0F47FC041ED3A8775DA6_il2cpp_TypeInfo_var)))
{
goto IL_0017;
}
}
{
RuntimeObject * L_1 = ___obj0;
V_0 = ((*(Cinfo_t4E32E30AF6973611F1DD0F47FC041ED3A8775DA6 *)((Cinfo_t4E32E30AF6973611F1DD0F47FC041ED3A8775DA6 *)UnBox(L_1, Cinfo_t4E32E30AF6973611F1DD0F47FC041ED3A8775DA6_il2cpp_TypeInfo_var))));
Cinfo_t4E32E30AF6973611F1DD0F47FC041ED3A8775DA6 L_2 = V_0;
bool L_3;
L_3 = Cinfo_Equals_m52B0C058E8FB2AB4089B91E1EDD0DFD2F9F22642((Cinfo_t4E32E30AF6973611F1DD0F47FC041ED3A8775DA6 *)__this, L_2, /*hidden argument*/NULL);
return L_3;
}
IL_0017:
{
return (bool)0;
}
}
IL2CPP_EXTERN_C bool Cinfo_Equals_m8140023C141235A77C2153E9A8B54E5356EC6C6F_AdjustorThunk (RuntimeObject * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
Cinfo_t4E32E30AF6973611F1DD0F47FC041ED3A8775DA6 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<Cinfo_t4E32E30AF6973611F1DD0F47FC041ED3A8775DA6 *>(__this + _offset);
bool _returnValue;
_returnValue = Cinfo_Equals_m8140023C141235A77C2153E9A8B54E5356EC6C6F(_thisAdjusted, ___obj0, method);
return _returnValue;
}
// System.Int32 UnityEngine.XR.ARSubsystems.XRCpuImage/Cinfo::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Cinfo_GetHashCode_m7AB2284B6770F059F37B7A7EB61C075F472BAE65 (Cinfo_t4E32E30AF6973611F1DD0F47FC041ED3A8775DA6 * __this, const RuntimeMethod* method)
{
int32_t V_0 = 0;
Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9 V_1;
memset((&V_1), 0, sizeof(V_1));
double V_2 = 0.0;
{
// public override int GetHashCode() => HashCode.Combine(
// nativeHandle.GetHashCode(),
// dimensions.GetHashCode(),
// planeCount.GetHashCode(),
// timestamp.GetHashCode(),
// ((int)format).GetHashCode());
int32_t L_0;
L_0 = Cinfo_get_nativeHandle_mAB50E5453B3ED928372EC45DF5E0F4E2ADF341BC_inline((Cinfo_t4E32E30AF6973611F1DD0F47FC041ED3A8775DA6 *)__this, /*hidden argument*/NULL);
V_0 = L_0;
int32_t L_1;
L_1 = Int32_GetHashCode_mEDD3F492A5F7CF021125AE3F38E2B8F8743FC667((int32_t*)(&V_0), /*hidden argument*/NULL);
Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9 L_2;
L_2 = Cinfo_get_dimensions_mA8AFF01543915A325187A41369F6DA11231A3E50_inline((Cinfo_t4E32E30AF6973611F1DD0F47FC041ED3A8775DA6 *)__this, /*hidden argument*/NULL);
V_1 = L_2;
int32_t L_3;
L_3 = Vector2Int_GetHashCode_mB963D0B9A29E161BC4B73F97AEAF2F843FC8EF71((Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9 *)(&V_1), /*hidden argument*/NULL);
int32_t L_4;
L_4 = Cinfo_get_planeCount_m88E3C67F9E06017A46B7FF90368B24A6F48E1271_inline((Cinfo_t4E32E30AF6973611F1DD0F47FC041ED3A8775DA6 *)__this, /*hidden argument*/NULL);
V_0 = L_4;
int32_t L_5;
L_5 = Int32_GetHashCode_mEDD3F492A5F7CF021125AE3F38E2B8F8743FC667((int32_t*)(&V_0), /*hidden argument*/NULL);
double L_6;
L_6 = Cinfo_get_timestamp_mAF782E097B2324BD673D8D98C68CA2D6CA4891EF_inline((Cinfo_t4E32E30AF6973611F1DD0F47FC041ED3A8775DA6 *)__this, /*hidden argument*/NULL);
V_2 = L_6;
int32_t L_7;
L_7 = Double_GetHashCode_m33CB20AA5674C6F4367B7B08340B33FB979F9F39((double*)(&V_2), /*hidden argument*/NULL);
int32_t L_8;
L_8 = Cinfo_get_format_m42CBF60A496CB04541CC04C97E1745AFBC7259BD_inline((Cinfo_t4E32E30AF6973611F1DD0F47FC041ED3A8775DA6 *)__this, /*hidden argument*/NULL);
V_0 = L_8;
int32_t L_9;
L_9 = Int32_GetHashCode_mEDD3F492A5F7CF021125AE3F38E2B8F8743FC667((int32_t*)(&V_0), /*hidden argument*/NULL);
int32_t L_10;
L_10 = HashCode_Combine_m02E9A65274F198CF9266FDB496C74880155F9B94(L_1, L_3, L_5, L_7, L_9, /*hidden argument*/NULL);
return L_10;
}
}
IL2CPP_EXTERN_C int32_t Cinfo_GetHashCode_m7AB2284B6770F059F37B7A7EB61C075F472BAE65_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
Cinfo_t4E32E30AF6973611F1DD0F47FC041ED3A8775DA6 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<Cinfo_t4E32E30AF6973611F1DD0F47FC041ED3A8775DA6 *>(__this + _offset);
int32_t _returnValue;
_returnValue = Cinfo_GetHashCode_m7AB2284B6770F059F37B7A7EB61C075F472BAE65(_thisAdjusted, method);
return _returnValue;
}
// System.String UnityEngine.XR.ARSubsystems.XRCpuImage/Cinfo::ToString()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Cinfo_ToString_m4923B9CB2748C5E7CCAA6C817F47976B1E4B2FE1 (Cinfo_t4E32E30AF6973611F1DD0F47FC041ED3A8775DA6 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Double_t42821932CB52DE2057E685D0E1AF3DE5033D2181_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Format_tC8D4CDE6941B0CAE3E1C07EC826E7E253846168A_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral58E5CEADA2059EE9E3025B80075ADE0FEECDE744);
s_Il2CppMethodInitialized = true;
}
{
// public override string ToString() => $"nativeHandle: {nativeHandle} dimensions:{dimensions} planes:{planeCount} timestamp:{timestamp} format:{format}";
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_0 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)SZArrayNew(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE_il2cpp_TypeInfo_var, (uint32_t)5);
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_1 = L_0;
int32_t L_2;
L_2 = Cinfo_get_nativeHandle_mAB50E5453B3ED928372EC45DF5E0F4E2ADF341BC_inline((Cinfo_t4E32E30AF6973611F1DD0F47FC041ED3A8775DA6 *)__this, /*hidden argument*/NULL);
int32_t L_3 = L_2;
RuntimeObject * L_4 = Box(Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var, &L_3);
NullCheck(L_1);
ArrayElementTypeCheck (L_1, L_4);
(L_1)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_4);
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_5 = L_1;
Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9 L_6;
L_6 = Cinfo_get_dimensions_mA8AFF01543915A325187A41369F6DA11231A3E50_inline((Cinfo_t4E32E30AF6973611F1DD0F47FC041ED3A8775DA6 *)__this, /*hidden argument*/NULL);
Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9 L_7 = L_6;
RuntimeObject * L_8 = Box(Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9_il2cpp_TypeInfo_var, &L_7);
NullCheck(L_5);
ArrayElementTypeCheck (L_5, L_8);
(L_5)->SetAt(static_cast<il2cpp_array_size_t>(1), (RuntimeObject *)L_8);
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_9 = L_5;
int32_t L_10;
L_10 = Cinfo_get_planeCount_m88E3C67F9E06017A46B7FF90368B24A6F48E1271_inline((Cinfo_t4E32E30AF6973611F1DD0F47FC041ED3A8775DA6 *)__this, /*hidden argument*/NULL);
int32_t L_11 = L_10;
RuntimeObject * L_12 = Box(Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var, &L_11);
NullCheck(L_9);
ArrayElementTypeCheck (L_9, L_12);
(L_9)->SetAt(static_cast<il2cpp_array_size_t>(2), (RuntimeObject *)L_12);
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_13 = L_9;
double L_14;
L_14 = Cinfo_get_timestamp_mAF782E097B2324BD673D8D98C68CA2D6CA4891EF_inline((Cinfo_t4E32E30AF6973611F1DD0F47FC041ED3A8775DA6 *)__this, /*hidden argument*/NULL);
double L_15 = L_14;
RuntimeObject * L_16 = Box(Double_t42821932CB52DE2057E685D0E1AF3DE5033D2181_il2cpp_TypeInfo_var, &L_15);
NullCheck(L_13);
ArrayElementTypeCheck (L_13, L_16);
(L_13)->SetAt(static_cast<il2cpp_array_size_t>(3), (RuntimeObject *)L_16);
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_17 = L_13;
int32_t L_18;
L_18 = Cinfo_get_format_m42CBF60A496CB04541CC04C97E1745AFBC7259BD_inline((Cinfo_t4E32E30AF6973611F1DD0F47FC041ED3A8775DA6 *)__this, /*hidden argument*/NULL);
int32_t L_19 = L_18;
RuntimeObject * L_20 = Box(Format_tC8D4CDE6941B0CAE3E1C07EC826E7E253846168A_il2cpp_TypeInfo_var, &L_19);
NullCheck(L_17);
ArrayElementTypeCheck (L_17, L_20);
(L_17)->SetAt(static_cast<il2cpp_array_size_t>(4), (RuntimeObject *)L_20);
String_t* L_21;
L_21 = String_Format_mCED6767EA5FEE6F15ABCD5B4F9150D1284C2795B(_stringLiteral58E5CEADA2059EE9E3025B80075ADE0FEECDE744, L_17, /*hidden argument*/NULL);
return L_21;
}
}
IL2CPP_EXTERN_C String_t* Cinfo_ToString_m4923B9CB2748C5E7CCAA6C817F47976B1E4B2FE1_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
Cinfo_t4E32E30AF6973611F1DD0F47FC041ED3A8775DA6 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<Cinfo_t4E32E30AF6973611F1DD0F47FC041ED3A8775DA6 *>(__this + _offset);
String_t* _returnValue;
_returnValue = Cinfo_ToString_m4923B9CB2748C5E7CCAA6C817F47976B1E4B2FE1(_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
// UnityEngine.RectInt UnityEngine.XR.ARSubsystems.XRCpuImage/ConversionParams::get_inputRect()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RectInt_tE7B8105A280C1AC73A4157ED41F9B86C9BD91E49 ConversionParams_get_inputRect_mE75F22AF739DFB5506127DF164E0AEF851702756 (ConversionParams_t3DDB9752BA823641A302D0783C14048D9B09B74A * __this, const RuntimeMethod* method)
{
{
// get => m_InputRect;
RectInt_tE7B8105A280C1AC73A4157ED41F9B86C9BD91E49 L_0 = __this->get_m_InputRect_0();
return L_0;
}
}
IL2CPP_EXTERN_C RectInt_tE7B8105A280C1AC73A4157ED41F9B86C9BD91E49 ConversionParams_get_inputRect_mE75F22AF739DFB5506127DF164E0AEF851702756_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
ConversionParams_t3DDB9752BA823641A302D0783C14048D9B09B74A * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<ConversionParams_t3DDB9752BA823641A302D0783C14048D9B09B74A *>(__this + _offset);
RectInt_tE7B8105A280C1AC73A4157ED41F9B86C9BD91E49 _returnValue;
_returnValue = ConversionParams_get_inputRect_mE75F22AF739DFB5506127DF164E0AEF851702756_inline(_thisAdjusted, method);
return _returnValue;
}
// UnityEngine.Vector2Int UnityEngine.XR.ARSubsystems.XRCpuImage/ConversionParams::get_outputDimensions()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9 ConversionParams_get_outputDimensions_m83C9D960C805CA2748AA9AAAC2A2986A397B7033 (ConversionParams_t3DDB9752BA823641A302D0783C14048D9B09B74A * __this, const RuntimeMethod* method)
{
{
// get => m_OutputDimensions;
Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9 L_0 = __this->get_m_OutputDimensions_1();
return L_0;
}
}
IL2CPP_EXTERN_C Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9 ConversionParams_get_outputDimensions_m83C9D960C805CA2748AA9AAAC2A2986A397B7033_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
ConversionParams_t3DDB9752BA823641A302D0783C14048D9B09B74A * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<ConversionParams_t3DDB9752BA823641A302D0783C14048D9B09B74A *>(__this + _offset);
Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9 _returnValue;
_returnValue = ConversionParams_get_outputDimensions_m83C9D960C805CA2748AA9AAAC2A2986A397B7033_inline(_thisAdjusted, method);
return _returnValue;
}
// UnityEngine.TextureFormat UnityEngine.XR.ARSubsystems.XRCpuImage/ConversionParams::get_outputFormat()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ConversionParams_get_outputFormat_m727E479981BF00635D645C88D4D987EB598A0E5F (ConversionParams_t3DDB9752BA823641A302D0783C14048D9B09B74A * __this, const RuntimeMethod* method)
{
{
// get => m_Format;
int32_t L_0 = __this->get_m_Format_2();
return L_0;
}
}
IL2CPP_EXTERN_C int32_t ConversionParams_get_outputFormat_m727E479981BF00635D645C88D4D987EB598A0E5F_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
ConversionParams_t3DDB9752BA823641A302D0783C14048D9B09B74A * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<ConversionParams_t3DDB9752BA823641A302D0783C14048D9B09B74A *>(__this + _offset);
int32_t _returnValue;
_returnValue = ConversionParams_get_outputFormat_m727E479981BF00635D645C88D4D987EB598A0E5F_inline(_thisAdjusted, method);
return _returnValue;
}
// UnityEngine.XR.ARSubsystems.XRCpuImage/Transformation UnityEngine.XR.ARSubsystems.XRCpuImage/ConversionParams::get_transformation()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ConversionParams_get_transformation_mFB57F05831CF417808A6C41F170768D9F66A7EF3 (ConversionParams_t3DDB9752BA823641A302D0783C14048D9B09B74A * __this, const RuntimeMethod* method)
{
{
// get => m_Transformation;
int32_t L_0 = __this->get_m_Transformation_3();
return L_0;
}
}
IL2CPP_EXTERN_C int32_t ConversionParams_get_transformation_mFB57F05831CF417808A6C41F170768D9F66A7EF3_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
ConversionParams_t3DDB9752BA823641A302D0783C14048D9B09B74A * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<ConversionParams_t3DDB9752BA823641A302D0783C14048D9B09B74A *>(__this + _offset);
int32_t _returnValue;
_returnValue = ConversionParams_get_transformation_mFB57F05831CF417808A6C41F170768D9F66A7EF3_inline(_thisAdjusted, method);
return _returnValue;
}
// System.Int32 UnityEngine.XR.ARSubsystems.XRCpuImage/ConversionParams::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ConversionParams_GetHashCode_m317F3CF69F015FD4012B668A3195A50E8C18F436 (ConversionParams_t3DDB9752BA823641A302D0783C14048D9B09B74A * __this, const RuntimeMethod* method)
{
RectInt_tE7B8105A280C1AC73A4157ED41F9B86C9BD91E49 V_0;
memset((&V_0), 0, sizeof(V_0));
int32_t V_1 = 0;
Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9 V_2;
memset((&V_2), 0, sizeof(V_2));
{
// var hash = HashCode.Combine(inputRect.width.GetHashCode(), inputRect.height.GetHashCode(), inputRect.x.GetHashCode(), inputRect.y.GetHashCode());
RectInt_tE7B8105A280C1AC73A4157ED41F9B86C9BD91E49 L_0;
L_0 = ConversionParams_get_inputRect_mE75F22AF739DFB5506127DF164E0AEF851702756_inline((ConversionParams_t3DDB9752BA823641A302D0783C14048D9B09B74A *)__this, /*hidden argument*/NULL);
V_0 = L_0;
int32_t L_1;
L_1 = RectInt_get_width_m7C3DBF05BE2DC727635FC9D7C778EACF0A9E4085((RectInt_tE7B8105A280C1AC73A4157ED41F9B86C9BD91E49 *)(&V_0), /*hidden argument*/NULL);
V_1 = L_1;
int32_t L_2;
L_2 = Int32_GetHashCode_mEDD3F492A5F7CF021125AE3F38E2B8F8743FC667((int32_t*)(&V_1), /*hidden argument*/NULL);
RectInt_tE7B8105A280C1AC73A4157ED41F9B86C9BD91E49 L_3;
L_3 = ConversionParams_get_inputRect_mE75F22AF739DFB5506127DF164E0AEF851702756_inline((ConversionParams_t3DDB9752BA823641A302D0783C14048D9B09B74A *)__this, /*hidden argument*/NULL);
V_0 = L_3;
int32_t L_4;
L_4 = RectInt_get_height_m5CCF18289CB154C1709AE02AA6375093ECA07DBC((RectInt_tE7B8105A280C1AC73A4157ED41F9B86C9BD91E49 *)(&V_0), /*hidden argument*/NULL);
V_1 = L_4;
int32_t L_5;
L_5 = Int32_GetHashCode_mEDD3F492A5F7CF021125AE3F38E2B8F8743FC667((int32_t*)(&V_1), /*hidden argument*/NULL);
RectInt_tE7B8105A280C1AC73A4157ED41F9B86C9BD91E49 L_6;
L_6 = ConversionParams_get_inputRect_mE75F22AF739DFB5506127DF164E0AEF851702756_inline((ConversionParams_t3DDB9752BA823641A302D0783C14048D9B09B74A *)__this, /*hidden argument*/NULL);
V_0 = L_6;
int32_t L_7;
L_7 = RectInt_get_x_m2D7412BC4EE7871D19042F469D6C573016E39F79((RectInt_tE7B8105A280C1AC73A4157ED41F9B86C9BD91E49 *)(&V_0), /*hidden argument*/NULL);
V_1 = L_7;
int32_t L_8;
L_8 = Int32_GetHashCode_mEDD3F492A5F7CF021125AE3F38E2B8F8743FC667((int32_t*)(&V_1), /*hidden argument*/NULL);
RectInt_tE7B8105A280C1AC73A4157ED41F9B86C9BD91E49 L_9;
L_9 = ConversionParams_get_inputRect_mE75F22AF739DFB5506127DF164E0AEF851702756_inline((ConversionParams_t3DDB9752BA823641A302D0783C14048D9B09B74A *)__this, /*hidden argument*/NULL);
V_0 = L_9;
int32_t L_10;
L_10 = RectInt_get_y_mAEB15FA1B7CCD08DA9FCB978EE0BA45D6BB9FE33((RectInt_tE7B8105A280C1AC73A4157ED41F9B86C9BD91E49 *)(&V_0), /*hidden argument*/NULL);
V_1 = L_10;
int32_t L_11;
L_11 = Int32_GetHashCode_mEDD3F492A5F7CF021125AE3F38E2B8F8743FC667((int32_t*)(&V_1), /*hidden argument*/NULL);
int32_t L_12;
L_12 = HashCode_Combine_mCF5A2D8E169AE770B379DCD8DE5229296453BD82(L_2, L_5, L_8, L_11, /*hidden argument*/NULL);
// return HashCode.Combine(hash, outputDimensions.GetHashCode(), ((int)outputFormat).GetHashCode(), ((int)transformation).GetHashCode());
Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9 L_13;
L_13 = ConversionParams_get_outputDimensions_m83C9D960C805CA2748AA9AAAC2A2986A397B7033_inline((ConversionParams_t3DDB9752BA823641A302D0783C14048D9B09B74A *)__this, /*hidden argument*/NULL);
V_2 = L_13;
int32_t L_14;
L_14 = Vector2Int_GetHashCode_mB963D0B9A29E161BC4B73F97AEAF2F843FC8EF71((Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9 *)(&V_2), /*hidden argument*/NULL);
int32_t L_15;
L_15 = ConversionParams_get_outputFormat_m727E479981BF00635D645C88D4D987EB598A0E5F_inline((ConversionParams_t3DDB9752BA823641A302D0783C14048D9B09B74A *)__this, /*hidden argument*/NULL);
V_1 = L_15;
int32_t L_16;
L_16 = Int32_GetHashCode_mEDD3F492A5F7CF021125AE3F38E2B8F8743FC667((int32_t*)(&V_1), /*hidden argument*/NULL);
int32_t L_17;
L_17 = ConversionParams_get_transformation_mFB57F05831CF417808A6C41F170768D9F66A7EF3_inline((ConversionParams_t3DDB9752BA823641A302D0783C14048D9B09B74A *)__this, /*hidden argument*/NULL);
V_1 = L_17;
int32_t L_18;
L_18 = Int32_GetHashCode_mEDD3F492A5F7CF021125AE3F38E2B8F8743FC667((int32_t*)(&V_1), /*hidden argument*/NULL);
int32_t L_19;
L_19 = HashCode_Combine_mCF5A2D8E169AE770B379DCD8DE5229296453BD82(L_12, L_14, L_16, L_18, /*hidden argument*/NULL);
return L_19;
}
}
IL2CPP_EXTERN_C int32_t ConversionParams_GetHashCode_m317F3CF69F015FD4012B668A3195A50E8C18F436_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
ConversionParams_t3DDB9752BA823641A302D0783C14048D9B09B74A * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<ConversionParams_t3DDB9752BA823641A302D0783C14048D9B09B74A *>(__this + _offset);
int32_t _returnValue;
_returnValue = ConversionParams_GetHashCode_m317F3CF69F015FD4012B668A3195A50E8C18F436(_thisAdjusted, method);
return _returnValue;
}
// System.Boolean UnityEngine.XR.ARSubsystems.XRCpuImage/ConversionParams::Equals(UnityEngine.XR.ARSubsystems.XRCpuImage/ConversionParams)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ConversionParams_Equals_m428ABCB343F2D25BEC8C48C064A607C19D4C6B4F (ConversionParams_t3DDB9752BA823641A302D0783C14048D9B09B74A * __this, ConversionParams_t3DDB9752BA823641A302D0783C14048D9B09B74A ___other0, const RuntimeMethod* method)
{
RectInt_tE7B8105A280C1AC73A4157ED41F9B86C9BD91E49 V_0;
memset((&V_0), 0, sizeof(V_0));
Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9 V_1;
memset((&V_1), 0, sizeof(V_1));
{
// return (inputRect.Equals(other.inputRect) && outputDimensions.Equals(other.outputDimensions)
// && (outputFormat == other.outputFormat) && (transformation == other.transformation));
RectInt_tE7B8105A280C1AC73A4157ED41F9B86C9BD91E49 L_0;
L_0 = ConversionParams_get_inputRect_mE75F22AF739DFB5506127DF164E0AEF851702756_inline((ConversionParams_t3DDB9752BA823641A302D0783C14048D9B09B74A *)__this, /*hidden argument*/NULL);
V_0 = L_0;
RectInt_tE7B8105A280C1AC73A4157ED41F9B86C9BD91E49 L_1;
L_1 = ConversionParams_get_inputRect_mE75F22AF739DFB5506127DF164E0AEF851702756_inline((ConversionParams_t3DDB9752BA823641A302D0783C14048D9B09B74A *)(&___other0), /*hidden argument*/NULL);
bool L_2;
L_2 = RectInt_Equals_mAF3A442FB55544FF362006EDB9B2F225D32BDF6D((RectInt_tE7B8105A280C1AC73A4157ED41F9B86C9BD91E49 *)(&V_0), L_1, /*hidden argument*/NULL);
if (!L_2)
{
goto IL_004d;
}
}
{
Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9 L_3;
L_3 = ConversionParams_get_outputDimensions_m83C9D960C805CA2748AA9AAAC2A2986A397B7033_inline((ConversionParams_t3DDB9752BA823641A302D0783C14048D9B09B74A *)__this, /*hidden argument*/NULL);
V_1 = L_3;
Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9 L_4;
L_4 = ConversionParams_get_outputDimensions_m83C9D960C805CA2748AA9AAAC2A2986A397B7033_inline((ConversionParams_t3DDB9752BA823641A302D0783C14048D9B09B74A *)(&___other0), /*hidden argument*/NULL);
bool L_5;
L_5 = Vector2Int_Equals_m96F4F602CE85AFD675A8096AB9D5E2D4544382FF_inline((Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9 *)(&V_1), L_4, /*hidden argument*/NULL);
if (!L_5)
{
goto IL_004d;
}
}
{
int32_t L_6;
L_6 = ConversionParams_get_outputFormat_m727E479981BF00635D645C88D4D987EB598A0E5F_inline((ConversionParams_t3DDB9752BA823641A302D0783C14048D9B09B74A *)__this, /*hidden argument*/NULL);
int32_t L_7;
L_7 = ConversionParams_get_outputFormat_m727E479981BF00635D645C88D4D987EB598A0E5F_inline((ConversionParams_t3DDB9752BA823641A302D0783C14048D9B09B74A *)(&___other0), /*hidden argument*/NULL);
if ((!(((uint32_t)L_6) == ((uint32_t)L_7))))
{
goto IL_004d;
}
}
{
int32_t L_8;
L_8 = ConversionParams_get_transformation_mFB57F05831CF417808A6C41F170768D9F66A7EF3_inline((ConversionParams_t3DDB9752BA823641A302D0783C14048D9B09B74A *)__this, /*hidden argument*/NULL);
int32_t L_9;
L_9 = ConversionParams_get_transformation_mFB57F05831CF417808A6C41F170768D9F66A7EF3_inline((ConversionParams_t3DDB9752BA823641A302D0783C14048D9B09B74A *)(&___other0), /*hidden argument*/NULL);
return (bool)((((int32_t)L_8) == ((int32_t)L_9))? 1 : 0);
}
IL_004d:
{
return (bool)0;
}
}
IL2CPP_EXTERN_C bool ConversionParams_Equals_m428ABCB343F2D25BEC8C48C064A607C19D4C6B4F_AdjustorThunk (RuntimeObject * __this, ConversionParams_t3DDB9752BA823641A302D0783C14048D9B09B74A ___other0, const RuntimeMethod* method)
{
ConversionParams_t3DDB9752BA823641A302D0783C14048D9B09B74A * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<ConversionParams_t3DDB9752BA823641A302D0783C14048D9B09B74A *>(__this + _offset);
bool _returnValue;
_returnValue = ConversionParams_Equals_m428ABCB343F2D25BEC8C48C064A607C19D4C6B4F(_thisAdjusted, ___other0, method);
return _returnValue;
}
// System.Boolean UnityEngine.XR.ARSubsystems.XRCpuImage/ConversionParams::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ConversionParams_Equals_m9170E22223AA2514E0EAA66A74375460210EC11B (ConversionParams_t3DDB9752BA823641A302D0783C14048D9B09B74A * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ConversionParams_t3DDB9752BA823641A302D0783C14048D9B09B74A_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
// return (obj is ConversionParams) && Equals((ConversionParams)obj);
RuntimeObject * L_0 = ___obj0;
if (!((RuntimeObject *)IsInstSealed((RuntimeObject*)L_0, ConversionParams_t3DDB9752BA823641A302D0783C14048D9B09B74A_il2cpp_TypeInfo_var)))
{
goto IL_0015;
}
}
{
RuntimeObject * L_1 = ___obj0;
bool L_2;
L_2 = ConversionParams_Equals_m428ABCB343F2D25BEC8C48C064A607C19D4C6B4F((ConversionParams_t3DDB9752BA823641A302D0783C14048D9B09B74A *)__this, ((*(ConversionParams_t3DDB9752BA823641A302D0783C14048D9B09B74A *)((ConversionParams_t3DDB9752BA823641A302D0783C14048D9B09B74A *)UnBox(L_1, ConversionParams_t3DDB9752BA823641A302D0783C14048D9B09B74A_il2cpp_TypeInfo_var)))), /*hidden argument*/NULL);
return L_2;
}
IL_0015:
{
return (bool)0;
}
}
IL2CPP_EXTERN_C bool ConversionParams_Equals_m9170E22223AA2514E0EAA66A74375460210EC11B_AdjustorThunk (RuntimeObject * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
ConversionParams_t3DDB9752BA823641A302D0783C14048D9B09B74A * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<ConversionParams_t3DDB9752BA823641A302D0783C14048D9B09B74A *>(__this + _offset);
bool _returnValue;
_returnValue = ConversionParams_Equals_m9170E22223AA2514E0EAA66A74375460210EC11B(_thisAdjusted, ___obj0, method);
return _returnValue;
}
// System.String UnityEngine.XR.ARSubsystems.XRCpuImage/ConversionParams::ToString()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* ConversionParams_ToString_mB2F109D1B691D862EC98C1C9058F78C58CE832D3 (ConversionParams_t3DDB9752BA823641A302D0783C14048D9B09B74A * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RectInt_tE7B8105A280C1AC73A4157ED41F9B86C9BD91E49_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TextureFormat_tBED5388A0445FE978F97B41D247275B036407932_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Transformation_t5812B66180F359977F76AB67CC9E923CF0B55938_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral84202A255CF695123BA6AA8B575C53104873E7C7);
s_Il2CppMethodInitialized = true;
}
{
// => $"inputRect: {inputRect} outputDimensions: {outputDimensions} format: {outputFormat} transformation: {transformation})";
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_0 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)SZArrayNew(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE_il2cpp_TypeInfo_var, (uint32_t)4);
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_1 = L_0;
RectInt_tE7B8105A280C1AC73A4157ED41F9B86C9BD91E49 L_2;
L_2 = ConversionParams_get_inputRect_mE75F22AF739DFB5506127DF164E0AEF851702756_inline((ConversionParams_t3DDB9752BA823641A302D0783C14048D9B09B74A *)__this, /*hidden argument*/NULL);
RectInt_tE7B8105A280C1AC73A4157ED41F9B86C9BD91E49 L_3 = L_2;
RuntimeObject * L_4 = Box(RectInt_tE7B8105A280C1AC73A4157ED41F9B86C9BD91E49_il2cpp_TypeInfo_var, &L_3);
NullCheck(L_1);
ArrayElementTypeCheck (L_1, L_4);
(L_1)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_4);
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_5 = L_1;
Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9 L_6;
L_6 = ConversionParams_get_outputDimensions_m83C9D960C805CA2748AA9AAAC2A2986A397B7033_inline((ConversionParams_t3DDB9752BA823641A302D0783C14048D9B09B74A *)__this, /*hidden argument*/NULL);
Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9 L_7 = L_6;
RuntimeObject * L_8 = Box(Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9_il2cpp_TypeInfo_var, &L_7);
NullCheck(L_5);
ArrayElementTypeCheck (L_5, L_8);
(L_5)->SetAt(static_cast<il2cpp_array_size_t>(1), (RuntimeObject *)L_8);
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_9 = L_5;
int32_t L_10;
L_10 = ConversionParams_get_outputFormat_m727E479981BF00635D645C88D4D987EB598A0E5F_inline((ConversionParams_t3DDB9752BA823641A302D0783C14048D9B09B74A *)__this, /*hidden argument*/NULL);
int32_t L_11 = L_10;
RuntimeObject * L_12 = Box(TextureFormat_tBED5388A0445FE978F97B41D247275B036407932_il2cpp_TypeInfo_var, &L_11);
NullCheck(L_9);
ArrayElementTypeCheck (L_9, L_12);
(L_9)->SetAt(static_cast<il2cpp_array_size_t>(2), (RuntimeObject *)L_12);
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_13 = L_9;
int32_t L_14;
L_14 = ConversionParams_get_transformation_mFB57F05831CF417808A6C41F170768D9F66A7EF3_inline((ConversionParams_t3DDB9752BA823641A302D0783C14048D9B09B74A *)__this, /*hidden argument*/NULL);
int32_t L_15 = L_14;
RuntimeObject * L_16 = Box(Transformation_t5812B66180F359977F76AB67CC9E923CF0B55938_il2cpp_TypeInfo_var, &L_15);
NullCheck(L_13);
ArrayElementTypeCheck (L_13, L_16);
(L_13)->SetAt(static_cast<il2cpp_array_size_t>(3), (RuntimeObject *)L_16);
String_t* L_17;
L_17 = String_Format_mCED6767EA5FEE6F15ABCD5B4F9150D1284C2795B(_stringLiteral84202A255CF695123BA6AA8B575C53104873E7C7, L_13, /*hidden argument*/NULL);
return L_17;
}
}
IL2CPP_EXTERN_C String_t* ConversionParams_ToString_mB2F109D1B691D862EC98C1C9058F78C58CE832D3_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
ConversionParams_t3DDB9752BA823641A302D0783C14048D9B09B74A * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<ConversionParams_t3DDB9752BA823641A302D0783C14048D9B09B74A *>(__this + _offset);
String_t* _returnValue;
_returnValue = ConversionParams_ToString_mB2F109D1B691D862EC98C1C9058F78C58CE832D3(_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
#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
// System.Int32 UnityEngine.XR.ARSubsystems.XRCpuImage/Plane::get_rowStride()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Plane_get_rowStride_mE6385B9F7D9D040FC613D16D859435F492CB213A (Plane_tF421A9F250A5E61AFEE38069538AC8ECB9D3E22D * __this, const RuntimeMethod* method)
{
{
// public int rowStride { get; internal set; }
int32_t L_0 = __this->get_U3CrowStrideU3Ek__BackingField_0();
return L_0;
}
}
IL2CPP_EXTERN_C int32_t Plane_get_rowStride_mE6385B9F7D9D040FC613D16D859435F492CB213A_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
Plane_tF421A9F250A5E61AFEE38069538AC8ECB9D3E22D * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<Plane_tF421A9F250A5E61AFEE38069538AC8ECB9D3E22D *>(__this + _offset);
int32_t _returnValue;
_returnValue = Plane_get_rowStride_mE6385B9F7D9D040FC613D16D859435F492CB213A_inline(_thisAdjusted, method);
return _returnValue;
}
// System.Int32 UnityEngine.XR.ARSubsystems.XRCpuImage/Plane::get_pixelStride()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Plane_get_pixelStride_m33EEE46027B124683ABAF3BC627812F963F29665 (Plane_tF421A9F250A5E61AFEE38069538AC8ECB9D3E22D * __this, const RuntimeMethod* method)
{
{
// public int pixelStride { get; internal set; }
int32_t L_0 = __this->get_U3CpixelStrideU3Ek__BackingField_1();
return L_0;
}
}
IL2CPP_EXTERN_C int32_t Plane_get_pixelStride_m33EEE46027B124683ABAF3BC627812F963F29665_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
Plane_tF421A9F250A5E61AFEE38069538AC8ECB9D3E22D * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<Plane_tF421A9F250A5E61AFEE38069538AC8ECB9D3E22D *>(__this + _offset);
int32_t _returnValue;
_returnValue = Plane_get_pixelStride_m33EEE46027B124683ABAF3BC627812F963F29665_inline(_thisAdjusted, method);
return _returnValue;
}
// Unity.Collections.NativeArray`1<System.Byte> UnityEngine.XR.ARSubsystems.XRCpuImage/Plane::get_data()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NativeArray_1_t3C2855C5B238E8C6739D4C17833F244B95C0F785 Plane_get_data_mBA1EB2437E816B19D7A68440AE188F4E8543E108 (Plane_tF421A9F250A5E61AFEE38069538AC8ECB9D3E22D * __this, const RuntimeMethod* method)
{
{
// public NativeArray<byte> data { get; internal set; }
NativeArray_1_t3C2855C5B238E8C6739D4C17833F244B95C0F785 L_0 = __this->get_U3CdataU3Ek__BackingField_2();
return L_0;
}
}
IL2CPP_EXTERN_C NativeArray_1_t3C2855C5B238E8C6739D4C17833F244B95C0F785 Plane_get_data_mBA1EB2437E816B19D7A68440AE188F4E8543E108_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
Plane_tF421A9F250A5E61AFEE38069538AC8ECB9D3E22D * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<Plane_tF421A9F250A5E61AFEE38069538AC8ECB9D3E22D *>(__this + _offset);
NativeArray_1_t3C2855C5B238E8C6739D4C17833F244B95C0F785 _returnValue;
_returnValue = Plane_get_data_mBA1EB2437E816B19D7A68440AE188F4E8543E108_inline(_thisAdjusted, method);
return _returnValue;
}
// System.Int32 UnityEngine.XR.ARSubsystems.XRCpuImage/Plane::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Plane_GetHashCode_mE6FB9627754D042BCE94DA2672023FE03BE24C81 (Plane_tF421A9F250A5E61AFEE38069538AC8ECB9D3E22D * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NativeArray_1_GetHashCode_m13D81A3581866C33D8C9B13443F7342C9105EF98_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
NativeArray_1_t3C2855C5B238E8C6739D4C17833F244B95C0F785 V_0;
memset((&V_0), 0, sizeof(V_0));
int32_t V_1 = 0;
{
// public override int GetHashCode() => HashCode.Combine(
// data.GetHashCode(),
// rowStride.GetHashCode(),
// pixelStride.GetHashCode());
NativeArray_1_t3C2855C5B238E8C6739D4C17833F244B95C0F785 L_0;
L_0 = Plane_get_data_mBA1EB2437E816B19D7A68440AE188F4E8543E108_inline((Plane_tF421A9F250A5E61AFEE38069538AC8ECB9D3E22D *)__this, /*hidden argument*/NULL);
V_0 = L_0;
int32_t L_1;
L_1 = NativeArray_1_GetHashCode_m13D81A3581866C33D8C9B13443F7342C9105EF98((NativeArray_1_t3C2855C5B238E8C6739D4C17833F244B95C0F785 *)(&V_0), /*hidden argument*/NativeArray_1_GetHashCode_m13D81A3581866C33D8C9B13443F7342C9105EF98_RuntimeMethod_var);
int32_t L_2;
L_2 = Plane_get_rowStride_mE6385B9F7D9D040FC613D16D859435F492CB213A_inline((Plane_tF421A9F250A5E61AFEE38069538AC8ECB9D3E22D *)__this, /*hidden argument*/NULL);
V_1 = L_2;
int32_t L_3;
L_3 = Int32_GetHashCode_mEDD3F492A5F7CF021125AE3F38E2B8F8743FC667((int32_t*)(&V_1), /*hidden argument*/NULL);
int32_t L_4;
L_4 = Plane_get_pixelStride_m33EEE46027B124683ABAF3BC627812F963F29665_inline((Plane_tF421A9F250A5E61AFEE38069538AC8ECB9D3E22D *)__this, /*hidden argument*/NULL);
V_1 = L_4;
int32_t L_5;
L_5 = Int32_GetHashCode_mEDD3F492A5F7CF021125AE3F38E2B8F8743FC667((int32_t*)(&V_1), /*hidden argument*/NULL);
int32_t L_6;
L_6 = HashCode_Combine_m18C3D10955CD71D976A5200FB0F5531F2F1F6BE1(L_1, L_3, L_5, /*hidden argument*/NULL);
return L_6;
}
}
IL2CPP_EXTERN_C int32_t Plane_GetHashCode_mE6FB9627754D042BCE94DA2672023FE03BE24C81_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
Plane_tF421A9F250A5E61AFEE38069538AC8ECB9D3E22D * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<Plane_tF421A9F250A5E61AFEE38069538AC8ECB9D3E22D *>(__this + _offset);
int32_t _returnValue;
_returnValue = Plane_GetHashCode_mE6FB9627754D042BCE94DA2672023FE03BE24C81(_thisAdjusted, method);
return _returnValue;
}
// System.Boolean UnityEngine.XR.ARSubsystems.XRCpuImage/Plane::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Plane_Equals_mAAF552DA4142C484FFEBA4C30EC7F14111523D68 (Plane_tF421A9F250A5E61AFEE38069538AC8ECB9D3E22D * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Plane_tF421A9F250A5E61AFEE38069538AC8ECB9D3E22D_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
Plane_tF421A9F250A5E61AFEE38069538AC8ECB9D3E22D V_0;
memset((&V_0), 0, sizeof(V_0));
{
// public override bool Equals(object obj) => obj is Plane other && Equals(other);
RuntimeObject * L_0 = ___obj0;
if (!((RuntimeObject *)IsInstSealed((RuntimeObject*)L_0, Plane_tF421A9F250A5E61AFEE38069538AC8ECB9D3E22D_il2cpp_TypeInfo_var)))
{
goto IL_0017;
}
}
{
RuntimeObject * L_1 = ___obj0;
V_0 = ((*(Plane_tF421A9F250A5E61AFEE38069538AC8ECB9D3E22D *)((Plane_tF421A9F250A5E61AFEE38069538AC8ECB9D3E22D *)UnBox(L_1, Plane_tF421A9F250A5E61AFEE38069538AC8ECB9D3E22D_il2cpp_TypeInfo_var))));
Plane_tF421A9F250A5E61AFEE38069538AC8ECB9D3E22D L_2 = V_0;
bool L_3;
L_3 = Plane_Equals_mE56ABB7E1AE23CED9290A64F4B80D2FDC95AA7F6((Plane_tF421A9F250A5E61AFEE38069538AC8ECB9D3E22D *)__this, L_2, /*hidden argument*/NULL);
return L_3;
}
IL_0017:
{
return (bool)0;
}
}
IL2CPP_EXTERN_C bool Plane_Equals_mAAF552DA4142C484FFEBA4C30EC7F14111523D68_AdjustorThunk (RuntimeObject * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
Plane_tF421A9F250A5E61AFEE38069538AC8ECB9D3E22D * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<Plane_tF421A9F250A5E61AFEE38069538AC8ECB9D3E22D *>(__this + _offset);
bool _returnValue;
_returnValue = Plane_Equals_mAAF552DA4142C484FFEBA4C30EC7F14111523D68(_thisAdjusted, ___obj0, method);
return _returnValue;
}
// System.Boolean UnityEngine.XR.ARSubsystems.XRCpuImage/Plane::Equals(UnityEngine.XR.ARSubsystems.XRCpuImage/Plane)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Plane_Equals_mE56ABB7E1AE23CED9290A64F4B80D2FDC95AA7F6 (Plane_tF421A9F250A5E61AFEE38069538AC8ECB9D3E22D * __this, Plane_tF421A9F250A5E61AFEE38069538AC8ECB9D3E22D ___other0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NativeArray_1_Equals_mF60658EAFF21BD4AC0990C4C8944C20761F178DA_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
NativeArray_1_t3C2855C5B238E8C6739D4C17833F244B95C0F785 V_0;
memset((&V_0), 0, sizeof(V_0));
{
// (data.Equals(other.data)) &&
// (rowStride == other.rowStride) &&
// (pixelStride == other.pixelStride);
NativeArray_1_t3C2855C5B238E8C6739D4C17833F244B95C0F785 L_0;
L_0 = Plane_get_data_mBA1EB2437E816B19D7A68440AE188F4E8543E108_inline((Plane_tF421A9F250A5E61AFEE38069538AC8ECB9D3E22D *)__this, /*hidden argument*/NULL);
V_0 = L_0;
NativeArray_1_t3C2855C5B238E8C6739D4C17833F244B95C0F785 L_1;
L_1 = Plane_get_data_mBA1EB2437E816B19D7A68440AE188F4E8543E108_inline((Plane_tF421A9F250A5E61AFEE38069538AC8ECB9D3E22D *)(&___other0), /*hidden argument*/NULL);
bool L_2;
L_2 = NativeArray_1_Equals_mF60658EAFF21BD4AC0990C4C8944C20761F178DA((NativeArray_1_t3C2855C5B238E8C6739D4C17833F244B95C0F785 *)(&V_0), L_1, /*hidden argument*/NativeArray_1_Equals_mF60658EAFF21BD4AC0990C4C8944C20761F178DA_RuntimeMethod_var);
if (!L_2)
{
goto IL_0036;
}
}
{
int32_t L_3;
L_3 = Plane_get_rowStride_mE6385B9F7D9D040FC613D16D859435F492CB213A_inline((Plane_tF421A9F250A5E61AFEE38069538AC8ECB9D3E22D *)__this, /*hidden argument*/NULL);
int32_t L_4;
L_4 = Plane_get_rowStride_mE6385B9F7D9D040FC613D16D859435F492CB213A_inline((Plane_tF421A9F250A5E61AFEE38069538AC8ECB9D3E22D *)(&___other0), /*hidden argument*/NULL);
if ((!(((uint32_t)L_3) == ((uint32_t)L_4))))
{
goto IL_0036;
}
}
{
int32_t L_5;
L_5 = Plane_get_pixelStride_m33EEE46027B124683ABAF3BC627812F963F29665_inline((Plane_tF421A9F250A5E61AFEE38069538AC8ECB9D3E22D *)__this, /*hidden argument*/NULL);
int32_t L_6;
L_6 = Plane_get_pixelStride_m33EEE46027B124683ABAF3BC627812F963F29665_inline((Plane_tF421A9F250A5E61AFEE38069538AC8ECB9D3E22D *)(&___other0), /*hidden argument*/NULL);
return (bool)((((int32_t)L_5) == ((int32_t)L_6))? 1 : 0);
}
IL_0036:
{
return (bool)0;
}
}
IL2CPP_EXTERN_C bool Plane_Equals_mE56ABB7E1AE23CED9290A64F4B80D2FDC95AA7F6_AdjustorThunk (RuntimeObject * __this, Plane_tF421A9F250A5E61AFEE38069538AC8ECB9D3E22D ___other0, const RuntimeMethod* method)
{
Plane_tF421A9F250A5E61AFEE38069538AC8ECB9D3E22D * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<Plane_tF421A9F250A5E61AFEE38069538AC8ECB9D3E22D *>(__this + _offset);
bool _returnValue;
_returnValue = Plane_Equals_mE56ABB7E1AE23CED9290A64F4B80D2FDC95AA7F6(_thisAdjusted, ___other0, method);
return _returnValue;
}
// System.String UnityEngine.XR.ARSubsystems.XRCpuImage/Plane::ToString()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Plane_ToString_mDCB0EECF9BB9652F5E5BA2B36F51F1E4CF334238 (Plane_tF421A9F250A5E61AFEE38069538AC8ECB9D3E22D * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral1C244789BBF6C19E5126D1D3DC6898E243F24F51);
s_Il2CppMethodInitialized = true;
}
NativeArray_1_t3C2855C5B238E8C6739D4C17833F244B95C0F785 V_0;
memset((&V_0), 0, sizeof(V_0));
{
// public override string ToString() => $"({data.Length} bytes, Row Stride: {rowStride}, Pixel Stride: {pixelStride})";
NativeArray_1_t3C2855C5B238E8C6739D4C17833F244B95C0F785 L_0;
L_0 = Plane_get_data_mBA1EB2437E816B19D7A68440AE188F4E8543E108_inline((Plane_tF421A9F250A5E61AFEE38069538AC8ECB9D3E22D *)__this, /*hidden argument*/NULL);
V_0 = L_0;
int32_t L_1;
L_1 = IL2CPP_NATIVEARRAY_GET_LENGTH(((NativeArray_1_t3C2855C5B238E8C6739D4C17833F244B95C0F785 *)(&V_0))->___m_Length_1);
int32_t L_2 = L_1;
RuntimeObject * L_3 = Box(Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var, &L_2);
int32_t L_4;
L_4 = Plane_get_rowStride_mE6385B9F7D9D040FC613D16D859435F492CB213A_inline((Plane_tF421A9F250A5E61AFEE38069538AC8ECB9D3E22D *)__this, /*hidden argument*/NULL);
int32_t L_5 = L_4;
RuntimeObject * L_6 = Box(Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var, &L_5);
int32_t L_7;
L_7 = Plane_get_pixelStride_m33EEE46027B124683ABAF3BC627812F963F29665_inline((Plane_tF421A9F250A5E61AFEE38069538AC8ECB9D3E22D *)__this, /*hidden argument*/NULL);
int32_t L_8 = L_7;
RuntimeObject * L_9 = Box(Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var, &L_8);
String_t* L_10;
L_10 = String_Format_m039737CCD992C5BFC8D16DFD681F5E8786E87FA6(_stringLiteral1C244789BBF6C19E5126D1D3DC6898E243F24F51, L_3, L_6, L_9, /*hidden argument*/NULL);
return L_10;
}
}
IL2CPP_EXTERN_C String_t* Plane_ToString_mDCB0EECF9BB9652F5E5BA2B36F51F1E4CF334238_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
Plane_tF421A9F250A5E61AFEE38069538AC8ECB9D3E22D * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<Plane_tF421A9F250A5E61AFEE38069538AC8ECB9D3E22D *>(__this + _offset);
String_t* _returnValue;
_returnValue = Plane_ToString_mDCB0EECF9BB9652F5E5BA2B36F51F1E4CF334238(_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
#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
// System.Void UnityEngine.XR.ARSubsystems.XRDepthSubsystem/Provider::Start()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Provider_Start_mCFBE8FADD9A70911E16A985BA4CFE55A5D305F97 (Provider_t8E88C17A70269CD3E96909AFCCA952AAA7DEC0B6 * __this, const RuntimeMethod* method)
{
{
// public override void Start() { }
return;
}
}
// System.Void UnityEngine.XR.ARSubsystems.XRDepthSubsystem/Provider::Stop()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Provider_Stop_mE83290B18BBF745A739EFBB8985EE8F6F9ACEF79 (Provider_t8E88C17A70269CD3E96909AFCCA952AAA7DEC0B6 * __this, const RuntimeMethod* method)
{
{
// public override void Stop() { }
return;
}
}
// System.Void UnityEngine.XR.ARSubsystems.XRDepthSubsystem/Provider::Destroy()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Provider_Destroy_m4594AD5BE5A869ECEDF56161272A18E5182B4E58 (Provider_t8E88C17A70269CD3E96909AFCCA952AAA7DEC0B6 * __this, const RuntimeMethod* method)
{
{
// public override void Destroy() { }
return;
}
}
// System.Void UnityEngine.XR.ARSubsystems.XRDepthSubsystem/Provider::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Provider__ctor_m1A368071CFCB91BC39B9760441A777FE20F86A57 (Provider_t8E88C17A70269CD3E96909AFCCA952AAA7DEC0B6 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SubsystemProvider_1__ctor_m679358E7941E7FEBDCED0CC52E860E237B09BDE0_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
SubsystemProvider_1__ctor_m679358E7941E7FEBDCED0CC52E860E237B09BDE0(__this, /*hidden argument*/SubsystemProvider_1__ctor_m679358E7941E7FEBDCED0CC52E860E237B09BDE0_RuntimeMethod_var);
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
// Conversion methods for marshalling of: UnityEngine.XR.ARSubsystems.XRDepthSubsystemDescriptor/Cinfo
IL2CPP_EXTERN_C void Cinfo_t37F91E88FCD8623834BE1898FC146620538C08B1_marshal_pinvoke(const Cinfo_t37F91E88FCD8623834BE1898FC146620538C08B1& unmarshaled, Cinfo_t37F91E88FCD8623834BE1898FC146620538C08B1_marshaled_pinvoke& marshaled)
{
Exception_t* ___U3CproviderTypeU3Ek__BackingField_1Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field '<providerType>k__BackingField' of type 'Cinfo': Reference type field marshaling is not supported.");
IL2CPP_RAISE_MANAGED_EXCEPTION(___U3CproviderTypeU3Ek__BackingField_1Exception, NULL);
}
IL2CPP_EXTERN_C void Cinfo_t37F91E88FCD8623834BE1898FC146620538C08B1_marshal_pinvoke_back(const Cinfo_t37F91E88FCD8623834BE1898FC146620538C08B1_marshaled_pinvoke& marshaled, Cinfo_t37F91E88FCD8623834BE1898FC146620538C08B1& unmarshaled)
{
Exception_t* ___U3CproviderTypeU3Ek__BackingField_1Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field '<providerType>k__BackingField' of type 'Cinfo': Reference type field marshaling is not supported.");
IL2CPP_RAISE_MANAGED_EXCEPTION(___U3CproviderTypeU3Ek__BackingField_1Exception, NULL);
}
// Conversion method for clean up from marshalling of: UnityEngine.XR.ARSubsystems.XRDepthSubsystemDescriptor/Cinfo
IL2CPP_EXTERN_C void Cinfo_t37F91E88FCD8623834BE1898FC146620538C08B1_marshal_pinvoke_cleanup(Cinfo_t37F91E88FCD8623834BE1898FC146620538C08B1_marshaled_pinvoke& marshaled)
{
}
// Conversion methods for marshalling of: UnityEngine.XR.ARSubsystems.XRDepthSubsystemDescriptor/Cinfo
IL2CPP_EXTERN_C void Cinfo_t37F91E88FCD8623834BE1898FC146620538C08B1_marshal_com(const Cinfo_t37F91E88FCD8623834BE1898FC146620538C08B1& unmarshaled, Cinfo_t37F91E88FCD8623834BE1898FC146620538C08B1_marshaled_com& marshaled)
{
Exception_t* ___U3CproviderTypeU3Ek__BackingField_1Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field '<providerType>k__BackingField' of type 'Cinfo': Reference type field marshaling is not supported.");
IL2CPP_RAISE_MANAGED_EXCEPTION(___U3CproviderTypeU3Ek__BackingField_1Exception, NULL);
}
IL2CPP_EXTERN_C void Cinfo_t37F91E88FCD8623834BE1898FC146620538C08B1_marshal_com_back(const Cinfo_t37F91E88FCD8623834BE1898FC146620538C08B1_marshaled_com& marshaled, Cinfo_t37F91E88FCD8623834BE1898FC146620538C08B1& unmarshaled)
{
Exception_t* ___U3CproviderTypeU3Ek__BackingField_1Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field '<providerType>k__BackingField' of type 'Cinfo': Reference type field marshaling is not supported.");
IL2CPP_RAISE_MANAGED_EXCEPTION(___U3CproviderTypeU3Ek__BackingField_1Exception, NULL);
}
// Conversion method for clean up from marshalling of: UnityEngine.XR.ARSubsystems.XRDepthSubsystemDescriptor/Cinfo
IL2CPP_EXTERN_C void Cinfo_t37F91E88FCD8623834BE1898FC146620538C08B1_marshal_com_cleanup(Cinfo_t37F91E88FCD8623834BE1898FC146620538C08B1_marshaled_com& marshaled)
{
}
// System.Type UnityEngine.XR.ARSubsystems.XRDepthSubsystemDescriptor/Cinfo::get_providerType()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t * Cinfo_get_providerType_m7168F2BEAB1E7D53C4A1308A0BE686CB6ACAC37D (Cinfo_t37F91E88FCD8623834BE1898FC146620538C08B1 * __this, const RuntimeMethod* method)
{
{
// public Type providerType { get; set; }
Type_t * L_0 = __this->get_U3CproviderTypeU3Ek__BackingField_1();
return L_0;
}
}
IL2CPP_EXTERN_C Type_t * Cinfo_get_providerType_m7168F2BEAB1E7D53C4A1308A0BE686CB6ACAC37D_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
Cinfo_t37F91E88FCD8623834BE1898FC146620538C08B1 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<Cinfo_t37F91E88FCD8623834BE1898FC146620538C08B1 *>(__this + _offset);
Type_t * _returnValue;
_returnValue = Cinfo_get_providerType_m7168F2BEAB1E7D53C4A1308A0BE686CB6ACAC37D_inline(_thisAdjusted, method);
return _returnValue;
}
// System.Void UnityEngine.XR.ARSubsystems.XRDepthSubsystemDescriptor/Cinfo::set_providerType(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Cinfo_set_providerType_m79B371C14F188233806BAB677302143650CD9A29 (Cinfo_t37F91E88FCD8623834BE1898FC146620538C08B1 * __this, Type_t * ___value0, const RuntimeMethod* method)
{
{
// public Type providerType { get; set; }
Type_t * L_0 = ___value0;
__this->set_U3CproviderTypeU3Ek__BackingField_1(L_0);
return;
}
}
IL2CPP_EXTERN_C void Cinfo_set_providerType_m79B371C14F188233806BAB677302143650CD9A29_AdjustorThunk (RuntimeObject * __this, Type_t * ___value0, const RuntimeMethod* method)
{
Cinfo_t37F91E88FCD8623834BE1898FC146620538C08B1 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<Cinfo_t37F91E88FCD8623834BE1898FC146620538C08B1 *>(__this + _offset);
Cinfo_set_providerType_m79B371C14F188233806BAB677302143650CD9A29_inline(_thisAdjusted, ___value0, method);
}
// System.Type UnityEngine.XR.ARSubsystems.XRDepthSubsystemDescriptor/Cinfo::get_subsystemTypeOverride()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t * Cinfo_get_subsystemTypeOverride_mA17A612B4FB9125843E254DB825177C3B1834235 (Cinfo_t37F91E88FCD8623834BE1898FC146620538C08B1 * __this, const RuntimeMethod* method)
{
{
// public Type subsystemTypeOverride { get; set; }
Type_t * L_0 = __this->get_U3CsubsystemTypeOverrideU3Ek__BackingField_2();
return L_0;
}
}
IL2CPP_EXTERN_C Type_t * Cinfo_get_subsystemTypeOverride_mA17A612B4FB9125843E254DB825177C3B1834235_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
Cinfo_t37F91E88FCD8623834BE1898FC146620538C08B1 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<Cinfo_t37F91E88FCD8623834BE1898FC146620538C08B1 *>(__this + _offset);
Type_t * _returnValue;
_returnValue = Cinfo_get_subsystemTypeOverride_mA17A612B4FB9125843E254DB825177C3B1834235_inline(_thisAdjusted, method);
return _returnValue;
}
// System.Void UnityEngine.XR.ARSubsystems.XRDepthSubsystemDescriptor/Cinfo::set_subsystemTypeOverride(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Cinfo_set_subsystemTypeOverride_mEF323B6CBB63FB7E5ECB4A6849F06C57BFDF8120 (Cinfo_t37F91E88FCD8623834BE1898FC146620538C08B1 * __this, Type_t * ___value0, const RuntimeMethod* method)
{
{
// public Type subsystemTypeOverride { get; set; }
Type_t * L_0 = ___value0;
__this->set_U3CsubsystemTypeOverrideU3Ek__BackingField_2(L_0);
return;
}
}
IL2CPP_EXTERN_C void Cinfo_set_subsystemTypeOverride_mEF323B6CBB63FB7E5ECB4A6849F06C57BFDF8120_AdjustorThunk (RuntimeObject * __this, Type_t * ___value0, const RuntimeMethod* method)
{
Cinfo_t37F91E88FCD8623834BE1898FC146620538C08B1 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<Cinfo_t37F91E88FCD8623834BE1898FC146620538C08B1 *>(__this + _offset);
Cinfo_set_subsystemTypeOverride_mEF323B6CBB63FB7E5ECB4A6849F06C57BFDF8120_inline(_thisAdjusted, ___value0, method);
}
// System.Boolean UnityEngine.XR.ARSubsystems.XRDepthSubsystemDescriptor/Cinfo::get_supportsFeaturePoints()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Cinfo_get_supportsFeaturePoints_mAE8F24562D2A19594A5AB98BDA0FC1C35730B5BA (Cinfo_t37F91E88FCD8623834BE1898FC146620538C08B1 * __this, const RuntimeMethod* method)
{
{
// get => (capabilities & Capabilities.FeaturePoints) != 0;
int32_t L_0;
L_0 = Cinfo_get_capabilities_m09C807B048E192438A9B0D0C17808FF5BFF81A8A_inline((Cinfo_t37F91E88FCD8623834BE1898FC146620538C08B1 *)__this, /*hidden argument*/NULL);
return (bool)((!(((uint32_t)((int32_t)((int32_t)L_0&(int32_t)1))) <= ((uint32_t)0)))? 1 : 0);
}
}
IL2CPP_EXTERN_C bool Cinfo_get_supportsFeaturePoints_mAE8F24562D2A19594A5AB98BDA0FC1C35730B5BA_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
Cinfo_t37F91E88FCD8623834BE1898FC146620538C08B1 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<Cinfo_t37F91E88FCD8623834BE1898FC146620538C08B1 *>(__this + _offset);
bool _returnValue;
_returnValue = Cinfo_get_supportsFeaturePoints_mAE8F24562D2A19594A5AB98BDA0FC1C35730B5BA(_thisAdjusted, method);
return _returnValue;
}
// System.Void UnityEngine.XR.ARSubsystems.XRDepthSubsystemDescriptor/Cinfo::set_supportsFeaturePoints(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Cinfo_set_supportsFeaturePoints_mD44DBE0A79D63D3234369E573653A81DC7FB8E1D (Cinfo_t37F91E88FCD8623834BE1898FC146620538C08B1 * __this, bool ___value0, const RuntimeMethod* method)
{
{
// if (value)
bool L_0 = ___value0;
if (!L_0)
{
goto IL_0012;
}
}
{
// capabilities |= Capabilities.FeaturePoints;
int32_t L_1;
L_1 = Cinfo_get_capabilities_m09C807B048E192438A9B0D0C17808FF5BFF81A8A_inline((Cinfo_t37F91E88FCD8623834BE1898FC146620538C08B1 *)__this, /*hidden argument*/NULL);
Cinfo_set_capabilities_mB2A17E458179A44C2EACB82699FBC5B5611C7580_inline((Cinfo_t37F91E88FCD8623834BE1898FC146620538C08B1 *)__this, ((int32_t)((int32_t)L_1|(int32_t)1)), /*hidden argument*/NULL);
// }
return;
}
IL_0012:
{
// capabilities &= ~Capabilities.FeaturePoints;
int32_t L_2;
L_2 = Cinfo_get_capabilities_m09C807B048E192438A9B0D0C17808FF5BFF81A8A_inline((Cinfo_t37F91E88FCD8623834BE1898FC146620538C08B1 *)__this, /*hidden argument*/NULL);
Cinfo_set_capabilities_mB2A17E458179A44C2EACB82699FBC5B5611C7580_inline((Cinfo_t37F91E88FCD8623834BE1898FC146620538C08B1 *)__this, ((int32_t)((int32_t)L_2&(int32_t)((int32_t)-2))), /*hidden argument*/NULL);
// }
return;
}
}
IL2CPP_EXTERN_C void Cinfo_set_supportsFeaturePoints_mD44DBE0A79D63D3234369E573653A81DC7FB8E1D_AdjustorThunk (RuntimeObject * __this, bool ___value0, const RuntimeMethod* method)
{
Cinfo_t37F91E88FCD8623834BE1898FC146620538C08B1 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<Cinfo_t37F91E88FCD8623834BE1898FC146620538C08B1 *>(__this + _offset);
Cinfo_set_supportsFeaturePoints_mD44DBE0A79D63D3234369E573653A81DC7FB8E1D(_thisAdjusted, ___value0, method);
}
// System.Boolean UnityEngine.XR.ARSubsystems.XRDepthSubsystemDescriptor/Cinfo::get_supportsConfidence()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Cinfo_get_supportsConfidence_m483E36BDB283478D5E1F6F6F3C96A279EB6DE01A (Cinfo_t37F91E88FCD8623834BE1898FC146620538C08B1 * __this, const RuntimeMethod* method)
{
{
// get => (capabilities & Capabilities.Confidence) != 0;
int32_t L_0;
L_0 = Cinfo_get_capabilities_m09C807B048E192438A9B0D0C17808FF5BFF81A8A_inline((Cinfo_t37F91E88FCD8623834BE1898FC146620538C08B1 *)__this, /*hidden argument*/NULL);
return (bool)((!(((uint32_t)((int32_t)((int32_t)L_0&(int32_t)2))) <= ((uint32_t)0)))? 1 : 0);
}
}
IL2CPP_EXTERN_C bool Cinfo_get_supportsConfidence_m483E36BDB283478D5E1F6F6F3C96A279EB6DE01A_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
Cinfo_t37F91E88FCD8623834BE1898FC146620538C08B1 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<Cinfo_t37F91E88FCD8623834BE1898FC146620538C08B1 *>(__this + _offset);
bool _returnValue;
_returnValue = Cinfo_get_supportsConfidence_m483E36BDB283478D5E1F6F6F3C96A279EB6DE01A(_thisAdjusted, method);
return _returnValue;
}
// System.Void UnityEngine.XR.ARSubsystems.XRDepthSubsystemDescriptor/Cinfo::set_supportsConfidence(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Cinfo_set_supportsConfidence_m78F76CAAFD5D667ADBED1580E1F8A1286B59C46D (Cinfo_t37F91E88FCD8623834BE1898FC146620538C08B1 * __this, bool ___value0, const RuntimeMethod* method)
{
{
// if (value)
bool L_0 = ___value0;
if (!L_0)
{
goto IL_0012;
}
}
{
// capabilities |= Capabilities.Confidence;
int32_t L_1;
L_1 = Cinfo_get_capabilities_m09C807B048E192438A9B0D0C17808FF5BFF81A8A_inline((Cinfo_t37F91E88FCD8623834BE1898FC146620538C08B1 *)__this, /*hidden argument*/NULL);
Cinfo_set_capabilities_mB2A17E458179A44C2EACB82699FBC5B5611C7580_inline((Cinfo_t37F91E88FCD8623834BE1898FC146620538C08B1 *)__this, ((int32_t)((int32_t)L_1|(int32_t)2)), /*hidden argument*/NULL);
// }
return;
}
IL_0012:
{
// capabilities &= ~Capabilities.Confidence;
int32_t L_2;
L_2 = Cinfo_get_capabilities_m09C807B048E192438A9B0D0C17808FF5BFF81A8A_inline((Cinfo_t37F91E88FCD8623834BE1898FC146620538C08B1 *)__this, /*hidden argument*/NULL);
Cinfo_set_capabilities_mB2A17E458179A44C2EACB82699FBC5B5611C7580_inline((Cinfo_t37F91E88FCD8623834BE1898FC146620538C08B1 *)__this, ((int32_t)((int32_t)L_2&(int32_t)((int32_t)-3))), /*hidden argument*/NULL);
// }
return;
}
}
IL2CPP_EXTERN_C void Cinfo_set_supportsConfidence_m78F76CAAFD5D667ADBED1580E1F8A1286B59C46D_AdjustorThunk (RuntimeObject * __this, bool ___value0, const RuntimeMethod* method)
{
Cinfo_t37F91E88FCD8623834BE1898FC146620538C08B1 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<Cinfo_t37F91E88FCD8623834BE1898FC146620538C08B1 *>(__this + _offset);
Cinfo_set_supportsConfidence_m78F76CAAFD5D667ADBED1580E1F8A1286B59C46D(_thisAdjusted, ___value0, method);
}
// System.Boolean UnityEngine.XR.ARSubsystems.XRDepthSubsystemDescriptor/Cinfo::get_supportsUniqueIds()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Cinfo_get_supportsUniqueIds_m6A1B72F6B917B3B001388027A7324A84146E5B7F (Cinfo_t37F91E88FCD8623834BE1898FC146620538C08B1 * __this, const RuntimeMethod* method)
{
{
// get => (capabilities & Capabilities.UniqueIds) != 0;
int32_t L_0;
L_0 = Cinfo_get_capabilities_m09C807B048E192438A9B0D0C17808FF5BFF81A8A_inline((Cinfo_t37F91E88FCD8623834BE1898FC146620538C08B1 *)__this, /*hidden argument*/NULL);
return (bool)((!(((uint32_t)((int32_t)((int32_t)L_0&(int32_t)4))) <= ((uint32_t)0)))? 1 : 0);
}
}
IL2CPP_EXTERN_C bool Cinfo_get_supportsUniqueIds_m6A1B72F6B917B3B001388027A7324A84146E5B7F_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
Cinfo_t37F91E88FCD8623834BE1898FC146620538C08B1 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<Cinfo_t37F91E88FCD8623834BE1898FC146620538C08B1 *>(__this + _offset);
bool _returnValue;
_returnValue = Cinfo_get_supportsUniqueIds_m6A1B72F6B917B3B001388027A7324A84146E5B7F(_thisAdjusted, method);
return _returnValue;
}
// System.Void UnityEngine.XR.ARSubsystems.XRDepthSubsystemDescriptor/Cinfo::set_supportsUniqueIds(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Cinfo_set_supportsUniqueIds_mFF68A678A13F7C1BD9E157690649255A27369514 (Cinfo_t37F91E88FCD8623834BE1898FC146620538C08B1 * __this, bool ___value0, const RuntimeMethod* method)
{
{
// if (value)
bool L_0 = ___value0;
if (!L_0)
{
goto IL_0012;
}
}
{
// capabilities |= Capabilities.UniqueIds;
int32_t L_1;
L_1 = Cinfo_get_capabilities_m09C807B048E192438A9B0D0C17808FF5BFF81A8A_inline((Cinfo_t37F91E88FCD8623834BE1898FC146620538C08B1 *)__this, /*hidden argument*/NULL);
Cinfo_set_capabilities_mB2A17E458179A44C2EACB82699FBC5B5611C7580_inline((Cinfo_t37F91E88FCD8623834BE1898FC146620538C08B1 *)__this, ((int32_t)((int32_t)L_1|(int32_t)4)), /*hidden argument*/NULL);
// }
return;
}
IL_0012:
{
// capabilities &= ~Capabilities.UniqueIds;
int32_t L_2;
L_2 = Cinfo_get_capabilities_m09C807B048E192438A9B0D0C17808FF5BFF81A8A_inline((Cinfo_t37F91E88FCD8623834BE1898FC146620538C08B1 *)__this, /*hidden argument*/NULL);
Cinfo_set_capabilities_mB2A17E458179A44C2EACB82699FBC5B5611C7580_inline((Cinfo_t37F91E88FCD8623834BE1898FC146620538C08B1 *)__this, ((int32_t)((int32_t)L_2&(int32_t)((int32_t)-5))), /*hidden argument*/NULL);
// }
return;
}
}
IL2CPP_EXTERN_C void Cinfo_set_supportsUniqueIds_mFF68A678A13F7C1BD9E157690649255A27369514_AdjustorThunk (RuntimeObject * __this, bool ___value0, const RuntimeMethod* method)
{
Cinfo_t37F91E88FCD8623834BE1898FC146620538C08B1 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<Cinfo_t37F91E88FCD8623834BE1898FC146620538C08B1 *>(__this + _offset);
Cinfo_set_supportsUniqueIds_mFF68A678A13F7C1BD9E157690649255A27369514(_thisAdjusted, ___value0, method);
}
// UnityEngine.XR.ARSubsystems.XRDepthSubsystemDescriptor/Capabilities UnityEngine.XR.ARSubsystems.XRDepthSubsystemDescriptor/Cinfo::get_capabilities()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Cinfo_get_capabilities_m09C807B048E192438A9B0D0C17808FF5BFF81A8A (Cinfo_t37F91E88FCD8623834BE1898FC146620538C08B1 * __this, const RuntimeMethod* method)
{
{
// Capabilities capabilities { get; set; }
int32_t L_0 = __this->get_U3CcapabilitiesU3Ek__BackingField_4();
return L_0;
}
}
IL2CPP_EXTERN_C int32_t Cinfo_get_capabilities_m09C807B048E192438A9B0D0C17808FF5BFF81A8A_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
Cinfo_t37F91E88FCD8623834BE1898FC146620538C08B1 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<Cinfo_t37F91E88FCD8623834BE1898FC146620538C08B1 *>(__this + _offset);
int32_t _returnValue;
_returnValue = Cinfo_get_capabilities_m09C807B048E192438A9B0D0C17808FF5BFF81A8A_inline(_thisAdjusted, method);
return _returnValue;
}
// System.Void UnityEngine.XR.ARSubsystems.XRDepthSubsystemDescriptor/Cinfo::set_capabilities(UnityEngine.XR.ARSubsystems.XRDepthSubsystemDescriptor/Capabilities)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Cinfo_set_capabilities_mB2A17E458179A44C2EACB82699FBC5B5611C7580 (Cinfo_t37F91E88FCD8623834BE1898FC146620538C08B1 * __this, int32_t ___value0, const RuntimeMethod* method)
{
{
// Capabilities capabilities { get; set; }
int32_t L_0 = ___value0;
__this->set_U3CcapabilitiesU3Ek__BackingField_4(L_0);
return;
}
}
IL2CPP_EXTERN_C void Cinfo_set_capabilities_mB2A17E458179A44C2EACB82699FBC5B5611C7580_AdjustorThunk (RuntimeObject * __this, int32_t ___value0, const RuntimeMethod* method)
{
Cinfo_t37F91E88FCD8623834BE1898FC146620538C08B1 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<Cinfo_t37F91E88FCD8623834BE1898FC146620538C08B1 *>(__this + _offset);
Cinfo_set_capabilities_mB2A17E458179A44C2EACB82699FBC5B5611C7580_inline(_thisAdjusted, ___value0, method);
}
// System.Boolean UnityEngine.XR.ARSubsystems.XRDepthSubsystemDescriptor/Cinfo::Equals(UnityEngine.XR.ARSubsystems.XRDepthSubsystemDescriptor/Cinfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Cinfo_Equals_m560240A9ABB2B3E0C71D2EF694812209060F7781 (Cinfo_t37F91E88FCD8623834BE1898FC146620538C08B1 * __this, Cinfo_t37F91E88FCD8623834BE1898FC146620538C08B1 ___other0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
// return
// capabilities == other.capabilities &&
// id == other.id &&
// #if UNITY_2020_2_OR_NEWER
// providerType == other.providerType &&
// subsystemTypeOverride == other.subsystemTypeOverride;
int32_t L_0;
L_0 = Cinfo_get_capabilities_m09C807B048E192438A9B0D0C17808FF5BFF81A8A_inline((Cinfo_t37F91E88FCD8623834BE1898FC146620538C08B1 *)__this, /*hidden argument*/NULL);
int32_t L_1;
L_1 = Cinfo_get_capabilities_m09C807B048E192438A9B0D0C17808FF5BFF81A8A_inline((Cinfo_t37F91E88FCD8623834BE1898FC146620538C08B1 *)(&___other0), /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) == ((uint32_t)L_1))))
{
goto IL_0049;
}
}
{
String_t* L_2 = __this->get_id_0();
Cinfo_t37F91E88FCD8623834BE1898FC146620538C08B1 L_3 = ___other0;
String_t* L_4 = L_3.get_id_0();
bool L_5;
L_5 = String_op_Equality_m2B91EE68355F142F67095973D32EB5828B7B73CB(L_2, L_4, /*hidden argument*/NULL);
if (!L_5)
{
goto IL_0049;
}
}
{
Type_t * L_6;
L_6 = Cinfo_get_providerType_m7168F2BEAB1E7D53C4A1308A0BE686CB6ACAC37D_inline((Cinfo_t37F91E88FCD8623834BE1898FC146620538C08B1 *)__this, /*hidden argument*/NULL);
Type_t * L_7;
L_7 = Cinfo_get_providerType_m7168F2BEAB1E7D53C4A1308A0BE686CB6ACAC37D_inline((Cinfo_t37F91E88FCD8623834BE1898FC146620538C08B1 *)(&___other0), /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
bool L_8;
L_8 = Type_op_Equality_mA438719A1FDF103C7BBBB08AEF564E7FAEEA0046(L_6, L_7, /*hidden argument*/NULL);
if (!L_8)
{
goto IL_0049;
}
}
{
Type_t * L_9;
L_9 = Cinfo_get_subsystemTypeOverride_mA17A612B4FB9125843E254DB825177C3B1834235_inline((Cinfo_t37F91E88FCD8623834BE1898FC146620538C08B1 *)__this, /*hidden argument*/NULL);
Type_t * L_10;
L_10 = Cinfo_get_subsystemTypeOverride_mA17A612B4FB9125843E254DB825177C3B1834235_inline((Cinfo_t37F91E88FCD8623834BE1898FC146620538C08B1 *)(&___other0), /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
bool L_11;
L_11 = Type_op_Equality_mA438719A1FDF103C7BBBB08AEF564E7FAEEA0046(L_9, L_10, /*hidden argument*/NULL);
return L_11;
}
IL_0049:
{
return (bool)0;
}
}
IL2CPP_EXTERN_C bool Cinfo_Equals_m560240A9ABB2B3E0C71D2EF694812209060F7781_AdjustorThunk (RuntimeObject * __this, Cinfo_t37F91E88FCD8623834BE1898FC146620538C08B1 ___other0, const RuntimeMethod* method)
{
Cinfo_t37F91E88FCD8623834BE1898FC146620538C08B1 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<Cinfo_t37F91E88FCD8623834BE1898FC146620538C08B1 *>(__this + _offset);
bool _returnValue;
_returnValue = Cinfo_Equals_m560240A9ABB2B3E0C71D2EF694812209060F7781(_thisAdjusted, ___other0, method);
return _returnValue;
}
// System.Boolean UnityEngine.XR.ARSubsystems.XRDepthSubsystemDescriptor/Cinfo::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Cinfo_Equals_m1FFC7731C8021381A825E2D56189CDCD1BC39FD1 (Cinfo_t37F91E88FCD8623834BE1898FC146620538C08B1 * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Cinfo_t37F91E88FCD8623834BE1898FC146620538C08B1_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
// public override bool Equals(object obj) => (obj is Cinfo) && Equals((Cinfo)obj);
RuntimeObject * L_0 = ___obj0;
if (!((RuntimeObject *)IsInstSealed((RuntimeObject*)L_0, Cinfo_t37F91E88FCD8623834BE1898FC146620538C08B1_il2cpp_TypeInfo_var)))
{
goto IL_0015;
}
}
{
RuntimeObject * L_1 = ___obj0;
bool L_2;
L_2 = Cinfo_Equals_m560240A9ABB2B3E0C71D2EF694812209060F7781((Cinfo_t37F91E88FCD8623834BE1898FC146620538C08B1 *)__this, ((*(Cinfo_t37F91E88FCD8623834BE1898FC146620538C08B1 *)((Cinfo_t37F91E88FCD8623834BE1898FC146620538C08B1 *)UnBox(L_1, Cinfo_t37F91E88FCD8623834BE1898FC146620538C08B1_il2cpp_TypeInfo_var)))), /*hidden argument*/NULL);
return L_2;
}
IL_0015:
{
return (bool)0;
}
}
IL2CPP_EXTERN_C bool Cinfo_Equals_m1FFC7731C8021381A825E2D56189CDCD1BC39FD1_AdjustorThunk (RuntimeObject * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
Cinfo_t37F91E88FCD8623834BE1898FC146620538C08B1 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<Cinfo_t37F91E88FCD8623834BE1898FC146620538C08B1 *>(__this + _offset);
bool _returnValue;
_returnValue = Cinfo_Equals_m1FFC7731C8021381A825E2D56189CDCD1BC39FD1(_thisAdjusted, ___obj0, method);
return _returnValue;
}
// System.Int32 UnityEngine.XR.ARSubsystems.XRDepthSubsystemDescriptor/Cinfo::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Cinfo_GetHashCode_m93DAAACF242CBA5B8EE758CE4E04BCCF51639860 (Cinfo_t37F91E88FCD8623834BE1898FC146620538C08B1 * __this, const RuntimeMethod* method)
{
int32_t V_0 = 0;
int32_t V_1 = 0;
{
// int hashCode = HashCode.ReferenceHash(id);
String_t* L_0 = __this->get_id_0();
int32_t L_1;
L_1 = HashCode_ReferenceHash_mE6CC6EA3C87D9F040876D66CF582D6FF68FC359C(L_0, /*hidden argument*/NULL);
V_0 = L_1;
// hashCode = 486187739 * hashCode + HashCode.ReferenceHash(providerType);
int32_t L_2 = V_0;
Type_t * L_3;
L_3 = Cinfo_get_providerType_m7168F2BEAB1E7D53C4A1308A0BE686CB6ACAC37D_inline((Cinfo_t37F91E88FCD8623834BE1898FC146620538C08B1 *)__this, /*hidden argument*/NULL);
int32_t L_4;
L_4 = HashCode_ReferenceHash_mE6CC6EA3C87D9F040876D66CF582D6FF68FC359C(L_3, /*hidden argument*/NULL);
V_0 = ((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)((int32_t)486187739), (int32_t)L_2)), (int32_t)L_4));
// hashCode = 486187739 * hashCode + HashCode.ReferenceHash(subsystemTypeOverride);
int32_t L_5 = V_0;
Type_t * L_6;
L_6 = Cinfo_get_subsystemTypeOverride_mA17A612B4FB9125843E254DB825177C3B1834235_inline((Cinfo_t37F91E88FCD8623834BE1898FC146620538C08B1 *)__this, /*hidden argument*/NULL);
int32_t L_7;
L_7 = HashCode_ReferenceHash_mE6CC6EA3C87D9F040876D66CF582D6FF68FC359C(L_6, /*hidden argument*/NULL);
V_0 = ((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)((int32_t)486187739), (int32_t)L_5)), (int32_t)L_7));
// hashCode = 486187739 * hashCode + ((int)capabilities).GetHashCode();
int32_t L_8 = V_0;
int32_t L_9;
L_9 = Cinfo_get_capabilities_m09C807B048E192438A9B0D0C17808FF5BFF81A8A_inline((Cinfo_t37F91E88FCD8623834BE1898FC146620538C08B1 *)__this, /*hidden argument*/NULL);
V_1 = L_9;
int32_t L_10;
L_10 = Int32_GetHashCode_mEDD3F492A5F7CF021125AE3F38E2B8F8743FC667((int32_t*)(&V_1), /*hidden argument*/NULL);
V_0 = ((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)((int32_t)486187739), (int32_t)L_8)), (int32_t)L_10));
// return hashCode;
int32_t L_11 = V_0;
return L_11;
}
}
IL2CPP_EXTERN_C int32_t Cinfo_GetHashCode_m93DAAACF242CBA5B8EE758CE4E04BCCF51639860_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
Cinfo_t37F91E88FCD8623834BE1898FC146620538C08B1 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<Cinfo_t37F91E88FCD8623834BE1898FC146620538C08B1 *>(__this + _offset);
int32_t _returnValue;
_returnValue = Cinfo_GetHashCode_m93DAAACF242CBA5B8EE758CE4E04BCCF51639860(_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
// System.Boolean UnityEngine.XR.ARSubsystems.XREnvironmentProbeSubsystem/Provider::get_automaticPlacementRequested()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Provider_get_automaticPlacementRequested_m1E459E6FEB7533E372078FCF8E37E1FE7A1F42FB (Provider_tAF87FE3E906FDBF14F06488A1AA5E80400EFE190 * __this, const RuntimeMethod* method)
{
{
// get => false;
return (bool)0;
}
}
// System.Void UnityEngine.XR.ARSubsystems.XREnvironmentProbeSubsystem/Provider::set_automaticPlacementRequested(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Provider_set_automaticPlacementRequested_m247AC8CC05683266B38C937719C7B0E766C6337B (Provider_tAF87FE3E906FDBF14F06488A1AA5E80400EFE190 * __this, bool ___value0, const RuntimeMethod* method)
{
{
// if (value)
bool L_0 = ___value0;
if (!L_0)
{
goto IL_000e;
}
}
{
// throw new NotSupportedException("automatic placement of environment probes is not supported by this implementation");
NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 * L_1 = (NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339_il2cpp_TypeInfo_var)));
NotSupportedException__ctor_m40BC57BDA6E0E119B73700CC809A14B57DC65A90(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral43CF1A394DF36BF047EE89F7BFA26227D4379BFB)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Provider_set_automaticPlacementRequested_m247AC8CC05683266B38C937719C7B0E766C6337B_RuntimeMethod_var)));
}
IL_000e:
{
// }
return;
}
}
// System.Boolean UnityEngine.XR.ARSubsystems.XREnvironmentProbeSubsystem/Provider::get_automaticPlacementEnabled()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Provider_get_automaticPlacementEnabled_mFF258987581EDD3975F41F7233FC4CEB8FCF7D1A (Provider_tAF87FE3E906FDBF14F06488A1AA5E80400EFE190 * __this, const RuntimeMethod* method)
{
{
// public virtual bool automaticPlacementEnabled => false;
return (bool)0;
}
}
// System.Boolean UnityEngine.XR.ARSubsystems.XREnvironmentProbeSubsystem/Provider::get_environmentTextureHDRRequested()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Provider_get_environmentTextureHDRRequested_m5D5984CEF09F49F5088F4568E9263BCC11A44366 (Provider_tAF87FE3E906FDBF14F06488A1AA5E80400EFE190 * __this, const RuntimeMethod* method)
{
{
// get => false;
return (bool)0;
}
}
// System.Void UnityEngine.XR.ARSubsystems.XREnvironmentProbeSubsystem/Provider::set_environmentTextureHDRRequested(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Provider_set_environmentTextureHDRRequested_m82BAEA302C0714E7C0194EA11A8FE890E7409A8B (Provider_tAF87FE3E906FDBF14F06488A1AA5E80400EFE190 * __this, bool ___value0, const RuntimeMethod* method)
{
{
// if (value)
bool L_0 = ___value0;
if (!L_0)
{
goto IL_000e;
}
}
{
// throw new NotSupportedException("HDR environment textures are not supported by this implementation");
NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 * L_1 = (NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339_il2cpp_TypeInfo_var)));
NotSupportedException__ctor_m40BC57BDA6E0E119B73700CC809A14B57DC65A90(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF888230443F7BB68D49D53BBE56D2A722FDD6CA2)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Provider_set_environmentTextureHDRRequested_m82BAEA302C0714E7C0194EA11A8FE890E7409A8B_RuntimeMethod_var)));
}
IL_000e:
{
// }
return;
}
}
// System.Boolean UnityEngine.XR.ARSubsystems.XREnvironmentProbeSubsystem/Provider::get_environmentTextureHDREnabled()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Provider_get_environmentTextureHDREnabled_m852187628E4A0FAD999C1E679EDC532659BC4675 (Provider_tAF87FE3E906FDBF14F06488A1AA5E80400EFE190 * __this, const RuntimeMethod* method)
{
{
// public virtual bool environmentTextureHDREnabled => false;
return (bool)0;
}
}
// System.Boolean UnityEngine.XR.ARSubsystems.XREnvironmentProbeSubsystem/Provider::TryAddEnvironmentProbe(UnityEngine.Pose,UnityEngine.Vector3,UnityEngine.Vector3,UnityEngine.XR.ARSubsystems.XREnvironmentProbe&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Provider_TryAddEnvironmentProbe_m3290B8D160B758811040A94F335843B1665618D5 (Provider_tAF87FE3E906FDBF14F06488A1AA5E80400EFE190 * __this, Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A ___pose0, Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___scale1, Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___size2, XREnvironmentProbe_t4D75B5DF95135D1BA45222CBE3E7677E823B8D4C * ___environmentProbe3, const RuntimeMethod* method)
{
{
// throw new NotSupportedException("manual placement of environment probes is not supported by this implementation");
NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 * L_0 = (NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339_il2cpp_TypeInfo_var)));
NotSupportedException__ctor_m40BC57BDA6E0E119B73700CC809A14B57DC65A90(L_0, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral49851190ED9FA7B5B16CED19B807FDDAA864FEE9)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Provider_TryAddEnvironmentProbe_m3290B8D160B758811040A94F335843B1665618D5_RuntimeMethod_var)));
}
}
// System.Boolean UnityEngine.XR.ARSubsystems.XREnvironmentProbeSubsystem/Provider::RemoveEnvironmentProbe(UnityEngine.XR.ARSubsystems.TrackableId)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Provider_RemoveEnvironmentProbe_m1C8E9F616E2D1F98ECF86A3D6101B9A7ACB949D8 (Provider_tAF87FE3E906FDBF14F06488A1AA5E80400EFE190 * __this, TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B ___trackableId0, const RuntimeMethod* method)
{
{
// throw new NotSupportedException("removal of environment probes is not supported by this implementation");
NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 * L_0 = (NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339_il2cpp_TypeInfo_var)));
NotSupportedException__ctor_m40BC57BDA6E0E119B73700CC809A14B57DC65A90(L_0, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral69848EA3811CFA33C6D149D0D7D3E7BB386BD641)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Provider_RemoveEnvironmentProbe_m1C8E9F616E2D1F98ECF86A3D6101B9A7ACB949D8_RuntimeMethod_var)));
}
}
// System.Void UnityEngine.XR.ARSubsystems.XREnvironmentProbeSubsystem/Provider::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Provider__ctor_m82E278812C6826F3F89A708912491AB72058B700 (Provider_tAF87FE3E906FDBF14F06488A1AA5E80400EFE190 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SubsystemProvider_1__ctor_m987248264A49939ACFFFF0D50F3AAAE526E80B67_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
SubsystemProvider_1__ctor_m987248264A49939ACFFFF0D50F3AAAE526E80B67(__this, /*hidden argument*/SubsystemProvider_1__ctor_m987248264A49939ACFFFF0D50F3AAAE526E80B67_RuntimeMethod_var);
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
// System.Void UnityEngine.XR.ARSubsystems.XRFaceSubsystem/Provider::GetFaceMesh(UnityEngine.XR.ARSubsystems.TrackableId,Unity.Collections.Allocator,UnityEngine.XR.ARSubsystems.XRFaceMesh&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Provider_GetFaceMesh_m24F6E73C1A2C77979653AB19C8EE8EF939D80182 (Provider_t0133E0DB4F1A68EB3D4814F63B14456832E3EAE7 * __this, TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B ___faceId0, int32_t ___allocator1, XRFaceMesh_t2ADC7E6069DCCCFB439A4A60DB9189338C9E1AD0 * ___faceMesh2, const RuntimeMethod* method)
{
{
// faceMesh.Dispose();
XRFaceMesh_t2ADC7E6069DCCCFB439A4A60DB9189338C9E1AD0 * L_0 = ___faceMesh2;
XRFaceMesh_Dispose_m84478F08EEB3D131E0E7785CF4195D424B94543E((XRFaceMesh_t2ADC7E6069DCCCFB439A4A60DB9189338C9E1AD0 *)L_0, /*hidden argument*/NULL);
// faceMesh = default(XRFaceMesh);
XRFaceMesh_t2ADC7E6069DCCCFB439A4A60DB9189338C9E1AD0 * L_1 = ___faceMesh2;
il2cpp_codegen_initobj(L_1, sizeof(XRFaceMesh_t2ADC7E6069DCCCFB439A4A60DB9189338C9E1AD0 ));
// }
return;
}
}
// System.Int32 UnityEngine.XR.ARSubsystems.XRFaceSubsystem/Provider::get_supportedFaceCount()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Provider_get_supportedFaceCount_m65269094A72BB234E7EF96ADEBF1EDB903FF5DEC (Provider_t0133E0DB4F1A68EB3D4814F63B14456832E3EAE7 * __this, const RuntimeMethod* method)
{
{
// public virtual int supportedFaceCount => 1;
return 1;
}
}
// System.Int32 UnityEngine.XR.ARSubsystems.XRFaceSubsystem/Provider::get_requestedMaximumFaceCount()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Provider_get_requestedMaximumFaceCount_m82A60F24B04B17866F4702686901B3D929FB47A0 (Provider_t0133E0DB4F1A68EB3D4814F63B14456832E3EAE7 * __this, const RuntimeMethod* method)
{
{
// get => m_RequestedMaximumFaceCount;
int32_t L_0 = __this->get_m_RequestedMaximumFaceCount_1();
return L_0;
}
}
// System.Void UnityEngine.XR.ARSubsystems.XRFaceSubsystem/Provider::set_requestedMaximumFaceCount(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Provider_set_requestedMaximumFaceCount_mE8E2FDFE803518BBDB015E0CF8CA03E30E64169D (Provider_t0133E0DB4F1A68EB3D4814F63B14456832E3EAE7 * __this, int32_t ___value0, const RuntimeMethod* method)
{
{
// set => m_RequestedMaximumFaceCount = value;
int32_t L_0 = ___value0;
__this->set_m_RequestedMaximumFaceCount_1(L_0);
return;
}
}
// System.Int32 UnityEngine.XR.ARSubsystems.XRFaceSubsystem/Provider::get_currentMaximumFaceCount()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Provider_get_currentMaximumFaceCount_m1BB7800FD410EA2FCE98AD32F0AA8A854749F1A5 (Provider_t0133E0DB4F1A68EB3D4814F63B14456832E3EAE7 * __this, const RuntimeMethod* method)
{
{
// public virtual int currentMaximumFaceCount => 1;
return 1;
}
}
// System.Void UnityEngine.XR.ARSubsystems.XRFaceSubsystem/Provider::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Provider__ctor_mD36F52D0D0CF48E1C950DAE67246AB8C42498DE5 (Provider_t0133E0DB4F1A68EB3D4814F63B14456832E3EAE7 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SubsystemProvider_1__ctor_m775D1DA5795E95D8D1220715C2B041DB989B9B02_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
// int m_RequestedMaximumFaceCount = 1;
__this->set_m_RequestedMaximumFaceCount_1(1);
SubsystemProvider_1__ctor_m775D1DA5795E95D8D1220715C2B041DB989B9B02(__this, /*hidden argument*/SubsystemProvider_1__ctor_m775D1DA5795E95D8D1220715C2B041DB989B9B02_RuntimeMethod_var);
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
// System.Boolean UnityEngine.XR.ARSubsystems.XRHumanBodySubsystem/Provider::get_pose2DRequested()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Provider_get_pose2DRequested_mE53D821039F6398BA705AE07E4A41F556436D25D (Provider_t055C90C34B2BCE8D134DF44C12823E320519168C * __this, const RuntimeMethod* method)
{
{
// get => false;
return (bool)0;
}
}
// System.Void UnityEngine.XR.ARSubsystems.XRHumanBodySubsystem/Provider::set_pose2DRequested(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Provider_set_pose2DRequested_m27B9A484B65FE56A642599F71769CECD31F21B55 (Provider_t055C90C34B2BCE8D134DF44C12823E320519168C * __this, bool ___value0, const RuntimeMethod* method)
{
{
// if (value)
bool L_0 = ___value0;
if (!L_0)
{
goto IL_000e;
}
}
{
// throw new NotSupportedException("Setting human body pose 2D estimation to enabled is not "
// + "supported by this implementation");
NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 * L_1 = (NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339_il2cpp_TypeInfo_var)));
NotSupportedException__ctor_m40BC57BDA6E0E119B73700CC809A14B57DC65A90(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralB46EF5E6A66EDA1C58FC6247FCF11ED116219577)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Provider_set_pose2DRequested_m27B9A484B65FE56A642599F71769CECD31F21B55_RuntimeMethod_var)));
}
IL_000e:
{
// }
return;
}
}
// System.Boolean UnityEngine.XR.ARSubsystems.XRHumanBodySubsystem/Provider::get_pose2DEnabled()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Provider_get_pose2DEnabled_m918E7176255D12999485651F781725610C60EA67 (Provider_t055C90C34B2BCE8D134DF44C12823E320519168C * __this, const RuntimeMethod* method)
{
{
// public virtual bool pose2DEnabled => false;
return (bool)0;
}
}
// System.Boolean UnityEngine.XR.ARSubsystems.XRHumanBodySubsystem/Provider::get_pose3DRequested()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Provider_get_pose3DRequested_m8E70D9B91BE79C906E0AE63E3CCD17A163B0BD59 (Provider_t055C90C34B2BCE8D134DF44C12823E320519168C * __this, const RuntimeMethod* method)
{
{
// get => false;
return (bool)0;
}
}
// System.Void UnityEngine.XR.ARSubsystems.XRHumanBodySubsystem/Provider::set_pose3DRequested(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Provider_set_pose3DRequested_mCF7E233FEE430CE3B888B8E65D36E7EB8475697B (Provider_t055C90C34B2BCE8D134DF44C12823E320519168C * __this, bool ___value0, const RuntimeMethod* method)
{
{
// if (value)
bool L_0 = ___value0;
if (!L_0)
{
goto IL_000e;
}
}
{
// throw new NotSupportedException("Setting human body pose 3D estimation to enabled is not "
// + "supported by this implementation");
NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 * L_1 = (NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339_il2cpp_TypeInfo_var)));
NotSupportedException__ctor_m40BC57BDA6E0E119B73700CC809A14B57DC65A90(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral8E24AD325FDF926182510CA7537CB68FEA6D6503)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Provider_set_pose3DRequested_mCF7E233FEE430CE3B888B8E65D36E7EB8475697B_RuntimeMethod_var)));
}
IL_000e:
{
// }
return;
}
}
// System.Boolean UnityEngine.XR.ARSubsystems.XRHumanBodySubsystem/Provider::get_pose3DEnabled()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Provider_get_pose3DEnabled_m50FF0EE2441930D442B21BDC740F759D37BB08BC (Provider_t055C90C34B2BCE8D134DF44C12823E320519168C * __this, const RuntimeMethod* method)
{
{
// public virtual bool pose3DEnabled => false;
return (bool)0;
}
}
// System.Boolean UnityEngine.XR.ARSubsystems.XRHumanBodySubsystem/Provider::get_pose3DScaleEstimationRequested()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Provider_get_pose3DScaleEstimationRequested_m16F65694B28BBC00084732C08C2DC484FEBEBB41 (Provider_t055C90C34B2BCE8D134DF44C12823E320519168C * __this, const RuntimeMethod* method)
{
{
// get => false;
return (bool)0;
}
}
// System.Void UnityEngine.XR.ARSubsystems.XRHumanBodySubsystem/Provider::set_pose3DScaleEstimationRequested(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Provider_set_pose3DScaleEstimationRequested_m33837BA93C947D63865DFCA7A83288498EAA8200 (Provider_t055C90C34B2BCE8D134DF44C12823E320519168C * __this, bool ___value0, const RuntimeMethod* method)
{
{
// if (value)
bool L_0 = ___value0;
if (!L_0)
{
goto IL_000e;
}
}
{
// throw new NotSupportedException("Setting 3D human body scale estimation to enabled is not "
// + "supported by this implementation");
NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 * L_1 = (NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339_il2cpp_TypeInfo_var)));
NotSupportedException__ctor_m40BC57BDA6E0E119B73700CC809A14B57DC65A90(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralA2A7E438E876A47A61C6E2144C25AB3FC820856F)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Provider_set_pose3DScaleEstimationRequested_m33837BA93C947D63865DFCA7A83288498EAA8200_RuntimeMethod_var)));
}
IL_000e:
{
// }
return;
}
}
// System.Boolean UnityEngine.XR.ARSubsystems.XRHumanBodySubsystem/Provider::get_pose3DScaleEstimationEnabled()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Provider_get_pose3DScaleEstimationEnabled_mD6EDC5A88C7BBE729512E1F009785DA1E6ACE5E0 (Provider_t055C90C34B2BCE8D134DF44C12823E320519168C * __this, const RuntimeMethod* method)
{
{
// public virtual bool pose3DScaleEstimationEnabled => false;
return (bool)0;
}
}
// System.Void UnityEngine.XR.ARSubsystems.XRHumanBodySubsystem/Provider::GetSkeleton(UnityEngine.XR.ARSubsystems.TrackableId,Unity.Collections.Allocator,Unity.Collections.NativeArray`1<UnityEngine.XR.ARSubsystems.XRHumanBodyJoint>&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Provider_GetSkeleton_mFFD5F2C114C2B8C3A8B54C10CFCF82F2D5C57868 (Provider_t055C90C34B2BCE8D134DF44C12823E320519168C * __this, TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B ___trackableId0, int32_t ___allocator1, NativeArray_1_t733A71EE29E0C7D2F944E30A1729F085DEB1138C * ___skeleton2, const RuntimeMethod* method)
{
{
// => throw new NotSupportedException("Skeletons are not supported by this implementation.");
NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 * L_0 = (NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339_il2cpp_TypeInfo_var)));
NotSupportedException__ctor_m40BC57BDA6E0E119B73700CC809A14B57DC65A90(L_0, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral88CA26652382EB9056FA8D06D416F308717A3471)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Provider_GetSkeleton_mFFD5F2C114C2B8C3A8B54C10CFCF82F2D5C57868_RuntimeMethod_var)));
}
}
// Unity.Collections.NativeArray`1<UnityEngine.XR.ARSubsystems.XRHumanBodyPose2DJoint> UnityEngine.XR.ARSubsystems.XRHumanBodySubsystem/Provider::GetHumanBodyPose2DJoints(UnityEngine.XR.ARSubsystems.XRHumanBodyPose2DJoint,System.Int32,System.Int32,UnityEngine.ScreenOrientation,Unity.Collections.Allocator)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NativeArray_1_t7946EB09CA991D07040F6E500BA5CA3CECED5E52 Provider_GetHumanBodyPose2DJoints_m9CBC5A20BCA6FEC12F844AEBCE285D978C859E00 (Provider_t055C90C34B2BCE8D134DF44C12823E320519168C * __this, XRHumanBodyPose2DJoint_t901EEB0FA2A9FF2D258978EC36EE0852FEF35BA4 ___defaultHumanBodyPose2DJoint0, int32_t ___screenWidth1, int32_t ___screenHeight2, int32_t ___screenOrientation3, int32_t ___allocator4, const RuntimeMethod* method)
{
NativeArray_1_t7946EB09CA991D07040F6E500BA5CA3CECED5E52 V_0;
memset((&V_0), 0, sizeof(V_0));
{
// => throw new NotSupportedException("human body pose 2D is not supported by this implementation");
NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 * L_0 = (NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339_il2cpp_TypeInfo_var)));
NotSupportedException__ctor_m40BC57BDA6E0E119B73700CC809A14B57DC65A90(L_0, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralCE83A8FD46D2BCA9E85007E13F35EC64241D98D0)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Provider_GetHumanBodyPose2DJoints_m9CBC5A20BCA6FEC12F844AEBCE285D978C859E00_RuntimeMethod_var)));
}
}
// System.Void UnityEngine.XR.ARSubsystems.XRHumanBodySubsystem/Provider::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Provider__ctor_mA98EFA82A2BD0B6E60094A95912A2CFF487D0252 (Provider_t055C90C34B2BCE8D134DF44C12823E320519168C * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SubsystemProvider_1__ctor_m756AF5A05933094284FE3141F40DBAE7DBAE8FE1_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
SubsystemProvider_1__ctor_m756AF5A05933094284FE3141F40DBAE7DBAE8FE1(__this, /*hidden argument*/SubsystemProvider_1__ctor_m756AF5A05933094284FE3141F40DBAE7DBAE8FE1_RuntimeMethod_var);
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
// System.Int32 UnityEngine.XR.ARSubsystems.XRImageTrackingSubsystem/Provider::get_requestedMaxNumberOfMovingImages()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Provider_get_requestedMaxNumberOfMovingImages_m2D611F3D46EFE004FA5A5466FEED0501CBAF2E0A (Provider_tA7CEF856C3BC486ADEBD656F5535E24262AAAE9E * __this, const RuntimeMethod* method)
{
{
// get => 0;
return 0;
}
}
// System.Void UnityEngine.XR.ARSubsystems.XRImageTrackingSubsystem/Provider::set_requestedMaxNumberOfMovingImages(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Provider_set_requestedMaxNumberOfMovingImages_mCEC5839726AA69CAD5ED6F831170D2B7EDD7567F (Provider_tA7CEF856C3BC486ADEBD656F5535E24262AAAE9E * __this, int32_t ___value0, const RuntimeMethod* method)
{
{
// set => throw new NotSupportedException("This subsystem does not track moving images.");
NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 * L_0 = (NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339_il2cpp_TypeInfo_var)));
NotSupportedException__ctor_m40BC57BDA6E0E119B73700CC809A14B57DC65A90(L_0, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral1399697DAB4124C76C3449E6CBB1E28BB1C2F2A1)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Provider_set_requestedMaxNumberOfMovingImages_mCEC5839726AA69CAD5ED6F831170D2B7EDD7567F_RuntimeMethod_var)));
}
}
// System.Int32 UnityEngine.XR.ARSubsystems.XRImageTrackingSubsystem/Provider::get_currentMaxNumberOfMovingImages()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Provider_get_currentMaxNumberOfMovingImages_mFFDD62A1C522FD69A89FD71E2CCA909B265B4AF7 (Provider_tA7CEF856C3BC486ADEBD656F5535E24262AAAE9E * __this, const RuntimeMethod* method)
{
{
// public virtual int currentMaxNumberOfMovingImages => 0;
return 0;
}
}
// System.Void UnityEngine.XR.ARSubsystems.XRImageTrackingSubsystem/Provider::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Provider__ctor_mE0C779A245EE703B26578F529ABFD6F18E002AC0 (Provider_tA7CEF856C3BC486ADEBD656F5535E24262AAAE9E * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SubsystemProvider_1__ctor_mC4C72A59ABE142F4F35FE24EFAF666ACF8450690_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
SubsystemProvider_1__ctor_mC4C72A59ABE142F4F35FE24EFAF666ACF8450690(__this, /*hidden argument*/SubsystemProvider_1__ctor_mC4C72A59ABE142F4F35FE24EFAF666ACF8450690_RuntimeMethod_var);
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
// Conversion methods for marshalling of: UnityEngine.XR.ARSubsystems.XRImageTrackingSubsystemDescriptor/Cinfo
IL2CPP_EXTERN_C void Cinfo_tED92D7CBD16BE657927A6B7DB64A22DA21EB7D32_marshal_pinvoke(const Cinfo_tED92D7CBD16BE657927A6B7DB64A22DA21EB7D32& unmarshaled, Cinfo_tED92D7CBD16BE657927A6B7DB64A22DA21EB7D32_marshaled_pinvoke& marshaled)
{
Exception_t* ___U3CproviderTypeU3Ek__BackingField_1Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field '<providerType>k__BackingField' of type 'Cinfo': Reference type field marshaling is not supported.");
IL2CPP_RAISE_MANAGED_EXCEPTION(___U3CproviderTypeU3Ek__BackingField_1Exception, NULL);
}
IL2CPP_EXTERN_C void Cinfo_tED92D7CBD16BE657927A6B7DB64A22DA21EB7D32_marshal_pinvoke_back(const Cinfo_tED92D7CBD16BE657927A6B7DB64A22DA21EB7D32_marshaled_pinvoke& marshaled, Cinfo_tED92D7CBD16BE657927A6B7DB64A22DA21EB7D32& unmarshaled)
{
Exception_t* ___U3CproviderTypeU3Ek__BackingField_1Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field '<providerType>k__BackingField' of type 'Cinfo': Reference type field marshaling is not supported.");
IL2CPP_RAISE_MANAGED_EXCEPTION(___U3CproviderTypeU3Ek__BackingField_1Exception, NULL);
}
// Conversion method for clean up from marshalling of: UnityEngine.XR.ARSubsystems.XRImageTrackingSubsystemDescriptor/Cinfo
IL2CPP_EXTERN_C void Cinfo_tED92D7CBD16BE657927A6B7DB64A22DA21EB7D32_marshal_pinvoke_cleanup(Cinfo_tED92D7CBD16BE657927A6B7DB64A22DA21EB7D32_marshaled_pinvoke& marshaled)
{
}
// Conversion methods for marshalling of: UnityEngine.XR.ARSubsystems.XRImageTrackingSubsystemDescriptor/Cinfo
IL2CPP_EXTERN_C void Cinfo_tED92D7CBD16BE657927A6B7DB64A22DA21EB7D32_marshal_com(const Cinfo_tED92D7CBD16BE657927A6B7DB64A22DA21EB7D32& unmarshaled, Cinfo_tED92D7CBD16BE657927A6B7DB64A22DA21EB7D32_marshaled_com& marshaled)
{
Exception_t* ___U3CproviderTypeU3Ek__BackingField_1Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field '<providerType>k__BackingField' of type 'Cinfo': Reference type field marshaling is not supported.");
IL2CPP_RAISE_MANAGED_EXCEPTION(___U3CproviderTypeU3Ek__BackingField_1Exception, NULL);
}
IL2CPP_EXTERN_C void Cinfo_tED92D7CBD16BE657927A6B7DB64A22DA21EB7D32_marshal_com_back(const Cinfo_tED92D7CBD16BE657927A6B7DB64A22DA21EB7D32_marshaled_com& marshaled, Cinfo_tED92D7CBD16BE657927A6B7DB64A22DA21EB7D32& unmarshaled)
{
Exception_t* ___U3CproviderTypeU3Ek__BackingField_1Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field '<providerType>k__BackingField' of type 'Cinfo': Reference type field marshaling is not supported.");
IL2CPP_RAISE_MANAGED_EXCEPTION(___U3CproviderTypeU3Ek__BackingField_1Exception, NULL);
}
// Conversion method for clean up from marshalling of: UnityEngine.XR.ARSubsystems.XRImageTrackingSubsystemDescriptor/Cinfo
IL2CPP_EXTERN_C void Cinfo_tED92D7CBD16BE657927A6B7DB64A22DA21EB7D32_marshal_com_cleanup(Cinfo_tED92D7CBD16BE657927A6B7DB64A22DA21EB7D32_marshaled_com& marshaled)
{
}
// System.String UnityEngine.XR.ARSubsystems.XRImageTrackingSubsystemDescriptor/Cinfo::get_id()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Cinfo_get_id_m7ACB39F94D161A19473B51245A60F0FE3380E9C6 (Cinfo_tED92D7CBD16BE657927A6B7DB64A22DA21EB7D32 * __this, const RuntimeMethod* method)
{
{
// public string id { get; set; }
String_t* L_0 = __this->get_U3CidU3Ek__BackingField_0();
return L_0;
}
}
IL2CPP_EXTERN_C String_t* Cinfo_get_id_m7ACB39F94D161A19473B51245A60F0FE3380E9C6_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
Cinfo_tED92D7CBD16BE657927A6B7DB64A22DA21EB7D32 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<Cinfo_tED92D7CBD16BE657927A6B7DB64A22DA21EB7D32 *>(__this + _offset);
String_t* _returnValue;
_returnValue = Cinfo_get_id_m7ACB39F94D161A19473B51245A60F0FE3380E9C6_inline(_thisAdjusted, method);
return _returnValue;
}
// System.Void UnityEngine.XR.ARSubsystems.XRImageTrackingSubsystemDescriptor/Cinfo::set_id(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Cinfo_set_id_m57970CF355AB638BAD860B9673F0E76B42126C1A (Cinfo_tED92D7CBD16BE657927A6B7DB64A22DA21EB7D32 * __this, String_t* ___value0, const RuntimeMethod* method)
{
{
// public string id { get; set; }
String_t* L_0 = ___value0;
__this->set_U3CidU3Ek__BackingField_0(L_0);
return;
}
}
IL2CPP_EXTERN_C void Cinfo_set_id_m57970CF355AB638BAD860B9673F0E76B42126C1A_AdjustorThunk (RuntimeObject * __this, String_t* ___value0, const RuntimeMethod* method)
{
Cinfo_tED92D7CBD16BE657927A6B7DB64A22DA21EB7D32 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<Cinfo_tED92D7CBD16BE657927A6B7DB64A22DA21EB7D32 *>(__this + _offset);
Cinfo_set_id_m57970CF355AB638BAD860B9673F0E76B42126C1A_inline(_thisAdjusted, ___value0, method);
}
// System.Type UnityEngine.XR.ARSubsystems.XRImageTrackingSubsystemDescriptor/Cinfo::get_providerType()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t * Cinfo_get_providerType_m865B26BBCBE9E542D09269A2CA6BD1FC47976AF2 (Cinfo_tED92D7CBD16BE657927A6B7DB64A22DA21EB7D32 * __this, const RuntimeMethod* method)
{
{
// public Type providerType { get; set; }
Type_t * L_0 = __this->get_U3CproviderTypeU3Ek__BackingField_1();
return L_0;
}
}
IL2CPP_EXTERN_C Type_t * Cinfo_get_providerType_m865B26BBCBE9E542D09269A2CA6BD1FC47976AF2_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
Cinfo_tED92D7CBD16BE657927A6B7DB64A22DA21EB7D32 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<Cinfo_tED92D7CBD16BE657927A6B7DB64A22DA21EB7D32 *>(__this + _offset);
Type_t * _returnValue;
_returnValue = Cinfo_get_providerType_m865B26BBCBE9E542D09269A2CA6BD1FC47976AF2_inline(_thisAdjusted, method);
return _returnValue;
}
// System.Void UnityEngine.XR.ARSubsystems.XRImageTrackingSubsystemDescriptor/Cinfo::set_providerType(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Cinfo_set_providerType_mCACA6EC48AB4B305E1515A312B32DC196AD9B92C (Cinfo_tED92D7CBD16BE657927A6B7DB64A22DA21EB7D32 * __this, Type_t * ___value0, const RuntimeMethod* method)
{
{
// public Type providerType { get; set; }
Type_t * L_0 = ___value0;
__this->set_U3CproviderTypeU3Ek__BackingField_1(L_0);
return;
}
}
IL2CPP_EXTERN_C void Cinfo_set_providerType_mCACA6EC48AB4B305E1515A312B32DC196AD9B92C_AdjustorThunk (RuntimeObject * __this, Type_t * ___value0, const RuntimeMethod* method)
{
Cinfo_tED92D7CBD16BE657927A6B7DB64A22DA21EB7D32 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<Cinfo_tED92D7CBD16BE657927A6B7DB64A22DA21EB7D32 *>(__this + _offset);
Cinfo_set_providerType_mCACA6EC48AB4B305E1515A312B32DC196AD9B92C_inline(_thisAdjusted, ___value0, method);
}
// System.Type UnityEngine.XR.ARSubsystems.XRImageTrackingSubsystemDescriptor/Cinfo::get_subsystemTypeOverride()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t * Cinfo_get_subsystemTypeOverride_m0008239CE298C4881102FED287EC52224601A3A5 (Cinfo_tED92D7CBD16BE657927A6B7DB64A22DA21EB7D32 * __this, const RuntimeMethod* method)
{
{
// public Type subsystemTypeOverride { get; set; }
Type_t * L_0 = __this->get_U3CsubsystemTypeOverrideU3Ek__BackingField_2();
return L_0;
}
}
IL2CPP_EXTERN_C Type_t * Cinfo_get_subsystemTypeOverride_m0008239CE298C4881102FED287EC52224601A3A5_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
Cinfo_tED92D7CBD16BE657927A6B7DB64A22DA21EB7D32 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<Cinfo_tED92D7CBD16BE657927A6B7DB64A22DA21EB7D32 *>(__this + _offset);
Type_t * _returnValue;
_returnValue = Cinfo_get_subsystemTypeOverride_m0008239CE298C4881102FED287EC52224601A3A5_inline(_thisAdjusted, method);
return _returnValue;
}
// System.Void UnityEngine.XR.ARSubsystems.XRImageTrackingSubsystemDescriptor/Cinfo::set_subsystemTypeOverride(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Cinfo_set_subsystemTypeOverride_m167DE9461D1FE4E4D8AB0EE25A7A4B0A947151D8 (Cinfo_tED92D7CBD16BE657927A6B7DB64A22DA21EB7D32 * __this, Type_t * ___value0, const RuntimeMethod* method)
{
{
// public Type subsystemTypeOverride { get; set; }
Type_t * L_0 = ___value0;
__this->set_U3CsubsystemTypeOverrideU3Ek__BackingField_2(L_0);
return;
}
}
IL2CPP_EXTERN_C void Cinfo_set_subsystemTypeOverride_m167DE9461D1FE4E4D8AB0EE25A7A4B0A947151D8_AdjustorThunk (RuntimeObject * __this, Type_t * ___value0, const RuntimeMethod* method)
{
Cinfo_tED92D7CBD16BE657927A6B7DB64A22DA21EB7D32 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<Cinfo_tED92D7CBD16BE657927A6B7DB64A22DA21EB7D32 *>(__this + _offset);
Cinfo_set_subsystemTypeOverride_m167DE9461D1FE4E4D8AB0EE25A7A4B0A947151D8_inline(_thisAdjusted, ___value0, method);
}
// System.Boolean UnityEngine.XR.ARSubsystems.XRImageTrackingSubsystemDescriptor/Cinfo::get_supportsMovingImages()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Cinfo_get_supportsMovingImages_m7B1E2171F1304A73339266B64548CF305EFEEA91 (Cinfo_tED92D7CBD16BE657927A6B7DB64A22DA21EB7D32 * __this, const RuntimeMethod* method)
{
{
// public bool supportsMovingImages { get; set; }
bool L_0 = __this->get_U3CsupportsMovingImagesU3Ek__BackingField_4();
return L_0;
}
}
IL2CPP_EXTERN_C bool Cinfo_get_supportsMovingImages_m7B1E2171F1304A73339266B64548CF305EFEEA91_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
Cinfo_tED92D7CBD16BE657927A6B7DB64A22DA21EB7D32 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<Cinfo_tED92D7CBD16BE657927A6B7DB64A22DA21EB7D32 *>(__this + _offset);
bool _returnValue;
_returnValue = Cinfo_get_supportsMovingImages_m7B1E2171F1304A73339266B64548CF305EFEEA91_inline(_thisAdjusted, method);
return _returnValue;
}
// System.Void UnityEngine.XR.ARSubsystems.XRImageTrackingSubsystemDescriptor/Cinfo::set_supportsMovingImages(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Cinfo_set_supportsMovingImages_m04BB57385FC0A2025414437DB1BEFBE97372E579 (Cinfo_tED92D7CBD16BE657927A6B7DB64A22DA21EB7D32 * __this, bool ___value0, const RuntimeMethod* method)
{
{
// public bool supportsMovingImages { get; set; }
bool L_0 = ___value0;
__this->set_U3CsupportsMovingImagesU3Ek__BackingField_4(L_0);
return;
}
}
IL2CPP_EXTERN_C void Cinfo_set_supportsMovingImages_m04BB57385FC0A2025414437DB1BEFBE97372E579_AdjustorThunk (RuntimeObject * __this, bool ___value0, const RuntimeMethod* method)
{
Cinfo_tED92D7CBD16BE657927A6B7DB64A22DA21EB7D32 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<Cinfo_tED92D7CBD16BE657927A6B7DB64A22DA21EB7D32 *>(__this + _offset);
Cinfo_set_supportsMovingImages_m04BB57385FC0A2025414437DB1BEFBE97372E579_inline(_thisAdjusted, ___value0, method);
}
// System.Boolean UnityEngine.XR.ARSubsystems.XRImageTrackingSubsystemDescriptor/Cinfo::get_requiresPhysicalImageDimensions()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Cinfo_get_requiresPhysicalImageDimensions_mEED8602BF9D390F19582D3F706A9C93333AFB0C7 (Cinfo_tED92D7CBD16BE657927A6B7DB64A22DA21EB7D32 * __this, const RuntimeMethod* method)
{
{
// public bool requiresPhysicalImageDimensions { get; set; }
bool L_0 = __this->get_U3CrequiresPhysicalImageDimensionsU3Ek__BackingField_5();
return L_0;
}
}
IL2CPP_EXTERN_C bool Cinfo_get_requiresPhysicalImageDimensions_mEED8602BF9D390F19582D3F706A9C93333AFB0C7_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
Cinfo_tED92D7CBD16BE657927A6B7DB64A22DA21EB7D32 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<Cinfo_tED92D7CBD16BE657927A6B7DB64A22DA21EB7D32 *>(__this + _offset);
bool _returnValue;
_returnValue = Cinfo_get_requiresPhysicalImageDimensions_mEED8602BF9D390F19582D3F706A9C93333AFB0C7_inline(_thisAdjusted, method);
return _returnValue;
}
// System.Void UnityEngine.XR.ARSubsystems.XRImageTrackingSubsystemDescriptor/Cinfo::set_requiresPhysicalImageDimensions(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Cinfo_set_requiresPhysicalImageDimensions_mC794914720C62ACB74173F165B3015ED9B5CA2A6 (Cinfo_tED92D7CBD16BE657927A6B7DB64A22DA21EB7D32 * __this, bool ___value0, const RuntimeMethod* method)
{
{
// public bool requiresPhysicalImageDimensions { get; set; }
bool L_0 = ___value0;
__this->set_U3CrequiresPhysicalImageDimensionsU3Ek__BackingField_5(L_0);
return;
}
}
IL2CPP_EXTERN_C void Cinfo_set_requiresPhysicalImageDimensions_mC794914720C62ACB74173F165B3015ED9B5CA2A6_AdjustorThunk (RuntimeObject * __this, bool ___value0, const RuntimeMethod* method)
{
Cinfo_tED92D7CBD16BE657927A6B7DB64A22DA21EB7D32 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<Cinfo_tED92D7CBD16BE657927A6B7DB64A22DA21EB7D32 *>(__this + _offset);
Cinfo_set_requiresPhysicalImageDimensions_mC794914720C62ACB74173F165B3015ED9B5CA2A6_inline(_thisAdjusted, ___value0, method);
}
// System.Boolean UnityEngine.XR.ARSubsystems.XRImageTrackingSubsystemDescriptor/Cinfo::get_supportsMutableLibrary()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Cinfo_get_supportsMutableLibrary_mCD0988DBB5810975CB97BEDD9B2E6B6C168D6E19 (Cinfo_tED92D7CBD16BE657927A6B7DB64A22DA21EB7D32 * __this, const RuntimeMethod* method)
{
{
// public bool supportsMutableLibrary { get; set; }
bool L_0 = __this->get_U3CsupportsMutableLibraryU3Ek__BackingField_6();
return L_0;
}
}
IL2CPP_EXTERN_C bool Cinfo_get_supportsMutableLibrary_mCD0988DBB5810975CB97BEDD9B2E6B6C168D6E19_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
Cinfo_tED92D7CBD16BE657927A6B7DB64A22DA21EB7D32 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<Cinfo_tED92D7CBD16BE657927A6B7DB64A22DA21EB7D32 *>(__this + _offset);
bool _returnValue;
_returnValue = Cinfo_get_supportsMutableLibrary_mCD0988DBB5810975CB97BEDD9B2E6B6C168D6E19_inline(_thisAdjusted, method);
return _returnValue;
}
// System.Void UnityEngine.XR.ARSubsystems.XRImageTrackingSubsystemDescriptor/Cinfo::set_supportsMutableLibrary(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Cinfo_set_supportsMutableLibrary_m434D9A05D0025989AA711BA50139FD348D127661 (Cinfo_tED92D7CBD16BE657927A6B7DB64A22DA21EB7D32 * __this, bool ___value0, const RuntimeMethod* method)
{
{
// public bool supportsMutableLibrary { get; set; }
bool L_0 = ___value0;
__this->set_U3CsupportsMutableLibraryU3Ek__BackingField_6(L_0);
return;
}
}
IL2CPP_EXTERN_C void Cinfo_set_supportsMutableLibrary_m434D9A05D0025989AA711BA50139FD348D127661_AdjustorThunk (RuntimeObject * __this, bool ___value0, const RuntimeMethod* method)
{
Cinfo_tED92D7CBD16BE657927A6B7DB64A22DA21EB7D32 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<Cinfo_tED92D7CBD16BE657927A6B7DB64A22DA21EB7D32 *>(__this + _offset);
Cinfo_set_supportsMutableLibrary_m434D9A05D0025989AA711BA50139FD348D127661_inline(_thisAdjusted, ___value0, method);
}
// System.Boolean UnityEngine.XR.ARSubsystems.XRImageTrackingSubsystemDescriptor/Cinfo::get_supportsImageValidation()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Cinfo_get_supportsImageValidation_m417DC16FCA795DB24C8CAA2C81A5E84855D077BD (Cinfo_tED92D7CBD16BE657927A6B7DB64A22DA21EB7D32 * __this, const RuntimeMethod* method)
{
{
// public bool supportsImageValidation { get; set; }
bool L_0 = __this->get_U3CsupportsImageValidationU3Ek__BackingField_7();
return L_0;
}
}
IL2CPP_EXTERN_C bool Cinfo_get_supportsImageValidation_m417DC16FCA795DB24C8CAA2C81A5E84855D077BD_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
Cinfo_tED92D7CBD16BE657927A6B7DB64A22DA21EB7D32 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<Cinfo_tED92D7CBD16BE657927A6B7DB64A22DA21EB7D32 *>(__this + _offset);
bool _returnValue;
_returnValue = Cinfo_get_supportsImageValidation_m417DC16FCA795DB24C8CAA2C81A5E84855D077BD_inline(_thisAdjusted, method);
return _returnValue;
}
// System.Void UnityEngine.XR.ARSubsystems.XRImageTrackingSubsystemDescriptor/Cinfo::set_supportsImageValidation(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Cinfo_set_supportsImageValidation_m9CA1173736665E4DC3B594EE3357416A8A20B266 (Cinfo_tED92D7CBD16BE657927A6B7DB64A22DA21EB7D32 * __this, bool ___value0, const RuntimeMethod* method)
{
{
// public bool supportsImageValidation { get; set; }
bool L_0 = ___value0;
__this->set_U3CsupportsImageValidationU3Ek__BackingField_7(L_0);
return;
}
}
IL2CPP_EXTERN_C void Cinfo_set_supportsImageValidation_m9CA1173736665E4DC3B594EE3357416A8A20B266_AdjustorThunk (RuntimeObject * __this, bool ___value0, const RuntimeMethod* method)
{
Cinfo_tED92D7CBD16BE657927A6B7DB64A22DA21EB7D32 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<Cinfo_tED92D7CBD16BE657927A6B7DB64A22DA21EB7D32 *>(__this + _offset);
Cinfo_set_supportsImageValidation_m9CA1173736665E4DC3B594EE3357416A8A20B266_inline(_thisAdjusted, ___value0, method);
}
// System.Int32 UnityEngine.XR.ARSubsystems.XRImageTrackingSubsystemDescriptor/Cinfo::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Cinfo_GetHashCode_m8DB95DB86F786705B32382E014B3A5B96F81F4B0 (Cinfo_tED92D7CBD16BE657927A6B7DB64A22DA21EB7D32 * __this, const RuntimeMethod* method)
{
bool V_0 = false;
{
// int hashCode = HashCode.ReferenceHash(id);
String_t* L_0;
L_0 = Cinfo_get_id_m7ACB39F94D161A19473B51245A60F0FE3380E9C6_inline((Cinfo_tED92D7CBD16BE657927A6B7DB64A22DA21EB7D32 *)__this, /*hidden argument*/NULL);
int32_t L_1;
L_1 = HashCode_ReferenceHash_mE6CC6EA3C87D9F040876D66CF582D6FF68FC359C(L_0, /*hidden argument*/NULL);
// hashCode = hashCode * 486187739 + HashCode.ReferenceHash(providerType);
Type_t * L_2;
L_2 = Cinfo_get_providerType_m865B26BBCBE9E542D09269A2CA6BD1FC47976AF2_inline((Cinfo_tED92D7CBD16BE657927A6B7DB64A22DA21EB7D32 *)__this, /*hidden argument*/NULL);
int32_t L_3;
L_3 = HashCode_ReferenceHash_mE6CC6EA3C87D9F040876D66CF582D6FF68FC359C(L_2, /*hidden argument*/NULL);
// hashCode = hashCode * 486187739 + HashCode.ReferenceHash(subsystemTypeOverride);
Type_t * L_4;
L_4 = Cinfo_get_subsystemTypeOverride_m0008239CE298C4881102FED287EC52224601A3A5_inline((Cinfo_tED92D7CBD16BE657927A6B7DB64A22DA21EB7D32 *)__this, /*hidden argument*/NULL);
int32_t L_5;
L_5 = HashCode_ReferenceHash_mE6CC6EA3C87D9F040876D66CF582D6FF68FC359C(L_4, /*hidden argument*/NULL);
// hashCode = hashCode * 486187739 + supportsMovingImages.GetHashCode();
bool L_6;
L_6 = Cinfo_get_supportsMovingImages_m7B1E2171F1304A73339266B64548CF305EFEEA91_inline((Cinfo_tED92D7CBD16BE657927A6B7DB64A22DA21EB7D32 *)__this, /*hidden argument*/NULL);
V_0 = L_6;
int32_t L_7;
L_7 = Boolean_GetHashCode_m03AF8B3CECAE9106C44A00E3B33E51CBFC45C411((bool*)(&V_0), /*hidden argument*/NULL);
// hashCode = hashCode * 486187739 + requiresPhysicalImageDimensions.GetHashCode();
bool L_8;
L_8 = Cinfo_get_requiresPhysicalImageDimensions_mEED8602BF9D390F19582D3F706A9C93333AFB0C7_inline((Cinfo_tED92D7CBD16BE657927A6B7DB64A22DA21EB7D32 *)__this, /*hidden argument*/NULL);
V_0 = L_8;
int32_t L_9;
L_9 = Boolean_GetHashCode_m03AF8B3CECAE9106C44A00E3B33E51CBFC45C411((bool*)(&V_0), /*hidden argument*/NULL);
// hashCode = hashCode * 486187739 + supportsMutableLibrary.GetHashCode();
bool L_10;
L_10 = Cinfo_get_supportsMutableLibrary_mCD0988DBB5810975CB97BEDD9B2E6B6C168D6E19_inline((Cinfo_tED92D7CBD16BE657927A6B7DB64A22DA21EB7D32 *)__this, /*hidden argument*/NULL);
V_0 = L_10;
int32_t L_11;
L_11 = Boolean_GetHashCode_m03AF8B3CECAE9106C44A00E3B33E51CBFC45C411((bool*)(&V_0), /*hidden argument*/NULL);
// hashCode = hashCode * 486187739 + supportsImageValidation.GetHashCode();
bool L_12;
L_12 = Cinfo_get_supportsImageValidation_m417DC16FCA795DB24C8CAA2C81A5E84855D077BD_inline((Cinfo_tED92D7CBD16BE657927A6B7DB64A22DA21EB7D32 *)__this, /*hidden argument*/NULL);
V_0 = L_12;
int32_t L_13;
L_13 = Boolean_GetHashCode_m03AF8B3CECAE9106C44A00E3B33E51CBFC45C411((bool*)(&V_0), /*hidden argument*/NULL);
// return hashCode;
return ((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)L_1, (int32_t)((int32_t)486187739))), (int32_t)L_3)), (int32_t)((int32_t)486187739))), (int32_t)L_5)), (int32_t)((int32_t)486187739))), (int32_t)L_7)), (int32_t)((int32_t)486187739))), (int32_t)L_9)), (int32_t)((int32_t)486187739))), (int32_t)L_11)), (int32_t)((int32_t)486187739))), (int32_t)L_13));
}
}
IL2CPP_EXTERN_C int32_t Cinfo_GetHashCode_m8DB95DB86F786705B32382E014B3A5B96F81F4B0_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
Cinfo_tED92D7CBD16BE657927A6B7DB64A22DA21EB7D32 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<Cinfo_tED92D7CBD16BE657927A6B7DB64A22DA21EB7D32 *>(__this + _offset);
int32_t _returnValue;
_returnValue = Cinfo_GetHashCode_m8DB95DB86F786705B32382E014B3A5B96F81F4B0(_thisAdjusted, method);
return _returnValue;
}
// System.Boolean UnityEngine.XR.ARSubsystems.XRImageTrackingSubsystemDescriptor/Cinfo::Equals(UnityEngine.XR.ARSubsystems.XRImageTrackingSubsystemDescriptor/Cinfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Cinfo_Equals_m2D882FB6E58A034244EC05B2701C303C0763C3C1 (Cinfo_tED92D7CBD16BE657927A6B7DB64A22DA21EB7D32 * __this, Cinfo_tED92D7CBD16BE657927A6B7DB64A22DA21EB7D32 ___other0, const RuntimeMethod* method)
{
{
// return
// ReferenceEquals(id, other.id) &&
// #if UNITY_2020_2_OR_NEWER
// ReferenceEquals(providerType, other.providerType) &&
// ReferenceEquals(subsystemTypeOverride, other.subsystemTypeOverride) &&
// #else
// ReferenceEquals(subsystemImplementationType, other.subsystemImplementationType) &&
// #endif
// supportsMovingImages == other.supportsMovingImages &&
// requiresPhysicalImageDimensions == other.requiresPhysicalImageDimensions &&
// supportsMutableLibrary == other.supportsMutableLibrary &&
// supportsImageValidation == other.supportsImageValidation;
String_t* L_0;
L_0 = Cinfo_get_id_m7ACB39F94D161A19473B51245A60F0FE3380E9C6_inline((Cinfo_tED92D7CBD16BE657927A6B7DB64A22DA21EB7D32 *)__this, /*hidden argument*/NULL);
String_t* L_1;
L_1 = Cinfo_get_id_m7ACB39F94D161A19473B51245A60F0FE3380E9C6_inline((Cinfo_tED92D7CBD16BE657927A6B7DB64A22DA21EB7D32 *)(&___other0), /*hidden argument*/NULL);
if ((!(((RuntimeObject*)(String_t*)L_0) == ((RuntimeObject*)(String_t*)L_1))))
{
goto IL_006a;
}
}
{
Type_t * L_2;
L_2 = Cinfo_get_providerType_m865B26BBCBE9E542D09269A2CA6BD1FC47976AF2_inline((Cinfo_tED92D7CBD16BE657927A6B7DB64A22DA21EB7D32 *)__this, /*hidden argument*/NULL);
Type_t * L_3;
L_3 = Cinfo_get_providerType_m865B26BBCBE9E542D09269A2CA6BD1FC47976AF2_inline((Cinfo_tED92D7CBD16BE657927A6B7DB64A22DA21EB7D32 *)(&___other0), /*hidden argument*/NULL);
if ((!(((RuntimeObject*)(Type_t *)L_2) == ((RuntimeObject*)(Type_t *)L_3))))
{
goto IL_006a;
}
}
{
Type_t * L_4;
L_4 = Cinfo_get_subsystemTypeOverride_m0008239CE298C4881102FED287EC52224601A3A5_inline((Cinfo_tED92D7CBD16BE657927A6B7DB64A22DA21EB7D32 *)__this, /*hidden argument*/NULL);
Type_t * L_5;
L_5 = Cinfo_get_subsystemTypeOverride_m0008239CE298C4881102FED287EC52224601A3A5_inline((Cinfo_tED92D7CBD16BE657927A6B7DB64A22DA21EB7D32 *)(&___other0), /*hidden argument*/NULL);
if ((!(((RuntimeObject*)(Type_t *)L_4) == ((RuntimeObject*)(Type_t *)L_5))))
{
goto IL_006a;
}
}
{
bool L_6;
L_6 = Cinfo_get_supportsMovingImages_m7B1E2171F1304A73339266B64548CF305EFEEA91_inline((Cinfo_tED92D7CBD16BE657927A6B7DB64A22DA21EB7D32 *)__this, /*hidden argument*/NULL);
bool L_7;
L_7 = Cinfo_get_supportsMovingImages_m7B1E2171F1304A73339266B64548CF305EFEEA91_inline((Cinfo_tED92D7CBD16BE657927A6B7DB64A22DA21EB7D32 *)(&___other0), /*hidden argument*/NULL);
if ((!(((uint32_t)L_6) == ((uint32_t)L_7))))
{
goto IL_006a;
}
}
{
bool L_8;
L_8 = Cinfo_get_requiresPhysicalImageDimensions_mEED8602BF9D390F19582D3F706A9C93333AFB0C7_inline((Cinfo_tED92D7CBD16BE657927A6B7DB64A22DA21EB7D32 *)__this, /*hidden argument*/NULL);
bool L_9;
L_9 = Cinfo_get_requiresPhysicalImageDimensions_mEED8602BF9D390F19582D3F706A9C93333AFB0C7_inline((Cinfo_tED92D7CBD16BE657927A6B7DB64A22DA21EB7D32 *)(&___other0), /*hidden argument*/NULL);
if ((!(((uint32_t)L_8) == ((uint32_t)L_9))))
{
goto IL_006a;
}
}
{
bool L_10;
L_10 = Cinfo_get_supportsMutableLibrary_mCD0988DBB5810975CB97BEDD9B2E6B6C168D6E19_inline((Cinfo_tED92D7CBD16BE657927A6B7DB64A22DA21EB7D32 *)__this, /*hidden argument*/NULL);
bool L_11;
L_11 = Cinfo_get_supportsMutableLibrary_mCD0988DBB5810975CB97BEDD9B2E6B6C168D6E19_inline((Cinfo_tED92D7CBD16BE657927A6B7DB64A22DA21EB7D32 *)(&___other0), /*hidden argument*/NULL);
if ((!(((uint32_t)L_10) == ((uint32_t)L_11))))
{
goto IL_006a;
}
}
{
bool L_12;
L_12 = Cinfo_get_supportsImageValidation_m417DC16FCA795DB24C8CAA2C81A5E84855D077BD_inline((Cinfo_tED92D7CBD16BE657927A6B7DB64A22DA21EB7D32 *)__this, /*hidden argument*/NULL);
bool L_13;
L_13 = Cinfo_get_supportsImageValidation_m417DC16FCA795DB24C8CAA2C81A5E84855D077BD_inline((Cinfo_tED92D7CBD16BE657927A6B7DB64A22DA21EB7D32 *)(&___other0), /*hidden argument*/NULL);
return (bool)((((int32_t)L_12) == ((int32_t)L_13))? 1 : 0);
}
IL_006a:
{
return (bool)0;
}
}
IL2CPP_EXTERN_C bool Cinfo_Equals_m2D882FB6E58A034244EC05B2701C303C0763C3C1_AdjustorThunk (RuntimeObject * __this, Cinfo_tED92D7CBD16BE657927A6B7DB64A22DA21EB7D32 ___other0, const RuntimeMethod* method)
{
Cinfo_tED92D7CBD16BE657927A6B7DB64A22DA21EB7D32 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<Cinfo_tED92D7CBD16BE657927A6B7DB64A22DA21EB7D32 *>(__this + _offset);
bool _returnValue;
_returnValue = Cinfo_Equals_m2D882FB6E58A034244EC05B2701C303C0763C3C1(_thisAdjusted, ___other0, method);
return _returnValue;
}
// System.Boolean UnityEngine.XR.ARSubsystems.XRImageTrackingSubsystemDescriptor/Cinfo::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Cinfo_Equals_m7D227238D404DAA7ED5C72A9C3843FE6CB852ED4 (Cinfo_tED92D7CBD16BE657927A6B7DB64A22DA21EB7D32 * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Cinfo_tED92D7CBD16BE657927A6B7DB64A22DA21EB7D32_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
// public override bool Equals(object obj) => (obj is Cinfo) && Equals((Cinfo)obj);
RuntimeObject * L_0 = ___obj0;
if (!((RuntimeObject *)IsInstSealed((RuntimeObject*)L_0, Cinfo_tED92D7CBD16BE657927A6B7DB64A22DA21EB7D32_il2cpp_TypeInfo_var)))
{
goto IL_0015;
}
}
{
RuntimeObject * L_1 = ___obj0;
bool L_2;
L_2 = Cinfo_Equals_m2D882FB6E58A034244EC05B2701C303C0763C3C1((Cinfo_tED92D7CBD16BE657927A6B7DB64A22DA21EB7D32 *)__this, ((*(Cinfo_tED92D7CBD16BE657927A6B7DB64A22DA21EB7D32 *)((Cinfo_tED92D7CBD16BE657927A6B7DB64A22DA21EB7D32 *)UnBox(L_1, Cinfo_tED92D7CBD16BE657927A6B7DB64A22DA21EB7D32_il2cpp_TypeInfo_var)))), /*hidden argument*/NULL);
return L_2;
}
IL_0015:
{
return (bool)0;
}
}
IL2CPP_EXTERN_C bool Cinfo_Equals_m7D227238D404DAA7ED5C72A9C3843FE6CB852ED4_AdjustorThunk (RuntimeObject * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
Cinfo_tED92D7CBD16BE657927A6B7DB64A22DA21EB7D32 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<Cinfo_tED92D7CBD16BE657927A6B7DB64A22DA21EB7D32 *>(__this + _offset);
bool _returnValue;
_returnValue = Cinfo_Equals_m7D227238D404DAA7ED5C72A9C3843FE6CB852ED4(_thisAdjusted, ___obj0, 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
// System.Void UnityEngine.XR.ARSubsystems.XRObjectTrackingSubsystem/Provider::set_library(UnityEngine.XR.ARSubsystems.XRReferenceObjectLibrary)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Provider_set_library_mD6AF0A985F82F44B04BCA8C9BF3D053E8FF0CD86 (Provider_t35977A2A0AA6C338BC9893668DD32F0294A9C01E * __this, XRReferenceObjectLibrary_t07704B2996E507F23EE3C99CFC3BB73A83C99A7C * ___value0, const RuntimeMethod* method)
{
{
// set {}
return;
}
}
// System.Void UnityEngine.XR.ARSubsystems.XRObjectTrackingSubsystem/Provider::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Provider__ctor_m8E2A200EE478D4971BDAE03A8E40C9A0C7DBF576 (Provider_t35977A2A0AA6C338BC9893668DD32F0294A9C01E * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SubsystemProvider_1__ctor_m3216193D514525815B1785B92B434D1CB6BED267_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
SubsystemProvider_1__ctor_m3216193D514525815B1785B92B434D1CB6BED267(__this, /*hidden argument*/SubsystemProvider_1__ctor_m3216193D514525815B1785B92B434D1CB6BED267_RuntimeMethod_var);
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
// System.Boolean UnityEngine.XR.ARSubsystems.XRObjectTrackingSubsystemDescriptor/Capabilities::Equals(UnityEngine.XR.ARSubsystems.XRObjectTrackingSubsystemDescriptor/Capabilities)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Capabilities_Equals_m921C39E9F8B9A589D30635AF4D55428F9A48E9F7 (Capabilities_tC6F329DD5C73C6B9E04BE77A3AE0E52390BD8685 * __this, Capabilities_tC6F329DD5C73C6B9E04BE77A3AE0E52390BD8685 ___other0, const RuntimeMethod* method)
{
{
// public bool Equals(Capabilities other) => true;
return (bool)1;
}
}
IL2CPP_EXTERN_C bool Capabilities_Equals_m921C39E9F8B9A589D30635AF4D55428F9A48E9F7_AdjustorThunk (RuntimeObject * __this, Capabilities_tC6F329DD5C73C6B9E04BE77A3AE0E52390BD8685 ___other0, const RuntimeMethod* method)
{
Capabilities_tC6F329DD5C73C6B9E04BE77A3AE0E52390BD8685 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<Capabilities_tC6F329DD5C73C6B9E04BE77A3AE0E52390BD8685 *>(__this + _offset);
bool _returnValue;
_returnValue = Capabilities_Equals_m921C39E9F8B9A589D30635AF4D55428F9A48E9F7(_thisAdjusted, ___other0, method);
return _returnValue;
}
// System.Boolean UnityEngine.XR.ARSubsystems.XRObjectTrackingSubsystemDescriptor/Capabilities::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Capabilities_Equals_mBC54D72E0218CDA4D42F66F1B93C98E3FCC6F509 (Capabilities_tC6F329DD5C73C6B9E04BE77A3AE0E52390BD8685 * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Capabilities_tC6F329DD5C73C6B9E04BE77A3AE0E52390BD8685_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
Capabilities_tC6F329DD5C73C6B9E04BE77A3AE0E52390BD8685 V_0;
memset((&V_0), 0, sizeof(V_0));
{
// public override bool Equals(object obj) => (obj is Capabilities capabilities) && Equals(capabilities);
RuntimeObject * L_0 = ___obj0;
if (!((RuntimeObject *)IsInstSealed((RuntimeObject*)L_0, Capabilities_tC6F329DD5C73C6B9E04BE77A3AE0E52390BD8685_il2cpp_TypeInfo_var)))
{
goto IL_0017;
}
}
{
RuntimeObject * L_1 = ___obj0;
V_0 = ((*(Capabilities_tC6F329DD5C73C6B9E04BE77A3AE0E52390BD8685 *)((Capabilities_tC6F329DD5C73C6B9E04BE77A3AE0E52390BD8685 *)UnBox(L_1, Capabilities_tC6F329DD5C73C6B9E04BE77A3AE0E52390BD8685_il2cpp_TypeInfo_var))));
Capabilities_tC6F329DD5C73C6B9E04BE77A3AE0E52390BD8685 L_2 = V_0;
bool L_3;
L_3 = Capabilities_Equals_m921C39E9F8B9A589D30635AF4D55428F9A48E9F7((Capabilities_tC6F329DD5C73C6B9E04BE77A3AE0E52390BD8685 *)__this, L_2, /*hidden argument*/NULL);
return L_3;
}
IL_0017:
{
return (bool)0;
}
}
IL2CPP_EXTERN_C bool Capabilities_Equals_mBC54D72E0218CDA4D42F66F1B93C98E3FCC6F509_AdjustorThunk (RuntimeObject * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
Capabilities_tC6F329DD5C73C6B9E04BE77A3AE0E52390BD8685 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<Capabilities_tC6F329DD5C73C6B9E04BE77A3AE0E52390BD8685 *>(__this + _offset);
bool _returnValue;
_returnValue = Capabilities_Equals_mBC54D72E0218CDA4D42F66F1B93C98E3FCC6F509(_thisAdjusted, ___obj0, method);
return _returnValue;
}
// System.Int32 UnityEngine.XR.ARSubsystems.XRObjectTrackingSubsystemDescriptor/Capabilities::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Capabilities_GetHashCode_m2CC9C750B6796CBBC10A34C6E42040FCF9626FBF (Capabilities_tC6F329DD5C73C6B9E04BE77A3AE0E52390BD8685 * __this, const RuntimeMethod* method)
{
{
// public override int GetHashCode() => 0;
return 0;
}
}
IL2CPP_EXTERN_C int32_t Capabilities_GetHashCode_m2CC9C750B6796CBBC10A34C6E42040FCF9626FBF_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
Capabilities_tC6F329DD5C73C6B9E04BE77A3AE0E52390BD8685 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<Capabilities_tC6F329DD5C73C6B9E04BE77A3AE0E52390BD8685 *>(__this + _offset);
int32_t _returnValue;
_returnValue = Capabilities_GetHashCode_m2CC9C750B6796CBBC10A34C6E42040FCF9626FBF(_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
// UnityEngine.XR.ARSubsystems.HumanSegmentationStencilMode UnityEngine.XR.ARSubsystems.XROcclusionSubsystem/Provider::get_requestedHumanStencilMode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Provider_get_requestedHumanStencilMode_m89B83DF30D15B0BE8670A55F2681B0EB8A739026 (Provider_t5B60C630FB68EFEAB6FA2F3D9A732C144003B7FB * __this, const RuntimeMethod* method)
{
{
// get => HumanSegmentationStencilMode.Disabled;
return (int32_t)(0);
}
}
// System.Void UnityEngine.XR.ARSubsystems.XROcclusionSubsystem/Provider::set_requestedHumanStencilMode(UnityEngine.XR.ARSubsystems.HumanSegmentationStencilMode)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Provider_set_requestedHumanStencilMode_m17A4B7518A1749DEEF6E432E290D03D66AAB1004 (Provider_t5B60C630FB68EFEAB6FA2F3D9A732C144003B7FB * __this, int32_t ___value0, const RuntimeMethod* method)
{
{
// if (value.Enabled())
int32_t L_0 = ___value0;
bool L_1;
L_1 = SegmentationStencilModeExtension_Enabled_m8C420BAE2C6604ADCAD803BA36C2C78954B5F71E(L_0, /*hidden argument*/NULL);
if (!L_1)
{
goto IL_0013;
}
}
{
// throw new NotSupportedException("Setting human segmentation stencil to enabled is not "
// + "supported by this implementation");
NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 * L_2 = (NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339_il2cpp_TypeInfo_var)));
NotSupportedException__ctor_m40BC57BDA6E0E119B73700CC809A14B57DC65A90(L_2, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral27D4391AD2900E18D386A9155EE7DD7ADAF98FBA)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Provider_set_requestedHumanStencilMode_m17A4B7518A1749DEEF6E432E290D03D66AAB1004_RuntimeMethod_var)));
}
IL_0013:
{
// }
return;
}
}
// UnityEngine.XR.ARSubsystems.HumanSegmentationStencilMode UnityEngine.XR.ARSubsystems.XROcclusionSubsystem/Provider::get_currentHumanStencilMode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Provider_get_currentHumanStencilMode_m9DF9A52AA77E4B7E0A3ACD89887322493F53FC45 (Provider_t5B60C630FB68EFEAB6FA2F3D9A732C144003B7FB * __this, const RuntimeMethod* method)
{
{
// public virtual HumanSegmentationStencilMode currentHumanStencilMode => HumanSegmentationStencilMode.Disabled;
return (int32_t)(0);
}
}
// UnityEngine.XR.ARSubsystems.HumanSegmentationDepthMode UnityEngine.XR.ARSubsystems.XROcclusionSubsystem/Provider::get_requestedHumanDepthMode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Provider_get_requestedHumanDepthMode_m9DE747D3680A70BC6BCCC5D6FFD4F171EEB0899B (Provider_t5B60C630FB68EFEAB6FA2F3D9A732C144003B7FB * __this, const RuntimeMethod* method)
{
{
// get => HumanSegmentationDepthMode.Disabled;
return (int32_t)(0);
}
}
// System.Void UnityEngine.XR.ARSubsystems.XROcclusionSubsystem/Provider::set_requestedHumanDepthMode(UnityEngine.XR.ARSubsystems.HumanSegmentationDepthMode)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Provider_set_requestedHumanDepthMode_m90E3350AB1E861DDA9B1254B5601665484690258 (Provider_t5B60C630FB68EFEAB6FA2F3D9A732C144003B7FB * __this, int32_t ___value0, const RuntimeMethod* method)
{
{
// if (value.Enabled())
int32_t L_0 = ___value0;
bool L_1;
L_1 = SegmentationDepthModeExtension_Enabled_m3934709EF5C4CCD661E0188C103280BD96F1D9C6(L_0, /*hidden argument*/NULL);
if (!L_1)
{
goto IL_0013;
}
}
{
// throw new NotSupportedException("Setting human segmentation depth to enabled is not supported "
// + "by this implementation");
NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 * L_2 = (NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339_il2cpp_TypeInfo_var)));
NotSupportedException__ctor_m40BC57BDA6E0E119B73700CC809A14B57DC65A90(L_2, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral5DD68446F820F397860B76D203AC09BE189AC257)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Provider_set_requestedHumanDepthMode_m90E3350AB1E861DDA9B1254B5601665484690258_RuntimeMethod_var)));
}
IL_0013:
{
// }
return;
}
}
// UnityEngine.XR.ARSubsystems.HumanSegmentationDepthMode UnityEngine.XR.ARSubsystems.XROcclusionSubsystem/Provider::get_currentHumanDepthMode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Provider_get_currentHumanDepthMode_mC677BD11CFB177BD210B8F059CD169D49D8FB431 (Provider_t5B60C630FB68EFEAB6FA2F3D9A732C144003B7FB * __this, const RuntimeMethod* method)
{
{
// public virtual HumanSegmentationDepthMode currentHumanDepthMode => HumanSegmentationDepthMode.Disabled;
return (int32_t)(0);
}
}
// UnityEngine.XR.ARSubsystems.EnvironmentDepthMode UnityEngine.XR.ARSubsystems.XROcclusionSubsystem/Provider::get_requestedEnvironmentDepthMode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Provider_get_requestedEnvironmentDepthMode_mB27FC4801CC4846867255F73260835F0CAD41CA6 (Provider_t5B60C630FB68EFEAB6FA2F3D9A732C144003B7FB * __this, const RuntimeMethod* method)
{
{
// get => EnvironmentDepthMode.Disabled;
return (int32_t)(0);
}
}
// System.Void UnityEngine.XR.ARSubsystems.XROcclusionSubsystem/Provider::set_requestedEnvironmentDepthMode(UnityEngine.XR.ARSubsystems.EnvironmentDepthMode)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Provider_set_requestedEnvironmentDepthMode_mBA1103C34AA535C754E2AD417868496FA18928B5 (Provider_t5B60C630FB68EFEAB6FA2F3D9A732C144003B7FB * __this, int32_t ___value0, const RuntimeMethod* method)
{
{
// set {}
return;
}
}
// UnityEngine.XR.ARSubsystems.EnvironmentDepthMode UnityEngine.XR.ARSubsystems.XROcclusionSubsystem/Provider::get_currentEnvironmentDepthMode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Provider_get_currentEnvironmentDepthMode_m3664B08405157169A39218B4AD96286C2F089B2A (Provider_t5B60C630FB68EFEAB6FA2F3D9A732C144003B7FB * __this, const RuntimeMethod* method)
{
{
// public virtual EnvironmentDepthMode currentEnvironmentDepthMode => EnvironmentDepthMode.Disabled;
return (int32_t)(0);
}
}
// UnityEngine.XR.ARSubsystems.OcclusionPreferenceMode UnityEngine.XR.ARSubsystems.XROcclusionSubsystem/Provider::get_requestedOcclusionPreferenceMode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Provider_get_requestedOcclusionPreferenceMode_m0FF0C84504EAB9D5F2A016EBB2ACC4BDBECCF19C (Provider_t5B60C630FB68EFEAB6FA2F3D9A732C144003B7FB * __this, const RuntimeMethod* method)
{
{
// get => default(OcclusionPreferenceMode);
return (int32_t)(0);
}
}
// System.Void UnityEngine.XR.ARSubsystems.XROcclusionSubsystem/Provider::set_requestedOcclusionPreferenceMode(UnityEngine.XR.ARSubsystems.OcclusionPreferenceMode)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Provider_set_requestedOcclusionPreferenceMode_mE5DF2A581164905E51A0BC02AC1DA0D0E03D77E2 (Provider_t5B60C630FB68EFEAB6FA2F3D9A732C144003B7FB * __this, int32_t ___value0, const RuntimeMethod* method)
{
{
// set {}
return;
}
}
// UnityEngine.XR.ARSubsystems.OcclusionPreferenceMode UnityEngine.XR.ARSubsystems.XROcclusionSubsystem/Provider::get_currentOcclusionPreferenceMode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Provider_get_currentOcclusionPreferenceMode_m216AA7572FF205318FD726F0BF8DE48715987F9E (Provider_t5B60C630FB68EFEAB6FA2F3D9A732C144003B7FB * __this, const RuntimeMethod* method)
{
{
// public virtual OcclusionPreferenceMode currentOcclusionPreferenceMode => default(OcclusionPreferenceMode);
return (int32_t)(0);
}
}
// System.Boolean UnityEngine.XR.ARSubsystems.XROcclusionSubsystem/Provider::TryGetHumanStencil(UnityEngine.XR.ARSubsystems.XRTextureDescriptor&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Provider_TryGetHumanStencil_m8231857EC5143647F85BB79A29BAC18430821D36 (Provider_t5B60C630FB68EFEAB6FA2F3D9A732C144003B7FB * __this, XRTextureDescriptor_t9CA857DCCC1208B74376787BE4F3008A01B29A57 * ___humanStencilDescriptor0, const RuntimeMethod* method)
{
{
// => throw new NotSupportedException("human stencil texture is not supported by this implementation");
NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 * L_0 = (NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339_il2cpp_TypeInfo_var)));
NotSupportedException__ctor_m40BC57BDA6E0E119B73700CC809A14B57DC65A90(L_0, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral774435CB0ABA1D212CE35028C45598E01E1A4BF6)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Provider_TryGetHumanStencil_m8231857EC5143647F85BB79A29BAC18430821D36_RuntimeMethod_var)));
}
}
// System.Boolean UnityEngine.XR.ARSubsystems.XROcclusionSubsystem/Provider::TryAcquireHumanStencilCpuImage(UnityEngine.XR.ARSubsystems.XRCpuImage/Cinfo&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Provider_TryAcquireHumanStencilCpuImage_mC6011EC7798D37065264EE243943E90D1E6B71FD (Provider_t5B60C630FB68EFEAB6FA2F3D9A732C144003B7FB * __this, Cinfo_t4E32E30AF6973611F1DD0F47FC041ED3A8775DA6 * ___cinfo0, const RuntimeMethod* method)
{
{
// => throw new NotSupportedException("Human stencil CPU images are not supported by this implementation.");
NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 * L_0 = (NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339_il2cpp_TypeInfo_var)));
NotSupportedException__ctor_m40BC57BDA6E0E119B73700CC809A14B57DC65A90(L_0, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral447993BB9CCC280BD731A90A94EAA3AC0C8F2B2C)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Provider_TryAcquireHumanStencilCpuImage_mC6011EC7798D37065264EE243943E90D1E6B71FD_RuntimeMethod_var)));
}
}
// UnityEngine.XR.ARSubsystems.XRCpuImage/Api UnityEngine.XR.ARSubsystems.XROcclusionSubsystem/Provider::get_humanStencilCpuImageApi()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Api_t7C92F00C6416A2C636A44AAC833C3773C567DC3E * Provider_get_humanStencilCpuImageApi_m4CCDB03AAC405F55F90907E1AAB9328D86C740F2 (Provider_t5B60C630FB68EFEAB6FA2F3D9A732C144003B7FB * __this, const RuntimeMethod* method)
{
{
// public virtual XRCpuImage.Api humanStencilCpuImageApi => null;
return (Api_t7C92F00C6416A2C636A44AAC833C3773C567DC3E *)NULL;
}
}
// System.Boolean UnityEngine.XR.ARSubsystems.XROcclusionSubsystem/Provider::TryGetHumanDepth(UnityEngine.XR.ARSubsystems.XRTextureDescriptor&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Provider_TryGetHumanDepth_m4F902130B0B684322ACE0F2D7F72F412F5D42844 (Provider_t5B60C630FB68EFEAB6FA2F3D9A732C144003B7FB * __this, XRTextureDescriptor_t9CA857DCCC1208B74376787BE4F3008A01B29A57 * ___humanDepthDescriptor0, const RuntimeMethod* method)
{
{
// => throw new NotSupportedException("human depth texture is not supported by this implementation");
NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 * L_0 = (NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339_il2cpp_TypeInfo_var)));
NotSupportedException__ctor_m40BC57BDA6E0E119B73700CC809A14B57DC65A90(L_0, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral15E540EE340CABF2AEBFAE9C5DC5176C42795209)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Provider_TryGetHumanDepth_m4F902130B0B684322ACE0F2D7F72F412F5D42844_RuntimeMethod_var)));
}
}
// System.Boolean UnityEngine.XR.ARSubsystems.XROcclusionSubsystem/Provider::TryAcquireHumanDepthCpuImage(UnityEngine.XR.ARSubsystems.XRCpuImage/Cinfo&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Provider_TryAcquireHumanDepthCpuImage_mD9C2C05795A09F724FA8FCCE18C32CD2F5B66F0F (Provider_t5B60C630FB68EFEAB6FA2F3D9A732C144003B7FB * __this, Cinfo_t4E32E30AF6973611F1DD0F47FC041ED3A8775DA6 * ___cinfo0, const RuntimeMethod* method)
{
{
// => throw new NotSupportedException("Human depth CPU images are not supported by this implementation.");
NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 * L_0 = (NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339_il2cpp_TypeInfo_var)));
NotSupportedException__ctor_m40BC57BDA6E0E119B73700CC809A14B57DC65A90(L_0, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral4110120B3B41A2DDAFF9CBA0B77F7BE9DDBB53B3)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Provider_TryAcquireHumanDepthCpuImage_mD9C2C05795A09F724FA8FCCE18C32CD2F5B66F0F_RuntimeMethod_var)));
}
}
// UnityEngine.XR.ARSubsystems.XRCpuImage/Api UnityEngine.XR.ARSubsystems.XROcclusionSubsystem/Provider::get_humanDepthCpuImageApi()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Api_t7C92F00C6416A2C636A44AAC833C3773C567DC3E * Provider_get_humanDepthCpuImageApi_mF6C1BB545272C0EB05D995FE27A499C887F46BA9 (Provider_t5B60C630FB68EFEAB6FA2F3D9A732C144003B7FB * __this, const RuntimeMethod* method)
{
{
// public virtual XRCpuImage.Api humanDepthCpuImageApi => null;
return (Api_t7C92F00C6416A2C636A44AAC833C3773C567DC3E *)NULL;
}
}
// System.Boolean UnityEngine.XR.ARSubsystems.XROcclusionSubsystem/Provider::TryGetEnvironmentDepth(UnityEngine.XR.ARSubsystems.XRTextureDescriptor&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Provider_TryGetEnvironmentDepth_m39AA20EFA2DB7D68364B4D677731911BB9B95987 (Provider_t5B60C630FB68EFEAB6FA2F3D9A732C144003B7FB * __this, XRTextureDescriptor_t9CA857DCCC1208B74376787BE4F3008A01B29A57 * ___environmentDepthDescriptor0, const RuntimeMethod* method)
{
{
// => throw new NotSupportedException("environment depth texture is not supported by this implementation");
NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 * L_0 = (NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339_il2cpp_TypeInfo_var)));
NotSupportedException__ctor_m40BC57BDA6E0E119B73700CC809A14B57DC65A90(L_0, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral3194FD2CE283EE4DDE49298AADE96B77975C46E5)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Provider_TryGetEnvironmentDepth_m39AA20EFA2DB7D68364B4D677731911BB9B95987_RuntimeMethod_var)));
}
}
// System.Boolean UnityEngine.XR.ARSubsystems.XROcclusionSubsystem/Provider::TryAcquireEnvironmentDepthCpuImage(UnityEngine.XR.ARSubsystems.XRCpuImage/Cinfo&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Provider_TryAcquireEnvironmentDepthCpuImage_m038A771570F8067187EA5602FE6287D7F32A8BA4 (Provider_t5B60C630FB68EFEAB6FA2F3D9A732C144003B7FB * __this, Cinfo_t4E32E30AF6973611F1DD0F47FC041ED3A8775DA6 * ___cinfo0, const RuntimeMethod* method)
{
{
// => throw new NotSupportedException("Environment depth CPU images are not supported by this implementation.");
NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 * L_0 = (NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339_il2cpp_TypeInfo_var)));
NotSupportedException__ctor_m40BC57BDA6E0E119B73700CC809A14B57DC65A90(L_0, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral773B3E33BD417BDFC3619000108985CB0FF49E77)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Provider_TryAcquireEnvironmentDepthCpuImage_m038A771570F8067187EA5602FE6287D7F32A8BA4_RuntimeMethod_var)));
}
}
// UnityEngine.XR.ARSubsystems.XRCpuImage/Api UnityEngine.XR.ARSubsystems.XROcclusionSubsystem/Provider::get_environmentDepthCpuImageApi()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Api_t7C92F00C6416A2C636A44AAC833C3773C567DC3E * Provider_get_environmentDepthCpuImageApi_mF69078CBA7922A4F92C7D8B9359511DA16BB7117 (Provider_t5B60C630FB68EFEAB6FA2F3D9A732C144003B7FB * __this, const RuntimeMethod* method)
{
{
// public virtual XRCpuImage.Api environmentDepthCpuImageApi => null;
return (Api_t7C92F00C6416A2C636A44AAC833C3773C567DC3E *)NULL;
}
}
// System.Boolean UnityEngine.XR.ARSubsystems.XROcclusionSubsystem/Provider::TryGetEnvironmentDepthConfidence(UnityEngine.XR.ARSubsystems.XRTextureDescriptor&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Provider_TryGetEnvironmentDepthConfidence_mB12E08E4B93E1272976BE1F0C09592133B93848F (Provider_t5B60C630FB68EFEAB6FA2F3D9A732C144003B7FB * __this, XRTextureDescriptor_t9CA857DCCC1208B74376787BE4F3008A01B29A57 * ___environmentDepthConfidenceDescriptor0, const RuntimeMethod* method)
{
{
// => throw new NotSupportedException("environment depth confidence texture is not supported by this implementation");
NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 * L_0 = (NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339_il2cpp_TypeInfo_var)));
NotSupportedException__ctor_m40BC57BDA6E0E119B73700CC809A14B57DC65A90(L_0, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral87C47688E7FBA919124B1A1D7B77CE47A06E36A2)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Provider_TryGetEnvironmentDepthConfidence_mB12E08E4B93E1272976BE1F0C09592133B93848F_RuntimeMethod_var)));
}
}
// System.Boolean UnityEngine.XR.ARSubsystems.XROcclusionSubsystem/Provider::TryAcquireEnvironmentDepthConfidenceCpuImage(UnityEngine.XR.ARSubsystems.XRCpuImage/Cinfo&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Provider_TryAcquireEnvironmentDepthConfidenceCpuImage_mC0A1389DBA1C968C2E998C406852881E0F6089FE (Provider_t5B60C630FB68EFEAB6FA2F3D9A732C144003B7FB * __this, Cinfo_t4E32E30AF6973611F1DD0F47FC041ED3A8775DA6 * ___cinfo0, const RuntimeMethod* method)
{
{
// => throw new NotSupportedException("Environment depth CPU images are not supported by this implementation.");
NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 * L_0 = (NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339_il2cpp_TypeInfo_var)));
NotSupportedException__ctor_m40BC57BDA6E0E119B73700CC809A14B57DC65A90(L_0, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral773B3E33BD417BDFC3619000108985CB0FF49E77)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Provider_TryAcquireEnvironmentDepthConfidenceCpuImage_mC0A1389DBA1C968C2E998C406852881E0F6089FE_RuntimeMethod_var)));
}
}
// UnityEngine.XR.ARSubsystems.XRCpuImage/Api UnityEngine.XR.ARSubsystems.XROcclusionSubsystem/Provider::get_environmentDepthConfidenceCpuImageApi()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Api_t7C92F00C6416A2C636A44AAC833C3773C567DC3E * Provider_get_environmentDepthConfidenceCpuImageApi_mEBEAA0B71D94E7A69392061521D045FCE2750CE6 (Provider_t5B60C630FB68EFEAB6FA2F3D9A732C144003B7FB * __this, const RuntimeMethod* method)
{
{
// public virtual XRCpuImage.Api environmentDepthConfidenceCpuImageApi => null;
return (Api_t7C92F00C6416A2C636A44AAC833C3773C567DC3E *)NULL;
}
}
// Unity.Collections.NativeArray`1<UnityEngine.XR.ARSubsystems.XRTextureDescriptor> UnityEngine.XR.ARSubsystems.XROcclusionSubsystem/Provider::GetTextureDescriptors(UnityEngine.XR.ARSubsystems.XRTextureDescriptor,Unity.Collections.Allocator)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NativeArray_1_t290DD5A348463DD4415AFE27775047312478F952 Provider_GetTextureDescriptors_mE2329867DDA41B3F1110DAF5081D3FD427191C85 (Provider_t5B60C630FB68EFEAB6FA2F3D9A732C144003B7FB * __this, XRTextureDescriptor_t9CA857DCCC1208B74376787BE4F3008A01B29A57 ___defaultDescriptor0, int32_t ___allocator1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NativeArray_1__ctor_m2BCB109D4076B26086589A4C8600C49A9F38FA7A_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
// => new NativeArray<XRTextureDescriptor>(0, allocator);
int32_t L_0 = ___allocator1;
NativeArray_1_t290DD5A348463DD4415AFE27775047312478F952 L_1;
memset((&L_1), 0, sizeof(L_1));
NativeArray_1__ctor_m2BCB109D4076B26086589A4C8600C49A9F38FA7A((&L_1), 0, L_0, 1, /*hidden argument*/NativeArray_1__ctor_m2BCB109D4076B26086589A4C8600C49A9F38FA7A_RuntimeMethod_var);
return L_1;
}
}
// System.Void UnityEngine.XR.ARSubsystems.XROcclusionSubsystem/Provider::GetMaterialKeywords(System.Collections.Generic.List`1<System.String>&,System.Collections.Generic.List`1<System.String>&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Provider_GetMaterialKeywords_mF75D36CB409D853AD7AF66D9E8E0665C63E1AA8D (Provider_t5B60C630FB68EFEAB6FA2F3D9A732C144003B7FB * __this, List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3 ** ___enabledKeywords0, List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3 ** ___disabledKeywords1, const RuntimeMethod* method)
{
{
// enabledKeywords = null;
List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3 ** L_0 = ___enabledKeywords0;
*((RuntimeObject **)L_0) = (RuntimeObject *)NULL;
Il2CppCodeGenWriteBarrier((void**)(RuntimeObject **)L_0, (void*)(RuntimeObject *)NULL);
// disabledKeywords = null;
List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3 ** L_1 = ___disabledKeywords1;
*((RuntimeObject **)L_1) = (RuntimeObject *)NULL;
Il2CppCodeGenWriteBarrier((void**)(RuntimeObject **)L_1, (void*)(RuntimeObject *)NULL);
// }
return;
}
}
// System.Void UnityEngine.XR.ARSubsystems.XROcclusionSubsystem/Provider::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Provider__ctor_m4B36FAF10D278F373035E446EFFC7C4C5B32C4FD (Provider_t5B60C630FB68EFEAB6FA2F3D9A732C144003B7FB * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SubsystemProvider_1__ctor_m85B436C396E4816D5D62F8595921E532535FA734_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
SubsystemProvider_1__ctor_m85B436C396E4816D5D62F8595921E532535FA734(__this, /*hidden argument*/SubsystemProvider_1__ctor_m85B436C396E4816D5D62F8595921E532535FA734_RuntimeMethod_var);
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
// System.Void UnityEngine.XR.ARSubsystems.XRParticipantSubsystem/Provider::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Provider__ctor_m29C158581A2B8BF6DE3F03DDACC1A2F8FFB1F875 (Provider_t1D0BC515976D24FD30341AC456ACFCB2DE4A344E * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SubsystemProvider_1__ctor_m83A2BF40051F2545CECFD837C92DF3AB37758AFA_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
SubsystemProvider_1__ctor_m83A2BF40051F2545CECFD837C92DF3AB37758AFA(__this, /*hidden argument*/SubsystemProvider_1__ctor_m83A2BF40051F2545CECFD837C92DF3AB37758AFA_RuntimeMethod_var);
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
// System.Void UnityEngine.XR.ARSubsystems.XRPlaneSubsystem/Provider::GetBoundary(UnityEngine.XR.ARSubsystems.TrackableId,Unity.Collections.Allocator,Unity.Collections.NativeArray`1<UnityEngine.Vector2>&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Provider_GetBoundary_mFEC076BA5F9EAEFB5CFD36A8A690CD6B9449A45A (Provider_t6CB5B1036B0AAED1379F3828D695A6942B72BA12 * __this, TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B ___trackableId0, int32_t ___allocator1, NativeArray_1_t431C85F30275831D1F5D458AB73DFCE050693BC0 * ___boundary2, const RuntimeMethod* method)
{
{
// throw new NotSupportedException("Boundary vertices are not supported.");
NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 * L_0 = (NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339_il2cpp_TypeInfo_var)));
NotSupportedException__ctor_m40BC57BDA6E0E119B73700CC809A14B57DC65A90(L_0, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral16B03B9B09A75749753D1BD8C49C3482ED00598A)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Provider_GetBoundary_mFEC076BA5F9EAEFB5CFD36A8A690CD6B9449A45A_RuntimeMethod_var)));
}
}
// UnityEngine.XR.ARSubsystems.PlaneDetectionMode UnityEngine.XR.ARSubsystems.XRPlaneSubsystem/Provider::get_requestedPlaneDetectionMode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Provider_get_requestedPlaneDetectionMode_mBE4A83FB233470D747D0F6E6435062F0B076D787 (Provider_t6CB5B1036B0AAED1379F3828D695A6942B72BA12 * __this, const RuntimeMethod* method)
{
{
// get => PlaneDetectionMode.None;
return (int32_t)(0);
}
}
// System.Void UnityEngine.XR.ARSubsystems.XRPlaneSubsystem/Provider::set_requestedPlaneDetectionMode(UnityEngine.XR.ARSubsystems.PlaneDetectionMode)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Provider_set_requestedPlaneDetectionMode_m6F76C54F3DDC0811336F80D6CF40CBC64147DAD9 (Provider_t6CB5B1036B0AAED1379F3828D695A6942B72BA12 * __this, int32_t ___value0, const RuntimeMethod* method)
{
{
// if (value != PlaneDetectionMode.None)
int32_t L_0 = ___value0;
if (!L_0)
{
goto IL_000e;
}
}
{
// throw new NotSupportedException("Plane detection is not supported.");
NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 * L_1 = (NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339_il2cpp_TypeInfo_var)));
NotSupportedException__ctor_m40BC57BDA6E0E119B73700CC809A14B57DC65A90(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralED9546C195BD4988B71713BD762B7E7F364227ED)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Provider_set_requestedPlaneDetectionMode_m6F76C54F3DDC0811336F80D6CF40CBC64147DAD9_RuntimeMethod_var)));
}
IL_000e:
{
// }
return;
}
}
// UnityEngine.XR.ARSubsystems.PlaneDetectionMode UnityEngine.XR.ARSubsystems.XRPlaneSubsystem/Provider::get_currentPlaneDetectionMode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Provider_get_currentPlaneDetectionMode_m6409F5A32746AC3BAB7876DEDF7A9CA5C27CDFF2 (Provider_t6CB5B1036B0AAED1379F3828D695A6942B72BA12 * __this, const RuntimeMethod* method)
{
{
// public virtual PlaneDetectionMode currentPlaneDetectionMode => PlaneDetectionMode.None;
return (int32_t)(0);
}
}
// System.Void UnityEngine.XR.ARSubsystems.XRPlaneSubsystem/Provider::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Provider__ctor_mDEDB208301BBA3CC96FFF2DA6AC90F5D241CE524 (Provider_t6CB5B1036B0AAED1379F3828D695A6942B72BA12 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SubsystemProvider_1__ctor_mDB4B33AED139FADE39F8488116F811DA2F601EAF_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
SubsystemProvider_1__ctor_mDB4B33AED139FADE39F8488116F811DA2F601EAF(__this, /*hidden argument*/SubsystemProvider_1__ctor_mDB4B33AED139FADE39F8488116F811DA2F601EAF_RuntimeMethod_var);
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
// Conversion methods for marshalling of: UnityEngine.XR.ARSubsystems.XRPlaneSubsystemDescriptor/Cinfo
IL2CPP_EXTERN_C void Cinfo_tC49A76BF09DB3F926B17955E1B8D729DC9B272AD_marshal_pinvoke(const Cinfo_tC49A76BF09DB3F926B17955E1B8D729DC9B272AD& unmarshaled, Cinfo_tC49A76BF09DB3F926B17955E1B8D729DC9B272AD_marshaled_pinvoke& marshaled)
{
Exception_t* ___U3CproviderTypeU3Ek__BackingField_1Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field '<providerType>k__BackingField' of type 'Cinfo': Reference type field marshaling is not supported.");
IL2CPP_RAISE_MANAGED_EXCEPTION(___U3CproviderTypeU3Ek__BackingField_1Exception, NULL);
}
IL2CPP_EXTERN_C void Cinfo_tC49A76BF09DB3F926B17955E1B8D729DC9B272AD_marshal_pinvoke_back(const Cinfo_tC49A76BF09DB3F926B17955E1B8D729DC9B272AD_marshaled_pinvoke& marshaled, Cinfo_tC49A76BF09DB3F926B17955E1B8D729DC9B272AD& unmarshaled)
{
Exception_t* ___U3CproviderTypeU3Ek__BackingField_1Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field '<providerType>k__BackingField' of type 'Cinfo': Reference type field marshaling is not supported.");
IL2CPP_RAISE_MANAGED_EXCEPTION(___U3CproviderTypeU3Ek__BackingField_1Exception, NULL);
}
// Conversion method for clean up from marshalling of: UnityEngine.XR.ARSubsystems.XRPlaneSubsystemDescriptor/Cinfo
IL2CPP_EXTERN_C void Cinfo_tC49A76BF09DB3F926B17955E1B8D729DC9B272AD_marshal_pinvoke_cleanup(Cinfo_tC49A76BF09DB3F926B17955E1B8D729DC9B272AD_marshaled_pinvoke& marshaled)
{
}
// Conversion methods for marshalling of: UnityEngine.XR.ARSubsystems.XRPlaneSubsystemDescriptor/Cinfo
IL2CPP_EXTERN_C void Cinfo_tC49A76BF09DB3F926B17955E1B8D729DC9B272AD_marshal_com(const Cinfo_tC49A76BF09DB3F926B17955E1B8D729DC9B272AD& unmarshaled, Cinfo_tC49A76BF09DB3F926B17955E1B8D729DC9B272AD_marshaled_com& marshaled)
{
Exception_t* ___U3CproviderTypeU3Ek__BackingField_1Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field '<providerType>k__BackingField' of type 'Cinfo': Reference type field marshaling is not supported.");
IL2CPP_RAISE_MANAGED_EXCEPTION(___U3CproviderTypeU3Ek__BackingField_1Exception, NULL);
}
IL2CPP_EXTERN_C void Cinfo_tC49A76BF09DB3F926B17955E1B8D729DC9B272AD_marshal_com_back(const Cinfo_tC49A76BF09DB3F926B17955E1B8D729DC9B272AD_marshaled_com& marshaled, Cinfo_tC49A76BF09DB3F926B17955E1B8D729DC9B272AD& unmarshaled)
{
Exception_t* ___U3CproviderTypeU3Ek__BackingField_1Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field '<providerType>k__BackingField' of type 'Cinfo': Reference type field marshaling is not supported.");
IL2CPP_RAISE_MANAGED_EXCEPTION(___U3CproviderTypeU3Ek__BackingField_1Exception, NULL);
}
// Conversion method for clean up from marshalling of: UnityEngine.XR.ARSubsystems.XRPlaneSubsystemDescriptor/Cinfo
IL2CPP_EXTERN_C void Cinfo_tC49A76BF09DB3F926B17955E1B8D729DC9B272AD_marshal_com_cleanup(Cinfo_tC49A76BF09DB3F926B17955E1B8D729DC9B272AD_marshaled_com& marshaled)
{
}
// System.String UnityEngine.XR.ARSubsystems.XRPlaneSubsystemDescriptor/Cinfo::get_id()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Cinfo_get_id_m62022D2EE6912F0B1BDBCA687A4FC63321DE3F86 (Cinfo_tC49A76BF09DB3F926B17955E1B8D729DC9B272AD * __this, const RuntimeMethod* method)
{
{
// public string id { get; set; }
String_t* L_0 = __this->get_U3CidU3Ek__BackingField_0();
return L_0;
}
}
IL2CPP_EXTERN_C String_t* Cinfo_get_id_m62022D2EE6912F0B1BDBCA687A4FC63321DE3F86_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
Cinfo_tC49A76BF09DB3F926B17955E1B8D729DC9B272AD * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<Cinfo_tC49A76BF09DB3F926B17955E1B8D729DC9B272AD *>(__this + _offset);
String_t* _returnValue;
_returnValue = Cinfo_get_id_m62022D2EE6912F0B1BDBCA687A4FC63321DE3F86_inline(_thisAdjusted, method);
return _returnValue;
}
// System.Void UnityEngine.XR.ARSubsystems.XRPlaneSubsystemDescriptor/Cinfo::set_id(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Cinfo_set_id_m940361693A3C925B2180733D87611B5FDF0357D7 (Cinfo_tC49A76BF09DB3F926B17955E1B8D729DC9B272AD * __this, String_t* ___value0, const RuntimeMethod* method)
{
{
// public string id { get; set; }
String_t* L_0 = ___value0;
__this->set_U3CidU3Ek__BackingField_0(L_0);
return;
}
}
IL2CPP_EXTERN_C void Cinfo_set_id_m940361693A3C925B2180733D87611B5FDF0357D7_AdjustorThunk (RuntimeObject * __this, String_t* ___value0, const RuntimeMethod* method)
{
Cinfo_tC49A76BF09DB3F926B17955E1B8D729DC9B272AD * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<Cinfo_tC49A76BF09DB3F926B17955E1B8D729DC9B272AD *>(__this + _offset);
Cinfo_set_id_m940361693A3C925B2180733D87611B5FDF0357D7_inline(_thisAdjusted, ___value0, method);
}
// System.Type UnityEngine.XR.ARSubsystems.XRPlaneSubsystemDescriptor/Cinfo::get_providerType()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t * Cinfo_get_providerType_m496CFFD5CAAF878266582DECEC5CDFB92A9C0A55 (Cinfo_tC49A76BF09DB3F926B17955E1B8D729DC9B272AD * __this, const RuntimeMethod* method)
{
{
// public Type providerType { get; set; }
Type_t * L_0 = __this->get_U3CproviderTypeU3Ek__BackingField_1();
return L_0;
}
}
IL2CPP_EXTERN_C Type_t * Cinfo_get_providerType_m496CFFD5CAAF878266582DECEC5CDFB92A9C0A55_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
Cinfo_tC49A76BF09DB3F926B17955E1B8D729DC9B272AD * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<Cinfo_tC49A76BF09DB3F926B17955E1B8D729DC9B272AD *>(__this + _offset);
Type_t * _returnValue;
_returnValue = Cinfo_get_providerType_m496CFFD5CAAF878266582DECEC5CDFB92A9C0A55_inline(_thisAdjusted, method);
return _returnValue;
}
// System.Void UnityEngine.XR.ARSubsystems.XRPlaneSubsystemDescriptor/Cinfo::set_providerType(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Cinfo_set_providerType_m8B6A7EE025CCB9B5B5E26E6F4C779DFE09955744 (Cinfo_tC49A76BF09DB3F926B17955E1B8D729DC9B272AD * __this, Type_t * ___value0, const RuntimeMethod* method)
{
{
// public Type providerType { get; set; }
Type_t * L_0 = ___value0;
__this->set_U3CproviderTypeU3Ek__BackingField_1(L_0);
return;
}
}
IL2CPP_EXTERN_C void Cinfo_set_providerType_m8B6A7EE025CCB9B5B5E26E6F4C779DFE09955744_AdjustorThunk (RuntimeObject * __this, Type_t * ___value0, const RuntimeMethod* method)
{
Cinfo_tC49A76BF09DB3F926B17955E1B8D729DC9B272AD * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<Cinfo_tC49A76BF09DB3F926B17955E1B8D729DC9B272AD *>(__this + _offset);
Cinfo_set_providerType_m8B6A7EE025CCB9B5B5E26E6F4C779DFE09955744_inline(_thisAdjusted, ___value0, method);
}
// System.Type UnityEngine.XR.ARSubsystems.XRPlaneSubsystemDescriptor/Cinfo::get_subsystemTypeOverride()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t * Cinfo_get_subsystemTypeOverride_m67ACD12818B5C91D42707639EA205E13BB15171A (Cinfo_tC49A76BF09DB3F926B17955E1B8D729DC9B272AD * __this, const RuntimeMethod* method)
{
{
// public Type subsystemTypeOverride { get; set; }
Type_t * L_0 = __this->get_U3CsubsystemTypeOverrideU3Ek__BackingField_2();
return L_0;
}
}
IL2CPP_EXTERN_C Type_t * Cinfo_get_subsystemTypeOverride_m67ACD12818B5C91D42707639EA205E13BB15171A_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
Cinfo_tC49A76BF09DB3F926B17955E1B8D729DC9B272AD * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<Cinfo_tC49A76BF09DB3F926B17955E1B8D729DC9B272AD *>(__this + _offset);
Type_t * _returnValue;
_returnValue = Cinfo_get_subsystemTypeOverride_m67ACD12818B5C91D42707639EA205E13BB15171A_inline(_thisAdjusted, method);
return _returnValue;
}
// System.Void UnityEngine.XR.ARSubsystems.XRPlaneSubsystemDescriptor/Cinfo::set_subsystemTypeOverride(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Cinfo_set_subsystemTypeOverride_mBC4F1CC20B4DF3D551BAFC1C38245F457E262A58 (Cinfo_tC49A76BF09DB3F926B17955E1B8D729DC9B272AD * __this, Type_t * ___value0, const RuntimeMethod* method)
{
{
// public Type subsystemTypeOverride { get; set; }
Type_t * L_0 = ___value0;
__this->set_U3CsubsystemTypeOverrideU3Ek__BackingField_2(L_0);
return;
}
}
IL2CPP_EXTERN_C void Cinfo_set_subsystemTypeOverride_mBC4F1CC20B4DF3D551BAFC1C38245F457E262A58_AdjustorThunk (RuntimeObject * __this, Type_t * ___value0, const RuntimeMethod* method)
{
Cinfo_tC49A76BF09DB3F926B17955E1B8D729DC9B272AD * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<Cinfo_tC49A76BF09DB3F926B17955E1B8D729DC9B272AD *>(__this + _offset);
Cinfo_set_subsystemTypeOverride_mBC4F1CC20B4DF3D551BAFC1C38245F457E262A58_inline(_thisAdjusted, ___value0, method);
}
// System.Boolean UnityEngine.XR.ARSubsystems.XRPlaneSubsystemDescriptor/Cinfo::get_supportsHorizontalPlaneDetection()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Cinfo_get_supportsHorizontalPlaneDetection_mBC3012C667106D47D9429F9C8001774038A38216 (Cinfo_tC49A76BF09DB3F926B17955E1B8D729DC9B272AD * __this, const RuntimeMethod* method)
{
{
// public bool supportsHorizontalPlaneDetection { get; set; }
bool L_0 = __this->get_U3CsupportsHorizontalPlaneDetectionU3Ek__BackingField_4();
return L_0;
}
}
IL2CPP_EXTERN_C bool Cinfo_get_supportsHorizontalPlaneDetection_mBC3012C667106D47D9429F9C8001774038A38216_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
Cinfo_tC49A76BF09DB3F926B17955E1B8D729DC9B272AD * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<Cinfo_tC49A76BF09DB3F926B17955E1B8D729DC9B272AD *>(__this + _offset);
bool _returnValue;
_returnValue = Cinfo_get_supportsHorizontalPlaneDetection_mBC3012C667106D47D9429F9C8001774038A38216_inline(_thisAdjusted, method);
return _returnValue;
}
// System.Void UnityEngine.XR.ARSubsystems.XRPlaneSubsystemDescriptor/Cinfo::set_supportsHorizontalPlaneDetection(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Cinfo_set_supportsHorizontalPlaneDetection_mBC9B4572592B71328A96AF58DEB047528470C440 (Cinfo_tC49A76BF09DB3F926B17955E1B8D729DC9B272AD * __this, bool ___value0, const RuntimeMethod* method)
{
{
// public bool supportsHorizontalPlaneDetection { get; set; }
bool L_0 = ___value0;
__this->set_U3CsupportsHorizontalPlaneDetectionU3Ek__BackingField_4(L_0);
return;
}
}
IL2CPP_EXTERN_C void Cinfo_set_supportsHorizontalPlaneDetection_mBC9B4572592B71328A96AF58DEB047528470C440_AdjustorThunk (RuntimeObject * __this, bool ___value0, const RuntimeMethod* method)
{
Cinfo_tC49A76BF09DB3F926B17955E1B8D729DC9B272AD * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<Cinfo_tC49A76BF09DB3F926B17955E1B8D729DC9B272AD *>(__this + _offset);
Cinfo_set_supportsHorizontalPlaneDetection_mBC9B4572592B71328A96AF58DEB047528470C440_inline(_thisAdjusted, ___value0, method);
}
// System.Boolean UnityEngine.XR.ARSubsystems.XRPlaneSubsystemDescriptor/Cinfo::get_supportsVerticalPlaneDetection()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Cinfo_get_supportsVerticalPlaneDetection_m4E3BE200E11784D049B94A054F15E4C76D29D7C6 (Cinfo_tC49A76BF09DB3F926B17955E1B8D729DC9B272AD * __this, const RuntimeMethod* method)
{
{
// public bool supportsVerticalPlaneDetection { get; set; }
bool L_0 = __this->get_U3CsupportsVerticalPlaneDetectionU3Ek__BackingField_5();
return L_0;
}
}
IL2CPP_EXTERN_C bool Cinfo_get_supportsVerticalPlaneDetection_m4E3BE200E11784D049B94A054F15E4C76D29D7C6_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
Cinfo_tC49A76BF09DB3F926B17955E1B8D729DC9B272AD * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<Cinfo_tC49A76BF09DB3F926B17955E1B8D729DC9B272AD *>(__this + _offset);
bool _returnValue;
_returnValue = Cinfo_get_supportsVerticalPlaneDetection_m4E3BE200E11784D049B94A054F15E4C76D29D7C6_inline(_thisAdjusted, method);
return _returnValue;
}
// System.Void UnityEngine.XR.ARSubsystems.XRPlaneSubsystemDescriptor/Cinfo::set_supportsVerticalPlaneDetection(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Cinfo_set_supportsVerticalPlaneDetection_mFF310EF7B9F8D9C9F9689CF9D1D2BEDDFF93F9F0 (Cinfo_tC49A76BF09DB3F926B17955E1B8D729DC9B272AD * __this, bool ___value0, const RuntimeMethod* method)
{
{
// public bool supportsVerticalPlaneDetection { get; set; }
bool L_0 = ___value0;
__this->set_U3CsupportsVerticalPlaneDetectionU3Ek__BackingField_5(L_0);
return;
}
}
IL2CPP_EXTERN_C void Cinfo_set_supportsVerticalPlaneDetection_mFF310EF7B9F8D9C9F9689CF9D1D2BEDDFF93F9F0_AdjustorThunk (RuntimeObject * __this, bool ___value0, const RuntimeMethod* method)
{
Cinfo_tC49A76BF09DB3F926B17955E1B8D729DC9B272AD * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<Cinfo_tC49A76BF09DB3F926B17955E1B8D729DC9B272AD *>(__this + _offset);
Cinfo_set_supportsVerticalPlaneDetection_mFF310EF7B9F8D9C9F9689CF9D1D2BEDDFF93F9F0_inline(_thisAdjusted, ___value0, method);
}
// System.Boolean UnityEngine.XR.ARSubsystems.XRPlaneSubsystemDescriptor/Cinfo::get_supportsArbitraryPlaneDetection()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Cinfo_get_supportsArbitraryPlaneDetection_mF6CB379C9781FE8B8473949DA99196508EF91DB5 (Cinfo_tC49A76BF09DB3F926B17955E1B8D729DC9B272AD * __this, const RuntimeMethod* method)
{
{
// public bool supportsArbitraryPlaneDetection { get; set; }
bool L_0 = __this->get_U3CsupportsArbitraryPlaneDetectionU3Ek__BackingField_6();
return L_0;
}
}
IL2CPP_EXTERN_C bool Cinfo_get_supportsArbitraryPlaneDetection_mF6CB379C9781FE8B8473949DA99196508EF91DB5_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
Cinfo_tC49A76BF09DB3F926B17955E1B8D729DC9B272AD * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<Cinfo_tC49A76BF09DB3F926B17955E1B8D729DC9B272AD *>(__this + _offset);
bool _returnValue;
_returnValue = Cinfo_get_supportsArbitraryPlaneDetection_mF6CB379C9781FE8B8473949DA99196508EF91DB5_inline(_thisAdjusted, method);
return _returnValue;
}
// System.Void UnityEngine.XR.ARSubsystems.XRPlaneSubsystemDescriptor/Cinfo::set_supportsArbitraryPlaneDetection(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Cinfo_set_supportsArbitraryPlaneDetection_m70B1D6D27946FB12BF0D3D3AF8C6DC8DC3F399B9 (Cinfo_tC49A76BF09DB3F926B17955E1B8D729DC9B272AD * __this, bool ___value0, const RuntimeMethod* method)
{
{
// public bool supportsArbitraryPlaneDetection { get; set; }
bool L_0 = ___value0;
__this->set_U3CsupportsArbitraryPlaneDetectionU3Ek__BackingField_6(L_0);
return;
}
}
IL2CPP_EXTERN_C void Cinfo_set_supportsArbitraryPlaneDetection_m70B1D6D27946FB12BF0D3D3AF8C6DC8DC3F399B9_AdjustorThunk (RuntimeObject * __this, bool ___value0, const RuntimeMethod* method)
{
Cinfo_tC49A76BF09DB3F926B17955E1B8D729DC9B272AD * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<Cinfo_tC49A76BF09DB3F926B17955E1B8D729DC9B272AD *>(__this + _offset);
Cinfo_set_supportsArbitraryPlaneDetection_m70B1D6D27946FB12BF0D3D3AF8C6DC8DC3F399B9_inline(_thisAdjusted, ___value0, method);
}
// System.Boolean UnityEngine.XR.ARSubsystems.XRPlaneSubsystemDescriptor/Cinfo::get_supportsBoundaryVertices()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Cinfo_get_supportsBoundaryVertices_m5BA762B342FCF81EAE6E3645D3BAF04C1E8EAAD9 (Cinfo_tC49A76BF09DB3F926B17955E1B8D729DC9B272AD * __this, const RuntimeMethod* method)
{
{
// public bool supportsBoundaryVertices { get; set; }
bool L_0 = __this->get_U3CsupportsBoundaryVerticesU3Ek__BackingField_7();
return L_0;
}
}
IL2CPP_EXTERN_C bool Cinfo_get_supportsBoundaryVertices_m5BA762B342FCF81EAE6E3645D3BAF04C1E8EAAD9_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
Cinfo_tC49A76BF09DB3F926B17955E1B8D729DC9B272AD * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<Cinfo_tC49A76BF09DB3F926B17955E1B8D729DC9B272AD *>(__this + _offset);
bool _returnValue;
_returnValue = Cinfo_get_supportsBoundaryVertices_m5BA762B342FCF81EAE6E3645D3BAF04C1E8EAAD9_inline(_thisAdjusted, method);
return _returnValue;
}
// System.Void UnityEngine.XR.ARSubsystems.XRPlaneSubsystemDescriptor/Cinfo::set_supportsBoundaryVertices(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Cinfo_set_supportsBoundaryVertices_mC6F86EB28D38CC483AD8F9FD161013BDE3F4AFEF (Cinfo_tC49A76BF09DB3F926B17955E1B8D729DC9B272AD * __this, bool ___value0, const RuntimeMethod* method)
{
{
// public bool supportsBoundaryVertices { get; set; }
bool L_0 = ___value0;
__this->set_U3CsupportsBoundaryVerticesU3Ek__BackingField_7(L_0);
return;
}
}
IL2CPP_EXTERN_C void Cinfo_set_supportsBoundaryVertices_mC6F86EB28D38CC483AD8F9FD161013BDE3F4AFEF_AdjustorThunk (RuntimeObject * __this, bool ___value0, const RuntimeMethod* method)
{
Cinfo_tC49A76BF09DB3F926B17955E1B8D729DC9B272AD * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<Cinfo_tC49A76BF09DB3F926B17955E1B8D729DC9B272AD *>(__this + _offset);
Cinfo_set_supportsBoundaryVertices_mC6F86EB28D38CC483AD8F9FD161013BDE3F4AFEF_inline(_thisAdjusted, ___value0, method);
}
// System.Boolean UnityEngine.XR.ARSubsystems.XRPlaneSubsystemDescriptor/Cinfo::get_supportsClassification()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Cinfo_get_supportsClassification_m0396A2A62F840D9E283402BFB3681A5CC19C810E (Cinfo_tC49A76BF09DB3F926B17955E1B8D729DC9B272AD * __this, const RuntimeMethod* method)
{
{
// public bool supportsClassification { get; set; }
bool L_0 = __this->get_U3CsupportsClassificationU3Ek__BackingField_8();
return L_0;
}
}
IL2CPP_EXTERN_C bool Cinfo_get_supportsClassification_m0396A2A62F840D9E283402BFB3681A5CC19C810E_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
Cinfo_tC49A76BF09DB3F926B17955E1B8D729DC9B272AD * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<Cinfo_tC49A76BF09DB3F926B17955E1B8D729DC9B272AD *>(__this + _offset);
bool _returnValue;
_returnValue = Cinfo_get_supportsClassification_m0396A2A62F840D9E283402BFB3681A5CC19C810E_inline(_thisAdjusted, method);
return _returnValue;
}
// System.Void UnityEngine.XR.ARSubsystems.XRPlaneSubsystemDescriptor/Cinfo::set_supportsClassification(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Cinfo_set_supportsClassification_mA3B11D7CA4F960C89E729E5161AD7CC3211B933C (Cinfo_tC49A76BF09DB3F926B17955E1B8D729DC9B272AD * __this, bool ___value0, const RuntimeMethod* method)
{
{
// public bool supportsClassification { get; set; }
bool L_0 = ___value0;
__this->set_U3CsupportsClassificationU3Ek__BackingField_8(L_0);
return;
}
}
IL2CPP_EXTERN_C void Cinfo_set_supportsClassification_mA3B11D7CA4F960C89E729E5161AD7CC3211B933C_AdjustorThunk (RuntimeObject * __this, bool ___value0, const RuntimeMethod* method)
{
Cinfo_tC49A76BF09DB3F926B17955E1B8D729DC9B272AD * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<Cinfo_tC49A76BF09DB3F926B17955E1B8D729DC9B272AD *>(__this + _offset);
Cinfo_set_supportsClassification_mA3B11D7CA4F960C89E729E5161AD7CC3211B933C_inline(_thisAdjusted, ___value0, method);
}
// System.Boolean UnityEngine.XR.ARSubsystems.XRPlaneSubsystemDescriptor/Cinfo::Equals(UnityEngine.XR.ARSubsystems.XRPlaneSubsystemDescriptor/Cinfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Cinfo_Equals_m997D9E2FAF1A57953B2A2C95A4221C9EB82843BC (Cinfo_tC49A76BF09DB3F926B17955E1B8D729DC9B272AD * __this, Cinfo_tC49A76BF09DB3F926B17955E1B8D729DC9B272AD ___other0, const RuntimeMethod* method)
{
{
// return
// ReferenceEquals(id, other.id) &&
// #if UNITY_2020_2_OR_NEWER
// ReferenceEquals(providerType, other.providerType) &&
// ReferenceEquals(subsystemTypeOverride, other.subsystemTypeOverride) &&
// #else
// ReferenceEquals(subsystemImplementationType, other.subsystemImplementationType) &&
// #endif
// supportsHorizontalPlaneDetection == other.supportsHorizontalPlaneDetection &&
// supportsVerticalPlaneDetection == other.supportsVerticalPlaneDetection &&
// supportsArbitraryPlaneDetection == other.supportsArbitraryPlaneDetection &&
// supportsClassification == other.supportsClassification &&
// supportsBoundaryVertices == other.supportsBoundaryVertices;
String_t* L_0;
L_0 = Cinfo_get_id_m62022D2EE6912F0B1BDBCA687A4FC63321DE3F86_inline((Cinfo_tC49A76BF09DB3F926B17955E1B8D729DC9B272AD *)__this, /*hidden argument*/NULL);
String_t* L_1;
L_1 = Cinfo_get_id_m62022D2EE6912F0B1BDBCA687A4FC63321DE3F86_inline((Cinfo_tC49A76BF09DB3F926B17955E1B8D729DC9B272AD *)(&___other0), /*hidden argument*/NULL);
if ((!(((RuntimeObject*)(String_t*)L_0) == ((RuntimeObject*)(String_t*)L_1))))
{
goto IL_0079;
}
}
{
Type_t * L_2;
L_2 = Cinfo_get_providerType_m496CFFD5CAAF878266582DECEC5CDFB92A9C0A55_inline((Cinfo_tC49A76BF09DB3F926B17955E1B8D729DC9B272AD *)__this, /*hidden argument*/NULL);
Type_t * L_3;
L_3 = Cinfo_get_providerType_m496CFFD5CAAF878266582DECEC5CDFB92A9C0A55_inline((Cinfo_tC49A76BF09DB3F926B17955E1B8D729DC9B272AD *)(&___other0), /*hidden argument*/NULL);
if ((!(((RuntimeObject*)(Type_t *)L_2) == ((RuntimeObject*)(Type_t *)L_3))))
{
goto IL_0079;
}
}
{
Type_t * L_4;
L_4 = Cinfo_get_subsystemTypeOverride_m67ACD12818B5C91D42707639EA205E13BB15171A_inline((Cinfo_tC49A76BF09DB3F926B17955E1B8D729DC9B272AD *)__this, /*hidden argument*/NULL);
Type_t * L_5;
L_5 = Cinfo_get_subsystemTypeOverride_m67ACD12818B5C91D42707639EA205E13BB15171A_inline((Cinfo_tC49A76BF09DB3F926B17955E1B8D729DC9B272AD *)(&___other0), /*hidden argument*/NULL);
if ((!(((RuntimeObject*)(Type_t *)L_4) == ((RuntimeObject*)(Type_t *)L_5))))
{
goto IL_0079;
}
}
{
bool L_6;
L_6 = Cinfo_get_supportsHorizontalPlaneDetection_mBC3012C667106D47D9429F9C8001774038A38216_inline((Cinfo_tC49A76BF09DB3F926B17955E1B8D729DC9B272AD *)__this, /*hidden argument*/NULL);
bool L_7;
L_7 = Cinfo_get_supportsHorizontalPlaneDetection_mBC3012C667106D47D9429F9C8001774038A38216_inline((Cinfo_tC49A76BF09DB3F926B17955E1B8D729DC9B272AD *)(&___other0), /*hidden argument*/NULL);
if ((!(((uint32_t)L_6) == ((uint32_t)L_7))))
{
goto IL_0079;
}
}
{
bool L_8;
L_8 = Cinfo_get_supportsVerticalPlaneDetection_m4E3BE200E11784D049B94A054F15E4C76D29D7C6_inline((Cinfo_tC49A76BF09DB3F926B17955E1B8D729DC9B272AD *)__this, /*hidden argument*/NULL);
bool L_9;
L_9 = Cinfo_get_supportsVerticalPlaneDetection_m4E3BE200E11784D049B94A054F15E4C76D29D7C6_inline((Cinfo_tC49A76BF09DB3F926B17955E1B8D729DC9B272AD *)(&___other0), /*hidden argument*/NULL);
if ((!(((uint32_t)L_8) == ((uint32_t)L_9))))
{
goto IL_0079;
}
}
{
bool L_10;
L_10 = Cinfo_get_supportsArbitraryPlaneDetection_mF6CB379C9781FE8B8473949DA99196508EF91DB5_inline((Cinfo_tC49A76BF09DB3F926B17955E1B8D729DC9B272AD *)__this, /*hidden argument*/NULL);
bool L_11;
L_11 = Cinfo_get_supportsArbitraryPlaneDetection_mF6CB379C9781FE8B8473949DA99196508EF91DB5_inline((Cinfo_tC49A76BF09DB3F926B17955E1B8D729DC9B272AD *)(&___other0), /*hidden argument*/NULL);
if ((!(((uint32_t)L_10) == ((uint32_t)L_11))))
{
goto IL_0079;
}
}
{
bool L_12;
L_12 = Cinfo_get_supportsClassification_m0396A2A62F840D9E283402BFB3681A5CC19C810E_inline((Cinfo_tC49A76BF09DB3F926B17955E1B8D729DC9B272AD *)__this, /*hidden argument*/NULL);
bool L_13;
L_13 = Cinfo_get_supportsClassification_m0396A2A62F840D9E283402BFB3681A5CC19C810E_inline((Cinfo_tC49A76BF09DB3F926B17955E1B8D729DC9B272AD *)(&___other0), /*hidden argument*/NULL);
if ((!(((uint32_t)L_12) == ((uint32_t)L_13))))
{
goto IL_0079;
}
}
{
bool L_14;
L_14 = Cinfo_get_supportsBoundaryVertices_m5BA762B342FCF81EAE6E3645D3BAF04C1E8EAAD9_inline((Cinfo_tC49A76BF09DB3F926B17955E1B8D729DC9B272AD *)__this, /*hidden argument*/NULL);
bool L_15;
L_15 = Cinfo_get_supportsBoundaryVertices_m5BA762B342FCF81EAE6E3645D3BAF04C1E8EAAD9_inline((Cinfo_tC49A76BF09DB3F926B17955E1B8D729DC9B272AD *)(&___other0), /*hidden argument*/NULL);
return (bool)((((int32_t)L_14) == ((int32_t)L_15))? 1 : 0);
}
IL_0079:
{
return (bool)0;
}
}
IL2CPP_EXTERN_C bool Cinfo_Equals_m997D9E2FAF1A57953B2A2C95A4221C9EB82843BC_AdjustorThunk (RuntimeObject * __this, Cinfo_tC49A76BF09DB3F926B17955E1B8D729DC9B272AD ___other0, const RuntimeMethod* method)
{
Cinfo_tC49A76BF09DB3F926B17955E1B8D729DC9B272AD * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<Cinfo_tC49A76BF09DB3F926B17955E1B8D729DC9B272AD *>(__this + _offset);
bool _returnValue;
_returnValue = Cinfo_Equals_m997D9E2FAF1A57953B2A2C95A4221C9EB82843BC(_thisAdjusted, ___other0, method);
return _returnValue;
}
// System.Boolean UnityEngine.XR.ARSubsystems.XRPlaneSubsystemDescriptor/Cinfo::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Cinfo_Equals_m38EB24520E9273465E918F9F14D72FCE8EE4EB8B (Cinfo_tC49A76BF09DB3F926B17955E1B8D729DC9B272AD * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Cinfo_tC49A76BF09DB3F926B17955E1B8D729DC9B272AD_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
// if (!(obj is Cinfo))
RuntimeObject * L_0 = ___obj0;
if (((RuntimeObject *)IsInstSealed((RuntimeObject*)L_0, Cinfo_tC49A76BF09DB3F926B17955E1B8D729DC9B272AD_il2cpp_TypeInfo_var)))
{
goto IL_000a;
}
}
{
// return false;
return (bool)0;
}
IL_000a:
{
// return Equals((Cinfo)obj);
RuntimeObject * L_1 = ___obj0;
bool L_2;
L_2 = Cinfo_Equals_m997D9E2FAF1A57953B2A2C95A4221C9EB82843BC((Cinfo_tC49A76BF09DB3F926B17955E1B8D729DC9B272AD *)__this, ((*(Cinfo_tC49A76BF09DB3F926B17955E1B8D729DC9B272AD *)((Cinfo_tC49A76BF09DB3F926B17955E1B8D729DC9B272AD *)UnBox(L_1, Cinfo_tC49A76BF09DB3F926B17955E1B8D729DC9B272AD_il2cpp_TypeInfo_var)))), /*hidden argument*/NULL);
return L_2;
}
}
IL2CPP_EXTERN_C bool Cinfo_Equals_m38EB24520E9273465E918F9F14D72FCE8EE4EB8B_AdjustorThunk (RuntimeObject * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
Cinfo_tC49A76BF09DB3F926B17955E1B8D729DC9B272AD * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<Cinfo_tC49A76BF09DB3F926B17955E1B8D729DC9B272AD *>(__this + _offset);
bool _returnValue;
_returnValue = Cinfo_Equals_m38EB24520E9273465E918F9F14D72FCE8EE4EB8B(_thisAdjusted, ___obj0, method);
return _returnValue;
}
// System.Int32 UnityEngine.XR.ARSubsystems.XRPlaneSubsystemDescriptor/Cinfo::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Cinfo_GetHashCode_m219A4B64FB8A60D947BA345FBD65292065581378 (Cinfo_tC49A76BF09DB3F926B17955E1B8D729DC9B272AD * __this, const RuntimeMethod* method)
{
bool V_0 = false;
{
// int hashCode = HashCode.ReferenceHash(id);
String_t* L_0;
L_0 = Cinfo_get_id_m62022D2EE6912F0B1BDBCA687A4FC63321DE3F86_inline((Cinfo_tC49A76BF09DB3F926B17955E1B8D729DC9B272AD *)__this, /*hidden argument*/NULL);
int32_t L_1;
L_1 = HashCode_ReferenceHash_mE6CC6EA3C87D9F040876D66CF582D6FF68FC359C(L_0, /*hidden argument*/NULL);
// hashCode = (hashCode * 486187739) + HashCode.ReferenceHash(providerType);
Type_t * L_2;
L_2 = Cinfo_get_providerType_m496CFFD5CAAF878266582DECEC5CDFB92A9C0A55_inline((Cinfo_tC49A76BF09DB3F926B17955E1B8D729DC9B272AD *)__this, /*hidden argument*/NULL);
int32_t L_3;
L_3 = HashCode_ReferenceHash_mE6CC6EA3C87D9F040876D66CF582D6FF68FC359C(L_2, /*hidden argument*/NULL);
// hashCode = (hashCode * 486187739) + HashCode.ReferenceHash(subsystemTypeOverride);
Type_t * L_4;
L_4 = Cinfo_get_subsystemTypeOverride_m67ACD12818B5C91D42707639EA205E13BB15171A_inline((Cinfo_tC49A76BF09DB3F926B17955E1B8D729DC9B272AD *)__this, /*hidden argument*/NULL);
int32_t L_5;
L_5 = HashCode_ReferenceHash_mE6CC6EA3C87D9F040876D66CF582D6FF68FC359C(L_4, /*hidden argument*/NULL);
// hashCode = (hashCode * 486187739) + supportsHorizontalPlaneDetection.GetHashCode();
bool L_6;
L_6 = Cinfo_get_supportsHorizontalPlaneDetection_mBC3012C667106D47D9429F9C8001774038A38216_inline((Cinfo_tC49A76BF09DB3F926B17955E1B8D729DC9B272AD *)__this, /*hidden argument*/NULL);
V_0 = L_6;
int32_t L_7;
L_7 = Boolean_GetHashCode_m03AF8B3CECAE9106C44A00E3B33E51CBFC45C411((bool*)(&V_0), /*hidden argument*/NULL);
// hashCode = (hashCode * 486187739) + supportsVerticalPlaneDetection.GetHashCode();
bool L_8;
L_8 = Cinfo_get_supportsVerticalPlaneDetection_m4E3BE200E11784D049B94A054F15E4C76D29D7C6_inline((Cinfo_tC49A76BF09DB3F926B17955E1B8D729DC9B272AD *)__this, /*hidden argument*/NULL);
V_0 = L_8;
int32_t L_9;
L_9 = Boolean_GetHashCode_m03AF8B3CECAE9106C44A00E3B33E51CBFC45C411((bool*)(&V_0), /*hidden argument*/NULL);
// hashCode = (hashCode * 486187739) + supportsArbitraryPlaneDetection.GetHashCode();
bool L_10;
L_10 = Cinfo_get_supportsArbitraryPlaneDetection_mF6CB379C9781FE8B8473949DA99196508EF91DB5_inline((Cinfo_tC49A76BF09DB3F926B17955E1B8D729DC9B272AD *)__this, /*hidden argument*/NULL);
V_0 = L_10;
int32_t L_11;
L_11 = Boolean_GetHashCode_m03AF8B3CECAE9106C44A00E3B33E51CBFC45C411((bool*)(&V_0), /*hidden argument*/NULL);
// hashCode = (hashCode * 486187739) + supportsBoundaryVertices.GetHashCode();
bool L_12;
L_12 = Cinfo_get_supportsBoundaryVertices_m5BA762B342FCF81EAE6E3645D3BAF04C1E8EAAD9_inline((Cinfo_tC49A76BF09DB3F926B17955E1B8D729DC9B272AD *)__this, /*hidden argument*/NULL);
V_0 = L_12;
int32_t L_13;
L_13 = Boolean_GetHashCode_m03AF8B3CECAE9106C44A00E3B33E51CBFC45C411((bool*)(&V_0), /*hidden argument*/NULL);
// hashCode = (hashCode * 486187739) + supportsClassification.GetHashCode();
bool L_14;
L_14 = Cinfo_get_supportsClassification_m0396A2A62F840D9E283402BFB3681A5CC19C810E_inline((Cinfo_tC49A76BF09DB3F926B17955E1B8D729DC9B272AD *)__this, /*hidden argument*/NULL);
V_0 = L_14;
int32_t L_15;
L_15 = Boolean_GetHashCode_m03AF8B3CECAE9106C44A00E3B33E51CBFC45C411((bool*)(&V_0), /*hidden argument*/NULL);
// return hashCode;
return ((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)L_1, (int32_t)((int32_t)486187739))), (int32_t)L_3)), (int32_t)((int32_t)486187739))), (int32_t)L_5)), (int32_t)((int32_t)486187739))), (int32_t)L_7)), (int32_t)((int32_t)486187739))), (int32_t)L_9)), (int32_t)((int32_t)486187739))), (int32_t)L_11)), (int32_t)((int32_t)486187739))), (int32_t)L_13)), (int32_t)((int32_t)486187739))), (int32_t)L_15));
}
}
IL2CPP_EXTERN_C int32_t Cinfo_GetHashCode_m219A4B64FB8A60D947BA345FBD65292065581378_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
Cinfo_tC49A76BF09DB3F926B17955E1B8D729DC9B272AD * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<Cinfo_tC49A76BF09DB3F926B17955E1B8D729DC9B272AD *>(__this + _offset);
int32_t _returnValue;
_returnValue = Cinfo_GetHashCode_m219A4B64FB8A60D947BA345FBD65292065581378(_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
// System.Void UnityEngine.XR.ARSubsystems.XRRaycastSubsystem/Provider::Start()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Provider_Start_m005AB31948BB907D11D7E64C051F6C08D2B4BFF2 (Provider_tF185BE0541D2066CD242583CEFE7709DD22DD227 * __this, const RuntimeMethod* method)
{
{
// public override void Start() { }
return;
}
}
// System.Void UnityEngine.XR.ARSubsystems.XRRaycastSubsystem/Provider::Stop()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Provider_Stop_m1C036AD27F8B1E3EA9AFB22880B84637CC6693B8 (Provider_tF185BE0541D2066CD242583CEFE7709DD22DD227 * __this, const RuntimeMethod* method)
{
{
// public override void Stop() { }
return;
}
}
// System.Void UnityEngine.XR.ARSubsystems.XRRaycastSubsystem/Provider::Destroy()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Provider_Destroy_m0A7220BD30B6E87681E5D63B89FA177E24A93FD5 (Provider_tF185BE0541D2066CD242583CEFE7709DD22DD227 * __this, const RuntimeMethod* method)
{
{
// public override void Destroy() { }
return;
}
}
// System.Boolean UnityEngine.XR.ARSubsystems.XRRaycastSubsystem/Provider::TryAddRaycast(UnityEngine.Vector2,System.Single,UnityEngine.XR.ARSubsystems.XRRaycast&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Provider_TryAddRaycast_m4EEED029510C7B0273678827530C882EDA5B314F (Provider_tF185BE0541D2066CD242583CEFE7709DD22DD227 * __this, Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___screenPoint0, float ___estimatedDistance1, XRRaycast_tA18F9107EFF1D692E70EF15233BB6134A5F66C55 * ___raycast2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XRRaycast_tA18F9107EFF1D692E70EF15233BB6134A5F66C55_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
// raycast = XRRaycast.defaultValue;
XRRaycast_tA18F9107EFF1D692E70EF15233BB6134A5F66C55 * L_0 = ___raycast2;
IL2CPP_RUNTIME_CLASS_INIT(XRRaycast_tA18F9107EFF1D692E70EF15233BB6134A5F66C55_il2cpp_TypeInfo_var);
XRRaycast_tA18F9107EFF1D692E70EF15233BB6134A5F66C55 L_1;
L_1 = XRRaycast_get_defaultValue_mC4E3CDC7E9F4C17F3708B82DCDA95FFD395C2BE0_inline(/*hidden argument*/NULL);
*(XRRaycast_tA18F9107EFF1D692E70EF15233BB6134A5F66C55 *)L_0 = L_1;
// return false;
return (bool)0;
}
}
// System.Boolean UnityEngine.XR.ARSubsystems.XRRaycastSubsystem/Provider::TryAddRaycast(UnityEngine.Ray,System.Single,UnityEngine.XR.ARSubsystems.XRRaycast&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Provider_TryAddRaycast_m3C4F9E15B1849B074BEFF8426DBE71F3F1E93564 (Provider_tF185BE0541D2066CD242583CEFE7709DD22DD227 * __this, Ray_t2E9E67CC8B03EE6ED2BBF3D2C9C96DDF70E1D5E6 ___ray0, float ___estimatedDistance1, XRRaycast_tA18F9107EFF1D692E70EF15233BB6134A5F66C55 * ___raycast2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XRRaycast_tA18F9107EFF1D692E70EF15233BB6134A5F66C55_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
// raycast = XRRaycast.defaultValue;
XRRaycast_tA18F9107EFF1D692E70EF15233BB6134A5F66C55 * L_0 = ___raycast2;
IL2CPP_RUNTIME_CLASS_INIT(XRRaycast_tA18F9107EFF1D692E70EF15233BB6134A5F66C55_il2cpp_TypeInfo_var);
XRRaycast_tA18F9107EFF1D692E70EF15233BB6134A5F66C55 L_1;
L_1 = XRRaycast_get_defaultValue_mC4E3CDC7E9F4C17F3708B82DCDA95FFD395C2BE0_inline(/*hidden argument*/NULL);
*(XRRaycast_tA18F9107EFF1D692E70EF15233BB6134A5F66C55 *)L_0 = L_1;
// return false;
return (bool)0;
}
}
// System.Void UnityEngine.XR.ARSubsystems.XRRaycastSubsystem/Provider::RemoveRaycast(UnityEngine.XR.ARSubsystems.TrackableId)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Provider_RemoveRaycast_m1C8BC761375BCA3E3F4077690EB8719DDDC2B71E (Provider_tF185BE0541D2066CD242583CEFE7709DD22DD227 * __this, TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B ___trackableId0, const RuntimeMethod* method)
{
{
// public virtual void RemoveRaycast(TrackableId trackableId) { }
return;
}
}
// UnityEngine.XR.ARSubsystems.TrackableChanges`1<UnityEngine.XR.ARSubsystems.XRRaycast> UnityEngine.XR.ARSubsystems.XRRaycastSubsystem/Provider::GetChanges(UnityEngine.XR.ARSubsystems.XRRaycast,Unity.Collections.Allocator)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TrackableChanges_1_t092C2BBB89690C350B949DDFFA9F551F85536ED3 Provider_GetChanges_m7F79213AA617C8206739FFE806E196E7D5A4BDAF (Provider_tF185BE0541D2066CD242583CEFE7709DD22DD227 * __this, XRRaycast_tA18F9107EFF1D692E70EF15233BB6134A5F66C55 ___defaultRaycast0, int32_t ___allocator1, const RuntimeMethod* method)
{
TrackableChanges_1_t092C2BBB89690C350B949DDFFA9F551F85536ED3 V_0;
memset((&V_0), 0, sizeof(V_0));
{
// public virtual TrackableChanges<XRRaycast> GetChanges(XRRaycast defaultRaycast, Allocator allocator) => default;
il2cpp_codegen_initobj((&V_0), sizeof(TrackableChanges_1_t092C2BBB89690C350B949DDFFA9F551F85536ED3 ));
TrackableChanges_1_t092C2BBB89690C350B949DDFFA9F551F85536ED3 L_0 = V_0;
return L_0;
}
}
// Unity.Collections.NativeArray`1<UnityEngine.XR.ARSubsystems.XRRaycastHit> UnityEngine.XR.ARSubsystems.XRRaycastSubsystem/Provider::Raycast(UnityEngine.XR.ARSubsystems.XRRaycastHit,UnityEngine.Ray,UnityEngine.XR.ARSubsystems.TrackableType,Unity.Collections.Allocator)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NativeArray_1_t35F2E89DF840C06C68595E9289A07A26CBB07FCB Provider_Raycast_mBEE3804BA51E701D3775CC4AC1AFD16FEB97FB72 (Provider_tF185BE0541D2066CD242583CEFE7709DD22DD227 * __this, XRRaycastHit_t94A3D13B245A9D0A7A7F2D0919DCAAC7C8DF8DDB ___defaultRaycastHit0, Ray_t2E9E67CC8B03EE6ED2BBF3D2C9C96DDF70E1D5E6 ___ray1, int32_t ___trackableTypeMask2, int32_t ___allocator3, const RuntimeMethod* method)
{
{
// throw new NotSupportedException("Raycasting using a Ray is not supported.");
NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 * L_0 = (NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339_il2cpp_TypeInfo_var)));
NotSupportedException__ctor_m40BC57BDA6E0E119B73700CC809A14B57DC65A90(L_0, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralB51BA3F369D95E685969CC962493A3F0B421BA4D)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Provider_Raycast_mBEE3804BA51E701D3775CC4AC1AFD16FEB97FB72_RuntimeMethod_var)));
}
}
// Unity.Collections.NativeArray`1<UnityEngine.XR.ARSubsystems.XRRaycastHit> UnityEngine.XR.ARSubsystems.XRRaycastSubsystem/Provider::Raycast(UnityEngine.XR.ARSubsystems.XRRaycastHit,UnityEngine.Vector2,UnityEngine.XR.ARSubsystems.TrackableType,Unity.Collections.Allocator)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NativeArray_1_t35F2E89DF840C06C68595E9289A07A26CBB07FCB Provider_Raycast_m848F042E5613BB90E3A933E19E8229D7C94914C0 (Provider_tF185BE0541D2066CD242583CEFE7709DD22DD227 * __this, XRRaycastHit_t94A3D13B245A9D0A7A7F2D0919DCAAC7C8DF8DDB ___defaultRaycastHit0, Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___screenPoint1, int32_t ___trackableTypeMask2, int32_t ___allocator3, const RuntimeMethod* method)
{
{
// throw new NotSupportedException("Raycasting using a screen point is not supported.");
NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 * L_0 = (NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339_il2cpp_TypeInfo_var)));
NotSupportedException__ctor_m40BC57BDA6E0E119B73700CC809A14B57DC65A90(L_0, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral0B9AEC2348486B831A3488530ACA1A6FECCC60DE)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Provider_Raycast_m848F042E5613BB90E3A933E19E8229D7C94914C0_RuntimeMethod_var)));
}
}
// System.Void UnityEngine.XR.ARSubsystems.XRRaycastSubsystem/Provider::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Provider__ctor_m58E4226B4157880E60C02C82B5FB24D9760EA94F (Provider_tF185BE0541D2066CD242583CEFE7709DD22DD227 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SubsystemProvider_1__ctor_m42AA349CD0B3CDE6407D1BA528122A6C6C8B22EF_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
SubsystemProvider_1__ctor_m42AA349CD0B3CDE6407D1BA528122A6C6C8B22EF(__this, /*hidden argument*/SubsystemProvider_1__ctor_m42AA349CD0B3CDE6407D1BA528122A6C6C8B22EF_RuntimeMethod_var);
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
// Conversion methods for marshalling of: UnityEngine.XR.ARSubsystems.XRRaycastSubsystemDescriptor/Cinfo
IL2CPP_EXTERN_C void Cinfo_tAC330BB49E2D0C7E18C66AB4018927A6EC856E01_marshal_pinvoke(const Cinfo_tAC330BB49E2D0C7E18C66AB4018927A6EC856E01& unmarshaled, Cinfo_tAC330BB49E2D0C7E18C66AB4018927A6EC856E01_marshaled_pinvoke& marshaled)
{
Exception_t* ___U3CproviderTypeU3Ek__BackingField_1Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field '<providerType>k__BackingField' of type 'Cinfo': Reference type field marshaling is not supported.");
IL2CPP_RAISE_MANAGED_EXCEPTION(___U3CproviderTypeU3Ek__BackingField_1Exception, NULL);
}
IL2CPP_EXTERN_C void Cinfo_tAC330BB49E2D0C7E18C66AB4018927A6EC856E01_marshal_pinvoke_back(const Cinfo_tAC330BB49E2D0C7E18C66AB4018927A6EC856E01_marshaled_pinvoke& marshaled, Cinfo_tAC330BB49E2D0C7E18C66AB4018927A6EC856E01& unmarshaled)
{
Exception_t* ___U3CproviderTypeU3Ek__BackingField_1Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field '<providerType>k__BackingField' of type 'Cinfo': Reference type field marshaling is not supported.");
IL2CPP_RAISE_MANAGED_EXCEPTION(___U3CproviderTypeU3Ek__BackingField_1Exception, NULL);
}
// Conversion method for clean up from marshalling of: UnityEngine.XR.ARSubsystems.XRRaycastSubsystemDescriptor/Cinfo
IL2CPP_EXTERN_C void Cinfo_tAC330BB49E2D0C7E18C66AB4018927A6EC856E01_marshal_pinvoke_cleanup(Cinfo_tAC330BB49E2D0C7E18C66AB4018927A6EC856E01_marshaled_pinvoke& marshaled)
{
}
// Conversion methods for marshalling of: UnityEngine.XR.ARSubsystems.XRRaycastSubsystemDescriptor/Cinfo
IL2CPP_EXTERN_C void Cinfo_tAC330BB49E2D0C7E18C66AB4018927A6EC856E01_marshal_com(const Cinfo_tAC330BB49E2D0C7E18C66AB4018927A6EC856E01& unmarshaled, Cinfo_tAC330BB49E2D0C7E18C66AB4018927A6EC856E01_marshaled_com& marshaled)
{
Exception_t* ___U3CproviderTypeU3Ek__BackingField_1Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field '<providerType>k__BackingField' of type 'Cinfo': Reference type field marshaling is not supported.");
IL2CPP_RAISE_MANAGED_EXCEPTION(___U3CproviderTypeU3Ek__BackingField_1Exception, NULL);
}
IL2CPP_EXTERN_C void Cinfo_tAC330BB49E2D0C7E18C66AB4018927A6EC856E01_marshal_com_back(const Cinfo_tAC330BB49E2D0C7E18C66AB4018927A6EC856E01_marshaled_com& marshaled, Cinfo_tAC330BB49E2D0C7E18C66AB4018927A6EC856E01& unmarshaled)
{
Exception_t* ___U3CproviderTypeU3Ek__BackingField_1Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field '<providerType>k__BackingField' of type 'Cinfo': Reference type field marshaling is not supported.");
IL2CPP_RAISE_MANAGED_EXCEPTION(___U3CproviderTypeU3Ek__BackingField_1Exception, NULL);
}
// Conversion method for clean up from marshalling of: UnityEngine.XR.ARSubsystems.XRRaycastSubsystemDescriptor/Cinfo
IL2CPP_EXTERN_C void Cinfo_tAC330BB49E2D0C7E18C66AB4018927A6EC856E01_marshal_com_cleanup(Cinfo_tAC330BB49E2D0C7E18C66AB4018927A6EC856E01_marshaled_com& marshaled)
{
}
// System.String UnityEngine.XR.ARSubsystems.XRRaycastSubsystemDescriptor/Cinfo::get_id()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Cinfo_get_id_m9A34BB7AAEFCB43E1627AA047A68C058D730EDC4 (Cinfo_tAC330BB49E2D0C7E18C66AB4018927A6EC856E01 * __this, const RuntimeMethod* method)
{
{
// public string id { get; set; }
String_t* L_0 = __this->get_U3CidU3Ek__BackingField_0();
return L_0;
}
}
IL2CPP_EXTERN_C String_t* Cinfo_get_id_m9A34BB7AAEFCB43E1627AA047A68C058D730EDC4_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
Cinfo_tAC330BB49E2D0C7E18C66AB4018927A6EC856E01 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<Cinfo_tAC330BB49E2D0C7E18C66AB4018927A6EC856E01 *>(__this + _offset);
String_t* _returnValue;
_returnValue = Cinfo_get_id_m9A34BB7AAEFCB43E1627AA047A68C058D730EDC4_inline(_thisAdjusted, method);
return _returnValue;
}
// System.Void UnityEngine.XR.ARSubsystems.XRRaycastSubsystemDescriptor/Cinfo::set_id(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Cinfo_set_id_m0CB4DA3E552ED7940FBA88D8EE3BB6379EA255D6 (Cinfo_tAC330BB49E2D0C7E18C66AB4018927A6EC856E01 * __this, String_t* ___value0, const RuntimeMethod* method)
{
{
// public string id { get; set; }
String_t* L_0 = ___value0;
__this->set_U3CidU3Ek__BackingField_0(L_0);
return;
}
}
IL2CPP_EXTERN_C void Cinfo_set_id_m0CB4DA3E552ED7940FBA88D8EE3BB6379EA255D6_AdjustorThunk (RuntimeObject * __this, String_t* ___value0, const RuntimeMethod* method)
{
Cinfo_tAC330BB49E2D0C7E18C66AB4018927A6EC856E01 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<Cinfo_tAC330BB49E2D0C7E18C66AB4018927A6EC856E01 *>(__this + _offset);
Cinfo_set_id_m0CB4DA3E552ED7940FBA88D8EE3BB6379EA255D6_inline(_thisAdjusted, ___value0, method);
}
// System.Type UnityEngine.XR.ARSubsystems.XRRaycastSubsystemDescriptor/Cinfo::get_providerType()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t * Cinfo_get_providerType_m6AFB0E29047AF8A34F780EBACFC0CDDA44AAF50C (Cinfo_tAC330BB49E2D0C7E18C66AB4018927A6EC856E01 * __this, const RuntimeMethod* method)
{
{
// public Type providerType { get; set; }
Type_t * L_0 = __this->get_U3CproviderTypeU3Ek__BackingField_1();
return L_0;
}
}
IL2CPP_EXTERN_C Type_t * Cinfo_get_providerType_m6AFB0E29047AF8A34F780EBACFC0CDDA44AAF50C_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
Cinfo_tAC330BB49E2D0C7E18C66AB4018927A6EC856E01 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<Cinfo_tAC330BB49E2D0C7E18C66AB4018927A6EC856E01 *>(__this + _offset);
Type_t * _returnValue;
_returnValue = Cinfo_get_providerType_m6AFB0E29047AF8A34F780EBACFC0CDDA44AAF50C_inline(_thisAdjusted, method);
return _returnValue;
}
// System.Void UnityEngine.XR.ARSubsystems.XRRaycastSubsystemDescriptor/Cinfo::set_providerType(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Cinfo_set_providerType_m20992869A706183D7180A2030C84B5445DCF0BE3 (Cinfo_tAC330BB49E2D0C7E18C66AB4018927A6EC856E01 * __this, Type_t * ___value0, const RuntimeMethod* method)
{
{
// public Type providerType { get; set; }
Type_t * L_0 = ___value0;
__this->set_U3CproviderTypeU3Ek__BackingField_1(L_0);
return;
}
}
IL2CPP_EXTERN_C void Cinfo_set_providerType_m20992869A706183D7180A2030C84B5445DCF0BE3_AdjustorThunk (RuntimeObject * __this, Type_t * ___value0, const RuntimeMethod* method)
{
Cinfo_tAC330BB49E2D0C7E18C66AB4018927A6EC856E01 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<Cinfo_tAC330BB49E2D0C7E18C66AB4018927A6EC856E01 *>(__this + _offset);
Cinfo_set_providerType_m20992869A706183D7180A2030C84B5445DCF0BE3_inline(_thisAdjusted, ___value0, method);
}
// System.Type UnityEngine.XR.ARSubsystems.XRRaycastSubsystemDescriptor/Cinfo::get_subsystemTypeOverride()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t * Cinfo_get_subsystemTypeOverride_mCFC851E4227172E1E01130E60CC64F4B2FFC8C63 (Cinfo_tAC330BB49E2D0C7E18C66AB4018927A6EC856E01 * __this, const RuntimeMethod* method)
{
{
// public Type subsystemTypeOverride { get; set; }
Type_t * L_0 = __this->get_U3CsubsystemTypeOverrideU3Ek__BackingField_2();
return L_0;
}
}
IL2CPP_EXTERN_C Type_t * Cinfo_get_subsystemTypeOverride_mCFC851E4227172E1E01130E60CC64F4B2FFC8C63_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
Cinfo_tAC330BB49E2D0C7E18C66AB4018927A6EC856E01 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<Cinfo_tAC330BB49E2D0C7E18C66AB4018927A6EC856E01 *>(__this + _offset);
Type_t * _returnValue;
_returnValue = Cinfo_get_subsystemTypeOverride_mCFC851E4227172E1E01130E60CC64F4B2FFC8C63_inline(_thisAdjusted, method);
return _returnValue;
}
// System.Void UnityEngine.XR.ARSubsystems.XRRaycastSubsystemDescriptor/Cinfo::set_subsystemTypeOverride(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Cinfo_set_subsystemTypeOverride_mD5425E55455A21B7361B847FD6B78998AC70CD5B (Cinfo_tAC330BB49E2D0C7E18C66AB4018927A6EC856E01 * __this, Type_t * ___value0, const RuntimeMethod* method)
{
{
// public Type subsystemTypeOverride { get; set; }
Type_t * L_0 = ___value0;
__this->set_U3CsubsystemTypeOverrideU3Ek__BackingField_2(L_0);
return;
}
}
IL2CPP_EXTERN_C void Cinfo_set_subsystemTypeOverride_mD5425E55455A21B7361B847FD6B78998AC70CD5B_AdjustorThunk (RuntimeObject * __this, Type_t * ___value0, const RuntimeMethod* method)
{
Cinfo_tAC330BB49E2D0C7E18C66AB4018927A6EC856E01 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<Cinfo_tAC330BB49E2D0C7E18C66AB4018927A6EC856E01 *>(__this + _offset);
Cinfo_set_subsystemTypeOverride_mD5425E55455A21B7361B847FD6B78998AC70CD5B_inline(_thisAdjusted, ___value0, method);
}
// System.Boolean UnityEngine.XR.ARSubsystems.XRRaycastSubsystemDescriptor/Cinfo::get_supportsViewportBasedRaycast()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Cinfo_get_supportsViewportBasedRaycast_m76E31D4FF84E88050FE4E8B6C44FB6E4E71A5A3A (Cinfo_tAC330BB49E2D0C7E18C66AB4018927A6EC856E01 * __this, const RuntimeMethod* method)
{
{
// public bool supportsViewportBasedRaycast { get; set; }
bool L_0 = __this->get_U3CsupportsViewportBasedRaycastU3Ek__BackingField_4();
return L_0;
}
}
IL2CPP_EXTERN_C bool Cinfo_get_supportsViewportBasedRaycast_m76E31D4FF84E88050FE4E8B6C44FB6E4E71A5A3A_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
Cinfo_tAC330BB49E2D0C7E18C66AB4018927A6EC856E01 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<Cinfo_tAC330BB49E2D0C7E18C66AB4018927A6EC856E01 *>(__this + _offset);
bool _returnValue;
_returnValue = Cinfo_get_supportsViewportBasedRaycast_m76E31D4FF84E88050FE4E8B6C44FB6E4E71A5A3A_inline(_thisAdjusted, method);
return _returnValue;
}
// System.Void UnityEngine.XR.ARSubsystems.XRRaycastSubsystemDescriptor/Cinfo::set_supportsViewportBasedRaycast(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Cinfo_set_supportsViewportBasedRaycast_mCF77DEFDDC3931682A33A063DF2F25FFBF07B807 (Cinfo_tAC330BB49E2D0C7E18C66AB4018927A6EC856E01 * __this, bool ___value0, const RuntimeMethod* method)
{
{
// public bool supportsViewportBasedRaycast { get; set; }
bool L_0 = ___value0;
__this->set_U3CsupportsViewportBasedRaycastU3Ek__BackingField_4(L_0);
return;
}
}
IL2CPP_EXTERN_C void Cinfo_set_supportsViewportBasedRaycast_mCF77DEFDDC3931682A33A063DF2F25FFBF07B807_AdjustorThunk (RuntimeObject * __this, bool ___value0, const RuntimeMethod* method)
{
Cinfo_tAC330BB49E2D0C7E18C66AB4018927A6EC856E01 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<Cinfo_tAC330BB49E2D0C7E18C66AB4018927A6EC856E01 *>(__this + _offset);
Cinfo_set_supportsViewportBasedRaycast_mCF77DEFDDC3931682A33A063DF2F25FFBF07B807_inline(_thisAdjusted, ___value0, method);
}
// System.Boolean UnityEngine.XR.ARSubsystems.XRRaycastSubsystemDescriptor/Cinfo::get_supportsWorldBasedRaycast()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Cinfo_get_supportsWorldBasedRaycast_m5242363FA90D64968F4ED236EC35973B7ABC180A (Cinfo_tAC330BB49E2D0C7E18C66AB4018927A6EC856E01 * __this, const RuntimeMethod* method)
{
{
// public bool supportsWorldBasedRaycast { get; set; }
bool L_0 = __this->get_U3CsupportsWorldBasedRaycastU3Ek__BackingField_5();
return L_0;
}
}
IL2CPP_EXTERN_C bool Cinfo_get_supportsWorldBasedRaycast_m5242363FA90D64968F4ED236EC35973B7ABC180A_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
Cinfo_tAC330BB49E2D0C7E18C66AB4018927A6EC856E01 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<Cinfo_tAC330BB49E2D0C7E18C66AB4018927A6EC856E01 *>(__this + _offset);
bool _returnValue;
_returnValue = Cinfo_get_supportsWorldBasedRaycast_m5242363FA90D64968F4ED236EC35973B7ABC180A_inline(_thisAdjusted, method);
return _returnValue;
}
// System.Void UnityEngine.XR.ARSubsystems.XRRaycastSubsystemDescriptor/Cinfo::set_supportsWorldBasedRaycast(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Cinfo_set_supportsWorldBasedRaycast_m74BF70E612BCAFAD380C108700905E5B8C5425FA (Cinfo_tAC330BB49E2D0C7E18C66AB4018927A6EC856E01 * __this, bool ___value0, const RuntimeMethod* method)
{
{
// public bool supportsWorldBasedRaycast { get; set; }
bool L_0 = ___value0;
__this->set_U3CsupportsWorldBasedRaycastU3Ek__BackingField_5(L_0);
return;
}
}
IL2CPP_EXTERN_C void Cinfo_set_supportsWorldBasedRaycast_m74BF70E612BCAFAD380C108700905E5B8C5425FA_AdjustorThunk (RuntimeObject * __this, bool ___value0, const RuntimeMethod* method)
{
Cinfo_tAC330BB49E2D0C7E18C66AB4018927A6EC856E01 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<Cinfo_tAC330BB49E2D0C7E18C66AB4018927A6EC856E01 *>(__this + _offset);
Cinfo_set_supportsWorldBasedRaycast_m74BF70E612BCAFAD380C108700905E5B8C5425FA_inline(_thisAdjusted, ___value0, method);
}
// UnityEngine.XR.ARSubsystems.TrackableType UnityEngine.XR.ARSubsystems.XRRaycastSubsystemDescriptor/Cinfo::get_supportedTrackableTypes()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Cinfo_get_supportedTrackableTypes_m0DA573866D46012B650151C7538796542A3E2C70 (Cinfo_tAC330BB49E2D0C7E18C66AB4018927A6EC856E01 * __this, const RuntimeMethod* method)
{
{
// public TrackableType supportedTrackableTypes { get; set; }
int32_t L_0 = __this->get_U3CsupportedTrackableTypesU3Ek__BackingField_6();
return L_0;
}
}
IL2CPP_EXTERN_C int32_t Cinfo_get_supportedTrackableTypes_m0DA573866D46012B650151C7538796542A3E2C70_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
Cinfo_tAC330BB49E2D0C7E18C66AB4018927A6EC856E01 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<Cinfo_tAC330BB49E2D0C7E18C66AB4018927A6EC856E01 *>(__this + _offset);
int32_t _returnValue;
_returnValue = Cinfo_get_supportedTrackableTypes_m0DA573866D46012B650151C7538796542A3E2C70_inline(_thisAdjusted, method);
return _returnValue;
}
// System.Void UnityEngine.XR.ARSubsystems.XRRaycastSubsystemDescriptor/Cinfo::set_supportedTrackableTypes(UnityEngine.XR.ARSubsystems.TrackableType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Cinfo_set_supportedTrackableTypes_mABC320F641164FC1DB2AB9DB3F1E075B6235A785 (Cinfo_tAC330BB49E2D0C7E18C66AB4018927A6EC856E01 * __this, int32_t ___value0, const RuntimeMethod* method)
{
{
// public TrackableType supportedTrackableTypes { get; set; }
int32_t L_0 = ___value0;
__this->set_U3CsupportedTrackableTypesU3Ek__BackingField_6(L_0);
return;
}
}
IL2CPP_EXTERN_C void Cinfo_set_supportedTrackableTypes_mABC320F641164FC1DB2AB9DB3F1E075B6235A785_AdjustorThunk (RuntimeObject * __this, int32_t ___value0, const RuntimeMethod* method)
{
Cinfo_tAC330BB49E2D0C7E18C66AB4018927A6EC856E01 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<Cinfo_tAC330BB49E2D0C7E18C66AB4018927A6EC856E01 *>(__this + _offset);
Cinfo_set_supportedTrackableTypes_mABC320F641164FC1DB2AB9DB3F1E075B6235A785_inline(_thisAdjusted, ___value0, method);
}
// System.Boolean UnityEngine.XR.ARSubsystems.XRRaycastSubsystemDescriptor/Cinfo::get_supportsTrackedRaycasts()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Cinfo_get_supportsTrackedRaycasts_mB923DE37AE981FB26768CFF11B34A63F481A261A (Cinfo_tAC330BB49E2D0C7E18C66AB4018927A6EC856E01 * __this, const RuntimeMethod* method)
{
{
// public bool supportsTrackedRaycasts { get; set; }
bool L_0 = __this->get_U3CsupportsTrackedRaycastsU3Ek__BackingField_7();
return L_0;
}
}
IL2CPP_EXTERN_C bool Cinfo_get_supportsTrackedRaycasts_mB923DE37AE981FB26768CFF11B34A63F481A261A_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
Cinfo_tAC330BB49E2D0C7E18C66AB4018927A6EC856E01 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<Cinfo_tAC330BB49E2D0C7E18C66AB4018927A6EC856E01 *>(__this + _offset);
bool _returnValue;
_returnValue = Cinfo_get_supportsTrackedRaycasts_mB923DE37AE981FB26768CFF11B34A63F481A261A_inline(_thisAdjusted, method);
return _returnValue;
}
// System.Void UnityEngine.XR.ARSubsystems.XRRaycastSubsystemDescriptor/Cinfo::set_supportsTrackedRaycasts(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Cinfo_set_supportsTrackedRaycasts_mD7575B5CAA4BB3652786E2AE2C1B94CF8BEB423C (Cinfo_tAC330BB49E2D0C7E18C66AB4018927A6EC856E01 * __this, bool ___value0, const RuntimeMethod* method)
{
{
// public bool supportsTrackedRaycasts { get; set; }
bool L_0 = ___value0;
__this->set_U3CsupportsTrackedRaycastsU3Ek__BackingField_7(L_0);
return;
}
}
IL2CPP_EXTERN_C void Cinfo_set_supportsTrackedRaycasts_mD7575B5CAA4BB3652786E2AE2C1B94CF8BEB423C_AdjustorThunk (RuntimeObject * __this, bool ___value0, const RuntimeMethod* method)
{
Cinfo_tAC330BB49E2D0C7E18C66AB4018927A6EC856E01 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<Cinfo_tAC330BB49E2D0C7E18C66AB4018927A6EC856E01 *>(__this + _offset);
Cinfo_set_supportsTrackedRaycasts_mD7575B5CAA4BB3652786E2AE2C1B94CF8BEB423C_inline(_thisAdjusted, ___value0, method);
}
// System.Int32 UnityEngine.XR.ARSubsystems.XRRaycastSubsystemDescriptor/Cinfo::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Cinfo_GetHashCode_mE07F77F64788F12838A7D8A20E07DE366DDAEEEA (Cinfo_tAC330BB49E2D0C7E18C66AB4018927A6EC856E01 * __this, const RuntimeMethod* method)
{
bool V_0 = false;
int32_t V_1 = 0;
{
// public override int GetHashCode() => HashCode.Combine(
// HashCode.ReferenceHash(id),
// #if UNITY_2020_2_OR_NEWER
// HashCode.ReferenceHash(providerType),
// HashCode.ReferenceHash(subsystemTypeOverride),
// #else
// HashCode.ReferenceHash(subsystemImplementationType),
// #endif
// supportsViewportBasedRaycast.GetHashCode(),
// supportsWorldBasedRaycast.GetHashCode(),
// ((int)supportedTrackableTypes).GetHashCode(),
// supportsTrackedRaycasts.GetHashCode());
String_t* L_0;
L_0 = Cinfo_get_id_m9A34BB7AAEFCB43E1627AA047A68C058D730EDC4_inline((Cinfo_tAC330BB49E2D0C7E18C66AB4018927A6EC856E01 *)__this, /*hidden argument*/NULL);
int32_t L_1;
L_1 = HashCode_ReferenceHash_mE6CC6EA3C87D9F040876D66CF582D6FF68FC359C(L_0, /*hidden argument*/NULL);
Type_t * L_2;
L_2 = Cinfo_get_providerType_m6AFB0E29047AF8A34F780EBACFC0CDDA44AAF50C_inline((Cinfo_tAC330BB49E2D0C7E18C66AB4018927A6EC856E01 *)__this, /*hidden argument*/NULL);
int32_t L_3;
L_3 = HashCode_ReferenceHash_mE6CC6EA3C87D9F040876D66CF582D6FF68FC359C(L_2, /*hidden argument*/NULL);
Type_t * L_4;
L_4 = Cinfo_get_subsystemTypeOverride_mCFC851E4227172E1E01130E60CC64F4B2FFC8C63_inline((Cinfo_tAC330BB49E2D0C7E18C66AB4018927A6EC856E01 *)__this, /*hidden argument*/NULL);
int32_t L_5;
L_5 = HashCode_ReferenceHash_mE6CC6EA3C87D9F040876D66CF582D6FF68FC359C(L_4, /*hidden argument*/NULL);
bool L_6;
L_6 = Cinfo_get_supportsViewportBasedRaycast_m76E31D4FF84E88050FE4E8B6C44FB6E4E71A5A3A_inline((Cinfo_tAC330BB49E2D0C7E18C66AB4018927A6EC856E01 *)__this, /*hidden argument*/NULL);
V_0 = L_6;
int32_t L_7;
L_7 = Boolean_GetHashCode_m03AF8B3CECAE9106C44A00E3B33E51CBFC45C411((bool*)(&V_0), /*hidden argument*/NULL);
bool L_8;
L_8 = Cinfo_get_supportsWorldBasedRaycast_m5242363FA90D64968F4ED236EC35973B7ABC180A_inline((Cinfo_tAC330BB49E2D0C7E18C66AB4018927A6EC856E01 *)__this, /*hidden argument*/NULL);
V_0 = L_8;
int32_t L_9;
L_9 = Boolean_GetHashCode_m03AF8B3CECAE9106C44A00E3B33E51CBFC45C411((bool*)(&V_0), /*hidden argument*/NULL);
int32_t L_10;
L_10 = Cinfo_get_supportedTrackableTypes_m0DA573866D46012B650151C7538796542A3E2C70_inline((Cinfo_tAC330BB49E2D0C7E18C66AB4018927A6EC856E01 *)__this, /*hidden argument*/NULL);
V_1 = L_10;
int32_t L_11;
L_11 = Int32_GetHashCode_mEDD3F492A5F7CF021125AE3F38E2B8F8743FC667((int32_t*)(&V_1), /*hidden argument*/NULL);
bool L_12;
L_12 = Cinfo_get_supportsTrackedRaycasts_mB923DE37AE981FB26768CFF11B34A63F481A261A_inline((Cinfo_tAC330BB49E2D0C7E18C66AB4018927A6EC856E01 *)__this, /*hidden argument*/NULL);
V_0 = L_12;
int32_t L_13;
L_13 = Boolean_GetHashCode_m03AF8B3CECAE9106C44A00E3B33E51CBFC45C411((bool*)(&V_0), /*hidden argument*/NULL);
int32_t L_14;
L_14 = HashCode_Combine_m23E4B1C1DC69FC295EAA04B5AC0ABB8BE40ABC9F(L_1, L_3, L_5, L_7, L_9, L_11, L_13, /*hidden argument*/NULL);
return L_14;
}
}
IL2CPP_EXTERN_C int32_t Cinfo_GetHashCode_mE07F77F64788F12838A7D8A20E07DE366DDAEEEA_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
Cinfo_tAC330BB49E2D0C7E18C66AB4018927A6EC856E01 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<Cinfo_tAC330BB49E2D0C7E18C66AB4018927A6EC856E01 *>(__this + _offset);
int32_t _returnValue;
_returnValue = Cinfo_GetHashCode_mE07F77F64788F12838A7D8A20E07DE366DDAEEEA(_thisAdjusted, method);
return _returnValue;
}
// System.Boolean UnityEngine.XR.ARSubsystems.XRRaycastSubsystemDescriptor/Cinfo::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Cinfo_Equals_mFDD42918C99F796C9737C544D9858098C0241716 (Cinfo_tAC330BB49E2D0C7E18C66AB4018927A6EC856E01 * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Cinfo_tAC330BB49E2D0C7E18C66AB4018927A6EC856E01_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
// public override bool Equals(object obj) => (obj is Cinfo) && Equals((Cinfo)obj);
RuntimeObject * L_0 = ___obj0;
if (!((RuntimeObject *)IsInstSealed((RuntimeObject*)L_0, Cinfo_tAC330BB49E2D0C7E18C66AB4018927A6EC856E01_il2cpp_TypeInfo_var)))
{
goto IL_0015;
}
}
{
RuntimeObject * L_1 = ___obj0;
bool L_2;
L_2 = Cinfo_Equals_m96B4DD943D8AAA5D31B0B5BCD0EEC1F94E60F146((Cinfo_tAC330BB49E2D0C7E18C66AB4018927A6EC856E01 *)__this, ((*(Cinfo_tAC330BB49E2D0C7E18C66AB4018927A6EC856E01 *)((Cinfo_tAC330BB49E2D0C7E18C66AB4018927A6EC856E01 *)UnBox(L_1, Cinfo_tAC330BB49E2D0C7E18C66AB4018927A6EC856E01_il2cpp_TypeInfo_var)))), /*hidden argument*/NULL);
return L_2;
}
IL_0015:
{
return (bool)0;
}
}
IL2CPP_EXTERN_C bool Cinfo_Equals_mFDD42918C99F796C9737C544D9858098C0241716_AdjustorThunk (RuntimeObject * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
Cinfo_tAC330BB49E2D0C7E18C66AB4018927A6EC856E01 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<Cinfo_tAC330BB49E2D0C7E18C66AB4018927A6EC856E01 *>(__this + _offset);
bool _returnValue;
_returnValue = Cinfo_Equals_mFDD42918C99F796C9737C544D9858098C0241716(_thisAdjusted, ___obj0, method);
return _returnValue;
}
// System.String UnityEngine.XR.ARSubsystems.XRRaycastSubsystemDescriptor/Cinfo::ToString()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Cinfo_ToString_m5E549199F8D40CF630BB8ED6B46EC5F51E580BEB (Cinfo_tAC330BB49E2D0C7E18C66AB4018927A6EC856E01 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Boolean_t07D1E3F34E4813023D64F584DFF7B34C9D922F37_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral73B1EF85B3661969EA06515B1FAB6B1BECBB653C);
s_Il2CppMethodInitialized = true;
}
{
// return string.Format("XRRaycastSubsystemDescriptor:\nsupportsViewportBasedRaycast: {0}\nsupportsWorldBasedRaycast: {1}",
// supportsViewportBasedRaycast, supportsWorldBasedRaycast);
bool L_0;
L_0 = Cinfo_get_supportsViewportBasedRaycast_m76E31D4FF84E88050FE4E8B6C44FB6E4E71A5A3A_inline((Cinfo_tAC330BB49E2D0C7E18C66AB4018927A6EC856E01 *)__this, /*hidden argument*/NULL);
bool L_1 = L_0;
RuntimeObject * L_2 = Box(Boolean_t07D1E3F34E4813023D64F584DFF7B34C9D922F37_il2cpp_TypeInfo_var, &L_1);
bool L_3;
L_3 = Cinfo_get_supportsWorldBasedRaycast_m5242363FA90D64968F4ED236EC35973B7ABC180A_inline((Cinfo_tAC330BB49E2D0C7E18C66AB4018927A6EC856E01 *)__this, /*hidden argument*/NULL);
bool L_4 = L_3;
RuntimeObject * L_5 = Box(Boolean_t07D1E3F34E4813023D64F584DFF7B34C9D922F37_il2cpp_TypeInfo_var, &L_4);
String_t* L_6;
L_6 = String_Format_m8D1CB0410C35E052A53AE957C914C841E54BAB66(_stringLiteral73B1EF85B3661969EA06515B1FAB6B1BECBB653C, L_2, L_5, /*hidden argument*/NULL);
return L_6;
}
}
IL2CPP_EXTERN_C String_t* Cinfo_ToString_m5E549199F8D40CF630BB8ED6B46EC5F51E580BEB_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
Cinfo_tAC330BB49E2D0C7E18C66AB4018927A6EC856E01 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<Cinfo_tAC330BB49E2D0C7E18C66AB4018927A6EC856E01 *>(__this + _offset);
String_t* _returnValue;
_returnValue = Cinfo_ToString_m5E549199F8D40CF630BB8ED6B46EC5F51E580BEB(_thisAdjusted, method);
return _returnValue;
}
// System.Boolean UnityEngine.XR.ARSubsystems.XRRaycastSubsystemDescriptor/Cinfo::Equals(UnityEngine.XR.ARSubsystems.XRRaycastSubsystemDescriptor/Cinfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Cinfo_Equals_m96B4DD943D8AAA5D31B0B5BCD0EEC1F94E60F146 (Cinfo_tAC330BB49E2D0C7E18C66AB4018927A6EC856E01 * __this, Cinfo_tAC330BB49E2D0C7E18C66AB4018927A6EC856E01 ___other0, const RuntimeMethod* method)
{
{
// return
// String.Equals(id, other.id) &&
// #if UNITY_2020_2_OR_NEWER
// ReferenceEquals(providerType, other.providerType) &&
// ReferenceEquals(subsystemTypeOverride, other.subsystemTypeOverride) &&
// #else
// ReferenceEquals(subsystemImplementationType, other.subsystemImplementationType) &&
// #endif
// supportsViewportBasedRaycast == other.supportsViewportBasedRaycast &&
// supportsWorldBasedRaycast == other.supportsWorldBasedRaycast &&
// supportedTrackableTypes == other.supportedTrackableTypes;
String_t* L_0;
L_0 = Cinfo_get_id_m9A34BB7AAEFCB43E1627AA047A68C058D730EDC4_inline((Cinfo_tAC330BB49E2D0C7E18C66AB4018927A6EC856E01 *)__this, /*hidden argument*/NULL);
String_t* L_1;
L_1 = Cinfo_get_id_m9A34BB7AAEFCB43E1627AA047A68C058D730EDC4_inline((Cinfo_tAC330BB49E2D0C7E18C66AB4018927A6EC856E01 *)(&___other0), /*hidden argument*/NULL);
bool L_2;
L_2 = String_Equals_mAFC6038D294F341434D9D67D7EADC7F97C556C9B(L_0, L_1, /*hidden argument*/NULL);
if (!L_2)
{
goto IL_0060;
}
}
{
Type_t * L_3;
L_3 = Cinfo_get_providerType_m6AFB0E29047AF8A34F780EBACFC0CDDA44AAF50C_inline((Cinfo_tAC330BB49E2D0C7E18C66AB4018927A6EC856E01 *)__this, /*hidden argument*/NULL);
Type_t * L_4;
L_4 = Cinfo_get_providerType_m6AFB0E29047AF8A34F780EBACFC0CDDA44AAF50C_inline((Cinfo_tAC330BB49E2D0C7E18C66AB4018927A6EC856E01 *)(&___other0), /*hidden argument*/NULL);
if ((!(((RuntimeObject*)(Type_t *)L_3) == ((RuntimeObject*)(Type_t *)L_4))))
{
goto IL_0060;
}
}
{
Type_t * L_5;
L_5 = Cinfo_get_subsystemTypeOverride_mCFC851E4227172E1E01130E60CC64F4B2FFC8C63_inline((Cinfo_tAC330BB49E2D0C7E18C66AB4018927A6EC856E01 *)__this, /*hidden argument*/NULL);
Type_t * L_6;
L_6 = Cinfo_get_subsystemTypeOverride_mCFC851E4227172E1E01130E60CC64F4B2FFC8C63_inline((Cinfo_tAC330BB49E2D0C7E18C66AB4018927A6EC856E01 *)(&___other0), /*hidden argument*/NULL);
if ((!(((RuntimeObject*)(Type_t *)L_5) == ((RuntimeObject*)(Type_t *)L_6))))
{
goto IL_0060;
}
}
{
bool L_7;
L_7 = Cinfo_get_supportsViewportBasedRaycast_m76E31D4FF84E88050FE4E8B6C44FB6E4E71A5A3A_inline((Cinfo_tAC330BB49E2D0C7E18C66AB4018927A6EC856E01 *)__this, /*hidden argument*/NULL);
bool L_8;
L_8 = Cinfo_get_supportsViewportBasedRaycast_m76E31D4FF84E88050FE4E8B6C44FB6E4E71A5A3A_inline((Cinfo_tAC330BB49E2D0C7E18C66AB4018927A6EC856E01 *)(&___other0), /*hidden argument*/NULL);
if ((!(((uint32_t)L_7) == ((uint32_t)L_8))))
{
goto IL_0060;
}
}
{
bool L_9;
L_9 = Cinfo_get_supportsWorldBasedRaycast_m5242363FA90D64968F4ED236EC35973B7ABC180A_inline((Cinfo_tAC330BB49E2D0C7E18C66AB4018927A6EC856E01 *)__this, /*hidden argument*/NULL);
bool L_10;
L_10 = Cinfo_get_supportsWorldBasedRaycast_m5242363FA90D64968F4ED236EC35973B7ABC180A_inline((Cinfo_tAC330BB49E2D0C7E18C66AB4018927A6EC856E01 *)(&___other0), /*hidden argument*/NULL);
if ((!(((uint32_t)L_9) == ((uint32_t)L_10))))
{
goto IL_0060;
}
}
{
int32_t L_11;
L_11 = Cinfo_get_supportedTrackableTypes_m0DA573866D46012B650151C7538796542A3E2C70_inline((Cinfo_tAC330BB49E2D0C7E18C66AB4018927A6EC856E01 *)__this, /*hidden argument*/NULL);
int32_t L_12;
L_12 = Cinfo_get_supportedTrackableTypes_m0DA573866D46012B650151C7538796542A3E2C70_inline((Cinfo_tAC330BB49E2D0C7E18C66AB4018927A6EC856E01 *)(&___other0), /*hidden argument*/NULL);
return (bool)((((int32_t)L_11) == ((int32_t)L_12))? 1 : 0);
}
IL_0060:
{
return (bool)0;
}
}
IL2CPP_EXTERN_C bool Cinfo_Equals_m96B4DD943D8AAA5D31B0B5BCD0EEC1F94E60F146_AdjustorThunk (RuntimeObject * __this, Cinfo_tAC330BB49E2D0C7E18C66AB4018927A6EC856E01 ___other0, const RuntimeMethod* method)
{
Cinfo_tAC330BB49E2D0C7E18C66AB4018927A6EC856E01 * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<Cinfo_tAC330BB49E2D0C7E18C66AB4018927A6EC856E01 *>(__this + _offset);
bool _returnValue;
_returnValue = Cinfo_Equals_m96B4DD943D8AAA5D31B0B5BCD0EEC1F94E60F146(_thisAdjusted, ___other0, 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
// System.Void UnityEngine.XR.ARSubsystems.XRReferencePointSubsystem/Provider::Start()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Provider_Start_m23A09DFBE9B001EA5716EF0D11FAB9878AEFA634 (Provider_t7974F3BD624EC305575E361EE0BCAAA3DC5B253C * __this, const RuntimeMethod* method)
{
{
// public override void Start() { }
return;
}
}
// System.Void UnityEngine.XR.ARSubsystems.XRReferencePointSubsystem/Provider::Stop()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Provider_Stop_mA1D84CAD4F173F45729BCCF7F9203317BC16E88C (Provider_t7974F3BD624EC305575E361EE0BCAAA3DC5B253C * __this, const RuntimeMethod* method)
{
{
// public override void Stop() { }
return;
}
}
// System.Void UnityEngine.XR.ARSubsystems.XRReferencePointSubsystem/Provider::Destroy()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Provider_Destroy_m9C33B460B119788705D6CF145510A3CA3320CFCA (Provider_t7974F3BD624EC305575E361EE0BCAAA3DC5B253C * __this, const RuntimeMethod* method)
{
{
// public override void Destroy() { }
return;
}
}
// System.Boolean UnityEngine.XR.ARSubsystems.XRReferencePointSubsystem/Provider::TryAddReferencePoint(UnityEngine.Pose,UnityEngine.XR.ARSubsystems.XRReferencePoint&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Provider_TryAddReferencePoint_mEECEE05AE6CE36CC4DFC6B34EB2328203ABF74D2 (Provider_t7974F3BD624EC305575E361EE0BCAAA3DC5B253C * __this, Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A ___pose0, XRReferencePoint_tF3ACF949B4AE1EC67F527F5D30DD8B912A814634 * ___referencePoint1, const RuntimeMethod* method)
{
{
// referencePoint = default(XRReferencePoint);
XRReferencePoint_tF3ACF949B4AE1EC67F527F5D30DD8B912A814634 * L_0 = ___referencePoint1;
il2cpp_codegen_initobj(L_0, sizeof(XRReferencePoint_tF3ACF949B4AE1EC67F527F5D30DD8B912A814634 ));
// return false;
return (bool)0;
}
}
// System.Boolean UnityEngine.XR.ARSubsystems.XRReferencePointSubsystem/Provider::TryAttachReferencePoint(UnityEngine.XR.ARSubsystems.TrackableId,UnityEngine.Pose,UnityEngine.XR.ARSubsystems.XRReferencePoint&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Provider_TryAttachReferencePoint_m6B37B8E188234F1B273B4CCCBA86C3369A9056EF (Provider_t7974F3BD624EC305575E361EE0BCAAA3DC5B253C * __this, TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B ___trackableToAffix0, Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A ___pose1, XRReferencePoint_tF3ACF949B4AE1EC67F527F5D30DD8B912A814634 * ___referencePoint2, const RuntimeMethod* method)
{
{
// referencePoint = default(XRReferencePoint);
XRReferencePoint_tF3ACF949B4AE1EC67F527F5D30DD8B912A814634 * L_0 = ___referencePoint2;
il2cpp_codegen_initobj(L_0, sizeof(XRReferencePoint_tF3ACF949B4AE1EC67F527F5D30DD8B912A814634 ));
// return false;
return (bool)0;
}
}
// System.Boolean UnityEngine.XR.ARSubsystems.XRReferencePointSubsystem/Provider::TryRemoveReferencePoint(UnityEngine.XR.ARSubsystems.TrackableId)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Provider_TryRemoveReferencePoint_m715A9000B06295D71581229BCCE534B5F1BDB5E2 (Provider_t7974F3BD624EC305575E361EE0BCAAA3DC5B253C * __this, TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B ___referencePointId0, const RuntimeMethod* method)
{
{
// public virtual bool TryRemoveReferencePoint(TrackableId referencePointId) => false;
return (bool)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
// System.Void UnityEngine.XR.ARSubsystems.XRSessionSubsystem/Provider::Start()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Provider_Start_m2A20FC49495EFF34A01887ABF28338FD2511C97A (Provider_t4C3675997BB8AF3A6A32C3EC3C93C10E4D3E8D1A * __this, const RuntimeMethod* method)
{
{
// public override void Start() {}
return;
}
}
// System.Void UnityEngine.XR.ARSubsystems.XRSessionSubsystem/Provider::Stop()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Provider_Stop_mC3937DB37B165BFDB925D51BDFB63DBAE14E5CE6 (Provider_t4C3675997BB8AF3A6A32C3EC3C93C10E4D3E8D1A * __this, const RuntimeMethod* method)
{
{
// public override void Stop() {}
return;
}
}
// System.Void UnityEngine.XR.ARSubsystems.XRSessionSubsystem/Provider::Update(UnityEngine.XR.ARSubsystems.XRSessionUpdateParams)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Provider_Update_m44516D330A225A42401D9F850CAB45A1781656A7 (Provider_t4C3675997BB8AF3A6A32C3EC3C93C10E4D3E8D1A * __this, XRSessionUpdateParams_t106E075C3B348969D6F3B634195F295CE47DB77F ___updateParams0, const RuntimeMethod* method)
{
{
// public virtual void Update(XRSessionUpdateParams updateParams) { }
return;
}
}
// System.Void UnityEngine.XR.ARSubsystems.XRSessionSubsystem/Provider::Update(UnityEngine.XR.ARSubsystems.XRSessionUpdateParams,UnityEngine.XR.ARSubsystems.Configuration)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Provider_Update_mC15A02B030984925D814C8CF68EB96D4BD268236 (Provider_t4C3675997BB8AF3A6A32C3EC3C93C10E4D3E8D1A * __this, XRSessionUpdateParams_t106E075C3B348969D6F3B634195F295CE47DB77F ___updateParams0, Configuration_t29C11C7E576D64F717543048BDA1EBCEF0CF60C0 ___configuration1, const RuntimeMethod* method)
{
{
// public virtual void Update(XRSessionUpdateParams updateParams, Configuration configuration) { }
return;
}
}
// UnityEngine.XR.ARSubsystems.Feature UnityEngine.XR.ARSubsystems.XRSessionSubsystem/Provider::get_requestedFeatures()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t Provider_get_requestedFeatures_mD37FD382547DA72EF30A32B33AB2660101B248D5 (Provider_t4C3675997BB8AF3A6A32C3EC3C93C10E4D3E8D1A * __this, const RuntimeMethod* method)
{
{
// public virtual Feature requestedFeatures => Feature.None;
return (uint64_t)(((int64_t)((int64_t)0)));
}
}
// UnityEngine.XR.ARSubsystems.Feature UnityEngine.XR.ARSubsystems.XRSessionSubsystem/Provider::get_requestedTrackingMode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t Provider_get_requestedTrackingMode_mC88877D2BC7250D543457D640A20AE183EB9BFE5 (Provider_t4C3675997BB8AF3A6A32C3EC3C93C10E4D3E8D1A * __this, const RuntimeMethod* method)
{
{
// get => Feature.None;
return (uint64_t)(((int64_t)((int64_t)0)));
}
}
// System.Void UnityEngine.XR.ARSubsystems.XRSessionSubsystem/Provider::set_requestedTrackingMode(UnityEngine.XR.ARSubsystems.Feature)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Provider_set_requestedTrackingMode_mE84B329D9C903D6D47CBA2D11DF144EADB1D2345 (Provider_t4C3675997BB8AF3A6A32C3EC3C93C10E4D3E8D1A * __this, uint64_t ___value0, const RuntimeMethod* method)
{
{
// set {}
return;
}
}
// UnityEngine.XR.ARSubsystems.Feature UnityEngine.XR.ARSubsystems.XRSessionSubsystem/Provider::get_currentTrackingMode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t Provider_get_currentTrackingMode_m597AC294BE6020DFD42DAE027B2E62D5906ABD34 (Provider_t4C3675997BB8AF3A6A32C3EC3C93C10E4D3E8D1A * __this, const RuntimeMethod* method)
{
{
// public virtual Feature currentTrackingMode => Feature.None;
return (uint64_t)(((int64_t)((int64_t)0)));
}
}
// Unity.Collections.NativeArray`1<UnityEngine.XR.ARSubsystems.ConfigurationDescriptor> UnityEngine.XR.ARSubsystems.XRSessionSubsystem/Provider::GetConfigurationDescriptors(Unity.Collections.Allocator)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NativeArray_1_tC9A9DFD8C5E8BBF71F83CBC0CCF7C4BC38E3A4CA Provider_GetConfigurationDescriptors_mDBC0CC4E857D4C838349D32ED2FBDFE75C3A5A39 (Provider_t4C3675997BB8AF3A6A32C3EC3C93C10E4D3E8D1A * __this, int32_t ___allocator0, const RuntimeMethod* method)
{
NativeArray_1_tC9A9DFD8C5E8BBF71F83CBC0CCF7C4BC38E3A4CA V_0;
memset((&V_0), 0, sizeof(V_0));
{
// public virtual NativeArray<ConfigurationDescriptor> GetConfigurationDescriptors(Allocator allocator) => default;
il2cpp_codegen_initobj((&V_0), sizeof(NativeArray_1_tC9A9DFD8C5E8BBF71F83CBC0CCF7C4BC38E3A4CA ));
NativeArray_1_tC9A9DFD8C5E8BBF71F83CBC0CCF7C4BC38E3A4CA L_0 = V_0;
return L_0;
}
}
// System.Void UnityEngine.XR.ARSubsystems.XRSessionSubsystem/Provider::Destroy()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Provider_Destroy_m91FDA48A481008AB6F408823ACFA4E51B6710F17 (Provider_t4C3675997BB8AF3A6A32C3EC3C93C10E4D3E8D1A * __this, const RuntimeMethod* method)
{
{
// public override void Destroy() { }
return;
}
}
// System.Void UnityEngine.XR.ARSubsystems.XRSessionSubsystem/Provider::Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Provider_Reset_mC07FE81BB38D7C6F1123D477E078BCA98DD0007E (Provider_t4C3675997BB8AF3A6A32C3EC3C93C10E4D3E8D1A * __this, const RuntimeMethod* method)
{
{
// public virtual void Reset() { }
return;
}
}
// System.Void UnityEngine.XR.ARSubsystems.XRSessionSubsystem/Provider::OnApplicationPause()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Provider_OnApplicationPause_mDDA05F7C18D3B1E26F0B468CBC454557788D147B (Provider_t4C3675997BB8AF3A6A32C3EC3C93C10E4D3E8D1A * __this, const RuntimeMethod* method)
{
{
// public virtual void OnApplicationPause() { }
return;
}
}
// System.Void UnityEngine.XR.ARSubsystems.XRSessionSubsystem/Provider::OnApplicationResume()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Provider_OnApplicationResume_m598667339799D80D929DEBBA5C197AC4C394C52A (Provider_t4C3675997BB8AF3A6A32C3EC3C93C10E4D3E8D1A * __this, const RuntimeMethod* method)
{
{
// public virtual void OnApplicationResume() { }
return;
}
}
// System.IntPtr UnityEngine.XR.ARSubsystems.XRSessionSubsystem/Provider::get_nativePtr()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR intptr_t Provider_get_nativePtr_m36BB948CA26F060AE9F9B5E77191B48605C5770B (Provider_t4C3675997BB8AF3A6A32C3EC3C93C10E4D3E8D1A * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IntPtr_t_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
// public virtual IntPtr nativePtr => IntPtr.Zero;
return (intptr_t)(0);
}
}
// UnityEngine.XR.ARSubsystems.Promise`1<UnityEngine.XR.ARSubsystems.SessionAvailability> UnityEngine.XR.ARSubsystems.XRSessionSubsystem/Provider::GetAvailabilityAsync()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Promise_1_tB8B428F557CD6742430DB416C0B99C79CA1AA167 * Provider_GetAvailabilityAsync_m0C73C4907A03BA2F018EA2C0CE66C9C17423C6DD (Provider_t4C3675997BB8AF3A6A32C3EC3C93C10E4D3E8D1A * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Promise_1_CreateResolvedPromise_mDFDD3612998EF30142998D55C64B684BA09F4B1A_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
// return Promise<SessionAvailability>.CreateResolvedPromise(SessionAvailability.None);
Promise_1_tB8B428F557CD6742430DB416C0B99C79CA1AA167 * L_0;
L_0 = Promise_1_CreateResolvedPromise_mDFDD3612998EF30142998D55C64B684BA09F4B1A(0, /*hidden argument*/Promise_1_CreateResolvedPromise_mDFDD3612998EF30142998D55C64B684BA09F4B1A_RuntimeMethod_var);
return L_0;
}
}
// UnityEngine.XR.ARSubsystems.Promise`1<UnityEngine.XR.ARSubsystems.SessionInstallationStatus> UnityEngine.XR.ARSubsystems.XRSessionSubsystem/Provider::InstallAsync()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Promise_1_tB8B3F3631C923F82F653F3D73D6B3082CF7CDD88 * Provider_InstallAsync_m17CAA895097CD78BC743DD1CA0CB4B6F5F7091D6 (Provider_t4C3675997BB8AF3A6A32C3EC3C93C10E4D3E8D1A * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Promise_1_CreateResolvedPromise_m0539A4D1183B6650A6841CB26B4034A17958451A_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
// return Promise<SessionInstallationStatus>.CreateResolvedPromise(SessionInstallationStatus.ErrorInstallNotSupported);
Promise_1_tB8B3F3631C923F82F653F3D73D6B3082CF7CDD88 * L_0;
L_0 = Promise_1_CreateResolvedPromise_m0539A4D1183B6650A6841CB26B4034A17958451A(4, /*hidden argument*/Promise_1_CreateResolvedPromise_m0539A4D1183B6650A6841CB26B4034A17958451A_RuntimeMethod_var);
return L_0;
}
}
// UnityEngine.XR.ARSubsystems.TrackingState UnityEngine.XR.ARSubsystems.XRSessionSubsystem/Provider::get_trackingState()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Provider_get_trackingState_m3E9021C49EADF2BE9853FD13A23650CE5237A2BF (Provider_t4C3675997BB8AF3A6A32C3EC3C93C10E4D3E8D1A * __this, const RuntimeMethod* method)
{
{
// public virtual TrackingState trackingState => TrackingState.None;
return (int32_t)(0);
}
}
// UnityEngine.XR.ARSubsystems.NotTrackingReason UnityEngine.XR.ARSubsystems.XRSessionSubsystem/Provider::get_notTrackingReason()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Provider_get_notTrackingReason_mD6C96A5620A1DD87BCB86710E9460A41C5B18F66 (Provider_t4C3675997BB8AF3A6A32C3EC3C93C10E4D3E8D1A * __this, const RuntimeMethod* method)
{
{
// public virtual NotTrackingReason notTrackingReason => NotTrackingReason.Unsupported;
return (int32_t)(6);
}
}
// System.Guid UnityEngine.XR.ARSubsystems.XRSessionSubsystem/Provider::get_sessionId()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Guid_t Provider_get_sessionId_m28A8F75715D7469B0F555CAC2E9B7D71B68CAFCE (Provider_t4C3675997BB8AF3A6A32C3EC3C93C10E4D3E8D1A * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Guid_t_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
// public virtual Guid sessionId => Guid.Empty;
IL2CPP_RUNTIME_CLASS_INIT(Guid_t_il2cpp_TypeInfo_var);
Guid_t L_0 = ((Guid_t_StaticFields*)il2cpp_codegen_static_fields_for(Guid_t_il2cpp_TypeInfo_var))->get_Empty_0();
return L_0;
}
}
// System.Boolean UnityEngine.XR.ARSubsystems.XRSessionSubsystem/Provider::get_matchFrameRateEnabled()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Provider_get_matchFrameRateEnabled_m4EC0EF72F182CE2BBF27666D5750E46D54E797EB (Provider_t4C3675997BB8AF3A6A32C3EC3C93C10E4D3E8D1A * __this, const RuntimeMethod* method)
{
{
// public virtual bool matchFrameRateEnabled => false;
return (bool)0;
}
}
// System.Boolean UnityEngine.XR.ARSubsystems.XRSessionSubsystem/Provider::get_matchFrameRateRequested()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Provider_get_matchFrameRateRequested_m32C8D538076876248908EBA9F11F31D249894C37 (Provider_t4C3675997BB8AF3A6A32C3EC3C93C10E4D3E8D1A * __this, const RuntimeMethod* method)
{
{
// get => false;
return (bool)0;
}
}
// System.Void UnityEngine.XR.ARSubsystems.XRSessionSubsystem/Provider::set_matchFrameRateRequested(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Provider_set_matchFrameRateRequested_m22D49ABF01EEF1D750FD86A7E6D67BE6A462E0DC (Provider_t4C3675997BB8AF3A6A32C3EC3C93C10E4D3E8D1A * __this, bool ___value0, const RuntimeMethod* method)
{
{
// if (value)
bool L_0 = ___value0;
if (!L_0)
{
goto IL_000e;
}
}
{
// throw new NotSupportedException("Matching frame rate is not supported.");
NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 * L_1 = (NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339_il2cpp_TypeInfo_var)));
NotSupportedException__ctor_m40BC57BDA6E0E119B73700CC809A14B57DC65A90(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralC6EAFD4C3B23645C412BB41A74CBFEB5A62E11BF)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Provider_set_matchFrameRateRequested_m22D49ABF01EEF1D750FD86A7E6D67BE6A462E0DC_RuntimeMethod_var)));
}
IL_000e:
{
// }
return;
}
}
// System.Int32 UnityEngine.XR.ARSubsystems.XRSessionSubsystem/Provider::get_frameRate()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Provider_get_frameRate_mC445B76B58305DB89474EBF4A1EAC3DFBB8268D0 (Provider_t4C3675997BB8AF3A6A32C3EC3C93C10E4D3E8D1A * __this, const RuntimeMethod* method)
{
{
// throw new NotSupportedException("Querying the frame rate is not supported by this session subsystem.");
NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 * L_0 = (NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339_il2cpp_TypeInfo_var)));
NotSupportedException__ctor_m40BC57BDA6E0E119B73700CC809A14B57DC65A90(L_0, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral3B1384C148B6355F25E67F7DFA0D39159B634A77)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Provider_get_frameRate_mC445B76B58305DB89474EBF4A1EAC3DFBB8268D0_RuntimeMethod_var)));
}
}
// System.Void UnityEngine.XR.ARSubsystems.XRSessionSubsystem/Provider::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Provider__ctor_m921D9E5D94AB32804689C972E36ECA2601BB2AAE (Provider_t4C3675997BB8AF3A6A32C3EC3C93C10E4D3E8D1A * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SubsystemProvider_1__ctor_mD86DEB0B4DF879B2C514AFA17DEACAA610EFDD66_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
SubsystemProvider_1__ctor_mD86DEB0B4DF879B2C514AFA17DEACAA610EFDD66(__this, /*hidden argument*/SubsystemProvider_1__ctor_mD86DEB0B4DF879B2C514AFA17DEACAA610EFDD66_RuntimeMethod_var);
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
// Conversion methods for marshalling of: UnityEngine.XR.ARSubsystems.XRSessionSubsystemDescriptor/Cinfo
IL2CPP_EXTERN_C void Cinfo_t2842A97DA95F40ECADDCA24A291B6114A3A5F71A_marshal_pinvoke(const Cinfo_t2842A97DA95F40ECADDCA24A291B6114A3A5F71A& unmarshaled, Cinfo_t2842A97DA95F40ECADDCA24A291B6114A3A5F71A_marshaled_pinvoke& marshaled)
{
Exception_t* ___U3CproviderTypeU3Ek__BackingField_3Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field '<providerType>k__BackingField' of type 'Cinfo': Reference type field marshaling is not supported.");
IL2CPP_RAISE_MANAGED_EXCEPTION(___U3CproviderTypeU3Ek__BackingField_3Exception, NULL);
}
IL2CPP_EXTERN_C void Cinfo_t2842A97DA95F40ECADDCA24A291B6114A3A5F71A_marshal_pinvoke_back(const Cinfo_t2842A97DA95F40ECADDCA24A291B6114A3A5F71A_marshaled_pinvoke& marshaled, Cinfo_t2842A97DA95F40ECADDCA24A291B6114A3A5F71A& unmarshaled)
{
Exception_t* ___U3CproviderTypeU3Ek__BackingField_3Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field '<providerType>k__BackingField' of type 'Cinfo': Reference type field marshaling is not supported.");
IL2CPP_RAISE_MANAGED_EXCEPTION(___U3CproviderTypeU3Ek__BackingField_3Exception, NULL);
}
// Conversion method for clean up from marshalling of: UnityEngine.XR.ARSubsystems.XRSessionSubsystemDescriptor/Cinfo
IL2CPP_EXTERN_C void Cinfo_t2842A97DA95F40ECADDCA24A291B6114A3A5F71A_marshal_pinvoke_cleanup(Cinfo_t2842A97DA95F40ECADDCA24A291B6114A3A5F71A_marshaled_pinvoke& marshaled)
{
}
// Conversion methods for marshalling of: UnityEngine.XR.ARSubsystems.XRSessionSubsystemDescriptor/Cinfo
IL2CPP_EXTERN_C void Cinfo_t2842A97DA95F40ECADDCA24A291B6114A3A5F71A_marshal_com(const Cinfo_t2842A97DA95F40ECADDCA24A291B6114A3A5F71A& unmarshaled, Cinfo_t2842A97DA95F40ECADDCA24A291B6114A3A5F71A_marshaled_com& marshaled)
{
Exception_t* ___U3CproviderTypeU3Ek__BackingField_3Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field '<providerType>k__BackingField' of type 'Cinfo': Reference type field marshaling is not supported.");
IL2CPP_RAISE_MANAGED_EXCEPTION(___U3CproviderTypeU3Ek__BackingField_3Exception, NULL);
}
IL2CPP_EXTERN_C void Cinfo_t2842A97DA95F40ECADDCA24A291B6114A3A5F71A_marshal_com_back(const Cinfo_t2842A97DA95F40ECADDCA24A291B6114A3A5F71A_marshaled_com& marshaled, Cinfo_t2842A97DA95F40ECADDCA24A291B6114A3A5F71A& unmarshaled)
{
Exception_t* ___U3CproviderTypeU3Ek__BackingField_3Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field '<providerType>k__BackingField' of type 'Cinfo': Reference type field marshaling is not supported.");
IL2CPP_RAISE_MANAGED_EXCEPTION(___U3CproviderTypeU3Ek__BackingField_3Exception, NULL);
}
// Conversion method for clean up from marshalling of: UnityEngine.XR.ARSubsystems.XRSessionSubsystemDescriptor/Cinfo
IL2CPP_EXTERN_C void Cinfo_t2842A97DA95F40ECADDCA24A291B6114A3A5F71A_marshal_com_cleanup(Cinfo_t2842A97DA95F40ECADDCA24A291B6114A3A5F71A_marshaled_com& marshaled)
{
}
// System.Boolean UnityEngine.XR.ARSubsystems.XRSessionSubsystemDescriptor/Cinfo::get_supportsInstall()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Cinfo_get_supportsInstall_m706A828C9AE61FF74DF4640D80E52148CDF4F3AD (Cinfo_t2842A97DA95F40ECADDCA24A291B6114A3A5F71A * __this, const RuntimeMethod* method)
{
{
// public bool supportsInstall { get; set; }
bool L_0 = __this->get_U3CsupportsInstallU3Ek__BackingField_0();
return L_0;
}
}
IL2CPP_EXTERN_C bool Cinfo_get_supportsInstall_m706A828C9AE61FF74DF4640D80E52148CDF4F3AD_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
Cinfo_t2842A97DA95F40ECADDCA24A291B6114A3A5F71A * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<Cinfo_t2842A97DA95F40ECADDCA24A291B6114A3A5F71A *>(__this + _offset);
bool _returnValue;
_returnValue = Cinfo_get_supportsInstall_m706A828C9AE61FF74DF4640D80E52148CDF4F3AD_inline(_thisAdjusted, method);
return _returnValue;
}
// System.Void UnityEngine.XR.ARSubsystems.XRSessionSubsystemDescriptor/Cinfo::set_supportsInstall(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Cinfo_set_supportsInstall_m05EE61C58E505A8F20DEA68862395341F1DAD3FD (Cinfo_t2842A97DA95F40ECADDCA24A291B6114A3A5F71A * __this, bool ___value0, const RuntimeMethod* method)
{
{
// public bool supportsInstall { get; set; }
bool L_0 = ___value0;
__this->set_U3CsupportsInstallU3Ek__BackingField_0(L_0);
return;
}
}
IL2CPP_EXTERN_C void Cinfo_set_supportsInstall_m05EE61C58E505A8F20DEA68862395341F1DAD3FD_AdjustorThunk (RuntimeObject * __this, bool ___value0, const RuntimeMethod* method)
{
Cinfo_t2842A97DA95F40ECADDCA24A291B6114A3A5F71A * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<Cinfo_t2842A97DA95F40ECADDCA24A291B6114A3A5F71A *>(__this + _offset);
Cinfo_set_supportsInstall_m05EE61C58E505A8F20DEA68862395341F1DAD3FD_inline(_thisAdjusted, ___value0, method);
}
// System.Boolean UnityEngine.XR.ARSubsystems.XRSessionSubsystemDescriptor/Cinfo::get_supportsMatchFrameRate()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Cinfo_get_supportsMatchFrameRate_m1E603F47BF0A28EE5E7377A28D9D2BB29BFD3B6F (Cinfo_t2842A97DA95F40ECADDCA24A291B6114A3A5F71A * __this, const RuntimeMethod* method)
{
{
// public bool supportsMatchFrameRate { get; set; }
bool L_0 = __this->get_U3CsupportsMatchFrameRateU3Ek__BackingField_1();
return L_0;
}
}
IL2CPP_EXTERN_C bool Cinfo_get_supportsMatchFrameRate_m1E603F47BF0A28EE5E7377A28D9D2BB29BFD3B6F_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
Cinfo_t2842A97DA95F40ECADDCA24A291B6114A3A5F71A * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<Cinfo_t2842A97DA95F40ECADDCA24A291B6114A3A5F71A *>(__this + _offset);
bool _returnValue;
_returnValue = Cinfo_get_supportsMatchFrameRate_m1E603F47BF0A28EE5E7377A28D9D2BB29BFD3B6F_inline(_thisAdjusted, method);
return _returnValue;
}
// System.Void UnityEngine.XR.ARSubsystems.XRSessionSubsystemDescriptor/Cinfo::set_supportsMatchFrameRate(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Cinfo_set_supportsMatchFrameRate_m9CB328CEF43BCE3E59F26A97D32AEE1D201F8787 (Cinfo_t2842A97DA95F40ECADDCA24A291B6114A3A5F71A * __this, bool ___value0, const RuntimeMethod* method)
{
{
// public bool supportsMatchFrameRate { get; set; }
bool L_0 = ___value0;
__this->set_U3CsupportsMatchFrameRateU3Ek__BackingField_1(L_0);
return;
}
}
IL2CPP_EXTERN_C void Cinfo_set_supportsMatchFrameRate_m9CB328CEF43BCE3E59F26A97D32AEE1D201F8787_AdjustorThunk (RuntimeObject * __this, bool ___value0, const RuntimeMethod* method)
{
Cinfo_t2842A97DA95F40ECADDCA24A291B6114A3A5F71A * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<Cinfo_t2842A97DA95F40ECADDCA24A291B6114A3A5F71A *>(__this + _offset);
Cinfo_set_supportsMatchFrameRate_m9CB328CEF43BCE3E59F26A97D32AEE1D201F8787_inline(_thisAdjusted, ___value0, method);
}
// System.String UnityEngine.XR.ARSubsystems.XRSessionSubsystemDescriptor/Cinfo::get_id()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Cinfo_get_id_mA521F604882D1F4C6FD30262F3E2C3B0609BFC55 (Cinfo_t2842A97DA95F40ECADDCA24A291B6114A3A5F71A * __this, const RuntimeMethod* method)
{
{
// public string id { get; set; }
String_t* L_0 = __this->get_U3CidU3Ek__BackingField_2();
return L_0;
}
}
IL2CPP_EXTERN_C String_t* Cinfo_get_id_mA521F604882D1F4C6FD30262F3E2C3B0609BFC55_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
Cinfo_t2842A97DA95F40ECADDCA24A291B6114A3A5F71A * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<Cinfo_t2842A97DA95F40ECADDCA24A291B6114A3A5F71A *>(__this + _offset);
String_t* _returnValue;
_returnValue = Cinfo_get_id_mA521F604882D1F4C6FD30262F3E2C3B0609BFC55_inline(_thisAdjusted, method);
return _returnValue;
}
// System.Void UnityEngine.XR.ARSubsystems.XRSessionSubsystemDescriptor/Cinfo::set_id(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Cinfo_set_id_m6A2CAB13FAD54AB05458DC5DE1FAB5C651E9D656 (Cinfo_t2842A97DA95F40ECADDCA24A291B6114A3A5F71A * __this, String_t* ___value0, const RuntimeMethod* method)
{
{
// public string id { get; set; }
String_t* L_0 = ___value0;
__this->set_U3CidU3Ek__BackingField_2(L_0);
return;
}
}
IL2CPP_EXTERN_C void Cinfo_set_id_m6A2CAB13FAD54AB05458DC5DE1FAB5C651E9D656_AdjustorThunk (RuntimeObject * __this, String_t* ___value0, const RuntimeMethod* method)
{
Cinfo_t2842A97DA95F40ECADDCA24A291B6114A3A5F71A * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<Cinfo_t2842A97DA95F40ECADDCA24A291B6114A3A5F71A *>(__this + _offset);
Cinfo_set_id_m6A2CAB13FAD54AB05458DC5DE1FAB5C651E9D656_inline(_thisAdjusted, ___value0, method);
}
// System.Type UnityEngine.XR.ARSubsystems.XRSessionSubsystemDescriptor/Cinfo::get_providerType()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t * Cinfo_get_providerType_mC64DDA0FD5E23FD53F7B9DAEAF4433487436835E (Cinfo_t2842A97DA95F40ECADDCA24A291B6114A3A5F71A * __this, const RuntimeMethod* method)
{
{
// public Type providerType { get; set; }
Type_t * L_0 = __this->get_U3CproviderTypeU3Ek__BackingField_3();
return L_0;
}
}
IL2CPP_EXTERN_C Type_t * Cinfo_get_providerType_mC64DDA0FD5E23FD53F7B9DAEAF4433487436835E_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
Cinfo_t2842A97DA95F40ECADDCA24A291B6114A3A5F71A * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<Cinfo_t2842A97DA95F40ECADDCA24A291B6114A3A5F71A *>(__this + _offset);
Type_t * _returnValue;
_returnValue = Cinfo_get_providerType_mC64DDA0FD5E23FD53F7B9DAEAF4433487436835E_inline(_thisAdjusted, method);
return _returnValue;
}
// System.Void UnityEngine.XR.ARSubsystems.XRSessionSubsystemDescriptor/Cinfo::set_providerType(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Cinfo_set_providerType_m2BCF5FEFC25D812C3E7F00725B49AE02540B2F8E (Cinfo_t2842A97DA95F40ECADDCA24A291B6114A3A5F71A * __this, Type_t * ___value0, const RuntimeMethod* method)
{
{
// public Type providerType { get; set; }
Type_t * L_0 = ___value0;
__this->set_U3CproviderTypeU3Ek__BackingField_3(L_0);
return;
}
}
IL2CPP_EXTERN_C void Cinfo_set_providerType_m2BCF5FEFC25D812C3E7F00725B49AE02540B2F8E_AdjustorThunk (RuntimeObject * __this, Type_t * ___value0, const RuntimeMethod* method)
{
Cinfo_t2842A97DA95F40ECADDCA24A291B6114A3A5F71A * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<Cinfo_t2842A97DA95F40ECADDCA24A291B6114A3A5F71A *>(__this + _offset);
Cinfo_set_providerType_m2BCF5FEFC25D812C3E7F00725B49AE02540B2F8E_inline(_thisAdjusted, ___value0, method);
}
// System.Type UnityEngine.XR.ARSubsystems.XRSessionSubsystemDescriptor/Cinfo::get_subsystemTypeOverride()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t * Cinfo_get_subsystemTypeOverride_mFB0EAD46EF91216924D0509C72DF82ADA526B99D (Cinfo_t2842A97DA95F40ECADDCA24A291B6114A3A5F71A * __this, const RuntimeMethod* method)
{
{
// public Type subsystemTypeOverride { get; set; }
Type_t * L_0 = __this->get_U3CsubsystemTypeOverrideU3Ek__BackingField_4();
return L_0;
}
}
IL2CPP_EXTERN_C Type_t * Cinfo_get_subsystemTypeOverride_mFB0EAD46EF91216924D0509C72DF82ADA526B99D_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
Cinfo_t2842A97DA95F40ECADDCA24A291B6114A3A5F71A * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<Cinfo_t2842A97DA95F40ECADDCA24A291B6114A3A5F71A *>(__this + _offset);
Type_t * _returnValue;
_returnValue = Cinfo_get_subsystemTypeOverride_mFB0EAD46EF91216924D0509C72DF82ADA526B99D_inline(_thisAdjusted, method);
return _returnValue;
}
// System.Void UnityEngine.XR.ARSubsystems.XRSessionSubsystemDescriptor/Cinfo::set_subsystemTypeOverride(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Cinfo_set_subsystemTypeOverride_m30FDD93193E0D694ABB33E184552AAF1A8AA36E6 (Cinfo_t2842A97DA95F40ECADDCA24A291B6114A3A5F71A * __this, Type_t * ___value0, const RuntimeMethod* method)
{
{
// public Type subsystemTypeOverride { get; set; }
Type_t * L_0 = ___value0;
__this->set_U3CsubsystemTypeOverrideU3Ek__BackingField_4(L_0);
return;
}
}
IL2CPP_EXTERN_C void Cinfo_set_subsystemTypeOverride_m30FDD93193E0D694ABB33E184552AAF1A8AA36E6_AdjustorThunk (RuntimeObject * __this, Type_t * ___value0, const RuntimeMethod* method)
{
Cinfo_t2842A97DA95F40ECADDCA24A291B6114A3A5F71A * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<Cinfo_t2842A97DA95F40ECADDCA24A291B6114A3A5F71A *>(__this + _offset);
Cinfo_set_subsystemTypeOverride_m30FDD93193E0D694ABB33E184552AAF1A8AA36E6_inline(_thisAdjusted, ___value0, method);
}
// System.Int32 UnityEngine.XR.ARSubsystems.XRSessionSubsystemDescriptor/Cinfo::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Cinfo_GetHashCode_m52D192E832A52B87FB2F03DB84EB47EED7DCD48C (Cinfo_t2842A97DA95F40ECADDCA24A291B6114A3A5F71A * __this, const RuntimeMethod* method)
{
bool V_0 = false;
{
// int hash = HashCode.ReferenceHash(id);
String_t* L_0;
L_0 = Cinfo_get_id_mA521F604882D1F4C6FD30262F3E2C3B0609BFC55_inline((Cinfo_t2842A97DA95F40ECADDCA24A291B6114A3A5F71A *)__this, /*hidden argument*/NULL);
int32_t L_1;
L_1 = HashCode_ReferenceHash_mE6CC6EA3C87D9F040876D66CF582D6FF68FC359C(L_0, /*hidden argument*/NULL);
// hash = hash * 486187739 + HashCode.ReferenceHash(providerType);
Type_t * L_2;
L_2 = Cinfo_get_providerType_mC64DDA0FD5E23FD53F7B9DAEAF4433487436835E_inline((Cinfo_t2842A97DA95F40ECADDCA24A291B6114A3A5F71A *)__this, /*hidden argument*/NULL);
int32_t L_3;
L_3 = HashCode_ReferenceHash_mE6CC6EA3C87D9F040876D66CF582D6FF68FC359C(L_2, /*hidden argument*/NULL);
// hash = hash * 486187739 + HashCode.ReferenceHash(subsystemTypeOverride);
Type_t * L_4;
L_4 = Cinfo_get_subsystemTypeOverride_mFB0EAD46EF91216924D0509C72DF82ADA526B99D_inline((Cinfo_t2842A97DA95F40ECADDCA24A291B6114A3A5F71A *)__this, /*hidden argument*/NULL);
int32_t L_5;
L_5 = HashCode_ReferenceHash_mE6CC6EA3C87D9F040876D66CF582D6FF68FC359C(L_4, /*hidden argument*/NULL);
// hash = hash * 486187739 + supportsInstall.GetHashCode();
bool L_6;
L_6 = Cinfo_get_supportsInstall_m706A828C9AE61FF74DF4640D80E52148CDF4F3AD_inline((Cinfo_t2842A97DA95F40ECADDCA24A291B6114A3A5F71A *)__this, /*hidden argument*/NULL);
V_0 = L_6;
int32_t L_7;
L_7 = Boolean_GetHashCode_m03AF8B3CECAE9106C44A00E3B33E51CBFC45C411((bool*)(&V_0), /*hidden argument*/NULL);
// hash = hash * 486187739 + supportsMatchFrameRate.GetHashCode();
bool L_8;
L_8 = Cinfo_get_supportsMatchFrameRate_m1E603F47BF0A28EE5E7377A28D9D2BB29BFD3B6F_inline((Cinfo_t2842A97DA95F40ECADDCA24A291B6114A3A5F71A *)__this, /*hidden argument*/NULL);
V_0 = L_8;
int32_t L_9;
L_9 = Boolean_GetHashCode_m03AF8B3CECAE9106C44A00E3B33E51CBFC45C411((bool*)(&V_0), /*hidden argument*/NULL);
// return hash;
return ((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)L_1, (int32_t)((int32_t)486187739))), (int32_t)L_3)), (int32_t)((int32_t)486187739))), (int32_t)L_5)), (int32_t)((int32_t)486187739))), (int32_t)L_7)), (int32_t)((int32_t)486187739))), (int32_t)L_9));
}
}
IL2CPP_EXTERN_C int32_t Cinfo_GetHashCode_m52D192E832A52B87FB2F03DB84EB47EED7DCD48C_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
Cinfo_t2842A97DA95F40ECADDCA24A291B6114A3A5F71A * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<Cinfo_t2842A97DA95F40ECADDCA24A291B6114A3A5F71A *>(__this + _offset);
int32_t _returnValue;
_returnValue = Cinfo_GetHashCode_m52D192E832A52B87FB2F03DB84EB47EED7DCD48C(_thisAdjusted, method);
return _returnValue;
}
// System.Boolean UnityEngine.XR.ARSubsystems.XRSessionSubsystemDescriptor/Cinfo::Equals(UnityEngine.XR.ARSubsystems.XRSessionSubsystemDescriptor/Cinfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Cinfo_Equals_m1C37149A7375CC94768E18102A1CB1AED3E3FF77 (Cinfo_t2842A97DA95F40ECADDCA24A291B6114A3A5F71A * __this, Cinfo_t2842A97DA95F40ECADDCA24A291B6114A3A5F71A ___other0, const RuntimeMethod* method)
{
{
// return
// string.Equals(id, other.id) &&
// #if UNITY_2020_2_OR_NEWER
// ReferenceEquals(providerType, other.providerType) &&
// ReferenceEquals(subsystemTypeOverride, other.subsystemTypeOverride) &&
// #else
// ReferenceEquals(subsystemImplementationType, other.subsystemImplementationType) &&
// #endif
// supportsInstall == other.supportsInstall &&
// supportsMatchFrameRate == other.supportsMatchFrameRate;
String_t* L_0;
L_0 = Cinfo_get_id_mA521F604882D1F4C6FD30262F3E2C3B0609BFC55_inline((Cinfo_t2842A97DA95F40ECADDCA24A291B6114A3A5F71A *)__this, /*hidden argument*/NULL);
String_t* L_1;
L_1 = Cinfo_get_id_mA521F604882D1F4C6FD30262F3E2C3B0609BFC55_inline((Cinfo_t2842A97DA95F40ECADDCA24A291B6114A3A5F71A *)(&___other0), /*hidden argument*/NULL);
bool L_2;
L_2 = String_Equals_mAFC6038D294F341434D9D67D7EADC7F97C556C9B(L_0, L_1, /*hidden argument*/NULL);
if (!L_2)
{
goto IL_0051;
}
}
{
Type_t * L_3;
L_3 = Cinfo_get_providerType_mC64DDA0FD5E23FD53F7B9DAEAF4433487436835E_inline((Cinfo_t2842A97DA95F40ECADDCA24A291B6114A3A5F71A *)__this, /*hidden argument*/NULL);
Type_t * L_4;
L_4 = Cinfo_get_providerType_mC64DDA0FD5E23FD53F7B9DAEAF4433487436835E_inline((Cinfo_t2842A97DA95F40ECADDCA24A291B6114A3A5F71A *)(&___other0), /*hidden argument*/NULL);
if ((!(((RuntimeObject*)(Type_t *)L_3) == ((RuntimeObject*)(Type_t *)L_4))))
{
goto IL_0051;
}
}
{
Type_t * L_5;
L_5 = Cinfo_get_subsystemTypeOverride_mFB0EAD46EF91216924D0509C72DF82ADA526B99D_inline((Cinfo_t2842A97DA95F40ECADDCA24A291B6114A3A5F71A *)__this, /*hidden argument*/NULL);
Type_t * L_6;
L_6 = Cinfo_get_subsystemTypeOverride_mFB0EAD46EF91216924D0509C72DF82ADA526B99D_inline((Cinfo_t2842A97DA95F40ECADDCA24A291B6114A3A5F71A *)(&___other0), /*hidden argument*/NULL);
if ((!(((RuntimeObject*)(Type_t *)L_5) == ((RuntimeObject*)(Type_t *)L_6))))
{
goto IL_0051;
}
}
{
bool L_7;
L_7 = Cinfo_get_supportsInstall_m706A828C9AE61FF74DF4640D80E52148CDF4F3AD_inline((Cinfo_t2842A97DA95F40ECADDCA24A291B6114A3A5F71A *)__this, /*hidden argument*/NULL);
bool L_8;
L_8 = Cinfo_get_supportsInstall_m706A828C9AE61FF74DF4640D80E52148CDF4F3AD_inline((Cinfo_t2842A97DA95F40ECADDCA24A291B6114A3A5F71A *)(&___other0), /*hidden argument*/NULL);
if ((!(((uint32_t)L_7) == ((uint32_t)L_8))))
{
goto IL_0051;
}
}
{
bool L_9;
L_9 = Cinfo_get_supportsMatchFrameRate_m1E603F47BF0A28EE5E7377A28D9D2BB29BFD3B6F_inline((Cinfo_t2842A97DA95F40ECADDCA24A291B6114A3A5F71A *)__this, /*hidden argument*/NULL);
bool L_10;
L_10 = Cinfo_get_supportsMatchFrameRate_m1E603F47BF0A28EE5E7377A28D9D2BB29BFD3B6F_inline((Cinfo_t2842A97DA95F40ECADDCA24A291B6114A3A5F71A *)(&___other0), /*hidden argument*/NULL);
return (bool)((((int32_t)L_9) == ((int32_t)L_10))? 1 : 0);
}
IL_0051:
{
return (bool)0;
}
}
IL2CPP_EXTERN_C bool Cinfo_Equals_m1C37149A7375CC94768E18102A1CB1AED3E3FF77_AdjustorThunk (RuntimeObject * __this, Cinfo_t2842A97DA95F40ECADDCA24A291B6114A3A5F71A ___other0, const RuntimeMethod* method)
{
Cinfo_t2842A97DA95F40ECADDCA24A291B6114A3A5F71A * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<Cinfo_t2842A97DA95F40ECADDCA24A291B6114A3A5F71A *>(__this + _offset);
bool _returnValue;
_returnValue = Cinfo_Equals_m1C37149A7375CC94768E18102A1CB1AED3E3FF77(_thisAdjusted, ___other0, method);
return _returnValue;
}
// System.Boolean UnityEngine.XR.ARSubsystems.XRSessionSubsystemDescriptor/Cinfo::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Cinfo_Equals_m515E1A8509A7C1472469FD535B7CBE5D58E45A78 (Cinfo_t2842A97DA95F40ECADDCA24A291B6114A3A5F71A * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Cinfo_t2842A97DA95F40ECADDCA24A291B6114A3A5F71A_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
// public override bool Equals(object obj) => obj is Cinfo && Equals((Cinfo)obj);
RuntimeObject * L_0 = ___obj0;
if (!((RuntimeObject *)IsInstSealed((RuntimeObject*)L_0, Cinfo_t2842A97DA95F40ECADDCA24A291B6114A3A5F71A_il2cpp_TypeInfo_var)))
{
goto IL_0015;
}
}
{
RuntimeObject * L_1 = ___obj0;
bool L_2;
L_2 = Cinfo_Equals_m1C37149A7375CC94768E18102A1CB1AED3E3FF77((Cinfo_t2842A97DA95F40ECADDCA24A291B6114A3A5F71A *)__this, ((*(Cinfo_t2842A97DA95F40ECADDCA24A291B6114A3A5F71A *)((Cinfo_t2842A97DA95F40ECADDCA24A291B6114A3A5F71A *)UnBox(L_1, Cinfo_t2842A97DA95F40ECADDCA24A291B6114A3A5F71A_il2cpp_TypeInfo_var)))), /*hidden argument*/NULL);
return L_2;
}
IL_0015:
{
return (bool)0;
}
}
IL2CPP_EXTERN_C bool Cinfo_Equals_m515E1A8509A7C1472469FD535B7CBE5D58E45A78_AdjustorThunk (RuntimeObject * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
Cinfo_t2842A97DA95F40ECADDCA24A291B6114A3A5F71A * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<Cinfo_t2842A97DA95F40ECADDCA24A291B6114A3A5F71A *>(__this + _offset);
bool _returnValue;
_returnValue = Cinfo_Equals_m515E1A8509A7C1472469FD535B7CBE5D58E45A78(_thisAdjusted, ___obj0, 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
IL2CPP_EXTERN_C void DelegatePInvokeWrapper_OnImageRequestCompleteDelegate_t118FB01E93241BFD5BCA5BEF2A6FD082ACAAB4DD (OnImageRequestCompleteDelegate_t118FB01E93241BFD5BCA5BEF2A6FD082ACAAB4DD * __this, int32_t ___status0, ConversionParams_t3DDB9752BA823641A302D0783C14048D9B09B74A ___conversionParams1, intptr_t ___dataPtr2, int32_t ___dataLength3, intptr_t ___context4, const RuntimeMethod* method)
{
typedef void (DEFAULT_CALL *PInvokeFunc)(int32_t, ConversionParams_t3DDB9752BA823641A302D0783C14048D9B09B74A , intptr_t, int32_t, intptr_t);
PInvokeFunc il2cppPInvokeFunc = reinterpret_cast<PInvokeFunc>(il2cpp_codegen_get_method_pointer(((RuntimeDelegate*)__this)->method));
// Native function invocation
il2cppPInvokeFunc(___status0, ___conversionParams1, ___dataPtr2, ___dataLength3, ___context4);
}
// System.Void UnityEngine.XR.ARSubsystems.XRCpuImage/Api/OnImageRequestCompleteDelegate::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OnImageRequestCompleteDelegate__ctor_mB4E3DC02E880D5890B499CFD8BC47B4C47CCD2BC (OnImageRequestCompleteDelegate_t118FB01E93241BFD5BCA5BEF2A6FD082ACAAB4DD * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method)
{
__this->set_method_ptr_0(il2cpp_codegen_get_method_pointer((RuntimeMethod*)___method1));
__this->set_method_3(___method1);
__this->set_m_target_2(___object0);
}
// System.Void UnityEngine.XR.ARSubsystems.XRCpuImage/Api/OnImageRequestCompleteDelegate::Invoke(UnityEngine.XR.ARSubsystems.XRCpuImage/AsyncConversionStatus,UnityEngine.XR.ARSubsystems.XRCpuImage/ConversionParams,System.IntPtr,System.Int32,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OnImageRequestCompleteDelegate_Invoke_mA88CBFF9DDB699B0AB6804612450DA27A2070081 (OnImageRequestCompleteDelegate_t118FB01E93241BFD5BCA5BEF2A6FD082ACAAB4DD * __this, int32_t ___status0, ConversionParams_t3DDB9752BA823641A302D0783C14048D9B09B74A ___conversionParams1, intptr_t ___dataPtr2, int32_t ___dataLength3, intptr_t ___context4, const RuntimeMethod* method)
{
DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8* delegateArrayToInvoke = __this->get_delegates_11();
Delegate_t** delegatesToInvoke;
il2cpp_array_size_t length;
if (delegateArrayToInvoke != NULL)
{
length = delegateArrayToInvoke->max_length;
delegatesToInvoke = reinterpret_cast<Delegate_t**>(delegateArrayToInvoke->GetAddressAtUnchecked(0));
}
else
{
length = 1;
delegatesToInvoke = reinterpret_cast<Delegate_t**>(&__this);
}
for (il2cpp_array_size_t i = 0; i < length; i++)
{
Delegate_t* currentDelegate = delegatesToInvoke[i];
Il2CppMethodPointer targetMethodPointer = currentDelegate->get_method_ptr_0();
RuntimeObject* targetThis = currentDelegate->get_m_target_2();
RuntimeMethod* targetMethod = (RuntimeMethod*)(currentDelegate->get_method_3());
if (!currentDelegate->get_method_is_virtual_10())
{
il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod);
}
bool ___methodIsStatic = MethodIsStatic(targetMethod);
int ___parameterCount = il2cpp_codegen_method_parameter_count(targetMethod);
if (___methodIsStatic)
{
if (___parameterCount == 5)
{
// open
typedef void (*FunctionPointerType) (int32_t, ConversionParams_t3DDB9752BA823641A302D0783C14048D9B09B74A , intptr_t, int32_t, intptr_t, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(___status0, ___conversionParams1, ___dataPtr2, ___dataLength3, ___context4, targetMethod);
}
else
{
// closed
typedef void (*FunctionPointerType) (void*, int32_t, ConversionParams_t3DDB9752BA823641A302D0783C14048D9B09B74A , intptr_t, int32_t, intptr_t, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(targetThis, ___status0, ___conversionParams1, ___dataPtr2, ___dataLength3, ___context4, targetMethod);
}
}
else
{
// closed
if (targetThis == NULL)
{
typedef void (*FunctionPointerType) (RuntimeObject*, ConversionParams_t3DDB9752BA823641A302D0783C14048D9B09B74A , intptr_t, int32_t, intptr_t, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)((RuntimeObject*)(reinterpret_cast<RuntimeObject*>(&___status0) - 1), ___conversionParams1, ___dataPtr2, ___dataLength3, ___context4, targetMethod);
}
else
{
typedef void (*FunctionPointerType) (void*, int32_t, ConversionParams_t3DDB9752BA823641A302D0783C14048D9B09B74A , intptr_t, int32_t, intptr_t, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(targetThis, ___status0, ___conversionParams1, ___dataPtr2, ___dataLength3, ___context4, targetMethod);
}
}
}
}
#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
// System.IntPtr UnityEngine.XR.ARSubsystems.XRCpuImage/Plane/Cinfo::get_dataPtr()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR intptr_t Cinfo_get_dataPtr_m72B8A6BDAA98FA3CF92A9E03807130E4B6341B35 (Cinfo_t11C577CFE4A1D91F887A6423F6D1350DA45CA5FC * __this, const RuntimeMethod* method)
{
{
// public IntPtr dataPtr => m_DataPtr;
intptr_t L_0 = __this->get_m_DataPtr_0();
return (intptr_t)L_0;
}
}
IL2CPP_EXTERN_C intptr_t Cinfo_get_dataPtr_m72B8A6BDAA98FA3CF92A9E03807130E4B6341B35_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
Cinfo_t11C577CFE4A1D91F887A6423F6D1350DA45CA5FC * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<Cinfo_t11C577CFE4A1D91F887A6423F6D1350DA45CA5FC *>(__this + _offset);
intptr_t _returnValue;
_returnValue = Cinfo_get_dataPtr_m72B8A6BDAA98FA3CF92A9E03807130E4B6341B35_inline(_thisAdjusted, method);
return _returnValue;
}
// System.Int32 UnityEngine.XR.ARSubsystems.XRCpuImage/Plane/Cinfo::get_dataLength()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Cinfo_get_dataLength_mBF9DA90E69A88EF50923C839B5CE8A03264EAB9A (Cinfo_t11C577CFE4A1D91F887A6423F6D1350DA45CA5FC * __this, const RuntimeMethod* method)
{
{
// public int dataLength => m_DataLength;
int32_t L_0 = __this->get_m_DataLength_1();
return L_0;
}
}
IL2CPP_EXTERN_C int32_t Cinfo_get_dataLength_mBF9DA90E69A88EF50923C839B5CE8A03264EAB9A_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
Cinfo_t11C577CFE4A1D91F887A6423F6D1350DA45CA5FC * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<Cinfo_t11C577CFE4A1D91F887A6423F6D1350DA45CA5FC *>(__this + _offset);
int32_t _returnValue;
_returnValue = Cinfo_get_dataLength_mBF9DA90E69A88EF50923C839B5CE8A03264EAB9A_inline(_thisAdjusted, method);
return _returnValue;
}
// System.Int32 UnityEngine.XR.ARSubsystems.XRCpuImage/Plane/Cinfo::get_rowStride()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Cinfo_get_rowStride_m67E7894AA413F614310BF6A667BDEA1950165492 (Cinfo_t11C577CFE4A1D91F887A6423F6D1350DA45CA5FC * __this, const RuntimeMethod* method)
{
{
// public int rowStride => m_RowStride;
int32_t L_0 = __this->get_m_RowStride_2();
return L_0;
}
}
IL2CPP_EXTERN_C int32_t Cinfo_get_rowStride_m67E7894AA413F614310BF6A667BDEA1950165492_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
Cinfo_t11C577CFE4A1D91F887A6423F6D1350DA45CA5FC * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<Cinfo_t11C577CFE4A1D91F887A6423F6D1350DA45CA5FC *>(__this + _offset);
int32_t _returnValue;
_returnValue = Cinfo_get_rowStride_m67E7894AA413F614310BF6A667BDEA1950165492_inline(_thisAdjusted, method);
return _returnValue;
}
// System.Int32 UnityEngine.XR.ARSubsystems.XRCpuImage/Plane/Cinfo::get_pixelStride()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Cinfo_get_pixelStride_m2595FA36CA7479B00D3EFD507C3C9439CC5DBDE0 (Cinfo_t11C577CFE4A1D91F887A6423F6D1350DA45CA5FC * __this, const RuntimeMethod* method)
{
{
// public int pixelStride => m_PixelStride;
int32_t L_0 = __this->get_m_PixelStride_3();
return L_0;
}
}
IL2CPP_EXTERN_C int32_t Cinfo_get_pixelStride_m2595FA36CA7479B00D3EFD507C3C9439CC5DBDE0_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
Cinfo_t11C577CFE4A1D91F887A6423F6D1350DA45CA5FC * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<Cinfo_t11C577CFE4A1D91F887A6423F6D1350DA45CA5FC *>(__this + _offset);
int32_t _returnValue;
_returnValue = Cinfo_get_pixelStride_m2595FA36CA7479B00D3EFD507C3C9439CC5DBDE0_inline(_thisAdjusted, method);
return _returnValue;
}
// System.Boolean UnityEngine.XR.ARSubsystems.XRCpuImage/Plane/Cinfo::Equals(UnityEngine.XR.ARSubsystems.XRCpuImage/Plane/Cinfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Cinfo_Equals_m5B7C627F1C89E10A0CE713A46B283219E35F6365 (Cinfo_t11C577CFE4A1D91F887A6423F6D1350DA45CA5FC * __this, Cinfo_t11C577CFE4A1D91F887A6423F6D1350DA45CA5FC ___other0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IntPtr_t_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
intptr_t V_0;
memset((&V_0), 0, sizeof(V_0));
int32_t V_1 = 0;
{
// return (dataPtr.Equals(other.dataPtr) && dataLength.Equals(other.dataLength)
// && rowStride.Equals(other.rowStride) && pixelStride.Equals(other.pixelStride));
intptr_t L_0;
L_0 = Cinfo_get_dataPtr_m72B8A6BDAA98FA3CF92A9E03807130E4B6341B35_inline((Cinfo_t11C577CFE4A1D91F887A6423F6D1350DA45CA5FC *)__this, /*hidden argument*/NULL);
V_0 = (intptr_t)L_0;
intptr_t L_1;
L_1 = Cinfo_get_dataPtr_m72B8A6BDAA98FA3CF92A9E03807130E4B6341B35_inline((Cinfo_t11C577CFE4A1D91F887A6423F6D1350DA45CA5FC *)(&___other0), /*hidden argument*/NULL);
intptr_t L_2 = L_1;
RuntimeObject * L_3 = Box(IntPtr_t_il2cpp_TypeInfo_var, &L_2);
bool L_4;
L_4 = IntPtr_Equals_m8ABF0A82F61F3B236B11DD4A1E19CEC5CC5A50F0((intptr_t*)(&V_0), L_3, /*hidden argument*/NULL);
if (!L_4)
{
goto IL_0060;
}
}
{
int32_t L_5;
L_5 = Cinfo_get_dataLength_mBF9DA90E69A88EF50923C839B5CE8A03264EAB9A_inline((Cinfo_t11C577CFE4A1D91F887A6423F6D1350DA45CA5FC *)__this, /*hidden argument*/NULL);
V_1 = L_5;
int32_t L_6;
L_6 = Cinfo_get_dataLength_mBF9DA90E69A88EF50923C839B5CE8A03264EAB9A_inline((Cinfo_t11C577CFE4A1D91F887A6423F6D1350DA45CA5FC *)(&___other0), /*hidden argument*/NULL);
bool L_7;
L_7 = Int32_Equals_mA73E9B3A01B9B9151C262C1E1A56C6AB4891A5E4((int32_t*)(&V_1), L_6, /*hidden argument*/NULL);
if (!L_7)
{
goto IL_0060;
}
}
{
int32_t L_8;
L_8 = Cinfo_get_rowStride_m67E7894AA413F614310BF6A667BDEA1950165492_inline((Cinfo_t11C577CFE4A1D91F887A6423F6D1350DA45CA5FC *)__this, /*hidden argument*/NULL);
V_1 = L_8;
int32_t L_9;
L_9 = Cinfo_get_rowStride_m67E7894AA413F614310BF6A667BDEA1950165492_inline((Cinfo_t11C577CFE4A1D91F887A6423F6D1350DA45CA5FC *)(&___other0), /*hidden argument*/NULL);
bool L_10;
L_10 = Int32_Equals_mA73E9B3A01B9B9151C262C1E1A56C6AB4891A5E4((int32_t*)(&V_1), L_9, /*hidden argument*/NULL);
if (!L_10)
{
goto IL_0060;
}
}
{
int32_t L_11;
L_11 = Cinfo_get_pixelStride_m2595FA36CA7479B00D3EFD507C3C9439CC5DBDE0_inline((Cinfo_t11C577CFE4A1D91F887A6423F6D1350DA45CA5FC *)__this, /*hidden argument*/NULL);
V_1 = L_11;
int32_t L_12;
L_12 = Cinfo_get_pixelStride_m2595FA36CA7479B00D3EFD507C3C9439CC5DBDE0_inline((Cinfo_t11C577CFE4A1D91F887A6423F6D1350DA45CA5FC *)(&___other0), /*hidden argument*/NULL);
bool L_13;
L_13 = Int32_Equals_mA73E9B3A01B9B9151C262C1E1A56C6AB4891A5E4((int32_t*)(&V_1), L_12, /*hidden argument*/NULL);
return L_13;
}
IL_0060:
{
return (bool)0;
}
}
IL2CPP_EXTERN_C bool Cinfo_Equals_m5B7C627F1C89E10A0CE713A46B283219E35F6365_AdjustorThunk (RuntimeObject * __this, Cinfo_t11C577CFE4A1D91F887A6423F6D1350DA45CA5FC ___other0, const RuntimeMethod* method)
{
Cinfo_t11C577CFE4A1D91F887A6423F6D1350DA45CA5FC * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<Cinfo_t11C577CFE4A1D91F887A6423F6D1350DA45CA5FC *>(__this + _offset);
bool _returnValue;
_returnValue = Cinfo_Equals_m5B7C627F1C89E10A0CE713A46B283219E35F6365(_thisAdjusted, ___other0, method);
return _returnValue;
}
// System.Boolean UnityEngine.XR.ARSubsystems.XRCpuImage/Plane/Cinfo::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Cinfo_Equals_m3D18D26EAA0FED30423B3C8B38961816A1472F62 (Cinfo_t11C577CFE4A1D91F887A6423F6D1350DA45CA5FC * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Cinfo_t11C577CFE4A1D91F887A6423F6D1350DA45CA5FC_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
Cinfo_t11C577CFE4A1D91F887A6423F6D1350DA45CA5FC V_0;
memset((&V_0), 0, sizeof(V_0));
{
// public override bool Equals(System.Object obj) => obj is Cinfo other && Equals(other);
RuntimeObject * L_0 = ___obj0;
if (!((RuntimeObject *)IsInstSealed((RuntimeObject*)L_0, Cinfo_t11C577CFE4A1D91F887A6423F6D1350DA45CA5FC_il2cpp_TypeInfo_var)))
{
goto IL_0017;
}
}
{
RuntimeObject * L_1 = ___obj0;
V_0 = ((*(Cinfo_t11C577CFE4A1D91F887A6423F6D1350DA45CA5FC *)((Cinfo_t11C577CFE4A1D91F887A6423F6D1350DA45CA5FC *)UnBox(L_1, Cinfo_t11C577CFE4A1D91F887A6423F6D1350DA45CA5FC_il2cpp_TypeInfo_var))));
Cinfo_t11C577CFE4A1D91F887A6423F6D1350DA45CA5FC L_2 = V_0;
bool L_3;
L_3 = Cinfo_Equals_m5B7C627F1C89E10A0CE713A46B283219E35F6365((Cinfo_t11C577CFE4A1D91F887A6423F6D1350DA45CA5FC *)__this, L_2, /*hidden argument*/NULL);
return L_3;
}
IL_0017:
{
return (bool)0;
}
}
IL2CPP_EXTERN_C bool Cinfo_Equals_m3D18D26EAA0FED30423B3C8B38961816A1472F62_AdjustorThunk (RuntimeObject * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
Cinfo_t11C577CFE4A1D91F887A6423F6D1350DA45CA5FC * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<Cinfo_t11C577CFE4A1D91F887A6423F6D1350DA45CA5FC *>(__this + _offset);
bool _returnValue;
_returnValue = Cinfo_Equals_m3D18D26EAA0FED30423B3C8B38961816A1472F62(_thisAdjusted, ___obj0, method);
return _returnValue;
}
// System.Int32 UnityEngine.XR.ARSubsystems.XRCpuImage/Plane/Cinfo::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Cinfo_GetHashCode_mC3F4D4AA0494F15A8E0B0F765FA005C1A574CCCF (Cinfo_t11C577CFE4A1D91F887A6423F6D1350DA45CA5FC * __this, const RuntimeMethod* method)
{
intptr_t V_0;
memset((&V_0), 0, sizeof(V_0));
int32_t V_1 = 0;
{
// public override int GetHashCode() => HashCode.Combine(
// dataPtr.GetHashCode(),
// dataLength.GetHashCode(),
// rowStride.GetHashCode(),
// pixelStride.GetHashCode());
intptr_t L_0;
L_0 = Cinfo_get_dataPtr_m72B8A6BDAA98FA3CF92A9E03807130E4B6341B35_inline((Cinfo_t11C577CFE4A1D91F887A6423F6D1350DA45CA5FC *)__this, /*hidden argument*/NULL);
V_0 = (intptr_t)L_0;
int32_t L_1;
L_1 = IntPtr_GetHashCode_m55E65FB52EFE7C0EBC3C28E66A5D7542F3B1D35D((intptr_t*)(&V_0), /*hidden argument*/NULL);
int32_t L_2;
L_2 = Cinfo_get_dataLength_mBF9DA90E69A88EF50923C839B5CE8A03264EAB9A_inline((Cinfo_t11C577CFE4A1D91F887A6423F6D1350DA45CA5FC *)__this, /*hidden argument*/NULL);
V_1 = L_2;
int32_t L_3;
L_3 = Int32_GetHashCode_mEDD3F492A5F7CF021125AE3F38E2B8F8743FC667((int32_t*)(&V_1), /*hidden argument*/NULL);
int32_t L_4;
L_4 = Cinfo_get_rowStride_m67E7894AA413F614310BF6A667BDEA1950165492_inline((Cinfo_t11C577CFE4A1D91F887A6423F6D1350DA45CA5FC *)__this, /*hidden argument*/NULL);
V_1 = L_4;
int32_t L_5;
L_5 = Int32_GetHashCode_mEDD3F492A5F7CF021125AE3F38E2B8F8743FC667((int32_t*)(&V_1), /*hidden argument*/NULL);
int32_t L_6;
L_6 = Cinfo_get_pixelStride_m2595FA36CA7479B00D3EFD507C3C9439CC5DBDE0_inline((Cinfo_t11C577CFE4A1D91F887A6423F6D1350DA45CA5FC *)__this, /*hidden argument*/NULL);
V_1 = L_6;
int32_t L_7;
L_7 = Int32_GetHashCode_mEDD3F492A5F7CF021125AE3F38E2B8F8743FC667((int32_t*)(&V_1), /*hidden argument*/NULL);
int32_t L_8;
L_8 = HashCode_Combine_mCF5A2D8E169AE770B379DCD8DE5229296453BD82(L_1, L_3, L_5, L_7, /*hidden argument*/NULL);
return L_8;
}
}
IL2CPP_EXTERN_C int32_t Cinfo_GetHashCode_mC3F4D4AA0494F15A8E0B0F765FA005C1A574CCCF_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
Cinfo_t11C577CFE4A1D91F887A6423F6D1350DA45CA5FC * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<Cinfo_t11C577CFE4A1D91F887A6423F6D1350DA45CA5FC *>(__this + _offset);
int32_t _returnValue;
_returnValue = Cinfo_GetHashCode_mC3F4D4AA0494F15A8E0B0F765FA005C1A574CCCF(_thisAdjusted, method);
return _returnValue;
}
// System.String UnityEngine.XR.ARSubsystems.XRCpuImage/Plane/Cinfo::ToString()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Cinfo_ToString_m4D93FD001F1E9EC984CBFB7997FE480E212F83DF (Cinfo_t11C577CFE4A1D91F887A6423F6D1350DA45CA5FC * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int64_t378EE0D608BD3107E77238E85F30D2BBD46981F3_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral6E08267B4D40BEF3D6FD241002FD8395E431BF8A);
s_Il2CppMethodInitialized = true;
}
intptr_t V_0;
memset((&V_0), 0, sizeof(V_0));
{
// => $"dataPtr: 0x{dataPtr.ToInt64():x} length:{dataLength} rowStride:{rowStride} pixelStride:{pixelStride}";
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_0 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)SZArrayNew(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE_il2cpp_TypeInfo_var, (uint32_t)4);
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_1 = L_0;
intptr_t L_2;
L_2 = Cinfo_get_dataPtr_m72B8A6BDAA98FA3CF92A9E03807130E4B6341B35_inline((Cinfo_t11C577CFE4A1D91F887A6423F6D1350DA45CA5FC *)__this, /*hidden argument*/NULL);
V_0 = (intptr_t)L_2;
int64_t L_3;
L_3 = IntPtr_ToInt64_m521F809F5D9ECAF93E808CFFFE45F67620C7879A((intptr_t*)(&V_0), /*hidden argument*/NULL);
int64_t L_4 = L_3;
RuntimeObject * L_5 = Box(Int64_t378EE0D608BD3107E77238E85F30D2BBD46981F3_il2cpp_TypeInfo_var, &L_4);
NullCheck(L_1);
ArrayElementTypeCheck (L_1, L_5);
(L_1)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_5);
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_6 = L_1;
int32_t L_7;
L_7 = Cinfo_get_dataLength_mBF9DA90E69A88EF50923C839B5CE8A03264EAB9A_inline((Cinfo_t11C577CFE4A1D91F887A6423F6D1350DA45CA5FC *)__this, /*hidden argument*/NULL);
int32_t L_8 = L_7;
RuntimeObject * L_9 = Box(Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var, &L_8);
NullCheck(L_6);
ArrayElementTypeCheck (L_6, L_9);
(L_6)->SetAt(static_cast<il2cpp_array_size_t>(1), (RuntimeObject *)L_9);
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_10 = L_6;
int32_t L_11;
L_11 = Cinfo_get_rowStride_m67E7894AA413F614310BF6A667BDEA1950165492_inline((Cinfo_t11C577CFE4A1D91F887A6423F6D1350DA45CA5FC *)__this, /*hidden argument*/NULL);
int32_t L_12 = L_11;
RuntimeObject * L_13 = Box(Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var, &L_12);
NullCheck(L_10);
ArrayElementTypeCheck (L_10, L_13);
(L_10)->SetAt(static_cast<il2cpp_array_size_t>(2), (RuntimeObject *)L_13);
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_14 = L_10;
int32_t L_15;
L_15 = Cinfo_get_pixelStride_m2595FA36CA7479B00D3EFD507C3C9439CC5DBDE0_inline((Cinfo_t11C577CFE4A1D91F887A6423F6D1350DA45CA5FC *)__this, /*hidden argument*/NULL);
int32_t L_16 = L_15;
RuntimeObject * L_17 = Box(Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var, &L_16);
NullCheck(L_14);
ArrayElementTypeCheck (L_14, L_17);
(L_14)->SetAt(static_cast<il2cpp_array_size_t>(3), (RuntimeObject *)L_17);
String_t* L_18;
L_18 = String_Format_mCED6767EA5FEE6F15ABCD5B4F9150D1284C2795B(_stringLiteral6E08267B4D40BEF3D6FD241002FD8395E431BF8A, L_14, /*hidden argument*/NULL);
return L_18;
}
}
IL2CPP_EXTERN_C String_t* Cinfo_ToString_m4D93FD001F1E9EC984CBFB7997FE480E212F83DF_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
Cinfo_t11C577CFE4A1D91F887A6423F6D1350DA45CA5FC * _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<Cinfo_t11C577CFE4A1D91F887A6423F6D1350DA45CA5FC *>(__this + _offset);
String_t* _returnValue;
_returnValue = Cinfo_ToString_m4D93FD001F1E9EC984CBFB7997FE480E212F83DF(_thisAdjusted, method);
return _returnValue;
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR JobHandle_t8AEB8D31C25D7774C71D62B0C662525E6E36D847 AddReferenceImageJobState_get_jobHandle_mD67B6C7B795C0EAAF2B27C2C23A0CDF0597DDD41_inline (AddReferenceImageJobState_t6818A53BD54BDCDCA326D660A1575F66DF832633 * __this, const RuntimeMethod* method)
{
{
// public JobHandle jobHandle { get; }
JobHandle_t8AEB8D31C25D7774C71D62B0C662525E6E36D847 L_0 = __this->get_U3CjobHandleU3Ek__BackingField_2();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR intptr_t AddReferenceImageJobState_AsIntPtr_m3918B9BEE2FA6B991CFA1BE13F1B211656B8A78B_inline (AddReferenceImageJobState_t6818A53BD54BDCDCA326D660A1575F66DF832633 * __this, const RuntimeMethod* method)
{
{
// public IntPtr AsIntPtr() => m_Handle;
intptr_t L_0 = __this->get_m_Handle_0();
return (intptr_t)L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B BoundedPlane_get_trackableId_m32943441D74DC226DC907A05B5B6C6EBBC70F95B_inline (BoundedPlane_t9001963C43ACDF4CDEA8BBF97CD783B7969B79C5 * __this, const RuntimeMethod* method)
{
{
// public TrackableId trackableId => m_TrackableId;
TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B L_0 = __this->get_m_TrackableId_1();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B BoundedPlane_get_subsumedById_mD61EFD7A91B5F290F63A1AE59153B75BB33B89CF_inline (BoundedPlane_t9001963C43ACDF4CDEA8BBF97CD783B7969B79C5 * __this, const RuntimeMethod* method)
{
{
// public TrackableId subsumedById => m_SubsumedById;
TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B L_0 = __this->get_m_SubsumedById_2();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A BoundedPlane_get_pose_m8302E13809156362584FA0AE137DD911D30665BA_inline (BoundedPlane_t9001963C43ACDF4CDEA8BBF97CD783B7969B79C5 * __this, const RuntimeMethod* method)
{
{
// public Pose pose => m_Pose;
Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A L_0 = __this->get_m_Pose_4();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 BoundedPlane_get_center_mA4667303D86B331F7EC5F278910145E7633EA973_inline (BoundedPlane_t9001963C43ACDF4CDEA8BBF97CD783B7969B79C5 * __this, const RuntimeMethod* method)
{
{
// public Vector2 center => m_Center;
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 L_0 = __this->get_m_Center_3();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 Vector2_op_Multiply_mC7A7802352867555020A90205EBABA56EE5E36CB_inline (Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___a0, float ___d1, const RuntimeMethod* method)
{
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 V_0;
memset((&V_0), 0, sizeof(V_0));
{
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 L_0 = ___a0;
float L_1 = L_0.get_x_0();
float L_2 = ___d1;
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 L_3 = ___a0;
float L_4 = L_3.get_y_1();
float L_5 = ___d1;
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 L_6;
memset((&L_6), 0, sizeof(L_6));
Vector2__ctor_m9F1F2D5EB5D1FF7091BB527AC8A72CBB309D115E_inline((&L_6), ((float)il2cpp_codegen_multiply((float)L_1, (float)L_2)), ((float)il2cpp_codegen_multiply((float)L_4, (float)L_5)), /*hidden argument*/NULL);
V_0 = L_6;
goto IL_0019;
}
IL_0019:
{
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 L_7 = V_0;
return L_7;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 BoundedPlane_get_size_m204F4F37C0FB6F7294682D961B53F4F9639E3882_inline (BoundedPlane_t9001963C43ACDF4CDEA8BBF97CD783B7969B79C5 * __this, const RuntimeMethod* method)
{
{
// public Vector2 size => m_Size;
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 L_0 = __this->get_m_Size_5();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t BoundedPlane_get_alignment_m72B849B54224B1493DFF448BCF2AB8634751DC71_inline (BoundedPlane_t9001963C43ACDF4CDEA8BBF97CD783B7969B79C5 * __this, const RuntimeMethod* method)
{
{
// public PlaneAlignment alignment => m_Alignment;
int32_t L_0 = __this->get_m_Alignment_6();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t BoundedPlane_get_trackingState_mBF10ADD6DD969A0DA7FCC8299FFA56AEB9B837CA_inline (BoundedPlane_t9001963C43ACDF4CDEA8BBF97CD783B7969B79C5 * __this, const RuntimeMethod* method)
{
{
// public TrackingState trackingState => m_TrackingState;
int32_t L_0 = __this->get_m_TrackingState_7();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR intptr_t BoundedPlane_get_nativePtr_m626921F0179BF37BC5F06C2587D298FB40F31FE9_inline (BoundedPlane_t9001963C43ACDF4CDEA8BBF97CD783B7969B79C5 * __this, const RuntimeMethod* method)
{
{
// public IntPtr nativePtr => m_NativePtr;
intptr_t L_0 = __this->get_m_NativePtr_8();
return (intptr_t)L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t BoundedPlane_get_classification_m842651162BFE9633C414B16CD1D86FBBE86589A3_inline (BoundedPlane_t9001963C43ACDF4CDEA8BBF97CD783B7969B79C5 * __this, const RuntimeMethod* method)
{
{
// public PlaneClassification classification => m_Classification;
int32_t L_0 = __this->get_m_Classification_9();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Vector2_Equals_m6E08A16717F2B9EE8B24EBA6B234A03098D5F05D_inline (Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 * __this, Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___other0, const RuntimeMethod* method)
{
bool V_0 = false;
int32_t G_B3_0 = 0;
{
float L_0 = __this->get_x_0();
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 L_1 = ___other0;
float L_2 = L_1.get_x_0();
if ((!(((float)L_0) == ((float)L_2))))
{
goto IL_001f;
}
}
{
float L_3 = __this->get_y_1();
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 L_4 = ___other0;
float L_5 = L_4.get_y_1();
G_B3_0 = ((((float)L_3) == ((float)L_5))? 1 : 0);
goto IL_0020;
}
IL_001f:
{
G_B3_0 = 0;
}
IL_0020:
{
V_0 = (bool)G_B3_0;
goto IL_0023;
}
IL_0023:
{
bool L_6 = V_0;
return L_6;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B TrackableId_get_invalidId_m06B698EFFA7748E185299C72B5CEC1AA5B221F85_inline (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
// public static TrackableId invalidId => s_InvalidId;
IL2CPP_RUNTIME_CLASS_INIT(TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B_il2cpp_TypeInfo_var);
TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B L_0 = ((TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B_StaticFields*)il2cpp_codegen_static_fields_for(TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B_il2cpp_TypeInfo_var))->get_s_InvalidId_1();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ConfigurationDescriptor_t5CD12F017FCCF861DC33D7C0D6F0121015DEEA78 Configuration_get_descriptor_mD7539C193666CFFB9258CE40D88EB7DA3C48DDDA_inline (Configuration_t29C11C7E576D64F717543048BDA1EBCEF0CF60C0 * __this, const RuntimeMethod* method)
{
{
// public ConfigurationDescriptor descriptor { get; private set; }
ConfigurationDescriptor_t5CD12F017FCCF861DC33D7C0D6F0121015DEEA78 L_0 = __this->get_U3CdescriptorU3Ek__BackingField_0();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Configuration_set_descriptor_mC8DB7CFDB5C7E267B15CFD3DE2133A1B482020E9_inline (Configuration_t29C11C7E576D64F717543048BDA1EBCEF0CF60C0 * __this, ConfigurationDescriptor_t5CD12F017FCCF861DC33D7C0D6F0121015DEEA78 ___value0, const RuntimeMethod* method)
{
{
// public ConfigurationDescriptor descriptor { get; private set; }
ConfigurationDescriptor_t5CD12F017FCCF861DC33D7C0D6F0121015DEEA78 L_0 = ___value0;
__this->set_U3CdescriptorU3Ek__BackingField_0(L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR uint64_t Configuration_get_features_m8F2353DC080AF51D657C4CBD8E9DB4DAEAB72B5A_inline (Configuration_t29C11C7E576D64F717543048BDA1EBCEF0CF60C0 * __this, const RuntimeMethod* method)
{
{
// public Feature features { get; private set; }
uint64_t L_0 = __this->get_U3CfeaturesU3Ek__BackingField_1();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Configuration_set_features_m778B95140CCFD2CF143489375C8B15258B5CA149_inline (Configuration_t29C11C7E576D64F717543048BDA1EBCEF0CF60C0 * __this, uint64_t ___value0, const RuntimeMethod* method)
{
{
// public Feature features { get; private set; }
uint64_t L_0 = ___value0;
__this->set_U3CfeaturesU3Ek__BackingField_1(L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR uint64_t ConfigurationDescriptor_get_capabilities_mD48908AE629D6E78D84F355B59CF742ABFD7C649_inline (ConfigurationDescriptor_t5CD12F017FCCF861DC33D7C0D6F0121015DEEA78 * __this, const RuntimeMethod* method)
{
{
// public Feature capabilities => m_Capabilities;
uint64_t L_0 = __this->get_m_Capabilities_1();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR intptr_t ConfigurationDescriptor_get_identifier_m829E6611B4E4B0E33E8E87902FDFCDAEC0F2B8A0_inline (ConfigurationDescriptor_t5CD12F017FCCF861DC33D7C0D6F0121015DEEA78 * __this, const RuntimeMethod* method)
{
{
// public IntPtr identifier => m_Identifier;
intptr_t L_0 = __this->get_m_Identifier_0();
return (intptr_t)L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t ConfigurationDescriptor_get_rank_mF775801AAD4BC8E980682B569F676BD536BA78B8_inline (ConfigurationDescriptor_t5CD12F017FCCF861DC33D7C0D6F0121015DEEA78 * __this, const RuntimeMethod* method)
{
{
// public int rank => m_Rank;
int32_t L_0 = __this->get_m_Rank_2();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* FaceSubsystemParams_get_id_mE2ED204CE1D85C4ADCFB4436EACF3BF8B6893DEB_inline (FaceSubsystemParams_t2FC64133455298391F1A1DDC61B151E688301B09 * __this, const RuntimeMethod* method)
{
{
// public string id { get; set; }
String_t* L_0 = __this->get_U3CidU3Ek__BackingField_0();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void FaceSubsystemParams_set_id_m89149E2175F86663FDFEB008B36BDAF40EA1585A_inline (FaceSubsystemParams_t2FC64133455298391F1A1DDC61B151E688301B09 * __this, String_t* ___value0, const RuntimeMethod* method)
{
{
// public string id { get; set; }
String_t* L_0 = ___value0;
__this->set_U3CidU3Ek__BackingField_0(L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Type_t * FaceSubsystemParams_get_providerType_m8984786E19DCC5F9B87060A9BC29F25A4A4A4B3A_inline (FaceSubsystemParams_t2FC64133455298391F1A1DDC61B151E688301B09 * __this, const RuntimeMethod* method)
{
{
// public Type providerType { get; set; }
Type_t * L_0 = __this->get_U3CproviderTypeU3Ek__BackingField_1();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void FaceSubsystemParams_set_providerType_m5D660A72F34CA0D1C887F5BA68045B1D3973C7B3_inline (FaceSubsystemParams_t2FC64133455298391F1A1DDC61B151E688301B09 * __this, Type_t * ___value0, const RuntimeMethod* method)
{
{
// public Type providerType { get; set; }
Type_t * L_0 = ___value0;
__this->set_U3CproviderTypeU3Ek__BackingField_1(L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Type_t * FaceSubsystemParams_get_subsystemTypeOverride_m1B3FD6EA4014688FC34533C9729176AA668C8321_inline (FaceSubsystemParams_t2FC64133455298391F1A1DDC61B151E688301B09 * __this, const RuntimeMethod* method)
{
{
// public Type subsystemTypeOverride { get; set; }
Type_t * L_0 = __this->get_U3CsubsystemTypeOverrideU3Ek__BackingField_2();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void FaceSubsystemParams_set_subsystemTypeOverride_mAC64FBAE73E16ACDA48708A4FFB77626437F8306_inline (FaceSubsystemParams_t2FC64133455298391F1A1DDC61B151E688301B09 * __this, Type_t * ___value0, const RuntimeMethod* method)
{
{
// public Type subsystemTypeOverride { get; set; }
Type_t * L_0 = ___value0;
__this->set_U3CsubsystemTypeOverrideU3Ek__BackingField_2(L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* XRReferenceImage_get_name_mE8F3368C2587552333AB78EA72A02E5B73E355C7_inline (XRReferenceImage_tB1803A72EB581FB35B2CA944973679132A1D4467 * __this, const RuntimeMethod* method)
{
{
// public string name => m_Name;
String_t* L_0 = __this->get_m_Name_4();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool XRReferenceImage_get_specifySize_mAC02B5D0DBF9D66C2668206B7603C58149EE7D8B_inline (XRReferenceImage_tB1803A72EB581FB35B2CA944973679132A1D4467 * __this, const RuntimeMethod* method)
{
{
// public bool specifySize => m_SpecifySize;
bool L_0 = __this->get_m_SpecifySize_3();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 XRReferenceImage_get_size_m135B7EF1ED61FE27A8793503E8FC84543642C166_inline (XRReferenceImage_tB1803A72EB581FB35B2CA944973679132A1D4467 * __this, const RuntimeMethod* method)
{
{
// public Vector2 size => m_Size;
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 L_0 = __this->get_m_Size_2();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t Vector2Int_get_x_mDBEFBCDF9C7924767344ED2CEE1307885AED947B_inline (Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9 * __this, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
int32_t L_0 = __this->get_m_X_0();
V_0 = L_0;
goto IL_000a;
}
IL_000a:
{
int32_t L_1 = V_0;
return L_1;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t Vector2Int_get_y_m282591DEB0E70B02F4F4DDFAB90116AEC8E6B86C_inline (Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9 * __this, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
int32_t L_0 = __this->get_m_Y_1();
V_0 = L_0;
goto IL_000a;
}
IL_000a:
{
int32_t L_1 = V_0;
return L_1;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR uint64_t TrackableId_get_subId1_m219B741FAF6D36DB7B8CFDC588EA93677FCE174B_inline (TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B * __this, const RuntimeMethod* method)
{
{
// get => m_SubId1;
uint64_t L_0 = __this->get_m_SubId1_2();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR uint64_t TrackableId_get_subId2_m136D4970BDCC7323020913A9B5303584AA105B34_inline (TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B * __this, const RuntimeMethod* method)
{
{
// get => m_SubId2;
uint64_t L_0 = __this->get_m_SubId2_3();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B XRAnchor_get_trackableId_mE8C852BEAA9025FD1CB643F41836CA72C25E7B92_inline (XRAnchor_t8E92DD70D9FA9B3ED2799305E05228184932099C * __this, const RuntimeMethod* method)
{
{
// public TrackableId trackableId => m_Id;
TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B L_0 = __this->get_m_Id_1();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A XRAnchor_get_pose_mD135777376B2898B0A151AD5AA8FD4BBD7C7C5FF_inline (XRAnchor_t8E92DD70D9FA9B3ED2799305E05228184932099C * __this, const RuntimeMethod* method)
{
{
// public Pose pose => m_Pose;
Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A L_0 = __this->get_m_Pose_2();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t XRAnchor_get_trackingState_m2B3E621BA332B1E74CF8EC94FA8B18EDAF68F462_inline (XRAnchor_t8E92DD70D9FA9B3ED2799305E05228184932099C * __this, const RuntimeMethod* method)
{
{
// public TrackingState trackingState => m_TrackingState;
int32_t L_0 = __this->get_m_TrackingState_3();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR intptr_t XRAnchor_get_nativePtr_m47E36685E001BF3810BF6A45B8DF8128080DAEFB_inline (XRAnchor_t8E92DD70D9FA9B3ED2799305E05228184932099C * __this, const RuntimeMethod* method)
{
{
// public IntPtr nativePtr => m_NativePtr;
intptr_t L_0 = __this->get_m_NativePtr_4();
return (intptr_t)L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Guid_t XRAnchor_get_sessionId_m61DAD2C82C4D725E773BFAB2E8A8BE50EDEEC379_inline (XRAnchor_t8E92DD70D9FA9B3ED2799305E05228184932099C * __this, const RuntimeMethod* method)
{
{
// public Guid sessionId => m_SessionId;
Guid_t L_0 = __this->get_m_SessionId_5();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool SubsystemWithProvider_get_running_m42399652EC4AB466AFBAC9035FA77C1BD6C72406_inline (SubsystemWithProvider_t1C1868CF8676F5596C1AD20A7CE69BDF7C7DE73E * __this, const RuntimeMethod* method)
{
{
bool L_0 = __this->get_U3CrunningU3Ek__BackingField_0();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR XRAnchor_t8E92DD70D9FA9B3ED2799305E05228184932099C XRAnchor_get_defaultValue_m4E0B24D0D2E64DE1B2BE81F781410CFB6031B6CF_inline (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XRAnchor_t8E92DD70D9FA9B3ED2799305E05228184932099C_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
// public static XRAnchor defaultValue => s_Default;
IL2CPP_RUNTIME_CLASS_INIT(XRAnchor_t8E92DD70D9FA9B3ED2799305E05228184932099C_il2cpp_TypeInfo_var);
XRAnchor_t8E92DD70D9FA9B3ED2799305E05228184932099C L_0 = ((XRAnchor_t8E92DD70D9FA9B3ED2799305E05228184932099C_StaticFields*)il2cpp_codegen_static_fields_for(XRAnchor_t8E92DD70D9FA9B3ED2799305E05228184932099C_il2cpp_TypeInfo_var))->get_s_Default_0();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* Cinfo_get_id_m7C38252CE360F061914361192300AECA8CB5307B_inline (Cinfo_tF42131D7F2B721976AAF20DD0240D9C46397F7F7 * __this, const RuntimeMethod* method)
{
{
// public string id { get; set; }
String_t* L_0 = __this->get_U3CidU3Ek__BackingField_0();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void SubsystemDescriptorWithProvider_set_id_mEC6863CDB21597618394D2ED4182A9ED3ACBF220_inline (SubsystemDescriptorWithProvider_t32DD334657CFBA22F2FBA399258B087104A29C3E * __this, String_t* ___value0, const RuntimeMethod* method)
{
{
String_t* L_0 = ___value0;
__this->set_U3CidU3Ek__BackingField_0(L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Type_t * Cinfo_get_providerType_m6A1DFCD062C95265E8E1C6502D44D6C464B50EED_inline (Cinfo_tF42131D7F2B721976AAF20DD0240D9C46397F7F7 * __this, const RuntimeMethod* method)
{
{
// public Type providerType { get; set; }
Type_t * L_0 = __this->get_U3CproviderTypeU3Ek__BackingField_1();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void SubsystemDescriptorWithProvider_set_providerType_m672B1F3CC7A12E8569D801F7C79538753C0D9C2D_inline (SubsystemDescriptorWithProvider_t32DD334657CFBA22F2FBA399258B087104A29C3E * __this, Type_t * ___value0, const RuntimeMethod* method)
{
{
Type_t * L_0 = ___value0;
__this->set_U3CproviderTypeU3Ek__BackingField_1(L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Type_t * Cinfo_get_subsystemTypeOverride_m169F49BB024275E13DF95C274191A675CC0F66B9_inline (Cinfo_tF42131D7F2B721976AAF20DD0240D9C46397F7F7 * __this, const RuntimeMethod* method)
{
{
// public Type subsystemTypeOverride { get; set; }
Type_t * L_0 = __this->get_U3CsubsystemTypeOverrideU3Ek__BackingField_2();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void SubsystemDescriptorWithProvider_set_subsystemTypeOverride_mA453100A7A8FAB35FBE7154E63B5A17D518F41B6_inline (SubsystemDescriptorWithProvider_t32DD334657CFBA22F2FBA399258B087104A29C3E * __this, Type_t * ___value0, const RuntimeMethod* method)
{
{
Type_t * L_0 = ___value0;
__this->set_U3CsubsystemTypeOverrideU3Ek__BackingField_2(L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Cinfo_get_supportsTrackableAttachments_m13B6C9977641F3E284C69AA3554EBD19478538B8_inline (Cinfo_tF42131D7F2B721976AAF20DD0240D9C46397F7F7 * __this, const RuntimeMethod* method)
{
{
// public bool supportsTrackableAttachments { get; set; }
bool L_0 = __this->get_U3CsupportsTrackableAttachmentsU3Ek__BackingField_4();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XRAnchorSubsystemDescriptor_set_supportsTrackableAttachments_m11271C1EBC306EB3FDA99D24D45D88DB31DCCC38_inline (XRAnchorSubsystemDescriptor_t3BD7F9922EF5C04185D59349C76D625BC1E44E3B * __this, bool ___value0, const RuntimeMethod* method)
{
{
// public bool supportsTrackableAttachments { get; private set; }
bool L_0 = ___value0;
__this->set_U3CsupportsTrackableAttachmentsU3Ek__BackingField_3(L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Vector2Int_op_Equality_m00B7F2874DE276B3F10044CED9F633AFE80D366D_inline (Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9 ___lhs0, Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9 ___rhs1, const RuntimeMethod* method)
{
bool V_0 = false;
int32_t G_B3_0 = 0;
{
int32_t L_0;
L_0 = Vector2Int_get_x_mDBEFBCDF9C7924767344ED2CEE1307885AED947B_inline((Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9 *)(&___lhs0), /*hidden argument*/NULL);
int32_t L_1;
L_1 = Vector2Int_get_x_mDBEFBCDF9C7924767344ED2CEE1307885AED947B_inline((Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9 *)(&___rhs1), /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) == ((uint32_t)L_1))))
{
goto IL_0023;
}
}
{
int32_t L_2;
L_2 = Vector2Int_get_y_m282591DEB0E70B02F4F4DDFAB90116AEC8E6B86C_inline((Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9 *)(&___lhs0), /*hidden argument*/NULL);
int32_t L_3;
L_3 = Vector2Int_get_y_m282591DEB0E70B02F4F4DDFAB90116AEC8E6B86C_inline((Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9 *)(&___rhs1), /*hidden argument*/NULL);
G_B3_0 = ((((int32_t)L_2) == ((int32_t)L_3))? 1 : 0);
goto IL_0024;
}
IL_0023:
{
G_B3_0 = 0;
}
IL_0024:
{
V_0 = (bool)G_B3_0;
goto IL_0027;
}
IL_0027:
{
bool L_4 = V_0;
return L_4;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int64_t XRCameraFrame_get_timestampNs_m8F3730A23C9FF6A729F8D1939581D88716438DF7_inline (XRCameraFrame_t5FD7B7FC22B478AC6B00AD01A0AD6F2295EA1BA8 * __this, const RuntimeMethod* method)
{
{
// public long timestampNs => m_TimestampNs;
int64_t L_0 = __this->get_m_TimestampNs_0();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float XRCameraFrame_get_averageBrightness_m34CB9F000CCBD2004F7E3CDBA987170A4B049F8E_inline (XRCameraFrame_t5FD7B7FC22B478AC6B00AD01A0AD6F2295EA1BA8 * __this, const RuntimeMethod* method)
{
{
// public float averageBrightness => m_AverageBrightness;
float L_0 = __this->get_m_AverageBrightness_1();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float XRCameraFrame_get_averageColorTemperature_mD5EA9E87E76F7BCBFF709ABF309B142FB9D03DFC_inline (XRCameraFrame_t5FD7B7FC22B478AC6B00AD01A0AD6F2295EA1BA8 * __this, const RuntimeMethod* method)
{
{
// public float averageColorTemperature => m_AverageColorTemperature;
float L_0 = __this->get_m_AverageColorTemperature_2();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 XRCameraFrame_get_colorCorrection_mFB47669447DE0255EE2491929D9DF85CF7DF1B1A_inline (XRCameraFrame_t5FD7B7FC22B478AC6B00AD01A0AD6F2295EA1BA8 * __this, const RuntimeMethod* method)
{
{
// public Color colorCorrection => m_ColorCorrection;
Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 L_0 = __this->get_m_ColorCorrection_3();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Matrix4x4_tDE7FF4F2E2EA284F6EFE00D627789D0E5B8B4461 XRCameraFrame_get_projectionMatrix_mC489D4A0698634FDA99D0BBE0A93E42F5C82E985_inline (XRCameraFrame_t5FD7B7FC22B478AC6B00AD01A0AD6F2295EA1BA8 * __this, const RuntimeMethod* method)
{
{
// public Matrix4x4 projectionMatrix => m_ProjectionMatrix;
Matrix4x4_tDE7FF4F2E2EA284F6EFE00D627789D0E5B8B4461 L_0 = __this->get_m_ProjectionMatrix_4();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Matrix4x4_tDE7FF4F2E2EA284F6EFE00D627789D0E5B8B4461 XRCameraFrame_get_displayMatrix_m7D157BB20E2863E0415A42140B6396C4D3E30E31_inline (XRCameraFrame_t5FD7B7FC22B478AC6B00AD01A0AD6F2295EA1BA8 * __this, const RuntimeMethod* method)
{
{
// public Matrix4x4 displayMatrix => m_DisplayMatrix;
Matrix4x4_tDE7FF4F2E2EA284F6EFE00D627789D0E5B8B4461 L_0 = __this->get_m_DisplayMatrix_5();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float XRCameraFrame_get_averageIntensityInLumens_mC250C5B79A5B4C0F75D89BD1EC6FB07AB130B62F_inline (XRCameraFrame_t5FD7B7FC22B478AC6B00AD01A0AD6F2295EA1BA8 * __this, const RuntimeMethod* method)
{
{
// public float averageIntensityInLumens => m_AverageIntensityInLumens;
float L_0 = __this->get_m_AverageIntensityInLumens_9();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR double XRCameraFrame_get_exposureDuration_m7957768DDB0AE596767478A9F8239A98BFD23207_inline (XRCameraFrame_t5FD7B7FC22B478AC6B00AD01A0AD6F2295EA1BA8 * __this, const RuntimeMethod* method)
{
{
// public double exposureDuration => m_ExposureDuration;
double L_0 = __this->get_m_ExposureDuration_10();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float XRCameraFrame_get_exposureOffset_m276A794A6640F25AA7B1B0FB69C8296F7DDAAE53_inline (XRCameraFrame_t5FD7B7FC22B478AC6B00AD01A0AD6F2295EA1BA8 * __this, const RuntimeMethod* method)
{
{
// public float exposureOffset => m_ExposureOffset;
float L_0 = __this->get_m_ExposureOffset_11();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float XRCameraFrame_get_mainLightIntensityLumens_mDBCBCEA85B23C484CAF7D66ED52681E4AE4C506B_inline (XRCameraFrame_t5FD7B7FC22B478AC6B00AD01A0AD6F2295EA1BA8 * __this, const RuntimeMethod* method)
{
{
// public float mainLightIntensityLumens => m_MainLightIntensityLumens;
float L_0 = __this->get_m_MainLightIntensityLumens_12();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 XRCameraFrame_get_mainLightColor_m3696EC5D7104849121C9A6CF3524AAC7382BED03_inline (XRCameraFrame_t5FD7B7FC22B478AC6B00AD01A0AD6F2295EA1BA8 * __this, const RuntimeMethod* method)
{
{
// public Color mainLightColor => m_MainLightColor;
Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 L_0 = __this->get_m_MainLightColor_13();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E XRCameraFrame_get_mainLightDirection_mB7E086F4A8A89BD7404BB702DF980D7B5B124445_inline (XRCameraFrame_t5FD7B7FC22B478AC6B00AD01A0AD6F2295EA1BA8 * __this, const RuntimeMethod* method)
{
{
// public Vector3 mainLightDirection => m_MainLightDirection;
Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_0 = __this->get_m_MainLightDirection_14();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR SphericalHarmonicsL2_tD2EC2ADCA26B9BE05036C3ABCF3CC049EC73EA64 XRCameraFrame_get_ambientSphericalHarmonics_m5859CDC5CE50F33C62EA59CE9BFC58C6F3CDB269_inline (XRCameraFrame_t5FD7B7FC22B478AC6B00AD01A0AD6F2295EA1BA8 * __this, const RuntimeMethod* method)
{
{
// public SphericalHarmonicsL2 ambientSphericalHarmonics => m_AmbientSphericalHarmonics;
SphericalHarmonicsL2_tD2EC2ADCA26B9BE05036C3ABCF3CC049EC73EA64 L_0 = __this->get_m_AmbientSphericalHarmonics_15();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR XRTextureDescriptor_t9CA857DCCC1208B74376787BE4F3008A01B29A57 XRCameraFrame_get_cameraGrain_m7E8B37489D5380BE507656FFC9FE30B0333CED2A_inline (XRCameraFrame_t5FD7B7FC22B478AC6B00AD01A0AD6F2295EA1BA8 * __this, const RuntimeMethod* method)
{
{
// public XRTextureDescriptor cameraGrain => m_CameraGrain;
XRTextureDescriptor_t9CA857DCCC1208B74376787BE4F3008A01B29A57 L_0 = __this->get_m_CameraGrain_16();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float XRCameraFrame_get_noiseIntensity_mA6150FB06579A1A6E637139C97E93304D6A83D3A_inline (XRCameraFrame_t5FD7B7FC22B478AC6B00AD01A0AD6F2295EA1BA8 * __this, const RuntimeMethod* method)
{
{
// public float noiseIntensity => m_NoiseIntensity;
float L_0 = __this->get_m_NoiseIntensity_17();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Vector2Int_Equals_m96F4F602CE85AFD675A8096AB9D5E2D4544382FF_inline (Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9 * __this, Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9 ___other0, const RuntimeMethod* method)
{
bool V_0 = false;
int32_t G_B3_0 = 0;
{
int32_t L_0;
L_0 = Vector2Int_get_x_mDBEFBCDF9C7924767344ED2CEE1307885AED947B_inline((Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9 *)__this, /*hidden argument*/NULL);
int32_t L_1;
L_1 = Vector2Int_get_x_mDBEFBCDF9C7924767344ED2CEE1307885AED947B_inline((Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9 *)(&___other0), /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) == ((uint32_t)L_1))))
{
goto IL_0021;
}
}
{
int32_t L_2;
L_2 = Vector2Int_get_y_m282591DEB0E70B02F4F4DDFAB90116AEC8E6B86C_inline((Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9 *)__this, /*hidden argument*/NULL);
int32_t L_3;
L_3 = Vector2Int_get_y_m282591DEB0E70B02F4F4DDFAB90116AEC8E6B86C_inline((Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9 *)(&___other0), /*hidden argument*/NULL);
G_B3_0 = ((((int32_t)L_2) == ((int32_t)L_3))? 1 : 0);
goto IL_0022;
}
IL_0021:
{
G_B3_0 = 0;
}
IL_0022:
{
V_0 = (bool)G_B3_0;
goto IL_0025;
}
IL_0025:
{
bool L_4 = V_0;
return L_4;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XRCameraParams_set_zNear_mE207AB998D78E35497B1E941A20C7864D454EE45_inline (XRCameraParams_t9FCECBDAEFCC1084042B75393990959B28B64B18 * __this, float ___value0, const RuntimeMethod* method)
{
{
// set => m_ZNear = value;
float L_0 = ___value0;
__this->set_m_ZNear_0(L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XRCameraParams_set_zFar_m4ABC4E0271EE81FEA88B1608B19ED3CFDA8E523B_inline (XRCameraParams_t9FCECBDAEFCC1084042B75393990959B28B64B18 * __this, float ___value0, const RuntimeMethod* method)
{
{
// set => m_ZFar = value;
float L_0 = ___value0;
__this->set_m_ZFar_1(L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XRCameraParams_set_screenWidth_m4E9ABE5FEE32FB446FDF6EC5B00961ACC66B48FB_inline (XRCameraParams_t9FCECBDAEFCC1084042B75393990959B28B64B18 * __this, float ___value0, const RuntimeMethod* method)
{
{
// set => m_ScreenWidth = value;
float L_0 = ___value0;
__this->set_m_ScreenWidth_2(L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XRCameraParams_set_screenHeight_m31C5E67C7403556AFF8B72CC4BB09EA3C3AA05A3_inline (XRCameraParams_t9FCECBDAEFCC1084042B75393990959B28B64B18 * __this, float ___value0, const RuntimeMethod* method)
{
{
// set => m_ScreenHeight = value;
float L_0 = ___value0;
__this->set_m_ScreenHeight_3(L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XRCameraParams_set_screenOrientation_mCF2AD6E975E790E5BE14E2A1EB71A73E8AA7E7D9_inline (XRCameraParams_t9FCECBDAEFCC1084042B75393990959B28B64B18 * __this, int32_t ___value0, const RuntimeMethod* method)
{
{
// set => m_ScreenOrientation = value;
int32_t L_0 = ___value0;
__this->set_m_ScreenOrientation_4(L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* XRCameraSubsystemCinfo_get_id_m606888326128C053029E1B09A00F2CB97B214291_inline (XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096 * __this, const RuntimeMethod* method)
{
{
// public string id { get; set; }
String_t* L_0 = __this->get_U3CidU3Ek__BackingField_0();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XRCameraSubsystemCinfo_set_id_m768994793A205C7D5CE603B354D350A34D47720D_inline (XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096 * __this, String_t* ___value0, const RuntimeMethod* method)
{
{
// public string id { get; set; }
String_t* L_0 = ___value0;
__this->set_U3CidU3Ek__BackingField_0(L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Type_t * XRCameraSubsystemCinfo_get_providerType_m181531F5B642DA8E3E10FC62879495B0A8D53110_inline (XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096 * __this, const RuntimeMethod* method)
{
{
// public Type providerType { get; set; }
Type_t * L_0 = __this->get_U3CproviderTypeU3Ek__BackingField_1();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XRCameraSubsystemCinfo_set_providerType_m78F56C5CEF9FF62F60DE6073B8AD0FB0AFD00730_inline (XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096 * __this, Type_t * ___value0, const RuntimeMethod* method)
{
{
// public Type providerType { get; set; }
Type_t * L_0 = ___value0;
__this->set_U3CproviderTypeU3Ek__BackingField_1(L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Type_t * XRCameraSubsystemCinfo_get_subsystemTypeOverride_mED0FB455C8C39164EF2594FC9405B78C1E2EB809_inline (XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096 * __this, const RuntimeMethod* method)
{
{
// public Type subsystemTypeOverride { get; set; }
Type_t * L_0 = __this->get_U3CsubsystemTypeOverrideU3Ek__BackingField_2();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XRCameraSubsystemCinfo_set_subsystemTypeOverride_mD4D22BB1EC102CA40AF084B06DA3C957139EF2D4_inline (XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096 * __this, Type_t * ___value0, const RuntimeMethod* method)
{
{
// public Type subsystemTypeOverride { get; set; }
Type_t * L_0 = ___value0;
__this->set_U3CsubsystemTypeOverrideU3Ek__BackingField_2(L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool XRCameraSubsystemCinfo_get_supportsAverageBrightness_mF49B2D16DE8FBC5452C17D87672FBE1EB814145E_inline (XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096 * __this, const RuntimeMethod* method)
{
{
// public bool supportsAverageBrightness { get; set; }
bool L_0 = __this->get_U3CsupportsAverageBrightnessU3Ek__BackingField_4();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XRCameraSubsystemCinfo_set_supportsAverageBrightness_mC20A88BD3C8D137A1F34888C64DC5FFF37787759_inline (XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096 * __this, bool ___value0, const RuntimeMethod* method)
{
{
// public bool supportsAverageBrightness { get; set; }
bool L_0 = ___value0;
__this->set_U3CsupportsAverageBrightnessU3Ek__BackingField_4(L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool XRCameraSubsystemCinfo_get_supportsAverageColorTemperature_m789041AE11DC92E73ED6C228C5A5B55A87AE736B_inline (XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096 * __this, const RuntimeMethod* method)
{
{
// public bool supportsAverageColorTemperature { get; set; }
bool L_0 = __this->get_U3CsupportsAverageColorTemperatureU3Ek__BackingField_5();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XRCameraSubsystemCinfo_set_supportsAverageColorTemperature_m77727C8CBAB59D0D078B0A634EB0A56F1BF368E4_inline (XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096 * __this, bool ___value0, const RuntimeMethod* method)
{
{
// public bool supportsAverageColorTemperature { get; set; }
bool L_0 = ___value0;
__this->set_U3CsupportsAverageColorTemperatureU3Ek__BackingField_5(L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool XRCameraSubsystemCinfo_get_supportsColorCorrection_m6910005DB05086FEBDBFFFE47BFFDBB96453E5C7_inline (XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096 * __this, const RuntimeMethod* method)
{
{
// public bool supportsColorCorrection { get; set; }
bool L_0 = __this->get_U3CsupportsColorCorrectionU3Ek__BackingField_6();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XRCameraSubsystemCinfo_set_supportsColorCorrection_m1CBB9181A21D2A964705AD5E22F78735DCFE2C01_inline (XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096 * __this, bool ___value0, const RuntimeMethod* method)
{
{
// public bool supportsColorCorrection { get; set; }
bool L_0 = ___value0;
__this->set_U3CsupportsColorCorrectionU3Ek__BackingField_6(L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool XRCameraSubsystemCinfo_get_supportsDisplayMatrix_m2107BE8860B1A4D050A80801F6286F0E9798820D_inline (XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096 * __this, const RuntimeMethod* method)
{
{
// public bool supportsDisplayMatrix { get; set; }
bool L_0 = __this->get_U3CsupportsDisplayMatrixU3Ek__BackingField_7();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XRCameraSubsystemCinfo_set_supportsDisplayMatrix_m2E11C0B7442273252613BDB41BB8B6F02698FBEA_inline (XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096 * __this, bool ___value0, const RuntimeMethod* method)
{
{
// public bool supportsDisplayMatrix { get; set; }
bool L_0 = ___value0;
__this->set_U3CsupportsDisplayMatrixU3Ek__BackingField_7(L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool XRCameraSubsystemCinfo_get_supportsProjectionMatrix_mAC44711CBD0AEF5600FAF7A65364692FE9FA9D9E_inline (XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096 * __this, const RuntimeMethod* method)
{
{
// public bool supportsProjectionMatrix { get; set; }
bool L_0 = __this->get_U3CsupportsProjectionMatrixU3Ek__BackingField_8();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XRCameraSubsystemCinfo_set_supportsProjectionMatrix_mFC886F8859FDF308D7980935474AA0E66ECF66B4_inline (XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096 * __this, bool ___value0, const RuntimeMethod* method)
{
{
// public bool supportsProjectionMatrix { get; set; }
bool L_0 = ___value0;
__this->set_U3CsupportsProjectionMatrixU3Ek__BackingField_8(L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool XRCameraSubsystemCinfo_get_supportsTimestamp_m0B95FB498C6682EE15E2461F8A5C555B3E397543_inline (XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096 * __this, const RuntimeMethod* method)
{
{
// public bool supportsTimestamp { get; set; }
bool L_0 = __this->get_U3CsupportsTimestampU3Ek__BackingField_9();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XRCameraSubsystemCinfo_set_supportsTimestamp_mAA6157EC368F6358F155571E257A578729D368D4_inline (XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096 * __this, bool ___value0, const RuntimeMethod* method)
{
{
// public bool supportsTimestamp { get; set; }
bool L_0 = ___value0;
__this->set_U3CsupportsTimestampU3Ek__BackingField_9(L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool XRCameraSubsystemCinfo_get_supportsCameraConfigurations_mF0168147B6D556F8289DCE665D070EE427430CDD_inline (XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096 * __this, const RuntimeMethod* method)
{
{
// public bool supportsCameraConfigurations { get; set; }
bool L_0 = __this->get_U3CsupportsCameraConfigurationsU3Ek__BackingField_10();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XRCameraSubsystemCinfo_set_supportsCameraConfigurations_mD0F431DDAB4F82DDC6E35AB7583572D25244E0F0_inline (XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096 * __this, bool ___value0, const RuntimeMethod* method)
{
{
// public bool supportsCameraConfigurations { get; set; }
bool L_0 = ___value0;
__this->set_U3CsupportsCameraConfigurationsU3Ek__BackingField_10(L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool XRCameraSubsystemCinfo_get_supportsCameraImage_m404883CC80418B38CB13D3ED6DAAFE6D81978A6F_inline (XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096 * __this, const RuntimeMethod* method)
{
{
// public bool supportsCameraImage { get; set; }
bool L_0 = __this->get_U3CsupportsCameraImageU3Ek__BackingField_11();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XRCameraSubsystemCinfo_set_supportsCameraImage_m2140EBB7ACEA9B1634F56DE2DCB85F26CB8C4D7D_inline (XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096 * __this, bool ___value0, const RuntimeMethod* method)
{
{
// public bool supportsCameraImage { get; set; }
bool L_0 = ___value0;
__this->set_U3CsupportsCameraImageU3Ek__BackingField_11(L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool XRCameraSubsystemCinfo_get_supportsAverageIntensityInLumens_m5B91C231C060B22D44F1579CF361500D7B54173E_inline (XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096 * __this, const RuntimeMethod* method)
{
{
// public bool supportsAverageIntensityInLumens { get; set; }
bool L_0 = __this->get_U3CsupportsAverageIntensityInLumensU3Ek__BackingField_12();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XRCameraSubsystemCinfo_set_supportsAverageIntensityInLumens_m49462C178EF35B3E688EE6711FD3E41E9C1976AB_inline (XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096 * __this, bool ___value0, const RuntimeMethod* method)
{
{
// public bool supportsAverageIntensityInLumens { get; set; }
bool L_0 = ___value0;
__this->set_U3CsupportsAverageIntensityInLumensU3Ek__BackingField_12(L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool XRCameraSubsystemCinfo_get_supportsFaceTrackingAmbientIntensityLightEstimation_mBE329A85F8992A65715EC3F97AC0CEEE5B0DE9D8_inline (XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096 * __this, const RuntimeMethod* method)
{
{
// public bool supportsFaceTrackingAmbientIntensityLightEstimation { get; set; }
bool L_0 = __this->get_U3CsupportsFaceTrackingAmbientIntensityLightEstimationU3Ek__BackingField_13();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XRCameraSubsystemCinfo_set_supportsFaceTrackingAmbientIntensityLightEstimation_m93740733F66607C53F3928946A79CE732EAF9EF9_inline (XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096 * __this, bool ___value0, const RuntimeMethod* method)
{
{
// public bool supportsFaceTrackingAmbientIntensityLightEstimation { get; set; }
bool L_0 = ___value0;
__this->set_U3CsupportsFaceTrackingAmbientIntensityLightEstimationU3Ek__BackingField_13(L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool XRCameraSubsystemCinfo_get_supportsFaceTrackingHDRLightEstimation_mAA8871A8B5D8CDC9D7D5FEA47E72423BC02D969B_inline (XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096 * __this, const RuntimeMethod* method)
{
{
// public bool supportsFaceTrackingHDRLightEstimation { get; set; }
bool L_0 = __this->get_U3CsupportsFaceTrackingHDRLightEstimationU3Ek__BackingField_14();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XRCameraSubsystemCinfo_set_supportsFaceTrackingHDRLightEstimation_mD76A9A9A127118388FBD2E971246303BB2BE0F0C_inline (XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096 * __this, bool ___value0, const RuntimeMethod* method)
{
{
// public bool supportsFaceTrackingHDRLightEstimation { get; set; }
bool L_0 = ___value0;
__this->set_U3CsupportsFaceTrackingHDRLightEstimationU3Ek__BackingField_14(L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool XRCameraSubsystemCinfo_get_supportsWorldTrackingAmbientIntensityLightEstimation_mC5C8DDCB2DB3F82EA868AF171039DF6ECFF9C7EC_inline (XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096 * __this, const RuntimeMethod* method)
{
{
// public bool supportsWorldTrackingAmbientIntensityLightEstimation { get; set; }
bool L_0 = __this->get_U3CsupportsWorldTrackingAmbientIntensityLightEstimationU3Ek__BackingField_15();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XRCameraSubsystemCinfo_set_supportsWorldTrackingAmbientIntensityLightEstimation_mE9B47A05DA11B6C6FFCB6FFED773ADB464130C5B_inline (XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096 * __this, bool ___value0, const RuntimeMethod* method)
{
{
// public bool supportsWorldTrackingAmbientIntensityLightEstimation { get; set; }
bool L_0 = ___value0;
__this->set_U3CsupportsWorldTrackingAmbientIntensityLightEstimationU3Ek__BackingField_15(L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool XRCameraSubsystemCinfo_get_supportsWorldTrackingHDRLightEstimation_m96A9EF59A86DAFBA2A14AFAA79840480E8CDD01D_inline (XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096 * __this, const RuntimeMethod* method)
{
{
// public bool supportsWorldTrackingHDRLightEstimation { get; set; }
bool L_0 = __this->get_U3CsupportsWorldTrackingHDRLightEstimationU3Ek__BackingField_16();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XRCameraSubsystemCinfo_set_supportsWorldTrackingHDRLightEstimation_m92AC9270D4D5FA4C61ED353406511B3877E5D9D4_inline (XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096 * __this, bool ___value0, const RuntimeMethod* method)
{
{
// public bool supportsWorldTrackingHDRLightEstimation { get; set; }
bool L_0 = ___value0;
__this->set_U3CsupportsWorldTrackingHDRLightEstimationU3Ek__BackingField_16(L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool XRCameraSubsystemCinfo_get_supportsFocusModes_mA2196338BFF377734A338E919D372089A98417D9_inline (XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096 * __this, const RuntimeMethod* method)
{
{
// public bool supportsFocusModes { get; set; }
bool L_0 = __this->get_U3CsupportsFocusModesU3Ek__BackingField_17();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XRCameraSubsystemCinfo_set_supportsFocusModes_m2F70E7EFC54E2F930DEA28DC4922125E01FE3026_inline (XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096 * __this, bool ___value0, const RuntimeMethod* method)
{
{
// public bool supportsFocusModes { get; set; }
bool L_0 = ___value0;
__this->set_U3CsupportsFocusModesU3Ek__BackingField_17(L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool XRCameraSubsystemCinfo_get_supportsCameraGrain_mFC3B0475E51415F6BCDAB93671CD421826DA9B9B_inline (XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096 * __this, const RuntimeMethod* method)
{
{
// public bool supportsCameraGrain { get; set; }
bool L_0 = __this->get_U3CsupportsCameraGrainU3Ek__BackingField_18();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XRCameraSubsystemCinfo_set_supportsCameraGrain_m8BF26C263FED0D5106C436091BD8C25BFF8FD755_inline (XRCameraSubsystemCinfo_tFC7E8E15AD29D15868FBCE758A26ADCB5E9A5096 * __this, bool ___value0, const RuntimeMethod* method)
{
{
// public bool supportsCameraGrain { get; set; }
bool L_0 = ___value0;
__this->set_U3CsupportsCameraGrainU3Ek__BackingField_18(L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XRCameraSubsystemDescriptor_set_supportsAverageBrightness_m93E308790E7E9F9EB2D4A0AA12EF64F5ACF32275_inline (XRCameraSubsystemDescriptor_t1F8A45C69031E2981B1863518C43793D26E2C5E5 * __this, bool ___value0, const RuntimeMethod* method)
{
{
// public bool supportsAverageBrightness { get; private set; }
bool L_0 = ___value0;
__this->set_U3CsupportsAverageBrightnessU3Ek__BackingField_3(L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XRCameraSubsystemDescriptor_set_supportsAverageColorTemperature_m79788019F8E730D1FC139530E9615FE5CBABDDCB_inline (XRCameraSubsystemDescriptor_t1F8A45C69031E2981B1863518C43793D26E2C5E5 * __this, bool ___value0, const RuntimeMethod* method)
{
{
// public bool supportsAverageColorTemperature { get; private set; }
bool L_0 = ___value0;
__this->set_U3CsupportsAverageColorTemperatureU3Ek__BackingField_4(L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XRCameraSubsystemDescriptor_set_supportsColorCorrection_m3CD5EFDB6CBC26159DA439F9D83FDFD184AA5B71_inline (XRCameraSubsystemDescriptor_t1F8A45C69031E2981B1863518C43793D26E2C5E5 * __this, bool ___value0, const RuntimeMethod* method)
{
{
// public bool supportsColorCorrection { get; private set; }
bool L_0 = ___value0;
__this->set_U3CsupportsColorCorrectionU3Ek__BackingField_5(L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XRCameraSubsystemDescriptor_set_supportsDisplayMatrix_mE32DBA05CC497A4639E3BDA570E51244BD5E524A_inline (XRCameraSubsystemDescriptor_t1F8A45C69031E2981B1863518C43793D26E2C5E5 * __this, bool ___value0, const RuntimeMethod* method)
{
{
// public bool supportsDisplayMatrix { get; private set; }
bool L_0 = ___value0;
__this->set_U3CsupportsDisplayMatrixU3Ek__BackingField_6(L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XRCameraSubsystemDescriptor_set_supportsProjectionMatrix_mECDFAEA74911ED30529FDB70DE87AA3818AA285F_inline (XRCameraSubsystemDescriptor_t1F8A45C69031E2981B1863518C43793D26E2C5E5 * __this, bool ___value0, const RuntimeMethod* method)
{
{
// public bool supportsProjectionMatrix { get; private set; }
bool L_0 = ___value0;
__this->set_U3CsupportsProjectionMatrixU3Ek__BackingField_7(L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XRCameraSubsystemDescriptor_set_supportsTimestamp_mDE3970574677648ED3EC4520657BED04613128D3_inline (XRCameraSubsystemDescriptor_t1F8A45C69031E2981B1863518C43793D26E2C5E5 * __this, bool ___value0, const RuntimeMethod* method)
{
{
// public bool supportsTimestamp { get; private set; }
bool L_0 = ___value0;
__this->set_U3CsupportsTimestampU3Ek__BackingField_8(L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XRCameraSubsystemDescriptor_set_supportsCameraConfigurations_mE49020DC68025F21123ACCCB96C0ACB0A99A923C_inline (XRCameraSubsystemDescriptor_t1F8A45C69031E2981B1863518C43793D26E2C5E5 * __this, bool ___value0, const RuntimeMethod* method)
{
{
// public bool supportsCameraConfigurations { get; private set; }
bool L_0 = ___value0;
__this->set_U3CsupportsCameraConfigurationsU3Ek__BackingField_9(L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XRCameraSubsystemDescriptor_set_supportsCameraImage_m3D2848F2DDBED1D1B613D6CF8E6055D8163EF3F7_inline (XRCameraSubsystemDescriptor_t1F8A45C69031E2981B1863518C43793D26E2C5E5 * __this, bool ___value0, const RuntimeMethod* method)
{
{
// public bool supportsCameraImage { get; private set; }
bool L_0 = ___value0;
__this->set_U3CsupportsCameraImageU3Ek__BackingField_10(L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XRCameraSubsystemDescriptor_set_supportsAverageIntensityInLumens_m65A10731DEF111F2BE9325DC6CC26E5B765D07C6_inline (XRCameraSubsystemDescriptor_t1F8A45C69031E2981B1863518C43793D26E2C5E5 * __this, bool ___value0, const RuntimeMethod* method)
{
{
// public bool supportsAverageIntensityInLumens { get; private set; }
bool L_0 = ___value0;
__this->set_U3CsupportsAverageIntensityInLumensU3Ek__BackingField_11(L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XRCameraSubsystemDescriptor_set_supportsFocusModes_mB7D094AE9379B0C31386397C907C1A1C1A4189BB_inline (XRCameraSubsystemDescriptor_t1F8A45C69031E2981B1863518C43793D26E2C5E5 * __this, bool ___value0, const RuntimeMethod* method)
{
{
// public bool supportsFocusModes { get; private set; }
bool L_0 = ___value0;
__this->set_U3CsupportsFocusModesU3Ek__BackingField_12(L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XRCameraSubsystemDescriptor_set_supportsFaceTrackingAmbientIntensityLightEstimation_mA1E7039E19BAF3A62B025C1FD9E39112C92759BB_inline (XRCameraSubsystemDescriptor_t1F8A45C69031E2981B1863518C43793D26E2C5E5 * __this, bool ___value0, const RuntimeMethod* method)
{
{
// public bool supportsFaceTrackingAmbientIntensityLightEstimation { get; private set; }
bool L_0 = ___value0;
__this->set_U3CsupportsFaceTrackingAmbientIntensityLightEstimationU3Ek__BackingField_13(L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XRCameraSubsystemDescriptor_set_supportsFaceTrackingHDRLightEstimation_mE2E9D893DE652FC15DBD89A46E092957ED012565_inline (XRCameraSubsystemDescriptor_t1F8A45C69031E2981B1863518C43793D26E2C5E5 * __this, bool ___value0, const RuntimeMethod* method)
{
{
// public bool supportsFaceTrackingHDRLightEstimation { get; private set; }
bool L_0 = ___value0;
__this->set_U3CsupportsFaceTrackingHDRLightEstimationU3Ek__BackingField_14(L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XRCameraSubsystemDescriptor_set_supportsWorldTrackingAmbientIntensityLightEstimation_mB1C4D288FD5B48EC53B047348A3E25BE66C1F6BD_inline (XRCameraSubsystemDescriptor_t1F8A45C69031E2981B1863518C43793D26E2C5E5 * __this, bool ___value0, const RuntimeMethod* method)
{
{
// public bool supportsWorldTrackingAmbientIntensityLightEstimation { get; private set; }
bool L_0 = ___value0;
__this->set_U3CsupportsWorldTrackingAmbientIntensityLightEstimationU3Ek__BackingField_15(L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XRCameraSubsystemDescriptor_set_supportsWorldTrackingHDRLightEstimation_mA05D37FA61B46B9215CA459E52A84D398B19715E_inline (XRCameraSubsystemDescriptor_t1F8A45C69031E2981B1863518C43793D26E2C5E5 * __this, bool ___value0, const RuntimeMethod* method)
{
{
// public bool supportsWorldTrackingHDRLightEstimation { get; private set; }
bool L_0 = ___value0;
__this->set_U3CsupportsWorldTrackingHDRLightEstimationU3Ek__BackingField_16(L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XRCameraSubsystemDescriptor_set_supportsCameraGrain_m0DE607C6E20FA0A160E9421AD11B86DC267E3632_inline (XRCameraSubsystemDescriptor_t1F8A45C69031E2981B1863518C43793D26E2C5E5 * __this, bool ___value0, const RuntimeMethod* method)
{
{
// public bool supportsCameraGrain { get; private set; }
bool L_0 = ___value0;
__this->set_U3CsupportsCameraGrainU3Ek__BackingField_17(L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9 XRCpuImage_get_dimensions_m1A176BDB3319F09F3AF628AB17C126B62929A2A5_inline (XRCpuImage_tA48C0687D95D3D63D1101E4E08EFCF0ABB2431CE * __this, const RuntimeMethod* method)
{
{
// public Vector2Int dimensions { get; private set; }
Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9 L_0 = __this->get_U3CdimensionsU3Ek__BackingField_3();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XRCpuImage_set_dimensions_m8672F4307A096265FA73685BDDA6D605B9C10ED5_inline (XRCpuImage_tA48C0687D95D3D63D1101E4E08EFCF0ABB2431CE * __this, Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9 ___value0, const RuntimeMethod* method)
{
{
// public Vector2Int dimensions { get; private set; }
Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9 L_0 = ___value0;
__this->set_U3CdimensionsU3Ek__BackingField_3(L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t XRCpuImage_get_planeCount_m5F63BAD93F18A9D85D74377CFE1891860740D750_inline (XRCpuImage_tA48C0687D95D3D63D1101E4E08EFCF0ABB2431CE * __this, const RuntimeMethod* method)
{
{
// public int planeCount { get; private set; }
int32_t L_0 = __this->get_U3CplaneCountU3Ek__BackingField_4();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XRCpuImage_set_planeCount_mC261323C60A65DD0EBA30325554C5F92F13149EA_inline (XRCpuImage_tA48C0687D95D3D63D1101E4E08EFCF0ABB2431CE * __this, int32_t ___value0, const RuntimeMethod* method)
{
{
// public int planeCount { get; private set; }
int32_t L_0 = ___value0;
__this->set_U3CplaneCountU3Ek__BackingField_4(L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t XRCpuImage_get_format_m80FEE2CEC6A37A417D5B86294C1ECA50A49FDEAB_inline (XRCpuImage_tA48C0687D95D3D63D1101E4E08EFCF0ABB2431CE * __this, const RuntimeMethod* method)
{
{
// public Format format { get; private set; }
int32_t L_0 = __this->get_U3CformatU3Ek__BackingField_5();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XRCpuImage_set_format_m02654636810F940049F1A57FEA7987F71FA47DF6_inline (XRCpuImage_tA48C0687D95D3D63D1101E4E08EFCF0ABB2431CE * __this, int32_t ___value0, const RuntimeMethod* method)
{
{
// public Format format { get; private set; }
int32_t L_0 = ___value0;
__this->set_U3CformatU3Ek__BackingField_5(L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XRCpuImage_set_timestamp_m6FAE47FB68497C3757580D1FD94D0A4B7C2C783E_inline (XRCpuImage_tA48C0687D95D3D63D1101E4E08EFCF0ABB2431CE * __this, double ___value0, const RuntimeMethod* method)
{
{
// public double timestamp { get; private set; }
double L_0 = ___value0;
__this->set_U3CtimestampU3Ek__BackingField_6(L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t Cinfo_get_nativeHandle_mAB50E5453B3ED928372EC45DF5E0F4E2ADF341BC_inline (Cinfo_t4E32E30AF6973611F1DD0F47FC041ED3A8775DA6 * __this, const RuntimeMethod* method)
{
{
// public int nativeHandle => m_NativeHandle;
int32_t L_0 = __this->get_m_NativeHandle_0();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9 Cinfo_get_dimensions_mA8AFF01543915A325187A41369F6DA11231A3E50_inline (Cinfo_t4E32E30AF6973611F1DD0F47FC041ED3A8775DA6 * __this, const RuntimeMethod* method)
{
{
// public Vector2Int dimensions => m_Dimensions;
Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9 L_0 = __this->get_m_Dimensions_1();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t Cinfo_get_planeCount_m88E3C67F9E06017A46B7FF90368B24A6F48E1271_inline (Cinfo_t4E32E30AF6973611F1DD0F47FC041ED3A8775DA6 * __this, const RuntimeMethod* method)
{
{
// public int planeCount => m_PlaneCount;
int32_t L_0 = __this->get_m_PlaneCount_2();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR double Cinfo_get_timestamp_mAF782E097B2324BD673D8D98C68CA2D6CA4891EF_inline (Cinfo_t4E32E30AF6973611F1DD0F47FC041ED3A8775DA6 * __this, const RuntimeMethod* method)
{
{
// public double timestamp => m_Timestamp;
double L_0 = __this->get_m_Timestamp_3();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t Cinfo_get_format_m42CBF60A496CB04541CC04C97E1745AFBC7259BD_inline (Cinfo_t4E32E30AF6973611F1DD0F47FC041ED3A8775DA6 * __this, const RuntimeMethod* method)
{
{
// public Format format => m_Format;
int32_t L_0 = __this->get_m_Format_4();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR XRPointCloud_t08B41A05528E45CE709F8C14CA6C484D360A62F2 XRPointCloud_get_defaultValue_m484986BE6FCCFD493B66A7BC4895B0AC49F043E2_inline (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XRPointCloud_t08B41A05528E45CE709F8C14CA6C484D360A62F2_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
// public static XRPointCloud defaultValue => s_Default;
IL2CPP_RUNTIME_CLASS_INIT(XRPointCloud_t08B41A05528E45CE709F8C14CA6C484D360A62F2_il2cpp_TypeInfo_var);
XRPointCloud_t08B41A05528E45CE709F8C14CA6C484D360A62F2 L_0 = ((XRPointCloud_t08B41A05528E45CE709F8C14CA6C484D360A62F2_StaticFields*)il2cpp_codegen_static_fields_for(XRPointCloud_t08B41A05528E45CE709F8C14CA6C484D360A62F2_il2cpp_TypeInfo_var))->get_s_Default_0();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Type_t * Cinfo_get_providerType_m7168F2BEAB1E7D53C4A1308A0BE686CB6ACAC37D_inline (Cinfo_t37F91E88FCD8623834BE1898FC146620538C08B1 * __this, const RuntimeMethod* method)
{
{
// public Type providerType { get; set; }
Type_t * L_0 = __this->get_U3CproviderTypeU3Ek__BackingField_1();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Type_t * Cinfo_get_subsystemTypeOverride_mA17A612B4FB9125843E254DB825177C3B1834235_inline (Cinfo_t37F91E88FCD8623834BE1898FC146620538C08B1 * __this, const RuntimeMethod* method)
{
{
// public Type subsystemTypeOverride { get; set; }
Type_t * L_0 = __this->get_U3CsubsystemTypeOverrideU3Ek__BackingField_2();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XRDepthSubsystemDescriptor_set_supportsFeaturePoints_mA0C105DA50CA07BC488A7E1BDDB3CD72225BE00C_inline (XRDepthSubsystemDescriptor_t745DBB7D313FB52F756E0B7AA993FBBC26B412C2 * __this, bool ___value0, const RuntimeMethod* method)
{
{
// public bool supportsFeaturePoints { get; private set; }
bool L_0 = ___value0;
__this->set_U3CsupportsFeaturePointsU3Ek__BackingField_3(L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XRDepthSubsystemDescriptor_set_supportsUniqueIds_m0BBF2BAA5E4E1A704B29F62FE895F5A29A5D93CD_inline (XRDepthSubsystemDescriptor_t745DBB7D313FB52F756E0B7AA993FBBC26B412C2 * __this, bool ___value0, const RuntimeMethod* method)
{
{
// public bool supportsUniqueIds { get; private set; }
bool L_0 = ___value0;
__this->set_U3CsupportsUniqueIdsU3Ek__BackingField_4(L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XRDepthSubsystemDescriptor_set_supportsConfidence_m877945BE2EB06E5FB0699BEDA781CDC7E88DBC9A_inline (XRDepthSubsystemDescriptor_t745DBB7D313FB52F756E0B7AA993FBBC26B412C2 * __this, bool ___value0, const RuntimeMethod* method)
{
{
// public bool supportsConfidence { get; private set; }
bool L_0 = ___value0;
__this->set_U3CsupportsConfidenceU3Ek__BackingField_5(L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B XREnvironmentProbe_get_trackableId_m3C275681C5223EDD967B1F37E2A0FAFF03A80066_inline (XREnvironmentProbe_t4D75B5DF95135D1BA45222CBE3E7677E823B8D4C * __this, const RuntimeMethod* method)
{
{
// get => m_TrackableId;
TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B L_0 = __this->get_m_TrackableId_1();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XREnvironmentProbe_set_trackableId_m2FAAA910E6D06256C1ECCCCF8C6D3E72A056199D_inline (XREnvironmentProbe_t4D75B5DF95135D1BA45222CBE3E7677E823B8D4C * __this, TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B ___value0, const RuntimeMethod* method)
{
{
// private set => m_TrackableId = value;
TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B L_0 = ___value0;
__this->set_m_TrackableId_1(L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E XREnvironmentProbe_get_scale_m73AF4CF41515A2EDAD35FFBA598D23207F9D2BD3_inline (XREnvironmentProbe_t4D75B5DF95135D1BA45222CBE3E7677E823B8D4C * __this, const RuntimeMethod* method)
{
{
// get => m_Scale;
Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_0 = __this->get_m_Scale_2();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A XREnvironmentProbe_get_pose_m03ABF5D0F413C9892349CF3891D5214147DD4C09_inline (XREnvironmentProbe_t4D75B5DF95135D1BA45222CBE3E7677E823B8D4C * __this, const RuntimeMethod* method)
{
{
// get => m_Pose;
Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A L_0 = __this->get_m_Pose_3();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XREnvironmentProbe_set_pose_mAC84C3A2D8788D587F0503EA1CE051294A8A87E9_inline (XREnvironmentProbe_t4D75B5DF95135D1BA45222CBE3E7677E823B8D4C * __this, Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A ___value0, const RuntimeMethod* method)
{
{
// private set => m_Pose = value;
Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A L_0 = ___value0;
__this->set_m_Pose_3(L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E XREnvironmentProbe_get_size_mC31926635D53201B3C0E7E76B3ADBE2883374135_inline (XREnvironmentProbe_t4D75B5DF95135D1BA45222CBE3E7677E823B8D4C * __this, const RuntimeMethod* method)
{
{
// get => m_Size;
Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_0 = __this->get_m_Size_4();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR XRTextureDescriptor_t9CA857DCCC1208B74376787BE4F3008A01B29A57 XREnvironmentProbe_get_textureDescriptor_mDA5B2F0E63647BBC038FB4E476F609625109FA13_inline (XREnvironmentProbe_t4D75B5DF95135D1BA45222CBE3E7677E823B8D4C * __this, const RuntimeMethod* method)
{
{
// get => m_TextureDescriptor;
XRTextureDescriptor_t9CA857DCCC1208B74376787BE4F3008A01B29A57 L_0 = __this->get_m_TextureDescriptor_5();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t XREnvironmentProbe_get_trackingState_m47E2E959CA905F4498489EEFF1C1DCEC4958582C_inline (XREnvironmentProbe_t4D75B5DF95135D1BA45222CBE3E7677E823B8D4C * __this, const RuntimeMethod* method)
{
{
// get => m_TrackingState;
int32_t L_0 = __this->get_m_TrackingState_6();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR intptr_t XREnvironmentProbe_get_nativePtr_m00FA5612D1CB3AB7F8F11B1ECBD7AA139FEE60F4_inline (XREnvironmentProbe_t4D75B5DF95135D1BA45222CBE3E7677E823B8D4C * __this, const RuntimeMethod* method)
{
{
// get => m_NativePtr;
intptr_t L_0 = __this->get_m_NativePtr_7();
return (intptr_t)L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool XREnvironmentProbeSubsystemDescriptor_get_supportsAutomaticPlacement_m12205A40FBD5214E81576F99E35D9996F0E20509_inline (XREnvironmentProbeSubsystemDescriptor_t7C10519F545418330347AC7434FBB10F39DD4243 * __this, const RuntimeMethod* method)
{
{
// public bool supportsAutomaticPlacement { get; private set; }
bool L_0 = __this->get_U3CsupportsAutomaticPlacementU3Ek__BackingField_5();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR XREnvironmentProbe_t4D75B5DF95135D1BA45222CBE3E7677E823B8D4C XREnvironmentProbe_get_defaultValue_m150C4FBAC331EF916AABC17F68BDC6243D5B5EB8_inline (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XREnvironmentProbe_t4D75B5DF95135D1BA45222CBE3E7677E823B8D4C_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
// public static XREnvironmentProbe defaultValue => s_Default;
IL2CPP_RUNTIME_CLASS_INIT(XREnvironmentProbe_t4D75B5DF95135D1BA45222CBE3E7677E823B8D4C_il2cpp_TypeInfo_var);
XREnvironmentProbe_t4D75B5DF95135D1BA45222CBE3E7677E823B8D4C L_0 = ((XREnvironmentProbe_t4D75B5DF95135D1BA45222CBE3E7677E823B8D4C_StaticFields*)il2cpp_codegen_static_fields_for(XREnvironmentProbe_t4D75B5DF95135D1BA45222CBE3E7677E823B8D4C_il2cpp_TypeInfo_var))->get_s_Default_0();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* XREnvironmentProbeSubsystemCinfo_get_id_mBEA40C4012D8253E65C525083E3454C93BC6F3BE_inline (XREnvironmentProbeSubsystemCinfo_t6D9368EC95B6B356A67B7289270F27BB6A4440B2 * __this, const RuntimeMethod* method)
{
{
// public string id { get; set; }
String_t* L_0 = __this->get_U3CidU3Ek__BackingField_0();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XREnvironmentProbeSubsystemCinfo_set_id_m5C48BD3E879410D5C622BE7DC74D5C798E151731_inline (XREnvironmentProbeSubsystemCinfo_t6D9368EC95B6B356A67B7289270F27BB6A4440B2 * __this, String_t* ___value0, const RuntimeMethod* method)
{
{
// public string id { get; set; }
String_t* L_0 = ___value0;
__this->set_U3CidU3Ek__BackingField_0(L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Type_t * XREnvironmentProbeSubsystemCinfo_get_providerType_m3A3572178EED86B4F98254B4FAB73016B4459AA1_inline (XREnvironmentProbeSubsystemCinfo_t6D9368EC95B6B356A67B7289270F27BB6A4440B2 * __this, const RuntimeMethod* method)
{
{
// public Type providerType { get; set; }
Type_t * L_0 = __this->get_U3CproviderTypeU3Ek__BackingField_1();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XREnvironmentProbeSubsystemCinfo_set_providerType_m70C42D1F210DE19AB5E7D82F2D0BDB467E94FC2F_inline (XREnvironmentProbeSubsystemCinfo_t6D9368EC95B6B356A67B7289270F27BB6A4440B2 * __this, Type_t * ___value0, const RuntimeMethod* method)
{
{
// public Type providerType { get; set; }
Type_t * L_0 = ___value0;
__this->set_U3CproviderTypeU3Ek__BackingField_1(L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Type_t * XREnvironmentProbeSubsystemCinfo_get_subsystemTypeOverride_m258F6355EE3F5ED52ADF4A79777AD092AD9B2F22_inline (XREnvironmentProbeSubsystemCinfo_t6D9368EC95B6B356A67B7289270F27BB6A4440B2 * __this, const RuntimeMethod* method)
{
{
// public Type subsystemTypeOverride { get; set; }
Type_t * L_0 = __this->get_U3CsubsystemTypeOverrideU3Ek__BackingField_2();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XREnvironmentProbeSubsystemCinfo_set_subsystemTypeOverride_mB35BB7FC1C0C42E0A7773365C147F539E7AC27EE_inline (XREnvironmentProbeSubsystemCinfo_t6D9368EC95B6B356A67B7289270F27BB6A4440B2 * __this, Type_t * ___value0, const RuntimeMethod* method)
{
{
// public Type subsystemTypeOverride { get; set; }
Type_t * L_0 = ___value0;
__this->set_U3CsubsystemTypeOverrideU3Ek__BackingField_2(L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool XREnvironmentProbeSubsystemCinfo_get_supportsManualPlacement_m194C593950367B1C7EFB50D6F00E5705597065BF_inline (XREnvironmentProbeSubsystemCinfo_t6D9368EC95B6B356A67B7289270F27BB6A4440B2 * __this, const RuntimeMethod* method)
{
{
// public bool supportsManualPlacement { get; set; }
bool L_0 = __this->get_U3CsupportsManualPlacementU3Ek__BackingField_4();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XREnvironmentProbeSubsystemCinfo_set_supportsManualPlacement_m2D1156DE760E47CBDDC345AD5CAE5D23AC23E524_inline (XREnvironmentProbeSubsystemCinfo_t6D9368EC95B6B356A67B7289270F27BB6A4440B2 * __this, bool ___value0, const RuntimeMethod* method)
{
{
// public bool supportsManualPlacement { get; set; }
bool L_0 = ___value0;
__this->set_U3CsupportsManualPlacementU3Ek__BackingField_4(L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool XREnvironmentProbeSubsystemCinfo_get_supportsRemovalOfManual_m7B2DFDB097FAD2FC7FE6AE7F7A8172FA7B34D406_inline (XREnvironmentProbeSubsystemCinfo_t6D9368EC95B6B356A67B7289270F27BB6A4440B2 * __this, const RuntimeMethod* method)
{
{
// public bool supportsRemovalOfManual { get; set; }
bool L_0 = __this->get_U3CsupportsRemovalOfManualU3Ek__BackingField_5();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XREnvironmentProbeSubsystemCinfo_set_supportsRemovalOfManual_m01CE117FEA37EE9BEF79903754E396C35B859419_inline (XREnvironmentProbeSubsystemCinfo_t6D9368EC95B6B356A67B7289270F27BB6A4440B2 * __this, bool ___value0, const RuntimeMethod* method)
{
{
// public bool supportsRemovalOfManual { get; set; }
bool L_0 = ___value0;
__this->set_U3CsupportsRemovalOfManualU3Ek__BackingField_5(L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool XREnvironmentProbeSubsystemCinfo_get_supportsAutomaticPlacement_m2EAA567973D53F9FFCF91AAD4233F91957281B11_inline (XREnvironmentProbeSubsystemCinfo_t6D9368EC95B6B356A67B7289270F27BB6A4440B2 * __this, const RuntimeMethod* method)
{
{
// public bool supportsAutomaticPlacement { get; set; }
bool L_0 = __this->get_U3CsupportsAutomaticPlacementU3Ek__BackingField_6();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XREnvironmentProbeSubsystemCinfo_set_supportsAutomaticPlacement_mC4DBFBBD4DBB44D6B1154C4759A3175F9AC33D46_inline (XREnvironmentProbeSubsystemCinfo_t6D9368EC95B6B356A67B7289270F27BB6A4440B2 * __this, bool ___value0, const RuntimeMethod* method)
{
{
// public bool supportsAutomaticPlacement { get; set; }
bool L_0 = ___value0;
__this->set_U3CsupportsAutomaticPlacementU3Ek__BackingField_6(L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool XREnvironmentProbeSubsystemCinfo_get_supportsRemovalOfAutomatic_mFC9AA46EA023D8A0968ED80B1F88F10AA50F549F_inline (XREnvironmentProbeSubsystemCinfo_t6D9368EC95B6B356A67B7289270F27BB6A4440B2 * __this, const RuntimeMethod* method)
{
{
// public bool supportsRemovalOfAutomatic { get; set; }
bool L_0 = __this->get_U3CsupportsRemovalOfAutomaticU3Ek__BackingField_7();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XREnvironmentProbeSubsystemCinfo_set_supportsRemovalOfAutomatic_m6FCC1E3ACDC01E4447E385A1B89C96DEE16B7EF2_inline (XREnvironmentProbeSubsystemCinfo_t6D9368EC95B6B356A67B7289270F27BB6A4440B2 * __this, bool ___value0, const RuntimeMethod* method)
{
{
// public bool supportsRemovalOfAutomatic { get; set; }
bool L_0 = ___value0;
__this->set_U3CsupportsRemovalOfAutomaticU3Ek__BackingField_7(L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool XREnvironmentProbeSubsystemCinfo_get_supportsEnvironmentTexture_m3593704263A383A9EC79E765CCC01632707E4A48_inline (XREnvironmentProbeSubsystemCinfo_t6D9368EC95B6B356A67B7289270F27BB6A4440B2 * __this, const RuntimeMethod* method)
{
{
// public bool supportsEnvironmentTexture { get; set; }
bool L_0 = __this->get_U3CsupportsEnvironmentTextureU3Ek__BackingField_8();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XREnvironmentProbeSubsystemCinfo_set_supportsEnvironmentTexture_mE30B73C6AC37C6DF8F5B7DBDBC90A975A498D3E4_inline (XREnvironmentProbeSubsystemCinfo_t6D9368EC95B6B356A67B7289270F27BB6A4440B2 * __this, bool ___value0, const RuntimeMethod* method)
{
{
// public bool supportsEnvironmentTexture { get; set; }
bool L_0 = ___value0;
__this->set_U3CsupportsEnvironmentTextureU3Ek__BackingField_8(L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool XREnvironmentProbeSubsystemCinfo_get_supportsEnvironmentTextureHDR_mDD0F30AB731A6010F6F96DBA660415B55FCD580A_inline (XREnvironmentProbeSubsystemCinfo_t6D9368EC95B6B356A67B7289270F27BB6A4440B2 * __this, const RuntimeMethod* method)
{
{
// public bool supportsEnvironmentTextureHDR { get; set; }
bool L_0 = __this->get_U3CsupportsEnvironmentTextureHDRU3Ek__BackingField_9();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XREnvironmentProbeSubsystemCinfo_set_supportsEnvironmentTextureHDR_mA465A23A4DC052895F8F634892B7C8E3A49F4777_inline (XREnvironmentProbeSubsystemCinfo_t6D9368EC95B6B356A67B7289270F27BB6A4440B2 * __this, bool ___value0, const RuntimeMethod* method)
{
{
// public bool supportsEnvironmentTextureHDR { get; set; }
bool L_0 = ___value0;
__this->set_U3CsupportsEnvironmentTextureHDRU3Ek__BackingField_9(L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XREnvironmentProbeSubsystemDescriptor_set_supportsManualPlacement_mCE20C35437C72E053599F9F900EFE7D5A1B0ECF3_inline (XREnvironmentProbeSubsystemDescriptor_t7C10519F545418330347AC7434FBB10F39DD4243 * __this, bool ___value0, const RuntimeMethod* method)
{
{
// public bool supportsManualPlacement { get; private set; }
bool L_0 = ___value0;
__this->set_U3CsupportsManualPlacementU3Ek__BackingField_3(L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XREnvironmentProbeSubsystemDescriptor_set_supportsRemovalOfManual_m148569DAD1997E9EFC75977FD58B2E2A0E6A3A29_inline (XREnvironmentProbeSubsystemDescriptor_t7C10519F545418330347AC7434FBB10F39DD4243 * __this, bool ___value0, const RuntimeMethod* method)
{
{
// public bool supportsRemovalOfManual { get; private set; }
bool L_0 = ___value0;
__this->set_U3CsupportsRemovalOfManualU3Ek__BackingField_4(L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XREnvironmentProbeSubsystemDescriptor_set_supportsAutomaticPlacement_mE62CB20894AB742E406F1762C9B8C2CE1DA1B359_inline (XREnvironmentProbeSubsystemDescriptor_t7C10519F545418330347AC7434FBB10F39DD4243 * __this, bool ___value0, const RuntimeMethod* method)
{
{
// public bool supportsAutomaticPlacement { get; private set; }
bool L_0 = ___value0;
__this->set_U3CsupportsAutomaticPlacementU3Ek__BackingField_5(L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XREnvironmentProbeSubsystemDescriptor_set_supportsRemovalOfAutomatic_m3210C35AC07979BAFDFA3EA0F6A3677285D6E282_inline (XREnvironmentProbeSubsystemDescriptor_t7C10519F545418330347AC7434FBB10F39DD4243 * __this, bool ___value0, const RuntimeMethod* method)
{
{
// public bool supportsRemovalOfAutomatic { get; private set; }
bool L_0 = ___value0;
__this->set_U3CsupportsRemovalOfAutomaticU3Ek__BackingField_6(L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XREnvironmentProbeSubsystemDescriptor_set_supportsEnvironmentTexture_m67C606821F3D139A11628F487EFE764A2A562CC4_inline (XREnvironmentProbeSubsystemDescriptor_t7C10519F545418330347AC7434FBB10F39DD4243 * __this, bool ___value0, const RuntimeMethod* method)
{
{
// public bool supportsEnvironmentTexture { get; private set; }
bool L_0 = ___value0;
__this->set_U3CsupportsEnvironmentTextureU3Ek__BackingField_7(L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XREnvironmentProbeSubsystemDescriptor_set_supportsEnvironmentTextureHDR_m813F1381535676A236CE05D522515683E6CA795A_inline (XREnvironmentProbeSubsystemDescriptor_t7C10519F545418330347AC7434FBB10F39DD4243 * __this, bool ___value0, const RuntimeMethod* method)
{
{
// public bool supportsEnvironmentTextureHDR { get; private set; }
bool L_0 = ___value0;
__this->set_U3CsupportsEnvironmentTextureHDRU3Ek__BackingField_8(L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B XRFace_get_trackableId_m997871151FF642B1908F7E352C952A44AB4DD17C_inline (XRFace_tA970995ECE26D43D1CBB9058ABEC72B76D2DA599 * __this, const RuntimeMethod* method)
{
{
// public TrackableId trackableId => m_TrackableId;
TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B L_0 = __this->get_m_TrackableId_0();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A XRFace_get_pose_m482AC4907DC02C0B5D67B84320DA7F9D12A43A75_inline (XRFace_tA970995ECE26D43D1CBB9058ABEC72B76D2DA599 * __this, const RuntimeMethod* method)
{
{
// public Pose pose => m_Pose;
Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A L_0 = __this->get_m_Pose_1();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t XRFace_get_trackingState_m8953B01AB6213402157B69083B318D3F2CDCF26A_inline (XRFace_tA970995ECE26D43D1CBB9058ABEC72B76D2DA599 * __this, const RuntimeMethod* method)
{
{
// public TrackingState trackingState => m_TrackingState;
int32_t L_0 = __this->get_m_TrackingState_2();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR intptr_t XRFace_get_nativePtr_mCE6C767CB9DBBCDE7B289D8EBDE1DFC86707BC95_inline (XRFace_tA970995ECE26D43D1CBB9058ABEC72B76D2DA599 * __this, const RuntimeMethod* method)
{
{
// public IntPtr nativePtr => m_NativePtr;
intptr_t L_0 = __this->get_m_NativePtr_3();
return (intptr_t)L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A XRFace_get_leftEyePose_mEAF86B00D307A5D96D671A85EA1BBF88D82586BF_inline (XRFace_tA970995ECE26D43D1CBB9058ABEC72B76D2DA599 * __this, const RuntimeMethod* method)
{
{
// public Pose leftEyePose => m_LeftEyePose;
Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A L_0 = __this->get_m_LeftEyePose_4();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A XRFace_get_rightEyePose_m3FA7FDE9C2D9841FB7496B691FCAB1F35475F2B1_inline (XRFace_tA970995ECE26D43D1CBB9058ABEC72B76D2DA599 * __this, const RuntimeMethod* method)
{
{
// public Pose rightEyePose => m_RightEyePose;
Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A L_0 = __this->get_m_RightEyePose_5();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E XRFace_get_fixationPoint_mAEA40B8C8F2C0D0A3B777ACFDE327017C9DF294D_inline (XRFace_tA970995ECE26D43D1CBB9058ABEC72B76D2DA599 * __this, const RuntimeMethod* method)
{
{
// public Vector3 fixationPoint => m_FixationPoint;
Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_0 = __this->get_m_FixationPoint_6();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR NativeArray_1_t2577BCA09CA248EFB78BD7FDA7F09D5C395DFF52 XRFaceMesh_get_vertices_m19DE0A4E73ED17C8B6427BE86071E10DB65740DD_inline (XRFaceMesh_t2ADC7E6069DCCCFB439A4A60DB9189338C9E1AD0 * __this, const RuntimeMethod* method)
{
{
// public NativeArray<Vector3> vertices => m_Vertices;
NativeArray_1_t2577BCA09CA248EFB78BD7FDA7F09D5C395DFF52 L_0 = __this->get_m_Vertices_0();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR NativeArray_1_t2577BCA09CA248EFB78BD7FDA7F09D5C395DFF52 XRFaceMesh_get_normals_m82DE916E7AE8A9BF4768D289E01CD0C65E1001ED_inline (XRFaceMesh_t2ADC7E6069DCCCFB439A4A60DB9189338C9E1AD0 * __this, const RuntimeMethod* method)
{
{
// public NativeArray<Vector3> normals => m_Normals;
NativeArray_1_t2577BCA09CA248EFB78BD7FDA7F09D5C395DFF52 L_0 = __this->get_m_Normals_1();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR NativeArray_1_tD60079F06B473C85CF6C2BB4F2D203F38191AE99 XRFaceMesh_get_indices_m93B77F79BB4C67AF1AFFAD29ED8D8F48AF4616FE_inline (XRFaceMesh_t2ADC7E6069DCCCFB439A4A60DB9189338C9E1AD0 * __this, const RuntimeMethod* method)
{
{
// public NativeArray<int> indices => m_Indices;
NativeArray_1_tD60079F06B473C85CF6C2BB4F2D203F38191AE99 L_0 = __this->get_m_Indices_2();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR NativeArray_1_t431C85F30275831D1F5D458AB73DFCE050693BC0 XRFaceMesh_get_uvs_m89943E9CD34232EF09B81F13EF259C33F1183B49_inline (XRFaceMesh_t2ADC7E6069DCCCFB439A4A60DB9189338C9E1AD0 * __this, const RuntimeMethod* method)
{
{
// public NativeArray<Vector2> uvs => m_UVs;
NativeArray_1_t431C85F30275831D1F5D458AB73DFCE050693BC0 L_0 = __this->get_m_UVs_3();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR XRFace_tA970995ECE26D43D1CBB9058ABEC72B76D2DA599 XRFace_get_defaultValue_m747D549873462D18EA28AA56D1A0870F6DE4F2D4_inline (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XRFace_tA970995ECE26D43D1CBB9058ABEC72B76D2DA599_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
// public static XRFace defaultValue => s_Default;
IL2CPP_RUNTIME_CLASS_INIT(XRFace_tA970995ECE26D43D1CBB9058ABEC72B76D2DA599_il2cpp_TypeInfo_var);
XRFace_tA970995ECE26D43D1CBB9058ABEC72B76D2DA599 L_0 = ((XRFace_tA970995ECE26D43D1CBB9058ABEC72B76D2DA599_StaticFields*)il2cpp_codegen_static_fields_for(XRFace_tA970995ECE26D43D1CBB9058ABEC72B76D2DA599_il2cpp_TypeInfo_var))->get_s_Default_7();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B XRHumanBody_get_trackableId_m1132E7F157E2F1649C9849D0CCCFCCAE12659035_inline (XRHumanBody_t1AA9DC3BEBCF86A64BE2B83452AC5704AD08C13B * __this, const RuntimeMethod* method)
{
{
// get => m_TrackableId;
TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B L_0 = __this->get_m_TrackableId_0();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XRHumanBody_set_trackableId_mD3C8385C017B211CB843FBE09F865FCFF6736AD5_inline (XRHumanBody_t1AA9DC3BEBCF86A64BE2B83452AC5704AD08C13B * __this, TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B ___value0, const RuntimeMethod* method)
{
{
// private set => m_TrackableId = value;
TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B L_0 = ___value0;
__this->set_m_TrackableId_0(L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A XRHumanBody_get_pose_m5F377842C281F643E6205DF173FAD26A71FD85CB_inline (XRHumanBody_t1AA9DC3BEBCF86A64BE2B83452AC5704AD08C13B * __this, const RuntimeMethod* method)
{
{
// get => m_Pose;
Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A L_0 = __this->get_m_Pose_1();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XRHumanBody_set_pose_m041B85CE78A0EEF68E9D04C79D5E896481521F13_inline (XRHumanBody_t1AA9DC3BEBCF86A64BE2B83452AC5704AD08C13B * __this, Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A ___value0, const RuntimeMethod* method)
{
{
// private set => m_Pose = value;
Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A L_0 = ___value0;
__this->set_m_Pose_1(L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float XRHumanBody_get_estimatedHeightScaleFactor_mCCF772B1264F243207D413D87F9DEB51BAA66625_inline (XRHumanBody_t1AA9DC3BEBCF86A64BE2B83452AC5704AD08C13B * __this, const RuntimeMethod* method)
{
{
// get => m_EstimatedHeightScaleFactor;
float L_0 = __this->get_m_EstimatedHeightScaleFactor_2();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XRHumanBody_set_estimatedHeightScaleFactor_m08C6119D250F4EC14458EF86245F41DE6480928B_inline (XRHumanBody_t1AA9DC3BEBCF86A64BE2B83452AC5704AD08C13B * __this, float ___value0, const RuntimeMethod* method)
{
{
// private set => m_EstimatedHeightScaleFactor = value;
float L_0 = ___value0;
__this->set_m_EstimatedHeightScaleFactor_2(L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t XRHumanBody_get_trackingState_m1F6F709DD208442C6E3B253BF1E6F5448B0D7913_inline (XRHumanBody_t1AA9DC3BEBCF86A64BE2B83452AC5704AD08C13B * __this, const RuntimeMethod* method)
{
{
// get => m_TrackingState;
int32_t L_0 = __this->get_m_TrackingState_3();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR XRHumanBody_t1AA9DC3BEBCF86A64BE2B83452AC5704AD08C13B XRHumanBody_get_defaultValue_m0A3A0C5BAFB5C20A12014597FA6690AE6470ACA4_inline (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XRHumanBody_t1AA9DC3BEBCF86A64BE2B83452AC5704AD08C13B_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
// public static XRHumanBody defaultValue => s_Default;
IL2CPP_RUNTIME_CLASS_INIT(XRHumanBody_t1AA9DC3BEBCF86A64BE2B83452AC5704AD08C13B_il2cpp_TypeInfo_var);
XRHumanBody_t1AA9DC3BEBCF86A64BE2B83452AC5704AD08C13B L_0 = ((XRHumanBody_t1AA9DC3BEBCF86A64BE2B83452AC5704AD08C13B_StaticFields*)il2cpp_codegen_static_fields_for(XRHumanBody_t1AA9DC3BEBCF86A64BE2B83452AC5704AD08C13B_il2cpp_TypeInfo_var))->get_s_Default_5();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* XRHumanBodySubsystemCinfo_get_id_m6ECD1B43CC3A0BF83286383CA417ECAFB750CB74_inline (XRHumanBodySubsystemCinfo_tAFFD9EF9197B51AA2EAC628F54C90C842B7E54CC * __this, const RuntimeMethod* method)
{
{
// public string id { get; set; }
String_t* L_0 = __this->get_U3CidU3Ek__BackingField_0();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XRHumanBodySubsystemCinfo_set_id_m379B96A2CE563FFD6CAC41112068975C8875B3A7_inline (XRHumanBodySubsystemCinfo_tAFFD9EF9197B51AA2EAC628F54C90C842B7E54CC * __this, String_t* ___value0, const RuntimeMethod* method)
{
{
// public string id { get; set; }
String_t* L_0 = ___value0;
__this->set_U3CidU3Ek__BackingField_0(L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Type_t * XRHumanBodySubsystemCinfo_get_providerType_m9FEA7CEFDEEACC1D13C859C31A2325E50A6132DD_inline (XRHumanBodySubsystemCinfo_tAFFD9EF9197B51AA2EAC628F54C90C842B7E54CC * __this, const RuntimeMethod* method)
{
{
// public Type providerType { get; set; }
Type_t * L_0 = __this->get_U3CproviderTypeU3Ek__BackingField_1();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XRHumanBodySubsystemCinfo_set_providerType_mA34C98EF6EDDFADFF83C4062C0AF33F3C7BA61A5_inline (XRHumanBodySubsystemCinfo_tAFFD9EF9197B51AA2EAC628F54C90C842B7E54CC * __this, Type_t * ___value0, const RuntimeMethod* method)
{
{
// public Type providerType { get; set; }
Type_t * L_0 = ___value0;
__this->set_U3CproviderTypeU3Ek__BackingField_1(L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Type_t * XRHumanBodySubsystemCinfo_get_subsystemTypeOverride_mB03C7A5BC048D86AAE6334A221E1DF2FEE059754_inline (XRHumanBodySubsystemCinfo_tAFFD9EF9197B51AA2EAC628F54C90C842B7E54CC * __this, const RuntimeMethod* method)
{
{
// public Type subsystemTypeOverride { get; set; }
Type_t * L_0 = __this->get_U3CsubsystemTypeOverrideU3Ek__BackingField_2();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XRHumanBodySubsystemCinfo_set_subsystemTypeOverride_m73A633BECC2393CEB62B95FCF9CD7B32BFDB19FF_inline (XRHumanBodySubsystemCinfo_tAFFD9EF9197B51AA2EAC628F54C90C842B7E54CC * __this, Type_t * ___value0, const RuntimeMethod* method)
{
{
// public Type subsystemTypeOverride { get; set; }
Type_t * L_0 = ___value0;
__this->set_U3CsubsystemTypeOverrideU3Ek__BackingField_2(L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool XRHumanBodySubsystemCinfo_get_supportsHumanBody2D_m26CC2FAAFF325E448010E9DFFDC2CF78C5118E71_inline (XRHumanBodySubsystemCinfo_tAFFD9EF9197B51AA2EAC628F54C90C842B7E54CC * __this, const RuntimeMethod* method)
{
{
// public bool supportsHumanBody2D { get; set; }
bool L_0 = __this->get_U3CsupportsHumanBody2DU3Ek__BackingField_4();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XRHumanBodySubsystemCinfo_set_supportsHumanBody2D_m33B2A01C8E5F61DFE604BDCD2D438EC0B3C45551_inline (XRHumanBodySubsystemCinfo_tAFFD9EF9197B51AA2EAC628F54C90C842B7E54CC * __this, bool ___value0, const RuntimeMethod* method)
{
{
// public bool supportsHumanBody2D { get; set; }
bool L_0 = ___value0;
__this->set_U3CsupportsHumanBody2DU3Ek__BackingField_4(L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool XRHumanBodySubsystemCinfo_get_supportsHumanBody3D_m43BFDC9F4E92ECDE599A826C24D951AF90D76331_inline (XRHumanBodySubsystemCinfo_tAFFD9EF9197B51AA2EAC628F54C90C842B7E54CC * __this, const RuntimeMethod* method)
{
{
// public bool supportsHumanBody3D { get; set; }
bool L_0 = __this->get_U3CsupportsHumanBody3DU3Ek__BackingField_5();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XRHumanBodySubsystemCinfo_set_supportsHumanBody3D_mE30720F10B501314868ABDBE2EDCE11D0A333D24_inline (XRHumanBodySubsystemCinfo_tAFFD9EF9197B51AA2EAC628F54C90C842B7E54CC * __this, bool ___value0, const RuntimeMethod* method)
{
{
// public bool supportsHumanBody3D { get; set; }
bool L_0 = ___value0;
__this->set_U3CsupportsHumanBody3DU3Ek__BackingField_5(L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool XRHumanBodySubsystemCinfo_get_supportsHumanBody3DScaleEstimation_mDC1321982924ADE85F14D4AA959D2B593D378380_inline (XRHumanBodySubsystemCinfo_tAFFD9EF9197B51AA2EAC628F54C90C842B7E54CC * __this, const RuntimeMethod* method)
{
{
// public bool supportsHumanBody3DScaleEstimation { get; set; }
bool L_0 = __this->get_U3CsupportsHumanBody3DScaleEstimationU3Ek__BackingField_6();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XRHumanBodySubsystemCinfo_set_supportsHumanBody3DScaleEstimation_m72411E882EB28AB5BD33F4D266918FA3DB355782_inline (XRHumanBodySubsystemCinfo_tAFFD9EF9197B51AA2EAC628F54C90C842B7E54CC * __this, bool ___value0, const RuntimeMethod* method)
{
{
// public bool supportsHumanBody3DScaleEstimation { get; set; }
bool L_0 = ___value0;
__this->set_U3CsupportsHumanBody3DScaleEstimationU3Ek__BackingField_6(L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XRHumanBodySubsystemDescriptor_set_supportsHumanBody2D_m69569A3382D7FB0F2E2FE8DCEA0B0132F2746024_inline (XRHumanBodySubsystemDescriptor_t00E75DD05B03BCC1BF5A794547615692B7A55C04 * __this, bool ___value0, const RuntimeMethod* method)
{
{
// public bool supportsHumanBody2D { get; private set; }
bool L_0 = ___value0;
__this->set_U3CsupportsHumanBody2DU3Ek__BackingField_3(L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XRHumanBodySubsystemDescriptor_set_supportsHumanBody3D_m379699D5A666066DDDFBEAA9BCC983EB81BC8AC6_inline (XRHumanBodySubsystemDescriptor_t00E75DD05B03BCC1BF5A794547615692B7A55C04 * __this, bool ___value0, const RuntimeMethod* method)
{
{
// public bool supportsHumanBody3D { get; private set; }
bool L_0 = ___value0;
__this->set_U3CsupportsHumanBody3DU3Ek__BackingField_4(L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XRHumanBodySubsystemDescriptor_set_supportsHumanBody3DScaleEstimation_m1AA010D35D673EFBB060AEED35E04E6141453E81_inline (XRHumanBodySubsystemDescriptor_t00E75DD05B03BCC1BF5A794547615692B7A55C04 * __this, bool ___value0, const RuntimeMethod* method)
{
{
// public bool supportsHumanBody3DScaleEstimation { get; private set; }
bool L_0 = ___value0;
__this->set_U3CsupportsHumanBody3DScaleEstimationU3Ek__BackingField_5(L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR XRTrackedImage_t92B53E0621C6D2E930761110E719F0E9580A722F XRTrackedImage_get_defaultValue_mF1D23DA4557C85FAEB70039F5D14156F1176E84E_inline (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XRTrackedImage_t92B53E0621C6D2E930761110E719F0E9580A722F_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
// public static XRTrackedImage defaultValue => s_Default;
IL2CPP_RUNTIME_CLASS_INIT(XRTrackedImage_t92B53E0621C6D2E930761110E719F0E9580A722F_il2cpp_TypeInfo_var);
XRTrackedImage_t92B53E0621C6D2E930761110E719F0E9580A722F L_0 = ((XRTrackedImage_t92B53E0621C6D2E930761110E719F0E9580A722F_StaticFields*)il2cpp_codegen_static_fields_for(XRTrackedImage_t92B53E0621C6D2E930761110E719F0E9580A722F_il2cpp_TypeInfo_var))->get_s_Default_0();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* Cinfo_get_id_m7ACB39F94D161A19473B51245A60F0FE3380E9C6_inline (Cinfo_tED92D7CBD16BE657927A6B7DB64A22DA21EB7D32 * __this, const RuntimeMethod* method)
{
{
// public string id { get; set; }
String_t* L_0 = __this->get_U3CidU3Ek__BackingField_0();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Type_t * Cinfo_get_providerType_m865B26BBCBE9E542D09269A2CA6BD1FC47976AF2_inline (Cinfo_tED92D7CBD16BE657927A6B7DB64A22DA21EB7D32 * __this, const RuntimeMethod* method)
{
{
// public Type providerType { get; set; }
Type_t * L_0 = __this->get_U3CproviderTypeU3Ek__BackingField_1();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Type_t * Cinfo_get_subsystemTypeOverride_m0008239CE298C4881102FED287EC52224601A3A5_inline (Cinfo_tED92D7CBD16BE657927A6B7DB64A22DA21EB7D32 * __this, const RuntimeMethod* method)
{
{
// public Type subsystemTypeOverride { get; set; }
Type_t * L_0 = __this->get_U3CsubsystemTypeOverrideU3Ek__BackingField_2();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Cinfo_get_supportsMovingImages_m7B1E2171F1304A73339266B64548CF305EFEEA91_inline (Cinfo_tED92D7CBD16BE657927A6B7DB64A22DA21EB7D32 * __this, const RuntimeMethod* method)
{
{
// public bool supportsMovingImages { get; set; }
bool L_0 = __this->get_U3CsupportsMovingImagesU3Ek__BackingField_4();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Cinfo_get_requiresPhysicalImageDimensions_mEED8602BF9D390F19582D3F706A9C93333AFB0C7_inline (Cinfo_tED92D7CBD16BE657927A6B7DB64A22DA21EB7D32 * __this, const RuntimeMethod* method)
{
{
// public bool requiresPhysicalImageDimensions { get; set; }
bool L_0 = __this->get_U3CrequiresPhysicalImageDimensionsU3Ek__BackingField_5();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Cinfo_get_supportsMutableLibrary_mCD0988DBB5810975CB97BEDD9B2E6B6C168D6E19_inline (Cinfo_tED92D7CBD16BE657927A6B7DB64A22DA21EB7D32 * __this, const RuntimeMethod* method)
{
{
// public bool supportsMutableLibrary { get; set; }
bool L_0 = __this->get_U3CsupportsMutableLibraryU3Ek__BackingField_6();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Cinfo_get_supportsImageValidation_m417DC16FCA795DB24C8CAA2C81A5E84855D077BD_inline (Cinfo_tED92D7CBD16BE657927A6B7DB64A22DA21EB7D32 * __this, const RuntimeMethod* method)
{
{
// public bool supportsImageValidation { get; set; }
bool L_0 = __this->get_U3CsupportsImageValidationU3Ek__BackingField_7();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR XRTrackedObject_t247BBE67D4F9308544C4BAD807F321E0C404EC58 XRTrackedObject_get_defaultValue_m3AC573CBE63C302081874718C743040E3A8C3F89_inline (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XRTrackedObject_t247BBE67D4F9308544C4BAD807F321E0C404EC58_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
// public static XRTrackedObject defaultValue => s_Default;
IL2CPP_RUNTIME_CLASS_INIT(XRTrackedObject_t247BBE67D4F9308544C4BAD807F321E0C404EC58_il2cpp_TypeInfo_var);
XRTrackedObject_t247BBE67D4F9308544C4BAD807F321E0C404EC58 L_0 = ((XRTrackedObject_t247BBE67D4F9308544C4BAD807F321E0C404EC58_StaticFields*)il2cpp_codegen_static_fields_for(XRTrackedObject_t247BBE67D4F9308544C4BAD807F321E0C404EC58_il2cpp_TypeInfo_var))->get_s_Default_5();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XRObjectTrackingSubsystemDescriptor_set_capabilities_m0ACF0721272F505AC624521AF7FA03C87033D759_inline (XRObjectTrackingSubsystemDescriptor_t831B568A9BE175A6A79BB87E25DEFAC519A6C472 * __this, Capabilities_tC6F329DD5C73C6B9E04BE77A3AE0E52390BD8685 ___value0, const RuntimeMethod* method)
{
{
// public Capabilities capabilities { get; private set; }
Capabilities_tC6F329DD5C73C6B9E04BE77A3AE0E52390BD8685 L_0 = ___value0;
__this->set_U3CcapabilitiesU3Ek__BackingField_3(L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* XROcclusionSubsystemCinfo_get_id_m52AA71D202632FA1607B0FEF64946642B6C3608C_inline (XROcclusionSubsystemCinfo_tA29FDBA57EBA835927124FC18780DDD9CC4D84FD * __this, const RuntimeMethod* method)
{
{
// public string id { get; set; }
String_t* L_0 = __this->get_U3CidU3Ek__BackingField_0();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XROcclusionSubsystemCinfo_set_id_m19076B4B5E6D6AA32BE751C1F2611CB7C3C152A0_inline (XROcclusionSubsystemCinfo_tA29FDBA57EBA835927124FC18780DDD9CC4D84FD * __this, String_t* ___value0, const RuntimeMethod* method)
{
{
// public string id { get; set; }
String_t* L_0 = ___value0;
__this->set_U3CidU3Ek__BackingField_0(L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Type_t * XROcclusionSubsystemCinfo_get_providerType_m8D7C8F76AE3FAEEC4952D6FF75134CE4DADFFA22_inline (XROcclusionSubsystemCinfo_tA29FDBA57EBA835927124FC18780DDD9CC4D84FD * __this, const RuntimeMethod* method)
{
{
// public Type providerType { get; set; }
Type_t * L_0 = __this->get_U3CproviderTypeU3Ek__BackingField_1();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XROcclusionSubsystemCinfo_set_providerType_mA9E2685FC29652BBF41CD7398D8A434B72B68556_inline (XROcclusionSubsystemCinfo_tA29FDBA57EBA835927124FC18780DDD9CC4D84FD * __this, Type_t * ___value0, const RuntimeMethod* method)
{
{
// public Type providerType { get; set; }
Type_t * L_0 = ___value0;
__this->set_U3CproviderTypeU3Ek__BackingField_1(L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Type_t * XROcclusionSubsystemCinfo_get_subsystemTypeOverride_m60945479B5A62376EEA5633F4FF21D4BD137C125_inline (XROcclusionSubsystemCinfo_tA29FDBA57EBA835927124FC18780DDD9CC4D84FD * __this, const RuntimeMethod* method)
{
{
// public Type subsystemTypeOverride { get; set; }
Type_t * L_0 = __this->get_U3CsubsystemTypeOverrideU3Ek__BackingField_2();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XROcclusionSubsystemCinfo_set_subsystemTypeOverride_mC5D9DB3F2CDC007F826FC2AB790F1622DFBA0F63_inline (XROcclusionSubsystemCinfo_tA29FDBA57EBA835927124FC18780DDD9CC4D84FD * __this, Type_t * ___value0, const RuntimeMethod* method)
{
{
// public Type subsystemTypeOverride { get; set; }
Type_t * L_0 = ___value0;
__this->set_U3CsubsystemTypeOverrideU3Ek__BackingField_2(L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool XROcclusionSubsystemCinfo_get_supportsHumanSegmentationStencilImage_m3F2F9B49E2326FE8A773C655848F6497A5F8A797_inline (XROcclusionSubsystemCinfo_tA29FDBA57EBA835927124FC18780DDD9CC4D84FD * __this, const RuntimeMethod* method)
{
{
// public bool supportsHumanSegmentationStencilImage { get; set; }
bool L_0 = __this->get_U3CsupportsHumanSegmentationStencilImageU3Ek__BackingField_4();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XROcclusionSubsystemCinfo_set_supportsHumanSegmentationStencilImage_mEC6C58C95DF515008316ED9A33A37ABBFBFD88BD_inline (XROcclusionSubsystemCinfo_tA29FDBA57EBA835927124FC18780DDD9CC4D84FD * __this, bool ___value0, const RuntimeMethod* method)
{
{
// public bool supportsHumanSegmentationStencilImage { get; set; }
bool L_0 = ___value0;
__this->set_U3CsupportsHumanSegmentationStencilImageU3Ek__BackingField_4(L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool XROcclusionSubsystemCinfo_get_supportsHumanSegmentationDepthImage_mBFFC1F3611B38652EEFD21E2D7433B71F36A172D_inline (XROcclusionSubsystemCinfo_tA29FDBA57EBA835927124FC18780DDD9CC4D84FD * __this, const RuntimeMethod* method)
{
{
// public bool supportsHumanSegmentationDepthImage { get; set; }
bool L_0 = __this->get_U3CsupportsHumanSegmentationDepthImageU3Ek__BackingField_5();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XROcclusionSubsystemCinfo_set_supportsHumanSegmentationDepthImage_mF08FD3863AEB93D47CCF50BD197780D2AB6F0705_inline (XROcclusionSubsystemCinfo_tA29FDBA57EBA835927124FC18780DDD9CC4D84FD * __this, bool ___value0, const RuntimeMethod* method)
{
{
// public bool supportsHumanSegmentationDepthImage { get; set; }
bool L_0 = ___value0;
__this->set_U3CsupportsHumanSegmentationDepthImageU3Ek__BackingField_5(L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Func_1_t76FCDA5C58178ED310C472967481FDE5F47DCF0F * XROcclusionSubsystemCinfo_get_queryForSupportsEnvironmentDepthImage_m7E021A482EB4D3F52CA43ABEF71FD654304330AC_inline (XROcclusionSubsystemCinfo_tA29FDBA57EBA835927124FC18780DDD9CC4D84FD * __this, const RuntimeMethod* method)
{
{
// public Func<bool> queryForSupportsEnvironmentDepthImage { get; set; }
Func_1_t76FCDA5C58178ED310C472967481FDE5F47DCF0F * L_0 = __this->get_U3CqueryForSupportsEnvironmentDepthImageU3Ek__BackingField_6();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XROcclusionSubsystemCinfo_set_queryForSupportsEnvironmentDepthImage_m51449A6122E2D967180669F6C0425F5D1E038F7E_inline (XROcclusionSubsystemCinfo_tA29FDBA57EBA835927124FC18780DDD9CC4D84FD * __this, Func_1_t76FCDA5C58178ED310C472967481FDE5F47DCF0F * ___value0, const RuntimeMethod* method)
{
{
// public Func<bool> queryForSupportsEnvironmentDepthImage { get; set; }
Func_1_t76FCDA5C58178ED310C472967481FDE5F47DCF0F * L_0 = ___value0;
__this->set_U3CqueryForSupportsEnvironmentDepthImageU3Ek__BackingField_6(L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Func_1_t76FCDA5C58178ED310C472967481FDE5F47DCF0F * XROcclusionSubsystemCinfo_get_queryForSupportsEnvironmentDepthConfidenceImage_m3A9518505C78739C2476A7E64F6942D83C582DD5_inline (XROcclusionSubsystemCinfo_tA29FDBA57EBA835927124FC18780DDD9CC4D84FD * __this, const RuntimeMethod* method)
{
{
// public Func<bool> queryForSupportsEnvironmentDepthConfidenceImage { get; set; }
Func_1_t76FCDA5C58178ED310C472967481FDE5F47DCF0F * L_0 = __this->get_U3CqueryForSupportsEnvironmentDepthConfidenceImageU3Ek__BackingField_7();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XROcclusionSubsystemCinfo_set_queryForSupportsEnvironmentDepthConfidenceImage_m24C48D100ECEEC534C92273C21C18FBCCD98C740_inline (XROcclusionSubsystemCinfo_tA29FDBA57EBA835927124FC18780DDD9CC4D84FD * __this, Func_1_t76FCDA5C58178ED310C472967481FDE5F47DCF0F * ___value0, const RuntimeMethod* method)
{
{
// public Func<bool> queryForSupportsEnvironmentDepthConfidenceImage { get; set; }
Func_1_t76FCDA5C58178ED310C472967481FDE5F47DCF0F * L_0 = ___value0;
__this->set_U3CqueryForSupportsEnvironmentDepthConfidenceImageU3Ek__BackingField_7(L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XROcclusionSubsystemDescriptor_set_supportsHumanSegmentationStencilImage_m8D7F47CF55EE1F758A1CF9A53700B78FAAD3A9DE_inline (XROcclusionSubsystemDescriptor_tC9C8F2EFB7768358C203968CA71D353F0DD234FB * __this, bool ___value0, const RuntimeMethod* method)
{
{
// public bool supportsHumanSegmentationStencilImage { get; private set; }
bool L_0 = ___value0;
__this->set_U3CsupportsHumanSegmentationStencilImageU3Ek__BackingField_5(L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XROcclusionSubsystemDescriptor_set_supportsHumanSegmentationDepthImage_mD48BEC8C3460FA7B6BC492D70DF7E70C468DB38F_inline (XROcclusionSubsystemDescriptor_tC9C8F2EFB7768358C203968CA71D353F0DD234FB * __this, bool ___value0, const RuntimeMethod* method)
{
{
// public bool supportsHumanSegmentationDepthImage { get; private set; }
bool L_0 = ___value0;
__this->set_U3CsupportsHumanSegmentationDepthImageU3Ek__BackingField_6(L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B XRParticipant_get_trackableId_mFE20FF09B28F44F916FD7175C9D1B50658DB8D13_inline (XRParticipant_t8CFF46A2CDD860A7591AD0FC0EE563458C8FA13F * __this, const RuntimeMethod* method)
{
{
// public TrackableId trackableId => m_TrackableId;
TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B L_0 = __this->get_m_TrackableId_0();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A XRParticipant_get_pose_m8BC5243C4975CE29D2E98B803908FE7B0B2A1D1B_inline (XRParticipant_t8CFF46A2CDD860A7591AD0FC0EE563458C8FA13F * __this, const RuntimeMethod* method)
{
{
// public Pose pose => m_Pose;
Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A L_0 = __this->get_m_Pose_1();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t XRParticipant_get_trackingState_m0510505F8AE642CCCEBD2D784CB898CEDD59A08F_inline (XRParticipant_t8CFF46A2CDD860A7591AD0FC0EE563458C8FA13F * __this, const RuntimeMethod* method)
{
{
// public TrackingState trackingState => m_TrackingState;
int32_t L_0 = __this->get_m_TrackingState_2();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR intptr_t XRParticipant_get_nativePtr_mF4BBE0CC8C5CFA70984EAAD24CFF13E9BCFE0FE4_inline (XRParticipant_t8CFF46A2CDD860A7591AD0FC0EE563458C8FA13F * __this, const RuntimeMethod* method)
{
{
// public IntPtr nativePtr => m_NativePtr;
intptr_t L_0 = __this->get_m_NativePtr_3();
return (intptr_t)L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Guid_t XRParticipant_get_sessionId_m25D8BC6B31A8216FF6959B2C4792CCC7040A2300_inline (XRParticipant_t8CFF46A2CDD860A7591AD0FC0EE563458C8FA13F * __this, const RuntimeMethod* method)
{
{
// public Guid sessionId => m_SessionId;
Guid_t L_0 = __this->get_m_SessionId_4();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR XRParticipant_t8CFF46A2CDD860A7591AD0FC0EE563458C8FA13F XRParticipant_get_defaultParticipant_mD2641CE602FDDA1E32641A60101077BF5E10B49D_inline (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XRParticipant_t8CFF46A2CDD860A7591AD0FC0EE563458C8FA13F_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
// public static XRParticipant defaultParticipant => k_Default;
IL2CPP_RUNTIME_CLASS_INIT(XRParticipant_t8CFF46A2CDD860A7591AD0FC0EE563458C8FA13F_il2cpp_TypeInfo_var);
XRParticipant_t8CFF46A2CDD860A7591AD0FC0EE563458C8FA13F L_0 = ((XRParticipant_t8CFF46A2CDD860A7591AD0FC0EE563458C8FA13F_StaticFields*)il2cpp_codegen_static_fields_for(XRParticipant_t8CFF46A2CDD860A7591AD0FC0EE563458C8FA13F_il2cpp_TypeInfo_var))->get_k_Default_5();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XRParticipantSubsystemDescriptor_set_capabilities_m3CDF9EDC1BF57F513846DE87A9E4996ED543759A_inline (XRParticipantSubsystemDescriptor_t533EE70DC8D4B105B9C87B76D35A7D59A84BCA55 * __this, int32_t ___value0, const RuntimeMethod* method)
{
{
// public Capabilities capabilities { get; private set; }
int32_t L_0 = ___value0;
__this->set_U3CcapabilitiesU3Ek__BackingField_3(L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR BoundedPlane_t9001963C43ACDF4CDEA8BBF97CD783B7969B79C5 BoundedPlane_get_defaultValue_m0C1F8EA6D681C3333CF429425254F63E1BE99003_inline (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&BoundedPlane_t9001963C43ACDF4CDEA8BBF97CD783B7969B79C5_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
// public static BoundedPlane defaultValue => s_Default;
IL2CPP_RUNTIME_CLASS_INIT(BoundedPlane_t9001963C43ACDF4CDEA8BBF97CD783B7969B79C5_il2cpp_TypeInfo_var);
BoundedPlane_t9001963C43ACDF4CDEA8BBF97CD783B7969B79C5 L_0 = ((BoundedPlane_t9001963C43ACDF4CDEA8BBF97CD783B7969B79C5_StaticFields*)il2cpp_codegen_static_fields_for(BoundedPlane_t9001963C43ACDF4CDEA8BBF97CD783B7969B79C5_il2cpp_TypeInfo_var))->get_s_Default_0();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* Cinfo_get_id_m62022D2EE6912F0B1BDBCA687A4FC63321DE3F86_inline (Cinfo_tC49A76BF09DB3F926B17955E1B8D729DC9B272AD * __this, const RuntimeMethod* method)
{
{
// public string id { get; set; }
String_t* L_0 = __this->get_U3CidU3Ek__BackingField_0();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Type_t * Cinfo_get_providerType_m496CFFD5CAAF878266582DECEC5CDFB92A9C0A55_inline (Cinfo_tC49A76BF09DB3F926B17955E1B8D729DC9B272AD * __this, const RuntimeMethod* method)
{
{
// public Type providerType { get; set; }
Type_t * L_0 = __this->get_U3CproviderTypeU3Ek__BackingField_1();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Type_t * Cinfo_get_subsystemTypeOverride_m67ACD12818B5C91D42707639EA205E13BB15171A_inline (Cinfo_tC49A76BF09DB3F926B17955E1B8D729DC9B272AD * __this, const RuntimeMethod* method)
{
{
// public Type subsystemTypeOverride { get; set; }
Type_t * L_0 = __this->get_U3CsubsystemTypeOverrideU3Ek__BackingField_2();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Cinfo_get_supportsHorizontalPlaneDetection_mBC3012C667106D47D9429F9C8001774038A38216_inline (Cinfo_tC49A76BF09DB3F926B17955E1B8D729DC9B272AD * __this, const RuntimeMethod* method)
{
{
// public bool supportsHorizontalPlaneDetection { get; set; }
bool L_0 = __this->get_U3CsupportsHorizontalPlaneDetectionU3Ek__BackingField_4();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XRPlaneSubsystemDescriptor_set_supportsHorizontalPlaneDetection_m2BB45C7A44E14368A0FAEADA130A6F6158B1042D_inline (XRPlaneSubsystemDescriptor_t98B66B6D99804656DDDB45C9BDA61C2EE4EDB483 * __this, bool ___value0, const RuntimeMethod* method)
{
{
// public bool supportsHorizontalPlaneDetection { get; private set; }
bool L_0 = ___value0;
__this->set_U3CsupportsHorizontalPlaneDetectionU3Ek__BackingField_3(L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Cinfo_get_supportsVerticalPlaneDetection_m4E3BE200E11784D049B94A054F15E4C76D29D7C6_inline (Cinfo_tC49A76BF09DB3F926B17955E1B8D729DC9B272AD * __this, const RuntimeMethod* method)
{
{
// public bool supportsVerticalPlaneDetection { get; set; }
bool L_0 = __this->get_U3CsupportsVerticalPlaneDetectionU3Ek__BackingField_5();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XRPlaneSubsystemDescriptor_set_supportsVerticalPlaneDetection_m050259C60036A9B08459ED7BDFC06D24270927B2_inline (XRPlaneSubsystemDescriptor_t98B66B6D99804656DDDB45C9BDA61C2EE4EDB483 * __this, bool ___value0, const RuntimeMethod* method)
{
{
// public bool supportsVerticalPlaneDetection { get; private set; }
bool L_0 = ___value0;
__this->set_U3CsupportsVerticalPlaneDetectionU3Ek__BackingField_4(L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Cinfo_get_supportsArbitraryPlaneDetection_mF6CB379C9781FE8B8473949DA99196508EF91DB5_inline (Cinfo_tC49A76BF09DB3F926B17955E1B8D729DC9B272AD * __this, const RuntimeMethod* method)
{
{
// public bool supportsArbitraryPlaneDetection { get; set; }
bool L_0 = __this->get_U3CsupportsArbitraryPlaneDetectionU3Ek__BackingField_6();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XRPlaneSubsystemDescriptor_set_supportsArbitraryPlaneDetection_m2A4804EC8ED1137CB21F6589FBAE85CF01B1A5A0_inline (XRPlaneSubsystemDescriptor_t98B66B6D99804656DDDB45C9BDA61C2EE4EDB483 * __this, bool ___value0, const RuntimeMethod* method)
{
{
// public bool supportsArbitraryPlaneDetection { get; private set; }
bool L_0 = ___value0;
__this->set_U3CsupportsArbitraryPlaneDetectionU3Ek__BackingField_5(L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Cinfo_get_supportsBoundaryVertices_m5BA762B342FCF81EAE6E3645D3BAF04C1E8EAAD9_inline (Cinfo_tC49A76BF09DB3F926B17955E1B8D729DC9B272AD * __this, const RuntimeMethod* method)
{
{
// public bool supportsBoundaryVertices { get; set; }
bool L_0 = __this->get_U3CsupportsBoundaryVerticesU3Ek__BackingField_7();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XRPlaneSubsystemDescriptor_set_supportsBoundaryVertices_mDF9E00121A6509790D704D77FF0B863A99436747_inline (XRPlaneSubsystemDescriptor_t98B66B6D99804656DDDB45C9BDA61C2EE4EDB483 * __this, bool ___value0, const RuntimeMethod* method)
{
{
// public bool supportsBoundaryVertices { get; private set; }
bool L_0 = ___value0;
__this->set_U3CsupportsBoundaryVerticesU3Ek__BackingField_6(L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Cinfo_get_supportsClassification_m0396A2A62F840D9E283402BFB3681A5CC19C810E_inline (Cinfo_tC49A76BF09DB3F926B17955E1B8D729DC9B272AD * __this, const RuntimeMethod* method)
{
{
// public bool supportsClassification { get; set; }
bool L_0 = __this->get_U3CsupportsClassificationU3Ek__BackingField_8();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XRPlaneSubsystemDescriptor_set_supportsClassification_mA74FCEFD28F8CC7E1BB2E97E69DFA8E20BD0904A_inline (XRPlaneSubsystemDescriptor_t98B66B6D99804656DDDB45C9BDA61C2EE4EDB483 * __this, bool ___value0, const RuntimeMethod* method)
{
{
// public bool supportsClassification { get; private set; }
bool L_0 = ___value0;
__this->set_U3CsupportsClassificationU3Ek__BackingField_7(L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B XRPointCloud_get_trackableId_m45E06C0C6CD525985ED5FF3A0DC9D1F41A845889_inline (XRPointCloud_t08B41A05528E45CE709F8C14CA6C484D360A62F2 * __this, const RuntimeMethod* method)
{
{
// public TrackableId trackableId => m_TrackableId;
TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B L_0 = __this->get_m_TrackableId_1();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A XRPointCloud_get_pose_m4291F970BA7E4F2DE67BB6666D365FF510B8AC39_inline (XRPointCloud_t08B41A05528E45CE709F8C14CA6C484D360A62F2 * __this, const RuntimeMethod* method)
{
{
// public Pose pose => m_Pose;
Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A L_0 = __this->get_m_Pose_2();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t XRPointCloud_get_trackingState_mE90A4EE69C3F5EA084CB0BF1B3D128160C719242_inline (XRPointCloud_t08B41A05528E45CE709F8C14CA6C484D360A62F2 * __this, const RuntimeMethod* method)
{
{
// public TrackingState trackingState => m_TrackingState;
int32_t L_0 = __this->get_m_TrackingState_3();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR NativeArray_1_t2577BCA09CA248EFB78BD7FDA7F09D5C395DFF52 XRPointCloudData_get_positions_mD0152EB78841C8D8CB83101868169887235C6BD3_inline (XRPointCloudData_t3AFE7A70A93C061F8C3B3B7AEDE07EDF6A86B177 * __this, const RuntimeMethod* method)
{
{
// get => m_Positions;
NativeArray_1_t2577BCA09CA248EFB78BD7FDA7F09D5C395DFF52 L_0 = __this->get_m_Positions_0();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XRPointCloudData_set_positions_m5B37C4E8FCCE5AF8E16D83D4BAE520F45971CCD7_inline (XRPointCloudData_t3AFE7A70A93C061F8C3B3B7AEDE07EDF6A86B177 * __this, NativeArray_1_t2577BCA09CA248EFB78BD7FDA7F09D5C395DFF52 ___value0, const RuntimeMethod* method)
{
{
// set => m_Positions = value;
NativeArray_1_t2577BCA09CA248EFB78BD7FDA7F09D5C395DFF52 L_0 = ___value0;
__this->set_m_Positions_0(L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR NativeArray_1_t5F920DC5A531D604D161A0FAD3479B5BFE0D9232 XRPointCloudData_get_confidenceValues_mA510FDF9A0F8B21FEA6905400EA6F3A709F8DD82_inline (XRPointCloudData_t3AFE7A70A93C061F8C3B3B7AEDE07EDF6A86B177 * __this, const RuntimeMethod* method)
{
{
// get => m_ConfidenceValues;
NativeArray_1_t5F920DC5A531D604D161A0FAD3479B5BFE0D9232 L_0 = __this->get_m_ConfidenceValues_1();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR NativeArray_1_t9D118727A643E61710D0A4DF5B0C8CD1A918A40B XRPointCloudData_get_identifiers_mF1A688282A3DBD819C5F43EE4A1B44B6548787D3_inline (XRPointCloudData_t3AFE7A70A93C061F8C3B3B7AEDE07EDF6A86B177 * __this, const RuntimeMethod* method)
{
{
// get => m_Identifiers;
NativeArray_1_t9D118727A643E61710D0A4DF5B0C8CD1A918A40B L_0 = __this->get_m_Identifiers_2();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XRPointCloudData_set_identifiers_mBA475172386D8F500AE9F2D50D4B009FD8D26319_inline (XRPointCloudData_t3AFE7A70A93C061F8C3B3B7AEDE07EDF6A86B177 * __this, NativeArray_1_t9D118727A643E61710D0A4DF5B0C8CD1A918A40B ___value0, const RuntimeMethod* method)
{
{
// set => m_Identifiers = value;
NativeArray_1_t9D118727A643E61710D0A4DF5B0C8CD1A918A40B L_0 = ___value0;
__this->set_m_Identifiers_2(L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B XRRaycast_get_trackableId_m58733DD621FACDF9F32633AA0247FDDE4B6F4EBE_inline (XRRaycast_tA18F9107EFF1D692E70EF15233BB6134A5F66C55 * __this, const RuntimeMethod* method)
{
{
// public TrackableId trackableId => m_TrackableId;
TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B L_0 = __this->get_m_TrackableId_1();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A XRRaycast_get_pose_m62D623D6E37AE82B0E223804F034E604037E24E1_inline (XRRaycast_tA18F9107EFF1D692E70EF15233BB6134A5F66C55 * __this, const RuntimeMethod* method)
{
{
// public Pose pose => m_Pose;
Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A L_0 = __this->get_m_Pose_2();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t XRRaycast_get_trackingState_m8A926660A7D03F72E558198E760AE01936FB8DF0_inline (XRRaycast_tA18F9107EFF1D692E70EF15233BB6134A5F66C55 * __this, const RuntimeMethod* method)
{
{
// public TrackingState trackingState => m_TrackingState;
int32_t L_0 = __this->get_m_TrackingState_3();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR intptr_t XRRaycast_get_nativePtr_m079CE750F279F664A8D524ACA2D070056143389D_inline (XRRaycast_tA18F9107EFF1D692E70EF15233BB6134A5F66C55 * __this, const RuntimeMethod* method)
{
{
// public IntPtr nativePtr => m_NativePtr;
intptr_t L_0 = __this->get_m_NativePtr_4();
return (intptr_t)L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float XRRaycast_get_distance_m4D3B928473544B72D50CF70503B18DBC75951263_inline (XRRaycast_tA18F9107EFF1D692E70EF15233BB6134A5F66C55 * __this, const RuntimeMethod* method)
{
{
// public float distance => m_Distance;
float L_0 = __this->get_m_Distance_5();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B XRRaycast_get_hitTrackableId_mA4EE855CDEE8AC2D109FDE58A7EF4AED262CBFFE_inline (XRRaycast_tA18F9107EFF1D692E70EF15233BB6134A5F66C55 * __this, const RuntimeMethod* method)
{
{
// public TrackableId hitTrackableId => m_HitTrackableId;
TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B L_0 = __this->get_m_HitTrackableId_6();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B XRRaycastHit_get_trackableId_m39A90CBBE6D03C7C726715BEE8404A5411ACECBA_inline (XRRaycastHit_t94A3D13B245A9D0A7A7F2D0919DCAAC7C8DF8DDB * __this, const RuntimeMethod* method)
{
{
// get => m_TrackableId;
TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B L_0 = __this->get_m_TrackableId_1();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A XRRaycastHit_get_pose_m7374236222252D08D08C85145B88AF698FAA77F4_inline (XRRaycastHit_t94A3D13B245A9D0A7A7F2D0919DCAAC7C8DF8DDB * __this, const RuntimeMethod* method)
{
{
// get => m_Pose;
Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A L_0 = __this->get_m_Pose_2();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float XRRaycastHit_get_distance_m51570C654B1EED732C9EE7C73D51B13B9CF8262B_inline (XRRaycastHit_t94A3D13B245A9D0A7A7F2D0919DCAAC7C8DF8DDB * __this, const RuntimeMethod* method)
{
{
// get => m_Distance;
float L_0 = __this->get_m_Distance_3();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t XRRaycastHit_get_hitType_m14A0398215ED8B10A1E505427C7584100189C222_inline (XRRaycastHit_t94A3D13B245A9D0A7A7F2D0919DCAAC7C8DF8DDB * __this, const RuntimeMethod* method)
{
{
// get => m_HitType;
int32_t L_0 = __this->get_m_HitType_4();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR XRRaycast_tA18F9107EFF1D692E70EF15233BB6134A5F66C55 XRRaycast_get_defaultValue_mC4E3CDC7E9F4C17F3708B82DCDA95FFD395C2BE0_inline (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XRRaycast_tA18F9107EFF1D692E70EF15233BB6134A5F66C55_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
// public static XRRaycast defaultValue => s_Default;
IL2CPP_RUNTIME_CLASS_INIT(XRRaycast_tA18F9107EFF1D692E70EF15233BB6134A5F66C55_il2cpp_TypeInfo_var);
XRRaycast_tA18F9107EFF1D692E70EF15233BB6134A5F66C55 L_0 = ((XRRaycast_tA18F9107EFF1D692E70EF15233BB6134A5F66C55_StaticFields*)il2cpp_codegen_static_fields_for(XRRaycast_tA18F9107EFF1D692E70EF15233BB6134A5F66C55_il2cpp_TypeInfo_var))->get_s_Default_0();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR XRRaycastHit_t94A3D13B245A9D0A7A7F2D0919DCAAC7C8DF8DDB XRRaycastHit_get_defaultValue_m23C7AB55A53165C8E2F13CC8F1B70104C37B833A_inline (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XRRaycastHit_t94A3D13B245A9D0A7A7F2D0919DCAAC7C8DF8DDB_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
// public static XRRaycastHit defaultValue => s_Default;
IL2CPP_RUNTIME_CLASS_INIT(XRRaycastHit_t94A3D13B245A9D0A7A7F2D0919DCAAC7C8DF8DDB_il2cpp_TypeInfo_var);
XRRaycastHit_t94A3D13B245A9D0A7A7F2D0919DCAAC7C8DF8DDB L_0 = ((XRRaycastHit_t94A3D13B245A9D0A7A7F2D0919DCAAC7C8DF8DDB_StaticFields*)il2cpp_codegen_static_fields_for(XRRaycastHit_t94A3D13B245A9D0A7A7F2D0919DCAAC7C8DF8DDB_il2cpp_TypeInfo_var))->get_s_Default_0();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* Cinfo_get_id_m9A34BB7AAEFCB43E1627AA047A68C058D730EDC4_inline (Cinfo_tAC330BB49E2D0C7E18C66AB4018927A6EC856E01 * __this, const RuntimeMethod* method)
{
{
// public string id { get; set; }
String_t* L_0 = __this->get_U3CidU3Ek__BackingField_0();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Type_t * Cinfo_get_providerType_m6AFB0E29047AF8A34F780EBACFC0CDDA44AAF50C_inline (Cinfo_tAC330BB49E2D0C7E18C66AB4018927A6EC856E01 * __this, const RuntimeMethod* method)
{
{
// public Type providerType { get; set; }
Type_t * L_0 = __this->get_U3CproviderTypeU3Ek__BackingField_1();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Type_t * Cinfo_get_subsystemTypeOverride_mCFC851E4227172E1E01130E60CC64F4B2FFC8C63_inline (Cinfo_tAC330BB49E2D0C7E18C66AB4018927A6EC856E01 * __this, const RuntimeMethod* method)
{
{
// public Type subsystemTypeOverride { get; set; }
Type_t * L_0 = __this->get_U3CsubsystemTypeOverrideU3Ek__BackingField_2();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Cinfo_get_supportsViewportBasedRaycast_m76E31D4FF84E88050FE4E8B6C44FB6E4E71A5A3A_inline (Cinfo_tAC330BB49E2D0C7E18C66AB4018927A6EC856E01 * __this, const RuntimeMethod* method)
{
{
// public bool supportsViewportBasedRaycast { get; set; }
bool L_0 = __this->get_U3CsupportsViewportBasedRaycastU3Ek__BackingField_4();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XRRaycastSubsystemDescriptor_set_supportsViewportBasedRaycast_m573D624059387ECB8EAB5386DDA18F04A8B74A29_inline (XRRaycastSubsystemDescriptor_tB9891F63FC4871797BCD04DB7167142BE2049B2C * __this, bool ___value0, const RuntimeMethod* method)
{
{
// public bool supportsViewportBasedRaycast { get; private set; }
bool L_0 = ___value0;
__this->set_U3CsupportsViewportBasedRaycastU3Ek__BackingField_3(L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Cinfo_get_supportsWorldBasedRaycast_m5242363FA90D64968F4ED236EC35973B7ABC180A_inline (Cinfo_tAC330BB49E2D0C7E18C66AB4018927A6EC856E01 * __this, const RuntimeMethod* method)
{
{
// public bool supportsWorldBasedRaycast { get; set; }
bool L_0 = __this->get_U3CsupportsWorldBasedRaycastU3Ek__BackingField_5();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XRRaycastSubsystemDescriptor_set_supportsWorldBasedRaycast_mA63CC456D0FD28CD57DD2D0C3DEB3AC0DEA60C8B_inline (XRRaycastSubsystemDescriptor_tB9891F63FC4871797BCD04DB7167142BE2049B2C * __this, bool ___value0, const RuntimeMethod* method)
{
{
// public bool supportsWorldBasedRaycast { get; private set; }
bool L_0 = ___value0;
__this->set_U3CsupportsWorldBasedRaycastU3Ek__BackingField_4(L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t Cinfo_get_supportedTrackableTypes_m0DA573866D46012B650151C7538796542A3E2C70_inline (Cinfo_tAC330BB49E2D0C7E18C66AB4018927A6EC856E01 * __this, const RuntimeMethod* method)
{
{
// public TrackableType supportedTrackableTypes { get; set; }
int32_t L_0 = __this->get_U3CsupportedTrackableTypesU3Ek__BackingField_6();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XRRaycastSubsystemDescriptor_set_supportedTrackableTypes_mAFC6D42C7EFE47219C8461162392E994364BBD53_inline (XRRaycastSubsystemDescriptor_tB9891F63FC4871797BCD04DB7167142BE2049B2C * __this, int32_t ___value0, const RuntimeMethod* method)
{
{
// public TrackableType supportedTrackableTypes { get; private set; }
int32_t L_0 = ___value0;
__this->set_U3CsupportedTrackableTypesU3Ek__BackingField_5(L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Cinfo_get_supportsTrackedRaycasts_mB923DE37AE981FB26768CFF11B34A63F481A261A_inline (Cinfo_tAC330BB49E2D0C7E18C66AB4018927A6EC856E01 * __this, const RuntimeMethod* method)
{
{
// public bool supportsTrackedRaycasts { get; set; }
bool L_0 = __this->get_U3CsupportsTrackedRaycastsU3Ek__BackingField_7();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XRRaycastSubsystemDescriptor_set_supportsTrackedRaycasts_mD10EA0CD0E6F8FB9D499544B0DE27A5EBCED30C9_inline (XRRaycastSubsystemDescriptor_tB9891F63FC4871797BCD04DB7167142BE2049B2C * __this, bool ___value0, const RuntimeMethod* method)
{
{
// public bool supportsTrackedRaycasts { get; set; }
bool L_0 = ___value0;
__this->set_U3CsupportsTrackedRaycastsU3Ek__BackingField_6(L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Texture2D_t9B604D0D8E28032123641A7E7338FA872E2698BF * XRReferenceImage_get_texture_mA66A0D26E463C232CA008D5F44A23F9D0AA838B1_inline (XRReferenceImage_tB1803A72EB581FB35B2CA944973679132A1D4467 * __this, const RuntimeMethod* method)
{
{
// public Texture2D texture => m_Texture;
Texture2D_t9B604D0D8E28032123641A7E7338FA872E2698BF * L_0 = __this->get_m_Texture_5();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B XRReferencePoint_get_trackableId_mEE1B3349EA8F19E94BF8B76CBB644822317D2758_inline (XRReferencePoint_tF3ACF949B4AE1EC67F527F5D30DD8B912A814634 * __this, const RuntimeMethod* method)
{
{
// public TrackableId trackableId => m_Id;
TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B L_0 = __this->get_m_Id_1();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A XRReferencePoint_get_pose_mFDB2701C343707F0FA479C2C775B77BEC2092D61_inline (XRReferencePoint_tF3ACF949B4AE1EC67F527F5D30DD8B912A814634 * __this, const RuntimeMethod* method)
{
{
// public Pose pose => m_Pose;
Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A L_0 = __this->get_m_Pose_2();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t XRReferencePoint_get_trackingState_m9C6DD336B0E91F39FA04F298B0543148433F11B2_inline (XRReferencePoint_tF3ACF949B4AE1EC67F527F5D30DD8B912A814634 * __this, const RuntimeMethod* method)
{
{
// public TrackingState trackingState => m_TrackingState;
int32_t L_0 = __this->get_m_TrackingState_3();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR intptr_t XRReferencePoint_get_nativePtr_m80EFF4D6D345E7B7CC5687B506C410C84B09EFBA_inline (XRReferencePoint_tF3ACF949B4AE1EC67F527F5D30DD8B912A814634 * __this, const RuntimeMethod* method)
{
{
// public IntPtr nativePtr => m_NativePtr;
intptr_t L_0 = __this->get_m_NativePtr_4();
return (intptr_t)L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Guid_t XRReferencePoint_get_sessionId_mC498F0CAE614B4048B79742479252D923D4FED46_inline (XRReferencePoint_tF3ACF949B4AE1EC67F527F5D30DD8B912A814634 * __this, const RuntimeMethod* method)
{
{
// public Guid sessionId => m_SessionId;
Guid_t L_0 = __this->get_m_SessionId_5();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR XRReferencePoint_tF3ACF949B4AE1EC67F527F5D30DD8B912A814634 XRReferencePoint_get_defaultValue_m9AF89D3F11BF14D60BDC4FB2F360911F56E17013_inline (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XRReferencePoint_tF3ACF949B4AE1EC67F527F5D30DD8B912A814634_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
// public static XRReferencePoint defaultValue => s_Default;
IL2CPP_RUNTIME_CLASS_INIT(XRReferencePoint_tF3ACF949B4AE1EC67F527F5D30DD8B912A814634_il2cpp_TypeInfo_var);
XRReferencePoint_tF3ACF949B4AE1EC67F527F5D30DD8B912A814634 L_0 = ((XRReferencePoint_tF3ACF949B4AE1EC67F527F5D30DD8B912A814634_StaticFields*)il2cpp_codegen_static_fields_for(XRReferencePoint_tF3ACF949B4AE1EC67F527F5D30DD8B912A814634_il2cpp_TypeInfo_var))->get_s_Default_0();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool XRSessionSubsystemDescriptor_get_supportsInstall_mEBC6C00B6B07C4F0511E6CADEB7FD7F6099A27D3_inline (XRSessionSubsystemDescriptor_tC45A49D1179090D5C6D3B3DC1DC31CAB5A627B1C * __this, const RuntimeMethod* method)
{
{
// public bool supportsInstall { get; private set; }
bool L_0 = __this->get_U3CsupportsInstallU3Ek__BackingField_3();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XRSessionSubsystem_set_currentConfiguration_m676D72EA2E4E14328D3ADDF29C98D5397DE4A646_inline (XRSessionSubsystem_t8AD3C01568AA19BF038D23A6031FF9814CAF93CD * __this, Nullable_1_t0FF36C2ABCA6430FFCD4ED32922F18F36382E494 ___value0, const RuntimeMethod* method)
{
{
// public Configuration? currentConfiguration { get; private set; }
Nullable_1_t0FF36C2ABCA6430FFCD4ED32922F18F36382E494 L_0 = ___value0;
__this->set_U3CcurrentConfigurationU3Ek__BackingField_4(L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Nullable_1_t0FF36C2ABCA6430FFCD4ED32922F18F36382E494 XRSessionSubsystem_get_currentConfiguration_m7B3DC4591DB239331BDEA94C32CA927E78C991CC_inline (XRSessionSubsystem_t8AD3C01568AA19BF038D23A6031FF9814CAF93CD * __this, const RuntimeMethod* method)
{
{
// public Configuration? currentConfiguration { get; private set; }
Nullable_1_t0FF36C2ABCA6430FFCD4ED32922F18F36382E494 L_0 = __this->get_U3CcurrentConfigurationU3Ek__BackingField_4();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* Cinfo_get_id_mA521F604882D1F4C6FD30262F3E2C3B0609BFC55_inline (Cinfo_t2842A97DA95F40ECADDCA24A291B6114A3A5F71A * __this, const RuntimeMethod* method)
{
{
// public string id { get; set; }
String_t* L_0 = __this->get_U3CidU3Ek__BackingField_2();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Type_t * Cinfo_get_providerType_mC64DDA0FD5E23FD53F7B9DAEAF4433487436835E_inline (Cinfo_t2842A97DA95F40ECADDCA24A291B6114A3A5F71A * __this, const RuntimeMethod* method)
{
{
// public Type providerType { get; set; }
Type_t * L_0 = __this->get_U3CproviderTypeU3Ek__BackingField_3();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Type_t * Cinfo_get_subsystemTypeOverride_mFB0EAD46EF91216924D0509C72DF82ADA526B99D_inline (Cinfo_t2842A97DA95F40ECADDCA24A291B6114A3A5F71A * __this, const RuntimeMethod* method)
{
{
// public Type subsystemTypeOverride { get; set; }
Type_t * L_0 = __this->get_U3CsubsystemTypeOverrideU3Ek__BackingField_4();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Cinfo_get_supportsInstall_m706A828C9AE61FF74DF4640D80E52148CDF4F3AD_inline (Cinfo_t2842A97DA95F40ECADDCA24A291B6114A3A5F71A * __this, const RuntimeMethod* method)
{
{
// public bool supportsInstall { get; set; }
bool L_0 = __this->get_U3CsupportsInstallU3Ek__BackingField_0();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XRSessionSubsystemDescriptor_set_supportsInstall_mE8D2939BADC8A5579685249EEA3C12617416CEF2_inline (XRSessionSubsystemDescriptor_tC45A49D1179090D5C6D3B3DC1DC31CAB5A627B1C * __this, bool ___value0, const RuntimeMethod* method)
{
{
// public bool supportsInstall { get; private set; }
bool L_0 = ___value0;
__this->set_U3CsupportsInstallU3Ek__BackingField_3(L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Cinfo_get_supportsMatchFrameRate_m1E603F47BF0A28EE5E7377A28D9D2BB29BFD3B6F_inline (Cinfo_t2842A97DA95F40ECADDCA24A291B6114A3A5F71A * __this, const RuntimeMethod* method)
{
{
// public bool supportsMatchFrameRate { get; set; }
bool L_0 = __this->get_U3CsupportsMatchFrameRateU3Ek__BackingField_1();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XRSessionSubsystemDescriptor_set_supportsMatchFrameRate_m9FB2B904E2E7E4EC51E2089C8DDE97463F4C031D_inline (XRSessionSubsystemDescriptor_tC45A49D1179090D5C6D3B3DC1DC31CAB5A627B1C * __this, bool ___value0, const RuntimeMethod* method)
{
{
// public bool supportsMatchFrameRate { get; private set; }
bool L_0 = ___value0;
__this->set_U3CsupportsMatchFrameRateU3Ek__BackingField_4(L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t XRSessionUpdateParams_get_screenOrientation_m3200C056D5EF350333CBEC08C5BADCB3F9B3588A_inline (XRSessionUpdateParams_t106E075C3B348969D6F3B634195F295CE47DB77F * __this, const RuntimeMethod* method)
{
{
// public ScreenOrientation screenOrientation { get; set; }
int32_t L_0 = __this->get_U3CscreenOrientationU3Ek__BackingField_0();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XRSessionUpdateParams_set_screenOrientation_m958168FC8048AE33DC4757F9A1184520B15FD341_inline (XRSessionUpdateParams_t106E075C3B348969D6F3B634195F295CE47DB77F * __this, int32_t ___value0, const RuntimeMethod* method)
{
{
// public ScreenOrientation screenOrientation { get; set; }
int32_t L_0 = ___value0;
__this->set_U3CscreenOrientationU3Ek__BackingField_0(L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9 XRSessionUpdateParams_get_screenDimensions_m68257DCBBAEB4090559AC18A180C8E54D02F5118_inline (XRSessionUpdateParams_t106E075C3B348969D6F3B634195F295CE47DB77F * __this, const RuntimeMethod* method)
{
{
// public Vector2Int screenDimensions { get; set; }
Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9 L_0 = __this->get_U3CscreenDimensionsU3Ek__BackingField_1();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XRSessionUpdateParams_set_screenDimensions_m3658D658C653B6ED72DB68F099A4512FE756D8F6_inline (XRSessionUpdateParams_t106E075C3B348969D6F3B634195F295CE47DB77F * __this, Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9 ___value0, const RuntimeMethod* method)
{
{
// public Vector2Int screenDimensions { get; set; }
Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9 L_0 = ___value0;
__this->set_U3CscreenDimensionsU3Ek__BackingField_1(L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR intptr_t XRTextureDescriptor_get_nativeTexture_mC7D28CAE1A948B378FF5966C85883508435C2B1A_inline (XRTextureDescriptor_t9CA857DCCC1208B74376787BE4F3008A01B29A57 * __this, const RuntimeMethod* method)
{
{
// get { return m_NativeTexture; }
intptr_t L_0 = __this->get_m_NativeTexture_0();
return (intptr_t)L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t XRTextureDescriptor_get_width_m16F58793E411A03BDB01C19D0BCDBA8DC52455DC_inline (XRTextureDescriptor_t9CA857DCCC1208B74376787BE4F3008A01B29A57 * __this, const RuntimeMethod* method)
{
{
// get { return m_Width; }
int32_t L_0 = __this->get_m_Width_1();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t XRTextureDescriptor_get_height_mF20F82E1D3B8739A79F017147847B051FD33E554_inline (XRTextureDescriptor_t9CA857DCCC1208B74376787BE4F3008A01B29A57 * __this, const RuntimeMethod* method)
{
{
// get { return m_Height; }
int32_t L_0 = __this->get_m_Height_2();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t XRTextureDescriptor_get_mipmapCount_mE8FD55B645419BA7DA6959B000B8218BE142B302_inline (XRTextureDescriptor_t9CA857DCCC1208B74376787BE4F3008A01B29A57 * __this, const RuntimeMethod* method)
{
{
// get { return m_MipmapCount; }
int32_t L_0 = __this->get_m_MipmapCount_3();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t XRTextureDescriptor_get_format_mB5A486F3100EB333CF52F505ACB63E68C7CB511D_inline (XRTextureDescriptor_t9CA857DCCC1208B74376787BE4F3008A01B29A57 * __this, const RuntimeMethod* method)
{
{
// get { return m_Format; }
int32_t L_0 = __this->get_m_Format_4();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t XRTextureDescriptor_get_propertyNameId_mF90DF67F19E16118CB3D31EB44E643F4C48DE7C8_inline (XRTextureDescriptor_t9CA857DCCC1208B74376787BE4F3008A01B29A57 * __this, const RuntimeMethod* method)
{
{
// get { return m_PropertyNameId; }
int32_t L_0 = __this->get_m_PropertyNameId_5();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t XRTextureDescriptor_get_depth_m27FA31D85456F65E706B03743250CB3858EBE0E3_inline (XRTextureDescriptor_t9CA857DCCC1208B74376787BE4F3008A01B29A57 * __this, const RuntimeMethod* method)
{
{
// get => m_Depth;
int32_t L_0 = __this->get_m_Depth_6();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t XRTextureDescriptor_get_dimension_mAB82596EFC83FBC3477D496E77FD9B0579922CCC_inline (XRTextureDescriptor_t9CA857DCCC1208B74376787BE4F3008A01B29A57 * __this, const RuntimeMethod* method)
{
{
// get => m_Dimension;
int32_t L_0 = __this->get_m_Dimension_7();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B XRTrackedImage_get_trackableId_m908642D8D46876C10767B693C55A4076AA0230D6_inline (XRTrackedImage_t92B53E0621C6D2E930761110E719F0E9580A722F * __this, const RuntimeMethod* method)
{
{
// public TrackableId trackableId => m_Id;
TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B L_0 = __this->get_m_Id_1();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Guid_t XRTrackedImage_get_sourceImageId_m7840008F6FBB7242723DBA7ADB29411BF199B063_inline (XRTrackedImage_t92B53E0621C6D2E930761110E719F0E9580A722F * __this, const RuntimeMethod* method)
{
{
// public Guid sourceImageId => m_SourceImageId;
Guid_t L_0 = __this->get_m_SourceImageId_2();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A XRTrackedImage_get_pose_m2DA4B57E9B5317F353B2766538088CFF8991DAB1_inline (XRTrackedImage_t92B53E0621C6D2E930761110E719F0E9580A722F * __this, const RuntimeMethod* method)
{
{
// public Pose pose => m_Pose;
Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A L_0 = __this->get_m_Pose_3();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 XRTrackedImage_get_size_mBDB5B8715E7C74B9459198230517668BD215E75F_inline (XRTrackedImage_t92B53E0621C6D2E930761110E719F0E9580A722F * __this, const RuntimeMethod* method)
{
{
// public Vector2 size => m_Size;
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 L_0 = __this->get_m_Size_4();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t XRTrackedImage_get_trackingState_m7ADAE68E0B5A3D253B1E086276EE5BC5D9768E71_inline (XRTrackedImage_t92B53E0621C6D2E930761110E719F0E9580A722F * __this, const RuntimeMethod* method)
{
{
// public TrackingState trackingState => m_TrackingState;
int32_t L_0 = __this->get_m_TrackingState_5();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR intptr_t XRTrackedImage_get_nativePtr_mF92D042188F2FF5DADA33AB61235DC6CD874B202_inline (XRTrackedImage_t92B53E0621C6D2E930761110E719F0E9580A722F * __this, const RuntimeMethod* method)
{
{
// public IntPtr nativePtr => m_NativePtr;
intptr_t L_0 = __this->get_m_NativePtr_6();
return (intptr_t)L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B XRTrackedObject_get_trackableId_mB62A1367121F404E7E641459F7A2DE4A35801E72_inline (XRTrackedObject_t247BBE67D4F9308544C4BAD807F321E0C404EC58 * __this, const RuntimeMethod* method)
{
{
// public TrackableId trackableId => m_TrackableId;
TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B L_0 = __this->get_m_TrackableId_0();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A XRTrackedObject_get_pose_mCF3749FD97A427BF58737E1F72C958B688BF4B14_inline (XRTrackedObject_t247BBE67D4F9308544C4BAD807F321E0C404EC58 * __this, const RuntimeMethod* method)
{
{
// public Pose pose => m_Pose;
Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A L_0 = __this->get_m_Pose_1();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t XRTrackedObject_get_trackingState_m33C9F81469B2E6174337D76F6109B79B03975349_inline (XRTrackedObject_t247BBE67D4F9308544C4BAD807F321E0C404EC58 * __this, const RuntimeMethod* method)
{
{
// public TrackingState trackingState => m_TrackingState;
int32_t L_0 = __this->get_m_TrackingState_2();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR intptr_t XRTrackedObject_get_nativePtr_m13B4B110BB339AF7AF03B1219247112B4ABB38D8_inline (XRTrackedObject_t247BBE67D4F9308544C4BAD807F321E0C404EC58 * __this, const RuntimeMethod* method)
{
{
// public IntPtr nativePtr => m_NativePtr;
intptr_t L_0 = __this->get_m_NativePtr_3();
return (intptr_t)L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Guid_t XRTrackedObject_get_referenceObjectGuid_m277B42932D6C8D42820F47A888407FBE9B0A7436_inline (XRTrackedObject_t247BBE67D4F9308544C4BAD807F321E0C404EC58 * __this, const RuntimeMethod* method)
{
{
// public Guid referenceObjectGuid => m_ReferenceObjectGuid;
Guid_t L_0 = __this->get_m_ReferenceObjectGuid_4();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Cinfo_set_id_mCB169DF169C36D9D12651785DCBF71ABCC10FD9D_inline (Cinfo_tF42131D7F2B721976AAF20DD0240D9C46397F7F7 * __this, String_t* ___value0, const RuntimeMethod* method)
{
{
// public string id { get; set; }
String_t* L_0 = ___value0;
__this->set_U3CidU3Ek__BackingField_0(L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Cinfo_set_providerType_m9E012FF4CD325826F838F663BAEE045C452A3C26_inline (Cinfo_tF42131D7F2B721976AAF20DD0240D9C46397F7F7 * __this, Type_t * ___value0, const RuntimeMethod* method)
{
{
// public Type providerType { get; set; }
Type_t * L_0 = ___value0;
__this->set_U3CproviderTypeU3Ek__BackingField_1(L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Cinfo_set_subsystemTypeOverride_mC525A48B08F8F826275950FFB61C780C4AEA6A6B_inline (Cinfo_tF42131D7F2B721976AAF20DD0240D9C46397F7F7 * __this, Type_t * ___value0, const RuntimeMethod* method)
{
{
// public Type subsystemTypeOverride { get; set; }
Type_t * L_0 = ___value0;
__this->set_U3CsubsystemTypeOverrideU3Ek__BackingField_2(L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Cinfo_set_supportsTrackableAttachments_m0B0516A50FFA22C3F60483E3498DC6BB1D460995_inline (Cinfo_tF42131D7F2B721976AAF20DD0240D9C46397F7F7 * __this, bool ___value0, const RuntimeMethod* method)
{
{
// public bool supportsTrackableAttachments { get; set; }
bool L_0 = ___value0;
__this->set_U3CsupportsTrackableAttachmentsU3Ek__BackingField_4(L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RectInt_tE7B8105A280C1AC73A4157ED41F9B86C9BD91E49 ConversionParams_get_inputRect_mE75F22AF739DFB5506127DF164E0AEF851702756_inline (ConversionParams_t3DDB9752BA823641A302D0783C14048D9B09B74A * __this, const RuntimeMethod* method)
{
{
// get => m_InputRect;
RectInt_tE7B8105A280C1AC73A4157ED41F9B86C9BD91E49 L_0 = __this->get_m_InputRect_0();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9 ConversionParams_get_outputDimensions_m83C9D960C805CA2748AA9AAAC2A2986A397B7033_inline (ConversionParams_t3DDB9752BA823641A302D0783C14048D9B09B74A * __this, const RuntimeMethod* method)
{
{
// get => m_OutputDimensions;
Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9 L_0 = __this->get_m_OutputDimensions_1();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t ConversionParams_get_outputFormat_m727E479981BF00635D645C88D4D987EB598A0E5F_inline (ConversionParams_t3DDB9752BA823641A302D0783C14048D9B09B74A * __this, const RuntimeMethod* method)
{
{
// get => m_Format;
int32_t L_0 = __this->get_m_Format_2();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t ConversionParams_get_transformation_mFB57F05831CF417808A6C41F170768D9F66A7EF3_inline (ConversionParams_t3DDB9752BA823641A302D0783C14048D9B09B74A * __this, const RuntimeMethod* method)
{
{
// get => m_Transformation;
int32_t L_0 = __this->get_m_Transformation_3();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t Plane_get_rowStride_mE6385B9F7D9D040FC613D16D859435F492CB213A_inline (Plane_tF421A9F250A5E61AFEE38069538AC8ECB9D3E22D * __this, const RuntimeMethod* method)
{
{
// public int rowStride { get; internal set; }
int32_t L_0 = __this->get_U3CrowStrideU3Ek__BackingField_0();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t Plane_get_pixelStride_m33EEE46027B124683ABAF3BC627812F963F29665_inline (Plane_tF421A9F250A5E61AFEE38069538AC8ECB9D3E22D * __this, const RuntimeMethod* method)
{
{
// public int pixelStride { get; internal set; }
int32_t L_0 = __this->get_U3CpixelStrideU3Ek__BackingField_1();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR NativeArray_1_t3C2855C5B238E8C6739D4C17833F244B95C0F785 Plane_get_data_mBA1EB2437E816B19D7A68440AE188F4E8543E108_inline (Plane_tF421A9F250A5E61AFEE38069538AC8ECB9D3E22D * __this, const RuntimeMethod* method)
{
{
// public NativeArray<byte> data { get; internal set; }
NativeArray_1_t3C2855C5B238E8C6739D4C17833F244B95C0F785 L_0 = __this->get_U3CdataU3Ek__BackingField_2();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Cinfo_set_providerType_m79B371C14F188233806BAB677302143650CD9A29_inline (Cinfo_t37F91E88FCD8623834BE1898FC146620538C08B1 * __this, Type_t * ___value0, const RuntimeMethod* method)
{
{
// public Type providerType { get; set; }
Type_t * L_0 = ___value0;
__this->set_U3CproviderTypeU3Ek__BackingField_1(L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Cinfo_set_subsystemTypeOverride_mEF323B6CBB63FB7E5ECB4A6849F06C57BFDF8120_inline (Cinfo_t37F91E88FCD8623834BE1898FC146620538C08B1 * __this, Type_t * ___value0, const RuntimeMethod* method)
{
{
// public Type subsystemTypeOverride { get; set; }
Type_t * L_0 = ___value0;
__this->set_U3CsubsystemTypeOverrideU3Ek__BackingField_2(L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t Cinfo_get_capabilities_m09C807B048E192438A9B0D0C17808FF5BFF81A8A_inline (Cinfo_t37F91E88FCD8623834BE1898FC146620538C08B1 * __this, const RuntimeMethod* method)
{
{
// Capabilities capabilities { get; set; }
int32_t L_0 = __this->get_U3CcapabilitiesU3Ek__BackingField_4();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Cinfo_set_capabilities_mB2A17E458179A44C2EACB82699FBC5B5611C7580_inline (Cinfo_t37F91E88FCD8623834BE1898FC146620538C08B1 * __this, int32_t ___value0, const RuntimeMethod* method)
{
{
// Capabilities capabilities { get; set; }
int32_t L_0 = ___value0;
__this->set_U3CcapabilitiesU3Ek__BackingField_4(L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Cinfo_set_id_m57970CF355AB638BAD860B9673F0E76B42126C1A_inline (Cinfo_tED92D7CBD16BE657927A6B7DB64A22DA21EB7D32 * __this, String_t* ___value0, const RuntimeMethod* method)
{
{
// public string id { get; set; }
String_t* L_0 = ___value0;
__this->set_U3CidU3Ek__BackingField_0(L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Cinfo_set_providerType_mCACA6EC48AB4B305E1515A312B32DC196AD9B92C_inline (Cinfo_tED92D7CBD16BE657927A6B7DB64A22DA21EB7D32 * __this, Type_t * ___value0, const RuntimeMethod* method)
{
{
// public Type providerType { get; set; }
Type_t * L_0 = ___value0;
__this->set_U3CproviderTypeU3Ek__BackingField_1(L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Cinfo_set_subsystemTypeOverride_m167DE9461D1FE4E4D8AB0EE25A7A4B0A947151D8_inline (Cinfo_tED92D7CBD16BE657927A6B7DB64A22DA21EB7D32 * __this, Type_t * ___value0, const RuntimeMethod* method)
{
{
// public Type subsystemTypeOverride { get; set; }
Type_t * L_0 = ___value0;
__this->set_U3CsubsystemTypeOverrideU3Ek__BackingField_2(L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Cinfo_set_supportsMovingImages_m04BB57385FC0A2025414437DB1BEFBE97372E579_inline (Cinfo_tED92D7CBD16BE657927A6B7DB64A22DA21EB7D32 * __this, bool ___value0, const RuntimeMethod* method)
{
{
// public bool supportsMovingImages { get; set; }
bool L_0 = ___value0;
__this->set_U3CsupportsMovingImagesU3Ek__BackingField_4(L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Cinfo_set_requiresPhysicalImageDimensions_mC794914720C62ACB74173F165B3015ED9B5CA2A6_inline (Cinfo_tED92D7CBD16BE657927A6B7DB64A22DA21EB7D32 * __this, bool ___value0, const RuntimeMethod* method)
{
{
// public bool requiresPhysicalImageDimensions { get; set; }
bool L_0 = ___value0;
__this->set_U3CrequiresPhysicalImageDimensionsU3Ek__BackingField_5(L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Cinfo_set_supportsMutableLibrary_m434D9A05D0025989AA711BA50139FD348D127661_inline (Cinfo_tED92D7CBD16BE657927A6B7DB64A22DA21EB7D32 * __this, bool ___value0, const RuntimeMethod* method)
{
{
// public bool supportsMutableLibrary { get; set; }
bool L_0 = ___value0;
__this->set_U3CsupportsMutableLibraryU3Ek__BackingField_6(L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Cinfo_set_supportsImageValidation_m9CA1173736665E4DC3B594EE3357416A8A20B266_inline (Cinfo_tED92D7CBD16BE657927A6B7DB64A22DA21EB7D32 * __this, bool ___value0, const RuntimeMethod* method)
{
{
// public bool supportsImageValidation { get; set; }
bool L_0 = ___value0;
__this->set_U3CsupportsImageValidationU3Ek__BackingField_7(L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Cinfo_set_id_m940361693A3C925B2180733D87611B5FDF0357D7_inline (Cinfo_tC49A76BF09DB3F926B17955E1B8D729DC9B272AD * __this, String_t* ___value0, const RuntimeMethod* method)
{
{
// public string id { get; set; }
String_t* L_0 = ___value0;
__this->set_U3CidU3Ek__BackingField_0(L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Cinfo_set_providerType_m8B6A7EE025CCB9B5B5E26E6F4C779DFE09955744_inline (Cinfo_tC49A76BF09DB3F926B17955E1B8D729DC9B272AD * __this, Type_t * ___value0, const RuntimeMethod* method)
{
{
// public Type providerType { get; set; }
Type_t * L_0 = ___value0;
__this->set_U3CproviderTypeU3Ek__BackingField_1(L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Cinfo_set_subsystemTypeOverride_mBC4F1CC20B4DF3D551BAFC1C38245F457E262A58_inline (Cinfo_tC49A76BF09DB3F926B17955E1B8D729DC9B272AD * __this, Type_t * ___value0, const RuntimeMethod* method)
{
{
// public Type subsystemTypeOverride { get; set; }
Type_t * L_0 = ___value0;
__this->set_U3CsubsystemTypeOverrideU3Ek__BackingField_2(L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Cinfo_set_supportsHorizontalPlaneDetection_mBC9B4572592B71328A96AF58DEB047528470C440_inline (Cinfo_tC49A76BF09DB3F926B17955E1B8D729DC9B272AD * __this, bool ___value0, const RuntimeMethod* method)
{
{
// public bool supportsHorizontalPlaneDetection { get; set; }
bool L_0 = ___value0;
__this->set_U3CsupportsHorizontalPlaneDetectionU3Ek__BackingField_4(L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Cinfo_set_supportsVerticalPlaneDetection_mFF310EF7B9F8D9C9F9689CF9D1D2BEDDFF93F9F0_inline (Cinfo_tC49A76BF09DB3F926B17955E1B8D729DC9B272AD * __this, bool ___value0, const RuntimeMethod* method)
{
{
// public bool supportsVerticalPlaneDetection { get; set; }
bool L_0 = ___value0;
__this->set_U3CsupportsVerticalPlaneDetectionU3Ek__BackingField_5(L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Cinfo_set_supportsArbitraryPlaneDetection_m70B1D6D27946FB12BF0D3D3AF8C6DC8DC3F399B9_inline (Cinfo_tC49A76BF09DB3F926B17955E1B8D729DC9B272AD * __this, bool ___value0, const RuntimeMethod* method)
{
{
// public bool supportsArbitraryPlaneDetection { get; set; }
bool L_0 = ___value0;
__this->set_U3CsupportsArbitraryPlaneDetectionU3Ek__BackingField_6(L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Cinfo_set_supportsBoundaryVertices_mC6F86EB28D38CC483AD8F9FD161013BDE3F4AFEF_inline (Cinfo_tC49A76BF09DB3F926B17955E1B8D729DC9B272AD * __this, bool ___value0, const RuntimeMethod* method)
{
{
// public bool supportsBoundaryVertices { get; set; }
bool L_0 = ___value0;
__this->set_U3CsupportsBoundaryVerticesU3Ek__BackingField_7(L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Cinfo_set_supportsClassification_mA3B11D7CA4F960C89E729E5161AD7CC3211B933C_inline (Cinfo_tC49A76BF09DB3F926B17955E1B8D729DC9B272AD * __this, bool ___value0, const RuntimeMethod* method)
{
{
// public bool supportsClassification { get; set; }
bool L_0 = ___value0;
__this->set_U3CsupportsClassificationU3Ek__BackingField_8(L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Cinfo_set_id_m0CB4DA3E552ED7940FBA88D8EE3BB6379EA255D6_inline (Cinfo_tAC330BB49E2D0C7E18C66AB4018927A6EC856E01 * __this, String_t* ___value0, const RuntimeMethod* method)
{
{
// public string id { get; set; }
String_t* L_0 = ___value0;
__this->set_U3CidU3Ek__BackingField_0(L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Cinfo_set_providerType_m20992869A706183D7180A2030C84B5445DCF0BE3_inline (Cinfo_tAC330BB49E2D0C7E18C66AB4018927A6EC856E01 * __this, Type_t * ___value0, const RuntimeMethod* method)
{
{
// public Type providerType { get; set; }
Type_t * L_0 = ___value0;
__this->set_U3CproviderTypeU3Ek__BackingField_1(L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Cinfo_set_subsystemTypeOverride_mD5425E55455A21B7361B847FD6B78998AC70CD5B_inline (Cinfo_tAC330BB49E2D0C7E18C66AB4018927A6EC856E01 * __this, Type_t * ___value0, const RuntimeMethod* method)
{
{
// public Type subsystemTypeOverride { get; set; }
Type_t * L_0 = ___value0;
__this->set_U3CsubsystemTypeOverrideU3Ek__BackingField_2(L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Cinfo_set_supportsViewportBasedRaycast_mCF77DEFDDC3931682A33A063DF2F25FFBF07B807_inline (Cinfo_tAC330BB49E2D0C7E18C66AB4018927A6EC856E01 * __this, bool ___value0, const RuntimeMethod* method)
{
{
// public bool supportsViewportBasedRaycast { get; set; }
bool L_0 = ___value0;
__this->set_U3CsupportsViewportBasedRaycastU3Ek__BackingField_4(L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Cinfo_set_supportsWorldBasedRaycast_m74BF70E612BCAFAD380C108700905E5B8C5425FA_inline (Cinfo_tAC330BB49E2D0C7E18C66AB4018927A6EC856E01 * __this, bool ___value0, const RuntimeMethod* method)
{
{
// public bool supportsWorldBasedRaycast { get; set; }
bool L_0 = ___value0;
__this->set_U3CsupportsWorldBasedRaycastU3Ek__BackingField_5(L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Cinfo_set_supportedTrackableTypes_mABC320F641164FC1DB2AB9DB3F1E075B6235A785_inline (Cinfo_tAC330BB49E2D0C7E18C66AB4018927A6EC856E01 * __this, int32_t ___value0, const RuntimeMethod* method)
{
{
// public TrackableType supportedTrackableTypes { get; set; }
int32_t L_0 = ___value0;
__this->set_U3CsupportedTrackableTypesU3Ek__BackingField_6(L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Cinfo_set_supportsTrackedRaycasts_mD7575B5CAA4BB3652786E2AE2C1B94CF8BEB423C_inline (Cinfo_tAC330BB49E2D0C7E18C66AB4018927A6EC856E01 * __this, bool ___value0, const RuntimeMethod* method)
{
{
// public bool supportsTrackedRaycasts { get; set; }
bool L_0 = ___value0;
__this->set_U3CsupportsTrackedRaycastsU3Ek__BackingField_7(L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Cinfo_set_supportsInstall_m05EE61C58E505A8F20DEA68862395341F1DAD3FD_inline (Cinfo_t2842A97DA95F40ECADDCA24A291B6114A3A5F71A * __this, bool ___value0, const RuntimeMethod* method)
{
{
// public bool supportsInstall { get; set; }
bool L_0 = ___value0;
__this->set_U3CsupportsInstallU3Ek__BackingField_0(L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Cinfo_set_supportsMatchFrameRate_m9CB328CEF43BCE3E59F26A97D32AEE1D201F8787_inline (Cinfo_t2842A97DA95F40ECADDCA24A291B6114A3A5F71A * __this, bool ___value0, const RuntimeMethod* method)
{
{
// public bool supportsMatchFrameRate { get; set; }
bool L_0 = ___value0;
__this->set_U3CsupportsMatchFrameRateU3Ek__BackingField_1(L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Cinfo_set_id_m6A2CAB13FAD54AB05458DC5DE1FAB5C651E9D656_inline (Cinfo_t2842A97DA95F40ECADDCA24A291B6114A3A5F71A * __this, String_t* ___value0, const RuntimeMethod* method)
{
{
// public string id { get; set; }
String_t* L_0 = ___value0;
__this->set_U3CidU3Ek__BackingField_2(L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Cinfo_set_providerType_m2BCF5FEFC25D812C3E7F00725B49AE02540B2F8E_inline (Cinfo_t2842A97DA95F40ECADDCA24A291B6114A3A5F71A * __this, Type_t * ___value0, const RuntimeMethod* method)
{
{
// public Type providerType { get; set; }
Type_t * L_0 = ___value0;
__this->set_U3CproviderTypeU3Ek__BackingField_3(L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Cinfo_set_subsystemTypeOverride_m30FDD93193E0D694ABB33E184552AAF1A8AA36E6_inline (Cinfo_t2842A97DA95F40ECADDCA24A291B6114A3A5F71A * __this, Type_t * ___value0, const RuntimeMethod* method)
{
{
// public Type subsystemTypeOverride { get; set; }
Type_t * L_0 = ___value0;
__this->set_U3CsubsystemTypeOverrideU3Ek__BackingField_4(L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR intptr_t Cinfo_get_dataPtr_m72B8A6BDAA98FA3CF92A9E03807130E4B6341B35_inline (Cinfo_t11C577CFE4A1D91F887A6423F6D1350DA45CA5FC * __this, const RuntimeMethod* method)
{
{
// public IntPtr dataPtr => m_DataPtr;
intptr_t L_0 = __this->get_m_DataPtr_0();
return (intptr_t)L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t Cinfo_get_dataLength_mBF9DA90E69A88EF50923C839B5CE8A03264EAB9A_inline (Cinfo_t11C577CFE4A1D91F887A6423F6D1350DA45CA5FC * __this, const RuntimeMethod* method)
{
{
// public int dataLength => m_DataLength;
int32_t L_0 = __this->get_m_DataLength_1();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t Cinfo_get_rowStride_m67E7894AA413F614310BF6A667BDEA1950165492_inline (Cinfo_t11C577CFE4A1D91F887A6423F6D1350DA45CA5FC * __this, const RuntimeMethod* method)
{
{
// public int rowStride => m_RowStride;
int32_t L_0 = __this->get_m_RowStride_2();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t Cinfo_get_pixelStride_m2595FA36CA7479B00D3EFD507C3C9439CC5DBDE0_inline (Cinfo_t11C577CFE4A1D91F887A6423F6D1350DA45CA5FC * __this, const RuntimeMethod* method)
{
{
// public int pixelStride => m_PixelStride;
int32_t L_0 = __this->get_m_PixelStride_3();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t NativeSlice_1_get_Length_m7D873C4D8E53FE893929EDA4D6CA223F64A86759_gshared_inline (NativeSlice_1_tEFBDB61DC6CB8E764B0E92727E8B9EA61662F8F2 * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = (int32_t)__this->get_m_Length_2();
return (int32_t)L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t List_1_get_Count_m5D847939ABB9A78203B062CAFFE975792174D00F_gshared_inline (List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5 * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = (int32_t)__this->get__size_2();
return (int32_t)L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject * SubsystemWithProvider_3_get_provider_m6D630D758837E2C1BBCC328AAF4512ADFA1F48F3_gshared_inline (SubsystemWithProvider_3_t80ABC03E4A5E84C63AB7C26719F2C5CA1FAA7EC2 * __this, const RuntimeMethod* method)
{
{
RuntimeObject * L_0 = (RuntimeObject *)__this->get_U3CproviderU3Ek__BackingField_3();
return (RuntimeObject *)L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Nullable_1_get_HasValue_m7455E879CFAAE682AE3786D4D2B1F65C8AA23921_gshared_inline (Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 * __this, const RuntimeMethod* method)
{
{
bool L_0 = (bool)__this->get_has_value_1();
return (bool)L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t Nullable_1_GetValueOrDefault_m66800983B800C26B67A6999A687EA3767C739406_gshared_inline (Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = (int32_t)__this->get_value_0();
return (int32_t)L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Nullable_1_get_HasValue_mD8E0C85C96E8F68E55600773D64912BF77F68545_gshared_inline (Nullable_1_t661141E668063C73311C9DF09B3AE945EA9A1D8C * __this, const RuntimeMethod* method)
{
{
bool L_0 = (bool)__this->get_has_value_1();
return (bool)L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject * SubsystemWithProvider_3_get_subsystemDescriptor_m7FBB308E48CF5F204D7EB25F2E4BE1FC4F940998_gshared_inline (SubsystemWithProvider_3_t80ABC03E4A5E84C63AB7C26719F2C5CA1FAA7EC2 * __this, const RuntimeMethod* method)
{
{
RuntimeObject * L_0 = (RuntimeObject *)__this->get_U3CsubsystemDescriptorU3Ek__BackingField_2();
return (RuntimeObject *)L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Nullable_1_get_HasValue_m68E887776727FD03427726B3149807754F1B770B_gshared_inline (Nullable_1_tF7B8C31618B00224A735E543E66CD257CB7E42FB * __this, const RuntimeMethod* method)
{
{
bool L_0 = (bool)__this->get_has_value_1();
return (bool)L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t List_1_get_Count_m0793D9FA487681001881232EFD626044240AD7D4_gshared_inline (List_1_tBFEC44C63782254A7C0F22D20FC51F72002482EC * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = (int32_t)__this->get__size_2();
return (int32_t)L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR XRReferenceImage_tB1803A72EB581FB35B2CA944973679132A1D4467 List_1_get_Item_mB9758E724C2CACE0CC41D0AA2B78FCCB962CEA37_gshared_inline (List_1_tBFEC44C63782254A7C0F22D20FC51F72002482EC * __this, int32_t ___index0, const RuntimeMethod* method)
{
{
int32_t L_0 = ___index0;
int32_t L_1 = (int32_t)__this->get__size_2();
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_000e;
}
}
{
ThrowHelper_ThrowArgumentOutOfRangeException_m4841366ABC2B2AFA37C10900551D7E07522C0929(/*hidden argument*/NULL);
}
IL_000e:
{
XRReferenceImageU5BU5D_t9A2F6DD5CC64F74EBA9D563B001CA15802CF3900* L_2 = (XRReferenceImageU5BU5D_t9A2F6DD5CC64F74EBA9D563B001CA15802CF3900*)__this->get__items_1();
int32_t L_3 = ___index0;
XRReferenceImage_tB1803A72EB581FB35B2CA944973679132A1D4467 L_4;
L_4 = IL2CPP_ARRAY_UNSAFE_LOAD((XRReferenceImageU5BU5D_t9A2F6DD5CC64F74EBA9D563B001CA15802CF3900*)L_2, (int32_t)L_3);
return (XRReferenceImage_tB1803A72EB581FB35B2CA944973679132A1D4467 )L_4;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t List_1_get_Count_m84A3D8A14DE6FA8E93A6DBA5F857B6E2861FF246_gshared_inline (List_1_t3A1F09045329A30B2867F24E69EC807BE36BEA9B * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = (int32_t)__this->get__size_2();
return (int32_t)L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR XRReferenceObject_t18877E1C9F50FF11192A86805D881349020032AE List_1_get_Item_m198C10E9F0F98950D2C37B38E085E659EBF05243_gshared_inline (List_1_t3A1F09045329A30B2867F24E69EC807BE36BEA9B * __this, int32_t ___index0, const RuntimeMethod* method)
{
{
int32_t L_0 = ___index0;
int32_t L_1 = (int32_t)__this->get__size_2();
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_000e;
}
}
{
ThrowHelper_ThrowArgumentOutOfRangeException_m4841366ABC2B2AFA37C10900551D7E07522C0929(/*hidden argument*/NULL);
}
IL_000e:
{
XRReferenceObjectU5BU5D_t84152A67B96E14F580770A62448BAC37D9D60E20* L_2 = (XRReferenceObjectU5BU5D_t84152A67B96E14F580770A62448BAC37D9D60E20*)__this->get__items_1();
int32_t L_3 = ___index0;
XRReferenceObject_t18877E1C9F50FF11192A86805D881349020032AE L_4;
L_4 = IL2CPP_ARRAY_UNSAFE_LOAD((XRReferenceObjectU5BU5D_t84152A67B96E14F580770A62448BAC37D9D60E20*)L_2, (int32_t)L_3);
return (XRReferenceObject_t18877E1C9F50FF11192A86805D881349020032AE )L_4;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Nullable_1_get_HasValue_m965388873B2BD6BFE630C83A6B9D18EA421A8793_gshared_inline (Nullable_1_t0FF36C2ABCA6430FFCD4ED32922F18F36382E494 * __this, const RuntimeMethod* method)
{
{
bool L_0 = (bool)__this->get_has_value_1();
return (bool)L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Vector2__ctor_m9F1F2D5EB5D1FF7091BB527AC8A72CBB309D115E_inline (Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 * __this, float ___x0, float ___y1, const RuntimeMethod* method)
{
{
float L_0 = ___x0;
__this->set_x_0(L_0);
float L_1 = ___y1;
__this->set_y_1(L_1);
return;
}
}
| [
"atulpatil-mac@atupatil.local"
] | atulpatil-mac@atupatil.local |
aed8f4845431c4bbc7840440e71e288687fdf320 | 9edcd2177792e67efdbceeeb5e8d4407fae23777 | /Unique Paths.cpp | 2dd26c20003eb14fc5c39a282bdd9a0635e0e3df | [] | no_license | rajeshceg3/leetcode_cpp | bd3fd1231959b07d363428d65e795acfe9a72578 | 35d6237d0db72c24c4f0c514b599cd297fbd2f8a | refs/heads/master | 2022-04-04T11:35:33.825357 | 2020-02-10T10:21:25 | 2020-02-10T10:21:25 | 238,442,975 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 491 | cpp | // https://leetcode.com/problems/unique-paths/
class Solution {
public:
int uniquePaths(int m, int n) {
// Entire dp table filled with 1
vector<vector<int>> dp( m, vector<int>(n,1));
// Fill all columns & rows in dp table based on
// first row and column data
for( int i = 1; i < m ; i++ )
{
for( int j = 1; j < n ; j++ )
{
dp[i][j] = dp[i-1][j] + dp[i][j-1];
}
}
return dp[m-1][n-1];
}
};
| [
"noreply@github.com"
] | noreply@github.com |
b8c8090795b085bef2ecd22c5b966e28901003aa | bcf296f002ff205561f410b36ff4b5ab41a48f0a | /NalParse.h | 247d66be5423403548af5794c07c8b1e63366ff7 | [] | no_license | yangkun19921001/VideoBSAnslyzer | f34e315b803974f213f39e2c4372587c2ad747b8 | 1d08c758d50a8afd2162a9358397ca89995055d7 | refs/heads/master | 2023-05-14T18:28:47.016193 | 2021-06-07T17:27:52 | 2021-06-07T17:27:52 | 374,852,103 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,897 | h | #ifndef PALPARSE_H
#define PALPARSE_H
#include "h264_stream.h"
#include "h265_stream.h"
#include <vector>
using std::vector;
typedef struct
{
int type; // 0 -- h.264; 1 -- h.265
unsigned int num; // 序号
unsigned int len; // 含起始码的总的长度
unsigned int offset; // nal包在文件中的偏移
int sliceType; // 帧类型
int nalType; // NAL类型
int startcodeLen; // start code长度
char startcodeBuffer[16]; // 起始码,字符串形式
} NALU_t;
typedef struct
{
int profile_idc;
int level_idc;
int width;
int height;
int crop_left;
int crop_right;
int crop_top;
int crop_bottom;
float max_framerate; // 由SPS计算得到的帧率,为0表示SPS中没有相应的字段计算
int chroma_format_idc; // YUV颜色空间 0: monochrome 1:420 2:422 3:444
}SPSInfo_t;
typedef struct
{
int encoding_type; // 为1表示CABAC 0表示CAVLC
}PPSInfo_t;
enum FileType
{
FILE_H264 = 0,
FILE_H265 = 1,
FILE_UNK = 2,
};
const int MAX_NAL_SIZE = 1*1024*1024;
const int OUTPUT_SIZE = 512*1024;
class CNalParser
{
public:
CNalParser();
~CNalParser();
int init(const char* filename);
int release(void);
// 搜索视频文件的ANL单元,记录偏移及长度
int probeNALU(vector<NALU_t>& vNal, int num);
// 解析offset处大小为length的数据,十六进制数据传递到naluData,NAL信息传递到naluInfo
int parseNALU(NALU_t& vNal, char** naluData, char** naluInfo);
void getVideoInfo(videoinfo_t* videoInfo)
{
if (m_nType) memcpy(videoInfo, m_hH265->info, sizeof(videoinfo_t));
else memcpy(videoInfo, m_hH264->info, sizeof(videoinfo_t));
}
private:
inline int findStartcode3(unsigned char *buffer)
{
return (buffer[0]==0 && buffer[1]==0 && buffer[2]==1);
}
inline int findStartcode4(unsigned char *buffer)
{
return (buffer[0]==0 && buffer[1]==0 && buffer[2]==0 && buffer[3]==1);
}
int getAnnexbNALU (FILE* fp, NALU_t *nalu);
int findFirstNALU(FILE* fp, int* startcodeLenght);
FileType judeVideoFile(const char* filename);
void _splitpath(const char *path, char *drive, char *dir, char *fname, char *ext);
void _split_whole_name(const char *whole_name, char *fname, char *ext);
private:
// todo:不使用这种写死空间的做法
//存放解析出来的字符串
char m_tmpStore[1024];
char m_outputInfo[OUTPUT_SIZE];
private:
h264_stream_t* m_hH264;
h265_stream_t* m_hH265;
FileType m_nType; // 0:264 1:265
const char* m_filename;
uint8_t* m_naluData;
void* dlg;
FILE* m_pFile;
};
#endif
| [
"yang1001yk@gmail.com"
] | yang1001yk@gmail.com |
f4c2ca3426adbd88974e72bf4703fa5ae7e0faf1 | f3c8d78b4f8af9a5a0d047fbae32a5c2fca0edab | /Qt/lib2/QScintilla/Qsci/qscilexerpostscript.h | 8d88f3f0f62eebc497c01185182f615f09ed8f2b | [] | no_license | RinatB2017/mega_GIT | 7ddaa3ff258afee1a89503e42b6719fb57a3cc32 | f322e460a1a5029385843646ead7d6874479861e | refs/heads/master | 2023-09-02T03:44:33.869767 | 2023-08-21T08:20:14 | 2023-08-21T08:20:14 | 97,226,298 | 5 | 2 | null | 2022-12-09T10:31:43 | 2017-07-14T11:17:39 | C++ | UTF-8 | C++ | false | false | 5,879 | h | // This defines the interface to the QsciLexerPostScript class.
//
// Copyright (c) 2018 Riverbank Computing Limited <info@riverbankcomputing.com>
//
// This file is part of QScintilla.
//
// This file may be used under the terms of the GNU General Public License
// version 3.0 as published by the Free Software Foundation and appearing in
// the file LICENSE included in the packaging of this file. Please review the
// following information to ensure the GNU General Public License version 3.0
// requirements will be met: http://www.gnu.org/copyleft/gpl.html.
//
// If you do not wish to use this file under the terms of the GPL version 3.0
// then you may purchase a commercial license. For more information contact
// info@riverbankcomputing.com.
//
// This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
// WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
#ifndef QSCILEXERPOSTSCRIPT_H
#define QSCILEXERPOSTSCRIPT_H
#include <QObject>
#include <qsciglobal.h>
#include <qscilexer.h>
//! \brief The QsciLexerPostScript class encapsulates the Scintilla PostScript
//! lexer.
class QSCINTILLA_EXPORT QsciLexerPostScript : public QsciLexer
{
Q_OBJECT
public:
//! This enum defines the meanings of the different styles used by the
//! PostScript lexer.
enum {
//! The default.
Default = 0,
//! A comment.
Comment = 1,
//! A DSC comment.
DSCComment = 2,
//! A DSC comment value.
DSCCommentValue = 3,
//! A number.
Number = 4,
//! A name.
Name = 5,
//! A keyword.
Keyword = 6,
//! A literal.
Literal = 7,
//! An immediately evaluated literal.
ImmediateEvalLiteral = 8,
//! Array parenthesis.
ArrayParenthesis = 9,
//! Dictionary parenthesis.
DictionaryParenthesis = 10,
//! Procedure parenthesis.
ProcedureParenthesis = 11,
//! Text.
Text = 12,
//! A hexadecimal string.
HexString = 13,
//! A base85 string.
Base85String = 14,
//! A bad string character.
BadStringCharacter = 15
};
//! Construct a QsciLexerPostScript with parent \a parent. \a parent is
//! typically the QsciScintilla instance.
QsciLexerPostScript(QObject *parent = nullptr);
//! Destroys the QsciLexerPostScript instance.
virtual ~QsciLexerPostScript();
//! Returns the name of the language.
const char *language() const;
//! Returns the name of the lexer. Some lexers support a number of
//! languages.
const char *lexer() const;
//! \internal Returns the style used for braces for brace matching.
int braceStyle() const;
//! Returns the foreground colour of the text for style number \a style.
//!
//! \sa defaultPaper()
QColor defaultColor(int style) const;
//! Returns the font for style number \a style.
QFont defaultFont(int style) const;
//! Returns the background colour of the text for style number \a style.
//!
//! \sa defaultColor()
QColor defaultPaper(int style) const;
//! Returns the set of keywords for the keyword set \a set recognised
//! by the lexer as a space separated string. Set 5 can be used to provide
//! additional user defined keywords.
const char *keywords(int set) const;
//! Returns the descriptive name for style number \a style. If the
//! style is invalid for this language then an empty QString is returned.
//! This is intended to be used in user preference dialogs.
QString description(int style) const;
//! Causes all properties to be refreshed by emitting the propertyChanged()
//! signal as required.
void refreshProperties();
//! Returns true if tokens should be marked.
//!
//! \sa setTokenize()
bool tokenize() const;
//! Returns the PostScript level.
//!
//! \sa setLevel()
int level() const;
//! Returns true if trailing blank lines are included in a fold block.
//!
//! \sa setFoldCompact()
bool foldCompact() const;
//! Returns true if else blocks can be folded.
//!
//! \sa setFoldAtElse()
bool foldAtElse() const;
public slots:
//! If \a tokenize is true then tokens are marked. The default is false.
//!
//! \sa tokenize()
virtual void setTokenize(bool tokenize);
//! The PostScript level is set to \a level. The default is 3.
//!
//! \sa level()
virtual void setLevel(int level);
//! If \a fold is true then trailing blank lines are included in a fold
//! block. The default is true.
//!
//! \sa foldCompact()
virtual void setFoldCompact(bool fold);
//! If \a fold is true then else blocks can be folded. The default is
//! false.
//!
//! \sa foldAtElse()
virtual void setFoldAtElse(bool fold);
protected:
//! The lexer's properties are read from the settings \a qs. \a prefix
//! (which has a trailing '/') should be used as a prefix to the key of
//! each setting. true is returned if there is no error.
//!
bool readProperties(QSettings &qs,const QString &prefix);
//! The lexer's properties are written to the settings \a qs.
//! \a prefix (which has a trailing '/') should be used as a prefix to
//! the key of each setting. true is returned if there is no error.
//!
bool writeProperties(QSettings &qs,const QString &prefix) const;
private:
void setTokenizeProp();
void setLevelProp();
void setCompactProp();
void setAtElseProp();
bool ps_tokenize;
int ps_level;
bool fold_compact;
bool fold_atelse;
QsciLexerPostScript(const QsciLexerPostScript &);
QsciLexerPostScript &operator=(const QsciLexerPostScript &);
};
#endif
| [
"tux4096@gmail.com"
] | tux4096@gmail.com |
feadb91e1c08241d56c084b057d8021b2f85f7c3 | d6debbef4488a839d4ae24593e14c5a5e492a0d9 | /lib/AcceleratedLED328/src/Strip.cpp | 6cd929f0e46f78acd3c2f8d86744348a98783f10 | [
"MIT"
] | permissive | ianfixes/AcceleratedLED | 0b1cca36a9c59fedbd89c9c8a51db3caf0899e50 | 452a2af90cbcf56e72ccb671f85c552a80afe014 | refs/heads/master | 2020-03-28T06:04:20.696221 | 2018-09-13T20:47:05 | 2018-09-13T20:47:05 | 147,812,494 | 0 | 0 | MIT | 2018-09-13T20:47:06 | 2018-09-07T11:07:21 | C++ | UTF-8 | C++ | false | false | 599 | cpp | #include "Strip.h"
Strip::Strip(){
}
void Strip::init(uint8_t dataPin, uint8_t clkPin){
strip = Adafruit_WS2801(STRIP_LENGTH, dataPin, clkPin);
strip.begin();
strip.show();
}
Pixel* Strip::pixel(uint8_t index){
return &pixels[index];
}
void Strip::setColor(ColorHSV color){
for(uint8_t i=0; i<STRIP_LENGTH; i++){
Pixel *pixel = this->pixel(i);
pixel->hsv = color;
}
}
void Strip::update(){
// Set rest of string
for(uint8_t idx = 0; idx<STRIP_LENGTH; idx++){
Pixel* pixel = this->pixel(idx);
strip.setPixelColor(idx, pixel->color());
}
strip.show();
}
| [
"benguest@gmail.com"
] | benguest@gmail.com |
3403d9809fdd8b5e8ab51ea77721bf83c7f23a93 | f31c0986ebc80731362a136f99bb6be461690440 | /src/UILayer/ToolTipCtrlX.h | 57c9b42462d1c9a3958f0b6ac6f3b97cea0add0b | [] | no_license | witeyou/easyMule | 9c3e0af72c49f754704f029a6c3c609f7300811a | ac91abd9cdf35dd5bb697e175e8d07a89c496944 | refs/heads/master | 2023-03-30T16:19:27.200126 | 2021-03-26T12:22:52 | 2021-03-26T12:22:52 | 351,774,027 | 1 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 1,625 | h | /*
* $Id: ToolTipCtrlX.h 4483 2008-01-02 09:19:06Z soarchin $
*
* this file is part of eMule
* Copyright (C)2002-2006 Merkur ( strEmail.Format("%s@%s", "devteam", "emule-project.net") / http://www.emule-project.net )
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either
* version 2 of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/
#pragma once
class CToolTipCtrlX : public CToolTipCtrl
{
DECLARE_DYNAMIC(CToolTipCtrlX)
public:
CToolTipCtrlX();
virtual ~CToolTipCtrlX();
void SetCol1DrawTextFlags(DWORD dwFlags);
void SetCol2DrawTextFlags(DWORD dwFlags);
protected:
bool m_bCol1Bold;
CRect m_rcScreen;
int m_iScreenWidth4;
COLORREF m_crTooltipBkColor;
DWORD m_dwCol1DrawTextFlags;
DWORD m_dwCol2DrawTextFlags;
CFont m_fontBold;
void ResetSystemMetrics();
DECLARE_MESSAGE_MAP()
afx_msg void OnNMCustomDraw(NMHDR *pNMHDR, LRESULT *pResult);
afx_msg void OnNMThemeChanged(NMHDR *pNMHDR, LRESULT *pResult);
afx_msg void OnSysColorChange();
afx_msg void OnSettingChange(UINT uFlags, LPCTSTR lpszSection);
};
| [
"1171838741@qq.com"
] | 1171838741@qq.com |
5de0f1505d7f162a9680fb17ec23297d1f310ff3 | 7fe3e44cf771a7a811890a7d2ac78ed6708ddedf | /Engine/source/platformWin32/winSemaphore.cpp | b62e7f3247b1da2595260e32dd5045bc11322e8b | [] | no_license | konradkiss/meshloop | 988ee721fb6463fbfece183c70f678c047215dd5 | 25b98ce223d21e232593a6c4dc2d6d863aace02c | refs/heads/master | 2021-03-19T13:36:21.104735 | 2015-05-21T13:00:55 | 2015-05-21T13:00:55 | 36,012,137 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,472 | cpp | //-----------------------------------------------------------------------------
// Torque 3D
// Copyright (C) GarageGames.com, Inc.
//-----------------------------------------------------------------------------
#include "platformWin32/platformWin32.h"
#include "platform/threads/semaphore.h"
class PlatformSemaphore
{
public:
HANDLE *semaphore;
PlatformSemaphore(S32 initialCount)
{
semaphore = new HANDLE;
*semaphore = CreateSemaphore(0, initialCount, S32_MAX, 0);
}
~PlatformSemaphore()
{
CloseHandle(*(HANDLE*)(semaphore));
delete semaphore;
semaphore = NULL;
}
};
Semaphore::Semaphore(S32 initialCount)
{
mData = new PlatformSemaphore(initialCount);
}
Semaphore::~Semaphore()
{
AssertFatal(mData && mData->semaphore, "Semaphore::destroySemaphore: invalid semaphore");
delete mData;
}
bool Semaphore::acquire(bool block)
{
AssertFatal(mData && mData->semaphore, "Semaphore::acquireSemaphore: invalid semaphore");
if(block)
{
WaitForSingleObject(*(HANDLE*)(mData->semaphore), INFINITE);
return(true);
}
else
{
DWORD result = WaitForSingleObject(*(HANDLE*)(mData->semaphore), 0);
return(result == WAIT_OBJECT_0);
}
}
void Semaphore::release()
{
AssertFatal(mData && mData->semaphore, "Semaphore::releaseSemaphore: invalid semaphore");
ReleaseSemaphore(*(HANDLE*)(mData->semaphore), 1, 0);
}
| [
"konrad@konradkiss.com"
] | konrad@konradkiss.com |
126232d53b4a7bf36870b2f89c91576055e9c6f8 | 76a0fa3b5dc3814d35d49951ef551548d7a6d0f7 | /irreciever/irreciever/irreciever.ino | 93d15ceb98895fb27275f9bb8f7f4182bde98e61 | [] | no_license | jnahelou/arduino-uno | 3516a6e0fc1e1758fb3cfc6859a3f2d6b15b70bb | aed1b800474bb5181e4ebc0672f485b9de02f723 | refs/heads/master | 2021-01-01T15:57:55.678400 | 2017-07-19T17:52:40 | 2017-07-19T17:52:40 | 97,745,533 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,118 | ino | /* YourDuino.com Example Software Sketch
IR Remote Kit Test
Uses YourDuino.com IR Infrared Remote Control Kit 2
http://arduino-direct.com/sunshop/index.php?l=product_detail&p=153
based on code by Ken Shirriff - http://arcfn.com
Get Library at: https://github.com/shirriff/Arduino-IRremote
Unzip folder into Libraries. RENAME folder IRremote
terry@yourduino.com */
/*-----( Import needed libraries )-----*/
#include "IRremote.h"
/*-----( Declare Constants )-----*/
int receiver = 12; // pin 1 of IR receiver to Arduino digital pin 11
/*-----( Declare objects )-----*/
IRrecv irrecv(receiver); // create instance of 'irrecv'
decode_results results; // create instance of 'decode_results'
/*-----( Declare Variables )-----*/
void setup() /*----( SETUP: RUNS ONCE )----*/
{
Serial.begin(9600);
Serial.println("IR Receiver Raw Data + Button Decode Test");
irrecv.enableIRIn(); // Start the receiver
}/*--(end setup )---*/
void loop() /*----( LOOP: RUNS CONSTANTLY )----*/
{
if (irrecv.decode(&results)) // have we received an IR signal?
{
// Serial.println(results.value, HEX); UN Comment to see raw values
translateIR();
irrecv.resume(); // receive the next value
}
}/* --(end main loop )-- */
/*-----( Declare User-written Functions )-----*/
void translateIR() // takes action based on IR code received
// describing Car MP3 IR codes
{
switch(results.value)
{
case 0xFFA25D:
Serial.println(" CH- ");
break;
case 0xFF629D:
Serial.println(" CH ");
break;
case 0xFFE21D:
Serial.println(" CH+ ");
break;
case 0xFF22DD:
Serial.println(" PREV ");
break;
case 0xFF02FD:
Serial.println(" NEXT ");
break;
case 0xFFC23D:
Serial.println(" PLAY/PAUSE ");
break;
case 0xFFE01F:
Serial.println(" VOL- ");
break;
case 0xFFA857:
Serial.println(" VOL+ ");
break;
case 0xFF906F:
Serial.println(" EQ ");
break;
case 0xFF6897:
Serial.println(" 0 ");
break;
case 0xFF9867:
Serial.println(" 100+ ");
break;
case 0xFFB04F:
Serial.println(" 200+ ");
break;
case 0xFF30CF:
Serial.println(" 1 ");
break;
case 0xFF18E7:
Serial.println(" 2 ");
break;
case 0xFF7A85:
Serial.println(" 3 ");
break;
case 0xFF10EF:
Serial.println(" 4 ");
break;
case 0xFF38C7:
Serial.println(" 5 ");
break;
case 0xFF5AA5:
Serial.println(" 6 ");
break;
case 0xFF42BD:
Serial.println(" 7 ");
break;
case 0xFF4AB5:
Serial.println(" 8 ");
break;
case 0xFF52AD:
Serial.println(" 9 ");
break;
default:
Serial.print(" other button ");
Serial.print(results.value);
Serial.println("");
}
delay(500);
} //END translateIR
/* ( THE END ) */
| [
"nahelou.jerome@gmail.com"
] | nahelou.jerome@gmail.com |
aaa22f281725b837a60a712b54a300bafccda239 | 7dedb11bd6620b14004d2fead3d0d47daf2b98bf | /CodeForces/cf-464b.cpp | c808ce0019784da74a65377ee6f3d1307017912c | [] | no_license | nickzuck/Competitive-Programming | 2899d6601e2cfeac919276e437a77697ac9be922 | 5abb02a527dd4cc379bb48061f60501fc22da476 | refs/heads/master | 2021-01-15T09:19:34.607887 | 2016-06-01T20:38:45 | 2016-06-01T20:38:45 | 65,146,214 | 1 | 0 | null | 2016-08-07T17:44:47 | 2016-08-07T17:44:44 | null | UTF-8 | C++ | false | false | 3,928 | cpp | #include <iostream>
#include <cstdio>
#include <string>
#include <sstream>
#include <vector>
#include <list>
#include <set>
#include <map>
#include <queue>
#include <stack>
#include <bitset>
#include <numeric>
#include <iterator>
#include <algorithm>
#include <cmath>
#include <chrono>
#include <cassert>
using namespace std;
using ll = long long;
using ld = long double;
using ii = pair<int,int>;
using vi = vector<int>;
using vb = vector<bool>;
using vvi = vector<vi>;
using vii = vector<ii>;
using vvii = vector<vii>;
const int INF = 2000000000;
const ll LLINF = 9000000000000000000;
template <class T>
T dot(T x1, T y1, T z1, T x2, T y2, T z2) {
return x1*x2 + y1*y2 + z1*z2;
}
ll lsq(ll x, ll y, ll z) {
return dot<ll>(x, y, z, x, y, z);
}
vector<vector<ll> > rec(4, vector<ll>(3, 0LL));
bool valid(vector<vector<ll> > &X, int i, int j, int k,
vector<ll> &mn, vector<ll> &mx, vector<ll> &sm) {
// The basis vectors are i-0, j-0, k-0
// should be independent
if (dot<ll>(X[i][0]-X[0][0], X[i][1]-X[0][1], X[i][2]-X[0][2],
X[j][0]-X[0][0], X[j][1]-X[0][1], X[j][2]-X[0][2]) != 0)
return false;
if (dot<ll>(X[i][0]-X[0][0], X[i][1]-X[0][1], X[i][2]-X[0][2],
X[k][0]-X[0][0], X[k][1]-X[0][1], X[k][2]-X[0][2]) != 0)
return false;
if (dot<ll>(X[k][0]-X[0][0], X[k][1]-X[0][1], X[k][2]-X[0][2],
X[j][0]-X[0][0], X[j][1]-X[0][1], X[j][2]-X[0][2]) != 0)
return false;
// should have the same nonzero length
ll l1 = lsq(X[i][0]-X[0][0], X[i][1]-X[0][1], X[i][2]-X[0][2]);
ll l2 = lsq(X[j][0]-X[0][0], X[j][1]-X[0][1], X[j][2]-X[0][2]);
ll l3 = lsq(X[k][0]-X[0][0], X[k][1]-X[0][1], X[k][2]-X[0][2]);
if (l1 != l2) return false;
if (l1 != l3) return false;
if (l1 == 0) return false;
// cerr << "Passed dotproduct" << endl;
// cerr << i << ' ' << j << ' ' << k << ' ' << endl;
// remaining vertices
for (int n = 0; n < 3; ++n) {
rec[0][n] = X[i][n] + X[j][n] - X[0][n];
rec[1][n] = X[j][n] + X[k][n] - X[0][n];
rec[2][n] = X[i][n] + X[k][n] - X[0][n];
rec[3][n] = X[i][n] + X[j][n] + X[k][n] - 2 * X[0][n];
}
vb available(4, true);
for (int n = 1; n < 8; ++n) {
if (n == i || n == j || n == k) continue;
// Can we permute X[n] to get rec[m]
for (int m = 0; m < 4; ++m) {
if (!available[m]) continue;
if (mn[n] != min(rec[m][0],
min(rec[m][1], rec[m][2])))
continue;
if (mx[n] != max(rec[m][0],
max(rec[m][1], rec[m][2])))
continue;
if (sm[n] != rec[m][0] + rec[m][1] + rec[m][2])
continue;
X[n][0] = rec[m][0];
X[n][1] = rec[m][1];
X[n][2] = rec[m][2];
// Permute coordinates accordingly
available[m] = false;
break;
}
}
available[0] = available[0] || available[1];
available[2] = available[2] || available[3];
available[0] = available[0] || available[2];
return !available[0];
}
void printrow(vector<ll> &v) {
cout << v[0] << ' ' << v[1] << ' ' <<v[2] << endl;
}
void print(vector<vector<ll> > &X, int i, int j, int k) {
cout << "YES" << endl;
for (int i = 0; i < 8; ++i)
printrow(X[i]);
}
int main() {
vector<vector<ll> > X(8, vector<ll>(3, 0LL));
vector<ll> mn(8, LLINF), mx(8, -LLINF), sm(8, 0LL);
for (int i = 0; i < 8; ++i) {
cin >> X[i][0] >> X[i][1] >> X[i][2];
sort(X[i].begin(), X[i].end());
mn[i] = X[i][0];
mx[i] = X[i][2];
sm[i] = X[i][0] + X[i][1] + X[i][2];
}
// For all 3-subsets of 1..7
for (int i = 1; i < 8; ++i) {
sort(X[i].begin(), X[i].end());
do {
for (int j = i + 1; j < 8; ++j) {
sort(X[j].begin(), X[j].end());
do {
for (int k = j + 1; k < 8; ++k) {
sort(X[k].begin(), X[k].end());
do {
if (valid(X, i, j, k, mn, mx, sm)) {
print(X, i, j, k);
return 0;
}
} while (next_permutation(X[k].begin(), X[k].end()));
}
} while (next_permutation(X[j].begin(), X[j].end()));
}
} while (next_permutation(X[i].begin(), X[i].end()));
}
cout << "NO" << endl;
return 0;
}
| [
"timonknigge@live.nl"
] | timonknigge@live.nl |
92b16f52529eb5ea23a2bd5cfd65024acc729771 | efb23c832a12602e48609ee1804e3e28dfb00a91 | /ui/CertsEditControl.h | 139b7678cb966a9b64799b5a3b412d0209443efb | [
"Apache-2.0",
"BSD-2-Clause",
"LicenseRef-scancode-protobuf",
"MIT"
] | permissive | shibafu528/florarpc | deb75521905257f9be8a8dbf304839eab3a54cc5 | 923e3782c080f3039379382c2c70b4edef88a4de | refs/heads/master | 2021-11-24T09:20:21.768517 | 2021-11-23T15:01:14 | 2021-11-23T23:03:29 | 245,796,455 | 6 | 2 | NOASSERTION | 2021-10-10T15:24:31 | 2020-03-08T10:46:17 | C++ | UTF-8 | C++ | false | false | 815 | h | #ifndef FLORARPC_CERTSEDITCONTROL_H
#define FLORARPC_CERTSEDITCONTROL_H
#include <QByteArray>
#include <QWidget>
#include "ui/ui_CertsEditControl.h"
class CertsEditControl : public QWidget {
Q_OBJECT
public:
enum class AcceptType {
Unknown,
Certificate,
RSAPrivateKey,
};
explicit CertsEditControl(QWidget *parent = nullptr);
void setFilePath(QString filePath);
QString getFilePath();
void setFilename(QString filename);
QString getFilename();
void setAcceptType(AcceptType acceptType);
private slots:
void onImportButtonClick();
void onDeleteButtonClick();
private:
Ui_CertsEditControl ui;
QString filePath;
QString filename;
AcceptType acceptType;
void updateState();
};
#endif // FLORARPC_CERTSEDITCONTROL_H
| [
"shibafu528@gmail.com"
] | shibafu528@gmail.com |
7876849b85a211069854aeed6582d53696ac1669 | d134ae730638c9f26155017cf83b27399f69e4a5 | /src/core/registerCdsKernels.cpp | b4a72acf48dd7f2ad99bca2f215160ca17b69f3a | [
"BSD-3-Clause"
] | permissive | Nek5000/nekRS | 24e485ba046030fd06755acae44d63ecc1188333 | 4f87e0e2ec0492e2a3edf27791252d6886814d00 | refs/heads/master | 2023-08-26T21:41:41.026390 | 2023-05-30T07:36:13 | 2023-05-30T07:36:13 | 200,469,913 | 220 | 72 | NOASSERTION | 2023-09-08T17:18:24 | 2019-08-04T08:45:08 | C++ | UTF-8 | C++ | false | false | 7,070 | cpp | #include <nrs.hpp>
#include <compileKernels.hpp>
#include "re2Reader.hpp"
#include "benchmarkAdvsub.hpp"
void registerCdsKernels(occa::properties kernelInfoBC)
{
const bool serial = platform->serial;
const std::string extension = serial ? ".c" : ".okl";
occa::properties kernelInfo = platform->kernelInfo;
kernelInfo["defines"].asObject();
kernelInfo["includes"].asArray();
kernelInfo["header"].asArray();
kernelInfo["flags"].asObject();
kernelInfo["include_paths"].asArray();
int N, cubN;
platform->options.getArgs("POLYNOMIAL DEGREE", N);
platform->options.getArgs("CUBATURE POLYNOMIAL DEGREE", cubN);
const int Nq = N + 1;
const int cubNq = cubN + 1;
const int Np = Nq * Nq * Nq;
const int cubNp = cubNq * cubNq * cubNq;
constexpr int Nfaces{6};
constexpr int NVfields{3};
kernelInfo["defines/p_NVfields"] = NVfields;
int Nsubsteps = 0;
int nBDF = 0;
int nEXT = 0;
platform->options.getArgs("SUBCYCLING STEPS", Nsubsteps);
platform->options.getArgs("BDF ORDER", nBDF);
platform->options.getArgs("EXT ORDER", nEXT);
if (Nsubsteps)
nEXT = nBDF;
std::string fileName, kernelName;
const std::string suffix = "Hex3D";
const std::string oklpath = getenv("NEKRS_KERNEL_DIR");
const std::string section = "cds-";
occa::properties meshProps = kernelInfo;
meshProps += meshKernelProperties(N);
{
kernelName = "relativeMassHighestMode";
fileName = oklpath + "/cds/regularization/" + kernelName + ".okl";
platform->kernels.add(kernelName, fileName, meshProps);
kernelName = "computeMaxVisc";
fileName = oklpath + "/cds/regularization/" + kernelName + ".okl";
platform->kernels.add(kernelName, fileName, meshProps);
kernelName = "interpolateP1";
fileName = oklpath + "/cds/regularization/" + kernelName + ".okl";
platform->kernels.add(kernelName, fileName, meshProps);
{
occa::properties prop = meshProps;
prop["defines/p_cubNq"] = cubNq;
prop["defines/p_cubNp"] = cubNp;
prop["includes"].asArray();
std::string diffDataFile = oklpath + "/mesh/constantDifferentiationMatrices.h";
std::string interpDataFile = oklpath + "/mesh/constantInterpolationMatrices.h";
std::string diffInterpDataFile =
oklpath + "/mesh/constantDifferentiationInterpolationMatrices.h";
prop["includes"] += diffDataFile.c_str();
prop["includes"] += interpDataFile.c_str();
prop["includes"] += diffInterpDataFile.c_str();
kernelName = "strongAdvectionVolume" + suffix;
fileName = oklpath + "/cds/" + kernelName + ".okl";
platform->kernels.add(section + kernelName, fileName, prop);
kernelName = "strongAdvectionCubatureVolume" + suffix;
fileName = oklpath + "/cds/" + kernelName + ".okl";
platform->kernels.add(section + kernelName, fileName, prop);
}
kernelName = "advectMeshVelocityHex3D";
fileName = oklpath + "/cds/" + kernelName + ".okl";
platform->kernels.add(section + kernelName, fileName, meshProps);
kernelName = "maskCopy";
fileName = oklpath + "/core/" + kernelName + ".okl";
platform->kernels.add(section + kernelName, fileName, meshProps);
kernelName = "maskCopy2";
fileName = oklpath + "/core/" + kernelName + ".okl";
platform->kernels.add(section + kernelName, fileName, meshProps);
{
occa::properties prop = kernelInfo;
const int movingMesh = platform->options.compareArgs("MOVING MESH", "TRUE");
prop["defines/p_MovingMesh"] = movingMesh;
prop["defines/p_nEXT"] = nEXT;
prop["defines/p_nBDF"] = nBDF;
if (Nsubsteps)
prop["defines/p_SUBCYCLING"] = 1;
else
prop["defines/p_SUBCYCLING"] = 0;
kernelName = "sumMakef";
fileName = oklpath + "/cds/" + kernelName + ".okl";
platform->kernels.add(section + kernelName, fileName, prop);
}
kernelName = "neumannBC" + suffix;
fileName = oklpath + "/cds/" + kernelName + ".okl";
platform->kernels.add(section + kernelName, fileName, kernelInfoBC);
kernelName = "dirichletBC";
fileName = oklpath + "/cds/" + kernelName + ".okl";
platform->kernels.add(section + kernelName, fileName, kernelInfoBC);
kernelName = "setEllipticCoeff";
fileName = oklpath + "/core/" + kernelName + ".okl";
platform->kernels.add(section + kernelName, fileName, kernelInfo);
kernelName = "filterRT" + suffix;
fileName = oklpath + "/cds/regularization/" + kernelName + ".okl";
platform->kernels.add(section + kernelName, fileName, meshProps);
kernelName = "nStagesSum3";
fileName = oklpath + "/core/" + kernelName + ".okl";
platform->kernels.add(section + kernelName, fileName, platform->kernelInfo);
{
occa::properties prop = meshProps;
const int movingMesh = platform->options.compareArgs("MOVING MESH", "TRUE");
prop["defines/p_MovingMesh"] = movingMesh;
prop["defines/p_nEXT"] = nEXT;
prop["defines/p_nBDF"] = nBDF;
prop["defines/p_cubNq"] = cubNq;
prop["defines/p_cubNp"] = cubNp;
occa::properties subCycleStrongCubatureProps = prop;
int nelgt, nelgv;
const std::string meshFile = platform->options.getArgs("MESH FILE");
re2::nelg(meshFile, nelgt, nelgv, platform->comm.mpiComm);
const int NelemBenchmark = nelgv / platform->comm.mpiCommSize;
bool verbose = platform->options.compareArgs("VERBOSE", "TRUE");
const int verbosity = verbose ? 2 : 1;
int Nsubsteps = 0;
platform->options.getArgs("SUBCYCLING STEPS", Nsubsteps);
if (platform->options.compareArgs("ADVECTION TYPE", "CUBATURE") && Nsubsteps) {
auto subCycleKernel = benchmarkAdvsub(1,
NelemBenchmark,
Nq,
cubNq,
nEXT,
true,
true,
verbosity,
cds_t::targetTimeBenchmark,
platform->options.compareArgs("KERNEL AUTOTUNING", "FALSE") ? false : true);
kernelName = "subCycleStrongCubatureVolume" + suffix;
platform->kernels.add(section + kernelName, subCycleKernel);
}
kernelName = "subCycleStrongVolume" + suffix;
fileName = oklpath + "/cds/" + kernelName + ".okl";
platform->kernels.add(section + kernelName, fileName, prop);
kernelName = "subCycleRKUpdate";
fileName = oklpath + "/cds/" + kernelName + ".okl";
platform->kernels.add(section + kernelName, fileName, prop);
kernelName = "subCycleRK";
fileName = oklpath + "/cds/" + kernelName + ".okl";
platform->kernels.add(section + kernelName, fileName, prop);
kernelName = "subCycleInitU0";
fileName = oklpath + "/cds/" + kernelName + ".okl";
platform->kernels.add(section + kernelName, fileName, prop);
}
}
}
| [
"stgeke@gmail.com"
] | stgeke@gmail.com |
465c065223f6835c969488b90c17db1e79cc42ac | a0686f727c69d62d2760c5b4798ecc1104543754 | /uva_673.cpp | 7fe4163cff3e4ce560a90dc71ccedcf99ba26e5e | [] | no_license | epnwayne/UVa_solutions | edca6fcd0a3e563d6fa2d005472b9fd7aae6a2a7 | ad1d69d4b71b603b31e315593b1f658f98ae7048 | refs/heads/master | 2020-05-01T03:27:31.744661 | 2019-03-23T04:54:48 | 2019-03-23T04:54:48 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,977 | cpp | #include<bits/stdc++.h>
using namespace std;
/*
status: AC
Question URL:https://uva.onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&page=show_problem&problem=614
*/
int main()
{
int n;
cin >> n;
string str;
cin.ignore();
ofstream file("ans.txt");
while(n > 0)
{
getline(cin, str);
//cin.ignore();
if(str[0] == '\n')
cout << "Yes" << endl;
else
{
int ls = 0, rs = 0, lm = 0, rm = 0;
int flag = 0;
for(int i = 0; i < str.length(); i++)
{
if(str[i] == '(') ls++;
else if(str[i] == ')')
{
rs++;
int l = 0, r = 0;
int t = 0;
for(int j = i; j >= 0; j--)
{
if(str[j] == ')') t++;
if(str[j] == '(')
{
t--;
if(t == 0)
break;
}
if(str[j] == '[') l++;
if(str[j] == ']') r++;
if(l > r)
{
flag = 1;
break;
}
}
if(l != r)
{
flag = 1;
break;
}
}
else if(str[i] == '[') lm++;
else
{
rm++;
int l = 0, r = 0;
int t = 0;
for(int j = i; j >= 0; j--)
{
if(str[j] == ']') t++;
if(str[j] == '[')
{
t--;
if(t == 0)
break;
}
if(str[j] == '(') l++;
if(str[j] == ')') r++;
if(l > r)
{
flag = 1;
break;
}
}
if(l != r)
{
flag = 1;
break;
}
}
if(rs > ls || rm > lm)
{
flag = 1;
break;
}
}
if(ls == rs && lm == rm && flag == 0)
{
file << "Yes\n";
cout << "Yes" << endl;
}
else
{
file << "No\n";
cout << "No" << endl;
}
}
str.clear();
--n;
}
return 0;
}
| [
"ht920055@gmail.com"
] | ht920055@gmail.com |
799d4ebb742ec389711556194134295716b970f5 | 0da89bb043ebb15f4da644d14812b858042b431c | /branches/linux-port/SaveManager.cpp | 6baaef8f513f54dbc33d5355fb75a87dfebc6fa0 | [] | no_license | CyberSys/Earth-and-Beyond-server | 1c66c474aafb89efaac2a010de53da1a2a0ab7e2 | 3b46ad7c8baecca61adf8a0bedd2b23cb1936b9d | refs/heads/master | 2021-08-27T15:16:37.988861 | 2014-05-11T21:03:53 | 2014-05-11T21:03:53 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 26,606 | cpp | // SaveManager.cpp
// This class runs a thread which handles all the players' changes
// It keeps a connection to the SQL DB open
// Eventually this could become a separate process and run on another server PC.
#include "Net7.h"
#include "SaveManager.h"
#include "PacketMethods.h"
enum experience_type { XP_COMBAT, XP_EXPLORE, XP_TRADE };
SaveManager::SaveManager()
{
m_SaveBuffer = new CircularBuffer(0x20000, 2048);
m_SaveQueue = new MessageQueue(m_SaveBuffer);
#ifdef WIN32
UINT uiThreadId = 0;
m_SaveThreadHandle = (HANDLE)_beginthreadex(NULL, 0, StartSaveThread, this, CREATE_SUSPENDED, &uiThreadId);
#else
pthread_create(&m_SaveThreadHandle , NULL, &StartSaveThread, (void *) this);
#endif
}
SaveManager::~SaveManager()
{
// TODO: ensure thread is halted and shuts down ok, having saved everyone's status
}
void SaveManager::RunSaveThread()
{
int length;
EnbSaveHeader *header;
unsigned char msg[SAVE_MESSAGE_MAX_LENGTH]; //message will be under 256 or the 'AddMessage' method will not process it
//open the database connection
m_SQL_Conn.connect("net7_user", g_MySQL_Host, g_MySQL_User, g_MySQL_Pass);
m_SaveThreadRunning = true;
while (!g_ServerShutdown)
{
#ifdef WIN32
while (m_SaveQueue->CheckQueue(msg, &length, SAVE_MESSAGE_MAX_LENGTH)) //check if there are any messages in the queue, if there are write them into the 'msg' buffer
{
//process this message
//format is opcode/length/message
header = (EnbSaveHeader*)msg;
unsigned char *data = (msg + sizeof(EnbSaveHeader));
//process opcode accordingly
HandleSaveCode(header->save_code, header->player_id, header->size, data);
}
SuspendThread(m_SaveThreadHandle);
Sleep(2);
#else
m_SaveQueue->BlockingCheckQueue(msg, &length, SAVE_MESSAGE_MAX_LENGTH); //Wait for any messages in the queue, if there are write them into the 'msg' buffer
header = (EnbSaveHeader*)msg;
unsigned char *data = (msg + sizeof(EnbSaveHeader));
//process opcode accordingly
HandleSaveCode(header->save_code, header->player_id, header->size, data);
#endif
}
}
void SaveManager::AddSaveMessage(short save_code, long player_id, short length, unsigned char *data)
{
if (!m_SaveThreadRunning)
{
LogMessage("ERROR!: Save thread not running!!\n");
return;
}
unsigned char pData[SAVE_MESSAGE_MAX_LENGTH];
if (length + 4 > SAVE_MESSAGE_MAX_LENGTH)
{
LogMessage("Recv message overflow: length = %d\n", length);
return;
}
*((short*) &pData[0]) = length;
*((short*) &pData[2]) = save_code;
*((long* ) &pData[4]) = player_id;
if (data)
{
memcpy(pData + sizeof(short)*2 + sizeof(long), data, length);
}
m_SaveQueue->Add(pData, length+sizeof(EnbSaveHeader), player_id);
#ifdef WIN32
//Only necessary on win32 because we are using a blocking queue on linux.
//TODO: Modify the windows code to also use the blocking queue instead.
ResumeThread(m_SaveThreadHandle);
#endif
}
void SaveManager::HandleSaveCode(short save_code, long player_id, short bytes, unsigned char *data)
{
switch (save_code)
{
case SAVE_CODE_ADVANCE_LEVEL:
HandleAdvanceLevel(player_id, bytes, data);
break;
case SAVE_CODE_ADVANCE_SKILL:
HandleAdvanceSkill(player_id, bytes, data);
break;
case SAVE_CODE_CHANGE_INVENTORY:
HandleChangeInventory(player_id, bytes, data);
break;
case SAVE_CODE_CHANGE_EQUIPMENT:
HandleChangeEquipment(player_id, bytes, data);
break;
case SAVE_CODE_AWARD_XP:
HandleAwardXP(player_id, bytes, data);
break;
case SAVE_CODE_CREDIT_LEVEL:
HandleCreditChange(player_id, bytes, data);
break;
case SAVE_CODE_STORE_POSITION:
HandleStorePosition(player_id, bytes, data);
break;
case SAVE_CODE_ADVANCE_MISSION:
HandleAdvanceMission(player_id, bytes, data);
break;
case SAVE_CODE_CHARACTER_PROGRESS_WIPE:
HandleWipeCharacter(player_id);
break;
case SAVE_CODE_FULL_CHARACTER_WIPE:
HandleFullWipeCharacter(player_id);
break;
case SAVE_CODE_MISSION_FLAGS:
HandleAdvanceMissionFlags(player_id, bytes, data);
break;
case SAVE_CODE_CHANGE_AMMO:
HandleChangeAmmo(player_id, bytes, data);
break;
case SAVE_CODE_HULL_UPGRADE:
HandleHullUpgrade(player_id, bytes, data);
break;
case SAVE_CODE_HULL_LEVEL_CHANGE:
HandleHullLevelChange(player_id, bytes, data);
break;
case SAVE_CODE_MISSION_COMPLETE:
HandleMissionComplete(player_id, bytes, data);
break;
case SAVE_CODE_DISCOVER_NAV:
HandleDiscoverNav(player_id, bytes, data);
break;
case SAVE_CODE_EXPLORE_NAV:
HandleExploreNav(player_id, bytes, data);
break;
case SAVE_CODE_SET_SKILLPOINTS:
HandleSetSkillPoints(player_id, bytes, data);
break;
case SAVE_CODE_SET_STARBASE:
HandleSetRegisteredStarbase(player_id, bytes, data);
break;
case SAVE_CODE_SET_ENERGY_LEVELS:
HandleSaveEnergyLevels(player_id, bytes, data);
break;
default:
LogMessage( "Bad save code : %d for player %x\n", save_code, (player_id&0x00FFFFFF) );
break;
}
}
void SaveManager::HandleAdvanceLevel(long player_id, short bytes, unsigned char *data)
{
//player just levelled up.
sql_query_c account_query (&m_SQL_Conn);
u8 xp_type = *((u8 *) &data[0]);
long new_level = *((long *) &data[1]);
switch (xp_type)
{
case XP_COMBAT:
sprintf(m_QueryStr, "UPDATE net7_user.avatar_info SET combat = '%ld' WHERE avatar_id = '%ld'", new_level, player_id);
break;
case XP_EXPLORE:
sprintf(m_QueryStr, "UPDATE net7_user.avatar_info SET explore = '%ld' WHERE avatar_id = '%ld'", new_level, player_id);
break;
case XP_TRADE:
sprintf(m_QueryStr, "UPDATE net7_user.avatar_info SET trade = '%ld' WHERE avatar_id = '%ld'", new_level, player_id);
break;
}
account_query.run_query(m_QueryStr);
}
void SaveManager::HandleAdvanceSkill(long player_id, short bytes, unsigned char *data)
{
//player has just increased a skill
sql_query_c account_query (&m_SQL_Conn);
sql_result_c result;
short skill_id = *((short *) &data[0]);
short new_level= *((short *) &data[2]);
//does this skill exist in the DB? //TODO:: create this entry when the skill is awarded, then just run 'UPDATE' queries on it.
sprintf(m_QueryStr, "SELECT * FROM net7_user.avatar_skill_levels WHERE avatar_id = '%ld' AND skill_id = '%d'", player_id, skill_id);
account_query.execute(m_QueryStr);
account_query.store(&result);
if (result.n_rows() != 0)
{
sprintf(m_QueryStr, "UPDATE net7_user.avatar_skill_levels SET skill_level = '%d' WHERE avatar_id = '%ld' AND skill_id = '%d'", new_level, player_id, skill_id);
account_query.run_query(m_QueryStr);
}
else
{
//we need to create a new entry
sql_query SkillBuilder;
SkillBuilder.Clear();
SkillBuilder.SetTable("avatar_skill_levels");
SkillBuilder.AddData("avatar_id", player_id);
SkillBuilder.AddData("skill_id", skill_id);
SkillBuilder.AddData("skill_level", new_level);
if (!account_query.run_query(SkillBuilder.CreateQuery()))
{
LogMessage("Could not save Skill Info for id %d\n", player_id );
}
}
}
void SaveManager::HandleChangeInventory(long player_id, short bytes, unsigned char *data)
{
//player has just had an inventory change of some sort
sql_query_c account_query (&m_SQL_Conn);
sql_result_c result;
u8 inventory_slot = *((u8 *) &data[0]);
u8 inventory_type = *((u8 *) &data[1]);
short stack_level = *((short *) &data[2]);
short trade_stack = *((short *) &data[4]);
float quality = *((float *) &data[6]);
long item_id = *((long *) &data[10]);
unsigned long cost = *((unsigned long *) &data[14]);
switch (inventory_type)
{
case PLAYER_INVENTORY:
sprintf(m_QueryStr, "SELECT * FROM net7_user.avatar_inventory_items WHERE avatar_id = '%ld' AND inventory_slot = '%d'", player_id, inventory_slot);
break;
case PLAYER_VAULT:
sprintf(m_QueryStr, "SELECT * FROM net7_user.avatar_vault_items WHERE avatar_id = '%ld' AND inventory_slot = '%d'", player_id, inventory_slot);
break;
}
//does this item exist in the DB?
account_query.execute(m_QueryStr);
account_query.store(&result);
if (result.n_rows() != 0)
{
//yes, just update the item
switch (inventory_type)
{
case PLAYER_INVENTORY:
sprintf(m_QueryStr, "UPDATE net7_user.avatar_inventory_items SET item_id = '%ld', stack_level = '%d', trade_stack = '%d', quality = '%f', cost = '%ld' WHERE avatar_id = '%ld' AND inventory_slot = '%d'",
item_id, stack_level, trade_stack, quality, cost, player_id, inventory_slot);
break;
case PLAYER_VAULT:
sprintf(m_QueryStr, "UPDATE net7_user.avatar_vault_items SET item_id = '%ld', stack_level = '%d', trade_stack = '%d', quality = '%f', cost = '%ld' WHERE avatar_id = '%ld' AND inventory_slot = '%d'",
item_id, stack_level, trade_stack, quality, cost, player_id, inventory_slot); break;
}
account_query.run_query(m_QueryStr);
}
else
{
//we need to create a new entry for this item, that's ok
sql_query ItemBuilder;
ItemBuilder.Clear();
switch (inventory_type)
{
case PLAYER_INVENTORY:
ItemBuilder.SetTable("avatar_inventory_items");
break;
case PLAYER_VAULT:
ItemBuilder.SetTable("avatar_vault_items");
break;
}
ItemBuilder.AddData("avatar_id", player_id);
ItemBuilder.AddData("item_id", item_id);
ItemBuilder.AddData("stack_level", stack_level);
ItemBuilder.AddData("trade_stack", trade_stack);
ItemBuilder.AddData("quality", quality);
ItemBuilder.AddData("inventory_slot", inventory_slot);
ItemBuilder.AddData("cost", cost);
if (!account_query.run_query(ItemBuilder.CreateQuery()))
{
LogMessage("Could not save Inventory Info for id %d [item id %d]\n", player_id, item_id );
}
}
}
void SaveManager::HandleChangeEquipment(long player_id, short bytes, unsigned char *data)
{
//player has just had an equipment change
sql_query_c account_query (&m_SQL_Conn);
sql_result_c result;
u8 equipment_slot = *((u8 *) &data[0]);
float quality = *((float *) &data[1]);
long item_id = *((long *) &data[5]);
sprintf(m_QueryStr, "SELECT * FROM net7_user.avatar_equipment WHERE avatar_id = '%ld' AND equipment_slot = '%d'", player_id, equipment_slot);
//does this item exist in the DB?
account_query.execute(m_QueryStr);
account_query.store(&result);
if (result.n_rows() != 0)
{
//yes, just update the equipment slot
sprintf(m_QueryStr, "UPDATE net7_user.avatar_equipment SET item_id = '%ld', quality = '%f' WHERE avatar_id = '%ld' AND equipment_slot = '%d'",
item_id, quality, player_id, equipment_slot);
account_query.run_query(m_QueryStr);
}
else
{
//we need to create a new entry for this item, that's ok
sql_query EquipBuilder;
EquipBuilder.Clear();
EquipBuilder.SetTable("avatar_equipment");
EquipBuilder.AddData("avatar_id", player_id);
EquipBuilder.AddData("item_id", item_id);
EquipBuilder.AddData("quality", quality);
EquipBuilder.AddData("equipment_slot", equipment_slot);
if (!account_query.run_query(EquipBuilder.CreateQuery()))
{
LogMessage("Could not save Equip Info for id %d\n", player_id );
}
}
}
void SaveManager::HandleChangeAmmo(long player_id, short bytes, unsigned char *data)
{
//player has just had an ammo change
sql_query_c account_query (&m_SQL_Conn);
sql_result_c result;
u8 equipment_slot = *((u8 *) &data[0]);
short ammo_stack = *((short *) &data[1]);
float quality = *((float *) &data[3]);
long item_id = *((long *) &data[7]);
sprintf(m_QueryStr, "SELECT * FROM net7_user.avatar_ammo WHERE avatar_id = '%ld' AND equipment_slot = '%d'", player_id, equipment_slot);
//does this item exist in the DB?
account_query.execute(m_QueryStr);
account_query.store(&result);
if (result.n_rows() != 0)
{
//yes, just update the equipment slot
sprintf(m_QueryStr, "UPDATE net7_user.avatar_ammo SET item_id = '%ld', quality = '%f', ammo_stack = '%d' WHERE avatar_id = '%ld' AND equipment_slot = '%d'",
item_id, quality, ammo_stack, player_id, equipment_slot);
account_query.run_query(m_QueryStr);
}
else
{
//we need to create a new entry for this item, that's ok
sql_query EquipBuilder;
EquipBuilder.Clear();
EquipBuilder.SetTable("avatar_ammo");
EquipBuilder.AddData("avatar_id", player_id);
EquipBuilder.AddData("item_id", item_id);
EquipBuilder.AddData("quality", quality);
EquipBuilder.AddData("equipment_slot", equipment_slot);
EquipBuilder.AddData("ammo_stack", ammo_stack);
if (!account_query.run_query(EquipBuilder.CreateQuery()))
{
LogMessage("Could not save Ammo Info for id %d\n", player_id );
}
}
}
void SaveManager::HandleAwardXP(long player_id, short bytes, unsigned char *data)
{
//player just received XP, bar is now at a new level
sql_query_c account_query (&m_SQL_Conn);
u8 xp_type = *((u8 *) &data[0]);
float new_level = *((float *) &data[1]);
switch (xp_type)
{
case XP_COMBAT:
sprintf(m_QueryStr, "UPDATE net7_user.avatar_level_info SET combat_bar_level = '%f' WHERE avatar_id = '%ld'", new_level, player_id);
break;
case XP_EXPLORE:
sprintf(m_QueryStr, "UPDATE net7_user.avatar_level_info SET explore_bar_level = '%f' WHERE avatar_id = '%ld'", new_level, player_id);
break;
case XP_TRADE:
sprintf(m_QueryStr, "UPDATE net7_user.avatar_level_info SET trade_bar_level = '%f' WHERE avatar_id = '%ld'", new_level, player_id);
break;
}
account_query.run_query(m_QueryStr);
}
void SaveManager::HandleCreditChange(long player_id, short bytes, unsigned char *data)
{
//player just received XP, bar is now at a new level
sql_query_c account_query (&m_SQL_Conn);
u64 credits = *((u64 *) &data[0]);
sprintf(m_QueryStr, "UPDATE net7_user.avatar_level_info SET credits = '%I64d' WHERE avatar_id = '%ld'", credits, player_id);
account_query.run_query(m_QueryStr);
}
void SaveManager::HandleStorePosition(long player_id, short bytes, unsigned char *data)
{
//get the position stored
//get position out of data
float position[3];
float orientation[4];
long sector_id;
position[0] = *((float *) &data[0]);
position[1] = *((float *) &data[4]);
position[2] = *((float *) &data[8]);
orientation[0] = *((float *) &data[12]);
orientation[1] = *((float *) &data[16]);
orientation[2] = *((float *) &data[20]);
orientation[3] = *((float *) &data[24]);
sector_id = *((long *) &data[28]);
//now store data into DB
sql_query_c account_query (&m_SQL_Conn);
sprintf(m_QueryStr, "UPDATE net7_user.avatar_position SET posx = '%.2f', posy = '%.2f', posz = '%.2f', ori_w = '%f', ori_x = '%f', ori_y = '%f', ori_z = '%f', sector_id = '%ld' WHERE avatar_id = '%ld'",
position[0], position[1], position[2], orientation[0], orientation[1], orientation[2], orientation[3], sector_id, player_id);
account_query.run_query(m_QueryStr);
}
void SaveManager::HandleAdvanceMission(long player_id, short bytes, unsigned char *data)
{
//player has just either been awarded a mission or has advanced in one
sql_query_c account_query (&m_SQL_Conn);
sql_result_c result;
u8 mission_slot = *((u8 *) &data[0]);
long mission_id = *((long *) &data[1]);
short mission_stage = *((short *) &data[5]);
sprintf(m_QueryStr, "SELECT * FROM net7_user.avatar_mission_progress WHERE avatar_id = '%ld' AND mission_slot = '%d'", player_id, mission_slot);
//does this item exist in the DB?
account_query.execute(m_QueryStr);
account_query.store(&result);
if (result.n_rows() != 0)
{
//yes, just update this mission and blank the mission flags
sprintf(m_QueryStr, "UPDATE net7_user.avatar_mission_progress SET stage_num = '%d', mission_flags = '0' WHERE avatar_id = '%ld' AND mission_slot = '%d'",
mission_stage, player_id, mission_slot);
account_query.run_query(m_QueryStr);
}
else
{
//we need to create a new entry for this mission
sql_query MissionBuilder;
MissionBuilder.Clear();
MissionBuilder.SetTable("avatar_mission_progress");
MissionBuilder.AddData("avatar_id", player_id);
MissionBuilder.AddData("mission_id", mission_id);
MissionBuilder.AddData("mission_slot", mission_slot);
MissionBuilder.AddData("mission_flags", 0);
MissionBuilder.AddData("stage_num", mission_stage);
if (!account_query.run_query(MissionBuilder.CreateQuery()))
{
LogMessage("Could not save Mission Info for id %d\n", player_id );
}
}
}
void SaveManager::HandleAdvanceMissionFlags(long player_id, short bytes, unsigned char *data)
{
//player has just had mission flags changed. This is only relevant if the mission exists in the DB
//so just do a simple DB commit.
sql_query_c account_query (&m_SQL_Conn);
sql_result_c result;
u8 mission_slot = *((u8 *) &data[0]);
long mission_flags = *((long *) &data[1]);
sprintf(m_QueryStr, "UPDATE net7_user.avatar_mission_progress SET mission_flags = '%ld' WHERE avatar_id = '%ld' AND mission_slot = '%d'",
mission_flags, player_id, mission_slot);
account_query.run_query(m_QueryStr);
}
void SaveManager::HandleHullUpgrade(long player_id, short bytes, unsigned char *data)
{
//player has just had an hull upgrade change (or this is a new player)
sql_query_c account_query (&m_SQL_Conn);
sql_result_c result;
u8 player_rank_name = *((u8 *) &data[0]);
u8 hull_upgrade_level = *((u8 *) &data[1]);
float max_hull_points = *((float *) &data[2]);
u8 cargo_space = *((u8 *) &data[6]);
u8 weapon_slots = *((u8 *) &data[7]);
u8 device_slots = *((u8 *) &data[8]);
u8 warp_power_level = *((u8 *) &data[9]);
u8 engine_thrust_type = *((u8 *) &data[10]);
sprintf(m_QueryStr, "SELECT * FROM net7_user.avatar_level_info WHERE avatar_id = '%ld'", player_id);
//does this item exist in the DB?
account_query.execute(m_QueryStr);
account_query.store(&result);
if (result.n_rows() != 0)
{
//yes, just update the level info row
sprintf(m_QueryStr, "UPDATE net7_user.avatar_level_info SET player_rank_name = '%d', hull_upgrade_level = '%d', max_hull_points = '%.2f', cargo_space = '%d', weapon_slots = '%d', device_slots = '%d' WHERE avatar_id = '%ld'",
player_rank_name, hull_upgrade_level, max_hull_points, cargo_space, weapon_slots, device_slots, player_id);
account_query.run_query(m_QueryStr);
sprintf(m_QueryStr, "UPDATE net7_user.avatar_level_info SET engine_thrust_type = '%d', warp_power_level = '%d' WHERE avatar_id = '%ld'",
engine_thrust_type, warp_power_level, player_id);
account_query.run_query(m_QueryStr);
}
else
{
//we need to create a new entry for this player, that's ok
sql_query LevelBuilder;
LevelBuilder.Clear();
LevelBuilder.SetTable("avatar_level_info");
LevelBuilder.AddData("avatar_id", player_id);
LevelBuilder.AddData("player_rank_name", player_rank_name);
LevelBuilder.AddData("hull_upgrade_level", hull_upgrade_level);
LevelBuilder.AddData("max_hull_points", max_hull_points);
LevelBuilder.AddData("cargo_space", cargo_space);
LevelBuilder.AddData("weapon_slots", weapon_slots);
LevelBuilder.AddData("device_slots", device_slots);
LevelBuilder.AddData("combat_bar_level", 0.0f);
LevelBuilder.AddData("explore_bar_level", 0.0f);
LevelBuilder.AddData("trade_bar_level", 0.0f);
LevelBuilder.AddData("warp_power_level", warp_power_level);
LevelBuilder.AddData("engine_thrust_type", engine_thrust_type);
LevelBuilder.AddData("hull_points", max_hull_points);
LevelBuilder.AddData("credits", 0);
LevelBuilder.AddData("skill_points", 0); //skill
if (!account_query.run_query(LevelBuilder.CreateQuery()))
{
LogMessage("Could not save Avatar level Info for id %d\n", player_id );
}
}
}
void SaveManager::HandleHullLevelChange(long player_id, short bytes, unsigned char *data)
{
//player has just had an hull level change
sql_query_c account_query (&m_SQL_Conn);
sql_result_c result;
float hull_points = *((float *) &data[0]);
sprintf(m_QueryStr, "UPDATE net7_user.avatar_level_info SET hull_points = '%.2f' WHERE avatar_id = '%ld'",
hull_points, player_id);
account_query.run_query(m_QueryStr);
}
void SaveManager::HandleMissionComplete(long player_id, short bytes, unsigned char *data)
{
//player has just completed a mission
sql_query_c account_query (&m_SQL_Conn);
sql_result_c result;
long mission_id = *((long *) &data[0]);
u8 mission_flags = *((u8 *) &data[4]);
//first remove mission progress
sprintf(m_QueryStr, "DELETE FROM net7_user.avatar_mission_progress WHERE avatar_id = '%ld' AND mission_id = '%ld'",
player_id, mission_id);
account_query.run_query(m_QueryStr);
sprintf(m_QueryStr, "SELECT * FROM net7_user.missions_completed WHERE avatar_id = '%ld' AND mission_id = '%ld'", player_id, mission_id);
//does this item exist in the DB?
account_query.execute(m_QueryStr);
account_query.store(&result);
if (result.n_rows() != 0)
{
//yes, just update the info row
sprintf(m_QueryStr, "UPDATE net7_user.missions_completed SET mission_completion_flags = '%d' WHERE avatar_id = '%ld' AND mission_id = '%ld'",
mission_flags, player_id, mission_id);
account_query.run_query(m_QueryStr);
}
else
{
sql_query MissionBuilder;
MissionBuilder.Clear();
MissionBuilder.SetTable("missions_completed");
MissionBuilder.AddData("avatar_id", player_id);
MissionBuilder.AddData("mission_id", mission_id);
MissionBuilder.AddData("mission_completion_flags", mission_flags);
account_query.run_query(MissionBuilder.CreateQuery());
}
}
//this method leaves the base character design, name and ship but resets them back to a starting condition.
void SaveManager::HandleWipeCharacter(long player_id)
{
//ok remove all records of inventory, equipment, ammo, skills, levels & rank info
sql_query_c account_query (&m_SQL_Conn);
//remove position info
sprintf(m_QueryStr, "DELETE FROM `avatar_position` WHERE `avatar_id` = '%ld'", player_id);
account_query.run_query(m_QueryStr);
sprintf(m_QueryStr, "DELETE FROM `avatar_level_info` WHERE `avatar_id` = '%ld'", player_id);
account_query.run_query(m_QueryStr);
sprintf(m_QueryStr, "DELETE FROM `avatar_ammo` WHERE `avatar_id` = '%ld'", player_id);
account_query.run_query(m_QueryStr);
sprintf(m_QueryStr, "DELETE FROM `avatar_inventory_items` WHERE `avatar_id` = '%ld'", player_id);
account_query.run_query(m_QueryStr);
sprintf(m_QueryStr, "DELETE FROM `avatar_vault_items` WHERE `avatar_id` = '%ld'", player_id);
account_query.run_query(m_QueryStr);
sprintf(m_QueryStr, "DELETE FROM `avatar_equipment` WHERE `avatar_id` = '%ld'", player_id);
account_query.run_query(m_QueryStr);
sprintf(m_QueryStr, "DELETE FROM `avatar_mission_progress` WHERE `avatar_id` = '%ld'", player_id);
account_query.run_query(m_QueryStr);
sprintf(m_QueryStr, "UPDATE net7_user.avatar_info SET combat = '0', explore = '0', trade = '0' WHERE avatar_id = '%ld'", player_id);
account_query.run_query(m_QueryStr);
}
//this method removes all trace of the avatar in the database, must be used when the avatar is deleted via the client avatar character selector.
void SaveManager::HandleFullWipeCharacter(long player_id)
{
sql_query_c account_query (&m_SQL_Conn);
//remove position info
sprintf(m_QueryStr, "DELETE FROM `avatar_position` WHERE `avatar_id` = '%ld'", player_id);
account_query.run_query(m_QueryStr);
sprintf(m_QueryStr, "DELETE FROM `avatar_level_info` WHERE `avatar_id` = '%ld'", player_id);
account_query.run_query(m_QueryStr);
sprintf(m_QueryStr, "DELETE FROM `avatar_ammo` WHERE `avatar_id` = '%ld'", player_id);
account_query.run_query(m_QueryStr);
sprintf(m_QueryStr, "DELETE FROM `avatar_inventory_items` WHERE `avatar_id` = '%ld'", player_id);
account_query.run_query(m_QueryStr);
sprintf(m_QueryStr, "DELETE FROM `avatar_vault_items` WHERE `avatar_id` = '%ld'", player_id);
account_query.run_query(m_QueryStr);
sprintf(m_QueryStr, "DELETE FROM `avatar_equipment` WHERE `avatar_id` = '%ld'", player_id);
account_query.run_query(m_QueryStr);
sprintf(m_QueryStr, "DELETE FROM `avatar_mission_progress` WHERE `avatar_id` = '%ld'", player_id);
account_query.run_query(m_QueryStr);
sprintf(m_QueryStr, "DELETE FROM `missions_completed` WHERE `avatar_id` = '%ld'", player_id);
account_query.run_query(m_QueryStr);
}
#ifdef WIN32
UINT WINAPI SaveManager::StartSaveThread(LPVOID Param)
{
SaveManager* p_this = reinterpret_cast<SaveManager*>( Param );
p_this->RunSaveThread();
return 1;
}
#else
void* SaveManager::StartSaveThread(void* Param)
{
SaveManager* p_this = reinterpret_cast<SaveManager*>( Param );
p_this->RunSaveThread();
return NULL;
}
#endif
void SaveManager::HandleDiscoverNav(long player_id, short bytes, unsigned char *data)
{
//player has just discovered a nav, make a record
sql_query_c account_query (&m_SQL_Conn);
long object_uid = *((long *) &data[0]);
sql_query ExploreBuilder;
ExploreBuilder.Clear();
ExploreBuilder.SetTable("avatar_exploration");
ExploreBuilder.AddData("avatar_id", player_id);
ExploreBuilder.AddData("object_id", object_uid);
ExploreBuilder.AddData("explore_flags", DISCOVER_NAV);
account_query.run_query(ExploreBuilder.CreateQuery());
}
void SaveManager::HandleExploreNav(long player_id, short bytes, unsigned char *data)
{
//player has just explored a nav, update the record
sql_query_c account_query (&m_SQL_Conn);
long object_uid = *((long *) &data[0]);
sprintf(m_QueryStr, "UPDATE net7_user.avatar_exploration SET explore_flags = '%d' WHERE avatar_id = '%ld' AND object_id = '%ld'",
EXPLORE_NAV, player_id, object_uid);
account_query.run_query(m_QueryStr);
}
void SaveManager::HandleSetSkillPoints(long player_id, short bytes, unsigned char *data)
{
//set skill points
sql_query_c account_query (&m_SQL_Conn);
long skill_points = *((long *) &data[0]);
sprintf(m_QueryStr, "UPDATE net7_user.avatar_level_info SET skill_points = '%ld' WHERE avatar_id = '%ld'",
skill_points, player_id);
account_query.run_query(m_QueryStr);
}
void SaveManager::HandleSetRegisteredStarbase(long player_id, short bytes, unsigned char *data)
{
//set skill points
sql_query_c account_query (&m_SQL_Conn);
long registered_starbase = *((long *) &data[0]);
sprintf(m_QueryStr, "UPDATE net7_user.avatar_level_info SET registered_starbase = '%ld' WHERE avatar_id = '%ld'",
registered_starbase, player_id);
account_query.run_query(m_QueryStr);
}
void SaveManager::HandleSaveEnergyLevels(long player_id, short bytes, unsigned char *data)
{
//set skill points
sql_query_c account_query (&m_SQL_Conn);
float energy = *((float *) &data[0]);
float shield = *((float *) &data[4]);
sprintf(m_QueryStr, "UPDATE net7_user.avatar_level_info SET reactor_level = '%f', shield_level = '%f' WHERE avatar_id = '%ld'",
energy, shield, player_id);
account_query.run_query(m_QueryStr);
}
| [
"kyp@mailinator.com"
] | kyp@mailinator.com |
48382679c3186fbf1be4ec8565e12827a678d325 | c4617bb18dee000848aee5593e8668c3d1516b97 | /Experiment_Controller_V6/Pixelfly/cameracontrol.h | 5a561213f34948a6f3ed34b16831ea0213e5865e | [] | no_license | liangqibox/Lithium6_ATI | 469f688dbea6a128b53e159cc4b9e9562f0a9640 | b81cea8895ed15db941019a8c00101499317b731 | refs/heads/master | 2020-12-26T10:32:39.611130 | 2020-01-31T18:26:17 | 2020-01-31T18:26:17 | 237,481,429 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,498 | h | #ifndef CAMERACONTROL_H
#define CAMERACONTROL_H
#include <QWidget>
#include <QThread>
#include <QFileDialog>
#include <QImage>
#include <QTimer>
#include <QDateTime>
#include "camera_screen.h"
#include "pixelfly_cam.h"
#include "include/image_save.h"
#include "include/png++/png.hpp"
const int Camera_Frame_Rate = 5;
namespace Ui {
class CameraControl;
}
class CameraControl : public QWidget
{
Q_OBJECT
public:
explicit CameraControl(QWidget *parent = 0);
~CameraControl();
signals:
void start_acquire(int);
void camera_force_trigger();
void set_trigger(int);
void set_exposure(int);
void recording_start();
void recording_stop();
void save_image(QString);
public slots:
void Reload(QString msg);
private slots:
void Load_default_setting();
void on_Preview_clicked();
void update_preview();
void preview_close();
void on_Connect_clicked();
void on_Reset_clicked();
void on_Arm_clicked();
void on_Path_clicked();
void on_Exposure_returnPressed();
void acquire_next_image();
void save_images(int i);
void on_Trigger_clicked();
void image_time_out();
void receive_image(QList<int> img_dat);
private:
Ui::CameraControl *ui;
int milisecondtowait;
int number_of_run;
int number_of_scan;
bool isArm;
QList<QList<int> > images_data;
Camera_Screen *preview;
QThread *Cam_thread;
Pixelfly_Cam *cam;
Image_Save *Image_Saver;
};
#endif // CAMERACONTROL_H
| [
"60519181+liangqibox@users.noreply.github.com"
] | 60519181+liangqibox@users.noreply.github.com |
6992829f1860823b17cb1fc52f7bffe47b8600a9 | f4db4250cb7cd32b8700db4de1ee23d3452c1596 | /Practica/Volumenes Finitos/OpenFoam/Ejercicio3_Temperatura/0.31/phi | c54b31566cd71c98130d593bf265df97db8a6ee0 | [] | no_license | santichialvo/MecanicaComputacional | cc7e7af64542d7a6149a865ab0b16124db90a0d7 | c7f63f6f39da1e7dcddfa4b0e83bb9179bdcff21 | refs/heads/master | 2021-01-10T04:00:05.616777 | 2015-12-08T02:45:23 | 2015-12-08T02:45:23 | 47,593,143 | 1 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 40,043 | /*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: 2.4.0 |
| \\ / A nd | Web: www.OpenFOAM.org |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class surfaceScalarField;
location "0.31";
object phi;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
dimensions [0 3 -1 0 0 0 0];
internalField nonuniform List<scalar>
3120
(
2.92648e-07
-2.98042e-07
3.0459e-07
-1.74431e-08
-1.05832e-07
4.58236e-07
-9.24306e-07
8.94715e-07
-2.05969e-06
1.2373e-06
-3.42309e-06
1.48515e-06
-4.95325e-06
1.6652e-06
-6.61415e-06
1.80694e-06
-8.38916e-06
1.93122e-06
-1.02709e-05
2.0476e-06
-1.22509e-05
2.15489e-06
-1.43118e-05
2.24319e-06
-1.64214e-05
2.2964e-06
-1.85289e-05
2.29464e-06
-2.05642e-05
2.21667e-06
-2.24384e-05
2.04233e-06
-2.40471e-05
1.75502e-06
-2.52769e-05
1.34463e-06
-2.60143e-05
8.10335e-07
-2.61541e-05
1.62393e-07
-2.56111e-05
-5.78664e-07
-2.43357e-05
-1.37318e-06
-2.23248e-05
-2.17145e-06
-1.96294e-05
-2.91516e-06
-1.63572e-05
-3.54214e-06
-1.26705e-05
-3.99345e-06
-8.77522e-06
-4.22115e-06
-4.9036e-06
-4.19569e-06
-1.29318e-06
-3.91173e-06
1.83566e-06
-3.3912e-06
4.30444e-06
-2.6773e-06
5.99437e-06
-1.83218e-06
6.85375e-06
-9.30582e-07
6.8996e-06
-4.82853e-08
6.21639e-06
7.4168e-07
4.95591e-06
1.36923e-06
3.33832e-06
1.75686e-06
1.66738e-06
1.80552e-06
4.66642e-07
1.38848e-06
4.6566e-07
2.25066e-08
-3.12578e-07
-7.04907e-07
7.18083e-07
-2.41372e-06
2.1225e-06
-5.01708e-06
3.41629e-06
-8.36054e-06
4.46153e-06
-1.228e-05
5.25554e-06
-1.66442e-05
5.85822e-06
-2.13641e-05
6.3389e-06
-2.63822e-05
6.74819e-06
-3.16554e-05
7.10823e-06
-3.71348e-05
7.4123e-06
-4.27497e-05
7.62949e-06
-4.83958e-05
7.71143e-06
-5.39277e-05
7.59985e-06
-5.91595e-05
7.23416e-06
-6.38676e-05
6.55934e-06
-6.78018e-05
5.53357e-06
-7.07008e-05
4.13619e-06
-7.23158e-05
2.37437e-06
-7.24284e-05
2.88781e-07
-7.08706e-05
-2.04222e-06
-6.75595e-05
-4.50425e-06
-6.2518e-05
-6.95159e-06
-5.58818e-05
-9.21716e-06
-4.79036e-05
-1.11267e-05
-3.89464e-05
-1.25167e-05
-2.94617e-05
-1.32539e-05
-1.99578e-05
-1.32542e-05
-1.09579e-05
-1.24971e-05
-2.95487e-06
-1.10335e-05
3.63395e-06
-8.98043e-06
8.5089e-06
-6.50935e-06
1.15139e-05
-3.82993e-06
1.26485e-05
-1.16716e-06
1.20714e-05
1.2552e-06
1.0098e-05
3.21777e-06
7.18721e-06
4.49586e-06
3.959e-06
4.83796e-06
1.39361e-06
3.9602e-06
1.67316e-06
-5.45328e-07
1.79496e-07
-2.3813e-06
2.62588e-06
-5.7238e-06
5.46836e-06
-1.03162e-05
8.03485e-06
-1.59416e-05
1.01236e-05
-2.23912e-05
1.17448e-05
-2.94935e-05
1.3003e-05
-3.71248e-05
1.40159e-05
-4.51959e-05
1.48683e-05
-5.36285e-05
1.5593e-05
-6.23306e-05
1.61701e-05
-7.11765e-05
1.65343e-05
-7.9992e-05
1.65888e-05
-8.85479e-05
1.62196e-05
-9.6561e-05
1.53119e-05
-0.000103703
1.37649e-05
-0.000109616
1.15078e-05
-0.000113939
8.51335e-06
-0.000116334
4.80989e-06
-0.000116511
4.91199e-07
-0.000114259
-4.27769e-06
-0.000109483
-9.2766e-06
-0.000102225
-1.42237e-05
-9.26734e-05
-1.88018e-05
-8.11677e-05
-2.26833e-05
-6.81901e-05
-2.55603e-05
-5.43415e-05
-2.71787e-05
-4.03048e-05
-2.73713e-05
-2.6795e-05
-2.60842e-05
-1.45018e-05
-2.33935e-05
-4.03009e-06
-1.95043e-05
4.15723e-06
-1.47327e-05
9.78427e-06
-9.47529e-06
1.2789e-05
-4.17205e-06
1.33334e-05
7.27905e-07
1.18009e-05
4.78004e-06
8.77374e-06
7.54454e-06
5.04788e-06
8.56077e-06
1.88233e-06
7.33704e-06
3.41585e-06
-1.21336e-06
1.29483e-06
-4.34559e-06
5.89673e-06
-9.5364e-06
1.06383e-05
-1.6281e-05
1.47833e-05
-2.42788e-05
1.81378e-05
-3.32811e-05
2.07629e-05
-4.30899e-05
2.28274e-05
-5.35623e-05
2.45051e-05
-6.45894e-05
2.59135e-05
-7.60666e-05
2.70902e-05
-8.78658e-05
2.79912e-05
-9.98125e-05
2.85053e-05
-0.000111671
2.84746e-05
-0.000123141
2.7719e-05
-0.000133858
2.60613e-05
-0.000143409
2.33516e-05
-0.000151354
1.94909e-05
-0.000157253
1.44508e-05
-0.000160698
8.29072e-06
-0.000161343
1.16962e-06
-0.000158938
-6.65051e-06
-0.000153359
-1.48265e-05
-0.000144639
-2.29225e-05
-0.000132976
-3.04527e-05
-0.000118745
-3.69135e-05
-0.000102488
-4.18266e-05
-8.48976e-05
-4.47868e-05
-6.67806e-05
-4.55115e-05
-4.90056e-05
-4.38838e-05
-3.24384e-05
-3.99821e-05
-1.78682e-05
-3.40894e-05
-5.93418e-06
-2.66738e-05
2.93786e-06
-1.83472e-05
8.58019e-06
-9.80878e-06
1.11059e-05
-1.78735e-06
1.09078e-05
4.99265e-06
8.62898e-06
9.82204e-06
5.17716e-06
1.19836e-05
1.99506e-06
1.07259e-05
5.25543e-06
-1.92424e-06
3.06696e-06
-6.44465e-06
1.06322e-05
-1.36015e-05
1.77565e-05
-2.25997e-05
2.37706e-05
-3.30369e-05
2.85793e-05
-4.46219e-05
3.23492e-05
-5.71379e-05
3.53432e-05
-7.0435e-05
3.78024e-05
-8.43974e-05
3.98768e-05
-9.8906e-05
4.16007e-05
-0.000113807
4.28959e-05
-0.000128888
4.35921e-05
-0.000143864
4.3459e-05
-0.000158374
4.22407e-05
-0.000171986
3.9691e-05
-0.000184219
3.56073e-05
-0.000194559
2.98609e-05
-0.000202496
2.24237e-05
-0.00020755
1.33878e-05
-0.000209313
2.97904e-06
-0.000207473
-8.44175e-06
-0.000201845
-2.04029e-05
-0.000192408
-3.23057e-05
-0.000179325
-4.3484e-05
-0.000162955
-5.32385e-05
-0.000143853
-6.08904e-05
-0.000122764
-6.58449e-05
-0.000100593
-6.76581e-05
-7.83556e-05
-6.61026e-05
-5.7104e-05
-6.12179e-05
-3.78421e-05
-5.33364e-05
-2.14281e-05
-4.30728e-05
-8.48579e-06
-3.12742e-05
6.61037e-07
-1.89425e-05
6.02781e-06
-7.14586e-06
7.97603e-06
3.05019e-06
7.17814e-06
1.06071e-05
4.62224e-06
1.45e-05
1.86418e-06
1.36742e-05
6.97655e-06
-2.64699e-06
5.50451e-06
-8.59344e-06
1.68726e-05
-1.77692e-05
2.68796e-05
-2.90689e-05
3.50534e-05
-4.19799e-05
4.14944e-05
-5.6169e-05
4.65396e-05
-7.14076e-05
5.05822e-05
-8.75499e-05
5.39459e-05
-0.000104485
5.68148e-05
-0.000122094
5.92129e-05
-0.000140207
6.10155e-05
-0.000158588
6.19812e-05
-0.000176912
6.17951e-05
-0.00019477
6.0115e-05
-0.000211674
5.66173e-05
-0.000227079
5.104e-05
-0.000240401
4.32191e-05
-0.000251054
3.31203e-05
-0.000258474
2.08619e-05
-0.000262166
6.72979e-06
-0.00026173
-8.82225e-06
-0.000256875
-2.51968e-05
-0.000247483
-4.16306e-05
-0.000233633
-5.72674e-05
-0.000215617
-7.11921e-05
-0.00019396
-8.24914e-05
-0.000169425
-9.03319e-05
-0.000142995
-9.40476e-05
-0.000115831
-9.32323e-05
-8.91991e-05
-8.78209e-05
-6.43641e-05
-7.81455e-05
-4.2469e-05
-6.4944e-05
-2.44099e-05
-4.93107e-05
-1.07352e-05
-3.25976e-05
-1.58184e-06
-1.6284e-05
3.33907e-06
-1.86038e-06
4.70765e-06
9.23108e-06
3.58008e-06
1.55964e-05
1.58326e-06
1.58389e-05
8.4426e-06
-3.36816e-06
8.6084e-06
-1.07424e-05
2.462e-05
-2.19398e-05
3.80099e-05
-3.5542e-05
4.86318e-05
-5.09267e-05
5.68821e-05
-6.77238e-05
6.33369e-05
-8.57012e-05
6.85594e-05
-0.000104728
7.29734e-05
-0.00012471
7.68e-05
-0.000145538
8.00457e-05
-0.000167044
8.25276e-05
-0.000188974
8.39197e-05
-0.000210975
8.38093e-05
-0.000232599
8.17555e-05
-0.000253306
7.73464e-05
-0.000272485
7.02493e-05
-0.000289482
6.02531e-05
-0.000303622
4.73056e-05
-0.00031424
3.15371e-05
-0.000320734
1.32775e-05
-0.000322579
-6.93739e-06
-0.000319347
-2.83694e-05
-0.000310785
-5.01197e-05
-0.000296842
-7.11335e-05
-0.000277699
-9.02605e-05
-0.000253799
-0.00010632
-0.000225879
-0.000118186
-0.000194966
-0.000124901
-0.000162356
-0.00012579
-0.00012954
-0.000120591
-9.80945e-05
-0.00010955
-6.9526e-05
-9.34758e-05
-4.51011e-05
-7.37027e-05
-2.56918e-05
-5.19786e-05
-1.16697e-05
-3.02832e-05
-2.87103e-06
-1.06428e-05
1.36788e-06
4.99254e-06
2.16621e-06
1.47791e-05
1.20792e-06
1.69289e-05
9.5647e-06
-4.07693e-06
1.23675e-05
-1.2851e-05
3.3845e-05
-2.603e-05
5.11066e-05
-4.18923e-05
6.44624e-05
-5.97141e-05
7.47046e-05
-7.90966e-05
8.27174e-05
-9.98144e-05
8.92746e-05
-0.000121761
9.4919e-05
-0.000144871
9.99108e-05
-0.000169054
0.000104232
-0.000194151
0.000107628
-0.0002199
0.000109674
-0.000245926
0.000109845
-0.000271745
0.000107586
-0.000296765
0.000102382
-0.000320308
9.38141e-05
-0.000341636
8.16106e-05
-0.000359979
6.56851e-05
-0.000374559
4.61652e-05
-0.00038465
2.34096e-05
-0.00038959
-1.9751e-06
-0.000388796
-2.91151e-05
-0.000381856
-5.69925e-05
-0.000368564
-8.43554e-05
-0.000348939
-0.000109812
-0.000323293
-0.000131893
-0.000292266
-0.00014914
-0.000256869
-0.000160227
-0.000218481
-0.000164113
-0.000178799
-0.000160211
-0.000139737
-0.000148556
-0.000103242
-0.000129921
-7.10673e-05
-0.000105832
-4.45454e-05
-7.84616e-05
-2.44059e-05
-5.03913e-05
-1.0697e-05
-2.43291e-05
-2.81254e-06
-2.88296e-06
4.25743e-07
1.1536e-05
7.65114e-07
1.6676e-05
1.02809e-05
-4.75923e-06
1.67573e-05
-1.48749e-05
4.44859e-05
-2.99532e-05
6.60877e-05
-4.79889e-05
8.24583e-05
-6.81696e-05
9.48834e-05
-9.00786e-05
0.000104622
-0.000113506
0.000112697
-0.000138379
0.000119788
-0.000164667
0.000126197
-0.000192307
0.00013187
-0.00022115
0.00013647
-0.000250931
0.000139454
-0.000281255
0.000140168
-0.000311595
0.000137925
-0.000341304
0.000132092
-0.000369631
0.000122146
-0.000395752
0.000107739
-0.000418799
8.87396e-05
-0.000437884
6.5265e-05
-0.00045214
3.76991e-05
-0.000460781
6.70829e-06
-0.00046312
-2.67519e-05
-0.000458581
-6.15065e-05
-0.000446769
-9.61366e-05
-0.000427514
-0.000129029
-0.000400931
-0.00015843
-0.000367487
-0.000182532
-0.00032807
-0.000199588
-0.000284034
-0.000208089
-0.000237206
-0.000206977
-0.000189807
-0.000195894
-0.000144268
-0.000175401
-0.000102953
-0.000147092
-6.78248e-05
-0.00011354
-4.01527e-05
-7.80223e-05
-2.03391e-05
-4.41124e-05
-7.9154e-06
-1.52887e-05
-1.65919e-06
5.29009e-06
2.58472e-07
1.47961e-05
1.05335e-05
-5.39643e-06
2.17366e-05
-1.67607e-05
5.64446e-05
-3.36098e-05
8.28255e-05
-5.36833e-05
0.000102484
-7.60955e-05
0.000117291
-0.000100422
0.00012894
-0.000126476
0.000138743
-0.000154222
0.000147528
-0.000183667
0.000155635
-0.000214775
0.000162971
-0.000247409
0.000169094
-0.000281294
0.000173327
-0.000316004
0.000174864
-0.000350966
0.00017287
-0.00038547
0.000166572
-0.000418686
0.000155335
-0.000449702
0.000138725
-0.00047756
0.000116562
-0.000501286
8.89571e-05
-0.000519927
5.63249e-05
-0.000532611
1.93876e-05
-0.00053856
-2.08384e-05
-0.000537081
-6.30291e-05
-0.000527617
-0.000105642
-0.000509794
-0.000146887
-0.000483474
-0.000184775
-0.000448846
-0.00021717
-0.000406536
-0.000241895
-0.000357713
-0.000256894
-0.000304168
-0.000260489
-0.000248313
-0.000251706
-0.000193036
-0.000230629
-0.000141394
-0.000198681
-9.61746e-05
-0.000158705
-5.9431e-05
-0.000114717
-3.21437e-05
-7.13603e-05
-1.41253e-05
-3.32765e-05
-4.1589e-06
-4.64422e-06
-3.27139e-07
1.09457e-05
1.02494e-05
-5.96542e-06
2.72426e-05
-1.84456e-05
6.95808e-05
-3.68855e-05
0.000101141
-5.88055e-05
0.000124348
-8.32621e-05
0.000141739
-0.000109831
0.000155499
-0.000138352
0.000167252
-0.000168826
0.00017799
-0.000201294
0.000188091
-0.000235739
0.000197401
-0.000272025
0.00020536
-0.000309858
0.000211132
-0.00034877
0.00021374
-0.000388128
0.000212182
-0.000427143
0.000205532
-0.000464908
0.000193035
-0.000500436
0.000174177
-0.00053271
0.000148745
-0.000560716
0.000116861
-0.000583484
7.899e-05
-0.00060012
3.59226e-05
-0.000609823
-1.125e-05
-0.00061186
-6.11286e-05
-0.000605565
-0.000112082
-0.000590365
-0.000162229
-0.000565841
-0.000209431
-0.000531816
-0.000251311
-0.000488499
-0.000285305
-0.000436661
-0.000308796
-0.000377819
-0.000319369
-0.000314341
-0.000315198
-0.000249415
-0.000295545
-0.000186781
-0.000261284
-0.000130216
-0.000215227
-8.28515e-05
-0.00016203
-4.65733e-05
-0.000107591
-2.17205e-05
-5.80804e-05
-7.19931e-06
-1.91023e-05
-1.02791e-06
4.68728e-06
9.32414e-06
-6.43971e-06
3.31882e-05
-1.98586e-05
8.37067e-05
-3.96517e-05
0.000120798
-6.31646e-05
0.000147798
-8.94101e-05
0.000167973
-0.000117967
0.000184042
-0.000148698
0.000197968
-0.000181634
0.000210911
-0.000216838
0.000223277
-0.0002543
0.000234838
-0.000293866
0.000244892
-0.000335204
0.000252424
-0.000377789
0.000256265
-0.000420909
0.000255227
-0.000463697
0.000248229
-0.000505175
0.000234403
-0.000544302
0.000213178
-0.000580044
0.000184343
-0.000611415
0.000148071
-0.000637512
0.000104911
-0.000657515
5.57485e-05
-0.000670691
1.74864e-06
-0.000676364
-5.56704e-05
-0.000673839
-0.000114843
-0.000662401
-0.00017391
-0.000641359
-0.000230715
-0.000610119
-0.000282783
-0.000568347
-0.000327287
-0.000516205
-0.000361124
-0.000454625
-0.000381099
-0.000385589
-0.000384346
-0.000312269
-0.000368939
-0.000238908
-0.00033468
-0.000170313
-0.000283818
-0.000110987
-0.000221322
-6.4148e-05
-0.000154379
-3.10503e-05
-9.11063e-05
-1.0952e-05
-3.90949e-05
-1.89547e-06
-4.53663e-06
7.6059e-06
-6.79107e-06
3.94603e-05
-2.09246e-05
9.85856e-05
-4.17729e-05
0.000141502
-6.65579e-05
0.000172514
-9.42603e-05
0.000195661
-0.00012446
0.000214225
-0.000157034
0.000230523
-0.000192026
0.000245883
-0.000229504
0.00026073
-0.000269444
0.000274744
-0.000311655
0.000287056
-0.000355745
0.000296451
-0.000401111
0.000301549
-0.000446958
0.000300971
-0.000492336
0.000293486
-0.000536211
0.000278139
-0.000577531
0.000254342
-0.000615299
0.000221939
-0.000648626
0.000181214
-0.00067676
0.000132851
-0.000699065
7.7854e-05
-0.000714981
1.74637e-05
-0.000723968
-4.69041e-05
-0.000725418
-0.000113643
-0.000718576
-0.000181026
-0.000702544
-0.000247039
-0.000676335
-0.000309293
-0.000639015
-0.000364909
-0.000589963
-0.000410466
-0.000529241
-0.000442089
-0.000458033
-0.000455794
-0.000379019
-0.000448151
-0.000296535
-0.000417312
-0.000216239
-0.000364199
-0.000144167
-0.000293411
-8.53419e-05
-0.000213166
-4.24894e-05
-0.000133862
-1.56168e-05
-6.58031e-05
-2.9943e-06
-1.74215e-05
4.88284e-06
-6.9919e-06
4.59197e-05
-2.15698e-05
0.000113932
-4.31149e-05
0.000162897
-6.87829e-05
0.000198108
-9.75316e-05
0.000224394
-0.000128934
0.00024561
-0.000162864
0.000264434
-0.00019936
0.000282358
-0.000238471
0.000299811
-0.000280135
0.000316365
-0.000324102
0.000330965
-0.000369902
0.000342172
-0.000416842
0.00034839
-0.00046404
0.000348049
-0.000510479
0.000339789
-0.000555095
0.000322606
-0.000596865
0.000295956
-0.000634889
0.000259806
-0.000668446
0.000214614
-0.000697006
0.000161254
-0.000720194
0.000100885
-0.000737702
3.4831e-05
-0.00074923
-3.55115e-05
-0.000754365
-0.000108679
-0.00075243
-0.00018317
-0.00074244
-0.000257265
-0.00072312
-0.000328879
-0.000692987
-0.000395334
-0.000650596
-0.000453173
-0.000594937
-0.000498079
-0.000526005
-0.000525063
-0.00044544
-0.000529044
-0.000357038
-0.00050601
-0.000266806
-0.000454658
-0.000182201
-0.000378142
-0.000110428
-0.000284953
-5.63674e-05
-0.000187808
-2.1397e-05
-0.000100531
-4.39617e-06
-3.47975e-05
8.8074e-07
-7.01805e-06
5.24059e-05
-2.17288e-05
0.000129416
-4.35571e-05
0.000184574
-6.96554e-05
0.000224132
-9.89656e-05
0.000253688
-0.000131041
0.000277667
-0.000165732
0.000299105
-0.000203046
0.000319649
-0.000242988
0.000339721
-0.000285438
0.000358766
-0.000330068
0.000375528
-0.00037632
0.000388336
-0.000423414
0.000395374
-0.000470388
0.000394896
-0.000516185
0.000385453
-0.000559751
0.000366039
-0.000600138
0.00033622
-0.000636593
0.000296155
-0.000668606
0.000246542
-0.000695916
0.000188494
-0.000718449
0.00012336
-0.0007362
5.2563e-05
-0.000749168
-2.25325e-05
-0.000757214
-0.000100662
-0.000759855
-0.000180591
-0.000756181
-0.00026103
-0.000744804
-0.000340381
-0.00072386
-0.000416442
-0.000691184
-0.000486064
-0.000644669
-0.000544866
-0.000582888
-0.000587178
-0.000505931
-0.000606391
-0.000416318
-0.000596049
-0.000319599
-0.00055178
-0.000224106
-0.000473938
-0.000139293
-0.000369898
-7.28804e-05
-0.000254116
-2.84675e-05
-0.000144607
-6.17159e-06
-5.75986e-05
-4.73527e-06
-6.85185e-06
5.87414e-05
-2.13516e-05
0.000144674
-4.30048e-05
0.00020608
-6.90275e-05
0.00025008
-9.83515e-05
0.000282996
-0.000130495
0.000309794
-0.000165261
0.000333853
-0.000202601
0.000356966
-0.000242457
0.000379544
-0.000284629
0.000400888
-0.000328709
0.000419536
-0.000374055
0.00043359
-0.000419811
0.000441019
-0.000464969
0.000439935
-0.000508468
0.000428838
-0.000549309
0.000406783
-0.000586661
0.000373505
-0.000619953
0.000329418
-0.000648909
0.000275506
-0.000673538
0.000213161
-0.000694056
0.000143941
-0.000710768
6.93836e-05
-0.000723979
-9.17262e-06
-0.000733848
-9.0679e-05
-0.00074017
-0.000174169
-0.000742263
-0.00025885
-0.000738835
-0.000343743
-0.000727904
-0.000427341
-0.000706836
-0.000507149
-0.00067261
-0.000579185
-0.000622376
-0.000637606
-0.000554386
-0.000674709
-0.000469214
-0.000681682
-0.000370981
-0.000650561
-0.000267914
-0.000577529
-0.000171256
-0.000466891
-9.19872e-05
-0.000333349
-3.69298e-05
-0.000199222
-8.37364e-06
-8.68063e-05
-1.23537e-05
-6.48496e-06
6.47411e-05
-2.04112e-05
0.000159325
-4.14017e-05
0.000226932
-6.68066e-05
0.000275416
-9.55529e-05
0.00031173
-0.000127108
0.000341337
-0.000161205
0.000367936
-0.00019772
0.000393461
-0.000236511
0.000418302
-0.000277299
0.000441625
-0.000319599
0.000461765
-0.000362702
0.000476602
-0.000405712
0.000483926
-0.00044762
0.000481741
-0.000487409
0.000468541
-0.000524179
0.000443503
-0.000557254
0.000406576
-0.00058626
0.000358471
-0.000611145
0.000300489
-0.00063215
0.000234303
-0.000649739
0.000161689
-0.00066448
8.4295e-05
-0.00067693
3.45556e-06
-0.000687487
-7.99194e-05
-0.000696267
-0.000165168
-0.00070293
-0.000251964
-0.000706469
-0.000339979
-0.000705061
-0.000428531
-0.000695967
-0.00051605
-0.000675607
-0.000599404
-0.000639974
-0.000673196
-0.000585495
-0.000729308
-0.000510415
-0.000757109
-0.000416536
-0.000745026
-0.000310727
-0.000684063
-0.000204954
-0.000573281
-0.00011332
-0.000425114
-4.67843e-05
-0.000265225
-1.10416e-05
-0.000123363
-2.23919e-05
-5.92054e-06
7.02229e-05
-1.89093e-05
0.000172984
-3.87408e-05
0.000246639
-6.297e-05
0.000299584
-9.05278e-05
0.00033928
-0.000120818
0.000371621
-0.000153486
0.000400597
-0.000188313
0.000428275
-0.00022507
0.000455031
-0.000263402
0.00047991
-0.000302768
0.000501063
-0.000342429
0.000516179
-0.000381498
0.000522903
-0.000419011
0.000519174
-0.000454054
0.000503531
-0.000485869
0.00047531
-0.000513956
0.000434715
-0.000538136
0.000382759
-0.000558548
0.000321057
-0.000575603
0.000251557
-0.000589923
0.000176226
-0.000602256
9.68126e-05
-0.000613316
1.46632e-05
-0.000623661
-6.93538e-05
-0.000633688
-0.000154878
-0.000643426
-0.000241951
-0.000652284
-0.000330829
-0.000658841
-0.000421661
-0.000660611
-0.000513949
-0.00065392
-0.00060576
-0.000634073
-0.000692751
-0.000596009
-0.000767208
-0.00053564
-0.00081757
-0.000451891
-0.000829233
-0.000349081
-0.00078769
-0.000238386
-0.000684901
-0.000136126
-0.00052779
-5.78914e-05
-0.000342892
-1.41838e-05
-0.000168065
-3.52671e-05
-5.17447e-06
7.50191e-05
-1.68797e-05
0.000185287
-3.50711e-05
0.000264724
-5.75766e-05
0.000322038
-8.33432e-05
0.000365044
-0.000111703
0.000399981
-0.000142204
0.000431097
-0.000174523
0.000460588
-0.000208344
0.00048883
-0.000243255
0.000514777
-0.000278689
0.000536431
-0.000313925
0.000551336
-0.000348134
0.000557031
-0.000380462
0.00055144
-0.000410142
0.000533185
-0.000436592
0.000501786
-0.000459502
0.00045771
-0.000478864
0.000402259
-0.000494956
0.000337332
-0.000508297
0.000265111
-0.000519572
0.000187722
-0.000529561
0.000106997
-0.000539029
2.43004e-05
-0.000548654
-5.95308e-05
-0.000559011
-0.0001443
-0.000570427
-0.0002303
-0.000582762
-0.000318234
-0.000595149
-0.000408977
-0.000605646
-0.000503098
-0.000610934
-0.000600055
-0.000606189
-0.000697038
-0.000585429
-0.000787544
-0.000542606
-0.00086016
-0.000473682
-0.000898326
-0.000379596
-0.000882511
-0.00026915
-0.000796505
-0.000159286
-0.00063845
-6.99546e-05
-0.00043173
-1.7773e-05
-0.000221456
-5.1368e-05
-4.27544e-06
7.89888e-05
-1.439e-05
0.000195911
-3.05003e-05
0.00028075
-5.07705e-05
0.000342268
-7.41805e-05
0.000388458
-9.99919e-05
0.000425801
-0.000127647
0.000458759
-0.000156721
0.000489661
-0.000186821
0.000518913
-0.000217498
0.000545416
-0.000248201
0.000567073
-0.000278274
0.000581336
-0.000307004
0.000585689
-0.000333695
0.000578081
-0.000357766
0.000557249
-0.000378836
0.000522901
-0.000396773
0.000475746
-0.000411709
0.000417344
-0.000424018
0.000349821
-0.000434246
0.000275533
-0.000443055
0.000196722
-0.000451161
0.000115277
-0.000459281
3.25805e-05
-0.000468105
-5.05614e-05
-0.000478283
-0.00013398
-0.000490345
-0.000218087
-0.000504549
-0.000303861
-0.000520608
-0.000392711
-0.000537296
-0.000486133
-0.000551985
-0.000584988
-0.00056025
-0.000688274
-0.000555844
-0.000791369
-0.000531398
-0.00088408
-0.000480261
-0.000949265
-0.000399695
-0.000963548
-0.000294879
-0.000902546
-0.000181437
-0.00075308
-8.25293e-05
-0.000530357
-2.17454e-05
-0.000283733
-7.10199e-05
-3.26367e-06
8.20275e-05
-1.15391e-05
0.000204593
-2.51933e-05
0.000294345
-4.27789e-05
0.000359826
-6.33304e-05
0.000409019
-8.60466e-05
0.000448532
-0.00011027
0.000482996
-0.000135478
0.000514874
-0.000161215
0.000544639
-0.000187026
0.000571191
-0.00021241
0.000592399
-0.000236822
0.000605677
-0.000259711
0.000608511
-0.000280581
0.000598909
-0.000299065
0.000575734
-0.000314984
0.000538871
-0.00032837
0.000489235
-0.000339466
0.000428581
-0.000348683
0.0003592
-0.000356536
0.000283549
-0.000363603
0.000203937
-0.000370475
0.000122277
-0.000377748
3.9959e-05
-0.000386023
-4.22027e-05
-0.00039593
-0.000124003
-0.000408103
-0.000205853
-0.000423076
-0.00028882
-0.000441071
-0.000374621
-0.000461599
-0.00046545
-0.000482908
-0.000563416
-0.000501373
-0.000669384
-0.000511094
-0.000781039
-0.000504123
-0.000890337
-0.000471858
-0.00098098
-0.0004081
-0.00102739
-0.000313715
-0.000998018
-0.000201198
-0.000867073
-9.50664e-05
-0.000636555
-2.60052e-05
-0.000354694
-9.44575e-05
-2.18856e-06
8.40766e-05
-8.45359e-06
0.000211156
-1.93663e-05
0.000305224
-3.39049e-05
0.000374353
-5.11831e-05
0.000426311
-7.03531e-05
0.000467722
-9.06686e-05
0.000503332
-0.000111522
0.000535738
-0.000132414
0.000565522
-0.000152903
0.000591647
-0.000172574
0.000612014
-0.00019103
0.000624064
-0.000207915
0.000625331
-0.000222957
0.000613912
-0.000236016
0.000588795
-0.000247108
0.000550016
-0.000256413
0.000498639
-0.000264246
0.000436546
-0.000271018
0.000366114
-0.000277175
0.000289844
-0.000283173
0.000210051
-0.000289449
0.000128643
-0.000296436
4.70111e-05
-0.0003046
-3.40005e-05
-0.000314474
-0.000114112
-0.000326684
-0.00019364
-0.000341916
-0.000273591
-0.000360756
-0.000355779
-0.000383351
-0.000442815
-0.00040885
-0.000537791
-0.000434651
-0.000643296
-0.00045568
-0.000759483
-0.000464119
-0.00088113
-0.000450218
-0.000994069
-0.000404914
-0.00107236
-0.000324647
-0.00107905
-0.000217436
-0.000975835
-0.000107001
-0.000747449
-3.04381e-05
-0.000433763
-0.000121814
-1.10588e-06
8.51286e-05
-5.28108e-06
0.000215516
-1.32779e-05
0.000313214
-2.45154e-05
0.00038559
-3.82119e-05
0.000440027
-5.34951e-05
0.00048303
-6.95491e-05
0.00051941
-8.56979e-05
0.000551901
-0.000101413
0.000581232
-0.000116291
0.000606494
-0.000130021
0.000625689
-0.000142378
0.000636352
-0.00015322
0.000636111
-0.000162513
0.000623169
-0.000170339
0.000596625
-0.000176902
0.00055663
-0.000182504
0.000504334
-0.00018751
0.000441673
-0.000192303
0.000371036
-0.000197246
0.000294908
-0.00020266
0.000215566
-0.000208828
0.000134885
-0.00021602
5.42505e-05
-0.000224541
-2.54569e-05
-0.00023479
-0.000103863
-0.000247312
-0.00018114
-0.000262811
-0.000258131
-0.00028207
-0.00033657
-0.000305699
-0.000419228
-0.00033363
-0.000509849
-0.000364331
-0.000612454
-0.000393852
-0.000729579
-0.000415092
-0.000859179
-0.000417961
-0.000990253
-0.000391336
-0.00109828
-0.000327579
-0.00114315
-0.000229469
-0.00107533
-0.000117869
-0.000859807
-3.49359e-05
-0.000520069
-0.000153136
-7.5185e-08
8.52285e-05
-2.18363e-06
0.000217697
-7.21811e-06
0.000318267
-1.50278e-05
0.000393414
-2.49551e-05
0.000449981
-3.61301e-05
0.00049423
-4.76924e-05
0.000530999
-5.8918e-05
0.000563144
-6.92663e-05
0.000591577
-7.83818e-05
0.000615579
-8.60743e-05
0.000633326
-9.22958e-05
0.000642507
-9.71261e-05
0.000640881
-0.000100763
0.000626771
-0.000103506
0.000599371
-0.000105728
0.000558899
-0.000107838
0.00050653
-0.000110236
0.000444181
-0.000113273
0.000374194
-0.000117225
0.000298975
-0.000122295
0.000220734
-0.000128628
0.000141294
-0.000136351
6.20231e-05
-0.000145621
-1.61608e-05
-0.000156691
-9.27871e-05
-0.000169977
-0.000167872
-0.000186107
-0.000242043
-0.000205904
-0.000316839
-0.000230231
-0.000394981
-0.000259601
-0.000480541
-0.000293446
-0.000578586
-0.000329051
-0.000693748
-0.000360449
-0.000827199
-0.000377929
-0.000971813
-0.000369184
-0.00110608
-0.000323154
-0.00118908
-0.000237144
-0.00116235
-0.000127419
-0.000970375
-3.94385e-05
-0.000612554
-0.00018844
8.44204e-07
8.4477e-05
6.70682e-07
0.000217846
-1.49791e-06
0.000320474
-5.89615e-06
0.000397833
-1.19995e-05
0.000456104
-1.89663e-05
0.000501229
-2.59252e-05
0.00053799
-3.21298e-05
0.000569366
-3.70396e-05
0.000596485
-4.03569e-05
0.000618869
-4.20121e-05
0.00063493
-4.21333e-05
0.000642565
-4.10108e-05
0.000639701
-3.90628e-05
0.00062479
-3.67901e-05
0.000597101
-3.47231e-05
0.000556875
-3.33671e-05
0.000505251
-3.31535e-05
0.000444071
-3.44078e-05
0.000375562
-3.73401e-05
0.000302023
-4.20589e-05
0.000225558
-4.86028e-05
0.000147926
-5.69884e-05
7.04724e-05
-6.72555e-05
-5.85643e-06
-7.952e-05
-8.04996e-05
-9.40526e-05
-0.00015333
-0.000111348
-0.000224767
-0.000132143
-0.000296097
-0.000157362
-0.000369848
-0.000187859
-0.00045014
-0.000223817
-0.000542685
-0.0002637
-0.00065377
-0.000302909
-0.000787566
-0.000332693
-0.000941145
-0.000340415
-0.00109726
-0.000312426
-0.0012166
-0.000240738
-0.0012346
-0.000135677
-0.00107612
-4.39928e-05
-0.000710056
-0.000227798
1.59512e-06
8.30303e-05
3.11259e-06
0.000216234
3.56436e-06
0.000320079
2.40143e-06
0.000399008
3.111e-08
0.000458471
-2.74473e-06
0.000504052
-5.09484e-06
0.000540381
-6.28419e-06
0.000570571
-5.78179e-06
0.000595981
-3.35147e-06
0.000616416
9.60565e-07
0.000630575
6.86046e-06
0.000636605
1.38655e-05
0.000632639
2.13584e-05
0.00061726
2.86549e-05
0.000589801
3.50816e-05
0.000550484
4.0041e-05
0.000500364
4.30611e-05
0.000441153
4.38214e-05
0.00037492
4.215e-05
0.000303815
3.79978e-05
0.000229826
3.13958e-05
0.000154632
2.24038e-05
7.95492e-05
1.10642e-05
5.54062e-06
-2.63055e-06
-6.67631e-05
-1.88074e-05
-0.000137112
-3.7803e-05
-0.000205761
-6.01929e-05
-0.00027374
-8.68021e-05
-0.000343308
-0.000118599
-0.000418443
-0.000156257
-0.000505124
-0.000199239
-0.000610791
-0.00024437
-0.000742162
-0.000284284
-0.000900479
-0.000306789
-0.00107364
-0.000296548
-0.00122608
-0.000240763
-0.00129047
-0.000142907
-0.00117432
-4.87918e-05
-0.00081138
-0.000271483
2.11903e-06
8.10941e-05
4.95384e-06
0.000213254
7.61313e-06
0.000317495
9.37461e-06
0.000397274
1.05303e-05
0.000457326
1.17865e-05
0.000502825
1.39369e-05
0.000538257
1.7685e-05
0.000566838
2.35075e-05
0.000590157
3.15701e-05
0.000608329
4.17216e-05
0.000620378
5.35281e-05
0.000624735
6.63378e-05
0.000619766
7.93575e-05
0.000604195
9.17424e-05
0.000577405
0.000102686
0.000539568
0.000111496
0.000491624
0.000117645
0.000435105
0.000120791
0.000371896
0.000120769
0.000303968
0.00011755
0.000233173
0.000111197
0.000161103
0.000101815
8.90371e-05
8.95035e-05
1.79426e-05
7.43241e-05
-5.15106e-05
5.62601e-05
-0.000118992
3.51479e-05
-0.000184621
1.06188e-05
-0.00024922
-1.79589e-05
-0.000314778
-5.14794e-05
-0.000385011
-9.08456e-05
-0.000465868
-0.000136269
-0.000565435
-0.000185913
-0.000692372
-0.000234052
-0.000851738
-0.000269606
-0.00103703
-0.000276479
-0.00121827
-0.000237751
-0.00132882
-0.000149522
-0.00126244
-5.41966e-05
-0.000915283
-0.000320123
2.35727e-06
7.89278e-05
6.01314e-06
0.000209428
1.03049e-05
0.000313299
1.44997e-05
0.000393126
1.8816e-05
0.000453031
2.38602e-05
0.000497791
3.03402e-05
0.000531789
3.88817e-05
0.000558303
4.98822e-05
0.000579149
6.3425e-05
0.000594756
7.92597e-05
0.00060449
9.68326e-05
0.000607094
0.000115352
0.000601179
0.000133879
0.000585616
0.00015143
0.000559834
0.000167076
0.000523941
0.000180026
0.000478735
0.000189683
0.000425545
0.000195656
0.000366044
0.000197751
0.000302005
0.000195926
0.000235131
0.000190244
0.000166912
0.00018082
9.85795e-05
0.000167778
3.10894e-05
0.00015123
-3.48733e-05
0.000131253
-9.89495e-05
0.000107833
-0.000161159
8.08089e-05
-0.000222189
4.9794e-05
-0.000283798
1.41028e-05
-0.000349399
-2.71739e-05
-0.0004247
-7.47242e-05
-0.000517983
-0.000127869
-0.000639184
-0.000182621
-0.000796531
-0.000229564
-0.000989129
-0.000252761
-0.00119405
-0.00023202
-0.00134879
-0.000155939
-0.001338
-6.0713e-05
-0.00102033
-0.000374841
2.23803e-06
7.68555e-05
6.07983e-06
0.000205437
1.12491e-05
0.000308242
1.72216e-05
0.000387215
2.42067e-05
0.000446065
3.27059e-05
0.000489296
4.32908e-05
0.000521205
5.64536e-05
0.000545136
7.24745e-05
0.000563114
9.13336e-05
0.000575865
0.000112682
0.000583088
0.000135862
0.000583845
0.000159972
0.000576998
0.000183959
0.000561572
0.000206724
0.000537039
0.000227231
0.000503443
0.000244592
0.000461421
0.000258124
0.000412098
0.000267365
0.000356911
0.000272064
0.000297431
0.000272134
0.000235189
0.000267608
0.000171564
0.000258588
0.000107719
0.000245196
4.45756e-05
0.000227574
-1.71982e-05
0.00020588
-7.72014e-05
0.000180228
-0.000135461
0.000150643
-0.000192591
0.000116994
-0.000250179
7.88681e-05
-0.00031135
3.55079e-05
-0.00038145
-1.39971e-05
-0.000468588
-6.98846e-05
-0.000583319
-0.000129888
-0.000736216
-0.000186661
-0.000931526
-0.000225324
-0.00115431
-0.00022343
-0.00134953
-0.000162353
-0.00139835
-6.88934e-05
-0.0011246
-0.000437313
1.6587e-06
7.52935e-05
4.88025e-06
0.00020215
9.97821e-06
0.00030327
1.69193e-05
0.000380349
2.59808e-05
0.000437024
3.75444e-05
0.000477728
5.19888e-05
0.00050675
6.96068e-05
0.000527505
9.0507e-05
0.000542195
0.000114534
0.000551805
0.00014123
0.000556339
0.000169849
0.00055516
0.000199403
0.000547371
0.000228756
0.000532157
0.000256723
0.000509033
0.000282179
0.00047798
0.000304145
0.000439485
0.000321849
0.000394459
0.000334743
0.000344107
0.000342494
0.000289786
0.000344951
0.000232846
0.000342094
0.000174537
0.000333995
0.000115933
0.000320759
5.78968e-05
0.000302541
1.04992e-06
0.000279574
-5.41935e-05
0.000252073
-0.000107924
0.000220224
-0.00016074
0.000184131
-0.000214127
0.000143657
-0.000270965
9.82704e-05
-0.000336193
4.70333e-05
-0.000417484
-1.09407e-05
-0.000525405
-7.49811e-05
-0.000671975
-0.000140094
-0.000865706
-0.000193324
-0.00109996
-0.000211149
-0.0013302
-0.000168427
-0.00144045
-7.91408e-05
-0.00122536
-0.000509664
4.5559e-07
7.48266e-05
2.0186e-06
0.00020069
5.87893e-06
0.00029953
1.28485e-05
0.00037346
2.33392e-05
0.000426569
3.7575e-05
0.000463477
5.56644e-05
0.000488636
7.76185e-05
0.000505529
0.000103308
0.000516481
0.000132398
0.000522681
0.000164307
0.000524381
0.000198199
0.000521204
0.000233027
0.000512473
0.0002676
0.000497519
0.000300678
0.000475906
0.000331071
0.000447565
0.000357729
0.000412839
0.000379791
0.000372439
0.000396621
0.000327344
0.000407799
0.000278691
0.000413091
0.000227645
0.000412413
0.000175305
0.000405785
0.000122639
0.000393336
7.04284e-05
0.000375251
1.92341e-05
0.000351741
-3.0644e-05
0.000323113
-7.93039e-05
0.00028972
-0.000127383
0.000251849
-0.000176328
0.000209592
-0.000228825
0.000162646
-0.000289405
0.000110133
-0.000365146
5.07514e-05
-0.00046614
-1.61811e-05
-0.000604918
-8.816e-05
-0.000793111
-0.000154984
-0.00103197
-0.000193415
-0.00128989
-0.000172931
-0.00146079
-9.13867e-05
-0.00131864
-0.000594089
-1.66377e-06
7.63383e-05
-3.13423e-06
0.00020255
-1.91864e-06
0.000298409
4.05977e-06
0.000367544
1.53586e-05
0.000415292
3.19617e-05
0.000446887
5.35866e-05
0.000466981
7.98565e-05
0.00047923
0.000110333
0.000485977
0.000144454
0.000488527
0.000181488
0.000487303
0.000220515
0.000482119
0.000260438
0.000472481
0.000300041
0.000457847
0.000338063
0.000437829
0.000373279
0.000412314
0.000404589
0.000381519
0.00043107
0.000345974
0.000452006
0.000306445
0.000466895
0.000263854
0.000475429
0.000219169
0.000477464
0.000173327
0.000472989
0.000127162
0.000462116
8.13496e-05
0.000445043
3.63584e-05
0.000422036
-7.64384e-06
0.000393473
-5.07901e-05
0.000359785
-9.37765e-05
0.000321374
-0.000138035
0.000278478
-0.00018609
0.00023095
-0.000242078
0.000177987
-0.000312404
0.000118028
-0.000406352
4.93117e-05
-0.000536138
-2.80821e-05
-0.000715166
-0.000107446
-0.000951423
-0.000167316
-0.0012277
-0.000173365
-0.0014552
-0.000104644
-0.00139872
-0.000692011
-5.29975e-06
8.12614e-05
-1.16401e-05
0.000209811
-1.46822e-05
0.000301542
-1.06861e-05
0.000363561
9.4305e-07
0.000403596
1.98174e-05
0.000428031
4.50826e-05
0.000441743
7.58152e-05
0.00044848
0.000111203
0.000450564
0.00015042
0.000449284
0.000192565
0.000445121
0.000236626
0.000438005
0.00028148
0.000427564
0.000325909
0.000413353
0.000368657
0.000395016
0.000408509
0.000372413
0.000444349
0.000345647
0.00047522
0.000315089
0.000500361
0.000281305
0.000519215
0.000245011
0.00053142
0.000206977
0.000536794
0.000167961
0.000535307
0.000128645
0.000527067
8.95701e-05
0.000512297
5.10895e-05
0.000491317
1.32831e-05
0.000464522
-2.40876e-05
0.000432361
-6.17529e-05
0.000395264
-0.000101112
0.00035349
-0.000144529
0.000306916
-0.000195748
0.000254738
-0.00026048
0.000195204
-0.000347015
0.000125765
-0.000466649
4.43233e-05
-0.000633186
-4.65164e-05
-0.000859556
-0.000128543
-0.00114295
-0.000165651
-0.00141863
-0.00011651
-0.00145763
-0.000802996
-1.15196e-05
9.21226e-05
-2.52759e-05
0.000225381
-3.43844e-05
0.000310696
-3.30408e-05
0.000362211
-2.10731e-05
0.000391527
3.16537e-07
0.000406542
2.96232e-05
0.000412505
6.52424e-05
0.000412898
0.000105852
0.000409936
0.000150368
0.000404748
0.000197715
0.000397745
0.000246802
0.00038887
0.000296494
0.000377809
0.0003456
0.000364172
0.000392913
0.000347626
0.000437259
0.000327991
0.000477556
0.000305284
0.000512865
0.000279723
0.00054242
0.000251699
0.000565651
0.000221731
0.000582185
0.000190392
0.00059183
0.000158259
0.000594558
0.000125847
0.000590481
9.356e-05
0.000579838
6.16305e-05
0.000562953
3.00564e-05
0.000540206
-1.47867e-06
0.000511991
-3.37111e-05
0.00047864
-6.79677e-05
0.000440288
-0.000106413
0.00039667
-0.000152382
0.000346834
-0.000210881
0.00028882
-0.000289136
0.000219514
-0.000397181
0.000135112
-0.000548092
3.38094e-05
-0.00075755
-7.08926e-05
-0.00103538
-0.000143866
-0.0013455
-0.00012288
-0.00148507
-0.000923934
-2.23172e-05
0.000113675
-4.69269e-05
0.000253253
-6.37239e-05
0.000327349
-6.49714e-05
0.000363355
-5.17386e-05
0.000378247
-2.66908e-05
0.000381404
7.61635e-06
0.000378191
4.89366e-05
0.0003716
9.54713e-05
0.0003634
0.000145812
0.000354388
0.000198743
0.000344778
0.00025313
0.000334425
0.000307856
0.000323004
0.0003618
0.000310134
0.00041384
0.00029548
0.000462896
0.000278824
0.00050797
0.000260099
0.000548186
0.000239397
0.000582831
0.000216951
0.000611368
0.000193093
0.000633441
0.000168217
0.000648875
0.000142724
0.000657645
0.000116974
0.000659859
9.12375e-05
0.000655728
6.56455e-05
0.000645526
4.01331e-05
0.000629549
1.4367e-05
0.000608044
-1.23431e-05
0.000581135
-4.12174e-05
0.000548693
-7.41449e-05
0.000510153
-0.000113994
0.000464236
-0.000165052
0.00040867
-0.000233442
0.000339864
-0.000327824
0.000252874
-0.000459834
0.000142008
-0.000645765
1.4659e-05
-0.000904624
-9.98774e-05
-0.0012312
-0.000118081
-0.00146954
-0.00104764
-4.12872e-05
0.000154912
-8.08933e-05
0.000298163
-0.00010547
0.000351376
-0.000106941
0.000364576
-8.94123e-05
0.000360669
-5.77785e-05
0.000349664
-1.58935e-05
0.000336189
3.32764e-05
0.00032236
8.75141e-05
0.000309099
0.000145175
0.000296657
0.000204961
0.00028491
0.000265755
0.000273536
0.000326516
0.000262133
0.000386244
0.000250287
0.000443956
0.000237644
0.000498714
0.000223945
0.000549649
0.000209052
0.000596
0.00019295
0.000637139
0.000175735
0.000672585
0.000157589
0.000702019
0.000138748
0.000725268
0.000119461
0.000742289
9.99565e-05
0.000753149
8.03983e-05
0.000757983
6.08454e-05
0.00075695
4.12016e-05
0.000750185
2.11596e-05
0.000737721
1.33163e-07
0.000719416
-2.29053e-05
0.000694791
-4.94964e-05
0.000662871
-8.19684e-05
0.000621896
-0.00012383
0.000569123
-0.000180015
0.00050033
-0.000257762
0.000409799
-0.000366911
0.000289598
-0.000522795
0.000140444
-0.000748669
-2.26255e-05
-0.00107032
-9.42656e-05
-0.00139732
-0.00115745
-7.44836e-05
0.000227916
-0.000131446
0.000359155
-0.000156985
0.000373802
-0.000148915
0.000354579
-0.00011782
0.000328002
-7.16241e-05
0.000302
-1.55338e-05
0.000278868
4.68647e-05
0.000258979
0.000113131
0.000242021
0.000181603
0.000227482
0.000251085
0.000214796
0.000320628
0.000203416
0.000389395
0.000192831
0.000456603
0.000182587
0.000521491
0.000172311
0.000583331
0.000161717
0.000641435
0.000150623
0.000695188
0.00013894
0.000744069
0.000126668
0.000787665
0.000113877
0.000825683
0.000100684
0.000857938
8.72245e-05
0.000884344
7.36271e-05
0.000904891
5.99806e-05
0.000919609
4.6305e-05
0.000928533
3.2503e-05
0.000931601
1.83354e-05
0.000928614
3.28371e-06
0.000919199
-1.32967e-05
0.000902524
-3.25761e-05
0.000877191
-5.62615e-05
0.000840875
-8.69786e-05
0.000790271
-0.000128283
0.000720255
-0.000185816
0.000624547
-0.000267209
0.000493251
-0.000386105
0.000322104
-0.000564969
0.000104136
-0.000854144
-3.60297e-05
-0.00124415
-0.00121481
-0.000127963
0.000390896
-0.00018752
0.000408426
-0.000179494
0.000346683
-0.000131077
0.000294938
-6.33394e-05
0.000252494
1.42286e-05
0.000218456
9.65092e-05
0.000191933
0.000180469
0.00017137
0.000264375
0.000155188
0.000347261
0.000142172
0.000428554
0.00013144
0.000507846
0.000122327
0.000584782
0.00011431
0.000658996
0.000106967
0.000730094
9.99644e-05
0.000797654
9.3055e-05
0.000861244
8.60665e-05
0.000920447
7.88976e-05
0.000974886
7.151e-05
0.00102424
6.39136e-05
0.00106826
5.6154e-05
0.00110676
4.82936e-05
0.00113964
4.03937e-05
0.00116683
3.24947e-05
0.00118827
2.45967e-05
0.0012039
1.66333e-05
0.00121355
8.45616e-06
0.00121691
-2.42912e-07
0.00121344
-9.85438e-06
0.00120199
-2.1186e-05
0.00118094
-3.52479e-05
0.00114744
-5.368e-05
0.00109775
-7.84815e-05
0.00102551
-0.000113398
0.000923735
-0.000163026
0.000779639
-0.000238265
0.000585996
-0.000356152
0.00030797
-0.000575566
8.64125e-05
-0.000967875
-0.00113225
-0.000148619
0.000440393
-0.000102753
0.000352089
3.411e-05
0.000248175
0.00017045
0.000187145
0.000298637
0.000146005
0.000418153
0.000116328
0.000529015
9.50579e-05
0.000631823
7.98603e-05
0.000727508
6.87897e-05
0.000817018
6.04848e-05
0.000901143
5.40619e-05
0.000980479
4.89327e-05
0.00105543
4.46802e-05
0.00112623
4.09988e-05
0.00119296
3.76637e-05
0.00125558
3.45129e-05
0.00131397
3.14352e-05
0.00136796
2.83616e-05
0.00141736
2.5258e-05
0.00146199
2.21171e-05
0.00150169
1.89499e-05
0.00153636
1.57783e-05
0.00156594
1.26224e-05
0.00159036
9.49729e-06
0.00160961
6.3888e-06
0.00162352
3.28262e-06
0.00163198
8.6885e-08
0.00163474
-3.17067e-06
0.00163122
-6.81467e-06
0.00162015
-1.12776e-05
0.00159998
-1.69534e-05
0.00156771
-2.45583e-05
0.00151984
-3.47946e-05
0.00144887
-4.93943e-05
0.00134763
-7.00693e-05
0.00119768
-0.000102435
0.000991562
-0.000155826
0.000659359
-0.000264715
0.000345591
-0.0005171
-0.000725176
0.000608644
0.000819953
0.00108292
0.00127011
0.00140508
0.00151063
0.00159731
0.00167041
0.00173345
0.00178894
0.00183863
0.00188367
0.00192484
0.00196263
0.00199734
0.00202913
0.00205804
0.00208408
0.00210721
0.0021274
0.00214463
0.0021589
0.00217022
0.00217863
0.00218417
0.00218682
0.00218655
0.002183
0.00217575
0.00216402
0.00214691
0.00212215
0.00208786
0.00203783
0.00196884
0.00185911
0.00170232
0.00138799
0.000994894
)
;
boundaryField
{
carasuperior
{
type calculated;
value uniform 0;
}
lateralizquierda
{
type calculated;
value uniform 0;
}
lateralderecha
{
type calculated;
value uniform 0;
}
carainferior
{
type calculated;
value uniform 0;
}
frontAndBack
{
type empty;
value nonuniform 0();
}
}
// ************************************************************************* //
| [
"santi_0926@hotmail.com"
] | santi_0926@hotmail.com | |
a675357b6ebca833e5701d72c203ef38099db938 | 3db06ecfbe22202d93cf5427745e1be46b78b72d | /221220_hw/221220_hw/Source.cpp | 4602dfafca49c89edc30467b3db14856c3b2e109 | [] | no_license | RikoBgrff/cpp-oop | f830e2e1cc59cc4301abfc8613cd9d4ab5d135db | c7a26e374c8e62f59d6db8c0ebd0549640df3ac5 | refs/heads/main | 2023-02-10T18:02:14.189101 | 2021-01-07T13:54:28 | 2021-01-07T13:54:28 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 10,552 | cpp | #include <iostream>
#include <time.h>
#include <string>
#include <string.h>
#include <fstream>
namespace SmartPointers
{
template <typename T>
class UniquePointer
{
T* ptr;
public:
UniquePointer() :ptr(NULL) {}
UniquePointer(T* ptr)
{
this->ptr = ptr;
}
UniquePointer(const UniquePointer& other) = delete;
UniquePointer& operator=(const UniquePointer& other) = delete;
UniquePointer(UniquePointer&& other)
{
this->ptr = other.ptr;
other.ptr = NULL;
}
UniquePointer& operator=(UniquePointer&& other)
{
if (this != &other)
{
if (this->ptr != NULL)
{
delete this->ptr;
}
this->ptr = other.ptr;
other.ptr = NULL;
}
return *this;
}
~UniquePointer()
{
delete this->ptr;
this->ptr = NULL;
}
operator bool() const { return this->ptr != NULL; }
T& operator*() const { return *this->ptr; }
T* operator->() const { return this->ptr; }
};
template <typename T>
class SharedPointer
{
T* address;
size_t* count;
public:
SharedPointer() : address(NULL), count(NULL) {}
explicit SharedPointer(T* address) :address(address), count(new size_t(1)) {}
SharedPointer(const SharedPointer& other): address(other.address),
count(other.count)
{
(*count)++;
}
SharedPointer& operator=(const SharedPointer& other)
{
if (this->count != NULL)
{
(*this->count)--;
if (*this->count == 0)
{
delete this->address;
delete this->count;
}
}
this->address = other.address;
this->count = other.count;
(*this->count)++;
return *this;
}
SharedPointer& operator=(T* other)
{
if (this->count != NULL)
{
(*this->count)--;
if (*this->count == 0)
{
delete this->address;
delete this->count;
}
}
this->count = new size_t(1);
this->address = other;
return *this;
}
~SharedPointer()
{
if (this->count != NULL)
{
(*this->count)--;
if (*this->count == 0)
{
delete this->address;
delete this->count;
}
}
}
T* get() const { return this->address; }
T& operator*() const { return *get(); };
T* operator->() const { return get(); }
};
}
class Resource
{
public:
Resource() { std::cout << "Resource acquired\n"; }
~Resource() { std::cout << "Resource destroyed\n"; }
friend std::ostream& operator<<(std::ostream& out, const Resource& res)
{
out << "I am a resource\n";
return out;
}
};
namespace SP = SmartPointers;
namespace Time
{
std::string getDate()
{
time_t now(time(0));
tm new_time;
localtime_s(&new_time, &now);
return std::to_string(new_time.tm_mday) + '/' + std::to_string(new_time.tm_mon + 1) + '/' +
std::to_string(new_time.tm_year + 1900) + ' ' + std::to_string(new_time.tm_hour) + ':' + std::to_string(new_time.tm_min);
}
}
#define file_name "votes.txt"
class President
{
std::string name;
std::string country;
size_t workPractise;
public:
President() : name(""), country(""), workPractise(0) {}
President(const std::string& name, const std::string& country, const size_t& workPractise)
{
setName(name);
setCountry(country);
setWorkPractise(workPractise);
}
void setName(const std::string& name) { this->name = name; }
std::string getName() const { return this->name; }
void setCountry(const std::string& country) { this->country = country; }
std::string getCountry() const { return this->country; }
void setWorkPractise(const size_t& workPractise) { this->workPractise = workPractise; }
size_t getWorkPractise() const { return this->workPractise; }
void showAllVotes() const
{
std::cout << readVotes() << std::endl;
}
std::string readVotes() const
{
std::ifstream fin(file_name);
std::string text;
if (fin.is_open())
{
while (!fin.eof())
{
std::string line;
std::getline(fin, line);
text.append(line + "\n");
}
}
fin.close();
return text;
}
};
struct Candidate
{
President* candidate;
size_t* voteCount;
};
class Person
{
std::string name;
std::string surname;
size_t age;
std::string speciality;
std::string sendVoteDateTime;
Candidate* candidate;
public:
static Candidate** candidates;
static size_t candidate_count;
Person() :name(""), surname(""), age(0), speciality(""),
sendVoteDateTime(""), candidate(NULL) {}
Person(const std::string& name, const std::string& surname, const size_t& age, const std::string& speciality)
{
setName(name);
setSurname(surname);
setAge(age);
setSpeciality(speciality);
}
void setName(const std::string& name) { this->name = name; }
std::string getName() const { return this->name; }
void setSurname(const std::string& surname) { this->surname = surname; }
std::string getSurame() const { return this->surname; }
void setSpeciality(const std::string& speciality) { this->speciality = speciality; }
std::string getSpeciality() const { return this->speciality; }
void setAge(const size_t& age) { this->age = age; }
size_t getAge() const { return this->age; }
void setVotedDateTime() { this->sendVoteDateTime = Time::getDate(); }
std::string getVotedDateTime() const { return this->sendVoteDateTime; }
void sendVote(President* candidate)
{
if (this->candidate == NULL)
{
if (checkCandidateInList(candidate))
{
Candidate* item = getCandidate(candidate);
(*item->voteCount)++;
this->candidate = new Candidate;
this->candidate->candidate = item->candidate;
this->candidate->voteCount = item->voteCount;
}
else
{
addCandidateToList(candidate);
Candidate* item = getCandidate(candidate);
this->candidate = new Candidate;
this->candidate->candidate = item->candidate;
this->candidate->voteCount = item->voteCount;
}
setVotedDateTime();
writeToFile();
}
}
bool checkCandidateInList(President* candidate) const
{
for (size_t i = 0; i < candidate_count; i++)
{
if (candidates[i]->candidate == candidate)
return true;
}
return false;
}
void addCandidateToList(President* candidate)
{
size_t new_candidate_count = candidate_count + 1;
auto new_candidates = new Candidate * [new_candidate_count];
if (new_candidates)
{
if (candidate_count)
{
for (size_t i = 0; i < candidate_count; i++)
{
new_candidates[i] = candidates[i];
}
delete[] candidates;
}
new_candidates[candidate_count] = new Candidate;
new_candidates[candidate_count]->candidate = candidate;
new_candidates[candidate_count]->voteCount = new size_t(1);
candidates = new_candidates;
candidate_count = new_candidate_count;
}
}
void deleteCandidateFromList(President* candidate)
{
if (candidate_count)
{
size_t new_candidate_count = candidate_count - 1;
auto new_candidates = new Candidate * [new_candidate_count];
for (size_t i = 0, j = 0; i < candidate_count; i++)
{
if (candidate == candidates[i]->candidate)
delete candidates[i];
else
new_candidates[j++] = candidates[i];
}
delete[] candidates;
candidate_count--;
candidates = new_candidates;
}
}
Candidate* getCandidate(President* candidate) const
{
for (size_t i = 0; i < candidate_count; i++)
{
if (candidates[i]->candidate == candidate)
return candidates[i];
}
return NULL;
}
size_t getVoteCount() const { return *this->candidate->voteCount; }
void writeToFile()
{
std::ofstream fout(file_name, std::ios_base::app);
if (fout.is_open())
{
std::string text;
text.append("Name: " + this->name + "\n");
text.append("Surname: " + this->surname + "\n");
text.append("Age: " + std::to_string(this->age) + "\n");
text.append("Speciality: " + this->speciality + "\n");
text.append("Voted to: " + this->candidate->candidate->getName() + "\n");
text.append("Voted date time: " + this->sendVoteDateTime + "\n");
text.append("\n");
fout << text;
}
fout.close();
}
~Person()
{
(*this->candidate->voteCount)--;
if ((*this->candidate->voteCount) == 0)
{
deleteCandidateFromList(this->candidate->candidate);
}
delete this->candidate;
}
};
Candidate** Person::candidates = NULL;
size_t Person::candidate_count = NULL;
void main()
{
// task 1
/*SP::UniquePointer<Resource> res1{ new Resource() };
SP::UniquePointer<Resource> res2{};
std::cout << "res1 is " << (static_cast<bool>(res1) ? "not null\n" : "null\n");
std::cout << "res2 is " << (static_cast<bool>(res2) ? "not null\n" : "null\n");
res2 = std::move(res1);
std::cout << "res1 is " << (static_cast<bool>(res1) ? "not null\n" : "null\n");
std::cout << "res2 is " << (static_cast<bool>(res2) ? "not null\n" : "null\n");
std::cout << *res1 << std::endl;*/
// task 2
President* presidentA = new President("Joe Biden", "USA", 30);
President* presidentB = new President("Donald Trump", "USA", 31);
Person* p1 = new Person("Elgun", "Abasquliyev", 20, "Software Developer");
Person* p2 = new Person("Abil", "Yaqublu", 19, "Network Administrator");
Person* p3 = new Person("Resul", "Osmanli", 18, "Software Developer");
Person* p4 = new Person("Ismayil", "Memmedov", 21, "Business Managment");
Person* p5 = new Person("Ilqar", "Kerimli", 24, "Cybersec");
p1->sendVote(presidentA);
std::cout << "Voted!" << std::endl;
std::cout << "Time: " << p1->getVotedDateTime() << std::endl;
std::cout << "Vote count: " << p1->getVoteCount() << std::endl;
std::cin.get();
p2->sendVote(presidentA);
std::cout << "Voted!" << std::endl;
std::cout << "Time: " << p2->getVotedDateTime() << std::endl;
std::cout << "Vote count: " << p2->getVoteCount() << std::endl;
std::cin.get();
p3->sendVote(presidentA);
std::cout << "Voted!" << std::endl;
std::cout << "Time: " << p3->getVotedDateTime() << std::endl;
std::cout << "Vote count: " << p3->getVoteCount() << std::endl;
std::cin.get();
p4->sendVote(presidentB);
std::cout << "Voted!" << std::endl;
std::cout << "Time: " << p4->getVotedDateTime() << std::endl;
std::cout << "Vote count: " << p4->getVoteCount() << std::endl;
std::cin.get();
p5->sendVote(presidentB);
std::cout << "Voted!" << std::endl;
std::cout << "Time: " << p5->getVotedDateTime() << std::endl;
std::cout << "Vote count: " << p5->getVoteCount() << std::endl;
std::cin.get();
delete p1;
delete p2;
delete p3;
delete p4;
//std::cout << "Vote count: " << p5->getVoteCount() << std::endl;
delete p5;
std::cout << "Candidate 1: " << presidentA->getName() << std::endl;
std::cout << "Candidate 2: " << presidentB->getName() << std::endl;
std::cin.get();
system("CLS");
presidentA->showAllVotes();
delete presidentA;
delete presidentB;
} | [
"40658140+eabasquliyev@users.noreply.github.com"
] | 40658140+eabasquliyev@users.noreply.github.com |
aee937af607220e9622a92063a005518e67dd03b | 56a840f7d780bdfed09a95da404a309f2f395a62 | /cpp/Data Structures/UVa-11192/GroupReverse.cpp | 5255684ac1b5be5e9d14614e8e1f880c0a47fc43 | [] | no_license | edujtm/Comp-Programming | fa510e2229d43034da662d9f5d4a7e9ee36c7f42 | 540ddbbf93e574e9082b0f15d9e9b9fbc1210ef3 | refs/heads/master | 2021-01-01T20:14:39.007230 | 2019-09-15T01:45:35 | 2019-09-15T01:45:35 | 98,798,505 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 494 | cpp | #include <cstdio>
#include <iostream>
#include <string>
#define MAXC 110
using namespace std;
int main() {
int n;
string theString;
while (cin >> n && n != 0) {
cin >> theString;
int g = theString.length()/n;
for (int i = 0; i<theString.length(); i += g) {
int j = i;
int k = i + g - 1;
while (j < k) {
char temp = theString[j];
theString[j] = theString[k];
theString[k] = temp;
++j;
--k;
}
}
cout << theString << endl;
cin.ignore();
}
}
| [
"eduzemacedo@hotmail.com"
] | eduzemacedo@hotmail.com |
2bc45481df9d85281c2fa5fb05ff128eb58c32a2 | 9b8ed2eb05e40016395a069013402610361ee499 | /Test/ServerManager.h | 42ed4d2495b76c6aa824493a978deec30cbc0c99 | [] | no_license | singmelody/Test | 6b74674cc0219189caaf365df120a4420b77cd6f | 9f2d3d72627586bd07a66b2599a7106d7d6b1f1c | refs/heads/master | 2020-04-07T02:50:03.334288 | 2017-12-31T22:26:46 | 2017-12-31T22:34:09 | 45,405,601 | 0 | 0 | null | null | null | null | WINDOWS-1252 | C++ | false | false | 3,160 | h | #pragma once
#include "Singleton.h"
#include "ServerGrpInfo.h"
#include "NodeSrvGrp.h"
#include "GateSrvGrp.h"
class PeerModuleBase;
class ServerInfo;
enum SrvMask
{
eSM_World = 1 << 1,
eSM_Login = 1 << 2,
eSM_LocalNode = 1 << 3,
eSM_RemoteNode = 1 << 4,
eSM_Gate = 1 << 5,
};
enum SrvSegment
{
// SrvID
// ZZZZZZZ|GGGGGGTT|TTTIIIII|IIIIIIII
eSrvID_ZoneStartBit = 24, // 24-31
eSrvID_GrpStartBit = 18, // 18-23
eSrvID_TypeStartBit = 13, // 13-17
eSrvID_ZoneBits = 8,
eSrvID_GrpBits = 6,
eSrvID_TypeBits = 5,
eSrvID_IndexBits = 13,
eSrvID_MaxZoneID = ( 1 << eSrvID_ZoneBits) - 1,
eSrvID_MaxGrpID = ( 1 << eSrvID_GrpBits) - 1,
eSrvID_MaxTypeID = ( 1 << eSrvID_TypeBits) - 1,
eSrvID_MaxIndexBits = ( 1 << eSrvID_IndexBits) - 1,
// AvatarID
// XXXXXXXX|XXXIIIII|IIIIIIII|IIGGGGGG
ePlayerAvatarID_GrpBits = eSrvID_GrpBits,
ePlayerAvatarID_IdxBits = 15,
ePlayerAvatarID_MaxGrp = eSrvID_MaxGrpID,
ePlayerAvatarID_MaxIdx = ( 1 << ePlayerAvatarID_IdxBits) -1,
};
const char* GetSrvTitle( int32 nSrvType);
class PacketBase;
class ServerManager : public Singleton<ServerManager>
{
public:
ServerManager(void);
~ServerManager(void);
static int32 GetZoneID(int32 nSrvID);
static int32 GetGroupID(int32 nSrvID);
static int32 GetSrvType(int32 nSrvID);
static int32 GetSrvIndex(int32 nSrvID);
static int32 MakeSrvID( int32 nZoneID, int32 nGrpID, int32 nSrvType, int32 nIdx);
int32 MakeSrvID( int32 nSrvType, int32 nSrvIdx);
void SetPeerModule(PeerModuleBase* pPeerModule);
void SetSrvType( SrvType nSrvType);
ServerInfo* GetWarWorldInfo();
ServerInfo* AddLogin(int32 nSrvID, int32 nSocketID, SockAddr& laddr);
ServerInfo* GetLoginInfo();
ServerInfo* AddDBA(int32 nSrvID, int32 nSocketID, SockAddr& addr);
ServerInfo* GetDBAInfo();
ServerInfo* GetGateInfo(int32 nID);
ServerInfo* AddNode( int32 nSrvID, int32 nSocketID, SockAddr& laddr);
ServerInfo* GetNodeInfo(int32 nID);
ServerInfo* AddWarWorld(int32 nSrvID, int32 nSocketID, SockAddr& laddr);
bool AddLocalWorld(int32 nSrvID, int32 nSocketID, SockAddr& addr);
ServerInfo* GetLocalWorldInfo();
ServerInfo* AddSrvInfo( class SrvItem* pItem);
void AddSrvInfo( ServerInfo* pInfo);
void RemoveSrvInfo( ServerInfo* pInfo);
ServerInfo* GetSrvBySocketID(int32 nSocketID);
ServerInfo* GetSrvBySrvID(int32 nSrvID);
void Tick(int32 nFrameTime);
void FillConfig();
bool IsSameGroup(int32 nSrvID);
static const int32 GROUPID_OF_WARSERVER = 0;
static bool IsWarServer(int32 nSrvID) { return GROUPID_OF_WARSERVER == GetGroupID(nSrvID); }
int32 m_nZoneID; // ´óµØ·ÉÓ¥
int32 m_nGrpID; // ·ï»Ë¼¯
int32 m_localWorldChannelID;
ServerInfo* m_pWarWorld;
ServerInfo* m_pLocalWorld;
ServerInfo* m_pLogin;
ServerInfo* m_pDBA;
ServerInfo* m_pGMI;
PeerModuleBase* m_pPeerModule;
SrvType m_srvType;
NodeSrvGrp m_LocalNodeGrp;
NodeSrvGrp m_RemoteNodeGrp;
ServerGrp m_CollisionGroup;
ServerGrp m_DogGroup;
GateSrvGrp m_GateGrp;
ServerGrp m_NodeDataSyncGrp;
ServerGrp m_RemoteWorldGrp;
SrvInfoMap m_SrvBySrvID;
SrvInfoMap m_SrvBySocketID;
private:
void ProcServerHeartBeat(int32 nFrameTime);
};
| [
"446538645@qq.com"
] | 446538645@qq.com |
e677d2ab96ab973890a9afbbfdba155eb4e2b667 | f0dbabac157fc79094062513cfcc28be253d9b70 | /modules/identity/src/Errors/Errc.cpp | 3805bfafbcea5b3ba001d98529bba2367e3a86ec | [
"Apache-2.0"
] | permissive | TankerHQ/sdk-native | 4c3a81d83a9e144c432ca74c3e327225e6814e91 | c062edc4b6ad26ce90e0aebcc2359adde4ca65db | refs/heads/master | 2023-08-19T02:59:40.445973 | 2023-08-09T12:04:46 | 2023-08-09T12:04:46 | 160,206,027 | 20 | 4 | null | null | null | null | UTF-8 | C++ | false | false | 241 | cpp | #include <Tanker/Identity/Errors/Errc.hpp>
#include <Tanker/Identity/Errors/ErrcCategory.hpp>
namespace Tanker
{
namespace Identity
{
std::error_code make_error_code(Errc c) noexcept
{
return {static_cast<int>(c), ErrcCategory()};
}
}
}
| [
"theo.delrieu@tanker.io"
] | theo.delrieu@tanker.io |
6f6ff5ee02411a3d5b68cceac4034133d46bcd09 | 306232bfafeb2b88e353c4ffa7fd9946654b15d8 | /Trayc/SceneGraph.h | ffe06446d2863b63683f565c078829a8ac7166df | [
"Zlib"
] | permissive | Aloalo/Trayc | 35b9f1161e64d84e1ac35df0f03b46422af2b9a5 | 048e36934b1b4dc87449feaf6f89b0161b2d08af | refs/heads/master | 2020-04-12T02:22:36.696046 | 2019-06-01T11:38:09 | 2019-06-01T11:38:09 | 26,697,097 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 895 | h | /*
* Copyright (c) 2014 Jure Ratkovic
*/
#ifndef TRAYC_SCENEGRAPH_H
#define TRAYC_SCENEGRAPH_H
#include <optix_world.h>
#include <vector>
#include <Trayc/Handlers/AccelHandler.h>
namespace trayc
{
class SceneGraph
{
public:
void Init();
void Add(optix::GeometryInstance inst);
void AddLight(optix::GeometryInstance inst);
void Compile();
void Reset();
template<class T>
T GetTopObject() const
{
if(topGroup->getChildCount() == 1)
return topGroup->getChild<T>(0);
return topGroup;
}
template<class T>
T GetTopShadower() const
{
return topGroup;
}
private:
optix::Group topGroup;
optix::GeometryGroup lightGG;
optix::GeometryGroup staticGG;
AccelHandler staticAccel;
};
}
#endif
| [
"ratkovic.jure@gmail.com"
] | ratkovic.jure@gmail.com |
b49ad6d772cc7f3ba3b07aba03d6afb395e35991 | b1ba3526cffd0867e75919e0c55d649154e62b36 | /fuzzy/operators.h | 2dee339a8f332b908e88f4fffbe11867fe550442 | [] | no_license | WildCerebrus/LogiqueFlou | 1e3fe18aaaa39af5eabb2cc126c96ebd481fd570 | 95a73dca00ec71935ebdb9186a780de31af87d41 | refs/heads/master | 2021-01-13T16:07:04.155906 | 2016-04-30T14:23:29 | 2016-04-30T14:23:29 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,260 | h | #ifndef OPERATORS_H_INCLUDED
#define OPERATORS_H_INCLUDED
#include "../core/BinaryExpression.h"
#include "../core/UnaryExpression.h"
#include "../core/ValueModel.h"
#include "../core/Evalutation.h"
#include <vector>
using namespace core;
namespace fuzzy{
template <class T>
class And : public core::BinaryExpression<T>{
};
template <class T>
class Or : public core::BinaryExpression<T>{
};
template <class T>
class Then : public core::BinaryExpression<T>{
};
template <class T>
class Agg : public core::BinaryExpression<T>{
};
template <class T>
class Not : public core::UnaryExpression<T>{
};
template <class T>
class Is : public core::UnaryExpression<T>{
};
template <class T>
class MandaniDefuzz : public core::BinaryExpression<T>{
public:
MandaniDefuzz(const T&, const T&, const T&);
virtual ~MandaniDefuzz(){};
T evaluate(core::Expression<T>*, core::Expression<T>*) const;
virtual T defuzz(const typename Evaluation<T>::Shape&) = 0;
protected:
T min, max, step, current;
};
template<class T>
MandaniDefuzz<T>::MandaniDefuzz(const T& _min, const T& _max, const T& _step) :
min(_min), max(_max), step(_step){
}
template<class T>
T MandaniDefuzz<T>::evaluate(Expression<T>* l, Expression<T>* r) const
{
return defuzz(Evaluation<T>::ShapeConst(min, max, step, (ValueModel<T>*) l, r));
}
template <class T>
class CogDefuzz : public fuzzy::MandaniDefuzz<T>{
public:
CogDefuzz(const T&, const T&, const T&);
virtual ~CogDefuzz(){};
T defuzz(const typename Evaluation<T>::Shape&);
T evaluate(core::Expression<T>*, core::Expression<T>*);
};
template <class T>
CogDefuzz<T>::CogDefuzz(const T& _min, const T& _max, const T& _step) :
MandaniDefuzz<T>(_min, _max, _step){
}
template <class T>
T CogDefuzz<T>::defuzz(const typename Evaluation<T>::Shape& shape){
T x, y, num = 0, den = 0;
for (unsigned int i = 0; i < (shape.first.size() - 1); i++)
{
x = shape.first.at(i);
y = shape.second.at(i);
num += x*y;
den += y;
}
return (num / den);
}
template <class T>
T CogDefuzz<T>::evaluate(core::Expression<T>* l, core::Expression<T>* r){
return defuzz(Evaluation<T>::ShapeConst(min, max, step, (ValueModel<T>*)l, r));
}
}
#endif // OPERATORS_H_INCLUDED
| [
"remy.simon@uha.fr"
] | remy.simon@uha.fr |
48ae478914d53fe6777ebb4f8921308cf4758487 | 9eb2245869dcc3abd3a28c6064396542869dab60 | /benchspec/CPU/523.xalancbmk_r/build/build_base_mytest-64.0000/XalanElemTextLiteralAllocator.cpp | 21004a5bcffb6aab88d8480795a754ff0f4e503e | [] | no_license | lapnd/CPU2017 | 882b18d50bd88e0a87500484a9d6678143e58582 | 42dac4b76117b1ba4a08e41b54ad9cfd3db50317 | refs/heads/master | 2023-03-23T23:34:58.350363 | 2021-03-24T10:01:03 | 2021-03-24T10:01:03 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 129 | cpp | version https://git-lfs.github.com/spec/v1
oid sha256:13a4331b0d7f1a3b95b58c954115b4177377e920976b124f77a945002bb5aa05
size 1775
| [
"abelardojarab@gmail.com"
] | abelardojarab@gmail.com |
9e8f9449bd1b28c0f598868dc1cadb973933418f | 132198d6cd8300a77a6a371e6e6abe0795e7fed0 | /airdcpp/Mapper_NATPMP.cpp | a2bd99c31f0a8a27a89be48d0b4db582e6dda781 | [] | no_license | peps1/airdcpp-core | f7c2b90caceb872f7f60aea97b7dedb95bea3292 | e4af875397f994c71de54adea14aa12d4c803e50 | refs/heads/master | 2022-12-23T08:31:30.884057 | 2020-09-27T07:04:12 | 2020-09-27T07:04:12 | 298,937,881 | 0 | 0 | null | 2020-09-27T02:34:08 | 2020-09-27T02:34:07 | null | UTF-8 | C++ | false | false | 3,884 | cpp | /*
* Copyright (C) 2001-2019 Jacek Sieka, arnetheduck on gmail point com
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
#include "stdinc.h"
#include "Mapper_NATPMP.h"
#include "Util.h"
#ifndef _WIN32
#include <sys/socket.h>
#include <netinet/in.h>
#include <arpa/inet.h>
#endif
extern "C" {
#ifndef STATICLIB
#define STATICLIB
#endif
#if defined(_WIN32) && !defined(WIN32)
#define WIN32
#endif
#include <natpmp.h>
}
///@todo should bind to the local IP
namespace dcpp {
const string Mapper_NATPMP::name = "NAT-PMP";
Mapper_NATPMP::Mapper_NATPMP(const string& localIp, bool v6) :
Mapper(localIp, v6),
lifetime(0)
{
}
bool Mapper_NATPMP::supportsProtocol(bool aV6) const {
return !aV6;
}
static natpmp_t nat;
bool Mapper_NATPMP::init() {
if (initnatpmp(&nat, 0, 0) >= 0) {
gateway = inet_ntoa(*(struct in_addr *)&nat.gateway);
return true;
}
return false;
}
void Mapper_NATPMP::uninit() {
closenatpmp(&nat);
}
namespace {
int reqType(Mapper::Protocol protocol) {
if (protocol == Mapper::PROTOCOL_TCP) {
return NATPMP_PROTOCOL_TCP;
} else {
dcassert(protocol == Mapper::PROTOCOL_UDP);
return NATPMP_PROTOCOL_UDP;
}
}
int respType(Mapper::Protocol protocol) {
if (protocol == Mapper::PROTOCOL_TCP) {
return NATPMP_RESPTYPE_TCPPORTMAPPING;
} else {
dcassert(protocol == Mapper::PROTOCOL_UDP);
return NATPMP_RESPTYPE_UDPPORTMAPPING;
}
}
bool sendRequest(uint16_t port, Mapper::Protocol protocol, uint32_t lifetime) {
return sendnewportmappingrequest(&nat, reqType(protocol), port, port, lifetime) >= 0;
}
bool read(natpmpresp_t& response) {
int res;
do {
// wait for the previous request to complete.
timeval timeout;
if(getnatpmprequesttimeout(&nat, &timeout) >= 0) {
fd_set fds;
FD_ZERO(&fds);
FD_SET(nat.s, &fds);
select(FD_SETSIZE, &fds, 0, 0, &timeout);
}
res = readnatpmpresponseorretry(&nat, &response);
} while(res == NATPMP_TRYAGAIN && nat.try_number <= 5); // don't wait for 9 failures as that takes too long.
return res >= 0;
}
} // unnamed namespace
bool Mapper_NATPMP::add(const string& port, const Protocol protocol, const string&) {
auto port_ = Util::toInt(port);
if(sendRequest(static_cast<uint16_t>(port_), protocol, 3600)) {
natpmpresp_t response;
if(read(response) && response.type == respType(protocol) && response.pnu.newportmapping.mappedpublicport == port_) {
lifetime = std::min(3600u, response.pnu.newportmapping.lifetime) / 60;
return true;
}
}
return false;
}
bool Mapper_NATPMP::remove(const string& port, const Protocol protocol) {
auto port_ = Util::toInt(port);
if(sendRequest(static_cast<uint16_t>(port_), protocol, 0)) {
natpmpresp_t response;
return read(response) && response.type == respType(protocol) && response.pnu.newportmapping.mappedpublicport == port_;
}
return false;
}
string Mapper_NATPMP::getDeviceName() {
return gateway; // in lack of the router's name, give its IP.
}
string Mapper_NATPMP::getExternalIP() {
if(sendpublicaddressrequest(&nat) >= 0) {
natpmpresp_t response;
if(read(response) && response.type == NATPMP_RESPTYPE_PUBLICADDRESS) {
return inet_ntoa(response.pnu.publicaddress.addr);
}
}
return Util::emptyString;
}
} // dcpp namespace
| [
"maksis@adrenaline-network.com"
] | maksis@adrenaline-network.com |
9250d2c02d654b4ba63aa6f2b6fbbdfefe2d4a4c | 49e19faa999df3abfbfc49e692b9e8cee3208649 | /XULWin/src/Menu.cpp | c41db2e3ac1f8094960c51dcc97c943b529b31a4 | [] | no_license | StackedCrooked/xulwin | 30a29a09636738f4821821e05ee6223d114de76b | 1d3c10d0d39b848ff5d121f3dbf21fa489d032a7 | refs/heads/master | 2021-05-02T05:49:47.691311 | 2017-08-03T21:24:55 | 2017-08-03T21:24:55 | 32,498,027 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 10,848 | cpp | #include "XULWin/Element.h"
#include "XULWin/Defaults.h"
#include "XULWin/Decorator.h"
#include "XULWin/Decorators.h"
#include "XULWin/Menu.h"
#include "XULWin/Window.h"
namespace XULWin
{
Component * CreateMenu(XULWin::Component * inParent, const AttributesMapping & inAttr)
{
return new Decorator(new Menu(inParent, inAttr));
}
Menu::MenusById Menu::sMenusById;
Menu::Menu(Component * inParent, const AttributesMapping & inAttr) :
Super(inParent, inAttr)
{
assert(sMenusById.find(mComponentId.value()) == sMenusById.end());
sMenusById.insert(std::make_pair(mComponentId.value(), this));
}
Menu::~Menu()
{
MenusById::iterator itById = sMenusById.find(mComponentId.value());
assert(itById != sMenusById.end());
if (itById != sMenusById.end())
{
sMenusById.erase(itById);
}
}
bool Menu::init()
{
return Super::init();
}
WinAPI::MenuNode * Menu::FromMenu(const Menu * inMenu)
{
// XUL hierarchy:
// menu/menupopup/menuitem
// /menu
WinAPI::MenuNode * result = new WinAPI::MenuNode(
WinAPI::MenuItemInfo(inMenu->componentId(),
inMenu->getLabel()));
if (const MenuPopup * popup = inMenu->findChildOfType<MenuPopup>())
{
for (size_t idx = 0; idx != popup->getChildCount(); ++idx)
{
const Component * comp = popup->getChild(idx);
if (const MenuItem * menuItem = comp->downcast<MenuItem>())
{
result->addChild(
new WinAPI::MenuNode(
WinAPI::MenuItemInfo(menuItem->componentId(),
menuItem->getLabel())));
}
else if (const Menu * menu = comp->downcast<Menu>())
{
result->addChild(FromMenu(menu));
}
else if (const MenuSeparator * sep = comp->downcast<MenuSeparator>())
{
result->addChild(new WinAPI::MenuNode(WinAPI::MenuItemInfo(0, "")));
}
}
}
return result;
}
Menu * Menu::FindById(int inId)
{
MenusById::iterator itById = sMenusById.find(inId);
if (itById != sMenusById.end())
{
return itById->second;
}
return 0;
}
bool Menu::initAttributeControllers()
{
setAttributeController<LabelController>(this);
return Super::initAttributeControllers();
}
std::string Menu::getLabel() const
{
return mLabel;
}
void Menu::setLabel(const std::string & inLabel)
{
mLabel = inLabel;
}
Component * CreateMenuBar(XULWin::Component * inParent, const AttributesMapping & inAttr)
{
return new Decorator(new MenuBar(inParent, inAttr));
}
MenuBar::MenuBar(Component * inParent, const AttributesMapping & inAttr) :
Super(inParent, inAttr)
{
}
bool MenuBar::init()
{
std::vector<XMLMenu *> menuElements;
el()->getElementsByType<XMLMenu>(menuElements);
WinAPI::MenuNode node(WinAPI::MenuItemInfo(componentId(), ""));
for (size_t idx = 0; idx != menuElements.size(); ++idx)
{
Menu * menu = menuElements[idx]->component()->downcast<Menu>();
if (XULWin::WinAPI::MenuNode * subMenu = Menu::FromMenu(menu))
{
node.addChild(subMenu);
}
}
if (Window * window = findParentOfType<Window>())
{
::SetMenu(window->handle(), WinAPI::Menu_Create(node));
}
return Super::init();
}
int MenuBar::calculateWidth(SizeConstraint inSizeConstraint) const
{
int result = 0;
std::vector<Element *> items;
el()->getElementsByTagName(XMLMenuItem::TagName(), items);
for (size_t idx = 0; idx != items.size(); ++idx)
{
MenuItem * item = items[idx]->component()->downcast<MenuItem>();
result += item->calculateWidth(inSizeConstraint) + Defaults::menuBarSpacing();
}
return result;
}
int MenuBar::calculateHeight(SizeConstraint inSizeConstraint) const
{
return 0; // Does not belong to the Window client rectangle.
}
Component * CreateMenuItem(Component * inComponent, const AttributesMapping & inAttr)
{
return new Decorator(new MenuItem(inComponent, inAttr));
}
MenuItem::MenuItemsById MenuItem::sMenuItemsById;
MenuItem::MenuItem(Component * inParent, const AttributesMapping & inAttr) :
Super(inParent, inAttr)
{
assert(sMenuItemsById.find(mComponentId.value()) == sMenuItemsById.end());
sMenuItemsById.insert(std::make_pair(mComponentId.value(), this));
}
MenuItem::~MenuItem()
{
MenuItemsById::iterator itById = sMenuItemsById.find(mComponentId.value());
assert(itById != sMenuItemsById.end());
if (itById != sMenuItemsById.end())
{
sMenuItemsById.erase(itById);
}
}
MenuItem * MenuItem::FindById(int inId)
{
MenuItemsById::iterator itById = sMenuItemsById.find(inId);
if (itById != sMenuItemsById.end())
{
return itById->second;
}
return 0;
}
bool MenuItem::initAttributeControllers()
{
setAttributeController<LabelController>(this);
return Super::initAttributeControllers();
}
int MenuItem::calculateWidth(SizeConstraint inSizeConstraint) const
{
return WinAPI::Window_GetTextSize(findParentWindow()->handle(), getLabel()).cx;
}
int MenuItem::calculateHeight(SizeConstraint inSizeConstraint) const
{
return Defaults::menuBarHeight();
}
std::string MenuItem::getLabel() const
{
return mLabel;
}
void MenuItem::setLabel(const std::string & inLabel)
{
mLabel = inLabel;
}
Component * CreateMenuList(Component * inComponent, const AttributesMapping & inAttr)
{
return new MarginDecorator(new MenuList(inComponent, inAttr));
}
MenuList::MenuList(Component * inParent, const AttributesMapping & inAttr) :
NativeControl(
inParent,
inAttr,
TEXT("COMBOBOX"),
0, // exStyle
WS_TABSTOP | CBS_DROPDOWNLIST)
{
}
bool MenuList::init()
{
fillComboBox();
return Super::init();
}
int MenuList::getSelectedIndex() const
{
return WinAPI::ComboBox_GetSelectedIndex(handle());
}
void MenuList::setSelectedIndex(int inIndex)
{
WinAPI::ComboBox_SetSelectedIndex(handle(), inIndex);
}
void MenuList::fillComboBox()
{
if (MenuPopup * popup = findChildOfType<MenuPopup>())
{
for (size_t idx = 0; idx != popup->getChildCount(); ++idx)
{
ElementPtr child = popup->el()->children()[idx];
if (MenuItem * item = child->component()->downcast<MenuItem>())
{
std::string label = item->getLabel();
WinAPI::ComboBox_Add(handle(), label);
}
}
if (popup->getChildCount() > 0)
{
WinAPI::ComboBox_SetSelectedIndex(handle(), 0);
}
}
}
int MenuList::calculateWidth(SizeConstraint inSizeConstraint) const
{
return Defaults::menuListMinWidth() + calculateMaxChildWidth(inSizeConstraint);
}
int MenuList::calculateHeight(SizeConstraint inSizeConstraint) const
{
return Defaults::controlHeight();
}
int MenuList::getComboBoxMenuHeight()
{
int result = WinAPI::ComboBox_Size(handle()) * WinAPI::ComboBox_ItemHeight(handle(), 0);
// HACK:
// On Linux Wine the menu height is one item too short
// so we add a little bit of extra height here.
result += WinAPI::ComboBox_ItemHeight(handle(), 0);
return result;
}
void MenuList::move(int x, int y, int w, int h)
{
NativeControl::move(x, y, w, h + getComboBoxMenuHeight());
}
void MenuList::onContentChanged()
{
if (mIsInitialized)
{
WinAPI::ComboBox_Clear(handle());
fillComboBox();
}
// else: the init will take care of the initial fill
}
Component * CreateMenuPopup(Component * inComponent, const AttributesMapping & inAttr)
{
return new MarginDecorator(new MenuPopup(inComponent, inAttr));
}
MenuPopup::MenuPopup(Component * inParent, const AttributesMapping & inAttr) :
Super(inParent, inAttr),
mParentWindow(0)
{
mHMENU = CreatePopupMenu();
if (Window * wnd = findParentOfType<Window>())
{
mParentWindow = wnd->handle();
}
}
int MenuPopup::calculateWidth(SizeConstraint inSizeConstraint) const
{
/**
* Popup-menus don't *need* any width in the layouting of the window,
* but it may assert its width in order to have the widgets that are aligned
* width the popup menu to have the same width as the menu itself.
* NOTE: this needs revision (since there will be situations where this behavior
* is absolutely not desired.
*/
return calculateMaxChildWidth(inSizeConstraint);
}
int MenuPopup::calculateHeight(SizeConstraint inSizeConstraint) const
{
/**
* Popup menu don't ask for height in the layouting of the window.
*/
return 0;
}
void MenuPopup::onChildAdded(Component * inChild)
{
parent()->onContentChanged();
}
void MenuPopup::onChildRemoved(Component * inChild)
{
parent()->onContentChanged();
}
Component * CreateMenuSeparator(XULWin::Component * inParent, const AttributesMapping & inAttr)
{
return new Decorator(new MenuSeparator(inParent, inAttr));
}
MenuSeparator::MenuSeparator(Component * inParent, const AttributesMapping & inAttr) :
Super(inParent, inAttr)
{
}
} // namespace XULWin
| [
"francis.rammeloo@2ec99694-a20f-11de-ba4d-5dbaeb624ccf"
] | francis.rammeloo@2ec99694-a20f-11de-ba4d-5dbaeb624ccf |
538df0ac4e6444581e555313201c5fe4794c72a5 | ed330d218042b8a4c0803ffc10460d876a140efd | /useMat_Graph.cpp | 72886e718f180125a912e0ef5b3a1a46d03cc077 | [] | no_license | WIZARD-CXY/p | 24bda712bf2d6208ed7b7502e45d74c6d8a589c9 | 1dc0aa646de1edaa9df2811653acd53830a79da1 | refs/heads/master | 2016-08-04T03:55:36.543019 | 2014-11-29T02:24:14 | 2014-11-29T02:24:14 | 14,491,684 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 413 | cpp | #include <iostream>
#include "Mat_Graph.h"
using namespace std;
/*
1 2
1 5
2 6
6 7
6 3
3 7
3 4
7 8
7 4
4 8
*/
int main()
{
Mat_Graph *G = new Mat_Graph(8);
int i = 0, a, b;
for(i = 1; i <= 10; i++)
{
cin>>a>>b;
G->AddDoubleEdge(a,b);
}
G->BFS(2);
for(i = 1; i <= 8; i++)
cout<<G->d[i]<<' ';
cout<<endl;
int s, v;
while(cin>>s>>v)
{
G->Print_Path(s, v);
cout<<endl;
}
delete G;
return 0;
}
| [
"achilles@zju.edu.cn"
] | achilles@zju.edu.cn |
a9b59ca4af423489889b8593b958286026ab1aeb | 83d407fcc56699cd41560c5920619d39df37053c | /src/par_gasresult.h | c1ede04968d9e3f2758c7cccdc0a6c9fb806459f | [] | no_license | GCaptainNemo/Datang-plus | ca0fe8d77ca414c7ff24c2ce48c6edc8de04661f | 75f49ef68b9bde39b543fce3bd33672669c4e84d | refs/heads/master | 2023-01-20T03:28:06.144640 | 2020-11-29T01:54:37 | 2020-11-29T01:54:37 | 256,822,864 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 339 | h | #ifndef GASRESULT_PAR_H
#define GASRESULT_PAR_H
#if _MSC_VER >= 1600
#pragma execution_character_set("utf-8")
#endif
#include <QWidget>
#include <QSqlQuery>
#include <QVariant>
#include "utils.h"
class gasResultPar
{
public:
gasResultPar(QSqlQuery * query);
static float Gas[13][8][23] ;
};
#endif // GASRESULT_PAR_H
| [
"1136003685@qq.com"
] | 1136003685@qq.com |
f4ae0f49dc2e96fcd055f826fb82291be38500e4 | 059b07068c9e7fdb2ad694067167687ab8a01214 | /athlets/athlets.cpp | 76a31438bab4f8cc27458695e0d7b057b00de686 | [] | no_license | PrivalovPetr/Red | 562adf3e6703b3a4a779c4c6805ad97134069134 | 9e5664051b3eb8ad4af5bf706396fa0da71033ce | refs/heads/master | 2020-05-16T13:39:39.544451 | 2019-06-11T20:55:27 | 2019-06-11T20:55:27 | 183,080,252 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 396 | cpp | #include <iostream>
#include <list>
#include <vector>
using namespace std;
int main()
{
int n;
cin >> n;
list<int> athlets;
vector<list<int>::iterator> pointers(100'001, athlets.end());
for (int i = 0; i < n; ++i) {
int num;
int prev;
cin >> num >> prev;
auto pos = pointers[prev];
pointers[num] = athlets.insert(pos, num);
}
for (auto a : athlets) {
cout << a << " ";
}
}
| [
"petr.privalov@gmail.com"
] | petr.privalov@gmail.com |
75fcd33e0ebc8b97ae6045421dca879e91ee95be | 71eb0196100d7bece14326afe216999fa2bb25a3 | /test/DebugInfo/Inputs/arange-overlap.cc | 82e3f120efdaf7122b8a30e41836d2fdaa316cc6 | [
"NCSA",
"LLVM-exception",
"Apache-2.0"
] | permissive | etclabscore/evm_llvm | aae986955cfbea32bc1c01ec382daa7a7d75611f | 700d4b7795d76a37110f8acfb6f05ee4894ab651 | refs/heads/EVM | 2022-03-11T06:21:35.460136 | 2020-09-02T21:11:20 | 2020-09-02T21:11:20 | 170,783,306 | 88 | 25 | Apache-2.0 | 2020-07-29T14:07:28 | 2019-02-15T01:31:15 | LLVM | UTF-8 | C++ | false | false | 511 | cc | void call();
struct S {
static void foo() { call(); call(); }
static void bar() { call(); call(); }
static void baz() {}
};
#ifdef FILE1
# define FUNC_NAME func1
# define FUNC_BODY \
S::foo(); S::bar(); S::baz();
#else
# define FUNC_NAME func2
# define FUNC_BODY \
S::bar();
#endif
void FUNC_NAME() {
FUNC_BODY
}
// Build instructions:
// $ clang -g -fPIC -c -DFILE1 arange-overlap.cc -o obj1.o
// $ clang -g -fPIC -c arange-overlap.cc -o obj2.o
// $ clang -shared obj1.o obj2.o -o <output>
| [
"vonosmas@gmail.com"
] | vonosmas@gmail.com |
05ea58edc077155fd5693b7b085fb9ee6907f0d0 | 38fdfed715b9f3e7ba168ff1989b9e5b8c9f8aaf | /TowerDefense/Road.cpp | 28d4513b91f52bf8ed7cf66ebdcc07f5cf3387e2 | [] | no_license | MrGoumX/TowerDefense | 06be88db2b6fd16f61137c353644caa383817ce5 | 61fcc1ccc1946fc9f6878914573d8b42032d0dbc | refs/heads/master | 2020-05-02T12:21:14.581905 | 2019-02-11T08:53:25 | 2019-02-11T08:53:25 | 177,956,245 | 1 | 0 | null | 2019-03-27T09:00:32 | 2019-03-27T09:00:32 | null | UTF-8 | C++ | false | false | 1,017 | cpp | #include "Road.h"
#include <glm/gtc/matrix_transform.inl>
#include "OBJLoader.h"
GeometricMesh* m_road_mesh;
bool Road::InitializeMeshes()
{
OBJLoader loader;
m_road_mesh = loader.load("../assets/Terrain/road.obj");
return true;
}
Road::Road()
{
m_road = new GeometryNode();
m_road->Init(m_road_mesh);
}
Road::~Road()
{
delete m_road;
}
void Road::SetPosition(glm::vec3 position)
{
m_transformation_matrix = glm::translate(glm::mat4(1), position * glm::vec3(4));
m_transformation_matrix *= glm::scale(glm::mat4(1), glm::vec3(2, 2, 2));
m_transformation_matrix_normal = glm::mat4(glm::transpose(glm::inverse(glm::mat3(m_transformation_matrix))));
}
void Road::update(Game* game)
{
}
void Road::draw_geometry(Renderer* renderer)
{
renderer->draw_geometry_node(m_road, m_transformation_matrix, m_transformation_matrix_normal);
}
void Road::draw_geometry_to_shadow_map(Renderer* renderer)
{
renderer->draw_geometry_node_to_shadow_map(m_road, m_transformation_matrix, m_transformation_matrix_normal);
} | [
"spyridon@ender.gr"
] | spyridon@ender.gr |
64989cf10b0a418d6623f23df56ef05f5ec2df88 | d9221cef36d9870757c483a9325a355d4f34d3e8 | /src/ChromaKey/MainWindow.cpp | df2d9e11930d82ec5ff6487c167d8fd7e3ffae77 | [] | no_license | diegomazala/alpha-matting | 01282c84b5941602c8a0d12955f4e6dc4966f7a4 | 5df98cbb93d9c9bcaca722b732e6b4a7436bda76 | refs/heads/master | 2021-01-10T20:22:37.677708 | 2015-06-15T04:26:12 | 2015-06-15T04:26:12 | 37,441,974 | 4 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 1,495 | cpp |
#include "MainWindow.h"
#include "ui_MainWindow.h"
#include "AboutDialog.h"
#include <QKeyEvent>
#include <QFileDialog>
MainWindow::MainWindow(QWidget *parent) :
QMainWindow(parent),
ui(new Ui::MainWindow),
currentFileName(QString())
{
ui->setupUi(this);
}
MainWindow::~MainWindow()
{
delete ui;
}
void MainWindow::fileOpen()
{
QString fileName = QFileDialog::getOpenFileName(this, tr("Open File"), "../../../data", tr("Images (*.png *.bmp *.jpg *.tif)"));
if (!fileName.isEmpty())
{
currentFileName = fileName;
// load image
ui->glImageWidget->setImage(QImage(fileName));
}
}
void MainWindow::fileSave()
{
if (!currentFileName.isEmpty())
{
}
else
{
fileSaveAs();
}
}
void MainWindow::fileSaveAs()
{
QString fileName = QFileDialog::getSaveFileName(this, tr("Save File"), "", tr("Images (*.png *.bmp *.jpg *.tiff)"));
if (!fileName.isEmpty())
{
currentFileName = fileName;
fileSave();
}
}
void MainWindow::aboutDialogShow()
{
aboutDialog = new AboutDialog(this);
aboutDialog->show();
}
void MainWindow::updateColor()
{
QPalette minColorPalette;
minColorPalette.setColor(QPalette::Window, ui->glImageWidget->getMinColorRGB());
ui->minColorLabel->setAutoFillBackground(true);
ui->minColorLabel->setPalette(minColorPalette);
QPalette maxColorPalette;
maxColorPalette.setColor(QPalette::Window, ui->glImageWidget->getMaxColorRGB());
ui->maxColorLabel->setAutoFillBackground(true);
ui->maxColorLabel->setPalette(maxColorPalette);
}
| [
"diegomazala@gmail.com"
] | diegomazala@gmail.com |
c97aa79fe656d61933f0864bdc72a2a9a994626e | 1af43c4ba32d78c60f007a4d068136ce575d917f | /system/apps/125_rtc/source/lib/Arduino.cpp | 5634f27092c99fc2d4296b460d1f8148bb321e44 | [
"MIT"
] | permissive | gabonator/LA104 | a4f1cdf2b3e513300d61c50fff091c5717abda9e | 27d0eece7302c479da2cf86e881b6a51a535f93d | refs/heads/master | 2023-08-31T22:09:36.272616 | 2023-08-27T20:08:08 | 2023-08-27T20:08:08 | 155,659,451 | 500 | 69 | MIT | 2023-08-17T08:44:32 | 2018-11-01T03:54:21 | C | UTF-8 | C++ | false | false | 1,960 | cpp | #include "Arduino.h"
#include <math.h>
#include <library.h>
#include "bitbangi2c.h"
namespace Arduino
{
bool transmissionOk = false;
bool i2cinit = false;
int reading = 0;
CWire Wire;
void delay(int d)
{
BIOS::SYS::DelayMs(d);
}
#ifndef HARDI2C
void CWire::begin()
{
}
bool CWire::beginTransmission(uint8_t address)
{
transmissionOk = wire::beginTransmission(address);
return transmissionOk ? 0 : 1;
}
void CWire::write(uint8_t data)
{
wire::write(data);
}
bool CWire::endTransmission()
{
return (wire::endTransmission() && transmissionOk) ? 0 : 1;
}
bool CWire::requestFrom(uint8_t address, int count)
{
return wire::requestFrom(address, count);
}
uint8_t CWire::read()
{
return wire::read();
}
#else
void CWire::begin()
{
if (i2cinit)
return;
i2cinit = true;
BIOS::GPIO::PinMode(BIOS::GPIO::P1, BIOS::GPIO::I2c);
BIOS::GPIO::PinMode(BIOS::GPIO::P2, BIOS::GPIO::I2c);
}
void CWire::beginTransmission(uint8_t address)
{
transmissonOk = BIOS::GPIO::I2C::BeginTransmission(address);
}
void CWire::write(uint8_t data)
{
BIOS::GPIO::I2C::Write(data);
}
bool CWire::endTransmission()
{
// if (!transmissonOk)
// return 1;
return BIOS::GPIO::I2C::EndTransmission() ? 0 : 1;
}
void CWire::requestFrom(uint8_t address, int count)
{
reading = count;
BIOS::GPIO::I2C::RequestFrom(address, count);
}
uint8_t CWire::read()
{
uint8_t aux = BIOS::GPIO::I2C::Read();
if (--reading == 0)
BIOS::GPIO::I2C::EndTransmission();
return aux;
}
#endif
int atoi(char* p)
{
int k = 0;
while (*p) {
if (*p < '0' || *p > '9')
break;
k = k * 10 + (*p) - '0';
p++;
}
return k;
}
};
using namespace Arduino;
| [
"gabriel@valky.eu"
] | gabriel@valky.eu |
2a4334589426207d4c31201c2cefd3ac008db9d6 | d23227690e847d754b49a1ceccb6f5cbeffb5b15 | /wuhan-project/BackerProxy/EnterpriseProxy/MTXXXX.cpp | 9325aeba08737e2535641135a20314e9ef83f293 | [] | no_license | zhouhuamin/wuhanproject | 9404f62592105cb459a71f3889b22726a79fd048 | 6762d8b923eb737425d67abf0c0a9dba019f6f4b | refs/heads/master | 2020-03-20T18:58:51.341599 | 2018-07-21T13:39:44 | 2018-07-21T13:39:44 | 137,614,681 | 0 | 0 | null | null | null | null | GB18030 | C++ | false | false | 24,973 | cpp | #include "StdAfx.h"
#include "MTXXXX.h"
#include "tinyxml/tinyxml.h"
#include "AdoOper/RADatabase.h"
#include "msmq/MSMQApiWrapper.h"
#include "CxLog.h"
#include "MessageType.h"
#include "MSMQSender.h"
#include <string>
#include <vector>
#include <boost/shared_array.hpp>
using namespace std;
CMTXXXX::CMTXXXX(void) : m_chOpFlag('F'), m_chSEND_FLAG('1'), m_strNote(""),m_mtResponse()
{
}
CMTXXXX::~CMTXXXX(void)
{
}
void CMTXXXX::InitConfigInfo(structConfigInfo *pConfig)
{
m_config.strQueueIP = pConfig->strQueueIP;
m_config.strQueueName = pConfig->strQueueName;
m_config.strQueueLabel = pConfig->strQueueLabel;
m_config.strSqlServerDataUser = pConfig->strSqlServerDataUser;
m_config.strSqlServerDataPwd = pConfig->strSqlServerDataPwd;
m_config.strSqlServerDataName = pConfig->strSqlServerDataName;
m_config.strSqlServerDataServer = pConfig->strSqlServerDataServer;
m_config.strFilePath = pConfig->strFilePath;
m_config.strErrorFilePath = pConfig->strErrorFilePath;
}
void CMTXXXX::SaveFileName(const std::string &strFileName)
{
m_strFileName = strFileName;
//m_strFileName = "C:\\";
//if (!strFileName.IsEmpty())
//{
// m_strFileName += (LPCTSTR)strFileName;
// m_strFileName += ".xml";
//}
//else
//{
// CString strNowTime = "";
// strNowTime = COleDateTime::GetCurrentTime().Format("%Y-%m-%d_%H:%M:%S_");
// m_strFileName += (LPCTSTR)strNowTime;
// m_strFileName += "ContaNoUnloader.xml";
//}
}
//
//int CMTXXXX::SaveLocal(BYTE *pMessage, int iLen)
//{
// if (pMessage == NULL || iLen <= 1)
// {
// return 0;
// }
//
// CStdioFile file;
// file.Open(m_strFileName.c_str(),CFile::modeCreate | CFile::modeWrite | CFile::typeBinary);
// file.Write(pMessage, iLen);
// file.Close();
// delete []pMessage;
// pMessage = NULL;
// //m_strFileName = "C:\\whcontainer.xml";
//
// return 1;
//}
void CMTXXXX::ParseMessage()
{
try
{
if (m_strFileName.empty())
return;
string strFileName = m_strFileName;
TiXmlDocument doc(strFileName.c_str());
doc.LoadFile();
TiXmlNode* node = 0;
TiXmlElement* itemElement = 0;
TiXmlElement* xmlRootElement = NULL;
TiXmlElement* xmlRootElement2 = NULL;
TiXmlElement* xmlResponseElement = NULL;
TiXmlElement* xmlSubElement = NULL;
TiXmlElement* xmlSonElement = NULL;
TiXmlElement *xmlConsignmentElement = NULL;
TiXmlNode * pNode = NULL;
TiXmlNode *pNodeTmp = NULL;
TiXmlNode *pManifestNode = NULL;
TiXmlNode *pHeadNode = NULL;
TiXmlNode *pResponseNode = NULL;
TiXmlNode *pConsignmentNode = NULL;
pManifestNode = doc.FirstChild("Manifest");
if (pManifestNode == NULL)
return ;
xmlRootElement = pManifestNode->ToElement();
if(xmlRootElement)
{
if ((pHeadNode = xmlRootElement->FirstChild("Head")) != NULL)
{
string MESSAGE_ID = "";
string FUNCTION_CODE = "";
string MESSAGE_TYPE = "";
string SENDER = "";
string RECEIVE = "";
string MESSAGE_CREATE_TIME = "";
string strVERSION = "";
xmlSubElement = pHeadNode->ToElement() ;
if (xmlSubElement != NULL)
pNodeTmp = xmlSubElement->FirstChildElement("MessageID");
if (pNodeTmp != NULL && pNodeTmp->ToElement() != NULL && pNodeTmp->ToElement()->GetText() != 0)
MESSAGE_ID = pNodeTmp->ToElement()->GetText();
if (xmlSubElement != NULL)
pNodeTmp = xmlSubElement->FirstChildElement("FunctionCode");
if (pNodeTmp != NULL && pNodeTmp->ToElement() != NULL && pNodeTmp->ToElement()->GetText() != 0)
FUNCTION_CODE = pNodeTmp->ToElement()->GetText();
if (xmlSubElement != NULL)
pNodeTmp = xmlSubElement->FirstChildElement("MessageType");
if (pNodeTmp != NULL && pNodeTmp->ToElement() != NULL && pNodeTmp->ToElement()->GetText() != 0)
MESSAGE_TYPE = pNodeTmp->ToElement()->GetText();
if (xmlSubElement != NULL)
pNodeTmp = xmlSubElement->FirstChildElement("SenderID");
if (pNodeTmp != NULL && pNodeTmp->ToElement() != NULL && pNodeTmp->ToElement()->GetText() != 0)
SENDER = pNodeTmp->ToElement()->GetText();
if (xmlSubElement != NULL)
pNodeTmp = xmlSubElement->FirstChildElement("ReceiverID");
if (pNodeTmp != NULL && pNodeTmp->ToElement() != NULL && pNodeTmp->ToElement()->GetText() != 0)
RECEIVE = pNodeTmp->ToElement()->GetText();
if (xmlSubElement != NULL)
pNodeTmp = xmlSubElement->FirstChildElement("SendTime");
if (pNodeTmp != NULL && pNodeTmp->ToElement() != NULL && pNodeTmp->ToElement()->GetText() != 0)
MESSAGE_CREATE_TIME = pNodeTmp->ToElement()->GetText();
if (xmlSubElement != NULL)
pNodeTmp = xmlSubElement->FirstChildElement("Version");
if (pNodeTmp != NULL && pNodeTmp->ToElement() != NULL && pNodeTmp->ToElement()->GetText() != 0)
strVERSION = pNodeTmp->ToElement()->GetText();
// 赋值
m_mtResponse.Head.MessageID = MESSAGE_ID;
m_mtResponse.Head.FunctionCode = FUNCTION_CODE;
m_mtResponse.Head.MessageType = MESSAGE_TYPE;
m_mtResponse.Head.SenderID = SENDER;
m_mtResponse.Head.ReceiverID = RECEIVE;
m_mtResponse.Head.SendTime = MESSAGE_CREATE_TIME;
m_mtResponse.Head.Version = strVERSION;
}
if ((pResponseNode = xmlRootElement->FirstChild("Response")) != NULL)
{
xmlResponseElement = pResponseNode->ToElement();
if (xmlResponseElement != NULL && (pNode = xmlResponseElement->FirstChild("BorderTransportMeans")) != NULL)
{
xmlSubElement = pNode->ToElement() ;
if (xmlSubElement != NULL)
pNodeTmp = xmlSubElement->FirstChildElement("JourneyID");
if (pNodeTmp != NULL && pNodeTmp->ToElement() != NULL && pNodeTmp->ToElement()->GetText() != 0)
m_mtResponse.Declaration.BorderTransportMeans.JourneyID = pNodeTmp->ToElement()->GetText();
if (xmlSubElement != NULL)
pNodeTmp = xmlSubElement->FirstChildElement("ID");
if (pNodeTmp != NULL && pNodeTmp->ToElement() != NULL && pNodeTmp->ToElement()->GetText() != 0)
m_mtResponse.Declaration.BorderTransportMeans.ID = pNodeTmp->ToElement()->GetText();
}
}
if (xmlResponseElement != NULL)
{
for (pConsignmentNode = xmlResponseElement->FirstChild("Consignment"); pConsignmentNode != NULL; pConsignmentNode = pConsignmentNode->NextSibling("Consignment"))
{
structMTXXXX_Consignment consignment;
xmlConsignmentElement = pConsignmentNode->ToElement();
if (xmlConsignmentElement != NULL && (pNode = xmlConsignmentElement->FirstChild("TransportContractDocument")) != NULL)
{
TiXmlElement *xmlTransportContractDocumentElement = NULL;
xmlTransportContractDocumentElement = xmlSubElement = pNode->ToElement() ;
if (xmlSubElement != NULL)
pNodeTmp = xmlSubElement->FirstChildElement("ID");
if (pNodeTmp != NULL && pNodeTmp->ToElement() != NULL && pNodeTmp->ToElement()->GetText() != 0)
consignment.TransportContractDocument.ID = pNodeTmp->ToElement()->GetText();
}
if (xmlConsignmentElement != NULL && (pNode = xmlConsignmentElement->FirstChild("AssociatedTransportDocument")) != NULL)
{
xmlSubElement = pNode->ToElement() ;
if (xmlSubElement != NULL)
pNodeTmp = xmlSubElement->FirstChildElement("ID");
if (pNodeTmp != NULL && pNodeTmp->ToElement() != NULL && pNodeTmp->ToElement()->GetText() != 0)
consignment.AssociatedTransportDocument.ID = pNodeTmp->ToElement()->GetText();
}
if (xmlConsignmentElement != NULL && (pNode = xmlConsignmentElement->FirstChild("ResponseType")) != NULL)
{
xmlSubElement = pNode->ToElement() ;
if (xmlSubElement != NULL)
pNodeTmp = xmlSubElement->FirstChildElement("Code");
if (pNodeTmp != NULL && pNodeTmp->ToElement() != NULL && pNodeTmp->ToElement()->GetText() != 0)
consignment.ResponseType.Code = pNodeTmp->ToElement()->GetText();
if (xmlSubElement != NULL)
pNodeTmp = xmlSubElement->FirstChildElement("Text");
if (pNodeTmp != NULL && pNodeTmp->ToElement() != NULL && pNodeTmp->ToElement()->GetText() != 0)
consignment.ResponseType.Text = pNodeTmp->ToElement()->GetText();
}
m_mtResponse.Declaration.Consignment.push_back(consignment);
}
TiXmlNode *pTransportEquipmentNode = NULL;
TiXmlElement *xmlTransportEquipmentElement = NULL;
for (pTransportEquipmentNode = xmlResponseElement->FirstChild("TransportEquipment"); pTransportEquipmentNode != NULL; pTransportEquipmentNode = pTransportEquipmentNode->NextSibling("TransportEquipment"))
{
structMTXXXX_TransportEquipment TransportEquipment;
xmlTransportEquipmentElement = pTransportEquipmentNode->ToElement() ;
if (xmlTransportEquipmentElement != NULL && (pNodeTmp = xmlTransportEquipmentElement->FirstChild("EquipmentIdentification")))
{
xmlSubElement = pNodeTmp->ToElement() ;
if (xmlSubElement != NULL)
pNodeTmp = xmlSubElement->FirstChildElement("ID");
if (pNodeTmp != NULL && pNodeTmp->ToElement() != NULL && pNodeTmp->ToElement()->GetText() != 0)
{
TransportEquipment.EquipmentIdentification.ID = pNodeTmp->ToElement()->GetText();
}
}
if (xmlTransportEquipmentElement != NULL && (pNodeTmp = xmlTransportEquipmentElement->FirstChild("ResponseType")))
{
xmlSubElement = pNodeTmp->ToElement() ;
if (xmlSubElement != NULL)
pNodeTmp = xmlSubElement->FirstChildElement("Code");
if (pNodeTmp != NULL && pNodeTmp->ToElement() != NULL && pNodeTmp->ToElement()->GetText() != 0)
{
TransportEquipment.ResponseType.Code = pNodeTmp->ToElement()->GetText();
}
if (xmlSubElement != NULL)
pNodeTmp = xmlSubElement->FirstChildElement("Text");
if (pNodeTmp != NULL && pNodeTmp->ToElement() != NULL && pNodeTmp->ToElement()->GetText() != 0)
{
TransportEquipment.ResponseType.Text = pNodeTmp->ToElement()->GetText();
}
}
m_mtResponse.Declaration.TransportEquipment.push_back(TransportEquipment);
}
xmlResponseElement = pResponseNode->ToElement();
if (xmlResponseElement != NULL && (pNode = xmlResponseElement->FirstChild("ResponseType")) != NULL)
{
xmlSubElement = pNode->ToElement() ;
if (xmlSubElement != NULL)
pNodeTmp = xmlSubElement->FirstChildElement("Code");
if (pNodeTmp != NULL && pNodeTmp->ToElement() != NULL && pNodeTmp->ToElement()->GetText() != 0)
m_mtResponse.Declaration.ResponseType.Code = pNodeTmp->ToElement()->GetText();
if (xmlSubElement != NULL)
pNodeTmp = xmlSubElement->FirstChildElement("Text");
if (pNodeTmp != NULL && pNodeTmp->ToElement() != NULL && pNodeTmp->ToElement()->GetText() != 0)
m_mtResponse.Declaration.ResponseType.Text = pNodeTmp->ToElement()->GetText();
}
}
}
// delete file
//if (strFileName != "")
//{
// CFile::Remove(strFileName.c_str());
//}
}
catch(...)
{
return ;
}
//CStdioFile file;
//file.Open("F:\\test\\log.txt",CFile::modeRead|CFile::typeBinary);
//int iLen = file.GetLength();
//char* pData = new char[iLen+1];
//memset(pData, 0x00, sizeof(char) * (iLen + 1));
//file.Seek(0,CFile::begin);
//file.Read(pData, iLen);
//file.Close();
return ;
}
int CMTXXXX::SaveToDB()
{
if (m_mtResponse.Head.MessageID.empty())
return 0;
try
{
//CString strConn = "";
//strConn = "Provider=SQLOLEDB.1;Password="; //sa;Persist Security Info=True;User ID=sa;Initial Catalog=CGS_DB;Data Source=SANBAO-ZHOUHM
////strConn += "sa";
//strConn += m_config.strSqlServerDataPwd.c_str();
//strConn += ";Persist Security Info=True;User ID=";
////strConn += "sa";
//strConn += m_config.strSqlServerDataUser.c_str();
//strConn += ";Initial Catalog="; // CGS_DB";
//strConn += m_config.strSqlServerDataName.c_str();
//strConn += ";Data Source=";
////strConn += "127.0.0.1";
//strConn += m_config.strSqlServerDataServer.c_str();
//CRADatabase database;
//HRESULT nRet = database.RAConnect(LPCTSTR(strConn));
//if (nRet == E_FAIL)
//{
// return 0;
//}
//if (m_messageHead.MESSAGE_ID[0] != '\0')
//{
// CString strSql = "";
// char szSqlBuffer[2048] = {0};
// sprintf_s(szSqlBuffer, sizeof(szSqlBuffer), "insert into D_SHIP_DICTATE_BILL(MESSAGE_ID,CUSTOMS_CODE,I_E_FLAG,SHIP_NAME_EN,VOYAGE_NO,NOTE, \
// FUNCTION_CODE, MESSAGE_TYPE, SENDER, RECEIVER, CREATE_TIME, INPUT_TIME, SEND_FLAG, VERSION) \
// values('%s', '%s', '%c', '%s', '%s', '%s', \
// '%s', '%s', '%s', '%s', '%s', GetDate(), '%c', '%s')", \
// m_messageHead.MESSAGE_ID, m_billInfo.CUSTOMS_CODE, m_billInfo.I_E_FLAG[0], m_billInfo.SHIP_NAME_EN, m_billInfo.VOYAGE_NO, m_billInfo.NOTE, \
// m_messageHead.FUNCTION_CODE, m_messageHead.MESSAGE_TYPE, m_messageHead.SENDER, m_messageHead.RECEIVE, m_messageHead.MESSAGE_CREATE_TIME, '1', m_messageHead.VERSION);
// strSql += szSqlBuffer;
// // 执行Sql语句
// database.RAExecuteNoRs((LPCTSTR)strSql);
// LOG1("insert into D_SHIP_DICTATE_BILL, MESSAGE_ID=%s", m_messageHead.MESSAGE_ID);
//}
//size_t nContaSize = m_contaInfoVect.size();
//for (size_t i = 0; i < nContaSize; ++i)
//{
// // single insert into table
// size_t iTmpIndex = i;
// CString strSql = "";
// char szSqlBuffer[1024] = {0};
// sprintf_s(szSqlBuffer, sizeof(szSqlBuffer), "insert into D_SHIP_DICTATE_CONTA(MESSAGE_ID,CONTA_NO,CONTA_MODEL,CONTA_SIZE,SEAL_NO,SHIP_STATE, NOTE) \
// values('%s', '%s', '%s', '%s', '%s', '%c', '%s')", \
// m_messageHead.MESSAGE_ID, m_contaInfoVect[iTmpIndex].CONTA_NO, m_contaInfoVect[iTmpIndex].CONTA_MODEL, \
// m_contaInfoVect[iTmpIndex].CONTA_SIZE, m_contaInfoVect[iTmpIndex].SEAL_NO, '1', m_contaInfoVect[iTmpIndex].NOTE);
// strSql += szSqlBuffer;
// // 执行Sql语句
// HRESULT hRet = database.RAExecuteNoRs((LPCTSTR)strSql);
// if (hRet == S_OK)
// m_chOpFlag = 'T';
// else
// m_chOpFlag = 'F';
// LOG2("insert into D_SHIP_DICTATE_CONTA, MESSAGE_ID=%s, CONTA_NO=%s", m_messageHead.MESSAGE_ID, m_contaInfoVect[iTmpIndex].CONTA_NO);
//}
}
catch(...)
{
return 0;
}
m_chSEND_FLAG = '2';
return 1;
}
void CMTXXXX::SendResponse(const std::string &strPreFlag)
{
//if (m_messageHead.MESSAGE_ID[0] == '\0')
// return;
//SelectMQ();
//CString MESSAGE_CREATE_TIME = "";
//MESSAGE_CREATE_TIME =COleDateTime::GetCurrentTime().Format("%Y-%m-%d %H:%M:%S");
//CString strResponse = "";
//std::string MESSAGE_TYPE = CMessageType::CLM10042;
//strResponse.Format("<?xml version=\"1.0\" encoding=\"GB2312\"?>\n"
// "<MESSAGE>\n"
// "<MESSAGE_HEAD>\n"
// "\t<MESSAGE_ID>%s</MESSAGE_ID>\n"
// "\t<FUNCTION_CODE>%s</FUNCTION_CODE>\n"
// "\t<MESSAGE_TYPE>%s</MESSAGE_TYPE>\n"
// "\t<SENDER>%s</SENDER>\n"
// "\t<RECEIVER>%s</RECEIVER>\n"
// "\t<MESSAGE_CREATE_TIME>%s</MESSAGE_CREATE_TIME>\n"
// "\t<VERSION>%s</VERSION>\n"
// "</MESSAGE_HEAD>\n"
// "<MESSAGE_LIST>\n"
// "<RESPOND_INFO>\n"
// "\t<MESSAGE_ID>%s</MESSAGE_ID>\n"
// "\t<OP_FLAG>%c</OP_FLAG>\n"
// "\t<NOTE>%s</NOTE>\n"
// "</RESPOND_INFO>\n"
// "</MESSAGE_LIST>\n"
// "</MESSAGE>\n",
// m_messageHead.MESSAGE_ID, m_messageHead.FUNCTION_CODE, MESSAGE_TYPE.c_str(), m_messageHead.RECEIVE, \
// m_messageHead.SENDER, MESSAGE_CREATE_TIME, m_messageHead.VERSION, m_messageHead.MESSAGE_ID, m_chOpFlag, m_strNote.c_str());
//// 发送MSMQ
////CMSMQApiWrapper ob;
//std::string szLabel = CMessageType::MT3101;
//CString strMessage = strResponse;
////if ((!m_strMQIp.empty()) && (!m_strQueueName.empty()))
//// int nRet = ob.SendStreamMessage(m_strMQIp.c_str(), m_strQueueName.c_str(), szLabel.c_str(), szLabel.c_str(), strMessage);
//std::auto_ptr<CMessageSender> apBasic(new CMSMQSender(m_strMQIp, m_strQueueName, szLabel, szLabel));
//apBasic->SendMessage((LPCTSTR)strMessage, strMessage.GetLength());
// WEB应用发送
if (strPreFlag == "WEB")
{
boost::shared_array<char> spXmlData;
int nXmlLen = 0;
CStdioFile file;
if (!file.Open(m_strFileName.c_str(), CFile::modeRead|CFile::typeBinary))
{
return;
}
DWORD iLen = (DWORD)file.GetLength();
if (iLen <= 0)
{
file.Close();
return;
}
spXmlData.reset(new char[iLen + 1]);
file.Seek(0,CFile::begin);
file.Read(spXmlData.get(), iLen);
file.Close();
spXmlData[iLen] = '\0';
CStringArray queueNameArray;
CStringArray mqIPArray;
SelectMQForWeb(queueNameArray, mqIPArray);
for (int i = 0, j = 0; i < queueNameArray.GetSize() && j < mqIPArray.GetSize(); ++i,++j)
{
if (i != j)
break;
// 发送MSMQ
std::string strQueueName = (LPCTSTR)queueNameArray[j];
std::string strMQIp = (LPCTSTR)mqIPArray[i];
std::string szLabel = "WEB-";
szLabel += CMessageType::MTXXXX;
std::auto_ptr<CMessageSender> apBasic(new CMSMQSender(strMQIp, strQueueName, szLabel, szLabel));
apBasic->SendMessage(spXmlData.get(), iLen);
}
// delete file
if (m_strFileName != "")
{
CFile::Remove(m_strFileName.c_str());
}
return;
}
boost::shared_array<char> spXmlData;
int nXmlLen = 0;
CStdioFile file;
if (!file.Open(m_strFileName.c_str(), CFile::modeRead|CFile::typeBinary))
{
return;
}
DWORD iLen = (DWORD)file.GetLength();
if (iLen <= 0)
{
file.Close();
return;
}
spXmlData.reset(new char[iLen + 1]);
file.Seek(0,CFile::begin);
file.Read(spXmlData.get(), iLen);
file.Close();
spXmlData[iLen] = '\0';
CStringArray queueNameArray;
CStringArray mqIPArray;
SelectMQ(queueNameArray, mqIPArray);
for (int i = 0, j = 0; i < queueNameArray.GetSize() && j < mqIPArray.GetSize(); ++i,++j)
{
if (i != j)
break;
// 发送MSMQ
std::string strQueueName = (LPCTSTR)queueNameArray[j];
std::string strMQIp = (LPCTSTR)mqIPArray[i];
std::string szLabel = CMessageType::MTXXXX;
std::auto_ptr<CMessageSender> apBasic(new CMSMQSender(strMQIp, strQueueName, szLabel, szLabel));
apBasic->SendMessage(spXmlData.get(), iLen);
}
// delete file
if (m_strFileName != "")
{
CFile::Remove(m_strFileName.c_str());
}
}
int CMTXXXX::UpdateDB()
{
//if (m_messageHead.MESSAGE_ID[0] == '\0')
// return 0;
//try
//{
// CString strConn = "";
// strConn = "Provider=SQLOLEDB.1;Password="; //sa;Persist Security Info=True;User ID=sa;Initial Catalog=CGS_DB;Data Source=SANBAO-ZHOUHM
// //strConn += "sa";
// strConn += m_config.strSqlServerDataPwd.c_str();
// strConn += ";Persist Security Info=True;User ID=";
// //strConn += "sa";
// strConn += m_config.strSqlServerDataUser.c_str();
// strConn += ";Initial Catalog="; // CGS_DB";
// strConn += m_config.strSqlServerDataName.c_str();
// strConn += ";Data Source=";
// //strConn += "127.0.0.1";
// strConn += m_config.strSqlServerDataServer.c_str();
// CRADatabase database;
// HRESULT nRet = database.RAConnect(LPCTSTR(strConn));
// if (nRet == E_FAIL)
// {
// return 0;
// }
// if (m_messageHead.MESSAGE_ID[0] != '\0')
// {
// CString strSql = "";
// char szSqlBuffer[2048] = {0};
// sprintf_s(szSqlBuffer, sizeof(szSqlBuffer), "update D_SHIP_DICTATE_BILL set SEND_FLAG='%c' where MESSAGE_ID='%s'", m_chSEND_FLAG, m_messageHead.MESSAGE_ID);
// strSql += szSqlBuffer;
// // 执行Sql语句
// database.RAExecuteNoRs((LPCTSTR)strSql);
// LOG2("update D_SHIP_DICTATE_BILL, MESSAGE_ID=%s, SEND_FLAG='%c'", m_messageHead.MESSAGE_ID, m_chSEND_FLAG);
// }
//}
//catch(...)
//{
// return 0;
//}
return 1;
}
std::string CMTXXXX::GetFileName()
{
return m_strFileName;
}
int CMTXXXX::SelectMQ(CStringArray &queueNameArray, CStringArray &mqIPArray)
{
if (m_mtResponse.Head.MessageID.empty())
return 0;
try
{
CStringArray mqPathArray;
CString strMQPath = "";
char szSql[1024] = {0};
sprintf_s(szSql, sizeof(szSql), "select MQPATH from WH_MQPATH_CONFIG where MQMESSAGETYPE='ALL' and CUSTOMS_CODE='%s' and ENTERPRISE_CODE='WEB-CUSTOM' and INOROUTFLAG='1'", m_mtResponse.Head.ReceiverID.c_str());
CString strConn = "";
strConn = "Provider=Microsoft.ACE.OLEDB.12.0;Data Source=C:\\Njsamples\\CGS_DB\\WHPROXY_DB.accdb;"; //sa;Persist Security Info=True;User ID=sa;Initial Catalog=WHHGWL;Data Source=SANBAO-ZHOUHM
//strConn = "Provider=SQLOLEDB.1;Password="; //sa;Persist Security Info=True;User ID=sa;Initial Catalog=WHHGWL;Data Source=SANBAO-ZHOUHM
////strConn += "sa";
//strConn += m_config.strSqlServerDataPwd.c_str();
//strConn += ";Persist Security Info=True;User ID=";
////strConn += "sa";
//strConn += m_config.strSqlServerDataUser.c_str();
//strConn += ";Initial Catalog="; // WHHGWL";
//strConn += m_config.strSqlServerDataName.c_str();
//strConn += ";Data Source=";
////strConn += "127.0.0.1";
//strConn += m_config.strSqlServerDataServer.c_str();
CRADatabase database;
HRESULT nRet = database.RAConnect(LPCTSTR(strConn));
if (nRet == E_FAIL)
{
return 0;
}
_RecordsetPtr oRs;
oRs = database.RAExecuteRs(szSql);
CComVariant val;
while (!oRs->EndOfFile)
{
val = oRs->Fields->Item[_variant_t("MQPATH")]->Value;
if (val.vt != (VT_NULL))
{
strMQPath = (char*)_bstr_t(val);
mqPathArray.Add(strMQPath);
}
oRs->MoveNext();
}
oRs->Release();
oRs->Close();
CString strQueueName = "";
CString strMQIp = "";
//CStringArray queueNameArray;
//CStringArray mqIPArray;
for (int i = 0; i < mqPathArray.GetSize(); ++i)
{
strMQPath = mqPathArray[i];
if (strMQPath.IsEmpty())
continue;
// formatname:direct=tcp:192.168.32.30\private$\whhg_OutToIn
int index = strMQPath.ReverseFind('\\');
if (index > 0)
{
strQueueName = (LPCTSTR)strMQPath.Mid(index + 1);
queueNameArray.Add(strQueueName);
}
index = strMQPath.ReverseFind(':');
int right = strMQPath.Find('\\');
if (index > 0 && index < right)
{
strMQIp = (LPCTSTR)strMQPath.Mid(index + 1, right - index - 1);
mqIPArray.Add(strMQIp);
}
}
}
catch(...)
{
return 0;
}
return 1;
}
int CMTXXXX::SelectMQForWeb(CStringArray &queueNameArray, CStringArray &mqIPArray)
{
try
{
CStringArray mqPathArray;
CString strMQPath = "";
char szSql[1024] = {0};
sprintf_s(szSql, sizeof(szSql), "select MQPATH from WH_MQPATH_CONFIG where MQMESSAGETYPE='ALL' and CUSTOMS_CODE='%s' and ENTERPRISE_CODE='CUSTOM' and INOROUTFLAG='1'", m_mtResponse.Head.ReceiverID.c_str());
CString strConn = "";
strConn = "Provider=Microsoft.ACE.OLEDB.12.0;Data Source=C:\\Njsamples\\CGS_DB\\WHPROXY_DB.accdb;"; //sa;Persist Security Info=True;User ID=sa;Initial Catalog=WHHGWL;Data Source=SANBAO-ZHOUHM
//strConn = "Provider=SQLOLEDB.1;Password="; //sa;Persist Security Info=True;User ID=sa;Initial Catalog=WHHGWL;Data Source=SANBAO-ZHOUHM
////strConn += "sa";
//strConn += m_config.strSqlServerDataPwd.c_str();
//strConn += ";Persist Security Info=True;User ID=";
////strConn += "sa";
//strConn += m_config.strSqlServerDataUser.c_str();
//strConn += ";Initial Catalog="; // WHHGWL";
//strConn += m_config.strSqlServerDataName.c_str();
//strConn += ";Data Source=";
////strConn += "127.0.0.1";
//strConn += m_config.strSqlServerDataServer.c_str();
CRADatabase database;
HRESULT nRet = database.RAConnect(LPCTSTR(strConn));
if (nRet == E_FAIL)
{
return 0;
}
_RecordsetPtr oRs;
oRs = database.RAExecuteRs(szSql);
CComVariant val;
while (!oRs->EndOfFile)
{
val = oRs->Fields->Item[_variant_t("MQPATH")]->Value;
if (val.vt != (VT_NULL))
{
strMQPath = (char*)_bstr_t(val);
mqPathArray.Add(strMQPath);
}
oRs->MoveNext();
}
oRs->Release();
oRs->Close();
CString strQueueName = "";
CString strMQIp = "";
//CStringArray queueNameArray;
//CStringArray mqIPArray;
for (int i = 0; i < mqPathArray.GetSize(); ++i)
{
strMQPath = mqPathArray[i];
if (strMQPath.IsEmpty())
continue;
// formatname:direct=tcp:192.168.32.30\private$\whhg_OutToIn
int index = strMQPath.ReverseFind('\\');
if (index > 0)
{
strQueueName = (LPCTSTR)strMQPath.Mid(index + 1);
queueNameArray.Add(strQueueName);
}
index = strMQPath.ReverseFind(':');
int right = strMQPath.Find('\\');
if (index > 0 && index < right)
{
strMQIp = (LPCTSTR)strMQPath.Mid(index + 1, right - index - 1);
mqIPArray.Add(strMQIp);
}
}
}
catch(...)
{
return 0;
}
return 1;
}
| [
"523141399@qq.com"
] | 523141399@qq.com |
26a476964d949ccba6902a222f9c12868f8eae67 | 2b6640d30d261ee751093bde2f83c8473af3d5fc | /src/rpcmining.cpp | cc226ad2b492130862be96b583497ca0d898fdf9 | [
"MIT"
] | permissive | CryptoWolfX/AnimalsCoin | 92fc2e4e915b4a969dd090b433b45c76db77deac | 975be625f0326f79318eb6d5b2ab407570df96f0 | refs/heads/master | 2021-05-10T14:48:52.328267 | 2018-02-11T14:59:21 | 2018-02-11T14:59:21 | 118,532,750 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 21,117 | cpp | // Copyright (c) 2010 Satoshi Nakamoto
// Copyright (c) 2009-2012 The Bitcoin developers
// Distributed under the MIT/X11 software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#include "main.h"
#include "db.h"
#include "init.h"
#include "bitcoinrpc.h"
using namespace json_spirit;
using namespace std;
// Return average network hashes per second based on the last 'lookup' blocks,
// or from the last difficulty change if 'lookup' is nonpositive.
// If 'height' is nonnegative, compute the estimate at the time when a given block was found.
Value GetNetworkHashPS(int lookup, int height) {
CBlockIndex *pb = pindexBest;
if (height >= 0 && height < nBestHeight)
pb = FindBlockByHeight(height);
if (pb == NULL || !pb->nHeight)
return 0;
// If lookup is -1, then use blocks since last difficulty change.
if (lookup <= 0)
lookup = pb->nHeight % 2016 + 1;
// If lookup is larger than chain, then set it to chain length.
if (lookup > pb->nHeight)
lookup = pb->nHeight;
CBlockIndex *pb0 = pb;
int64 minTime = pb0->GetBlockTime();
int64 maxTime = minTime;
for (int i = 0; i < lookup; i++) {
pb0 = pb0->pprev;
int64 time = pb0->GetBlockTime();
minTime = std::min(time, minTime);
maxTime = std::max(time, maxTime);
}
// In case there's a situation where minTime == maxTime, we don't want a divide by zero exception.
if (minTime == maxTime)
return 0;
uint256 workDiff = pb->nChainWork - pb0->nChainWork;
int64 timeDiff = maxTime - minTime;
return (boost::int64_t)(workDiff.getdouble() / timeDiff);
}
Value getnetworkhashps(const Array& params, bool fHelp)
{
if (fHelp || params.size() > 2)
throw runtime_error(
"getnetworkhashps [blocks] [height]\n"
"Returns the estimated network hashes per second based on the last 120 blocks.\n"
"Pass in [blocks] to override # of blocks, -1 specifies since last difficulty change.\n"
"Pass in [height] to estimate the network speed at the time when a certain block was found.");
return GetNetworkHashPS(params.size() > 0 ? params[0].get_int() : 120, params.size() > 1 ? params[1].get_int() : -1);
}
// Key used by getwork/getblocktemplate miners.
// Allocated in InitRPCMining, free'd in ShutdownRPCMining
static CReserveKey* pMiningKey = NULL;
void InitRPCMining()
{
if (!pwalletMain)
return;
// getwork/getblocktemplate mining rewards paid here:
pMiningKey = new CReserveKey(pwalletMain);
}
void ShutdownRPCMining()
{
if (!pMiningKey)
return;
delete pMiningKey; pMiningKey = NULL;
}
Value getgenerate(const Array& params, bool fHelp)
{
if (fHelp || params.size() != 0)
throw runtime_error(
"getgenerate\n"
"Returns true or false.");
if (!pMiningKey)
return false;
return GetBoolArg("-gen");
}
Value setgenerate(const Array& params, bool fHelp)
{
if (fHelp || params.size() < 1 || params.size() > 2)
throw runtime_error(
"setgenerate <generate> [genproclimit]\n"
"<generate> is true or false to turn generation on or off.\n"
"Generation is limited to [genproclimit] processors, -1 is unlimited.");
bool fGenerate = true;
if (params.size() > 0)
fGenerate = params[0].get_bool();
if (params.size() > 1)
{
int nGenProcLimit = params[1].get_int();
mapArgs["-genproclimit"] = itostr(nGenProcLimit);
if (nGenProcLimit == 0)
fGenerate = false;
}
mapArgs["-gen"] = (fGenerate ? "1" : "0");
assert(pwalletMain != NULL);
GenerateBitcoins(fGenerate, pwalletMain);
return Value::null;
}
Value gethashespersec(const Array& params, bool fHelp)
{
if (fHelp || params.size() != 0)
throw runtime_error(
"gethashespersec\n"
"Returns a recent hashes per second performance measurement while generating.");
if (GetTimeMillis() - nHPSTimerStart > 8000)
return (boost::int64_t)0;
return (boost::int64_t)dHashesPerSec;
}
Value getmininginfo(const Array& params, bool fHelp)
{
if (fHelp || params.size() != 0)
throw runtime_error(
"getmininginfo\n"
"Returns an object containing mining-related information.");
Object obj;
obj.push_back(Pair("blocks", (int)nBestHeight));
obj.push_back(Pair("currentblocksize",(uint64_t)nLastBlockSize));
obj.push_back(Pair("currentblocktx",(uint64_t)nLastBlockTx));
obj.push_back(Pair("difficulty", (double)GetDifficulty()));
obj.push_back(Pair("errors", GetWarnings("statusbar")));
obj.push_back(Pair("generate", GetBoolArg("-gen")));
obj.push_back(Pair("genproclimit", (int)GetArg("-genproclimit", -1)));
obj.push_back(Pair("hashespersec", gethashespersec(params, false)));
obj.push_back(Pair("networkhashps", getnetworkhashps(params, false)));
obj.push_back(Pair("pooledtx", (uint64_t)mempool.size()));
obj.push_back(Pair("testnet", fTestNet));
return obj;
}
Value getworkex(const Array& params, bool fHelp)
{
if (fHelp || params.size() > 2)
throw runtime_error(
"getworkex [data, coinbase]\n"
"If [data, coinbase] is not specified, returns extended work data.\n"
);
if (vNodes.empty())
throw JSONRPCError(RPC_CLIENT_NOT_CONNECTED, "Animalscoin is not connected!");
if (IsInitialBlockDownload())
throw JSONRPCError(RPC_CLIENT_IN_INITIAL_DOWNLOAD, "Animalscoin is downloading blocks...");
typedef map<uint256, pair<CBlock*, CScript> > mapNewBlock_t;
static mapNewBlock_t mapNewBlock; // FIXME: thread safety
static vector<CBlockTemplate*> vNewBlockTemplate;
static CReserveKey reservekey(pwalletMain);
if (params.size() == 0)
{
// Update block
static unsigned int nTransactionsUpdatedLast;
static CBlockIndex* pindexPrev;
static int64 nStart;
static CBlockTemplate* pblocktemplate;
if (pindexPrev != pindexBest ||
(nTransactionsUpdated != nTransactionsUpdatedLast && GetTime() - nStart > 60))
{
if (pindexPrev != pindexBest)
{
// Deallocate old blocks since they're obsolete now
mapNewBlock.clear();
BOOST_FOREACH(CBlockTemplate* pblocktemplate, vNewBlockTemplate)
delete pblocktemplate;
vNewBlockTemplate.clear();
}
// Clear pindexPrev so future getworks make a new block, despite any failures from here on
pindexPrev = NULL;
// Store the pindexBest used before CreateNewBlock, to avoid races
nTransactionsUpdatedLast = nTransactionsUpdated;
CBlockIndex* pindexPrevNew = pindexBest;
nStart = GetTime();
// Create new block
pblocktemplate = CreateNewBlockWithKey(*pMiningKey);
if (!pblocktemplate)
throw JSONRPCError(RPC_OUT_OF_MEMORY, "Out of memory");
vNewBlockTemplate.push_back(pblocktemplate);
// Need to update only after we know CreateNewBlock succeeded
pindexPrev = pindexPrevNew;
}
CBlock* pblock = &pblocktemplate->block; // pointer for convenience
// Update nTime
pblock->UpdateTime(pindexPrev);
pblock->nNonce = 0;
// Update nExtraNonce
static unsigned int nExtraNonce = 0;
IncrementExtraNonce(pblock, pindexPrev, nExtraNonce);
// Save
mapNewBlock[pblock->hashMerkleRoot] = make_pair(pblock, pblock->vtx[0].vin[0].scriptSig);
// Pre-build hash buffers
char pmidstate[32];
char pdata[128];
char phash1[64];
FormatHashBuffers(pblock, pmidstate, pdata, phash1);
uint256 hashTarget = CBigNum().SetCompact(pblock->nBits).getuint256();
CTransaction coinbaseTx = pblock->vtx[0];
std::vector<uint256> merkle = pblock->GetMerkleBranch(0);
Object result;
result.push_back(Pair("data", HexStr(BEGIN(pdata), END(pdata))));
result.push_back(Pair("target", HexStr(BEGIN(hashTarget), END(hashTarget))));
CDataStream ssTx(SER_NETWORK, PROTOCOL_VERSION);
ssTx << coinbaseTx;
result.push_back(Pair("coinbase", HexStr(ssTx.begin(), ssTx.end())));
Array merkle_arr;
BOOST_FOREACH(uint256 merkleh, merkle) {
printf("%s\n", merkleh.ToString().c_str());
merkle_arr.push_back(HexStr(BEGIN(merkleh), END(merkleh)));
}
result.push_back(Pair("merkle", merkle_arr));
return result;
}
else
{
// Parse parameters
vector<unsigned char> vchData = ParseHex(params[0].get_str());
vector<unsigned char> coinbase;
if(params.size() == 2)
coinbase = ParseHex(params[1].get_str());
if (vchData.size() != 128)
throw JSONRPCError(RPC_INVALID_PARAMETER, "Invalid parameter");
CBlock* pdata = (CBlock*)&vchData[0];
// Byte reverse
for (int i = 0; i < 128/4; i++)
((unsigned int*)pdata)[i] = ByteReverse(((unsigned int*)pdata)[i]);
// Get saved block
if (!mapNewBlock.count(pdata->hashMerkleRoot))
return false;
CBlock* pblock = mapNewBlock[pdata->hashMerkleRoot].first;
pblock->nTime = pdata->nTime;
pblock->nNonce = pdata->nNonce;
if(coinbase.size() == 0)
pblock->vtx[0].vin[0].scriptSig = mapNewBlock[pdata->hashMerkleRoot].second;
else
CDataStream(coinbase, SER_NETWORK, PROTOCOL_VERSION) >> pblock->vtx[0];
pblock->hashMerkleRoot = pblock->BuildMerkleTree();
return CheckWork(pblock, *pwalletMain, reservekey);
}
}
Value getwork(const Array& params, bool fHelp)
{
if (fHelp || params.size() > 1)
throw runtime_error(
"getwork [data]\n"
"If [data] is not specified, returns formatted hash data to work on:\n"
" \"midstate\" : precomputed hash state after hashing the first half of the data (DEPRECATED)\n" // deprecated
" \"data\" : block data\n"
" \"hash1\" : formatted hash buffer for second hash (DEPRECATED)\n" // deprecated
" \"target\" : little endian hash target\n"
"If [data] is specified, tries to solve the block and returns true if it was successful.");
if (vNodes.empty())
throw JSONRPCError(RPC_CLIENT_NOT_CONNECTED, "Animalscoin is not connected!");
if (IsInitialBlockDownload())
throw JSONRPCError(RPC_CLIENT_IN_INITIAL_DOWNLOAD, "Animalscoin is downloading blocks...");
typedef map<uint256, pair<CBlock*, CScript> > mapNewBlock_t;
static mapNewBlock_t mapNewBlock; // FIXME: thread safety
static vector<CBlockTemplate*> vNewBlockTemplate;
if (params.size() == 0)
{
// Update block
static unsigned int nTransactionsUpdatedLast;
static CBlockIndex* pindexPrev;
static int64 nStart;
static CBlockTemplate* pblocktemplate;
if (pindexPrev != pindexBest ||
(nTransactionsUpdated != nTransactionsUpdatedLast && GetTime() - nStart > 60))
{
if (pindexPrev != pindexBest)
{
// Deallocate old blocks since they're obsolete now
mapNewBlock.clear();
BOOST_FOREACH(CBlockTemplate* pblocktemplate, vNewBlockTemplate)
delete pblocktemplate;
vNewBlockTemplate.clear();
}
// Clear pindexPrev so future getworks make a new block, despite any failures from here on
pindexPrev = NULL;
// Store the pindexBest used before CreateNewBlock, to avoid races
nTransactionsUpdatedLast = nTransactionsUpdated;
CBlockIndex* pindexPrevNew = pindexBest;
nStart = GetTime();
// Create new block
pblocktemplate = CreateNewBlockWithKey(*pMiningKey);
if (!pblocktemplate)
throw JSONRPCError(RPC_OUT_OF_MEMORY, "Out of memory");
vNewBlockTemplate.push_back(pblocktemplate);
// Need to update only after we know CreateNewBlock succeeded
pindexPrev = pindexPrevNew;
}
CBlock* pblock = &pblocktemplate->block; // pointer for convenience
// Update nTime
pblock->UpdateTime(pindexPrev);
pblock->nNonce = 0;
// Update nExtraNonce
static unsigned int nExtraNonce = 0;
IncrementExtraNonce(pblock, pindexPrev, nExtraNonce);
// Save
mapNewBlock[pblock->hashMerkleRoot] = make_pair(pblock, pblock->vtx[0].vin[0].scriptSig);
// Pre-build hash buffers
char pmidstate[32];
char pdata[128];
char phash1[64];
FormatHashBuffers(pblock, pmidstate, pdata, phash1);
uint256 hashTarget = CBigNum().SetCompact(pblock->nBits).getuint256();
Object result;
result.push_back(Pair("midstate", HexStr(BEGIN(pmidstate), END(pmidstate)))); // deprecated
result.push_back(Pair("data", HexStr(BEGIN(pdata), END(pdata))));
result.push_back(Pair("hash1", HexStr(BEGIN(phash1), END(phash1)))); // deprecated
result.push_back(Pair("target", HexStr(BEGIN(hashTarget), END(hashTarget))));
return result;
}
else
{
// Parse parameters
vector<unsigned char> vchData = ParseHex(params[0].get_str());
if (vchData.size() != 128)
throw JSONRPCError(RPC_INVALID_PARAMETER, "Invalid parameter");
CBlock* pdata = (CBlock*)&vchData[0];
// Byte reverse
for (int i = 0; i < 128/4; i++)
((unsigned int*)pdata)[i] = ByteReverse(((unsigned int*)pdata)[i]);
// Get saved block
if (!mapNewBlock.count(pdata->hashMerkleRoot))
return false;
CBlock* pblock = mapNewBlock[pdata->hashMerkleRoot].first;
pblock->nTime = pdata->nTime;
pblock->nNonce = pdata->nNonce;
pblock->vtx[0].vin[0].scriptSig = mapNewBlock[pdata->hashMerkleRoot].second;
pblock->hashMerkleRoot = pblock->BuildMerkleTree();
assert(pwalletMain != NULL);
return CheckWork(pblock, *pwalletMain, *pMiningKey);
}
}
Value getblocktemplate(const Array& params, bool fHelp)
{
if (fHelp || params.size() > 1)
throw runtime_error(
"getblocktemplate [params]\n"
"Returns data needed to construct a block to work on:\n"
" \"version\" : block version\n"
" \"previousblockhash\" : hash of current highest block\n"
" \"transactions\" : contents of non-coinbase transactions that should be included in the next block\n"
" \"coinbaseaux\" : data that should be included in coinbase\n"
" \"coinbasevalue\" : maximum allowable input to coinbase transaction, including the generation award and transaction fees\n"
" \"target\" : hash target\n"
" \"mintime\" : minimum timestamp appropriate for next block\n"
" \"curtime\" : current timestamp\n"
" \"mutable\" : list of ways the block template may be changed\n"
" \"noncerange\" : range of valid nonces\n"
" \"sigoplimit\" : limit of sigops in blocks\n"
" \"sizelimit\" : limit of block size\n"
" \"bits\" : compressed target of next block\n"
" \"height\" : height of the next block\n"
"See https://en.bitcoin.it/wiki/BIP_0022 for full specification.");
std::string strMode = "template";
if (params.size() > 0)
{
const Object& oparam = params[0].get_obj();
const Value& modeval = find_value(oparam, "mode");
if (modeval.type() == str_type)
strMode = modeval.get_str();
else if (modeval.type() == null_type)
{
/* Do nothing */
}
else
throw JSONRPCError(RPC_INVALID_PARAMETER, "Invalid mode");
}
if (strMode != "template")
throw JSONRPCError(RPC_INVALID_PARAMETER, "Invalid mode");
if (vNodes.empty())
throw JSONRPCError(RPC_CLIENT_NOT_CONNECTED, "Animalscoin is not connected!");
if (IsInitialBlockDownload())
throw JSONRPCError(RPC_CLIENT_IN_INITIAL_DOWNLOAD, "Animalscoin is downloading blocks...");
// Update block
static unsigned int nTransactionsUpdatedLast;
static CBlockIndex* pindexPrev;
static int64 nStart;
static CBlockTemplate* pblocktemplate;
if (pindexPrev != pindexBest ||
(nTransactionsUpdated != nTransactionsUpdatedLast && GetTime() - nStart > 5))
{
// Clear pindexPrev so future calls make a new block, despite any failures from here on
pindexPrev = NULL;
// Store the pindexBest used before CreateNewBlock, to avoid races
nTransactionsUpdatedLast = nTransactionsUpdated;
CBlockIndex* pindexPrevNew = pindexBest;
nStart = GetTime();
// Create new block
if(pblocktemplate)
{
delete pblocktemplate;
pblocktemplate = NULL;
}
CScript scriptDummy = CScript() << OP_TRUE;
pblocktemplate = CreateNewBlock(scriptDummy);
if (!pblocktemplate)
throw JSONRPCError(RPC_OUT_OF_MEMORY, "Out of memory");
// Need to update only after we know CreateNewBlock succeeded
pindexPrev = pindexPrevNew;
}
CBlock* pblock = &pblocktemplate->block; // pointer for convenience
// Update nTime
pblock->UpdateTime(pindexPrev);
pblock->nNonce = 0;
Array transactions;
map<uint256, int64_t> setTxIndex;
int i = 0;
BOOST_FOREACH (CTransaction& tx, pblock->vtx)
{
uint256 txHash = tx.GetHash();
setTxIndex[txHash] = i++;
if (tx.IsCoinBase())
continue;
Object entry;
CDataStream ssTx(SER_NETWORK, PROTOCOL_VERSION);
ssTx << tx;
entry.push_back(Pair("data", HexStr(ssTx.begin(), ssTx.end())));
entry.push_back(Pair("hash", txHash.GetHex()));
Array deps;
BOOST_FOREACH (const CTxIn &in, tx.vin)
{
if (setTxIndex.count(in.prevout.hash))
deps.push_back(setTxIndex[in.prevout.hash]);
}
entry.push_back(Pair("depends", deps));
int index_in_template = i - 1;
entry.push_back(Pair("fee", pblocktemplate->vTxFees[index_in_template]));
entry.push_back(Pair("sigops", pblocktemplate->vTxSigOps[index_in_template]));
transactions.push_back(entry);
}
Object aux;
aux.push_back(Pair("flags", HexStr(COINBASE_FLAGS.begin(), COINBASE_FLAGS.end())));
uint256 hashTarget = CBigNum().SetCompact(pblock->nBits).getuint256();
static Array aMutable;
if (aMutable.empty())
{
aMutable.push_back("time");
aMutable.push_back("transactions");
aMutable.push_back("prevblock");
}
Object result;
result.push_back(Pair("version", pblock->nVersion));
result.push_back(Pair("previousblockhash", pblock->hashPrevBlock.GetHex()));
result.push_back(Pair("transactions", transactions));
result.push_back(Pair("coinbaseaux", aux));
result.push_back(Pair("coinbasevalue", (int64_t)pblock->vtx[0].vout[0].nValue));
result.push_back(Pair("target", hashTarget.GetHex()));
result.push_back(Pair("mintime", (int64_t)pindexPrev->GetMedianTimePast()+1));
result.push_back(Pair("mutable", aMutable));
result.push_back(Pair("noncerange", "00000000ffffffff"));
result.push_back(Pair("sigoplimit", (int64_t)MAX_BLOCK_SIGOPS));
result.push_back(Pair("sizelimit", (int64_t)MAX_BLOCK_SIZE));
result.push_back(Pair("curtime", (int64_t)pblock->nTime));
result.push_back(Pair("bits", HexBits(pblock->nBits)));
result.push_back(Pair("height", (int64_t)(pindexPrev->nHeight+1)));
return result;
}
Value submitblock(const Array& params, bool fHelp)
{
if (fHelp || params.size() < 1 || params.size() > 2)
throw runtime_error(
"submitblock <hex data> [optional-params-obj]\n"
"[optional-params-obj] parameter is currently ignored.\n"
"Attempts to submit new block to network.\n"
"See https://en.bitcoin.it/wiki/BIP_0022 for full specification.");
vector<unsigned char> blockData(ParseHex(params[0].get_str()));
CDataStream ssBlock(blockData, SER_NETWORK, PROTOCOL_VERSION);
CBlock pblock;
try {
ssBlock >> pblock;
}
catch (std::exception &e) {
throw JSONRPCError(RPC_DESERIALIZATION_ERROR, "Block decode failed");
}
CValidationState state;
bool fAccepted = ProcessBlock(state, NULL, &pblock);
if (!fAccepted)
return "rejected"; // TODO: report validation state
return Value::null;
}
| [
"momocheyenn@gmail.com"
] | momocheyenn@gmail.com |
0a604569a819c6edf388b725ea014dfc18c94f28 | 68ee8caeef3922ecac39447e49c9fa95b6d653ab | /программа1/COMsolution3/COMsolution3/Component/Component.h | 378c2893d7c6b3c732f69e4659a9a2daeddb8e41 | [] | no_license | cat2011-14/University | 852ca976f35308dd63c9dcd3cbd0150beee33871 | d78932b60199cfec2edeba8c533200d2cd0dbf52 | refs/heads/master | 2020-05-01T09:41:45.552813 | 2019-03-24T11:57:10 | 2019-03-24T11:57:10 | 177,405,527 | 0 | 0 | null | null | null | null | WINDOWS-1251 | C++ | false | false | 2,263 | h | #pragma once
#include <iostream>
#include "../Main/Interface_h.h"
#include <List>
using namespace std;
long g_cComponents = 0;
long g_cServerLocks = 0;
HMODULE g_hModule;
//////////////////////////////////////////////////////////////////////////
// Класс списка
class CList : public ICollection, public IEnumerator
{
// Счётчик ссылок
ULONG m_cRef;
list <Object> Conteiner;
//std::list<Object> element_list;
std::list<Object>::reverse_iterator res_iterator;
// Следующие методы вызываются только через указатели на
// соответствующие интерфейсы, поэтому в компоненте могут быть закрытыми!
public:
////////////////////////////
// Методы IUnknown
virtual HRESULT __stdcall QueryInterface(REFIID iid, void** ppv);
virtual ULONG __stdcall AddRef();
virtual ULONG __stdcall Release();
////////////////////////////
// Методы ICollection
virtual HRESULT __stdcall Add(Object obj);
virtual HRESULT __stdcall Remove(Object obj);
virtual HRESULT __stdcall GetCount(unsigned *count);
virtual HRESULT __stdcall ToArray(ObjectArray **arr);
friend bool operator ==(const Object &o1, const Object &o2);
////////////////////////////
// Методы IEnumerator
virtual HRESULT __stdcall Reset();
virtual HRESULT __stdcall MoveNext(int *result);
virtual HRESULT __stdcall GetCurrent(Object *obj);
// Конструктор
CList() : m_cRef(0)
{
g_cComponents++;
}
// Деструктор
~CList() { std::cout << __FUNCTION__ << std::endl;
g_cComponents--;
}
};
//фабрика класса
class CFactory : public IClassFactory
{
long m_cRef;
public:
//Unknown
virtual HRESULT __stdcall QueryInterface(REFIID iid, void** ppv);
virtual ULONG __stdcall AddRef();
virtual ULONG __stdcall Release();
//Интерфейс IClassFactory
virtual HRESULT __stdcall CreateInstance(IUnknown* pUnknownOuter, REFIID iid, void** ppv);
virtual HRESULT __stdcall LockServer(BOOL bLock);
//Конструктор
CFactory() : m_cRef(0) {}
//Деструктор
~CFactory() {}
};
| [
"noreply@github.com"
] | noreply@github.com |
c1d0194c8af92c87138c708e2f1b1894da2d3d83 | f413dffa135a10806d1efe3782e11287d2bdb619 | /cuckoofilter.h | f4142ced85dc9737848a2763df9489309f6bebc0 | [] | no_license | liuhycn/cuckoo-filter | 28bfef6cb516d5d5f6c22514b2a017ae1423f134 | 5208435e8513e9ed5830cd5a7583f6477e82b0ec | refs/heads/master | 2020-05-27T15:29:26.579739 | 2019-05-28T14:55:00 | 2019-05-28T14:55:00 | 188,681,531 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,861 | h | #include <iostream>
#include <string.h>
#include <stdio.h>
#include "hash.h"
using namespace std;
typedef unsigned char u_char;
struct tagNode
{
size_t bits_per_tag;
u_char* buf;
size_t length;
tagNode()
{
bits_per_tag = 0;
buf = NULL;
length = 0;
}
void setNode(size_t bits)
{
size_t temp = (bits + 7) >> 3;
length = temp;
buf = new u_char[length];
memset(buf, 0, sizeof(buf));
}
void setTag(size_t tag)
{
for (int i = 0;i<length;i++)
{
size_t mask = (1ULL << 8) - 1;
buf[i] = (u_char)(mask & tag);
tag = tag >> 8;
}
}
bool empty()
{
bool ans = true;
for (int i = 0;i<length;i++)
{
if (buf[i] != 0)
{
ans = false;
break;
}
}
return ans;
}
size_t toTag()
{
size_t ans = 0;
for (int i = length - 1 ; i >= 0; i--)
{
ans = ans + buf[i];
if (i != 0)
{
ans = ans << 8;
}
}
return ans;
}
};
class table
{
private:
size_t kTagsPerBucket = 4;
size_t bits_per_tag;
size_t total_item;
size_t rows;
tagNode** Table;
public:
table(){}
table(size_t bits_per_tag, size_t total_item)
{
this->bits_per_tag = bits_per_tag;
this->total_item = total_item;
this->rows = (total_item + (kTagsPerBucket - 1)) / kTagsPerBucket;
Table = new tagNode*[rows];
for (int i = 0;i<rows;i++)
{
Table[i] = new tagNode[kTagsPerBucket];
for (int j = 0;j<kTagsPerBucket;j++)
{
Table[i][j].setNode(bits_per_tag);
}
}
}
void Info()
{
printf("fingger is %u\n", bits_per_tag);
printf("rows is %u\n", rows);
printf("every finggerprint uses %u blocks of char\n", Table[0][0].length);
}
size_t getRows()
{
return rows;
}
bool Inserttobucket(size_t index, size_t tag);
bool empty(size_t index);
size_t randKick(size_t index, size_t tag);
bool SearchTagInBucket(size_t index, size_t tag);
bool DeleteTagInBucket(size_t index, size_t tag);
};
bool table::Inserttobucket(size_t index, size_t tag)
{
for (int i = 0; i < kTagsPerBucket; i++)
{
if (Table[index][i].empty())
{
Table[index][i].setTag(tag);
//printf("%u %u is empty.\n", index, i);
//printf("\n");
return true;
}
}
return false;
}
size_t table::randKick(size_t index, size_t tag)
{
size_t randj = rand() % kTagsPerBucket;
size_t kickedTag = Table[index][randj].toTag();
//printf("%u, %u ( %u) is kicked\n", index, randj, kickedTag);
Table[index][randj].setTag(tag);
return kickedTag;
}
bool table::SearchTagInBucket(size_t index, size_t tag)
{
//bool ans = false;
for (int i = 0; i < kTagsPerBucket; i++)
{
if (Table[index][i].toTag() == tag)
{
return true;
}
}
return false;
}
bool table::DeleteTagInBucket(size_t index, size_t tag)
{
for (int i = 0; i < kTagsPerBucket; i++)
{
if (Table[index][i].toTag() == tag)
{
Table[index][i].setTag(0);
return true;
}
}
return false;
}
class cuckoofilter
{
private:
size_t kMaxCuckooCount = 500;
size_t rows;
table T;
size_t counter;
hash Hashfamily;
public:
cuckoofilter(){}
cuckoofilter(size_t bits_per_tag, size_t total_item)
{
T = table(bits_per_tag, total_item);
rows = T.getRows();
Hashfamily = hash(bits_per_tag, rows);
counter = 0;
}
void Info() //get rows of table
{
T.Info();
}
bool Insert(fiveTuple_t pkt);
bool Query(fiveTuple_t pkt);
bool Delete(fiveTuple_t pkt);
};
bool cuckoofilter::Insert(fiveTuple_t pkt)
{
size_t tag;
size_t index1;
Hashfamily.genIndexTagHash(pkt, &tag, &index1);
size_t index2 = Hashfamily.AlterIndexHash(index1, tag);
//printf("index1 is %u, index2 is %u\n", index1, index2);
if (T.Inserttobucket(index1, tag))
{
counter++;
return true;
}
if (T.Inserttobucket(index2, tag))
{
counter++;
return true;
}
size_t randi;
//must relocate buckets
int rand = random() % 2;
//printf("%d\n", rand);
switch (rand)
{
case 0 : randi = index1; break;
case 1 : randi = index2; break;
}
for (size_t count = 0; count < kMaxCuckooCount; count++)
{
//printf("kicked!!! no.%u time\n", count);
tag = T.randKick(randi, tag);
randi = Hashfamily.AlterIndexHash(randi, tag);
//printf("the kicked item's next index is %u\n", randi);
if (T.Inserttobucket(randi, tag))
{
counter++;
return true;
}
}
return false;
}
bool cuckoofilter::Query(fiveTuple_t pkt)
{
size_t tag;
size_t index1;
Hashfamily.genIndexTagHash(pkt, &tag, &index1);
size_t index2 = Hashfamily.AlterIndexHash(index1, tag);
if (T.SearchTagInBucket(index1, tag) == 1)
{
return true;
}
if (T.SearchTagInBucket(index2, tag) == 1)
{
return true;
}
return false;
}
bool cuckoofilter::Delete(fiveTuple_t pkt)
{
size_t tag;
size_t index1;
Hashfamily.genIndexTagHash(pkt, &tag, &index1);
size_t index2 = Hashfamily.AlterIndexHash(index1, tag);
if (T.DeleteTagInBucket(index1, tag) == 1)
{
return true;
}
if (T.DeleteTagInBucket(index2, tag) == 1)
{
return true;
}
return false;
} | [
"liuhongyancn@icloud.com"
] | liuhongyancn@icloud.com |
18d2ef92bf384a2632cd17d3b6420da109ea7f0f | b6dc3d3970022fbfe442c712f0e5f8b1ede55c46 | /src/03-time/system/controlDict | d489f39c8e6ee0156cfb627d796ef5ffb59dc2d1 | [] | no_license | houkensjtu/OFtankentai | 8fd18421c31608f0b39c4e33dcc7ac2f1ecb8199 | 5c3e6e5a4407fce78c9cbc435752594f51483518 | refs/heads/master | 2021-05-16T02:15:41.378631 | 2019-11-29T19:14:50 | 2019-11-29T19:14:50 | 12,563,963 | 3 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 1,219 | /*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: 1.6 |
| \\ / A nd | Web: www.OpenFOAM.org |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class dictionary;
location "system";
object controlDict;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
application icoFoam;
startFrom startTime;
startTime 0;
stopAt endTime;
endTime 0.5;
deltaT 0.1;
writeControl timeStep;
writeInterval 2;
purgeWrite 0;
writeFormat ascii;
writePrecision 6;
writeCompression uncompressed;
timeFormat general;
timePrecision 6;
runTimeModifiable yes;
// ************************************************************************* //
| [
"houkensjtu@gmail.com"
] | houkensjtu@gmail.com | |
72c341c4b6362d7544048776ad78d778d37ce31c | bce1954d38a89f5061436165dd4325b51b20f689 | /Old sketches/arduino_firestingO2_singlechannel/arduino_firestingO2_singlechannel.ino | 24aa291d658b4ebdea02785b2eaecb455683d94c | [
"MIT"
] | permissive | muchaste/ArdOxy | a1805d0f3073094318bf5d3a2124d7545600b31d | d68bd46b322d12656065ddd201c0a8984597ac5a | refs/heads/master | 2023-08-13T16:34:13.489297 | 2023-07-10T19:47:14 | 2023-07-10T19:47:14 | 172,199,544 | 5 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 15,325 | ino | //#######################################################################################
//### ArdOxy - Arduino based dissolved oxygen control system ###
//### This sketch lets you to measure 1 dissolved oxygen and temperature channel via ###
//### a FireStingO2 sensor ###
//### Core hardware components: ###
//### Arduino UNO R3 (1x), relay module, PyroScience FirestingO2, solenoid valve ###
//### -------------- Read the documentation before using this sketch!---------------- ###
//### Adapt this sketch to fit your application and carefully test the system before ###
//### using it. ###
//### Low oxygen is potentially harmful, so use this sketch carefully and only under ###
//### monitored conditions. No liability for damages caused by misuse of this sketch ###
//### is taken ~Stefan Mucha, 2019 ###
//#######################################################################################
#include <PID_v1.h>
#include <SoftwareSerial.h>
//#######################################################################################
//### General settings ###
//#######################################################################################
long int samples = 1; // number of measurements that are averaged to one air saturation value
// to reduce sensor fluctuation (oversampling)
long interval = 30 * 1000UL; // measurement and control interval in second
double airSatThreshold = 400.00; // air saturation to be kept in % air sat * 1000
unsigned long decrTime = 30*60*1000L; // timespan for DO decrease
unsigned long contTime = 30*60*1000L; // timespan for continuous DO at airSatThreshold
SoftwareSerial mySer(10, 11); //RX TX
//#######################################################################################
//### Relay settings ###
//### The arduino operates solenoid valves through a relay module to bubble N2 into ###
//### the tanks. It calculates a time interval using the PIDlibrary (by Brett ###
//### Beauregard). TEST THE SETTINGS FOR PID CONTROL BEFORE YOU USE THIS SYSTEM!! ###
//### If you're not sure, replace the PID control with a simpler solution ###
//### (e.g. bubble N2 for 10 sec if there's a large oxygen difference etc.). ###
//### To control for stress due to bubbling, compressed air is bubbled into control ###
//### tanks. ###
//#######################################################################################
int relayPin = 12; // pins for relay operation ***ADAPT THIS TO FIT YOUR WIRING***
double Kp = 10; // coefficient for proportional control
double Ki = 1; // coefficient for integrative control
double Kd = 1; // coefficient for differential control
long int WindowSize = 25; // The PID will calculate an output between 0 and 25.
// This will be multiplied by 200 to ensure a minimum opening time of 200 msec.
// E.g. output = 1 -> opening time 200 msec; output 25 -> opening time 5,000 msec
//#######################################################################################
//### Requisite variables ###
//### In the following, necessary variables are defined. If you don't change too much ###
//### of this code, you will not need to change a lot here but you will need to read ###
//### through it at least to understand how the functions work. ###
//#######################################################################################
//# Switches and logical operators #
boolean newData = false; // true if serial data was received from sensors
boolean emptyBuffer = false; // true if buffer for serial data is empty
//# Measurement timing #
unsigned long progStart;
unsigned long decrStart;
unsigned long decrEnd;
unsigned long contEnd;
unsigned long startTime; // time taken at start of loop
unsigned long endTime; // time taken at end of loop
unsigned long elapsed; // elapsed time between end- and start-time
//# Oxygen optode #
char DOMeasCom[7] = "SEQ1\r"; // measurement commmand that is sent to sensor during void toggleMeasurement(). Number indicates measurement channel
char DOReadCom[11] = "REA1 3 4\r"; // template for DO-read command that is sent to sensor during void toggleRead() (length = 10 because of /0 string terminator)
const byte numChars = 30; // array length for incoming serial data (longer than needed)
char receivedChars[numChars]; // array to store the incoming serial data (used in receiveData() )
char bufferChars[numChars]; // array to store incoming data that is not needed (used to clear buffer() )
int len; // length of actually received serial data
char valueStr[20]; // array to hold only readings from receivedChars (longer than needed)
long DOInt; // variable for readings that are parsed from valueStr
double airSatFloat; // array for floating point value of air saturation for datalogging, display etc.
double startDO; // variable for first DO value
double deltaDO; // variable for DO change per measurement interval
double changeDO;
double lastDO;
//# Relay operation #
double relayArray[3]; // array with relay pin and assigned output values
double Output; // holds output that was calculated by PID library
double openTime;
//PID setup
PID relay1PID(&changeDO, &Output, &deltaDO, Kp, Ki, Kd, REVERSE);
//#######################################################################################
//### Requisite Functions ###
//### These functions are executed in the main() loop. ###
//### The functions for receiving serial data, parsing it and clearing the buffer are ###
//### modified from the excellent post on the Arduino Forum by user Robin2 about the ###
//### basics of serial communication (http://forum.arduino.cc/index.php?topic=396450).###
//#######################################################################################
//# Send the commands to toggle measurement to and readout values from the FireStingO2 device via Serial #
void toggleDOMeasurement(char command[7]) {
newData = false;
emptyBuffer = false;
static byte ndx = 0;
char endMarker = '\r';
char rc;
mySer.write(command);
mySer.flush();
delay(700);
// Clear echoed measurement command from serial buffer
while (mySer.available() > 0 && emptyBuffer == false) {
delay(2);
rc = mySer.read();
if (rc != endMarker) {
bufferChars[ndx] = rc;
ndx++;
if (ndx >= numChars) {
ndx = numChars - 1;
}
}
else {
bufferChars[ndx] = '\0'; // terminate the string
ndx = 0;
emptyBuffer = true;
}
}
}
//# Receive serial data (modified from http://forum.arduino.cc/index.php?topic=396450) #
int receiveDOData(char command[11]) { // receives serial data and stores it in array until endmarker is received
static byte ndx = 0; // index for storing in the array
char endMarker = '\r'; // declare the character that marks the end of a serial transmission
char rc; // temporary variable to hold the last received character
mySer.write(command);
mySer.flush();
delay(300);
while (mySer.available() > 0 && newData == false && emptyBuffer == true) { // only read serial data if the buffer was emptied before and it's new data
delay(2);
rc = mySer.read();
if (rc != endMarker) {
receivedChars[ndx] = rc; // store the latest character in character array
ndx++;
if (ndx >= numChars) { // make sure that array size is not exceeded
ndx = numChars - 1;
}
}
else {
receivedChars[ndx] = '\0'; // terminate the string if the end marker is received
ndx = 0;
newData = true; // new data has been received and is in the receivedChars buffer
}
}
len = strlen(receivedChars)+1; // get length of received string + termination \0
len = len - 9; // subtract the length of the echoed read command - I determined this by testing it, there might be a smarter way to do this
for (int k = 0; k < len; k++) { // store the last digits of string in new character array valueStr, starting at and including position 10. This is necessary as
valueStr[k] = receivedChars[(9 + k)]; // the sensor echoes the readout command, e.g. "REA1 3 4" before the air saturation values
}
DOInt = atol(valueStr); // parse the character to integers - the air saturation values are given as [% air saturation x 1000], temperature as [°C x 1000]
return DOInt;
}
//# Toggle relay based on measured airSat values #
void toggleRelay() {
relay1PID.Compute(); // compute the output (output * 200 = opening time) based on the input (air saturation) and threshold
openTime = double(int(Output)*200.00); // PID computes an output between 0 and 50, the multiplicator makes sure that the relay operation time is at least 200ms
if (openTime > 0){ // skip the channels that don't have to be operated (output = 0.00)
digitalWrite(relayPin, LOW);
delay(openTime);
digitalWrite(relayPin, HIGH);
}
}
//# Clear all serial buffers (modified from http://forum.arduino.cc/index.php?topic=396450) #
void clearAllBuffers() { // similar to receiveData(), clears serial buffer from echoes
static byte ndx = 0;
char endMarker = '\r';
char rc;
emptyBuffer = false;
while (mySer.available() > 0 && emptyBuffer == false) {
delay(2);
rc = mySer.read();
if (rc != endMarker) {
bufferChars[ndx] = rc;
ndx++;
if (ndx >= numChars) {
ndx = numChars - 1;
}
}
else {
bufferChars[ndx] = '\0'; // terminate the string
ndx = 0;
emptyBuffer = true;
}
}
}
//# Reboot the Arduino #
void(* resetFunc) (void) = 0; // function to restart the Arduino when a communication error occurs
//#######################################################################################
//### Setup ###
//#######################################################################################
void setup() {
Serial.begin(19200);
mySer.begin(19200);
//# Declare output pins for relay operation #
pinMode(relayPin, OUTPUT);
digitalWrite(relayPin, HIGH);
//# Define time points for decrease end and trial end
progStart = millis();
decrEnd = progStart + decrTime;
contEnd = decrEnd + contTime;
//# Measure DO once
toggleDOMeasurement(DOMeasCom);
delay(700);
receiveDOData(DOReadCom);
startDO = DOInt/1000.00;
deltaDO = (startDO-airSatThreshold)/decrTime;
lastDO = startDO;
Serial.print("DO: ");
Serial.println(startDO);
delay(500);
Serial.print("Decrease rate per minute: ");
Serial.print(deltaDO);
delay(1000);
//# Set up PID control #
relay1PID.SetMode(AUTOMATIC);
relay1PID.SetSampleTime(interval);
relay1PID.SetOutputLimits(0, WindowSize);
startTime = millis(); // start timer of loop
}
//#######################################################################################
//### Main loop ###
//### Congratulations, you made it to the main loop. ###
//### I inserted delays between every subfunctions to ensure their completion before ###
//### the program moves to the next step. Some of these are crucial as the sensor ###
//### needs time to complete measurements. ###
//#######################################################################################
void loop() {
while(startTime < contEnd){
startTime = millis(); // start timer of loop
DOInt = 0; // reset value variable
receivedChars[0] = (char)0; // empty char arrays
bufferChars[0] = (char)0;
toggleDOMeasurement(DOMeasCom);
delay(700);
receiveDOData(DOReadCom);
if (strncmp(DOReadCom, receivedChars, 9) == 0){
airSatFloat = DOInt / 1000.00; // create floating point number for logging, display, etc. Results in 0 if there's a communication error
changeDO = airSatFloat - lastDO;
lastDO = airSatFloat;
}
else { // reboot system if communication error occurs
resetFunc();
}
if (startTime > decrEnd){
deltaDO = airSatThreshold;
changeDO = DOInt;
}
if (newData == true && emptyBuffer == true) {
Serial.println(airSatFloat);
toggleRelay(); // operate relays to open solenoid valves
endTime = millis();
elapsed = endTime - startTime; // measure duration of loop
delay(interval - elapsed); // adjust delay so that loop duration equals measurement interval
}
}
}
| [
"stefan.mucha@hu-berlin.de"
] | stefan.mucha@hu-berlin.de |
d150ce3b266862ecc6c48b17b046dae03f99c471 | 4a3b2947276261ef7c9e6bfd3a13517c8c594aef | /Vorlesung04/streamManipulators.cpp | 4c491b1dab28912643748d645db425c21e6ac77a | [] | no_license | armanivers/Programmierkurs-2 | 7d156a36b4ea20535942f855421208a4acf144ec | 9678a60bb4d67d93f288025dd08b2c5a15eb689b | refs/heads/master | 2021-08-08T20:57:19.468872 | 2021-03-16T19:47:03 | 2021-03-16T19:47:03 | 246,174,429 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 277 | cpp | #define NOMINMAX
#include <windows.h>
#include <iostream>
#include <iomanip>
// compile with g++ -o stream streamManipulators.cpp
// ./stream
int main()
{
std::cout << std::setfill('0') << std::right << std::setw(4) << 12 << std::endl;
// Ausgabe: 0012
return 0;
} | [
"armanivers@hotmail.com"
] | armanivers@hotmail.com |
671f6914b33fb35116e61f0b690d28400beb52b0 | f14bf3e3d9e0f53694475a672820aec880efb5c0 | /C++.cpp | 3421838bba076ec8dc049d77989128424c9ecba5 | [] | no_license | jaykafkachen/cs_4080_teampointless | d6ea6eebc69e24da0954d825d4ad1c44cce367e4 | 732e1d7f4516f05055e8f91bf6667ef5a721047b | refs/heads/master | 2021-05-22T21:13:59.018363 | 2020-05-14T19:53:56 | 2020-05-14T19:53:56 | 253,098,842 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,430 | cpp | #include <iostream>
#include <vector>
#include <map>
#include <string>
#include <set>
using namespace std;
class Currency
{
private:
double amount;
string currType;
Currency();
public:
Currency(double amount, string currType);
void add(double a);
void subtract(double a);
string getcurr();
double getamount();
};
Currency::Currency(double amount, string currType)
{
this->amount = amount;
this->currType = currType;
}
void Currency::add(double a)
{
this->amount = amount+a;
}
void Currency::subtract(double a)
{
this->amount = amount-a;
}
string Currency::getcurr()
{
return currType;
}
double Currency::getamount()
{
return amount;
}
class Wallet
{
private:
map<string,double> currMap;
map<string,double> contents;
set<string> currNames;
public:
void addCurrency(string name, double rates);
void convert (double amount, string from, string to);
void printWallet();
void deposit(double amount, string curr);
void withdraw(double amount, string curr);
void checkbalance(string curr);
};
void Wallet::addCurrency(string name, double rates)
{
if(currNames.find(name)!=currNames.end())
{
cout<<"Currency has already been added.";
}
else
{
currMap.insert(make_pair(name,rates));
contents.insert(make_pair(name,0));
currNames.insert(name);
}
}
void Wallet::convert(double amount, string from, string to)
{
if(contents.find(from)!=contents.end() || contents.find(to) !=contents.end())
{
cout<<"Currency not found";
}
else
{
contents.at(from) = contents.at(from) - amount;
double add = contents.at(to) + (amount/(currMap.at(from)*currMap.at(to)));
contents.at(to) = contents.at(to) + add;
cout<<"Converted "<<amount<< "from "<<from<<"to "<<add<< to<<"/n";
}
}
void Wallet::deposit(double amount, string curr)
{
contents.at(curr) = contents.at(curr) + amount;
}
void Wallet::withdraw(double amount, string curr)
{
contents.at(curr) = contents.at(curr) - amount;
}
void Wallet::checkbalance(string curr)
{
if(contents.find(curr)!=contents.end())
{
cout<<"You have "<<contents.at(curr)<<curr<<" remaining.";
}
else
{
cout<<"You have 0 "<<curr<<"\n";
}
}
void Wallet::printWallet()
{
for(auto elem : contents)
{
std::cout << elem.first << " " << elem.second<<"\n";
}
}
int main()
{
Wallet myWallet;
bool bank = true;
while(bank = true)
{
int option = 0;
double money = 0;
string currency;
double conversion;
string currency2;
cout << endl << "Please enter your option" << endl << endl;
cout << " 1: Add New Currency" << endl;
cout << " 2: Deposit Money" << endl << endl;
cout << " 3: Withdraw Money" << endl;
cout << " 4: View Wallet" << endl;
cout << " 5: Check Currency" << endl;
cout << " 6: Convert Currency" << endl << endl;
cout << " 7: EXIT" << endl << endl;
cin>>option;
switch(option)
{
case 1:
cout<<"What currency do you wish to add?"<<endl;
cin>>currency;
cout<<"What is it's conversion rate to dollars?"<<endl;
cin>>conversion;
myWallet.addCurrency(currency,conversion);
break;
case 2:
cout<<"What currency do you wish to deposit?"<<endl;
cin>>currency;
cout<<"How much do you wish to deposit?"<<endl;
cin>>money;
myWallet.deposit(money,currency);
myWallet.checkbalance(currency);
break;
case 3:
cout<<"What currency do you wish to withdraw?"<<endl;
cin>>currency;
cout<<"How much do you wish to withdraw?"<<endl;
cin>>money;
myWallet.withdraw(money,currency);
myWallet.checkbalance(currency);
break;
case 4:
myWallet.printWallet();
break;
case 5:
cout<<"What currency do you wish to check?"<<endl;
cin>>currency;
myWallet.checkbalance(currency);
break;
case 6:
cout<<"What currency to you wish to convert?"<<endl;
cin>>currency;
cout<<"What do you wish to conver "<<currency<<" to?"<<endl;
cin>>currency2;
cout<<"How much "<<currency<<" do you want to conver?"<<endl;
cin>>money;
myWallet.convert(money,currency,currency2);
break;
case 7:
bank = false;
break;
}
}
}
| [
"noreply@github.com"
] | noreply@github.com |
eb88dbed7b5fb05b5a7f66cf9e6ba541cbc21315 | c39832b904d2f8fc55d545827ad0e27f052f683e | /agv/include/common/spline.h | 1bc488f585a61d14a78b0c8cba5208aed4a1a56f | [] | no_license | Forrest-Z/Micron_AGV | 4f9074a62fe92cf0defe59092c56e4a0287a9370 | 2cd94f60ff6c68f3e2be029773728bfe10f4d295 | refs/heads/master | 2023-06-01T07:12:04.729293 | 2021-06-21T09:40:25 | 2021-06-21T09:40:25 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,088 | h | /** spline.h
*
* Copyright (C) 2019 SS47816 & Advanced Robotics Center, National University of Singapore & Micron Technology
*
* Class for constructing and solving 2D Splines
*/
#ifndef SPLINE_H_
#define SPLINE_H_
#include <vector>
#include "Eigen/Dense"
#include "frenet.h"
#include "math_utils.h"
namespace agv
{
namespace common
{
class Spline
{
public:
// Constructors
Spline(){};
Spline(const std::vector<double>& x, const std::vector<double>& y);
// Destructor
virtual ~Spline(){};
// Coefficients
std::vector<double> a_;
std::vector<long double> b_;
std::vector<long double> c_;
std::vector<long double> d_;
std::vector<double> w_;
std::vector<double> x_;
std::vector<double> y_;
int num_x_;
// Calculate point y
double calculatePoint(double t);
// Calculate point dy
double calculateFirstDerivative(double t);
// Calculate point ddy
double calculateSecondDerivative(double t);
private:
// Construct matrix A
Eigen::MatrixXd calculateMatrixA(std::vector<double> h);
// Construct matrix B
Eigen::MatrixXd calculateMatrixB(std::vector<double> h);
// find the nearest last point
int searchIndex(double x);
};
class Spline2D
{
public:
// Constructors
Spline2D(){};
Spline2D(const Map& ref_wps);
// Destructor
virtual ~Spline2D(){};
// Data type for returned results
struct ResultType
{
std::vector<double> rx;
std::vector<double> ry;
std::vector<double> ryaw;
std::vector<double> rk;
std::vector<double> s;
};
// Lists of point coordinates
std::vector<double> s_;
Spline sx_;
Spline sy_;
// Calculate point (x,y) coordinates
VehicleState calculatePosition(double s);
// Calculate curvature at the point
double calculateCurvature(double s);
// Calculate yaw at the point
double calculateYaw(double s);
// Construct the spline
ResultType calculateSplineCourse(const Map& ref_wps, double ds);
private:
// Calculate a list of s
std::vector<double> calculate_s(const Map& ref_wps);
};
} // namespace common
} // namespace agv
#endif // SPLINE_H_ | [
"noreply@github.com"
] | noreply@github.com |
2e369e6d3c54878d19e84824fb751505d4ec0064 | 598edeaeb3e42043d8244e0d495c5eb6bd9e149f | /blacktie/core/src/test/cpp/CoreTestSuite.cxx | 7e72cfb278173be48f34700245c4f5dbf6739aa5 | [] | no_license | cris-b/narayana | 21469fa6c2a150a6ed42392d823f251d2441aa54 | 6e9aa3a2fd2147d0082a022d748c1e8f2b904cbe | refs/heads/master | 2021-01-16T20:38:35.298332 | 2013-09-30T06:39:30 | 2013-09-30T06:39:30 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,662 | cxx | /*
* JBoss, Home of Professional Open Source
* Copyright 2008, Red Hat, Inc., and others contributors as indicated
* by the @authors tag. All rights reserved.
* See the copyright.txt in the distribution for a
* full listing of individual contributors.
* This copyrighted material is made available to anyone wishing to use,
* modify, copy, or redistribute it subject to the terms and conditions
* of the GNU Lesser General Public License, v. 2.1.
* This program is distributed in the hope that it will be useful, but WITHOUT A
* WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
* PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details.
* You should have received a copy of the GNU Lesser General Public License,
* v.2.1 along with this distribution; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
* MA 02110-1301, USA.
*/
#include "TestAtmiBrokerXml.h"
CPPUNIT_TEST_SUITE_REGISTRATION( TestAtmiBrokerXml );
#include "TestXsdValidator.h"
CPPUNIT_TEST_SUITE_REGISTRATION( TestXsdValidator );
#include "TestSymbolLoader.h"
CPPUNIT_TEST_SUITE_REGISTRATION( TestSymbolLoader);
#include "ExceptionCase.h"
CPPUNIT_TEST_SUITE_REGISTRATION( ExceptionCase);
#include "ODBCTest.h"
CPPUNIT_TEST_SUITE_REGISTRATION( ODBCTest);
#include "TestUserlog.h"
CPPUNIT_TEST_SUITE_REGISTRATION( TestUserlog);
#include "TestMultiOrb.h"
CPPUNIT_TEST_SUITE_REGISTRATION( TestMultiOrb);
#include "TestSynchronizableObject.h"
CPPUNIT_TEST_SUITE_REGISTRATION( TestSynchronizableObject);
#include "TestSocketServer.h"
CPPUNIT_TEST_SUITE_REGISTRATION( TestSocketServer);
| [
"tom.jenkinson@redhat.com"
] | tom.jenkinson@redhat.com |
caf146e73ad153894f4bfc29661ade53dc6fd3b2 | 487f88955f150fc034baae5a727994c29636398b | /opensplice/install/HDE/x86_64.linux/include/dcps/C++/isocpp2/org/opensplice/topic/BuiltinTopic.hpp | 2bb8b27a7deb4f6461e5aac87681ea78ca9ae385 | [
"Apache-2.0"
] | permissive | itfanr/opensplice-cpp-cmake | 6ddb8767509904c8b2a3cd3d3fafc3b460202ea0 | d9a3eac9d7e91d3a5f114c914a449a9911d1d1ea | refs/heads/master | 2020-04-01T22:32:35.124459 | 2018-10-19T05:34:14 | 2018-10-19T05:34:14 | 153,714,000 | 1 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 1,661 | hpp | /*
* OpenSplice DDS
*
* This software and documentation are Copyright 2006 to PrismTech
* Limited, its affiliated companies and licensors. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
*/
#ifndef ORG_OPENSPLICE_TOPIC_BUILTIN_TOPIC_HPP_
#define ORG_OPENSPLICE_TOPIC_BUILTIN_TOPIC_HPP_
#include <org/opensplice/topic/TBuiltinTopic.hpp>
namespace org
{
namespace opensplice
{
namespace topic
{
typedef TCMParticipantBuiltinTopicData<CMParticipantBuiltinTopicDataDelegate>
CMParticipantBuiltinTopicData;
typedef TCMPublisherBuiltinTopicData<CMPublisherBuiltinTopicDataDelegate>
CMPublisherBuiltinTopicData;
typedef TCMSubscriberBuiltinTopicData<CMSubscriberBuiltinTopicDataDelegate>
CMSubscriberBuiltinTopicData;
typedef TCMDataWriterBuiltinTopicData<CMDataWriterBuiltinTopicDataDelegate>
CMDataWriterBuiltinTopicData;
typedef TCMDataReaderBuiltinTopicData<CMDataReaderBuiltinTopicDataDelegate>
CMDataReaderBuiltinTopicData;
typedef TTypeBuiltinTopicData<TypeBuiltinTopicDataDelegate>
TypeBuiltinTopicData;
}
}
}
#endif /* ORG_OPENSPLICE_TOPIC_BUILTIN_TOPIC_HPP_ */
| [
"bjq1016@126.com"
] | bjq1016@126.com |
1167edd96e2781fa45fc4bf40f44830d49a03e99 | b633859c482084b88e177c35c934ffff75bf1725 | /Shear_Slip_Perception/external/chai3d-3.0.0/src/world/CMesh.cpp | e3589987c2663efc9939ade2a0ce21ef539e56da | [] | no_license | darrelrdeo/Skin_deformation_perception | 2490b1493832cb800e7ebbf78d3859e718045016 | 6008594c2c9a18c5519b0ffb681a1125fcb1b0e2 | refs/heads/master | 2021-09-15T10:55:00.089510 | 2018-05-31T02:17:05 | 2018-05-31T02:17:05 | 112,665,191 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 44,377 | cpp | //==============================================================================
/*
Software License Agreement (BSD License)
Copyright (c) 2003-2014, CHAI3D.
(www.chai3d.org)
All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions
are met:
* Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above
copyright notice, this list of conditions and the following
disclaimer in the documentation and/or other materials provided
with the distribution.
* Neither the name of CHAI3D nor the names of its contributors may
be used to endorse or promote products derived from this software
without specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
POSSIBILITY OF SUCH DAMAGE.
\author <http://www.chai3d.org>
\author Francois Conti
\author Dan Morris
\author Chris Sewell
\version 3.0.0 $Rev: 1304 $
*/
//==============================================================================
//------------------------------------------------------------------------------
#include "world/CMesh.h"
//------------------------------------------------------------------------------
#include "collisions/CGenericCollision.h"
#include "collisions/CCollisionBrute.h"
#include "collisions/CCollisionAABB.h"
#include "files/CFileModel3DS.h"
#include "files/CFileModelOBJ.h"
#include "shaders/CShaderProgram.h"
//------------------------------------------------------------------------------
#include <algorithm>
#include <vector>
#include <list>
#include <utility>
#include <set>
//------------------------------------------------------------------------------
using namespace std;
//------------------------------------------------------------------------------
//------------------------------------------------------------------------------
namespace chai3d {
//------------------------------------------------------------------------------
//==============================================================================
/*!
Constructor of cMesh.
\param a_material Material property to be applied to object.
*/
//==============================================================================
cMesh::cMesh(cMaterialPtr a_material)
{
// create vertex array
m_vertices = cVertexArray::create(true, true, true, true, true, false);
// create triangle array
m_triangles = cTriangleArray::create(m_vertices);
// should normals be displayed?
m_showNormals = false;
// if normals are displayed, this value defines their length.
m_normalsLength = 0.1;
// if normals are displayed, this defines their color
m_normalsColor.set(1.0, 0.0, 0.0);
// should the frame (X-Y-Z) be displayed?
m_showFrame = false;
// set default collision detector
m_collisionDetector = NULL;
// display lists disabled by default
m_useDisplayList = false;
// set material properties
if (a_material == nullptr)
{
m_material = cMaterial::create();
m_material->setShininess(100);
m_material->m_ambient.set ((float)0.3, (float)0.3, (float)0.3);
m_material->m_diffuse.set ((float)0.1, (float)0.7, (float)0.8);
m_material->m_specular.set((float)1.0, (float)1.0, (float)1.0);
}
else
{
m_material = a_material;
}
// vertex arrays and buffers
m_VAO = -1;
m_positionBuffer = -1;
m_normalBuffer = -1;
m_textCoordBuffer = -1;
m_elementBuffer = -1;
}
//==============================================================================
/*!
Destructor of cMesh.
*/
//==============================================================================
cMesh::~cMesh()
{
// delete any allocated display lists
m_displayList.invalidate();
}
//==============================================================================
/*!
Create a copy of itself.
\param a_duplicateMaterialData If __true__, material (if available) is duplicated, otherwise it is shared.
\param a_duplicateTextureData If __true__, texture data (if available) is duplicated, otherwise it is shared.
\param a_duplicateMeshData If __true__, mesh data (if available) is duplicated, otherwise it is shared.
\param a_buildCollisionDetector If __true__, collision detector (if available) is duplicated, otherwise it is shared.
\return Return new object.
*/
//==============================================================================
cMesh* cMesh::copy(const bool a_duplicateMaterialData,
const bool a_duplicateTextureData,
const bool a_duplicateMeshData,
const bool a_buildCollisionDetector)
{
// create new instance
cMesh* obj = new cMesh();
// copy properties of cMesh
copyMeshProperties(obj,
a_duplicateMaterialData,
a_duplicateTextureData,
a_duplicateMeshData,
a_buildCollisionDetector);
// return new mesh
return (obj);
}
//==============================================================================
/*!
Copy properties of this object to another.
\param a_obj Destination object where properties are copied to.
\param a_duplicateMaterialData If __true__, material (if available) is duplicated, otherwise it is shared.
\param a_duplicateTextureData If __true__, texture data (if available) is duplicated, otherwise it is shared.
\param a_duplicateMeshData If __true__, mesh data (if available) is duplicated, otherwise it is shared.
\param a_buildCollisionDetector If __true__, collision detector (if available) is duplicated, otherwise it is shared.
*/
//==============================================================================
void cMesh::copyMeshProperties(cMesh* a_obj,
const bool a_duplicateMaterialData,
const bool a_duplicateTextureData,
const bool a_duplicateMeshData,
const bool a_buildCollisionDetector)
{
// copy properties of cGenericObject
copyGenericObjectProperties(a_obj,
a_duplicateMaterialData,
a_duplicateTextureData,
a_duplicateMeshData,
a_buildCollisionDetector);
// copy properties of cMesh
if (a_duplicateMeshData)
{
// duplicate vertex data
a_obj->m_vertices = m_vertices->copy();
// duplicate triangle data
a_obj->m_triangles = m_triangles->copy();
// build collision detector
if (a_buildCollisionDetector)
{
double radius = 0.0;
if (m_collisionDetector)
{
radius = m_collisionDetector->getTriangleBoundaryRadius();
}
a_obj->createAABBCollisionDetector(radius);
}
}
else
{
// share mesh data
a_obj->m_vertices = m_vertices;
a_obj->m_triangles = m_triangles;
if (a_buildCollisionDetector)
{
if (m_collisionDetector)
{
a_obj->m_collisionDetector = m_collisionDetector;
}
else
{
a_obj->createAABBCollisionDetector(0.0);
}
}
}
// extras
a_obj->m_normalsColor = m_normalsColor;
a_obj->m_normalsLength = m_normalsLength;
a_obj->m_useVertexColors = m_useVertexColors;
}
//==============================================================================
/*!
Compute the center of mass of this mesh, based on vertex positions.
\return Return center of mass.
*/
//==============================================================================
cVector3d cMesh::getCenterOfMass()
{
cVector3d centerOfMass(0,0,0);
int numVertices = m_vertices->getNumVertices();
if (numVertices > 0)
{
for(unsigned int i=0; i<numVertices; i++)
{
cVector3d pos = m_vertices->getLocalPos(i);
centerOfMass += pos;
}
centerOfMass.mul(1.0 / numVertices);
}
return (centerOfMass);
}
//==============================================================================
/*!
Return the number of stored triangles.
\return Return the number of triangles.
*/
//==============================================================================
unsigned int cMesh::getNumTriangles()
{
return (unsigned int)(m_triangles->getNumTriangles());
}
//==============================================================================
/*!
Create a new vertex and add it to the vertex list.
\param a_x X coordinate of vertex.
\param a_y Y coordinate of vertex.
\param a_z Z coordinate of vertex.
\param a_normalX X coordinate of normal associated with vertex.
\param a_normalY Y coordinate of normal associated with vertex.
\param a_normalZ Z coordinate of normal associated with vertex.
\param a_textureCoordX X component of texture coordinate.
\param a_textureCoordY Y component of texture coordinate.
\param a_textureCoordZ Z component of texture coordinate.
\return Return index position in vertices list of new vertex.
*/
//==============================================================================
unsigned int cMesh::newVertex(const double a_x,
const double a_y,
const double a_z,
const double a_normalX,
const double a_normalY,
const double a_normalZ,
const double a_textureCoordX,
const double a_textureCoordY,
const double a_textureCoordZ)
{
unsigned int index = m_vertices->newVertex();
// set data
m_vertices->setLocalPos(index, a_x, a_y, a_z);
m_vertices->setNormal(index, a_normalX, a_normalY, a_normalZ);
m_vertices->setTexCoord(index, a_textureCoordX, a_textureCoordY, a_textureCoordZ);
// return vertex index
return (index);
}
//==============================================================================
/*!
Create a new vertex and add it to the vertex list.
\param a_pos Position of new vertex.
\param a_normal Normal vector associated with new vertex.
\param a_textureCoord Texture coordinate.
\param a_color Color.
\return Return index position in vertices list of new vertex.
*/
//==============================================================================
unsigned int cMesh::newVertex(const cVector3d& a_pos,
const cVector3d& a_normal,
const cVector3d& a_textureCoord,
const cColorf& a_color)
{
unsigned int index = m_vertices->newVertex();
// set data
m_vertices->setLocalPos(index, a_pos);
m_vertices->setNormal(index, a_normal);
m_vertices->setTexCoord(index, a_textureCoord);
m_vertices->setColor(index, a_color);
// return vertex index
return (index);
}
//==============================================================================
/*!
Create a new triangle by passing vertex indices.
\param a_indexVertex0 index position of vertex 0.
\param a_indexVertex1 index position of vertex 1.
\param a_indexVertex2 index position of vertex 2.
\return Return the index of the new triangle in my triangle array.
*/
//==============================================================================
unsigned int cMesh::newTriangle(const unsigned int a_indexVertex0,
const unsigned int a_indexVertex1,
const unsigned int a_indexVertex2)
{
int index = m_triangles->newTriangle(a_indexVertex0, a_indexVertex1, a_indexVertex2);
// mark mesh for update
markForUpdate(false);
// return the index at which I inserted this triangle in my triangle array
return (index);
}
//==============================================================================
/*!
Create a new triangle and three new vertices by passing vertex
positions, normals and texture coordinates.
\param a_vertex0 Position of vertex 0.
\param a_vertex1 Position of vertex 1.
\param a_vertex2 Position of vertex 2.
\param a_normal0 Normal of vertex 0.
\param a_normal1 Normal position of vertex 1.
\param a_normal2 Normal position of vertex 2.
\param a_textureCoord0 Texture coordinate of vertex 0.
\param a_textureCoord1 Texture coordinate of vertex 1.
\param a_textureCoord2 Texture coordinate of vertex 2.
\param a_colorVertex0 Color at vertex 0.
\param a_colorVertex1 Color at vertex 1.
\param a_colorVertex2 Color at vertex 2.
\return Return index position of new triangle.
*/
//==============================================================================
unsigned int cMesh::newTriangle(const cVector3d& a_vertex0,
const cVector3d& a_vertex1,
const cVector3d& a_vertex2,
const cVector3d& a_normal0,
const cVector3d& a_normal1,
const cVector3d& a_normal2,
const cVector3d& a_textureCoord0,
const cVector3d& a_textureCoord1,
const cVector3d& a_textureCoord2,
const cColorf& a_colorVertex0,
const cColorf& a_colorVertex1,
const cColorf& a_colorVertex2)
{
unsigned int indexVertex0 = m_vertices->newVertex();
unsigned int indexVertex1 = m_vertices->newVertex();
unsigned int indexVertex2 = m_vertices->newVertex();
int index = m_triangles->newTriangle(indexVertex0, indexVertex1, indexVertex2);
m_vertices->setLocalPos(indexVertex0, a_vertex0);
m_vertices->setLocalPos(indexVertex1, a_vertex1);
m_vertices->setLocalPos(indexVertex2, a_vertex2);
m_vertices->setNormal(indexVertex0, a_normal0);
m_vertices->setNormal(indexVertex1, a_normal1);
m_vertices->setNormal(indexVertex2, a_normal2);
m_vertices->setTexCoord(indexVertex0, a_textureCoord0);
m_vertices->setTexCoord(indexVertex1, a_textureCoord1);
m_vertices->setTexCoord(indexVertex2, a_textureCoord2);
m_vertices->setColor(indexVertex0, a_colorVertex0);
m_vertices->setColor(indexVertex1, a_colorVertex1);
m_vertices->setColor(indexVertex2, a_colorVertex2);
// mark mesh for update
markForUpdate(false);
// return result
return (index);
}
//==============================================================================
/*!
Remove a vertex from the vertex array by passing its index number.
\param a_index Index number of vertex.
\return Return __true__ if operation succeeded.
*/
//==============================================================================
bool cMesh::removeTriangle(const unsigned int a_index)
{
m_triangles->removeTriangle(a_index);
// mark mesh for update
markForUpdate(false);
// return success
return (true);
}
//==============================================================================
/*!
Clear all triangles and vertices.
*/
//==============================================================================
void cMesh::clear()
{
// clear all triangles
m_triangles->clear();
// clear all vertices
m_vertices->clear();
}
//==============================================================================
/*!
Compute surface normals for every vertex in the mesh, by averaging
the face normals of the triangle that include each vertex.
*/
//==============================================================================
void cMesh::computeAllNormals()
{
// read number of vertices and triangles of object
unsigned int numTriangles = m_triangles->getNumTriangles();
unsigned int numVertices = m_vertices->getNumVertices();
// initialize all normals to zero
for (unsigned int i=0; i<numVertices; i++)
{
m_vertices->setNormal(i, 0, 0, 0);
}
// compute the normal of each triangle, add contribution to each vertex
for (unsigned int i=0; i<numTriangles; i++)
{
unsigned int vertexIndex0 = m_triangles->getVertexIndex0(i);
unsigned int vertexIndex1 = m_triangles->getVertexIndex1(i);
unsigned int vertexIndex2 = m_triangles->getVertexIndex2(i);
cVector3d vertex0 = m_vertices->getLocalPos(vertexIndex0);
cVector3d vertex1 = m_vertices->getLocalPos(vertexIndex1);
cVector3d vertex2 = m_vertices->getLocalPos(vertexIndex2);
// compute normal vector
cVector3d normal, v01, v02;
vertex1.subr(vertex0, v01);
vertex2.subr(vertex0, v02);
v01.crossr(v02, normal);
double length = normal.length();
if (length > 0.0)
{
normal.div(length);
m_vertices->m_normal[vertexIndex0].add(normal);
m_vertices->m_normal[vertexIndex1].add(normal);
m_vertices->m_normal[vertexIndex2].add(normal);
}
}
// normalize all triangles
for (unsigned int i=0; i<numVertices; i++)
{
if (m_vertices->m_normal[i].length() > 0.000000001)
{
m_vertices->m_normal[i].normalize();
}
}
}
//==============================================================================
/*!
Scale this object by using different scale factors along X,Y and Z axes.
\param a_scaleX Scale factor along X axis.
\param a_scaleY Scale factor along Y axis.
\param a_scaleZ Scale factor along Z axis.
*/
//==============================================================================
void cMesh::scaleXYZ(const double a_scaleX, const double a_scaleY, const double a_scaleZ)
{
int numVertices = m_vertices->getNumVertices();
for (unsigned int i=0; i<numVertices; i++)
{
m_vertices->m_localPos[i].mul(a_scaleX, a_scaleY, a_scaleZ);
}
m_boundaryBoxMax.mul(a_scaleX, a_scaleY, a_scaleZ);
m_boundaryBoxMin.mul(a_scaleX, a_scaleY, a_scaleZ);
}
//==============================================================================
/*!
Compute the global position of all vertices
\param a_frameOnly If __false__, the global position of all vertices.
is computed, otherwise this function does nothing.
*/
//==============================================================================
void cMesh::updateGlobalPositions(const bool a_frameOnly)
{
if (a_frameOnly) return;
int numVertices = m_vertices->getNumVertices();
for (unsigned int i=0; i<numVertices; i++)
{
m_vertices->computeGlobalPosition(i, m_globalPos, m_globalRot);
}
}
//==============================================================================
/*!
Invalidate any existing display lists. You should call this on if you are
using display lists and you modify mesh options, vertex positions, etc.
\param a_affectChildren If __true__, then children are updated too.
*/
//==============================================================================
void cMesh::markForUpdate(const bool a_affectChildren)
{
// mark triangles for update
m_triangles->m_flagMarkForUpdate = true;
// update display list of cGenericObject and children
cGenericObject::markForUpdate(a_affectChildren);
}
//==============================================================================
/*!
Set the alpha value at each vertex, in all of my material colors,
optionally propagating the operation to my children.
\param a_level Level of transparency ranging from 0.0 to 1.0.
\param a_applyToTextures If __true__, then apply changes to texture.
\param a_affectChildren If __true__, then children are updated too.
*/
//==============================================================================
void cMesh::setTransparencyLevel(const float a_level,
const bool a_applyToTextures,
const bool a_affectChildren)
{
cGenericObject::setTransparencyLevel(a_level, a_applyToTextures, a_affectChildren);
// apply the new value to all vertex colors
int numVertices = m_vertices->getNumVertices();
for (unsigned int i=0; i<numVertices; i++)
{
m_vertices->m_color[i].setA(a_level);
}
}
//==============================================================================
/*!
Set color of each vertex.
\param a_color New color to be applied to each vertex.
*/
//==============================================================================
void cMesh::setVertexColor(const cColorf& a_color)
{
// apply color to all vertex colors
int numVertices = m_vertices->getNumVertices();
for (unsigned int i=0; i<numVertices; i++)
{
m_vertices->setColor(i, a_color);
}
}
//==============================================================================
/*!
Shifts all vertex positions by the specified amount.
\param a_offset Translation to apply to each vertex.
\param a_updateCollisionDetector If __true__, then update collision detector.
*/
//==============================================================================
void cMesh::offsetVertices(const cVector3d& a_offset,
const bool a_updateCollisionDetector)
{
// offset all vertices
int numVertices = m_vertices->getNumVertices();
for (unsigned int i=0; i<numVertices; i++)
{
m_vertices->m_localPos[i].add(a_offset);
}
// update boundary box
m_boundaryBoxMin+=a_offset;
m_boundaryBoxMax+=a_offset;
// update collision detector if requested
if (a_updateCollisionDetector && m_collisionDetector)
{
m_collisionDetector->initialize();
}
}
//==============================================================================
/*!
Reverse the normal for every vertex on this model. Useful for models
that started with inverted faces and thus gave inward-pointing normals.
\fn void cMesh::reverseAllNormals()
*/
//==============================================================================
void cMesh::reverseAllNormals()
{
// reverse normals for this object
int numVertices = m_vertices->getNumVertices();
for (unsigned int i=0; i<numVertices; i++)
{
m_vertices->m_normal[i].negate();
}
}
//==============================================================================
/*!
Define the way normals are graphically rendered.
\param a_length Length of normals.
\param a_color Color of normals.
*/
//==============================================================================
void cMesh::setNormalsProperties(const double a_length,
const cColorf& a_color)
{
m_normalsLength = cClamp0(a_length);
m_normalsColor = a_color;
}
//==============================================================================
/*!
Compute the axis-aligned boundary box that encloses all triangles
in this mesh.
*/
//==============================================================================
void cMesh::updateBoundaryBox()
{
unsigned int numTriangles = m_triangles->getNumTriangles();
if (numTriangles == 0)
{
m_boundaryBoxMin.zero();
m_boundaryBoxMax.zero();
m_boundaryBoxEmpty = true;
return;
}
double xMin = C_LARGE;
double yMin = C_LARGE;
double zMin = C_LARGE;
double xMax = -C_LARGE;
double yMax = -C_LARGE;
double zMax = -C_LARGE;
bool flag = false;
// loop over all my triangles
for(unsigned int i=0; i<numTriangles; i++)
{
if (m_triangles->m_allocated[i])
{
cVector3d tVertex0 = m_vertices->getLocalPos(m_triangles->getVertexIndex0(i));
xMin = cMin(tVertex0(0) , xMin);
yMin = cMin(tVertex0(1) , yMin);
zMin = cMin(tVertex0(2) , zMin);
xMax = cMax(tVertex0(0) , xMax);
yMax = cMax(tVertex0(1) , yMax);
zMax = cMax(tVertex0(2) , zMax);
cVector3d tVertex1 = m_vertices->getLocalPos(m_triangles->getVertexIndex1(i));
xMin = cMin(tVertex1(0) , xMin);
yMin = cMin(tVertex1(1) , yMin);
zMin = cMin(tVertex1(2) , zMin);
xMax = cMax(tVertex1(0) , xMax);
yMax = cMax(tVertex1(1) , yMax);
zMax = cMax(tVertex1(2) , zMax);
cVector3d tVertex2 = m_vertices->getLocalPos(m_triangles->getVertexIndex2(i));
xMin = cMin(tVertex2(0) , xMin);
yMin = cMin(tVertex2(1) , yMin);
zMin = cMin(tVertex2(2) , zMin);
xMax = cMax(tVertex2(0) , xMax);
yMax = cMax(tVertex2(1) , yMax);
zMax = cMax(tVertex2(2) , zMax);
flag = true;
}
}
if (flag)
{
m_boundaryBoxMin.set(xMin, yMin, zMin);
m_boundaryBoxMax.set(xMax, yMax, zMax);
m_boundaryBoxEmpty = false;
}
else
{
m_boundaryBoxMin.zero();
m_boundaryBoxMax.zero();
m_boundaryBoxEmpty = true;
}
}
//==============================================================================
/*!
Set up a Brute Force collision detector for this mesh.
*/
//==============================================================================
void cMesh::createBruteForceCollisionDetector()
{
// delete previous collision detector
if (m_collisionDetector != NULL)
{
delete m_collisionDetector;
m_collisionDetector = NULL;
}
// create brute collision detector
cCollisionBrute* col = new cCollisionBrute(m_triangles);
col->initialize();
// assign new collision detector
m_collisionDetector = col;
}
//==============================================================================
/*!
Set up an AABB collision detector for this mesh.
\param a_radius Bounding radius.
*/
//==============================================================================
void cMesh::createAABBCollisionDetector(const double a_radius)
{
// delete previous collision detector
if (m_collisionDetector != NULL)
{
delete m_collisionDetector;
m_collisionDetector = NULL;
}
// create AABB collision detector
cCollisionAABB* col = new cCollisionAABB();
col->initialize(m_triangles, a_radius);
// assign new collision detector
m_collisionDetector = col;
}
//==============================================================================
/*!
For mesh objects, this information is computed by the virtual tool
when computing the finger-proxy model. More information can be found in
file cToolCursor.cpp undr methof computeInteractionForces()
Both variables m_interactionProjectedPoint and m_interactionInside are
assigned values based on the objects encountered by the proxy.
\param a_toolPos Position of the tool.
\param a_toolVel Velocity of the tool.
\param a_IDN Identification number of the force algorithm.
*/
//==============================================================================
void cMesh::computeLocalInteraction(const cVector3d& a_toolPos,
const cVector3d& a_toolVel,
const unsigned int a_IDN)
{
// m_interactionProjectedPoint
// m_interactionInside
}
//==============================================================================
/*!
Render this mesh in OpenGL. This method actually just prepares some
OpenGL state, and uses renderMesh to actually do the rendering.
\param a_options Rendering options
*/
//==============================================================================
void cMesh::render(cRenderOptions& a_options)
{
/////////////////////////////////////////////////////////////////////////
// Render parts that are always opaque
/////////////////////////////////////////////////////////////////////////
if (SECTION_RENDER_OPAQUE_PARTS_ONLY(a_options))
{
// render normals
// (note that we will not render the normals if we are currently creating
// a shadow map).
if (m_showNormals && !a_options.m_creating_shadow_map)
{
renderNormals(a_options);
}
}
/////////////////////////////////////////////////////////////////////////
// Render parts that use material properties
/////////////////////////////////////////////////////////////////////////
if (SECTION_RENDER_PARTS_WITH_MATERIALS(a_options, m_useTransparency))
{
renderMesh(a_options);
}
}
//==============================================================================
/*!
Render a graphic representation of each normal of the mesh.
\param a_options Rendering options.
*/
//==============================================================================
void cMesh::renderNormals(cRenderOptions& a_options)
{
#ifdef C_USE_OPENGL
// check if any normals to render
unsigned int numtriangles = m_triangles->getNumTriangles();
if (numtriangles == 0)
{
return;
}
// disable lighting
glDisable(GL_LIGHTING);
// set line width
glLineWidth(1.0);
// set color
glColor4fv( (const float *)&m_normalsColor);
// render normals
glBegin(GL_LINES);
for(unsigned int i=0; i<numtriangles; i++)
{
if (m_triangles->getAllocated(i))
{
cVector3d v, n;
// normal 0
v = m_vertices->getLocalPos(m_triangles->getVertexIndex0(i));
n = m_vertices->getNormal(m_triangles->getVertexIndex0(i));
glVertex3d(v(0) ,v(1) ,v(2) );
n.mul(m_normalsLength);
n.add(v);
glVertex3d(n(0) ,n(1) ,n(2) );
// normal 1
v = m_vertices->getLocalPos(m_triangles->getVertexIndex1(i));
n = m_vertices->getNormal(m_triangles->getVertexIndex1(i));
glVertex3d(v(0) ,v(1) ,v(2) );
n.mul(m_normalsLength);
n.add(v);
glVertex3d(n(0) ,n(1) ,n(2) );
// normal 2
v = m_vertices->getLocalPos(m_triangles->getVertexIndex2(i));
n = m_vertices->getNormal(m_triangles->getVertexIndex2(i));
glVertex3d(v(0) ,v(1) ,v(2) );
n.mul(m_normalsLength);
n.add(v);
glVertex3d(n(0) ,n(1) ,n(2) );
}
}
glEnd();
// enable lighting
glEnable(GL_LIGHTING);
#endif
}
//==============================================================================
/*!
Render the mesh itself. This function is declared public to allow
sharing of data among meshes, which is not possible given most
implementations of 'protected'. But it should only be accessed
from within render() or derived versions of render().
\param a_options Rendering options.
*/
//==============================================================================
void cMesh::renderMesh(cRenderOptions& a_options)
{
#ifdef C_USE_OPENGL
//--------------------------------------------------------------------------
// INITIALIZATION
//--------------------------------------------------------------------------
unsigned int numVertices = m_vertices->getNumVertices();
unsigned int numTriangles = m_triangles->getNumTriangles();
// check if object contains any triangles or vertices
if ((numVertices == 0) || (numTriangles == 0))
{
return;
}
// initialize some OpenGL flags
glDisableClientState(GL_COLOR_ARRAY);
glDisableClientState(GL_TEXTURE_COORD_ARRAY);
glDisableClientState(GL_INDEX_ARRAY);
glDisableClientState(GL_EDGE_FLAG_ARRAY);
glDisable(GL_COLOR_MATERIAL);
//--------------------------------------------------------------------------
// RENDER MATERIAL
//--------------------------------------------------------------------------
// render material properties if enabled
if (m_useMaterialProperty && a_options.m_render_materials)
{
m_material->render(a_options);
}
//--------------------------------------------------------------------------
// RENDER TEXTURE
//--------------------------------------------------------------------------
// render texture if enabled
if ((m_texture != nullptr) && (m_useTextureMapping) && (a_options.m_render_materials))
{
GLenum textureUnit = m_texture->getTextureUnit();
glActiveTexture(textureUnit);
m_texture->render(a_options);
}
//--------------------------------------------------------------------------
// RENDER VERTEX COLORS
//--------------------------------------------------------------------------
/*
if vertex colors (m_useVertexColors) is enabled, we render the colors
defined for each individual vertex.
if material properties (m_useMaterialProperty) has also been enabled,
then we combine vertex colors and materials together with OpenGL lighting
enabled.
if material properties are disabled then lighting is disabled and
we use the pure color defined at each vertex to render the object
*/
if (m_useVertexColors && a_options.m_render_materials)
{
// Clear the effects of material properties...
if (m_useMaterialProperty || a_options.m_rendering_shadow)
{
// enable vertex colors
glColorMaterial(GL_FRONT_AND_BACK, GL_AMBIENT_AND_DIFFUSE);
glEnable(GL_COLOR_MATERIAL);
glEnable(GL_LIGHTING);
}
else
{
glDisable(GL_LIGHTING);
}
}
else
{
glDisable(GL_COLOR_MATERIAL);
}
//--------------------------------------------------------------------------
// FOR OBJECTS WITH NO DEFINED COLOR/MATERIAL SETTINGS
//--------------------------------------------------------------------------
/*
A default color for objects that don't have vertex colors or
material properties (otherwise they're invisible)...
If texture mapping is enabled, then just turn off lighting
*/
if (((!m_useVertexColors) && (!m_useMaterialProperty)) && a_options.m_render_materials)
{
if (m_useTextureMapping && !a_options.m_rendering_shadow)
{
glDisable(GL_LIGHTING);
}
else
{
glEnable(GL_COLOR_MATERIAL);
glColorMaterial(GL_FRONT_AND_BACK, GL_AMBIENT_AND_DIFFUSE);
glColor4f(1.0,1.0,1.0,1.0);
}
}
//--------------------------------------------------------------------------
// RENDER OBJECT (OBJECT BUFFER + SHADERS)
//--------------------------------------------------------------------------
if ((m_shaderProgram != nullptr) && (!a_options.m_creating_shadow_map))
{
// enable shader
m_shaderProgram->use(this, a_options);
// retrieve transformation matrices
cTransform projection = a_options.m_camera->m_projectionMatrix;
cTransform view = a_options.m_camera->m_modelviewMatrix;
cTransform model = this->getGlobalTransform();
cTransform mvp = projection * view * model;
// render normal texture if enabled
if (m_normalMap != nullptr)
{
if (m_shaderProgram->isUsed())
{
GLenum textureUnit = m_normalMap->getTextureUnit();
glActiveTexture(textureUnit);
m_normalMap->render(a_options);
}
}
// render VBO
m_triangles->render();
// disable shader
m_shaderProgram->disable();
}
//--------------------------------------------------------------------------
// RENDER OBJECT (OLD METHOD)
//--------------------------------------------------------------------------
else if (!m_displayList.render(a_options.m_displayContext, m_useDisplayList))
{
// get texture unit
GLenum textureUnit = GL_TEXTURE1_ARB;
if (m_texture != nullptr)
{
textureUnit = m_texture->getTextureUnit();
}
// if requested, begin creating display list
m_displayList.begin(a_options.m_displayContext, m_useDisplayList);
//-------------------------------------------------------------------
// RENDER ALL TRIANGLES
//-------------------------------------------------------------------
/////////////////////////////////////////////////////////////////////
// RENDER TRIANGLES USING CLASSIC OPENGL COMMANDS
/////////////////////////////////////////////////////////////////////
{
// begin rendering triangles
glBegin(GL_TRIANGLES);
// render all active triangles
if (((!m_useTextureMapping) && (!m_useVertexColors)))
{
for (unsigned int i=0; i<numTriangles; i++)
{
if (m_triangles->m_allocated[i])
{
unsigned int index0 = m_triangles->getVertexIndex0(i);
unsigned int index1 = m_triangles->getVertexIndex1(i);
unsigned int index2 = m_triangles->getVertexIndex2(i);
// render vertex 0
glNormal3dv(&m_vertices->m_normal[index0](0));
glVertex3dv(&m_vertices->m_localPos[index0](0));
// render vertex 1
glNormal3dv(&m_vertices->m_normal[index1](0));
glVertex3dv(&m_vertices->m_localPos[index1](0));
// render vertex 2
glNormal3dv(&m_vertices->m_normal[index2](0));
glVertex3dv(&m_vertices->m_localPos[index2](0));
}
}
}
else if ((m_useTextureMapping) && (!m_useVertexColors))
{
for (unsigned int i=0; i<numTriangles; i++)
{
if (m_triangles->m_allocated[i])
{
unsigned int index0 = m_triangles->getVertexIndex0(i);
unsigned int index1 = m_triangles->getVertexIndex1(i);
unsigned int index2 = m_triangles->getVertexIndex2(i);
// render vertex 0
glNormal3dv(&m_vertices->m_normal[index0](0));
glMultiTexCoord2dv(textureUnit, &m_vertices->m_texCoord[index0](0));
glVertex3dv(&m_vertices->m_localPos[index0](0));
// render vertex 1
glNormal3dv(&m_vertices->m_normal[index1](0));
glMultiTexCoord2dv(textureUnit, &m_vertices->m_texCoord[index1](0));
glVertex3dv(&m_vertices->m_localPos[index1](0));
// render vertex 2
glNormal3dv(&m_vertices->m_normal[index2](0));
glMultiTexCoord2dv(textureUnit, &m_vertices->m_texCoord[index2](0));
glVertex3dv(&m_vertices->m_localPos[index2](0));
}
}
}
else if ((!m_useTextureMapping) && (m_useVertexColors))
{
for (unsigned int i=0; i<numTriangles; i++)
{
if (m_triangles->m_allocated[i])
{
unsigned int index0 = m_triangles->getVertexIndex0(i);
unsigned int index1 = m_triangles->getVertexIndex1(i);
unsigned int index2 = m_triangles->getVertexIndex2(i);
// render vertex 0
glNormal3dv(&m_vertices->m_normal[index0](0));
glColor4fv(m_vertices->m_color[index0].pColor());
glVertex3dv(&m_vertices->m_localPos[index0](0));
// render vertex 1
glNormal3dv(&m_vertices->m_normal[index1](0));
glColor4fv(m_vertices->m_color[index1].pColor());
glVertex3dv(&m_vertices->m_localPos[index1](0));
// render vertex 2
glNormal3dv(&m_vertices->m_normal[index2](0));
glColor4fv(m_vertices->m_color[index2].pColor());
glVertex3dv(&m_vertices->m_localPos[index2](0));
}
}
}
else if ((m_useTextureMapping) && (m_useVertexColors))
{
for (unsigned int i=0; i<numTriangles; i++)
{
if (m_triangles->m_allocated[i])
{
unsigned int index0 = m_triangles->getVertexIndex0(i);
unsigned int index1 = m_triangles->getVertexIndex1(i);
unsigned int index2 = m_triangles->getVertexIndex2(i);
// render vertex 0
glNormal3dv(&m_vertices->m_normal[index0](0));
glColor4fv(m_vertices->m_color[index0].pColor());
glMultiTexCoord2dv(textureUnit, &m_vertices->m_texCoord[index0](0));
glVertex3dv(&m_vertices->m_localPos[index0](0));
// render vertex 1
glNormal3dv(&m_vertices->m_normal[index1](0));
glColor4fv(m_vertices->m_color[index1].pColor());
glMultiTexCoord2dv(textureUnit, &m_vertices->m_texCoord[index1](0));
glVertex3dv(&m_vertices->m_localPos[index1](0));
// render vertex 2
glNormal3dv(&m_vertices->m_normal[index2](0));
glColor4fv(m_vertices->m_color[index2].pColor());
glMultiTexCoord2dv(textureUnit, &m_vertices->m_texCoord[index2](0));
glVertex3dv(&m_vertices->m_localPos[index2](0));
}
}
}
// finalize rendering list of triangles
glEnd();
}
//-------------------------------------------------------------------
// FINALIZE DISPLAY LIST
//-------------------------------------------------------------------
// if being created, finalize display list
m_displayList.end(a_options.m_displayContext, true);
}
//--------------------------------------------------------------------------
// RESTORE OPENGL
//--------------------------------------------------------------------------
// turn off any array variables I might have turned on...
glPolygonMode(GL_FRONT_AND_BACK, GL_FILL);
glEnable(GL_LIGHTING);
glDisable(GL_COLOR_MATERIAL);
glDisable(GL_TEXTURE_1D);
glDisable(GL_TEXTURE_2D);
#endif
}
//------------------------------------------------------------------------------
} // namespace chai3d
//------------------------------------------------------------------------------
| [
"ddeo@stanford.edu"
] | ddeo@stanford.edu |
6ffaeb2e9c184b6140bd313a2c2ba18f785ca7de | 879f7b9a266aabe8b0ed0c48892d5374ecea120d | /codes/gcov/basic_string.h.gcov | 8557f8b20ba932d499bcaaadb2dd0575b1c5d3c2 | [
"MIT"
] | permissive | kingslair/WebServer | 3bfef5c420b5a4c5c3855cc68bd2c82300a4762d | b72cfdaabc1aaf1d319b7f12f697d224f6fafc69 | refs/heads/master | 2020-12-03T00:27:30.751312 | 2018-02-03T13:07:46 | 2018-02-03T13:07:46 | 96,032,411 | 2 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 142,882 | gcov | -: 0:Source:/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/basic_string.h
-: 0:Programs:14
-: 1:// Components for manipulating sequences of characters -*- C++ -*-
-: 2:
-: 3:// Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005,
-: 4:// 2006, 2007, 2008, 2009
-: 5:// Free Software Foundation, Inc.
-: 6://
-: 7:// This file is part of the GNU ISO C++ Library. This library is free
-: 8:// software; you can redistribute it and/or modify it under the
-: 9:// terms of the GNU General Public License as published by the
-: 10:// Free Software Foundation; either version 3, or (at your option)
-: 11:// any later version.
-: 12:
-: 13:// This library is distributed in the hope that it will be useful,
-: 14:// but WITHOUT ANY WARRANTY; without even the implied warranty of
-: 15:// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-: 16:// GNU General Public License for more details.
-: 17:
-: 18:// Under Section 7 of GPL version 3, you are granted additional
-: 19:// permissions described in the GCC Runtime Library Exception, version
-: 20:// 3.1, as published by the Free Software Foundation.
-: 21:
-: 22:// You should have received a copy of the GNU General Public License and
-: 23:// a copy of the GCC Runtime Library Exception along with this program;
-: 24:// see the files COPYING3 and COPYING.RUNTIME respectively. If not, see
-: 25:// <http://www.gnu.org/licenses/>.
-: 26:
-: 27:/** @file basic_string.h
-: 28: * This is an internal header file, included by other library headers.
-: 29: * You should not attempt to use it directly.
-: 30: */
-: 31:
-: 32://
-: 33:// ISO C++ 14882: 21 Strings library
-: 34://
-: 35:
-: 36:#ifndef _BASIC_STRING_H
-: 37:#define _BASIC_STRING_H 1
-: 38:
-: 39:#pragma GCC system_header
-: 40:
-: 41:#include <ext/atomicity.h>
-: 42:#include <debug/debug.h>
-: 43:#include <initializer_list>
-: 44:
-: 45:_GLIBCXX_BEGIN_NAMESPACE(std)
-: 46:
-: 47: /**
-: 48: * @class basic_string basic_string.h <string>
-: 49: * @brief Managing sequences of characters and character-like objects.
-: 50: *
-: 51: * @ingroup sequences
-: 52: *
-: 53: * Meets the requirements of a <a href="tables.html#65">container</a>, a
-: 54: * <a href="tables.html#66">reversible container</a>, and a
-: 55: * <a href="tables.html#67">sequence</a>. Of the
-: 56: * <a href="tables.html#68">optional sequence requirements</a>, only
-: 57: * @c push_back, @c at, and array access are supported.
-: 58: *
-: 59: * @doctodo
-: 60: *
-: 61: *
-: 62: * Documentation? What's that?
-: 63: * Nathan Myers <ncm@cantrip.org>.
-: 64: *
-: 65: * A string looks like this:
-: 66: *
-: 67: * @code
-: 68: * [_Rep]
-: 69: * _M_length
-: 70: * [basic_string<char_type>] _M_capacity
-: 71: * _M_dataplus _M_refcount
-: 72: * _M_p ----------------> unnamed array of char_type
-: 73: * @endcode
-: 74: *
-: 75: * Where the _M_p points to the first character in the string, and
-: 76: * you cast it to a pointer-to-_Rep and subtract 1 to get a
-: 77: * pointer to the header.
-: 78: *
-: 79: * This approach has the enormous advantage that a string object
-: 80: * requires only one allocation. All the ugliness is confined
-: 81: * within a single pair of inline functions, which each compile to
-: 82: * a single "add" instruction: _Rep::_M_data(), and
-: 83: * string::_M_rep(); and the allocation function which gets a
-: 84: * block of raw bytes and with room enough and constructs a _Rep
-: 85: * object at the front.
-: 86: *
-: 87: * The reason you want _M_data pointing to the character array and
-: 88: * not the _Rep is so that the debugger can see the string
-: 89: * contents. (Probably we should add a non-inline member to get
-: 90: * the _Rep for the debugger to use, so users can check the actual
-: 91: * string length.)
-: 92: *
-: 93: * Note that the _Rep object is a POD so that you can have a
-: 94: * static "empty string" _Rep object already "constructed" before
-: 95: * static constructors have run. The reference-count encoding is
-: 96: * chosen so that a 0 indicates one reference, so you never try to
-: 97: * destroy the empty-string _Rep object.
-: 98: *
-: 99: * All but the last paragraph is considered pretty conventional
-: 100: * for a C++ string implementation.
-: 101: */
-: 102: // 21.3 Template class basic_string
-: 103: template<typename _CharT, typename _Traits, typename _Alloc>
-: 104: class basic_string
-: 105: {
-: 106: typedef typename _Alloc::template rebind<_CharT>::other _CharT_alloc_type;
-: 107:
-: 108: // Types:
-: 109: public:
-: 110: typedef _Traits traits_type;
-: 111: typedef typename _Traits::char_type value_type;
-: 112: typedef _Alloc allocator_type;
-: 113: typedef typename _CharT_alloc_type::size_type size_type;
-: 114: typedef typename _CharT_alloc_type::difference_type difference_type;
-: 115: typedef typename _CharT_alloc_type::reference reference;
-: 116: typedef typename _CharT_alloc_type::const_reference const_reference;
-: 117: typedef typename _CharT_alloc_type::pointer pointer;
-: 118: typedef typename _CharT_alloc_type::const_pointer const_pointer;
-: 119: typedef __gnu_cxx::__normal_iterator<pointer, basic_string> iterator;
-: 120: typedef __gnu_cxx::__normal_iterator<const_pointer, basic_string>
-: 121: const_iterator;
-: 122: typedef std::reverse_iterator<const_iterator> const_reverse_iterator;
-: 123: typedef std::reverse_iterator<iterator> reverse_iterator;
-: 124:
-: 125: private:
-: 126: // _Rep: string representation
-: 127: // Invariants:
-: 128: // 1. String really contains _M_length + 1 characters: due to 21.3.4
-: 129: // must be kept null-terminated.
-: 130: // 2. _M_capacity >= _M_length
-: 131: // Allocated memory is always (_M_capacity + 1) * sizeof(_CharT).
-: 132: // 3. _M_refcount has three states:
-: 133: // -1: leaked, one reference, no ref-copies allowed, non-const.
-: 134: // 0: one reference, non-const.
-: 135: // n>0: n + 1 references, operations require a lock, const.
-: 136: // 4. All fields==0 is an empty string, given the extra storage
-: 137: // beyond-the-end for a null terminator; thus, the shared
-: 138: // empty string representation needs no constructor.
-: 139:
-: 140: struct _Rep_base
-: 141: {
-: 142: size_type _M_length;
-: 143: size_type _M_capacity;
-: 144: _Atomic_word _M_refcount;
-: 145: };
-: 146:
-: 147: struct _Rep : _Rep_base
-: 148: {
-: 149: // Types:
-: 150: typedef typename _Alloc::template rebind<char>::other _Raw_bytes_alloc;
-: 151:
-: 152: // (Public) Data members:
-: 153:
-: 154: // The maximum number of individual char_type elements of an
-: 155: // individual string is determined by _S_max_size. This is the
-: 156: // value that will be returned by max_size(). (Whereas npos
-: 157: // is the maximum number of bytes the allocator can allocate.)
-: 158: // If one was to divvy up the theoretical largest size string,
-: 159: // with a terminating character and m _CharT elements, it'd
-: 160: // look like this:
-: 161: // npos = sizeof(_Rep) + (m * sizeof(_CharT)) + sizeof(_CharT)
-: 162: // Solving for m:
-: 163: // m = ((npos - sizeof(_Rep))/sizeof(CharT)) - 1
-: 164: // In addition, this implementation quarters this amount.
-: 165: static const size_type _S_max_size;
-: 166: static const _CharT _S_terminal;
-: 167:
-: 168: // The following storage is init'd to 0 by the linker, resulting
-: 169: // (carefully) in an empty string with one reference.
-: 170: static size_type _S_empty_rep_storage[];
-: 171:
-: 172: static _Rep&
#####: 173: _S_empty_rep()
-: 174: {
-: 175: // NB: Mild hack to avoid strict-aliasing warnings. Note that
-: 176: // _S_empty_rep_storage is never modified and the punning should
-: 177: // be reasonably safe in this case.
#####: 178: void* __p = reinterpret_cast<void*>(&_S_empty_rep_storage);
#####: 179: return *reinterpret_cast<_Rep*>(__p);
-: 180: }
-: 181:
-: 182: bool
#####: 183: _M_is_leaked() const
#####: 184: { return this->_M_refcount < 0; }
-: 185:
-: 186: bool
-: 187: _M_is_shared() const
-: 188: { return this->_M_refcount > 0; }
-: 189:
-: 190: void
-: 191: _M_set_leaked()
-: 192: { this->_M_refcount = -1; }
-: 193:
-: 194: void
-: 195: _M_set_sharable()
-: 196: { this->_M_refcount = 0; }
-: 197:
-: 198: void
-: 199: _M_set_length_and_sharable(size_type __n)
-: 200: {
-: 201:#ifndef _GLIBCXX_FULLY_DYNAMIC_STRING
-: 202: if (__builtin_expect(this != &_S_empty_rep(), false))
-: 203:#endif
-: 204: {
-: 205: this->_M_set_sharable(); // One reference.
-: 206: this->_M_length = __n;
-: 207: traits_type::assign(this->_M_refdata()[__n], _S_terminal);
-: 208: // grrr. (per 21.3.4)
-: 209: // You cannot leave those LWG people alone for a second.
-: 210: }
-: 211: }
-: 212:
-: 213: _CharT*
#####: 214: _M_refdata() throw()
#####: 215: { return reinterpret_cast<_CharT*>(this + 1); }
-: 216:
-: 217: _CharT*
-: 218: _M_grab(const _Alloc& __alloc1, const _Alloc& __alloc2)
-: 219: {
-: 220: return (!_M_is_leaked() && __alloc1 == __alloc2)
-: 221: ? _M_refcopy() : _M_clone(__alloc1);
-: 222: }
-: 223:
-: 224: // Create & Destroy
-: 225: static _Rep*
-: 226: _S_create(size_type, size_type, const _Alloc&);
-: 227:
-: 228: void
#####: 229: _M_dispose(const _Alloc& __a)
-: 230: {
-: 231:#ifndef _GLIBCXX_FULLY_DYNAMIC_STRING
#####: 232: if (__builtin_expect(this != &_S_empty_rep(), false))
-: 233:#endif
#####: 234: if (__gnu_cxx::__exchange_and_add_dispatch(&this->_M_refcount,
-: 235: -1) <= 0)
#####: 236: _M_destroy(__a);
#####: 237: } // XXX MT
-: 238:
-: 239: void
-: 240: _M_destroy(const _Alloc&) throw();
-: 241:
-: 242: _CharT*
-: 243: _M_refcopy() throw()
-: 244: {
-: 245:#ifndef _GLIBCXX_FULLY_DYNAMIC_STRING
-: 246: if (__builtin_expect(this != &_S_empty_rep(), false))
-: 247:#endif
-: 248: __gnu_cxx::__atomic_add_dispatch(&this->_M_refcount, 1);
-: 249: return _M_refdata();
-: 250: } // XXX MT
-: 251:
-: 252: _CharT*
-: 253: _M_clone(const _Alloc&, size_type __res = 0);
-: 254: };
-: 255:
-: 256: // Use empty-base optimization: http://www.cantrip.org/emptyopt.html
-: 257: struct _Alloc_hider : _Alloc
#####: 258: {
#####: 259: _Alloc_hider(_CharT* __dat, const _Alloc& __a)
#####: 260: : _Alloc(__a), _M_p(__dat) { }
-: 261:
-: 262: _CharT* _M_p; // The actual data.
-: 263: };
-: 264:
-: 265: public:
-: 266: // Data Members (public):
-: 267: // NB: This is an unsigned type, and thus represents the maximum
-: 268: // size that the allocator can hold.
-: 269: /// Value returned by various member functions when they fail.
-: 270: static const size_type npos = static_cast<size_type>(-1);
-: 271:
-: 272: private:
-: 273: // Data Members (private):
-: 274: mutable _Alloc_hider _M_dataplus;
-: 275:
-: 276: _CharT*
#####: 277: _M_data() const
#####: 278: { return _M_dataplus._M_p; }
-: 279:
-: 280: _CharT*
-: 281: _M_data(_CharT* __p)
-: 282: { return (_M_dataplus._M_p = __p); }
-: 283:
-: 284: _Rep*
#####: 285: _M_rep() const
#####: 286: { return &((reinterpret_cast<_Rep*> (_M_data()))[-1]); }
-: 287:
-: 288: // For the internal use we have functions similar to `begin'/`end'
-: 289: // but they do not call _M_leak.
-: 290: iterator
-: 291: _M_ibegin() const
-: 292: { return iterator(_M_data()); }
-: 293:
-: 294: iterator
-: 295: _M_iend() const
-: 296: { return iterator(_M_data() + this->size()); }
-: 297:
-: 298: void
#####: 299: _M_leak() // for use in begin() & non-const op[]
-: 300: {
#####: 301: if (!_M_rep()->_M_is_leaked())
#####: 302: _M_leak_hard();
#####: 303: }
-: 304:
-: 305: size_type
#####: 306: _M_check(size_type __pos, const char* __s) const
-: 307: {
#####: 308: if (__pos > this->size())
#####: 309: __throw_out_of_range(__N(__s));
#####: 310: return __pos;
-: 311: }
-: 312:
-: 313: void
-: 314: _M_check_length(size_type __n1, size_type __n2, const char* __s) const
-: 315: {
-: 316: if (this->max_size() - (this->size() - __n1) < __n2)
-: 317: __throw_length_error(__N(__s));
-: 318: }
-: 319:
-: 320: // NB: _M_limit doesn't check for a bad __pos value.
-: 321: size_type
#####: 322: _M_limit(size_type __pos, size_type __off) const
-: 323: {
#####: 324: const bool __testoff = __off < this->size() - __pos;
#####: 325: return __testoff ? __off : this->size() - __pos;
-: 326: }
-: 327:
-: 328: // True if _Rep and source do not overlap.
-: 329: bool
-: 330: _M_disjunct(const _CharT* __s) const
-: 331: {
-: 332: return (less<const _CharT*>()(__s, _M_data())
-: 333: || less<const _CharT*>()(_M_data() + this->size(), __s));
-: 334: }
-: 335:
-: 336: // When __n = 1 way faster than the general multichar
-: 337: // traits_type::copy/move/assign.
-: 338: static void
-: 339: _M_copy(_CharT* __d, const _CharT* __s, size_type __n)
-: 340: {
-: 341: if (__n == 1)
-: 342: traits_type::assign(*__d, *__s);
-: 343: else
-: 344: traits_type::copy(__d, __s, __n);
-: 345: }
-: 346:
-: 347: static void
-: 348: _M_move(_CharT* __d, const _CharT* __s, size_type __n)
-: 349: {
-: 350: if (__n == 1)
-: 351: traits_type::assign(*__d, *__s);
-: 352: else
-: 353: traits_type::move(__d, __s, __n);
-: 354: }
-: 355:
-: 356: static void
-: 357: _M_assign(_CharT* __d, size_type __n, _CharT __c)
-: 358: {
-: 359: if (__n == 1)
-: 360: traits_type::assign(*__d, __c);
-: 361: else
-: 362: traits_type::assign(__d, __n, __c);
-: 363: }
-: 364:
-: 365: // _S_copy_chars is a separate template to permit specialization
-: 366: // to optimize for the common case of pointers as iterators.
-: 367: template<class _Iterator>
-: 368: static void
-: 369: _S_copy_chars(_CharT* __p, _Iterator __k1, _Iterator __k2)
-: 370: {
-: 371: for (; __k1 != __k2; ++__k1, ++__p)
-: 372: traits_type::assign(*__p, *__k1); // These types are off.
-: 373: }
-: 374:
-: 375: static void
-: 376: _S_copy_chars(_CharT* __p, iterator __k1, iterator __k2)
-: 377: { _S_copy_chars(__p, __k1.base(), __k2.base()); }
-: 378:
-: 379: static void
-: 380: _S_copy_chars(_CharT* __p, const_iterator __k1, const_iterator __k2)
-: 381: { _S_copy_chars(__p, __k1.base(), __k2.base()); }
-: 382:
-: 383: static void
-: 384: _S_copy_chars(_CharT* __p, _CharT* __k1, _CharT* __k2)
-: 385: { _M_copy(__p, __k1, __k2 - __k1); }
-: 386:
-: 387: static void
-: 388: _S_copy_chars(_CharT* __p, const _CharT* __k1, const _CharT* __k2)
-: 389: { _M_copy(__p, __k1, __k2 - __k1); }
-: 390:
-: 391: static int
-: 392: _S_compare(size_type __n1, size_type __n2)
-: 393: {
-: 394: const difference_type __d = difference_type(__n1 - __n2);
-: 395:
-: 396: if (__d > __gnu_cxx::__numeric_traits<int>::__max)
-: 397: return __gnu_cxx::__numeric_traits<int>::__max;
-: 398: else if (__d < __gnu_cxx::__numeric_traits<int>::__min)
-: 399: return __gnu_cxx::__numeric_traits<int>::__min;
-: 400: else
-: 401: return int(__d);
-: 402: }
-: 403:
-: 404: void
-: 405: _M_mutate(size_type __pos, size_type __len1, size_type __len2);
-: 406:
-: 407: void
-: 408: _M_leak_hard();
-: 409:
-: 410: static _Rep&
#####: 411: _S_empty_rep()
#####: 412: { return _Rep::_S_empty_rep(); }
-: 413:
-: 414: public:
-: 415: // Construct/copy/destroy:
-: 416: // NB: We overload ctors in some cases instead of using default
-: 417: // arguments, per 17.4.4.4 para. 2 item 2.
-: 418:
-: 419: /**
-: 420: * @brief Default constructor creates an empty string.
-: 421: */
-: 422: inline
-: 423: basic_string();
-: 424:
-: 425: /**
-: 426: * @brief Construct an empty string using allocator @a a.
-: 427: */
-: 428: explicit
-: 429: basic_string(const _Alloc& __a);
-: 430:
-: 431: // NB: per LWG issue 42, semantics different from IS:
-: 432: /**
-: 433: * @brief Construct string with copy of value of @a str.
-: 434: * @param str Source string.
-: 435: */
-: 436: basic_string(const basic_string& __str);
-: 437: /**
-: 438: * @brief Construct string as copy of a substring.
-: 439: * @param str Source string.
-: 440: * @param pos Index of first character to copy from.
-: 441: * @param n Number of characters to copy (default remainder).
-: 442: */
-: 443: basic_string(const basic_string& __str, size_type __pos,
-: 444: size_type __n = npos);
-: 445: /**
-: 446: * @brief Construct string as copy of a substring.
-: 447: * @param str Source string.
-: 448: * @param pos Index of first character to copy from.
-: 449: * @param n Number of characters to copy.
-: 450: * @param a Allocator to use.
-: 451: */
-: 452: basic_string(const basic_string& __str, size_type __pos,
-: 453: size_type __n, const _Alloc& __a);
-: 454:
-: 455: /**
-: 456: * @brief Construct string initialized by a character array.
-: 457: * @param s Source character array.
-: 458: * @param n Number of characters to copy.
-: 459: * @param a Allocator to use (default is default allocator).
-: 460: *
-: 461: * NB: @a s must have at least @a n characters, '\\0' has no special
-: 462: * meaning.
-: 463: */
-: 464: basic_string(const _CharT* __s, size_type __n,
-: 465: const _Alloc& __a = _Alloc());
-: 466: /**
-: 467: * @brief Construct string as copy of a C string.
-: 468: * @param s Source C string.
-: 469: * @param a Allocator to use (default is default allocator).
-: 470: */
-: 471: basic_string(const _CharT* __s, const _Alloc& __a = _Alloc());
-: 472: /**
-: 473: * @brief Construct string as multiple characters.
-: 474: * @param n Number of characters.
-: 475: * @param c Character to use.
-: 476: * @param a Allocator to use (default is default allocator).
-: 477: */
-: 478: basic_string(size_type __n, _CharT __c, const _Alloc& __a = _Alloc());
-: 479:
-: 480:#ifdef __GXX_EXPERIMENTAL_CXX0X__
-: 481: /**
-: 482: * @brief Construct string from an initializer list.
-: 483: * @param l std::initializer_list of characters.
-: 484: * @param a Allocator to use (default is default allocator).
-: 485: */
-: 486: basic_string(initializer_list<_CharT> __l, const _Alloc& __a = _Alloc());
-: 487:#endif // __GXX_EXPERIMENTAL_CXX0X__
-: 488:
-: 489: /**
-: 490: * @brief Construct string as copy of a range.
-: 491: * @param beg Start of range.
-: 492: * @param end End of range.
-: 493: * @param a Allocator to use (default is default allocator).
-: 494: */
-: 495: template<class _InputIterator>
-: 496: basic_string(_InputIterator __beg, _InputIterator __end,
-: 497: const _Alloc& __a = _Alloc());
-: 498:
-: 499: /**
-: 500: * @brief Destroy the string instance.
-: 501: */
#####: 502: ~basic_string()
#####: 503: { _M_rep()->_M_dispose(this->get_allocator()); }
-: 504:
-: 505: /**
-: 506: * @brief Assign the value of @a str to this string.
-: 507: * @param str Source string.
-: 508: */
-: 509: basic_string&
#####: 510: operator=(const basic_string& __str)
#####: 511: { return this->assign(__str); }
-: 512:
-: 513: /**
-: 514: * @brief Copy contents of @a s into this string.
-: 515: * @param s Source null-terminated string.
-: 516: */
-: 517: basic_string&
#####: 518: operator=(const _CharT* __s)
#####: 519: { return this->assign(__s); }
-: 520:
-: 521: /**
-: 522: * @brief Set value to string of length 1.
-: 523: * @param c Source character.
-: 524: *
-: 525: * Assigning to a character makes this string length 1 and
-: 526: * (*this)[0] == @a c.
-: 527: */
-: 528: basic_string&
-: 529: operator=(_CharT __c)
-: 530: {
-: 531: this->assign(1, __c);
-: 532: return *this;
-: 533: }
-: 534:
-: 535:#ifdef __GXX_EXPERIMENTAL_CXX0X__
-: 536: /**
-: 537: * @brief Set value to string constructed from initializer list.
-: 538: * @param l std::initializer_list.
-: 539: */
-: 540: basic_string&
-: 541: operator=(initializer_list<_CharT> __l)
-: 542: {
-: 543: this->assign (__l.begin(), __l.end());
-: 544: return *this;
-: 545: }
-: 546:#endif // __GXX_EXPERIMENTAL_CXX0X__
-: 547:
-: 548: // Iterators:
-: 549: /**
-: 550: * Returns a read/write iterator that points to the first character in
-: 551: * the %string. Unshares the string.
-: 552: */
-: 553: iterator
-: 554: begin()
-: 555: {
-: 556: _M_leak();
-: 557: return iterator(_M_data());
-: 558: }
-: 559:
-: 560: /**
-: 561: * Returns a read-only (constant) iterator that points to the first
-: 562: * character in the %string.
-: 563: */
-: 564: const_iterator
-: 565: begin() const
-: 566: { return const_iterator(_M_data()); }
-: 567:
-: 568: /**
-: 569: * Returns a read/write iterator that points one past the last
-: 570: * character in the %string. Unshares the string.
-: 571: */
-: 572: iterator
-: 573: end()
-: 574: {
-: 575: _M_leak();
-: 576: return iterator(_M_data() + this->size());
-: 577: }
-: 578:
-: 579: /**
-: 580: * Returns a read-only (constant) iterator that points one past the
-: 581: * last character in the %string.
-: 582: */
-: 583: const_iterator
-: 584: end() const
-: 585: { return const_iterator(_M_data() + this->size()); }
-: 586:
-: 587: /**
-: 588: * Returns a read/write reverse iterator that points to the last
-: 589: * character in the %string. Iteration is done in reverse element
-: 590: * order. Unshares the string.
-: 591: */
-: 592: reverse_iterator
-: 593: rbegin()
-: 594: { return reverse_iterator(this->end()); }
-: 595:
-: 596: /**
-: 597: * Returns a read-only (constant) reverse iterator that points
-: 598: * to the last character in the %string. Iteration is done in
-: 599: * reverse element order.
-: 600: */
-: 601: const_reverse_iterator
-: 602: rbegin() const
-: 603: { return const_reverse_iterator(this->end()); }
-: 604:
-: 605: /**
-: 606: * Returns a read/write reverse iterator that points to one before the
-: 607: * first character in the %string. Iteration is done in reverse
-: 608: * element order. Unshares the string.
-: 609: */
-: 610: reverse_iterator
-: 611: rend()
-: 612: { return reverse_iterator(this->begin()); }
-: 613:
-: 614: /**
-: 615: * Returns a read-only (constant) reverse iterator that points
-: 616: * to one before the first character in the %string. Iteration
-: 617: * is done in reverse element order.
-: 618: */
-: 619: const_reverse_iterator
-: 620: rend() const
-: 621: { return const_reverse_iterator(this->begin()); }
-: 622:
-: 623: public:
-: 624: // Capacity:
-: 625: /// Returns the number of characters in the string, not including any
-: 626: /// null-termination.
-: 627: size_type
#####: 628: size() const
#####: 629: { return _M_rep()->_M_length; }
-: 630:
-: 631: /// Returns the number of characters in the string, not including any
-: 632: /// null-termination.
-: 633: size_type
-: 634: length() const
-: 635: { return _M_rep()->_M_length; }
-: 636:
-: 637: /// Returns the size() of the largest possible %string.
-: 638: size_type
-: 639: max_size() const
-: 640: { return _Rep::_S_max_size; }
-: 641:
-: 642: /**
-: 643: * @brief Resizes the %string to the specified number of characters.
-: 644: * @param n Number of characters the %string should contain.
-: 645: * @param c Character to fill any new elements.
-: 646: *
-: 647: * This function will %resize the %string to the specified
-: 648: * number of characters. If the number is smaller than the
-: 649: * %string's current size the %string is truncated, otherwise
-: 650: * the %string is extended and new elements are set to @a c.
-: 651: */
-: 652: void
-: 653: resize(size_type __n, _CharT __c);
-: 654:
-: 655: /**
-: 656: * @brief Resizes the %string to the specified number of characters.
-: 657: * @param n Number of characters the %string should contain.
-: 658: *
-: 659: * This function will resize the %string to the specified length. If
-: 660: * the new size is smaller than the %string's current size the %string
-: 661: * is truncated, otherwise the %string is extended and new characters
-: 662: * are default-constructed. For basic types such as char, this means
-: 663: * setting them to 0.
-: 664: */
-: 665: void
-: 666: resize(size_type __n)
-: 667: { this->resize(__n, _CharT()); }
-: 668:
-: 669: /**
-: 670: * Returns the total number of characters that the %string can hold
-: 671: * before needing to allocate more memory.
-: 672: */
-: 673: size_type
-: 674: capacity() const
-: 675: { return _M_rep()->_M_capacity; }
-: 676:
-: 677: /**
-: 678: * @brief Attempt to preallocate enough memory for specified number of
-: 679: * characters.
-: 680: * @param res_arg Number of characters required.
-: 681: * @throw std::length_error If @a res_arg exceeds @c max_size().
-: 682: *
-: 683: * This function attempts to reserve enough memory for the
-: 684: * %string to hold the specified number of characters. If the
-: 685: * number requested is more than max_size(), length_error is
-: 686: * thrown.
-: 687: *
-: 688: * The advantage of this function is that if optimal code is a
-: 689: * necessity and the user can determine the string length that will be
-: 690: * required, the user can reserve the memory in %advance, and thus
-: 691: * prevent a possible reallocation of memory and copying of %string
-: 692: * data.
-: 693: */
-: 694: void
-: 695: reserve(size_type __res_arg = 0);
-: 696:
-: 697: /**
-: 698: * Erases the string, making it empty.
-: 699: */
-: 700: void
-: 701: clear()
-: 702: { _M_mutate(0, this->size(), 0); }
-: 703:
-: 704: /**
-: 705: * Returns true if the %string is empty. Equivalent to *this == "".
-: 706: */
-: 707: bool
#####: 708: empty() const
#####: 709: { return this->size() == 0; }
-: 710:
-: 711: // Element access:
-: 712: /**
-: 713: * @brief Subscript access to the data contained in the %string.
-: 714: * @param pos The index of the character to access.
-: 715: * @return Read-only (constant) reference to the character.
-: 716: *
-: 717: * This operator allows for easy, array-style, data access.
-: 718: * Note that data access with this operator is unchecked and
-: 719: * out_of_range lookups are not defined. (For checked lookups
-: 720: * see at().)
-: 721: */
-: 722: const_reference
#####: 723: operator[] (size_type __pos) const
-: 724: {
-: 725: _GLIBCXX_DEBUG_ASSERT(__pos <= size());
#####: 726: return _M_data()[__pos];
-: 727: }
-: 728:
-: 729: /**
-: 730: * @brief Subscript access to the data contained in the %string.
-: 731: * @param pos The index of the character to access.
-: 732: * @return Read/write reference to the character.
-: 733: *
-: 734: * This operator allows for easy, array-style, data access.
-: 735: * Note that data access with this operator is unchecked and
-: 736: * out_of_range lookups are not defined. (For checked lookups
-: 737: * see at().) Unshares the string.
-: 738: */
-: 739: reference
#####: 740: operator[](size_type __pos)
-: 741: {
-: 742: // allow pos == size() as v3 extension:
-: 743: _GLIBCXX_DEBUG_ASSERT(__pos <= size());
-: 744: // but be strict in pedantic mode:
-: 745: _GLIBCXX_DEBUG_PEDASSERT(__pos < size());
#####: 746: _M_leak();
#####: 747: return _M_data()[__pos];
-: 748: }
-: 749:
-: 750: /**
-: 751: * @brief Provides access to the data contained in the %string.
-: 752: * @param n The index of the character to access.
-: 753: * @return Read-only (const) reference to the character.
-: 754: * @throw std::out_of_range If @a n is an invalid index.
-: 755: *
-: 756: * This function provides for safer data access. The parameter is
-: 757: * first checked that it is in the range of the string. The function
-: 758: * throws out_of_range if the check fails.
-: 759: */
-: 760: const_reference
-: 761: at(size_type __n) const
-: 762: {
-: 763: if (__n >= this->size())
-: 764: __throw_out_of_range(__N("basic_string::at"));
-: 765: return _M_data()[__n];
-: 766: }
-: 767:
-: 768: /**
-: 769: * @brief Provides access to the data contained in the %string.
-: 770: * @param n The index of the character to access.
-: 771: * @return Read/write reference to the character.
-: 772: * @throw std::out_of_range If @a n is an invalid index.
-: 773: *
-: 774: * This function provides for safer data access. The parameter is
-: 775: * first checked that it is in the range of the string. The function
-: 776: * throws out_of_range if the check fails. Success results in
-: 777: * unsharing the string.
-: 778: */
-: 779: reference
-: 780: at(size_type __n)
-: 781: {
-: 782: if (__n >= size())
-: 783: __throw_out_of_range(__N("basic_string::at"));
-: 784: _M_leak();
-: 785: return _M_data()[__n];
-: 786: }
-: 787:
-: 788: // Modifiers:
-: 789: /**
-: 790: * @brief Append a string to this string.
-: 791: * @param str The string to append.
-: 792: * @return Reference to this string.
-: 793: */
-: 794: basic_string&
-: 795: operator+=(const basic_string& __str)
-: 796: { return this->append(__str); }
-: 797:
-: 798: /**
-: 799: * @brief Append a C string.
-: 800: * @param s The C string to append.
-: 801: * @return Reference to this string.
-: 802: */
-: 803: basic_string&
-: 804: operator+=(const _CharT* __s)
-: 805: { return this->append(__s); }
-: 806:
-: 807: /**
-: 808: * @brief Append a character.
-: 809: * @param c The character to append.
-: 810: * @return Reference to this string.
-: 811: */
-: 812: basic_string&
-: 813: operator+=(_CharT __c)
-: 814: {
-: 815: this->push_back(__c);
-: 816: return *this;
-: 817: }
-: 818:
-: 819:#ifdef __GXX_EXPERIMENTAL_CXX0X__
-: 820: /**
-: 821: * @brief Append an initializer_list of characters.
-: 822: * @param l The initializer_list of characters to be appended.
-: 823: * @return Reference to this string.
-: 824: */
-: 825: basic_string&
-: 826: operator+=(initializer_list<_CharT> __l)
-: 827: { return this->append(__l.begin(), __l.end()); }
-: 828:#endif // __GXX_EXPERIMENTAL_CXX0X__
-: 829:
-: 830: /**
-: 831: * @brief Append a string to this string.
-: 832: * @param str The string to append.
-: 833: * @return Reference to this string.
-: 834: */
-: 835: basic_string&
-: 836: append(const basic_string& __str);
-: 837:
-: 838: /**
-: 839: * @brief Append a substring.
-: 840: * @param str The string to append.
-: 841: * @param pos Index of the first character of str to append.
-: 842: * @param n The number of characters to append.
-: 843: * @return Reference to this string.
-: 844: * @throw std::out_of_range if @a pos is not a valid index.
-: 845: *
-: 846: * This function appends @a n characters from @a str starting at @a pos
-: 847: * to this string. If @a n is is larger than the number of available
-: 848: * characters in @a str, the remainder of @a str is appended.
-: 849: */
-: 850: basic_string&
-: 851: append(const basic_string& __str, size_type __pos, size_type __n);
-: 852:
-: 853: /**
-: 854: * @brief Append a C substring.
-: 855: * @param s The C string to append.
-: 856: * @param n The number of characters to append.
-: 857: * @return Reference to this string.
-: 858: */
-: 859: basic_string&
-: 860: append(const _CharT* __s, size_type __n);
-: 861:
-: 862: /**
-: 863: * @brief Append a C string.
-: 864: * @param s The C string to append.
-: 865: * @return Reference to this string.
-: 866: */
-: 867: basic_string&
#####: 868: append(const _CharT* __s)
-: 869: {
-: 870: __glibcxx_requires_string(__s);
#####: 871: return this->append(__s, traits_type::length(__s));
-: 872: }
-: 873:
-: 874: /**
-: 875: * @brief Append multiple characters.
-: 876: * @param n The number of characters to append.
-: 877: * @param c The character to use.
-: 878: * @return Reference to this string.
-: 879: *
-: 880: * Appends n copies of c to this string.
-: 881: */
-: 882: basic_string&
-: 883: append(size_type __n, _CharT __c);
-: 884:
-: 885:#ifdef __GXX_EXPERIMENTAL_CXX0X__
-: 886: /**
-: 887: * @brief Append an initializer_list of characters.
-: 888: * @param l The initializer_list of characters to append.
-: 889: * @return Reference to this string.
-: 890: */
-: 891: basic_string&
-: 892: append(initializer_list<_CharT> __l)
-: 893: { return this->append(__l.begin(), __l.end()); }
-: 894:#endif // __GXX_EXPERIMENTAL_CXX0X__
-: 895:
-: 896: /**
-: 897: * @brief Append a range of characters.
-: 898: * @param first Iterator referencing the first character to append.
-: 899: * @param last Iterator marking the end of the range.
-: 900: * @return Reference to this string.
-: 901: *
-: 902: * Appends characters in the range [first,last) to this string.
-: 903: */
-: 904: template<class _InputIterator>
-: 905: basic_string&
-: 906: append(_InputIterator __first, _InputIterator __last)
-: 907: { return this->replace(_M_iend(), _M_iend(), __first, __last); }
-: 908:
-: 909: /**
-: 910: * @brief Append a single character.
-: 911: * @param c Character to append.
-: 912: */
-: 913: void
-: 914: push_back(_CharT __c)
-: 915: {
-: 916: const size_type __len = 1 + this->size();
-: 917: if (__len > this->capacity() || _M_rep()->_M_is_shared())
-: 918: this->reserve(__len);
-: 919: traits_type::assign(_M_data()[this->size()], __c);
-: 920: _M_rep()->_M_set_length_and_sharable(__len);
-: 921: }
-: 922:
-: 923: /**
-: 924: * @brief Set value to contents of another string.
-: 925: * @param str Source string to use.
-: 926: * @return Reference to this string.
-: 927: */
-: 928: basic_string&
-: 929: assign(const basic_string& __str);
-: 930:
-: 931: /**
-: 932: * @brief Set value to a substring of a string.
-: 933: * @param str The string to use.
-: 934: * @param pos Index of the first character of str.
-: 935: * @param n Number of characters to use.
-: 936: * @return Reference to this string.
-: 937: * @throw std::out_of_range if @a pos is not a valid index.
-: 938: *
-: 939: * This function sets this string to the substring of @a str consisting
-: 940: * of @a n characters at @a pos. If @a n is is larger than the number
-: 941: * of available characters in @a str, the remainder of @a str is used.
-: 942: */
-: 943: basic_string&
-: 944: assign(const basic_string& __str, size_type __pos, size_type __n)
-: 945: { return this->assign(__str._M_data()
-: 946: + __str._M_check(__pos, "basic_string::assign"),
-: 947: __str._M_limit(__pos, __n)); }
-: 948:
-: 949: /**
-: 950: * @brief Set value to a C substring.
-: 951: * @param s The C string to use.
-: 952: * @param n Number of characters to use.
-: 953: * @return Reference to this string.
-: 954: *
-: 955: * This function sets the value of this string to the first @a n
-: 956: * characters of @a s. If @a n is is larger than the number of
-: 957: * available characters in @a s, the remainder of @a s is used.
-: 958: */
-: 959: basic_string&
-: 960: assign(const _CharT* __s, size_type __n);
-: 961:
-: 962: /**
-: 963: * @brief Set value to contents of a C string.
-: 964: * @param s The C string to use.
-: 965: * @return Reference to this string.
-: 966: *
-: 967: * This function sets the value of this string to the value of @a s.
-: 968: * The data is copied, so there is no dependence on @a s once the
-: 969: * function returns.
-: 970: */
-: 971: basic_string&
#####: 972: assign(const _CharT* __s)
-: 973: {
-: 974: __glibcxx_requires_string(__s);
#####: 975: return this->assign(__s, traits_type::length(__s));
-: 976: }
-: 977:
-: 978: /**
-: 979: * @brief Set value to multiple characters.
-: 980: * @param n Length of the resulting string.
-: 981: * @param c The character to use.
-: 982: * @return Reference to this string.
-: 983: *
-: 984: * This function sets the value of this string to @a n copies of
-: 985: * character @a c.
-: 986: */
-: 987: basic_string&
-: 988: assign(size_type __n, _CharT __c)
-: 989: { return _M_replace_aux(size_type(0), this->size(), __n, __c); }
-: 990:
-: 991: /**
-: 992: * @brief Set value to a range of characters.
-: 993: * @param first Iterator referencing the first character to append.
-: 994: * @param last Iterator marking the end of the range.
-: 995: * @return Reference to this string.
-: 996: *
-: 997: * Sets value of string to characters in the range [first,last).
-: 998: */
-: 999: template<class _InputIterator>
-: 1000: basic_string&
-: 1001: assign(_InputIterator __first, _InputIterator __last)
-: 1002: { return this->replace(_M_ibegin(), _M_iend(), __first, __last); }
-: 1003:
-: 1004:#ifdef __GXX_EXPERIMENTAL_CXX0X__
-: 1005: /**
-: 1006: * @brief Set value to an initializer_list of characters.
-: 1007: * @param l The initializer_list of characters to assign.
-: 1008: * @return Reference to this string.
-: 1009: */
-: 1010: basic_string&
-: 1011: assign(initializer_list<_CharT> __l)
-: 1012: { return this->assign(__l.begin(), __l.end()); }
-: 1013:#endif // __GXX_EXPERIMENTAL_CXX0X__
-: 1014:
-: 1015: /**
-: 1016: * @brief Insert multiple characters.
-: 1017: * @param p Iterator referencing location in string to insert at.
-: 1018: * @param n Number of characters to insert
-: 1019: * @param c The character to insert.
-: 1020: * @throw std::length_error If new length exceeds @c max_size().
-: 1021: *
-: 1022: * Inserts @a n copies of character @a c starting at the position
-: 1023: * referenced by iterator @a p. If adding characters causes the length
-: 1024: * to exceed max_size(), length_error is thrown. The value of the
-: 1025: * string doesn't change if an error is thrown.
-: 1026: */
-: 1027: void
-: 1028: insert(iterator __p, size_type __n, _CharT __c)
-: 1029: { this->replace(__p, __p, __n, __c); }
-: 1030:
-: 1031: /**
-: 1032: * @brief Insert a range of characters.
-: 1033: * @param p Iterator referencing location in string to insert at.
-: 1034: * @param beg Start of range.
-: 1035: * @param end End of range.
-: 1036: * @throw std::length_error If new length exceeds @c max_size().
-: 1037: *
-: 1038: * Inserts characters in range [beg,end). If adding characters causes
-: 1039: * the length to exceed max_size(), length_error is thrown. The value
-: 1040: * of the string doesn't change if an error is thrown.
-: 1041: */
-: 1042: template<class _InputIterator>
-: 1043: void
-: 1044: insert(iterator __p, _InputIterator __beg, _InputIterator __end)
-: 1045: { this->replace(__p, __p, __beg, __end); }
-: 1046:
-: 1047:#ifdef __GXX_EXPERIMENTAL_CXX0X__
-: 1048: /**
-: 1049: * @brief Insert an initializer_list of characters.
-: 1050: * @param p Iterator referencing location in string to insert at.
-: 1051: * @param l The initializer_list of characters to insert.
-: 1052: * @throw std::length_error If new length exceeds @c max_size().
-: 1053: */
-: 1054: void
-: 1055: insert(iterator __p, initializer_list<_CharT> __l)
-: 1056: { this->insert(__p, __l.begin(), __l.end()); }
-: 1057:#endif // __GXX_EXPERIMENTAL_CXX0X__
-: 1058:
-: 1059: /**
-: 1060: * @brief Insert value of a string.
-: 1061: * @param pos1 Iterator referencing location in string to insert at.
-: 1062: * @param str The string to insert.
-: 1063: * @return Reference to this string.
-: 1064: * @throw std::length_error If new length exceeds @c max_size().
-: 1065: *
-: 1066: * Inserts value of @a str starting at @a pos1. If adding characters
-: 1067: * causes the length to exceed max_size(), length_error is thrown. The
-: 1068: * value of the string doesn't change if an error is thrown.
-: 1069: */
-: 1070: basic_string&
-: 1071: insert(size_type __pos1, const basic_string& __str)
-: 1072: { return this->insert(__pos1, __str, size_type(0), __str.size()); }
-: 1073:
-: 1074: /**
-: 1075: * @brief Insert a substring.
-: 1076: * @param pos1 Iterator referencing location in string to insert at.
-: 1077: * @param str The string to insert.
-: 1078: * @param pos2 Start of characters in str to insert.
-: 1079: * @param n Number of characters to insert.
-: 1080: * @return Reference to this string.
-: 1081: * @throw std::length_error If new length exceeds @c max_size().
-: 1082: * @throw std::out_of_range If @a pos1 > size() or
-: 1083: * @a pos2 > @a str.size().
-: 1084: *
-: 1085: * Starting at @a pos1, insert @a n character of @a str beginning with
-: 1086: * @a pos2. If adding characters causes the length to exceed
-: 1087: * max_size(), length_error is thrown. If @a pos1 is beyond the end of
-: 1088: * this string or @a pos2 is beyond the end of @a str, out_of_range is
-: 1089: * thrown. The value of the string doesn't change if an error is
-: 1090: * thrown.
-: 1091: */
-: 1092: basic_string&
-: 1093: insert(size_type __pos1, const basic_string& __str,
-: 1094: size_type __pos2, size_type __n)
-: 1095: { return this->insert(__pos1, __str._M_data()
-: 1096: + __str._M_check(__pos2, "basic_string::insert"),
-: 1097: __str._M_limit(__pos2, __n)); }
-: 1098:
-: 1099: /**
-: 1100: * @brief Insert a C substring.
-: 1101: * @param pos Iterator referencing location in string to insert at.
-: 1102: * @param s The C string to insert.
-: 1103: * @param n The number of characters to insert.
-: 1104: * @return Reference to this string.
-: 1105: * @throw std::length_error If new length exceeds @c max_size().
-: 1106: * @throw std::out_of_range If @a pos is beyond the end of this
-: 1107: * string.
-: 1108: *
-: 1109: * Inserts the first @a n characters of @a s starting at @a pos. If
-: 1110: * adding characters causes the length to exceed max_size(),
-: 1111: * length_error is thrown. If @a pos is beyond end(), out_of_range is
-: 1112: * thrown. The value of the string doesn't change if an error is
-: 1113: * thrown.
-: 1114: */
-: 1115: basic_string&
-: 1116: insert(size_type __pos, const _CharT* __s, size_type __n);
-: 1117:
-: 1118: /**
-: 1119: * @brief Insert a C string.
-: 1120: * @param pos Iterator referencing location in string to insert at.
-: 1121: * @param s The C string to insert.
-: 1122: * @return Reference to this string.
-: 1123: * @throw std::length_error If new length exceeds @c max_size().
-: 1124: * @throw std::out_of_range If @a pos is beyond the end of this
-: 1125: * string.
-: 1126: *
-: 1127: * Inserts the first @a n characters of @a s starting at @a pos. If
-: 1128: * adding characters causes the length to exceed max_size(),
-: 1129: * length_error is thrown. If @a pos is beyond end(), out_of_range is
-: 1130: * thrown. The value of the string doesn't change if an error is
-: 1131: * thrown.
-: 1132: */
-: 1133: basic_string&
-: 1134: insert(size_type __pos, const _CharT* __s)
-: 1135: {
-: 1136: __glibcxx_requires_string(__s);
-: 1137: return this->insert(__pos, __s, traits_type::length(__s));
-: 1138: }
-: 1139:
-: 1140: /**
-: 1141: * @brief Insert multiple characters.
-: 1142: * @param pos Index in string to insert at.
-: 1143: * @param n Number of characters to insert
-: 1144: * @param c The character to insert.
-: 1145: * @return Reference to this string.
-: 1146: * @throw std::length_error If new length exceeds @c max_size().
-: 1147: * @throw std::out_of_range If @a pos is beyond the end of this
-: 1148: * string.
-: 1149: *
-: 1150: * Inserts @a n copies of character @a c starting at index @a pos. If
-: 1151: * adding characters causes the length to exceed max_size(),
-: 1152: * length_error is thrown. If @a pos > length(), out_of_range is
-: 1153: * thrown. The value of the string doesn't change if an error is
-: 1154: * thrown.
-: 1155: */
-: 1156: basic_string&
-: 1157: insert(size_type __pos, size_type __n, _CharT __c)
-: 1158: { return _M_replace_aux(_M_check(__pos, "basic_string::insert"),
-: 1159: size_type(0), __n, __c); }
-: 1160:
-: 1161: /**
-: 1162: * @brief Insert one character.
-: 1163: * @param p Iterator referencing position in string to insert at.
-: 1164: * @param c The character to insert.
-: 1165: * @return Iterator referencing newly inserted char.
-: 1166: * @throw std::length_error If new length exceeds @c max_size().
-: 1167: *
-: 1168: * Inserts character @a c at position referenced by @a p. If adding
-: 1169: * character causes the length to exceed max_size(), length_error is
-: 1170: * thrown. If @a p is beyond end of string, out_of_range is thrown.
-: 1171: * The value of the string doesn't change if an error is thrown.
-: 1172: */
-: 1173: iterator
-: 1174: insert(iterator __p, _CharT __c)
-: 1175: {
-: 1176: _GLIBCXX_DEBUG_PEDASSERT(__p >= _M_ibegin() && __p <= _M_iend());
-: 1177: const size_type __pos = __p - _M_ibegin();
-: 1178: _M_replace_aux(__pos, size_type(0), size_type(1), __c);
-: 1179: _M_rep()->_M_set_leaked();
-: 1180: return iterator(_M_data() + __pos);
-: 1181: }
-: 1182:
-: 1183: /**
-: 1184: * @brief Remove characters.
-: 1185: * @param pos Index of first character to remove (default 0).
-: 1186: * @param n Number of characters to remove (default remainder).
-: 1187: * @return Reference to this string.
-: 1188: * @throw std::out_of_range If @a pos is beyond the end of this
-: 1189: * string.
-: 1190: *
-: 1191: * Removes @a n characters from this string starting at @a pos. The
-: 1192: * length of the string is reduced by @a n. If there are < @a n
-: 1193: * characters to remove, the remainder of the string is truncated. If
-: 1194: * @a p is beyond end of string, out_of_range is thrown. The value of
-: 1195: * the string doesn't change if an error is thrown.
-: 1196: */
-: 1197: basic_string&
#####: 1198: erase(size_type __pos = 0, size_type __n = npos)
-: 1199: {
#####: 1200: _M_mutate(_M_check(__pos, "basic_string::erase"),
-: 1201: _M_limit(__pos, __n), size_type(0));
#####: 1202: return *this;
-: 1203: }
-: 1204:
-: 1205: /**
-: 1206: * @brief Remove one character.
-: 1207: * @param position Iterator referencing the character to remove.
-: 1208: * @return iterator referencing same location after removal.
-: 1209: *
-: 1210: * Removes the character at @a position from this string. The value
-: 1211: * of the string doesn't change if an error is thrown.
-: 1212: */
-: 1213: iterator
-: 1214: erase(iterator __position)
-: 1215: {
-: 1216: _GLIBCXX_DEBUG_PEDASSERT(__position >= _M_ibegin()
-: 1217: && __position < _M_iend());
-: 1218: const size_type __pos = __position - _M_ibegin();
-: 1219: _M_mutate(__pos, size_type(1), size_type(0));
-: 1220: _M_rep()->_M_set_leaked();
-: 1221: return iterator(_M_data() + __pos);
-: 1222: }
-: 1223:
-: 1224: /**
-: 1225: * @brief Remove a range of characters.
-: 1226: * @param first Iterator referencing the first character to remove.
-: 1227: * @param last Iterator referencing the end of the range.
-: 1228: * @return Iterator referencing location of first after removal.
-: 1229: *
-: 1230: * Removes the characters in the range [first,last) from this string.
-: 1231: * The value of the string doesn't change if an error is thrown.
-: 1232: */
-: 1233: iterator
-: 1234: erase(iterator __first, iterator __last);
-: 1235:
-: 1236: /**
-: 1237: * @brief Replace characters with value from another string.
-: 1238: * @param pos Index of first character to replace.
-: 1239: * @param n Number of characters to be replaced.
-: 1240: * @param str String to insert.
-: 1241: * @return Reference to this string.
-: 1242: * @throw std::out_of_range If @a pos is beyond the end of this
-: 1243: * string.
-: 1244: * @throw std::length_error If new length exceeds @c max_size().
-: 1245: *
-: 1246: * Removes the characters in the range [pos,pos+n) from this string.
-: 1247: * In place, the value of @a str is inserted. If @a pos is beyond end
-: 1248: * of string, out_of_range is thrown. If the length of the result
-: 1249: * exceeds max_size(), length_error is thrown. The value of the string
-: 1250: * doesn't change if an error is thrown.
-: 1251: */
-: 1252: basic_string&
-: 1253: replace(size_type __pos, size_type __n, const basic_string& __str)
-: 1254: { return this->replace(__pos, __n, __str._M_data(), __str.size()); }
-: 1255:
-: 1256: /**
-: 1257: * @brief Replace characters with value from another string.
-: 1258: * @param pos1 Index of first character to replace.
-: 1259: * @param n1 Number of characters to be replaced.
-: 1260: * @param str String to insert.
-: 1261: * @param pos2 Index of first character of str to use.
-: 1262: * @param n2 Number of characters from str to use.
-: 1263: * @return Reference to this string.
-: 1264: * @throw std::out_of_range If @a pos1 > size() or @a pos2 >
-: 1265: * str.size().
-: 1266: * @throw std::length_error If new length exceeds @c max_size().
-: 1267: *
-: 1268: * Removes the characters in the range [pos1,pos1 + n) from this
-: 1269: * string. In place, the value of @a str is inserted. If @a pos is
-: 1270: * beyond end of string, out_of_range is thrown. If the length of the
-: 1271: * result exceeds max_size(), length_error is thrown. The value of the
-: 1272: * string doesn't change if an error is thrown.
-: 1273: */
-: 1274: basic_string&
-: 1275: replace(size_type __pos1, size_type __n1, const basic_string& __str,
-: 1276: size_type __pos2, size_type __n2)
-: 1277: { return this->replace(__pos1, __n1, __str._M_data()
-: 1278: + __str._M_check(__pos2, "basic_string::replace"),
-: 1279: __str._M_limit(__pos2, __n2)); }
-: 1280:
-: 1281: /**
-: 1282: * @brief Replace characters with value of a C substring.
-: 1283: * @param pos Index of first character to replace.
-: 1284: * @param n1 Number of characters to be replaced.
-: 1285: * @param s C string to insert.
-: 1286: * @param n2 Number of characters from @a s to use.
-: 1287: * @return Reference to this string.
-: 1288: * @throw std::out_of_range If @a pos1 > size().
-: 1289: * @throw std::length_error If new length exceeds @c max_size().
-: 1290: *
-: 1291: * Removes the characters in the range [pos,pos + n1) from this string.
-: 1292: * In place, the first @a n2 characters of @a s are inserted, or all
-: 1293: * of @a s if @a n2 is too large. If @a pos is beyond end of string,
-: 1294: * out_of_range is thrown. If the length of result exceeds max_size(),
-: 1295: * length_error is thrown. The value of the string doesn't change if
-: 1296: * an error is thrown.
-: 1297: */
-: 1298: basic_string&
-: 1299: replace(size_type __pos, size_type __n1, const _CharT* __s,
-: 1300: size_type __n2);
-: 1301:
-: 1302: /**
-: 1303: * @brief Replace characters with value of a C string.
-: 1304: * @param pos Index of first character to replace.
-: 1305: * @param n1 Number of characters to be replaced.
-: 1306: * @param s C string to insert.
-: 1307: * @return Reference to this string.
-: 1308: * @throw std::out_of_range If @a pos > size().
-: 1309: * @throw std::length_error If new length exceeds @c max_size().
-: 1310: *
-: 1311: * Removes the characters in the range [pos,pos + n1) from this string.
-: 1312: * In place, the first @a n characters of @a s are inserted. If @a
-: 1313: * pos is beyond end of string, out_of_range is thrown. If the length
-: 1314: * of result exceeds max_size(), length_error is thrown. The value of
-: 1315: * the string doesn't change if an error is thrown.
-: 1316: */
-: 1317: basic_string&
-: 1318: replace(size_type __pos, size_type __n1, const _CharT* __s)
-: 1319: {
-: 1320: __glibcxx_requires_string(__s);
-: 1321: return this->replace(__pos, __n1, __s, traits_type::length(__s));
-: 1322: }
-: 1323:
-: 1324: /**
-: 1325: * @brief Replace characters with multiple characters.
-: 1326: * @param pos Index of first character to replace.
-: 1327: * @param n1 Number of characters to be replaced.
-: 1328: * @param n2 Number of characters to insert.
-: 1329: * @param c Character to insert.
-: 1330: * @return Reference to this string.
-: 1331: * @throw std::out_of_range If @a pos > size().
-: 1332: * @throw std::length_error If new length exceeds @c max_size().
-: 1333: *
-: 1334: * Removes the characters in the range [pos,pos + n1) from this string.
-: 1335: * In place, @a n2 copies of @a c are inserted. If @a pos is beyond
-: 1336: * end of string, out_of_range is thrown. If the length of result
-: 1337: * exceeds max_size(), length_error is thrown. The value of the string
-: 1338: * doesn't change if an error is thrown.
-: 1339: */
-: 1340: basic_string&
-: 1341: replace(size_type __pos, size_type __n1, size_type __n2, _CharT __c)
-: 1342: { return _M_replace_aux(_M_check(__pos, "basic_string::replace"),
-: 1343: _M_limit(__pos, __n1), __n2, __c); }
-: 1344:
-: 1345: /**
-: 1346: * @brief Replace range of characters with string.
-: 1347: * @param i1 Iterator referencing start of range to replace.
-: 1348: * @param i2 Iterator referencing end of range to replace.
-: 1349: * @param str String value to insert.
-: 1350: * @return Reference to this string.
-: 1351: * @throw std::length_error If new length exceeds @c max_size().
-: 1352: *
-: 1353: * Removes the characters in the range [i1,i2). In place, the value of
-: 1354: * @a str is inserted. If the length of result exceeds max_size(),
-: 1355: * length_error is thrown. The value of the string doesn't change if
-: 1356: * an error is thrown.
-: 1357: */
-: 1358: basic_string&
-: 1359: replace(iterator __i1, iterator __i2, const basic_string& __str)
-: 1360: { return this->replace(__i1, __i2, __str._M_data(), __str.size()); }
-: 1361:
-: 1362: /**
-: 1363: * @brief Replace range of characters with C substring.
-: 1364: * @param i1 Iterator referencing start of range to replace.
-: 1365: * @param i2 Iterator referencing end of range to replace.
-: 1366: * @param s C string value to insert.
-: 1367: * @param n Number of characters from s to insert.
-: 1368: * @return Reference to this string.
-: 1369: * @throw std::length_error If new length exceeds @c max_size().
-: 1370: *
-: 1371: * Removes the characters in the range [i1,i2). In place, the first @a
-: 1372: * n characters of @a s are inserted. If the length of result exceeds
-: 1373: * max_size(), length_error is thrown. The value of the string doesn't
-: 1374: * change if an error is thrown.
-: 1375: */
-: 1376: basic_string&
-: 1377: replace(iterator __i1, iterator __i2, const _CharT* __s, size_type __n)
-: 1378: {
-: 1379: _GLIBCXX_DEBUG_PEDASSERT(_M_ibegin() <= __i1 && __i1 <= __i2
-: 1380: && __i2 <= _M_iend());
-: 1381: return this->replace(__i1 - _M_ibegin(), __i2 - __i1, __s, __n);
-: 1382: }
-: 1383:
-: 1384: /**
-: 1385: * @brief Replace range of characters with C string.
-: 1386: * @param i1 Iterator referencing start of range to replace.
-: 1387: * @param i2 Iterator referencing end of range to replace.
-: 1388: * @param s C string value to insert.
-: 1389: * @return Reference to this string.
-: 1390: * @throw std::length_error If new length exceeds @c max_size().
-: 1391: *
-: 1392: * Removes the characters in the range [i1,i2). In place, the
-: 1393: * characters of @a s are inserted. If the length of result exceeds
-: 1394: * max_size(), length_error is thrown. The value of the string doesn't
-: 1395: * change if an error is thrown.
-: 1396: */
-: 1397: basic_string&
-: 1398: replace(iterator __i1, iterator __i2, const _CharT* __s)
-: 1399: {
-: 1400: __glibcxx_requires_string(__s);
-: 1401: return this->replace(__i1, __i2, __s, traits_type::length(__s));
-: 1402: }
-: 1403:
-: 1404: /**
-: 1405: * @brief Replace range of characters with multiple characters
-: 1406: * @param i1 Iterator referencing start of range to replace.
-: 1407: * @param i2 Iterator referencing end of range to replace.
-: 1408: * @param n Number of characters to insert.
-: 1409: * @param c Character to insert.
-: 1410: * @return Reference to this string.
-: 1411: * @throw std::length_error If new length exceeds @c max_size().
-: 1412: *
-: 1413: * Removes the characters in the range [i1,i2). In place, @a n copies
-: 1414: * of @a c are inserted. If the length of result exceeds max_size(),
-: 1415: * length_error is thrown. The value of the string doesn't change if
-: 1416: * an error is thrown.
-: 1417: */
-: 1418: basic_string&
-: 1419: replace(iterator __i1, iterator __i2, size_type __n, _CharT __c)
-: 1420: {
-: 1421: _GLIBCXX_DEBUG_PEDASSERT(_M_ibegin() <= __i1 && __i1 <= __i2
-: 1422: && __i2 <= _M_iend());
-: 1423: return _M_replace_aux(__i1 - _M_ibegin(), __i2 - __i1, __n, __c);
-: 1424: }
-: 1425:
-: 1426: /**
-: 1427: * @brief Replace range of characters with range.
-: 1428: * @param i1 Iterator referencing start of range to replace.
-: 1429: * @param i2 Iterator referencing end of range to replace.
-: 1430: * @param k1 Iterator referencing start of range to insert.
-: 1431: * @param k2 Iterator referencing end of range to insert.
-: 1432: * @return Reference to this string.
-: 1433: * @throw std::length_error If new length exceeds @c max_size().
-: 1434: *
-: 1435: * Removes the characters in the range [i1,i2). In place, characters
-: 1436: * in the range [k1,k2) are inserted. If the length of result exceeds
-: 1437: * max_size(), length_error is thrown. The value of the string doesn't
-: 1438: * change if an error is thrown.
-: 1439: */
-: 1440: template<class _InputIterator>
-: 1441: basic_string&
-: 1442: replace(iterator __i1, iterator __i2,
-: 1443: _InputIterator __k1, _InputIterator __k2)
-: 1444: {
-: 1445: _GLIBCXX_DEBUG_PEDASSERT(_M_ibegin() <= __i1 && __i1 <= __i2
-: 1446: && __i2 <= _M_iend());
-: 1447: __glibcxx_requires_valid_range(__k1, __k2);
-: 1448: typedef typename std::__is_integer<_InputIterator>::__type _Integral;
-: 1449: return _M_replace_dispatch(__i1, __i2, __k1, __k2, _Integral());
-: 1450: }
-: 1451:
-: 1452: // Specializations for the common case of pointer and iterator:
-: 1453: // useful to avoid the overhead of temporary buffering in _M_replace.
-: 1454: basic_string&
-: 1455: replace(iterator __i1, iterator __i2, _CharT* __k1, _CharT* __k2)
-: 1456: {
-: 1457: _GLIBCXX_DEBUG_PEDASSERT(_M_ibegin() <= __i1 && __i1 <= __i2
-: 1458: && __i2 <= _M_iend());
-: 1459: __glibcxx_requires_valid_range(__k1, __k2);
-: 1460: return this->replace(__i1 - _M_ibegin(), __i2 - __i1,
-: 1461: __k1, __k2 - __k1);
-: 1462: }
-: 1463:
-: 1464: basic_string&
-: 1465: replace(iterator __i1, iterator __i2,
-: 1466: const _CharT* __k1, const _CharT* __k2)
-: 1467: {
-: 1468: _GLIBCXX_DEBUG_PEDASSERT(_M_ibegin() <= __i1 && __i1 <= __i2
-: 1469: && __i2 <= _M_iend());
-: 1470: __glibcxx_requires_valid_range(__k1, __k2);
-: 1471: return this->replace(__i1 - _M_ibegin(), __i2 - __i1,
-: 1472: __k1, __k2 - __k1);
-: 1473: }
-: 1474:
-: 1475: basic_string&
-: 1476: replace(iterator __i1, iterator __i2, iterator __k1, iterator __k2)
-: 1477: {
-: 1478: _GLIBCXX_DEBUG_PEDASSERT(_M_ibegin() <= __i1 && __i1 <= __i2
-: 1479: && __i2 <= _M_iend());
-: 1480: __glibcxx_requires_valid_range(__k1, __k2);
-: 1481: return this->replace(__i1 - _M_ibegin(), __i2 - __i1,
-: 1482: __k1.base(), __k2 - __k1);
-: 1483: }
-: 1484:
-: 1485: basic_string&
-: 1486: replace(iterator __i1, iterator __i2,
-: 1487: const_iterator __k1, const_iterator __k2)
-: 1488: {
-: 1489: _GLIBCXX_DEBUG_PEDASSERT(_M_ibegin() <= __i1 && __i1 <= __i2
-: 1490: && __i2 <= _M_iend());
-: 1491: __glibcxx_requires_valid_range(__k1, __k2);
-: 1492: return this->replace(__i1 - _M_ibegin(), __i2 - __i1,
-: 1493: __k1.base(), __k2 - __k1);
-: 1494: }
-: 1495:
-: 1496:#ifdef __GXX_EXPERIMENTAL_CXX0X__
-: 1497: /**
-: 1498: * @brief Replace range of characters with initializer_list.
-: 1499: * @param i1 Iterator referencing start of range to replace.
-: 1500: * @param i2 Iterator referencing end of range to replace.
-: 1501: * @param l The initializer_list of characters to insert.
-: 1502: * @return Reference to this string.
-: 1503: * @throw std::length_error If new length exceeds @c max_size().
-: 1504: *
-: 1505: * Removes the characters in the range [i1,i2). In place, characters
-: 1506: * in the range [k1,k2) are inserted. If the length of result exceeds
-: 1507: * max_size(), length_error is thrown. The value of the string doesn't
-: 1508: * change if an error is thrown.
-: 1509: */
-: 1510: basic_string& replace(iterator __i1, iterator __i2,
-: 1511: initializer_list<_CharT> __l)
-: 1512: { return this->replace(__i1, __i2, __l.begin(), __l.end()); }
-: 1513:#endif // __GXX_EXPERIMENTAL_CXX0X__
-: 1514:
-: 1515: private:
-: 1516: template<class _Integer>
-: 1517: basic_string&
-: 1518: _M_replace_dispatch(iterator __i1, iterator __i2, _Integer __n,
-: 1519: _Integer __val, __true_type)
-: 1520: { return _M_replace_aux(__i1 - _M_ibegin(), __i2 - __i1, __n, __val); }
-: 1521:
-: 1522: template<class _InputIterator>
-: 1523: basic_string&
-: 1524: _M_replace_dispatch(iterator __i1, iterator __i2, _InputIterator __k1,
-: 1525: _InputIterator __k2, __false_type);
-: 1526:
-: 1527: basic_string&
-: 1528: _M_replace_aux(size_type __pos1, size_type __n1, size_type __n2,
-: 1529: _CharT __c);
-: 1530:
-: 1531: basic_string&
-: 1532: _M_replace_safe(size_type __pos1, size_type __n1, const _CharT* __s,
-: 1533: size_type __n2);
-: 1534:
-: 1535: // _S_construct_aux is used to implement the 21.3.1 para 15 which
-: 1536: // requires special behaviour if _InIter is an integral type
-: 1537: template<class _InIterator>
-: 1538: static _CharT*
-: 1539: _S_construct_aux(_InIterator __beg, _InIterator __end,
-: 1540: const _Alloc& __a, __false_type)
-: 1541: {
-: 1542: typedef typename iterator_traits<_InIterator>::iterator_category _Tag;
-: 1543: return _S_construct(__beg, __end, __a, _Tag());
-: 1544: }
-: 1545:
-: 1546: // _GLIBCXX_RESOLVE_LIB_DEFECTS
-: 1547: // 438. Ambiguity in the "do the right thing" clause
-: 1548: template<class _Integer>
-: 1549: static _CharT*
-: 1550: _S_construct_aux(_Integer __beg, _Integer __end,
-: 1551: const _Alloc& __a, __true_type)
-: 1552: { return _S_construct(static_cast<size_type>(__beg), __end, __a); }
-: 1553:
-: 1554: template<class _InIterator>
-: 1555: static _CharT*
-: 1556: _S_construct(_InIterator __beg, _InIterator __end, const _Alloc& __a)
-: 1557: {
-: 1558: typedef typename std::__is_integer<_InIterator>::__type _Integral;
-: 1559: return _S_construct_aux(__beg, __end, __a, _Integral());
-: 1560: }
-: 1561:
-: 1562: // For Input Iterators, used in istreambuf_iterators, etc.
-: 1563: template<class _InIterator>
-: 1564: static _CharT*
-: 1565: _S_construct(_InIterator __beg, _InIterator __end, const _Alloc& __a,
-: 1566: input_iterator_tag);
-: 1567:
-: 1568: // For forward_iterators up to random_access_iterators, used for
-: 1569: // string::iterator, _CharT*, etc.
-: 1570: template<class _FwdIterator>
-: 1571: static _CharT*
-: 1572: _S_construct(_FwdIterator __beg, _FwdIterator __end, const _Alloc& __a,
-: 1573: forward_iterator_tag);
-: 1574:
-: 1575: static _CharT*
-: 1576: _S_construct(size_type __req, _CharT __c, const _Alloc& __a);
-: 1577:
-: 1578: public:
-: 1579:
-: 1580: /**
-: 1581: * @brief Copy substring into C string.
-: 1582: * @param s C string to copy value into.
-: 1583: * @param n Number of characters to copy.
-: 1584: * @param pos Index of first character to copy.
-: 1585: * @return Number of characters actually copied
-: 1586: * @throw std::out_of_range If pos > size().
-: 1587: *
-: 1588: * Copies up to @a n characters starting at @a pos into the C string @a
-: 1589: * s. If @a pos is greater than size(), out_of_range is thrown.
-: 1590: */
-: 1591: size_type
-: 1592: copy(_CharT* __s, size_type __n, size_type __pos = 0) const;
-: 1593:
-: 1594: /**
-: 1595: * @brief Swap contents with another string.
-: 1596: * @param s String to swap with.
-: 1597: *
-: 1598: * Exchanges the contents of this string with that of @a s in constant
-: 1599: * time.
-: 1600: */
-: 1601: void
-: 1602: swap(basic_string& __s);
-: 1603:
-: 1604: // String operations:
-: 1605: /**
-: 1606: * @brief Return const pointer to null-terminated contents.
-: 1607: *
-: 1608: * This is a handle to internal data. Do not modify or dire things may
-: 1609: * happen.
-: 1610: */
-: 1611: const _CharT*
#####: 1612: c_str() const
#####: 1613: { return _M_data(); }
-: 1614:
-: 1615: /**
-: 1616: * @brief Return const pointer to contents.
-: 1617: *
-: 1618: * This is a handle to internal data. Do not modify or dire things may
-: 1619: * happen.
-: 1620: */
-: 1621: const _CharT*
#####: 1622: data() const
#####: 1623: { return _M_data(); }
-: 1624:
-: 1625: /**
-: 1626: * @brief Return copy of allocator used to construct this string.
-: 1627: */
-: 1628: allocator_type
#####: 1629: get_allocator() const
#####: 1630: { return _M_dataplus; }
-: 1631:
-: 1632: /**
-: 1633: * @brief Find position of a C substring.
-: 1634: * @param s C string to locate.
-: 1635: * @param pos Index of character to search from.
-: 1636: * @param n Number of characters from @a s to search for.
-: 1637: * @return Index of start of first occurrence.
-: 1638: *
-: 1639: * Starting from @a pos, searches forward for the first @a n characters
-: 1640: * in @a s within this string. If found, returns the index where it
-: 1641: * begins. If not found, returns npos.
-: 1642: */
-: 1643: size_type
-: 1644: find(const _CharT* __s, size_type __pos, size_type __n) const;
-: 1645:
-: 1646: /**
-: 1647: * @brief Find position of a string.
-: 1648: * @param str String to locate.
-: 1649: * @param pos Index of character to search from (default 0).
-: 1650: * @return Index of start of first occurrence.
-: 1651: *
-: 1652: * Starting from @a pos, searches forward for value of @a str within
-: 1653: * this string. If found, returns the index where it begins. If not
-: 1654: * found, returns npos.
-: 1655: */
-: 1656: size_type
-: 1657: find(const basic_string& __str, size_type __pos = 0) const
-: 1658: { return this->find(__str.data(), __pos, __str.size()); }
-: 1659:
-: 1660: /**
-: 1661: * @brief Find position of a C string.
-: 1662: * @param s C string to locate.
-: 1663: * @param pos Index of character to search from (default 0).
-: 1664: * @return Index of start of first occurrence.
-: 1665: *
-: 1666: * Starting from @a pos, searches forward for the value of @a s within
-: 1667: * this string. If found, returns the index where it begins. If not
-: 1668: * found, returns npos.
-: 1669: */
-: 1670: size_type
#####: 1671: find(const _CharT* __s, size_type __pos = 0) const
-: 1672: {
-: 1673: __glibcxx_requires_string(__s);
#####: 1674: return this->find(__s, __pos, traits_type::length(__s));
-: 1675: }
-: 1676:
-: 1677: /**
-: 1678: * @brief Find position of a character.
-: 1679: * @param c Character to locate.
-: 1680: * @param pos Index of character to search from (default 0).
-: 1681: * @return Index of first occurrence.
-: 1682: *
-: 1683: * Starting from @a pos, searches forward for @a c within this string.
-: 1684: * If found, returns the index where it was found. If not found,
-: 1685: * returns npos.
-: 1686: */
-: 1687: size_type
-: 1688: find(_CharT __c, size_type __pos = 0) const;
-: 1689:
-: 1690: /**
-: 1691: * @brief Find last position of a string.
-: 1692: * @param str String to locate.
-: 1693: * @param pos Index of character to search back from (default end).
-: 1694: * @return Index of start of last occurrence.
-: 1695: *
-: 1696: * Starting from @a pos, searches backward for value of @a str within
-: 1697: * this string. If found, returns the index where it begins. If not
-: 1698: * found, returns npos.
-: 1699: */
-: 1700: size_type
-: 1701: rfind(const basic_string& __str, size_type __pos = npos) const
-: 1702: { return this->rfind(__str.data(), __pos, __str.size()); }
-: 1703:
-: 1704: /**
-: 1705: * @brief Find last position of a C substring.
-: 1706: * @param s C string to locate.
-: 1707: * @param pos Index of character to search back from.
-: 1708: * @param n Number of characters from s to search for.
-: 1709: * @return Index of start of last occurrence.
-: 1710: *
-: 1711: * Starting from @a pos, searches backward for the first @a n
-: 1712: * characters in @a s within this string. If found, returns the index
-: 1713: * where it begins. If not found, returns npos.
-: 1714: */
-: 1715: size_type
-: 1716: rfind(const _CharT* __s, size_type __pos, size_type __n) const;
-: 1717:
-: 1718: /**
-: 1719: * @brief Find last position of a C string.
-: 1720: * @param s C string to locate.
-: 1721: * @param pos Index of character to start search at (default end).
-: 1722: * @return Index of start of last occurrence.
-: 1723: *
-: 1724: * Starting from @a pos, searches backward for the value of @a s within
-: 1725: * this string. If found, returns the index where it begins. If not
-: 1726: * found, returns npos.
-: 1727: */
-: 1728: size_type
#####: 1729: rfind(const _CharT* __s, size_type __pos = npos) const
-: 1730: {
-: 1731: __glibcxx_requires_string(__s);
#####: 1732: return this->rfind(__s, __pos, traits_type::length(__s));
-: 1733: }
-: 1734:
-: 1735: /**
-: 1736: * @brief Find last position of a character.
-: 1737: * @param c Character to locate.
-: 1738: * @param pos Index of character to search back from (default end).
-: 1739: * @return Index of last occurrence.
-: 1740: *
-: 1741: * Starting from @a pos, searches backward for @a c within this string.
-: 1742: * If found, returns the index where it was found. If not found,
-: 1743: * returns npos.
-: 1744: */
-: 1745: size_type
-: 1746: rfind(_CharT __c, size_type __pos = npos) const;
-: 1747:
-: 1748: /**
-: 1749: * @brief Find position of a character of string.
-: 1750: * @param str String containing characters to locate.
-: 1751: * @param pos Index of character to search from (default 0).
-: 1752: * @return Index of first occurrence.
-: 1753: *
-: 1754: * Starting from @a pos, searches forward for one of the characters of
-: 1755: * @a str within this string. If found, returns the index where it was
-: 1756: * found. If not found, returns npos.
-: 1757: */
-: 1758: size_type
-: 1759: find_first_of(const basic_string& __str, size_type __pos = 0) const
-: 1760: { return this->find_first_of(__str.data(), __pos, __str.size()); }
-: 1761:
-: 1762: /**
-: 1763: * @brief Find position of a character of C substring.
-: 1764: * @param s String containing characters to locate.
-: 1765: * @param pos Index of character to search from.
-: 1766: * @param n Number of characters from s to search for.
-: 1767: * @return Index of first occurrence.
-: 1768: *
-: 1769: * Starting from @a pos, searches forward for one of the first @a n
-: 1770: * characters of @a s within this string. If found, returns the index
-: 1771: * where it was found. If not found, returns npos.
-: 1772: */
-: 1773: size_type
-: 1774: find_first_of(const _CharT* __s, size_type __pos, size_type __n) const;
-: 1775:
-: 1776: /**
-: 1777: * @brief Find position of a character of C string.
-: 1778: * @param s String containing characters to locate.
-: 1779: * @param pos Index of character to search from (default 0).
-: 1780: * @return Index of first occurrence.
-: 1781: *
-: 1782: * Starting from @a pos, searches forward for one of the characters of
-: 1783: * @a s within this string. If found, returns the index where it was
-: 1784: * found. If not found, returns npos.
-: 1785: */
-: 1786: size_type
-: 1787: find_first_of(const _CharT* __s, size_type __pos = 0) const
-: 1788: {
-: 1789: __glibcxx_requires_string(__s);
-: 1790: return this->find_first_of(__s, __pos, traits_type::length(__s));
-: 1791: }
-: 1792:
-: 1793: /**
-: 1794: * @brief Find position of a character.
-: 1795: * @param c Character to locate.
-: 1796: * @param pos Index of character to search from (default 0).
-: 1797: * @return Index of first occurrence.
-: 1798: *
-: 1799: * Starting from @a pos, searches forward for the character @a c within
-: 1800: * this string. If found, returns the index where it was found. If
-: 1801: * not found, returns npos.
-: 1802: *
-: 1803: * Note: equivalent to find(c, pos).
-: 1804: */
-: 1805: size_type
#####: 1806: find_first_of(_CharT __c, size_type __pos = 0) const
#####: 1807: { return this->find(__c, __pos); }
-: 1808:
-: 1809: /**
-: 1810: * @brief Find last position of a character of string.
-: 1811: * @param str String containing characters to locate.
-: 1812: * @param pos Index of character to search back from (default end).
-: 1813: * @return Index of last occurrence.
-: 1814: *
-: 1815: * Starting from @a pos, searches backward for one of the characters of
-: 1816: * @a str within this string. If found, returns the index where it was
-: 1817: * found. If not found, returns npos.
-: 1818: */
-: 1819: size_type
-: 1820: find_last_of(const basic_string& __str, size_type __pos = npos) const
-: 1821: { return this->find_last_of(__str.data(), __pos, __str.size()); }
-: 1822:
-: 1823: /**
-: 1824: * @brief Find last position of a character of C substring.
-: 1825: * @param s C string containing characters to locate.
-: 1826: * @param pos Index of character to search back from.
-: 1827: * @param n Number of characters from s to search for.
-: 1828: * @return Index of last occurrence.
-: 1829: *
-: 1830: * Starting from @a pos, searches backward for one of the first @a n
-: 1831: * characters of @a s within this string. If found, returns the index
-: 1832: * where it was found. If not found, returns npos.
-: 1833: */
-: 1834: size_type
-: 1835: find_last_of(const _CharT* __s, size_type __pos, size_type __n) const;
-: 1836:
-: 1837: /**
-: 1838: * @brief Find last position of a character of C string.
-: 1839: * @param s C string containing characters to locate.
-: 1840: * @param pos Index of character to search back from (default end).
-: 1841: * @return Index of last occurrence.
-: 1842: *
-: 1843: * Starting from @a pos, searches backward for one of the characters of
-: 1844: * @a s within this string. If found, returns the index where it was
-: 1845: * found. If not found, returns npos.
-: 1846: */
-: 1847: size_type
-: 1848: find_last_of(const _CharT* __s, size_type __pos = npos) const
-: 1849: {
-: 1850: __glibcxx_requires_string(__s);
-: 1851: return this->find_last_of(__s, __pos, traits_type::length(__s));
-: 1852: }
-: 1853:
-: 1854: /**
-: 1855: * @brief Find last position of a character.
-: 1856: * @param c Character to locate.
-: 1857: * @param pos Index of character to search back from (default end).
-: 1858: * @return Index of last occurrence.
-: 1859: *
-: 1860: * Starting from @a pos, searches backward for @a c within this string.
-: 1861: * If found, returns the index where it was found. If not found,
-: 1862: * returns npos.
-: 1863: *
-: 1864: * Note: equivalent to rfind(c, pos).
-: 1865: */
-: 1866: size_type
-: 1867: find_last_of(_CharT __c, size_type __pos = npos) const
-: 1868: { return this->rfind(__c, __pos); }
-: 1869:
-: 1870: /**
-: 1871: * @brief Find position of a character not in string.
-: 1872: * @param str String containing characters to avoid.
-: 1873: * @param pos Index of character to search from (default 0).
-: 1874: * @return Index of first occurrence.
-: 1875: *
-: 1876: * Starting from @a pos, searches forward for a character not contained
-: 1877: * in @a str within this string. If found, returns the index where it
-: 1878: * was found. If not found, returns npos.
-: 1879: */
-: 1880: size_type
-: 1881: find_first_not_of(const basic_string& __str, size_type __pos = 0) const
-: 1882: { return this->find_first_not_of(__str.data(), __pos, __str.size()); }
-: 1883:
-: 1884: /**
-: 1885: * @brief Find position of a character not in C substring.
-: 1886: * @param s C string containing characters to avoid.
-: 1887: * @param pos Index of character to search from.
-: 1888: * @param n Number of characters from s to consider.
-: 1889: * @return Index of first occurrence.
-: 1890: *
-: 1891: * Starting from @a pos, searches forward for a character not contained
-: 1892: * in the first @a n characters of @a s within this string. If found,
-: 1893: * returns the index where it was found. If not found, returns npos.
-: 1894: */
-: 1895: size_type
-: 1896: find_first_not_of(const _CharT* __s, size_type __pos,
-: 1897: size_type __n) const;
-: 1898:
-: 1899: /**
-: 1900: * @brief Find position of a character not in C string.
-: 1901: * @param s C string containing characters to avoid.
-: 1902: * @param pos Index of character to search from (default 0).
-: 1903: * @return Index of first occurrence.
-: 1904: *
-: 1905: * Starting from @a pos, searches forward for a character not contained
-: 1906: * in @a s within this string. If found, returns the index where it
-: 1907: * was found. If not found, returns npos.
-: 1908: */
-: 1909: size_type
-: 1910: find_first_not_of(const _CharT* __s, size_type __pos = 0) const
-: 1911: {
-: 1912: __glibcxx_requires_string(__s);
-: 1913: return this->find_first_not_of(__s, __pos, traits_type::length(__s));
-: 1914: }
-: 1915:
-: 1916: /**
-: 1917: * @brief Find position of a different character.
-: 1918: * @param c Character to avoid.
-: 1919: * @param pos Index of character to search from (default 0).
-: 1920: * @return Index of first occurrence.
-: 1921: *
-: 1922: * Starting from @a pos, searches forward for a character other than @a c
-: 1923: * within this string. If found, returns the index where it was found.
-: 1924: * If not found, returns npos.
-: 1925: */
-: 1926: size_type
-: 1927: find_first_not_of(_CharT __c, size_type __pos = 0) const;
-: 1928:
-: 1929: /**
-: 1930: * @brief Find last position of a character not in string.
-: 1931: * @param str String containing characters to avoid.
-: 1932: * @param pos Index of character to search back from (default end).
-: 1933: * @return Index of last occurrence.
-: 1934: *
-: 1935: * Starting from @a pos, searches backward for a character not
-: 1936: * contained in @a str within this string. If found, returns the index
-: 1937: * where it was found. If not found, returns npos.
-: 1938: */
-: 1939: size_type
-: 1940: find_last_not_of(const basic_string& __str, size_type __pos = npos) const
-: 1941: { return this->find_last_not_of(__str.data(), __pos, __str.size()); }
-: 1942:
-: 1943: /**
-: 1944: * @brief Find last position of a character not in C substring.
-: 1945: * @param s C string containing characters to avoid.
-: 1946: * @param pos Index of character to search back from.
-: 1947: * @param n Number of characters from s to consider.
-: 1948: * @return Index of last occurrence.
-: 1949: *
-: 1950: * Starting from @a pos, searches backward for a character not
-: 1951: * contained in the first @a n characters of @a s within this string.
-: 1952: * If found, returns the index where it was found. If not found,
-: 1953: * returns npos.
-: 1954: */
-: 1955: size_type
-: 1956: find_last_not_of(const _CharT* __s, size_type __pos,
-: 1957: size_type __n) const;
-: 1958: /**
-: 1959: * @brief Find last position of a character not in C string.
-: 1960: * @param s C string containing characters to avoid.
-: 1961: * @param pos Index of character to search back from (default end).
-: 1962: * @return Index of last occurrence.
-: 1963: *
-: 1964: * Starting from @a pos, searches backward for a character not
-: 1965: * contained in @a s within this string. If found, returns the index
-: 1966: * where it was found. If not found, returns npos.
-: 1967: */
-: 1968: size_type
-: 1969: find_last_not_of(const _CharT* __s, size_type __pos = npos) const
-: 1970: {
-: 1971: __glibcxx_requires_string(__s);
-: 1972: return this->find_last_not_of(__s, __pos, traits_type::length(__s));
-: 1973: }
-: 1974:
-: 1975: /**
-: 1976: * @brief Find last position of a different character.
-: 1977: * @param c Character to avoid.
-: 1978: * @param pos Index of character to search back from (default end).
-: 1979: * @return Index of last occurrence.
-: 1980: *
-: 1981: * Starting from @a pos, searches backward for a character other than
-: 1982: * @a c within this string. If found, returns the index where it was
-: 1983: * found. If not found, returns npos.
-: 1984: */
-: 1985: size_type
-: 1986: find_last_not_of(_CharT __c, size_type __pos = npos) const;
-: 1987:
-: 1988: /**
-: 1989: * @brief Get a substring.
-: 1990: * @param pos Index of first character (default 0).
-: 1991: * @param n Number of characters in substring (default remainder).
-: 1992: * @return The new string.
-: 1993: * @throw std::out_of_range If pos > size().
-: 1994: *
-: 1995: * Construct and return a new string using the @a n characters starting
-: 1996: * at @a pos. If the string is too short, use the remainder of the
-: 1997: * characters. If @a pos is beyond the end of the string, out_of_range
-: 1998: * is thrown.
-: 1999: */
-: 2000: basic_string
#####: 2001: substr(size_type __pos = 0, size_type __n = npos) const
-: 2002: { return basic_string(*this,
#####: 2003: _M_check(__pos, "basic_string::substr"), __n); }
-: 2004:
-: 2005: /**
-: 2006: * @brief Compare to a string.
-: 2007: * @param str String to compare against.
-: 2008: * @return Integer < 0, 0, or > 0.
-: 2009: *
-: 2010: * Returns an integer < 0 if this string is ordered before @a str, 0 if
-: 2011: * their values are equivalent, or > 0 if this string is ordered after
-: 2012: * @a str. Determines the effective length rlen of the strings to
-: 2013: * compare as the smallest of size() and str.size(). The function
-: 2014: * then compares the two strings by calling traits::compare(data(),
-: 2015: * str.data(),rlen). If the result of the comparison is nonzero returns
-: 2016: * it, otherwise the shorter one is ordered first.
-: 2017: */
-: 2018: int
-: 2019: compare(const basic_string& __str) const
-: 2020: {
-: 2021: const size_type __size = this->size();
-: 2022: const size_type __osize = __str.size();
-: 2023: const size_type __len = std::min(__size, __osize);
-: 2024:
-: 2025: int __r = traits_type::compare(_M_data(), __str.data(), __len);
-: 2026: if (!__r)
-: 2027: __r = _S_compare(__size, __osize);
-: 2028: return __r;
-: 2029: }
-: 2030:
-: 2031: /**
-: 2032: * @brief Compare substring to a string.
-: 2033: * @param pos Index of first character of substring.
-: 2034: * @param n Number of characters in substring.
-: 2035: * @param str String to compare against.
-: 2036: * @return Integer < 0, 0, or > 0.
-: 2037: *
-: 2038: * Form the substring of this string from the @a n characters starting
-: 2039: * at @a pos. Returns an integer < 0 if the substring is ordered
-: 2040: * before @a str, 0 if their values are equivalent, or > 0 if the
-: 2041: * substring is ordered after @a str. Determines the effective length
-: 2042: * rlen of the strings to compare as the smallest of the length of the
-: 2043: * substring and @a str.size(). The function then compares the two
-: 2044: * strings by calling traits::compare(substring.data(),str.data(),rlen).
-: 2045: * If the result of the comparison is nonzero returns it, otherwise the
-: 2046: * shorter one is ordered first.
-: 2047: */
-: 2048: int
-: 2049: compare(size_type __pos, size_type __n, const basic_string& __str) const;
-: 2050:
-: 2051: /**
-: 2052: * @brief Compare substring to a substring.
-: 2053: * @param pos1 Index of first character of substring.
-: 2054: * @param n1 Number of characters in substring.
-: 2055: * @param str String to compare against.
-: 2056: * @param pos2 Index of first character of substring of str.
-: 2057: * @param n2 Number of characters in substring of str.
-: 2058: * @return Integer < 0, 0, or > 0.
-: 2059: *
-: 2060: * Form the substring of this string from the @a n1 characters starting
-: 2061: * at @a pos1. Form the substring of @a str from the @a n2 characters
-: 2062: * starting at @a pos2. Returns an integer < 0 if this substring is
-: 2063: * ordered before the substring of @a str, 0 if their values are
-: 2064: * equivalent, or > 0 if this substring is ordered after the substring
-: 2065: * of @a str. Determines the effective length rlen of the strings
-: 2066: * to compare as the smallest of the lengths of the substrings. The
-: 2067: * function then compares the two strings by calling
-: 2068: * traits::compare(substring.data(),str.substr(pos2,n2).data(),rlen).
-: 2069: * If the result of the comparison is nonzero returns it, otherwise the
-: 2070: * shorter one is ordered first.
-: 2071: */
-: 2072: int
-: 2073: compare(size_type __pos1, size_type __n1, const basic_string& __str,
-: 2074: size_type __pos2, size_type __n2) const;
-: 2075:
-: 2076: /**
-: 2077: * @brief Compare to a C string.
-: 2078: * @param s C string to compare against.
-: 2079: * @return Integer < 0, 0, or > 0.
-: 2080: *
-: 2081: * Returns an integer < 0 if this string is ordered before @a s, 0 if
-: 2082: * their values are equivalent, or > 0 if this string is ordered after
-: 2083: * @a s. Determines the effective length rlen of the strings to
-: 2084: * compare as the smallest of size() and the length of a string
-: 2085: * constructed from @a s. The function then compares the two strings
-: 2086: * by calling traits::compare(data(),s,rlen). If the result of the
-: 2087: * comparison is nonzero returns it, otherwise the shorter one is
-: 2088: * ordered first.
-: 2089: */
-: 2090: int
-: 2091: compare(const _CharT* __s) const;
-: 2092:
-: 2093: // _GLIBCXX_RESOLVE_LIB_DEFECTS
-: 2094: // 5 String::compare specification questionable
-: 2095: /**
-: 2096: * @brief Compare substring to a C string.
-: 2097: * @param pos Index of first character of substring.
-: 2098: * @param n1 Number of characters in substring.
-: 2099: * @param s C string to compare against.
-: 2100: * @return Integer < 0, 0, or > 0.
-: 2101: *
-: 2102: * Form the substring of this string from the @a n1 characters starting
-: 2103: * at @a pos. Returns an integer < 0 if the substring is ordered
-: 2104: * before @a s, 0 if their values are equivalent, or > 0 if the
-: 2105: * substring is ordered after @a s. Determines the effective length
-: 2106: * rlen of the strings to compare as the smallest of the length of the
-: 2107: * substring and the length of a string constructed from @a s. The
-: 2108: * function then compares the two string by calling
-: 2109: * traits::compare(substring.data(),s,rlen). If the result of the
-: 2110: * comparison is nonzero returns it, otherwise the shorter one is
-: 2111: * ordered first.
-: 2112: */
-: 2113: int
-: 2114: compare(size_type __pos, size_type __n1, const _CharT* __s) const;
-: 2115:
-: 2116: /**
-: 2117: * @brief Compare substring against a character array.
-: 2118: * @param pos1 Index of first character of substring.
-: 2119: * @param n1 Number of characters in substring.
-: 2120: * @param s character array to compare against.
-: 2121: * @param n2 Number of characters of s.
-: 2122: * @return Integer < 0, 0, or > 0.
-: 2123: *
-: 2124: * Form the substring of this string from the @a n1 characters starting
-: 2125: * at @a pos1. Form a string from the first @a n2 characters of @a s.
-: 2126: * Returns an integer < 0 if this substring is ordered before the string
-: 2127: * from @a s, 0 if their values are equivalent, or > 0 if this substring
-: 2128: * is ordered after the string from @a s. Determines the effective
-: 2129: * length rlen of the strings to compare as the smallest of the length
-: 2130: * of the substring and @a n2. The function then compares the two
-: 2131: * strings by calling traits::compare(substring.data(),s,rlen). If the
-: 2132: * result of the comparison is nonzero returns it, otherwise the shorter
-: 2133: * one is ordered first.
-: 2134: *
-: 2135: * NB: s must have at least n2 characters, '\\0' has no special
-: 2136: * meaning.
-: 2137: */
-: 2138: int
-: 2139: compare(size_type __pos, size_type __n1, const _CharT* __s,
-: 2140: size_type __n2) const;
-: 2141: };
-: 2142:
-: 2143: template<typename _CharT, typename _Traits, typename _Alloc>
#####: 2144: inline basic_string<_CharT, _Traits, _Alloc>::
-: 2145: basic_string()
-: 2146:#ifndef _GLIBCXX_FULLY_DYNAMIC_STRING
#####: 2147: : _M_dataplus(_S_empty_rep()._M_refdata(), _Alloc()) { }
-: 2148:#else
-: 2149: : _M_dataplus(_S_construct(size_type(), _CharT(), _Alloc()), _Alloc()) { }
-: 2150:#endif
-: 2151:
-: 2152: // operator+
-: 2153: /**
-: 2154: * @brief Concatenate two strings.
-: 2155: * @param lhs First string.
-: 2156: * @param rhs Last string.
-: 2157: * @return New string with value of @a lhs followed by @a rhs.
-: 2158: */
-: 2159: template<typename _CharT, typename _Traits, typename _Alloc>
-: 2160: basic_string<_CharT, _Traits, _Alloc>
3392: 2161: operator+(const basic_string<_CharT, _Traits, _Alloc>& __lhs,
-: 2162: const basic_string<_CharT, _Traits, _Alloc>& __rhs)
-: 2163: {
3392: 2164: basic_string<_CharT, _Traits, _Alloc> __str(__lhs);
3392: 2165: __str.append(__rhs);
3392: 2166: return __str;
-: 2167: }
-: 2168:
-: 2169: /**
-: 2170: * @brief Concatenate C string and string.
-: 2171: * @param lhs First string.
-: 2172: * @param rhs Last string.
-: 2173: * @return New string with value of @a lhs followed by @a rhs.
-: 2174: */
-: 2175: template<typename _CharT, typename _Traits, typename _Alloc>
-: 2176: basic_string<_CharT,_Traits,_Alloc>
-: 2177: operator+(const _CharT* __lhs,
-: 2178: const basic_string<_CharT,_Traits,_Alloc>& __rhs);
-: 2179:
-: 2180: /**
-: 2181: * @brief Concatenate character and string.
-: 2182: * @param lhs First string.
-: 2183: * @param rhs Last string.
-: 2184: * @return New string with @a lhs followed by @a rhs.
-: 2185: */
-: 2186: template<typename _CharT, typename _Traits, typename _Alloc>
-: 2187: basic_string<_CharT,_Traits,_Alloc>
-: 2188: operator+(_CharT __lhs, const basic_string<_CharT,_Traits,_Alloc>& __rhs);
-: 2189:
-: 2190: /**
-: 2191: * @brief Concatenate string and C string.
-: 2192: * @param lhs First string.
-: 2193: * @param rhs Last string.
-: 2194: * @return New string with @a lhs followed by @a rhs.
-: 2195: */
-: 2196: template<typename _CharT, typename _Traits, typename _Alloc>
-: 2197: inline basic_string<_CharT, _Traits, _Alloc>
4344: 2198: operator+(const basic_string<_CharT, _Traits, _Alloc>& __lhs,
-: 2199: const _CharT* __rhs)
-: 2200: {
4344: 2201: basic_string<_CharT, _Traits, _Alloc> __str(__lhs);
4344: 2202: __str.append(__rhs);
4344: 2203: return __str;
-: 2204: }
-: 2205:
-: 2206: /**
-: 2207: * @brief Concatenate string and character.
-: 2208: * @param lhs First string.
-: 2209: * @param rhs Last string.
-: 2210: * @return New string with @a lhs followed by @a rhs.
-: 2211: */
-: 2212: template<typename _CharT, typename _Traits, typename _Alloc>
-: 2213: inline basic_string<_CharT, _Traits, _Alloc>
-: 2214: operator+(const basic_string<_CharT, _Traits, _Alloc>& __lhs, _CharT __rhs)
-: 2215: {
-: 2216: typedef basic_string<_CharT, _Traits, _Alloc> __string_type;
-: 2217: typedef typename __string_type::size_type __size_type;
-: 2218: __string_type __str(__lhs);
-: 2219: __str.append(__size_type(1), __rhs);
-: 2220: return __str;
-: 2221: }
-: 2222:
-: 2223: // operator ==
-: 2224: /**
-: 2225: * @brief Test equivalence of two strings.
-: 2226: * @param lhs First string.
-: 2227: * @param rhs Second string.
-: 2228: * @return True if @a lhs.compare(@a rhs) == 0. False otherwise.
-: 2229: */
-: 2230: template<typename _CharT, typename _Traits, typename _Alloc>
-: 2231: inline bool
-: 2232: operator==(const basic_string<_CharT, _Traits, _Alloc>& __lhs,
-: 2233: const basic_string<_CharT, _Traits, _Alloc>& __rhs)
-: 2234: { return __lhs.compare(__rhs) == 0; }
-: 2235:
-: 2236: template<typename _CharT>
-: 2237: inline
-: 2238: typename __gnu_cxx::__enable_if<__is_char<_CharT>::__value, bool>::__type
1611: 2239: operator==(const basic_string<_CharT>& __lhs,
-: 2240: const basic_string<_CharT>& __rhs)
-: 2241: { return (__lhs.size() == __rhs.size()
-: 2242: && !std::char_traits<_CharT>::compare(__lhs.data(), __rhs.data(),
1611: 2243: __lhs.size())); }
-: 2244:
-: 2245: /**
-: 2246: * @brief Test equivalence of C string and string.
-: 2247: * @param lhs C string.
-: 2248: * @param rhs String.
-: 2249: * @return True if @a rhs.compare(@a lhs) == 0. False otherwise.
-: 2250: */
-: 2251: template<typename _CharT, typename _Traits, typename _Alloc>
-: 2252: inline bool
-: 2253: operator==(const _CharT* __lhs,
-: 2254: const basic_string<_CharT, _Traits, _Alloc>& __rhs)
-: 2255: { return __rhs.compare(__lhs) == 0; }
-: 2256:
-: 2257: /**
-: 2258: * @brief Test equivalence of string and C string.
-: 2259: * @param lhs String.
-: 2260: * @param rhs C string.
-: 2261: * @return True if @a lhs.compare(@a rhs) == 0. False otherwise.
-: 2262: */
-: 2263: template<typename _CharT, typename _Traits, typename _Alloc>
-: 2264: inline bool
-: 2265: operator==(const basic_string<_CharT, _Traits, _Alloc>& __lhs,
-: 2266: const _CharT* __rhs)
-: 2267: { return __lhs.compare(__rhs) == 0; }
-: 2268:
-: 2269: // operator !=
-: 2270: /**
-: 2271: * @brief Test difference of two strings.
-: 2272: * @param lhs First string.
-: 2273: * @param rhs Second string.
-: 2274: * @return True if @a lhs.compare(@a rhs) != 0. False otherwise.
-: 2275: */
-: 2276: template<typename _CharT, typename _Traits, typename _Alloc>
-: 2277: inline bool
-: 2278: operator!=(const basic_string<_CharT, _Traits, _Alloc>& __lhs,
-: 2279: const basic_string<_CharT, _Traits, _Alloc>& __rhs)
-: 2280: { return !(__lhs == __rhs); }
-: 2281:
-: 2282: /**
-: 2283: * @brief Test difference of C string and string.
-: 2284: * @param lhs C string.
-: 2285: * @param rhs String.
-: 2286: * @return True if @a rhs.compare(@a lhs) != 0. False otherwise.
-: 2287: */
-: 2288: template<typename _CharT, typename _Traits, typename _Alloc>
-: 2289: inline bool
-: 2290: operator!=(const _CharT* __lhs,
-: 2291: const basic_string<_CharT, _Traits, _Alloc>& __rhs)
-: 2292: { return !(__lhs == __rhs); }
-: 2293:
-: 2294: /**
-: 2295: * @brief Test difference of string and C string.
-: 2296: * @param lhs String.
-: 2297: * @param rhs C string.
-: 2298: * @return True if @a lhs.compare(@a rhs) != 0. False otherwise.
-: 2299: */
-: 2300: template<typename _CharT, typename _Traits, typename _Alloc>
-: 2301: inline bool
-: 2302: operator!=(const basic_string<_CharT, _Traits, _Alloc>& __lhs,
-: 2303: const _CharT* __rhs)
-: 2304: { return !(__lhs == __rhs); }
-: 2305:
-: 2306: // operator <
-: 2307: /**
-: 2308: * @brief Test if string precedes string.
-: 2309: * @param lhs First string.
-: 2310: * @param rhs Second string.
-: 2311: * @return True if @a lhs precedes @a rhs. False otherwise.
-: 2312: */
-: 2313: template<typename _CharT, typename _Traits, typename _Alloc>
-: 2314: inline bool
-: 2315: operator<(const basic_string<_CharT, _Traits, _Alloc>& __lhs,
-: 2316: const basic_string<_CharT, _Traits, _Alloc>& __rhs)
-: 2317: { return __lhs.compare(__rhs) < 0; }
-: 2318:
-: 2319: /**
-: 2320: * @brief Test if string precedes C string.
-: 2321: * @param lhs String.
-: 2322: * @param rhs C string.
-: 2323: * @return True if @a lhs precedes @a rhs. False otherwise.
-: 2324: */
-: 2325: template<typename _CharT, typename _Traits, typename _Alloc>
-: 2326: inline bool
-: 2327: operator<(const basic_string<_CharT, _Traits, _Alloc>& __lhs,
-: 2328: const _CharT* __rhs)
-: 2329: { return __lhs.compare(__rhs) < 0; }
-: 2330:
-: 2331: /**
-: 2332: * @brief Test if C string precedes string.
-: 2333: * @param lhs C string.
-: 2334: * @param rhs String.
-: 2335: * @return True if @a lhs precedes @a rhs. False otherwise.
-: 2336: */
-: 2337: template<typename _CharT, typename _Traits, typename _Alloc>
-: 2338: inline bool
-: 2339: operator<(const _CharT* __lhs,
-: 2340: const basic_string<_CharT, _Traits, _Alloc>& __rhs)
-: 2341: { return __rhs.compare(__lhs) > 0; }
-: 2342:
-: 2343: // operator >
-: 2344: /**
-: 2345: * @brief Test if string follows string.
-: 2346: * @param lhs First string.
-: 2347: * @param rhs Second string.
-: 2348: * @return True if @a lhs follows @a rhs. False otherwise.
-: 2349: */
-: 2350: template<typename _CharT, typename _Traits, typename _Alloc>
-: 2351: inline bool
-: 2352: operator>(const basic_string<_CharT, _Traits, _Alloc>& __lhs,
-: 2353: const basic_string<_CharT, _Traits, _Alloc>& __rhs)
-: 2354: { return __lhs.compare(__rhs) > 0; }
-: 2355:
-: 2356: /**
-: 2357: * @brief Test if string follows C string.
-: 2358: * @param lhs String.
-: 2359: * @param rhs C string.
-: 2360: * @return True if @a lhs follows @a rhs. False otherwise.
-: 2361: */
-: 2362: template<typename _CharT, typename _Traits, typename _Alloc>
-: 2363: inline bool
-: 2364: operator>(const basic_string<_CharT, _Traits, _Alloc>& __lhs,
-: 2365: const _CharT* __rhs)
-: 2366: { return __lhs.compare(__rhs) > 0; }
-: 2367:
-: 2368: /**
-: 2369: * @brief Test if C string follows string.
-: 2370: * @param lhs C string.
-: 2371: * @param rhs String.
-: 2372: * @return True if @a lhs follows @a rhs. False otherwise.
-: 2373: */
-: 2374: template<typename _CharT, typename _Traits, typename _Alloc>
-: 2375: inline bool
-: 2376: operator>(const _CharT* __lhs,
-: 2377: const basic_string<_CharT, _Traits, _Alloc>& __rhs)
-: 2378: { return __rhs.compare(__lhs) < 0; }
-: 2379:
-: 2380: // operator <=
-: 2381: /**
-: 2382: * @brief Test if string doesn't follow string.
-: 2383: * @param lhs First string.
-: 2384: * @param rhs Second string.
-: 2385: * @return True if @a lhs doesn't follow @a rhs. False otherwise.
-: 2386: */
-: 2387: template<typename _CharT, typename _Traits, typename _Alloc>
-: 2388: inline bool
-: 2389: operator<=(const basic_string<_CharT, _Traits, _Alloc>& __lhs,
-: 2390: const basic_string<_CharT, _Traits, _Alloc>& __rhs)
-: 2391: { return __lhs.compare(__rhs) <= 0; }
-: 2392:
-: 2393: /**
-: 2394: * @brief Test if string doesn't follow C string.
-: 2395: * @param lhs String.
-: 2396: * @param rhs C string.
-: 2397: * @return True if @a lhs doesn't follow @a rhs. False otherwise.
-: 2398: */
-: 2399: template<typename _CharT, typename _Traits, typename _Alloc>
-: 2400: inline bool
-: 2401: operator<=(const basic_string<_CharT, _Traits, _Alloc>& __lhs,
-: 2402: const _CharT* __rhs)
-: 2403: { return __lhs.compare(__rhs) <= 0; }
-: 2404:
-: 2405: /**
-: 2406: * @brief Test if C string doesn't follow string.
-: 2407: * @param lhs C string.
-: 2408: * @param rhs String.
-: 2409: * @return True if @a lhs doesn't follow @a rhs. False otherwise.
-: 2410: */
-: 2411: template<typename _CharT, typename _Traits, typename _Alloc>
-: 2412: inline bool
-: 2413: operator<=(const _CharT* __lhs,
-: 2414: const basic_string<_CharT, _Traits, _Alloc>& __rhs)
-: 2415: { return __rhs.compare(__lhs) >= 0; }
-: 2416:
-: 2417: // operator >=
-: 2418: /**
-: 2419: * @brief Test if string doesn't precede string.
-: 2420: * @param lhs First string.
-: 2421: * @param rhs Second string.
-: 2422: * @return True if @a lhs doesn't precede @a rhs. False otherwise.
-: 2423: */
-: 2424: template<typename _CharT, typename _Traits, typename _Alloc>
-: 2425: inline bool
-: 2426: operator>=(const basic_string<_CharT, _Traits, _Alloc>& __lhs,
-: 2427: const basic_string<_CharT, _Traits, _Alloc>& __rhs)
-: 2428: { return __lhs.compare(__rhs) >= 0; }
-: 2429:
-: 2430: /**
-: 2431: * @brief Test if string doesn't precede C string.
-: 2432: * @param lhs String.
-: 2433: * @param rhs C string.
-: 2434: * @return True if @a lhs doesn't precede @a rhs. False otherwise.
-: 2435: */
-: 2436: template<typename _CharT, typename _Traits, typename _Alloc>
-: 2437: inline bool
-: 2438: operator>=(const basic_string<_CharT, _Traits, _Alloc>& __lhs,
-: 2439: const _CharT* __rhs)
-: 2440: { return __lhs.compare(__rhs) >= 0; }
-: 2441:
-: 2442: /**
-: 2443: * @brief Test if C string doesn't precede string.
-: 2444: * @param lhs C string.
-: 2445: * @param rhs String.
-: 2446: * @return True if @a lhs doesn't precede @a rhs. False otherwise.
-: 2447: */
-: 2448: template<typename _CharT, typename _Traits, typename _Alloc>
-: 2449: inline bool
-: 2450: operator>=(const _CharT* __lhs,
-: 2451: const basic_string<_CharT, _Traits, _Alloc>& __rhs)
-: 2452: { return __rhs.compare(__lhs) <= 0; }
-: 2453:
-: 2454: /**
-: 2455: * @brief Swap contents of two strings.
-: 2456: * @param lhs First string.
-: 2457: * @param rhs Second string.
-: 2458: *
-: 2459: * Exchanges the contents of @a lhs and @a rhs in constant time.
-: 2460: */
-: 2461: template<typename _CharT, typename _Traits, typename _Alloc>
-: 2462: inline void
-: 2463: swap(basic_string<_CharT, _Traits, _Alloc>& __lhs,
-: 2464: basic_string<_CharT, _Traits, _Alloc>& __rhs)
-: 2465: { __lhs.swap(__rhs); }
-: 2466:
-: 2467: /**
-: 2468: * @brief Read stream into a string.
-: 2469: * @param is Input stream.
-: 2470: * @param str Buffer to store into.
-: 2471: * @return Reference to the input stream.
-: 2472: *
-: 2473: * Stores characters from @a is into @a str until whitespace is found, the
-: 2474: * end of the stream is encountered, or str.max_size() is reached. If
-: 2475: * is.width() is non-zero, that is the limit on the number of characters
-: 2476: * stored into @a str. Any previous contents of @a str are erased.
-: 2477: */
-: 2478: template<typename _CharT, typename _Traits, typename _Alloc>
-: 2479: basic_istream<_CharT, _Traits>&
-: 2480: operator>>(basic_istream<_CharT, _Traits>& __is,
-: 2481: basic_string<_CharT, _Traits, _Alloc>& __str);
-: 2482:
-: 2483: template<>
-: 2484: basic_istream<char>&
-: 2485: operator>>(basic_istream<char>& __is, basic_string<char>& __str);
-: 2486:
-: 2487: /**
-: 2488: * @brief Write string to a stream.
-: 2489: * @param os Output stream.
-: 2490: * @param str String to write out.
-: 2491: * @return Reference to the output stream.
-: 2492: *
-: 2493: * Output characters of @a str into os following the same rules as for
-: 2494: * writing a C string.
-: 2495: */
-: 2496: template<typename _CharT, typename _Traits, typename _Alloc>
-: 2497: inline basic_ostream<_CharT, _Traits>&
#####: 2498: operator<<(basic_ostream<_CharT, _Traits>& __os,
-: 2499: const basic_string<_CharT, _Traits, _Alloc>& __str)
-: 2500: {
-: 2501: // _GLIBCXX_RESOLVE_LIB_DEFECTS
-: 2502: // 586. string inserter not a formatted function
#####: 2503: return __ostream_insert(__os, __str.data(), __str.size());
-: 2504: }
-: 2505:
-: 2506: /**
-: 2507: * @brief Read a line from stream into a string.
-: 2508: * @param is Input stream.
-: 2509: * @param str Buffer to store into.
-: 2510: * @param delim Character marking end of line.
-: 2511: * @return Reference to the input stream.
-: 2512: *
-: 2513: * Stores characters from @a is into @a str until @a delim is found, the
-: 2514: * end of the stream is encountered, or str.max_size() is reached. If
-: 2515: * is.width() is non-zero, that is the limit on the number of characters
-: 2516: * stored into @a str. Any previous contents of @a str are erased. If @a
-: 2517: * delim was encountered, it is extracted but not stored into @a str.
-: 2518: */
-: 2519: template<typename _CharT, typename _Traits, typename _Alloc>
-: 2520: basic_istream<_CharT, _Traits>&
-: 2521: getline(basic_istream<_CharT, _Traits>& __is,
-: 2522: basic_string<_CharT, _Traits, _Alloc>& __str, _CharT __delim);
-: 2523:
-: 2524: /**
-: 2525: * @brief Read a line from stream into a string.
-: 2526: * @param is Input stream.
-: 2527: * @param str Buffer to store into.
-: 2528: * @return Reference to the input stream.
-: 2529: *
-: 2530: * Stores characters from is into @a str until '\n' is found, the end of
-: 2531: * the stream is encountered, or str.max_size() is reached. If is.width()
-: 2532: * is non-zero, that is the limit on the number of characters stored into
-: 2533: * @a str. Any previous contents of @a str are erased. If end of line was
-: 2534: * encountered, it is extracted but not stored into @a str.
-: 2535: */
-: 2536: template<typename _CharT, typename _Traits, typename _Alloc>
-: 2537: inline basic_istream<_CharT, _Traits>&
#####: 2538: getline(basic_istream<_CharT, _Traits>& __is,
-: 2539: basic_string<_CharT, _Traits, _Alloc>& __str)
#####: 2540: { return getline(__is, __str, __is.widen('\n')); }
-: 2541:
-: 2542: template<>
-: 2543: basic_istream<char>&
-: 2544: getline(basic_istream<char>& __in, basic_string<char>& __str,
-: 2545: char __delim);
-: 2546:
-: 2547:#ifdef _GLIBCXX_USE_WCHAR_T
-: 2548: template<>
-: 2549: basic_istream<wchar_t>&
-: 2550: getline(basic_istream<wchar_t>& __in, basic_string<wchar_t>& __str,
-: 2551: wchar_t __delim);
-: 2552:#endif
-: 2553:
-: 2554:_GLIBCXX_END_NAMESPACE
-: 2555:
-: 2556:#if (defined(__GXX_EXPERIMENTAL_CXX0X__) && defined(_GLIBCXX_USE_C99) \
-: 2557: && !defined(_GLIBCXX_HAVE_BROKEN_VSWPRINTF))
-: 2558:
-: 2559:#include <ext/string_conversions.h>
-: 2560:
-: 2561:_GLIBCXX_BEGIN_NAMESPACE(std)
-: 2562:
-: 2563: // 21.4 Numeric Conversions [string.conversions].
-: 2564: inline int
-: 2565: stoi(const string& __str, size_t* __idx = 0, int __base = 10)
-: 2566: { return __gnu_cxx::__stoa<long, int>(&std::strtol, "stoi", __str.c_str(),
-: 2567: __idx, __base); }
-: 2568:
-: 2569: inline long
-: 2570: stol(const string& __str, size_t* __idx = 0, int __base = 10)
-: 2571: { return __gnu_cxx::__stoa(&std::strtol, "stol", __str.c_str(),
-: 2572: __idx, __base); }
-: 2573:
-: 2574: inline unsigned long
-: 2575: stoul(const string& __str, size_t* __idx = 0, int __base = 10)
-: 2576: { return __gnu_cxx::__stoa(&std::strtoul, "stoul", __str.c_str(),
-: 2577: __idx, __base); }
-: 2578:
-: 2579: inline long long
-: 2580: stoll(const string& __str, size_t* __idx = 0, int __base = 10)
-: 2581: { return __gnu_cxx::__stoa(&std::strtoll, "stoll", __str.c_str(),
-: 2582: __idx, __base); }
-: 2583:
-: 2584: inline unsigned long long
-: 2585: stoull(const string& __str, size_t* __idx = 0, int __base = 10)
-: 2586: { return __gnu_cxx::__stoa(&std::strtoull, "stoull", __str.c_str(),
-: 2587: __idx, __base); }
-: 2588:
-: 2589: // NB: strtof vs strtod.
-: 2590: inline float
-: 2591: stof(const string& __str, size_t* __idx = 0)
-: 2592: { return __gnu_cxx::__stoa(&std::strtof, "stof", __str.c_str(), __idx); }
-: 2593:
-: 2594: inline double
-: 2595: stod(const string& __str, size_t* __idx = 0)
-: 2596: { return __gnu_cxx::__stoa(&std::strtod, "stod", __str.c_str(), __idx); }
-: 2597:
-: 2598: inline long double
-: 2599: stold(const string& __str, size_t* __idx = 0)
-: 2600: { return __gnu_cxx::__stoa(&std::strtold, "stold", __str.c_str(), __idx); }
-: 2601:
-: 2602: // NB: (v)snprintf vs sprintf.
-: 2603: inline string
-: 2604: to_string(long long __val)
-: 2605: { return __gnu_cxx::__to_xstring<string>(&std::vsnprintf,
-: 2606: 4 * sizeof(long long),
-: 2607: "%lld", __val); }
-: 2608:
-: 2609: inline string
-: 2610: to_string(unsigned long long __val)
-: 2611: { return __gnu_cxx::__to_xstring<string>(&std::vsnprintf,
-: 2612: 4 * sizeof(unsigned long long),
-: 2613: "%llu", __val); }
-: 2614:
-: 2615: inline string
-: 2616: to_string(long double __val)
-: 2617: {
-: 2618: const int __n =
-: 2619: __gnu_cxx::__numeric_traits<long double>::__max_exponent10 + 20;
-: 2620: return __gnu_cxx::__to_xstring<string>(&std::vsnprintf, __n,
-: 2621: "%Lf", __val);
-: 2622: }
-: 2623:
-: 2624:#ifdef _GLIBCXX_USE_WCHAR_T
-: 2625: inline int
-: 2626: stoi(const wstring& __str, size_t* __idx = 0, int __base = 10)
-: 2627: { return __gnu_cxx::__stoa<long, int>(&std::wcstol, "stoi", __str.c_str(),
-: 2628: __idx, __base); }
-: 2629:
-: 2630: inline long
-: 2631: stol(const wstring& __str, size_t* __idx = 0, int __base = 10)
-: 2632: { return __gnu_cxx::__stoa(&std::wcstol, "stol", __str.c_str(),
-: 2633: __idx, __base); }
-: 2634:
-: 2635: inline unsigned long
-: 2636: stoul(const wstring& __str, size_t* __idx = 0, int __base = 10)
-: 2637: { return __gnu_cxx::__stoa(&std::wcstoul, "stoul", __str.c_str(),
-: 2638: __idx, __base); }
-: 2639:
-: 2640: inline long long
-: 2641: stoll(const wstring& __str, size_t* __idx = 0, int __base = 10)
-: 2642: { return __gnu_cxx::__stoa(&std::wcstoll, "stoll", __str.c_str(),
-: 2643: __idx, __base); }
-: 2644:
-: 2645: inline unsigned long long
-: 2646: stoull(const wstring& __str, size_t* __idx = 0, int __base = 10)
-: 2647: { return __gnu_cxx::__stoa(&std::wcstoull, "stoull", __str.c_str(),
-: 2648: __idx, __base); }
-: 2649:
-: 2650: // NB: wcstof vs wcstod.
-: 2651: inline float
-: 2652: stof(const wstring& __str, size_t* __idx = 0)
-: 2653: { return __gnu_cxx::__stoa(&std::wcstof, "stof", __str.c_str(), __idx); }
-: 2654:
-: 2655: inline double
-: 2656: stod(const wstring& __str, size_t* __idx = 0)
-: 2657: { return __gnu_cxx::__stoa(&std::wcstod, "stod", __str.c_str(), __idx); }
-: 2658:
-: 2659: inline long double
-: 2660: stold(const wstring& __str, size_t* __idx = 0)
-: 2661: { return __gnu_cxx::__stoa(&std::wcstold, "stold", __str.c_str(), __idx); }
-: 2662:
-: 2663: inline wstring
-: 2664: to_wstring(long long __val)
-: 2665: { return __gnu_cxx::__to_xstring<wstring>(&std::vswprintf,
-: 2666: 4 * sizeof(long long),
-: 2667: L"%lld", __val); }
-: 2668:
-: 2669: inline wstring
-: 2670: to_wstring(unsigned long long __val)
-: 2671: { return __gnu_cxx::__to_xstring<wstring>(&std::vswprintf,
-: 2672: 4 * sizeof(unsigned long long),
-: 2673: L"%llu", __val); }
-: 2674:
-: 2675: inline wstring
-: 2676: to_wstring(long double __val)
-: 2677: {
-: 2678: const int __n =
-: 2679: __gnu_cxx::__numeric_traits<long double>::__max_exponent10 + 20;
-: 2680: return __gnu_cxx::__to_xstring<wstring>(&std::vswprintf, __n,
-: 2681: L"%Lf", __val);
-: 2682: }
-: 2683:#endif
-: 2684:
-: 2685:_GLIBCXX_END_NAMESPACE
-: 2686:
-: 2687:#endif
-: 2688:
-: 2689:#endif /* _BASIC_STRING_H */
| [
"noreply@github.com"
] | noreply@github.com |
16eda716aeaa51851065fe05181b9a6e1e0dcba5 | 88c73364efda285c1bfb2aded697d12d9ba74405 | /include/etl/avx512_vectorization.hpp | c8154d9ac3a1f88680ffad1607e6b82b50c714ef | [
"MIT",
"LicenseRef-scancode-unknown-license-reference"
] | permissive | bssrdf/etl | 7269a299dc7dd157ce2c7a09e6229b9b6805aa99 | 4471a420d9ccaba337717836e078c1827bacdf0b | refs/heads/master | 2021-01-20T14:59:35.534680 | 2017-05-08T20:29:41 | 2017-05-08T20:29:41 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 19,218 | hpp | //=======================================================================
// Copyright (c) 2014-2017 Baptiste Wicht
// Distributed under the terms of the MIT License.
// (See accompanying file LICENSE or copy at
// http://opensource.org/licenses/MIT)
//=======================================================================
/*!
* \file avx512_vectorization.hpp
* \brief Contains AVX-512 vectorized functions for the vectorized assignment of expressions
*/
//TODO Implementation of AVX-512 complex multiplication and division
#pragma once
#ifdef __AVX512F__
#include <immintrin.h>
#include "etl/inline.hpp"
#ifdef VECT_DEBUG
#include <iostream>
#endif
#define ETL_INLINE_VEC_VOID ETL_STATIC_INLINE(void)
#define ETL_INLINE_VEC_512 ETL_STATIC_INLINE(__m512)
#define ETL_INLINE_VEC_512D ETL_STATIC_INLINE(__m512d)
#define ETL_OUT_VEC_2512ETL_OUT_INLINE(__m512)
#define ETL_OUT_VEC_512D ETL_OUT_INLINE(__m512d)
namespace etl {
/*!
* \brief Define traits to get vectorization information for types in AVX512 vector mode.
*/
template <typename T>
struct avx512_intrinsic_traits {
static constexpr bool vectorizable = false; ///< Boolean flag indicating if the type is vectorizable or not
static constexpr size_t size = 1; ///< Numbers of elements done at once
static constexpr size_t alignment = alignof(T); ///< Necessary number of bytes of alignment for this type
using intrinsic_type = T; ///< The vector type
};
/*!
* \copydoc avx512_intrinsic_traits
*/
template <>
struct avx512_intrinsic_traits<float> {
static constexpr bool vectorizable = true; ///< Boolean flag indicating is vectorizable or not
static constexpr size_t size = 16; ///< Numbers of elements in a vector
static constexpr size_t alignment = 64;///< Necessary alignment, in bytes, for this type
using intrinsic_type = __m512; ///< The vector type
};
/*!
* \copydoc avx512_intrinsic_traits
*/
template <>
struct avx512_intrinsic_traits<double> {
static constexpr bool vectorizable = true; ///< Boolean flag indicating is vectorizable or not
static constexpr size_t size = 8; ///< Numbers of elements in a vector
static constexpr size_t alignment = 64;///< Necessary alignment, in bytes, for this type
using intrinsic_type = __m512d; ///< The vector type
};
/*!
* \copydoc avx512_intrinsic_traits
*/
template <>
struct avx512_intrinsic_traits<std::complex<float>> {
static constexpr bool vectorizable = true; ///< Boolean flag indicating is vectorizable or not
static constexpr size_t size = 8; ///< Numbers of elements in a vector
static constexpr size_t alignment = 64;///< Necessary alignment, in bytes, for this type
using intrinsic_type = __m512; ///< The vector type
};
/*!
* \copydoc avx512_intrinsic_traits
*/
template <>
struct avx512_intrinsic_traits<std::complex<double>> {
static constexpr bool vectorizable = true; ///< Boolean flag indicating is vectorizable or not
static constexpr size_t size = 4; ///< Numbers of elements in a vector
static constexpr size_t alignment = 64;///< Necessary alignment, in bytes, for this type
using intrinsic_type = __m512d; ///< The vector type
};
/*!
* \copydoc avx512_intrinsic_traits
*/
template <>
struct avx512_intrinsic_traits<etl::complex<float>> {
static constexpr bool vectorizable = true; ///< Boolean flag indicating is vectorizable or not
static constexpr size_t size = 8; ///< Numbers of elements in a vector
static constexpr size_t alignment = 64;///< Necessary alignment, in bytes, for this type
using intrinsic_type = __m512; ///< The vector type
};
/*!
* \copydoc avx512_intrinsic_traits
*/
template <>
struct avx512_intrinsic_traits<etl::complex<double>> {
static constexpr bool vectorizable = true; ///< Boolean flag indicating is vectorizable or not
static constexpr size_t size = 4; ///< Numbers of elements in a vector
static constexpr size_t alignment = 64;///< Necessary alignment, in bytes, for this type
using intrinsic_type = __m512d; ///< The vector type
};
/*!
* \brief Advanced Vector eXtensions 512 (AVX-512) operations implementation.
*/
struct avx512_vec {
/*!
* \brief The traits for this vector implementation
*/
template <typename T>
using traits = avx512_intrinsic_traits<T>;
/*!
* \brief The vector type for the given type for this vector implementation
*/
template <typename T>
using vec_type = typename traits<T>::intrinsic_type;
#ifdef VEC_DEBUG
template <typename T>
static std::string debug_d(T value) {
union test {
__m512d vec;
double array[8];
test(__m512d vec)
: vec(vec) {}
};
test u_value = value;
std::cout << "["
<< u_value.array[0] << "," << u_value.array[1] << "," << u_value.array[2] << "," << u_value.array[3]
<< "," << u_value.array[4] << "," << u_value.array[5] << "," << u_value.array[6] << "," << u_value.array[7]
<< "]" << std::endl;
}
template <typename T>
static std::string debug_s(T value) {
union test {
__m512 vec;
float array[16];
test(__m512 vec)
: vec(vec) {}
};
test u_value = value;
std::cout << "["
<< u_value.array[0] << "," << u_value.array[1] << "," << u_value.array[2] << "," << u_value.array[3]
<< "," << u_value.array[4] << "," << u_value.array[5] << "," << u_value.array[6] << "," << u_value.array[7]
<< "," << u_value.array[8] << "," << u_value.array[9] << "," << u_value.array[10] << "," << u_value.array[11]
<< "," << u_value.array[12] << "," << u_value.array[13] << "," << u_value.array[14] << "," << u_value.array[15]
<< "]" << std::endl;
}
#else
template <typename T>
static std::string debug_d(T) {
return "";
}
template <typename T>
static std::string debug_s(T) {
return "";
}
#endif
/*!
* \brief Unaligned store of the given packed vector at the
* given memory position
*/
ETL_INLINE_VEC_VOID storeu(float* memory, __m512 value) {
_mm512_storeu_ps(memory, value);
}
/*!
* \brief Unaligned store of the given packed vector at the
* given memory position
*/
ETL_INLINE_VEC_VOID storeu(double* memory, __m512d value) {
_mm512_storeu_pd(memory, value);
}
/*!
* \brief Unaligned store of the given packed vector at the
* given memory position
*/
ETL_INLINE_VEC_VOID storeu(std::complex<float>* memory, __m512 value) {
_mm512_storeu_ps(reinterpret_cast<float*>(memory), value);
}
/*!
* \brief Unaligned store of the given packed vector at the
* given memory position
*/
ETL_INLINE_VEC_VOID storeu(std::complex<double>* memory, __m512d value) {
_mm512_storeu_pd(reinterpret_cast<double*>(memory), value);
}
/*!
* \brief Unaligned store of the given packed vector at the
* given memory position
*/
ETL_INLINE_VEC_VOID storeu(etl::complex<float>* memory, __m512 value) {
_mm512_storeu_ps(reinterpret_cast<float*>(memory), value);
}
/*!
* \brief Unaligned store of the given packed vector at the
* given memory position
*/
ETL_INLINE_VEC_VOID storeu(etl::complex<double>* memory, __m512d value) {
_mm512_storeu_pd(reinterpret_cast<double*>(memory), value);
}
/*!
* \brief Aligned store of the given packed vector at the
* given memory position
*/
ETL_INLINE_VEC_VOID store(float* memory, __m512 value) {
_mm512_store_ps(memory, value);
}
/*!
* \brief Aligned store of the given packed vector at the
* given memory position
*/
ETL_INLINE_VEC_VOID store(double* memory, __m512d value) {
_mm512_store_pd(memory, value);
}
/*!
* \brief Aligned store of the given packed vector at the
* given memory position
*/
ETL_INLINE_VEC_VOID store(std::complex<float>* memory, __m512 value) {
_mm512_store_ps(reinterpret_cast<float*>(memory), value);
}
/*!
* \brief Aligned store of the given packed vector at the
* given memory position
*/
ETL_INLINE_VEC_VOID store(std::complex<double>* memory, __m512d value) {
_mm512_store_pd(reinterpret_cast<double*>(memory), value);
}
/*!
* \brief Aligned store of the given packed vector at the
* given memory position
*/
ETL_INLINE_VEC_VOID store(etl::complex<float>* memory, __m512 value) {
_mm512_store_ps(reinterpret_cast<float*>(memory), value);
}
/*!
* \brief Aligned store of the given packed vector at the
* given memory position
*/
ETL_INLINE_VEC_VOID store(etl::complex<double>* memory, __m512d value) {
_mm512_store_pd(reinterpret_cast<double*>(memory), value);
}
/*!
* \brief Non-temporal, aligned, store of the given packed vector at the
* given memory position
*/
ETL_INLINE_VEC_VOID stream(float* memory, __m512 value) {
_mm512_stream_ps(memory, value);
}
/*!
* \brief Non-temporal, aligned, store of the given packed vector at the
* given memory position
*/
ETL_INLINE_VEC_VOID stream(double* memory, __m512d value) {
_mm512_stream_pd(memory, value);
}
/*!
* \brief Non-temporal, aligned, store of the given packed vector at the
* given memory position
*/
ETL_INLINE_VEC_VOID stream(std::complex<float>* memory, __m512 value) {
_mm512_stream_ps(reinterpret_cast<float*>(memory), value);
}
/*!
* \brief Non-temporal, aligned, store of the given packed vector at the
* given memory position
*/
ETL_INLINE_VEC_VOID stream(std::complex<double>* memory, __m512d value) {
_mm512_stream_pd(reinterpret_cast<double*>(memory), value);
}
/*!
* \brief Non-temporal, aligned, store of the given packed vector at the
* given memory position
*/
ETL_INLINE_VEC_VOID stream(etl::complex<float>* memory, __m512 value) {
_mm512_stream_ps(reinterpret_cast<float*>(memory), value);
}
/*!
* \brief Non-temporal, aligned, store of the given packed vector at the
* given memory position
*/
ETL_INLINE_VEC_VOID stream(etl::complex<double>* memory, __m512d value) {
_mm512_stream_pd(reinterpret_cast<double*>(memory), value);
}
/*!
* \brief Load a packed vector from the given aligned memory location
*/
ETL_INLINE_VEC_512 load(const float* memory) {
return _mm512_load_ps(memory);
}
/*!
* \brief Load a packed vector from the given aligned memory location
*/
ETL_INLINE_VEC_512D load(const double* memory) {
return _mm512_load_pd(memory);
}
/*!
* \brief Load a packed vector from the given aligned memory location
*/
ETL_INLINE_VEC_512 load(const std::complex<float>* memory) {
return _mm512_load_ps(reinterpret_cast<const float*>(memory));
}
/*!
* \brief Load a packed vector from the given aligned memory location
*/
ETL_INLINE_VEC_512D load(const std::complex<double>* memory) {
return _mm512_load_pd(reinterpret_cast<const double*>(memory));
}
/*!
* \brief Load a packed vector from the given aligned memory location
*/
ETL_INLINE_VEC_512 load(const etl::complex<float>* memory) {
return _mm512_load_ps(reinterpret_cast<const float*>(memory));
}
/*!
* \brief Load a packed vector from the given aligned memory location
*/
ETL_INLINE_VEC_512D load(const etl::complex<double>* memory) {
return _mm512_load_pd(reinterpret_cast<const double*>(memory));
}
/*!
* \brief Load a packed vector from the given unaligned memory location
*/
ETL_INLINE_VEC_512 loadu(const float* memory) {
return _mm512_loadu_ps(memory);
}
/*!
* \brief Load a packed vector from the given unaligned memory location
*/
ETL_INLINE_VEC_512D loadu(const double* memory) {
return _mm512_loadu_pd(memory);
}
/*!
* \brief Load a packed vector from the given unaligned memory location
*/
ETL_INLINE_VEC_512 loadu(const std::complex<float>* memory) {
return _mm512_loadu_ps(reinterpret_cast<const float*>(memory));
}
/*!
* \brief Load a packed vector from the given unaligned memory location
*/
ETL_INLINE_VEC_512D loadu(const std::complex<double>* memory) {
return _mm512_loadu_pd(reinterpret_cast<const double*>(memory));
}
/*!
* \brief Load a packed vector from the given unaligned memory location
*/
ETL_INLINE_VEC_512 loadu(const etl::complex<float>* memory) {
return _mm512_loadu_ps(reinterpret_cast<const float*>(memory));
}
/*!
* \brief Load a packed vector from the given unaligned memory location
*/
ETL_INLINE_VEC_512D loadu(const etl::complex<double>* memory) {
return _mm512_loadu_pd(reinterpret_cast<const double*>(memory));
}
/*!
* \brief Fill a packed vector by replicating a value
*/
ETL_INLINE_VEC_512D set(double value) {
return _mm512_set1_pd(value);
}
/*!
* \brief Fill a packed vector by replicating a value
*/
ETL_INLINE_VEC_512 set(float value) {
return _mm512_set1_ps(value);
}
/*!
* \brief Add the two given values and return the result.
*/
ETL_INLINE_VEC_512D add(__m512d lhs, __m512d rhs) {
return _mm512_add_pd(lhs, rhs);
}
/*!
* \brief Subtract the two given values and return the result.
*/
ETL_INLINE_VEC_512D sub(__m512d lhs, __m512d rhs) {
return _mm512_sub_pd(lhs, rhs);
}
/*!
* \brief Compute the square root of each element in the given vector
* \return a vector containing the square root of each input element
*/
ETL_INLINE_VEC_512D sqrt(__m512d x) {
return _mm512_sqrt_pd(x);
}
/*!
* \brief Compute the negative of each element in the given vector
* \return a vector containing the negative of each input element
*/
ETL_INLINE_VEC_512D minus(__m512d x) {
return _mm512_xor_pd(x, _mm512_set1_pd(-0.f));
}
/*!
* \brief Add the two given values and return the result.
*/
ETL_INLINE_VEC_512 add(__m512 lhs, __m512 rhs) {
return _mm512_add_ps(lhs, rhs);
}
/*!
* \brief Subtract the two given values and return the result.
*/
ETL_INLINE_VEC_512 sub(__m512 lhs, __m512 rhs) {
return _mm512_sub_ps(lhs, rhs);
}
/*!
* \brief Compute the square root of each element in the given vector
* \return a vector containing the square root of each input element
*/
ETL_INLINE_VEC_512 sqrt(__m512 lhs) {
return _mm512_sqrt_ps(lhs);
}
/*!
* \brief Compute the negative of each element in the given vector
* \return a vector containing the negative of each input element
*/
ETL_INLINE_VEC_512 minus(__m512 x) {
return _mm512_xor_ps(x, _mm512_set1_ps(-0.f));
}
/*!
* \brief Multiply the two given vectors
*/
template <bool Complex = false>
ETL_INLINE_VEC_512 mul(__m512 lhs, __m512 rhs) {
return _mm512_mul_ps(lhs, rhs);
}
/*!
* \brief Multiply the two given vectors
*/
template <>
ETL_INLINE_VEC_512 mul<true>(__m512 lhs, __m512 rhs) {
cpp_unreachable("Not yet implemented");
return lhs;
}
template <bool Complex = false>
ETL_INLINE_VEC_512D mul(__m512d lhs, __m512d rhs) {
return _mm512_mul_pd(lhs, rhs);
}
template <>
ETL_INLINE_VEC_512D mul<true>(__m512d lhs, __m512d rhs) {
cpp_unreachable("Not yet implemented");
return lhs;
}
/*!
* \brief Divide the two given vectors
*/
template <bool Complex = false>
ETL_INLINE_VEC_512 div(__m512 lhs, __m512 rhs) {
return _mm512_div_ps(lhs, rhs);
}
/*!
* \brief Divide the two given vectors
*/
template <>
ETL_INLINE_VEC_512 div<true>(__m512 lhs, __m512 rhs) {
cpp_unreachable("Not yet implemented");
return lhs;
}
/*!
* \brief Divide the two given vectors
*/
template <bool Complex = false>
ETL_INLINE_VEC_512D div(__m512d lhs, __m512d rhs) {
return _mm512_div_pd(lhs, rhs);
}
/*!
* \brief Divide the two given vectors
*/
template <>
ETL_INLINE_VEC_512D div<true>(__m512d lhs, __m512d rhs) {
cpp_unreachable("Not yet implemented");
return lhs;
}
#ifdef __INTEL_COMPILER
//Exponential
/*!
* \brief Compute the exponentials of each element of the given vector
*/
ETL_INLINE_VEC_512D exp(__m512d x) {
return _mm512_exp_pd(x);
}
/*!
* \brief Compute the exponentials of each element of the given vector
*/
ETL_INLINE_VEC_512 exp(__m512 x) {
return _mm512_exp_ps(x);
}
//Logarithm
/*!
* \brief Compute the logarithm of each element of the given vector
*/
ETL_INLINE_VEC_512D log(__m512d x) {
return _mm512_log_pd(x);
}
/*!
* \brief Compute the logarithm of each element of the given vector
*/
ETL_INLINE_VEC_512 log(__m512 x) {
return _mm512_log_ps(x);
}
//Min
/*!
* \brief Compute the minimum between each pair element of the given vectors
*/
ETL_INLINE_VEC_512D min(__m512d lhs, __m512d rhs) {
return _mm512_min_pd(lhs, rhs);
}
/*!
* \brief Compute the minimum between each pair element of the given vectors
*/
ETL_INLINE_VEC_512 min(__m512 lhs, __m512 rhs) {
return _mm512_min_ps(lhs, rhs);
}
//Max
/*!
* \brief Compute the maximum between each pair element of the given vectors
*/
ETL_INLINE_VEC_512D max(__m512d lhs, __m512d rhs) {
return _mm512_max_pd(lhs, rhs);
}
/*!
* \brief Compute the maximum between each pair element of the given vectors
*/
ETL_INLINE_VEC_512 max(__m512 lhs, __m512 rhs) {
return _mm512_max_ps(lhs, rhs);
}
#endif //__INTEL_COMPILER
};
/*!
* \copydoc sse_vec::mul
*/
template <>
ETL_OUT_VEC_512 avx512_vec::mul<true>(__m512 lhs, __m512 rhs) {
cpp_unreachable("Not yet implemented");
return lhs;
}
/*!
* \copydoc sse_vec::mul
*/
template <>
ETL_OUT_VEC_512D avx512_vec::mul<true>(__m512d lhs, __m512d rhs) {
cpp_unreachable("Not yet implemented");
return lhs;
}
/*!
* \copydoc sse_vec::div
*/
template <>
ETL_OUT_VEC_512 avx512_vec::div<true>(__m512 lhs, __m512 rhs) {
cpp_unreachable("Not yet implemented");
return lhs;
}
/*!
* \copydoc sse_vec::div
*/
template <>
ETL_OUT_VEC_512D avx512_vec::div<true>(__m512d lhs, __m512d rhs) {
cpp_unreachable("Not yet implemented");
return lhs;
}
} //end of namespace etl
#endif //__AVX512F__
| [
"baptiste.wicht@gmail.com"
] | baptiste.wicht@gmail.com |
8ae86c016cfc4a4c7ebca737d6d1519969ed0a79 | 30c507a74090a6e210c7fc042e464faddfd9dac7 | /src/YourMoneroRequests.h | 0c6d1f55474c2af170c2ef62ea0ae5af788e1c66 | [
"BSD-3-Clause"
] | permissive | woodser/openmonero | 34423edc14470687ec73c9ff444bf8cd9f301f57 | c43cb923476d391f7a8264fcb9041840c8578178 | refs/heads/master | 2020-04-02T19:41:22.422334 | 2018-09-06T04:56:25 | 2018-09-06T04:56:25 | 154,742,700 | 1 | 0 | NOASSERTION | 2018-10-25T21:57:06 | 2018-10-25T21:57:06 | null | UTF-8 | C++ | false | false | 4,199 | h | //
// Created by mwo on 8/12/16.
//
#ifndef RESTBED_XMR_YOURMONEROREQUESTS_H
#define RESTBED_XMR_YOURMONEROREQUESTS_H
#include <iostream>
#include <functional>
#include "version.h"
#include "CurrentBlockchainStatus.h"
#include "MySqlAccounts.h"
#include "../gen/version.h"
#include "../ext/restbed/source/restbed"
#ifndef MAKE_RESOURCE
#define MAKE_RESOURCE(name) auto name = open_monero.make_resource( \
&xmreg::YourMoneroRequests::name, "/" + string(#name));
#endif
// When making *any* change here, bump minor
// If the change is incompatible, then bump major and set minor to 0
// This ensures that RPC_VERSION always increases, that every change
// has its own version, and that clients can just test major to see
// whether they can talk to a given backend without having to know in
// advance which version they will stop working with
// Don't go over 32767 for any of these
#define OPENMONERO_RPC_VERSION_MAJOR 1
#define OPENMONERO_RPC_VERSION_MINOR 3
#define MAKE_OPENMONERO_RPC_VERSION(major,minor) (((major)<<16)|(minor))
#define OPENMONERO_RPC_VERSION \
MAKE_OPENMONERO_RPC_VERSION(OPENMONERO_RPC_VERSION_MAJOR, OPENMONERO_RPC_VERSION_MINOR)
namespace xmreg
{
using namespace std;
using namespace restbed;
using namespace nlohmann;
struct handel_
{
using fetch_func_t = function< void ( const shared_ptr< Session >, const Bytes& ) >;
fetch_func_t request_callback;
handel_(const fetch_func_t& callback);
void operator()(const shared_ptr< Session > session);
};
class YourMoneroRequests
{
// this manages all mysql queries
shared_ptr<MySqlAccounts> xmr_accounts;
public:
YourMoneroRequests(shared_ptr<MySqlAccounts> _acc);
/**
* A login request handler.
*
* It takes address and viewkey from the request
* and check mysql if address/account exist. If yes,
* it returns this account. If not, it creates new one.
*
* Once this complites, a thread is started that looks
* for txs belonging to that account.
*
* @param session a Restbed session
* @param body a POST body, i.e., json string
*/
void
login(const shared_ptr<Session> session, const Bytes & body);
void
get_address_txs(const shared_ptr< Session > session, const Bytes & body);
void
get_address_info(const shared_ptr< Session > session, const Bytes & body);
void
get_unspent_outs(const shared_ptr< Session > session, const Bytes & body);
void
get_random_outs(const shared_ptr< Session > session, const Bytes & body);
void
submit_raw_tx(const shared_ptr< Session > session, const Bytes & body);
void
import_wallet_request(const shared_ptr< Session > session, const Bytes & body);
void
import_recent_wallet_request(const shared_ptr< Session > session, const Bytes & body);
void
get_tx(const shared_ptr< Session > session, const Bytes & body);
void
get_version(const shared_ptr< Session > session, const Bytes & body);
shared_ptr<Resource>
make_resource(function< void (YourMoneroRequests&, const shared_ptr< Session >, const Bytes& ) > handle_func,
const string& path);
static void
generic_options_handler( const shared_ptr< Session > session );
static multimap<string, string>
make_headers(
const multimap<string, string>& extra_headers
= multimap<string, string>());
static void
print_json_log(const string& text, const json& j);
static inline string
body_to_string(const Bytes & body);
static inline json
body_to_json(const Bytes & body);
inline uint64_t
get_current_blockchain_height();
private:
bool
login_and_start_search_thread(
const string& xmr_address,
const string& viewkey,
XmrAccount& acc,
json& j_response);
inline void
session_close(const shared_ptr< Session > session, string response_body);
bool
parse_request(const Bytes& body,
vector<string>& values_map,
json& j_request,
json& j_response);
};
}
#endif //RESTBED_XMR_YOURMONEROREQUESTS_H
| [
"moneroexamples@tuta.io"
] | moneroexamples@tuta.io |
72b1dcf87b81dc9fa039c4af32fa909f4f8fde8c | 612325535126eaddebc230d8c27af095c8e5cc2f | /src/base/strings/string16.cc | 48acbe2b5737bbc7c13abca5112fc65be1d42db6 | [
"BSD-3-Clause"
] | permissive | TrellixVulnTeam/proto-quic_1V94 | 1a3a03ac7a08a494b3d4e9857b24bb8f2c2cd673 | feee14d96ee95313f236e0f0e3ff7719246c84f7 | refs/heads/master | 2023-04-01T14:36:53.888576 | 2019-10-17T02:23:04 | 2019-10-17T02:23:04 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,981 | cc | // Copyright 2013 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "base/strings/string16.h"
#if defined(WCHAR_T_IS_UTF16) && !defined(_AIX)
#error This file should not be used on 2-byte wchar_t systems
// If this winds up being needed on 2-byte wchar_t systems, either the
// definitions below can be used, or the host system's wide character
// functions like wmemcmp can be wrapped.
#elif defined(WCHAR_T_IS_UTF32)
#include <ostream>
#include "base/strings/utf_string_conversions.h"
namespace base {
int c16memcmp(const char16* s1, const char16* s2, size_t n) {
// We cannot call memcmp because that changes the semantics.
while (n-- > 0) {
if (*s1 != *s2) {
// We cannot use (*s1 - *s2) because char16 is unsigned.
return ((*s1 < *s2) ? -1 : 1);
}
++s1;
++s2;
}
return 0;
}
size_t c16len(const char16* s) {
const char16 *s_orig = s;
while (*s) {
++s;
}
return s - s_orig;
}
const char16* c16memchr(const char16* s, char16 c, size_t n) {
while (n-- > 0) {
if (*s == c) {
return s;
}
++s;
}
return 0;
}
char16* c16memmove(char16* s1, const char16* s2, size_t n) {
return static_cast<char16*>(memmove(s1, s2, n * sizeof(char16)));
}
char16* c16memcpy(char16* s1, const char16* s2, size_t n) {
return static_cast<char16*>(memcpy(s1, s2, n * sizeof(char16)));
}
char16* c16memset(char16* s, char16 c, size_t n) {
char16 *s_orig = s;
while (n-- > 0) {
*s = c;
++s;
}
return s_orig;
}
std::ostream& operator<<(std::ostream& out, const string16& str) {
return out << UTF16ToUTF8(str);
}
void PrintTo(const string16& str, std::ostream* out) {
*out << str;
}
} // namespace base
template class std::basic_string<base::char16, base::string16_char_traits>;
#endif // WCHAR_T_IS_UTF32
| [
"2100639007@qq.com"
] | 2100639007@qq.com |
085817edfe050cc8abcf249f188371da9a055a12 | 0a1be59f55b359866370c2815671af22bd96ff51 | /dependencies/skse64/src/skse64/CommonLibSSE/include/RE/hkbGenerator.h | 4c0e7f3dbd2cefb0d6208e8c84767e68f6976b79 | [
"MIT",
"LicenseRef-scancode-warranty-disclaimer"
] | permissive | joelday/papyrus-debug-server | ba18b18d313a414daefdf0d3472b60a12ca21385 | f5c3878cd485ba68aaadf39bb830ca88bf53bfff | refs/heads/master | 2023-01-12T14:34:52.919190 | 2019-12-06T18:41:39 | 2019-12-06T18:41:39 | 189,772,905 | 15 | 10 | MIT | 2022-12-27T11:31:04 | 2019-06-01T20:02:31 | C++ | UTF-8 | C++ | false | false | 639 | h | #pragma once
#include "skse64/GameRTTI.h" // RTTI_hkbGenerator
#include "RE/hkbNode.h" // hkbNode
namespace RE
{
class hkbGenerator : public hkbNode
{
public:
inline static const void* RTTI = RTTI_hkbGenerator;
virtual ~hkbGenerator(); // 00
// override (hkbNode)
virtual void Unk_15(void) override; // 15 - { return 1; }
// add
virtual void Unk_17(void) = 0; // 17
virtual void Unk_18(void); // 18 - { return 0; }
virtual void Unk_19(void); // 19
virtual void Unk_1A(void); // 1A - { return; }
virtual void Unk_1B(void); // 1B - { return; }
};
STATIC_ASSERT(sizeof(hkbGenerator) == 0x48);
}
| [
"joelday@gmail.com"
] | joelday@gmail.com |
0bfea4691b732112ba2b0ce29a77f1055788785f | d403c3e8215a8585eee13c587ab951cf90b7c098 | /TouchGFX/generated/texts/include/texts/TextKeysAndLanguages.hpp | 22c1658f759e60a3934ef0e8d0a8aa4c4c3c792b | [] | no_license | kasmirov/stm32f746g-disco-stopwatch | bd6d9c6956817e59c4e6d6ddcc1fc1b869e88071 | 2d9035c96035e6e18cc82958ffd1fee09df9a244 | refs/heads/master | 2023-04-17T04:11:53.899878 | 2021-04-30T18:25:52 | 2021-04-30T18:25:52 | 363,223,884 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 934 | hpp | /* DO NOT EDIT THIS FILE */
/* This file is autogenerated by the text-database code generator */
#ifndef TEXTKEYSANDLANGUAGES_HPP
#define TEXTKEYSANDLANGUAGES_HPP
typedef enum
{
GB,
NUMBER_OF_LANGUAGES
} LANGUAGES;
typedef enum
{
T_SINGLEUSEID1,
T_SINGLEUSEID2,
T_SINGLEUSEID3,
T_SINGLEUSEID4,
T_SINGLEUSEID5,
T_SINGLEUSEID7,
T_SINGLEUSEID8,
T_SINGLEUSEID9,
T_SINGLEUSEID10,
T_SINGLEUSEID11,
T_SINGLEUSEID12,
T_SINGLEUSEID13,
T_SINGLEUSEID14,
T_SINGLEUSEID15,
T_SINGLEUSEID16,
T_SINGLEUSEID17,
T_SINGLEUSEID18,
T_SINGLEUSEID19,
T_SINGLEUSEID20,
T_SINGLEUSEID21,
T_SINGLEUSEID22,
T_SINGLEUSEID23,
T_SINGLEUSEID24,
T_SINGLEUSEID25,
T_SINGLEUSEID26,
T_SINGLEUSEID27,
T_SINGLEUSEID28,
T_SINGLEUSEID29,
T_SINGLEUSEID30,
T_SINGLEUSEID31,
NUMBER_OF_TEXT_KEYS
} TEXTS;
#endif // TEXTKEYSANDLANGUAGES_HPP
| [
"kasmirov@yandex.ru"
] | kasmirov@yandex.ru |
86f3be70cd317123e593bc5dccbab8a39d1a5e2a | b7f3edb5b7c62174bed808079c3b21fb9ea51d52 | /chrome/browser/ui/webui/management_ui_browsertest.cc | 961468b5db8670f09312fb8afd08d2ae47ba6eca | [
"BSD-3-Clause"
] | permissive | otcshare/chromium-src | 26a7372773b53b236784c51677c566dc0ad839e4 | 64bee65c921db7e78e25d08f1e98da2668b57be5 | refs/heads/webml | 2023-03-21T03:20:15.377034 | 2020-11-16T01:40:14 | 2020-11-16T01:40:14 | 209,262,645 | 18 | 21 | BSD-3-Clause | 2023-03-23T06:20:07 | 2019-09-18T08:52:07 | null | UTF-8 | C++ | false | false | 4,933 | cc | // Copyright 2019 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "base/json/json_reader.h"
#include "base/strings/utf_string_conversions.h"
#include "chrome/browser/policy/chrome_browser_policy_connector.h"
#include "chrome/browser/policy/profile_policy_connector.h"
#include "chrome/browser/profiles/profile.h"
#include "chrome/browser/ui/browser.h"
#include "chrome/browser/ui/webui/management_ui.h"
#include "chrome/browser/ui/webui/management_ui_handler.h"
#include "chrome/test/base/in_process_browser_test.h"
#include "chrome/test/base/ui_test_utils.h"
#include "components/policy/core/browser/browser_policy_connector.h"
#include "components/policy/core/common/mock_configuration_policy_provider.h"
#include "components/strings/grit/components_strings.h"
#include "content/public/browser/browser_context.h"
#include "content/public/test/browser_test.h"
#include "content/public/test/browser_test_utils.h"
#include "ui/base/l10n/l10n_util.h"
class ManagementUITest : public InProcessBrowserTest {
public:
ManagementUITest() = default;
~ManagementUITest() override = default;
void SetUpInProcessBrowserTestFixture() override {
EXPECT_CALL(provider_, IsInitializationComplete(testing::_))
.WillRepeatedly(testing::Return(true));
policy::BrowserPolicyConnector::SetPolicyProviderForTesting(&provider_);
}
void VerifyTexts(base::Value* actual_values,
std::map<std::string, base::string16>& expected_values) {
base::DictionaryValue* values_as_dict = NULL;
actual_values->GetAsDictionary(&values_as_dict);
for (const auto& val : expected_values) {
base::string16 actual_value;
values_as_dict->GetString(val.first, &actual_value);
ASSERT_EQ(actual_value, val.second);
}
}
policy::MockConfigurationPolicyProvider* provider() { return &provider_; }
policy::ProfilePolicyConnector* profile_policy_connector() {
return browser()->profile()->GetProfilePolicyConnector();
}
private:
policy::MockConfigurationPolicyProvider provider_;
DISALLOW_COPY_AND_ASSIGN(ManagementUITest);
};
#if !defined(OS_CHROMEOS)
IN_PROC_BROWSER_TEST_F(ManagementUITest, ManagementStateChange) {
profile_policy_connector()->OverrideIsManagedForTesting(false);
ui_test_utils::NavigateToURL(browser(), GURL("chrome://management"));
// The browser is not managed.
const std::string javascript =
"window.ManagementBrowserProxyImpl.getInstance()"
" .getContextualManagedData()"
" .then(managed_result => "
" domAutomationController.send(JSON.stringify(managed_result)));";
content::WebContents* contents =
browser()->tab_strip_model()->GetActiveWebContents();
std::string unmanaged_json;
ASSERT_TRUE(content::ExecuteScriptAndExtractString(contents, javascript,
&unmanaged_json));
std::unique_ptr<base::Value> unmanaged_value_ptr =
base::JSONReader::ReadDeprecated(unmanaged_json);
std::map<std::string, base::string16> expected_unmanaged_values{
{"browserManagementNotice",
l10n_util::GetStringFUTF16(
IDS_MANAGEMENT_NOT_MANAGED_NOTICE,
base::UTF8ToUTF16(chrome::kManagedUiLearnMoreUrl))},
{"extensionReportingTitle",
l10n_util::GetStringUTF16(IDS_MANAGEMENT_EXTENSIONS_INSTALLED)},
{"pageSubtitle",
l10n_util::GetStringUTF16(IDS_MANAGEMENT_NOT_MANAGED_SUBTITLE)},
};
VerifyTexts(unmanaged_value_ptr.get(), expected_unmanaged_values);
// The browser is managed.
profile_policy_connector()->OverrideIsManagedForTesting(true);
policy::PolicyMap policy_map;
policy_map.Set("test-policy", policy::POLICY_LEVEL_MANDATORY,
policy::POLICY_SCOPE_MACHINE, policy::POLICY_SOURCE_PLATFORM,
std::make_unique<base::Value>("hello world"), nullptr);
provider()->UpdateExtensionPolicy(policy_map,
kOnPremReportingExtensionBetaId);
contents = browser()->tab_strip_model()->GetActiveWebContents();
std::string managed_json;
ASSERT_TRUE(content::ExecuteScriptAndExtractString(contents, javascript,
&managed_json));
std::unique_ptr<base::Value> managed_value_ptr =
base::JSONReader::ReadDeprecated(managed_json);
std::map<std::string, base::string16> expected_managed_values{
{"browserManagementNotice",
l10n_util::GetStringFUTF16(
IDS_MANAGEMENT_BROWSER_NOTICE,
base::UTF8ToUTF16(chrome::kManagedUiLearnMoreUrl))},
{"extensionReportingTitle",
l10n_util::GetStringUTF16(IDS_MANAGEMENT_EXTENSIONS_INSTALLED)},
{"pageSubtitle", l10n_util::GetStringUTF16(IDS_MANAGEMENT_SUBTITLE)},
};
VerifyTexts(managed_value_ptr.get(), expected_managed_values);
}
#endif // !defined(OS_CHROMEOS)
| [
"commit-bot@chromium.org"
] | commit-bot@chromium.org |
1a6be8608f1271fd9fee74deb82c1bc25e192a94 | 52c2f566dafcb10900db9d46d27fed5854488407 | /include/utility/thread_pool.h | cbaf7a2162ca4efde980ac3d19f03c6597330579 | [
"MIT"
] | permissive | XinShuoWang/utility | d478f937c12bbbf0817001ac8d24584730c799db | 799c42d9dda8ba06499c975fcaa45d510cbf58ba | refs/heads/main | 2023-03-24T21:12:15.603111 | 2021-03-15T05:25:33 | 2021-03-15T05:25:33 | 309,296,320 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,275 | h | //
// Created by wangxinshuo on 2021/2/26.
//
#ifndef UTILITY_INCLUDE_UTILITY_THREAD_POOL_H_
#define UTILITY_INCLUDE_UTILITY_THREAD_POOL_H_
#include <vector>
#include <queue>
#include <condition_variable>
#include <mutex>
#include <functional>
#include <thread>
/**
* Simple ThreadPool that creates `threadCount` threads upon its creation,
* and pulls from a queue to get new jobs.
*
* This class requires a number of c++11 features be present in your compiler.
*/
class ThreadPool {
private:
std::vector<std::thread> threads_;
std::queue<std::function<void()>> queue_;
int jobs_left_;
bool is_running_;
std::condition_variable jobs_queued_condition_;
std::condition_variable jobs_done_condition_;
std::mutex jobs_left_mutex_;
std::mutex queue_mutex_;
public:
inline explicit ThreadPool(int threadCount) : jobs_left_(0), is_running_(true) {
threads_.reserve(threadCount);
for (int index = 0; index < threadCount; ++index) {
threads_.emplace_back([&] {
/**
* Take the next job in the queue and run it.
* Notify the main thread that a job has completed.
*/
do {
std::function<void()> job;
// scoped lock
{
std::unique_lock<std::mutex> lock(queue_mutex_);
// Wait for a job if we don't have any.
jobs_queued_condition_.wait(lock, [&] { return !queue_.empty(); });
// Get job from the queue
job = queue_.front();
queue_.pop();
}
job();
// scoped lock
{
std::lock_guard<std::mutex> lock(jobs_left_mutex_);
--jobs_left_;
}
jobs_done_condition_.notify_one();
} while (is_running_);
});
}
}
/**
* JoinAll on deconstruction
*/
inline ~ThreadPool() { JoinAll(); }
/**
* Add a new job to the pool. If there are no jobs in the queue,
* a thread is woken up to take the job. If all threads are busy,
* the job is added to the end of the queue.
*/
inline void AddJob(const std::function<void()> &job) {
// scoped lock
{
std::lock_guard<std::mutex> lock(queue_mutex_);
queue_.push(job);
}
// scoped lock
{
std::lock_guard<std::mutex> lock(jobs_left_mutex_);
++jobs_left_;
}
jobs_queued_condition_.notify_one();
}
/**
* Join with all threads. Block until all threads have completed.
* The queue may be filled after this call, but the threads will
* be done. After invoking `ThreadPool::JoinAll`, the pool can no
* longer be used.
*/
inline void JoinAll() {
if (is_running_) {
is_running_ = false;
// add empty jobs to wake up threads
const int threadCount = threads_.size();
for (int index = 0; index < threadCount; ++index) {
AddJob([] {});
}
// note that we're done, and wake up any thread that's
// waiting for a new job
jobs_queued_condition_.notify_all();
for (std::thread &thread : threads_) {
if (thread.joinable()) {
thread.join();
}
}
}
}
/**
* Wait for the pool to empty before continuing.
* This does not call `std::thread::join`, it only waits until
* all jobs have finished executing.
*/
inline void WaitAll() {
std::unique_lock<std::mutex> lock(jobs_left_mutex_);
jobs_done_condition_.wait(lock, [&] { return jobs_left_ == 0; });
}
/**
* Get the vector of threads themselves, in order to set the
* affinity, or anything else you might want to do
*/
inline std::vector<std::thread> &GetThreads() { return threads_; }
/**
* Process the next job in the queue to run it in the calling thread
*/
inline bool ExecuteNextJob() {
std::function<void()> job;
// scoped lock
{
std::lock_guard<std::mutex> lock(queue_mutex_);
if (queue_.empty()) {
return false;
}
// Get job from the queue
job = queue_.front();
queue_.pop();
}
job();
// scoped lock
{
std::lock_guard<std::mutex> lock(jobs_left_mutex_);
--jobs_left_;
}
jobs_done_condition_.notify_one();
return true;
}
};
#endif //UTILITY_INCLUDE_UTILITY_THREAD_POOL_H_
| [
"xinshuowang@163.com"
] | xinshuowang@163.com |
26220f7de75730908c12f831c215004232779875 | 9a50df4e0977fd046aa27eeb37c285aa8a5b9882 | /Hero.h | 887067cdb5c5e5871194cd31b093bba6bbbceaba | [] | no_license | apleschakowa123/Labrab | 8dda00b1735567e37ed21e4831b04495dcf1cdf8 | f8e72d957d7ba89dc720fc18fc47c99e5a29c123 | refs/heads/master | 2020-04-07T12:48:49.045694 | 2018-12-03T16:52:21 | 2018-12-03T16:52:21 | 158,382,160 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 237 | h | #pragma once
#include "Heroes.h"
class Hero :
public Heroes
{
public:
Hero(std::string name = "", std::string gun = "", std::string skills = "");
Hero(const Hero &hero);
~Hero();
void enterHero();
void outHero();
};
| [
"noreply@github.com"
] | noreply@github.com |
a262be077bcbab96b77899c062cb5f635971de95 | 1a0ea58d8ae4b03180b75bf4156ab4238d21ae92 | /PA2/vendingMachine.h | 7de7e759262da35d43a002b6c810cca09ff5ac45 | [] | no_license | wesbeard/CSI-240 | ffe32b1fc35cef9e7c9310b0e36144fdf8c0191d | 5cb96e03f3db2df9ce112543972f928133380ffd | refs/heads/master | 2021-02-05T21:57:59.965767 | 2020-02-28T19:34:11 | 2020-02-28T19:34:11 | 243,839,187 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,336 | h | /*Author: Halfred Greenhand
Class: CSI240 Advanced Programming
Assignment: Programming Assignment 2
Date Assigned: 2/6/2019
Due Date: 2/13/2019
Description:
A vending machine program that outputs a menu with a selection of items to buy. Each item has a price and stock which can be changed and updated from a hidden manager menu (m).
Certification of Authenticity:
I certify that this is entirely my own work, except where I have given fully-documented references to the work of others. I understand the definition and consequences of plagiarism and acknowledge that the assessor of this assignment may, for the purpose of assessing this assignment:
- Reproduce this assignment and provide a copy to another member of academic staff; and/or
- Communicate a copy of this assignment to a plagiarism checking service (which may then retain a copy of this assignment on its database for the purpose of future plagiarism checking)*/
#ifndef VM_H
#define VM_H
#include <iostream>
#include <string>
#include <fstream>
#include <iomanip>
#include <cstdlib>
#include <sstream>
#include <windows.h>
using namespace std;
const int MAX_SIZE = 20;
const int MIN_SIZE = 6;
const double DEFAULT_MONEY = 5.00;
const int DEFAULT_STOCK = 20;
const double DEFAULT_PRICE = 1;
const string DEFAULT_PASSWORD = "password";
const string MACHINE_FILE = "data.txt";
const string DEFAULT_DRINKS[MIN_SIZE] = {"Nuka Cola Classic", "Nuka Cola Cherry",
"Nuka Cola Orange", "Nuka Cola Wild",
"Nuka Cola Victory", "Nuka Cola Quantum"};
struct Items
{
string mName;
int mStock;
double mPrice;
};
class VendingMachine
{
private:
string mPassword;
double mMoney;
int mNumItems;
Items mDrinks[MAX_SIZE];
public:
VendingMachine();
~VendingMachine();
void clearScreen();
void displayMenu();
void menu();
void moneyInput(int selection);
void vendDrink(double change, int vend);
void managerPassword();
void managerMenu();
void changePassword();
void machineInfo();
void collectMoney();
void restockItems();
void changePrice();
void addItem();
void removeItem();
void updateFile();
void shutdown();
};
#endif | [
"noreply@github.com"
] | noreply@github.com |
7d8cdc65aa9e2db4be9afa2feefd1dd8deddbd77 | 901136494c27d559e6d70797cb367e84413e4d40 | /10077/10077.cpp | b60daafd5ff8456631bb5481fd807368a9e3eefc | [] | no_license | greati/programming_challenges | dbd619d6d30d9557db05b556bafc5d1c4f352b99 | c23eaac0f7574ab00daa4566a0adee9b2d7d0e98 | refs/heads/master | 2020-05-21T19:10:00.348688 | 2017-06-19T05:04:41 | 2017-06-19T05:04:41 | 61,368,733 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 698 | cpp | #include <bits/stdc++.h>
using namespace std;
/* k1/k2: queremos, não muda
* m1/m2: raiz atual
* n1/n2: gerador esquerdo da raiz atual
* p1/p2: gerador direito da raiz atual
* */
void search(int k1, int k2, int m1, int m2, int n1, int n2, int p1, int p2){
if (k1 == m1 && k2 == m2)
return;
double rk = (k1+0.0)/k2;
double rm = (m1+0.0)/m2;
if (rk >= rm) {
std::cout << "R";
search(k1,k2,m1+p1, m2+p2, m1, m2, p1, p2);
} else {
std::cout << "L";
search(k1,k2,m1+n1, m2+n2, n1, n2, m1, m2);
}
}
int main(void) {
int m, n;
while(true) {
scanf("%d%d", &m, &n);
if (m == 1 and n == 1) break;
search(m, n, 1, 1, 0, 1, 1, 0);
std::cout << std::endl;
}
return 0;
}
| [
"greati@ufrn.edu.br"
] | greati@ufrn.edu.br |
dfd3fa50fb6cf65d78ed1a71fa87810899e6bcf7 | ec68c973b7cd3821dd70ed6787497a0f808e18e1 | /Cpp/SDK/Action_Mod_WildfireShot_parameters.h | f8c5ba7b7255ca3bf9a9670aab8ede1e2f15d489 | [] | no_license | Hengle/zRemnant-SDK | 05be5801567a8cf67e8b03c50010f590d4e2599d | be2d99fb54f44a09ca52abc5f898e665964a24cb | refs/heads/main | 2023-07-16T04:44:43.113226 | 2021-08-27T14:26:40 | 2021-08-27T14:26:40 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,265 | h | #pragma once
// Name: Remnant, Version: 1.0
/*!!DEFINE!!*/
/*!!HELPER_DEF!!*/
/*!!HELPER_INC!!*/
#ifdef _MSC_VER
#pragma pack(push, 0x01)
#endif
namespace CG
{
//---------------------------------------------------------------------------
// Parameters
//---------------------------------------------------------------------------
// Function Action_Mod_WildfireShot.Action_Mod_WildfireShot_C.ApplyFireDOTStacking
struct UAction_Mod_WildfireShot_C_ApplyFireDOTStacking_Params
{
};
// Function Action_Mod_WildfireShot.Action_Mod_WildfireShot_C.GetWeapon
struct UAction_Mod_WildfireShot_C_GetWeapon_Params
{
};
// Function Action_Mod_WildfireShot.Action_Mod_WildfireShot_C.GetDamageCause
struct UAction_Mod_WildfireShot_C_GetDamageCause_Params
{
};
// Function Action_Mod_WildfireShot.Action_Mod_WildfireShot_C.ReadValues
struct UAction_Mod_WildfireShot_C_ReadValues_Params
{
};
// Function Action_Mod_WildfireShot.Action_Mod_WildfireShot_C.OnActionStart
struct UAction_Mod_WildfireShot_C_OnActionStart_Params
{
};
// Function Action_Mod_WildfireShot.Action_Mod_WildfireShot_C.ExecuteUbergraph_Action_Mod_WildfireShot
struct UAction_Mod_WildfireShot_C_ExecuteUbergraph_Action_Mod_WildfireShot_Params
{
};
}
#ifdef _MSC_VER
#pragma pack(pop)
#endif
| [
"zp2kshield@gmail.com"
] | zp2kshield@gmail.com |
1e59a6bab2ca9d73ec2ccfcda66d82a1d0043bff | 4757494c19fa3134ce9960cca97d973e0c31d203 | /C++/오목+리플레이+이어하기 기능구현/오목+리플+이어하기 4차/Character.h | 034953f235d7ccac36567262ed50680651a892a4 | [] | no_license | HyeongBinK/C_PlusPlus | 1733650f1875b53d1789e4694d5ffff743ab56b4 | cfd6a3167ebedcc8e05c7fb7362d371290b2bc62 | refs/heads/main | 2023-08-14T11:50:25.384588 | 2021-09-24T07:11:58 | 2021-09-24T07:11:58 | 409,859,279 | 0 | 0 | null | null | null | null | UHC | C++ | false | false | 2,848 | h | #pragma once
#include"Mecro.h"
#include"MapDraw.h"
enum KEY
{
KEY_LEFT = 'A',
KEY_LEFT2 = 'a',
KEY_RIGHT = 'D',
KEY_RIGHT2 = 'd',
KEY_UP= 'W',
KEY_UP2 = 'w',
KEY_DOWN = 'S',
KEY_DOWN2 = 's',
KEY_ESC = 27,
KEY_ENTER = 13,
KEY_N = 78,
KEY_SMALL_N = 110,
KEY_P = 80,
KEY_SMALL_P =112
};
#define MYSTONEFLAG 10
#define ENEMYSTONEFLAG 20
#define OMOCCLEAR 5
//돌정보저장할것
struct Position
{
int m_iLocationX;
int m_iLocationY;
};
class Character
{
private:
int m_iWidth;
int m_iHeight;
//int m_iXCharcterLocation;
//int m_iYCharcterLocation;
int m_iUndoCount;
int m_iMemoUndoCount;
int m_iStoneMax;
int m_iStoneCount;
string m_strCharacterName;
string m_strCursor;
string m_strStone;
MapDraw m_DrawManager;
Position Cursor;
Position* SaveStone;
public:
Character();
//돌이있는지 체크하는 함수
inline bool CheckStone(int x, int y);
//맵사이즈변경후 맵초기정보변경함수
void ChangeMap(int x, int y);
//초기정보 입력함수
void FirstDataInpit(string Cursor, string Stone, int Width, int Height);
void SetStone(int x, int y);
void CharacterPlay(Character* EnemyStone, char* ch, int GameTurn, bool* VictoryCheck);
//승리체크함수
bool VictoryFlag2();
bool CheckVictory2(int x, int y, int AddX, int AddY);
//돌위치정보저장함수
void SaveStoneFile(string Player);
// 돌위치 정보 재외한 정보 저장
void SaveFile(string Player);
//돌위치정보불러오기함수
void LoadStoneFile(string Player, int StoneNum);
//돌위치 정보 재외한 정보 불러오기 함수
void LoadFile(string Player);
//돌정보 일괄 저장함수
void SaveFile2(string SaveFileName);
//돌정보 일괄 로드함수
void LoadFile2(ifstream& load);
inline string GetCharacterName()
{
return m_strCharacterName;
}
inline int GetUndoCount()
{
return m_iUndoCount;
}
//돌정보들송출
inline Position* ExportStoneLocation()
{
return SaveStone;
}
//이번턴 돌정보 송출
inline Position GetStoneLocation()
{
return SaveStone[m_iStoneCount];
}
//돌X좌표송출
inline int GetXLocation(int i)
{
return SaveStone[i].m_iLocationX;
}
//돌Y좌표 송출
inline int GetYLocation(int i)
{
return SaveStone[i].m_iLocationY;
}
inline int GetStoneCount()
{
return m_iStoneCount;
}
inline string GetStoneShape()
{
return m_strStone;
}
inline void PlayerNameInput(string str)
{
m_strCharacterName = str;
}
inline void ChangeCursorShape(string str)
{
m_strCursor = str;
}
inline void ChangeStoneShape(string str)
{
m_strStone = str;
}
inline void ChangeUndoCount(int num)
{
m_iUndoCount = num;
m_iMemoUndoCount = m_iUndoCount;
}
//무르기함수
inline void Undo()
{
m_iStoneCount--;
}
inline int GetStoneMax()
{
return m_iStoneMax;
}
~Character();
};
| [
"godkim3904@naver.com"
] | godkim3904@naver.com |
e08993284c5b8514420306e4768b016c58185a50 | 06f0b4758414e058ac66b87c959651d3d087aee6 | /JuceLibraryCode/modules/juce_core/memory/juce_SharedResourcePointer.h | 83580acaaa2e9b88f73f0bbe1b6cb94cd94204fa | [] | no_license | nllve/SimpleScope | 404c2a21f342b8282c5a2bf54656fcb6eb8d87fc | 4fbb5edc97c6de65c50f0e51cbef29f720c81cf7 | refs/heads/master | 2021-01-19T20:47:50.044467 | 2017-04-17T19:06:08 | 2017-04-17T19:06:08 | 88,554,327 | 0 | 1 | null | 2017-04-17T21:57:28 | 2017-04-17T21:57:28 | null | UTF-8 | C++ | false | false | 6,404 | h | /*
==============================================================================
This file is part of the JUCE library.
Copyright (c) 2016 - ROLI Ltd.
Permission is granted to use this software under the terms of the ISC license
http://www.isc.org/downloads/software-support-policy/isc-license/
Permission to use, copy, modify, and/or distribute this software for any
purpose with or without fee is hereby granted, provided that the above
copyright notice and this permission notice appear in all copies.
THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH REGARD
TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND
FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT,
OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF
USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
OF THIS SOFTWARE.
-----------------------------------------------------------------------------
To release a closed-source product which uses other parts of JUCE not
licensed under the ISC terms, commercial licenses are available: visit
www.juce.com for more information.
==============================================================================
*/
#pragma once
//==============================================================================
/**
A smart-pointer that automatically creates and manages the lifetime of a
shared static instance of a class.
The SharedObjectType template type indicates the class to use for the shared
object - the only requirements on this class are that it must have a public
default constructor and destructor.
The SharedResourcePointer offers a pattern that differs from using a singleton or
static instance of an object, because it uses reference-counting to make sure that
the underlying shared object is automatically created/destroyed according to the
number of SharedResourcePointer objects that exist. When the last one is deleted,
the underlying object is also immediately destroyed. This allows you to use scoping
to manage the lifetime of a shared resource.
Note: the construction/deletion of the shared object must not involve any
code that makes recursive calls to a SharedResourcePointer, or you'll cause
a deadlock.
Example:
@code
// An example of a class that contains the shared data you want to use.
struct MySharedData
{
// There's no need to ever create an instance of this class directly yourself,
// but it does need a public constructor that does the initialisation.
MySharedData()
{
sharedStuff = generateHeavyweightStuff();
}
Array<SomeKindOfData> sharedStuff;
};
struct DataUserClass
{
DataUserClass()
{
// Multiple instances of the DataUserClass will all have the same
// shared common instance of MySharedData referenced by their sharedData
// member variables.
useSharedStuff (sharedData->sharedStuff);
}
// By keeping this pointer as a member variable, the shared resource
// is guaranteed to be available for as long as the DataUserClass object.
SharedResourcePointer<MySharedData> sharedData;
};
@endcode
*/
template <typename SharedObjectType>
class SharedResourcePointer
{
public:
/** Creates an instance of the shared object.
If other SharedResourcePointer objects for this type already exist, then
this one will simply point to the same shared object that they are already
using. Otherwise, if this is the first SharedResourcePointer to be created,
then a shared object will be created automatically.
*/
SharedResourcePointer()
{
initialise();
}
SharedResourcePointer (const SharedResourcePointer&)
{
initialise();
}
/** Destructor.
If no other SharedResourcePointer objects exist, this will also delete
the shared object to which it refers.
*/
~SharedResourcePointer()
{
auto& holder = getSharedObjectHolder();
const SpinLock::ScopedLockType sl (holder.lock);
if (--(holder.refCount) == 0)
holder.sharedInstance = nullptr;
}
/** Returns the shared object. */
operator SharedObjectType*() const noexcept { return sharedObject; }
/** Returns the shared object. */
SharedObjectType& get() const noexcept { return *sharedObject; }
/** Returns the object that this pointer references.
The pointer returned may be a nullptr, of course.
*/
SharedObjectType& getObject() const noexcept { return *sharedObject; }
/** Returns the shared object. */
SharedObjectType* operator->() const noexcept { return sharedObject; }
/** Returns the number of SharedResourcePointers that are currently holding the shared object. */
int getReferenceCount() const noexcept { return getSharedObjectHolder().refCount; }
private:
struct SharedObjectHolder : public ReferenceCountedObject
{
SpinLock lock;
ScopedPointer<SharedObjectType> sharedInstance;
int refCount;
};
static SharedObjectHolder& getSharedObjectHolder() noexcept
{
static void* holder [(sizeof (SharedObjectHolder) + sizeof(void*) - 1) / sizeof(void*)] = { 0 };
return *reinterpret_cast<SharedObjectHolder*> (holder);
}
SharedObjectType* sharedObject;
void initialise()
{
auto& holder = getSharedObjectHolder();
const SpinLock::ScopedLockType sl (holder.lock);
if (++(holder.refCount) == 1)
holder.sharedInstance = new SharedObjectType();
sharedObject = holder.sharedInstance;
}
// There's no need to assign to a SharedResourcePointer because every
// instance of the class is exactly the same!
SharedResourcePointer& operator= (const SharedResourcePointer&) JUCE_DELETED_FUNCTION;
JUCE_LEAK_DETECTOR (SharedResourcePointer)
};
| [
"jonathantcrawford@icloud.com"
] | jonathantcrawford@icloud.com |
f742fe6bdc99ed63d03d4f5463874b6b7971856d | 756f58f3844cbb426bf6f8b5deceeeaa55c2fcb6 | /libs/Digimarc/include/DigimarcEmbeddedSystems/Configuration/DetectionShape.h | aa666af12794a59a1818b4eb9f9f37cbe471add9 | [] | no_license | JiaquanLi/Algorithm-Server | 7e4345f5a7ef7c847bb516b45348a01006c23a25 | 7b10f19120b72638984b4d30f4650931643340cc | refs/heads/master | 2020-03-28T22:31:09.376675 | 2018-10-16T03:20:21 | 2018-10-16T03:20:21 | 149,238,793 | 2 | 2 | null | 2018-10-12T04:18:17 | 2018-09-18T06:23:37 | C++ | UTF-8 | C++ | false | false | 8,069 | h | #ifndef DMRC_DESSDK_DETECTIONSHAPE_H
#define DMRC_DESSDK_DETECTIONSHAPE_H
#include "../SDK/ApiDefs.h"
#include "DetectionShapeBinaryData.h"
#include "PerspectiveParams.h"
#include "StatusCode.h"
namespace DigimarcEmbeddedSystems {
enum DetectionShapeIntensityLevel {
MediumIntensity
, HighIntensity
};
/** A geometric characterization of how the detector will search for a mark within the image. A detectionShape represents a "cone" of search parameter
* space whose axis is specified by a PerspectiveParams object. The member variables of the DetectionShape can be used to widen or narrow this cone,
* or to increase the density of perspective distortions attempted within. Please see @ref detectionShapePage "DetectionShape" for more information.
*/
class DetectionShape {
public:
/** Constructs a detectionShape object with the provided PerspectiveParams and DetectionShapeIntensityLevel.
* @param[in] perspectiveParams With its tilt and bearing, the perspectiveParams object sets the base level perspective transformation, or the
* axis of the perspective "cone" defined by the detectionShape. It also sets the focalLength and principalPoint of the image, which will be used
* during the perspective correction process.
* @param[in] searchIntensity characterizes the properties of the search cone defined by the detectionShape. These include the ranges of tilt and
* fineScale used in the search, as well as the number of tilts, fineScales, bearings, and rotations. A higher level of searchIntensity results
* in a wider and/or denser cone, which will exhibit better decoding robustness but lower performance. All of these parameters can be fine-tuned
* individually as well. Please see @ref detectionShapePage "DetectionShape" for more information.
*/
DMRC_API DetectionShape(PerspectiveParams perspectiveParams, DetectionShapeIntensityLevel searchIntensity);
/** Constructs a DetectionShape object whose members are all set to zero. After using this constructor, set every value manually, including
* the values of the PerspectiveParams member object. Otherwise the detector will ignore DetectionShape when running.
*/
DMRC_API DetectionShape();
/** This provides the DetectionShape with the axis of its transformation cone, the focalLength, and the principalPoint. */
PerspectiveParams perspective;
/** Maximum tilt at which the detector will search the image for a mark.
* Values are in degrees, and a tilt of zero corresponds to an image plane that is perpendicular to the optical axis.
*/
float tiltMax;
/** Minimum tilt at which the detector will search the image for a mark.
* Values are in degrees, and a tilt of zero corresponds to an image plane that is perpendicular to the optical axis.
*/
float tiltMin;
/** The detector will split the range of tilts defined by @ref DigimarcEmbeddedSystems::DetectionShape::tiltMin "tiltMin"
* and @ref DigimarcEmbeddedSystems::DetectionShape::tiltMax "tiltMax" into
* @ref DigimarcEmbeddedSystems::DetectionShape::numberOfTilts "numberOfTilts" equally spaced tilts,
* for every combination of bearing, scale, and rotation.
*/
unsigned int numberOfTilts;
/** Maximum bearing at which the detector will search the image for a mark.
* Values are in degrees.
*/
float bearingMax;
/** Minimum bearing at which the detector will search the image for a mark.
* Values are in degrees.
*/
float bearingMin;
/** The detector will split the range of bearings defined by @ref DigimarcEmbeddedSystems::DetectionShape::bearingMin "bearingMin"
* and @ref DigimarcEmbeddedSystems::DetectionShape::bearingMax "bearingMax" into
* @ref DigimarcEmbeddedSystems::DetectionShape::numberOfBearings "numberOfBearings" equally spaced bearings,
* for every combination of tilt, scale, and rotation.
*/
unsigned int numberOfBearings;
/** Maximum rotation at which the detector will search the image for a mark. This is an exclusive endpoint.
* Values are in degrees. The rotation range, or rotationMax - rotationMin, cannot be less than one.
* Note that because the detector takes advantage of a certain symmetry, it only needs 180 degrees of rotation
* to cover all possible rotations. Therefore, there is never any reason for the difference between
* @ref DigimarcEmbeddedSystems::DetectionShape::rotationMax "rotationMax" and
* @ref DigimarcEmbeddedSystems::DetectionShape::rotationMin "rotationMin" to be greater than 180 degrees.
*/
float rotationMax;
/** Minimum rotation at which the detector will search the image for a mark.
* Values are in degrees. The rotation range, or rotationMax - rotationMin, cannot be less than one.
* Note that because the detector takes advantage of a certain symmetry, it only needs 180 degrees of rotation
* to cover all possible rotations. Therefore, there is never any reason for the difference between
* @ref DigimarcEmbeddedSystems::DetectionShape::rotationMax "rotationMax" and
* @ref DigimarcEmbeddedSystems::DetectionShape::rotationMax "rotationMin" to be greater than 180 degrees.
*/
float rotationMin;
/** Number of rotations at which the detector will search the image for a mark.
* The detector will split the range of rotations defined by @ref DigimarcEmbeddedSystems::DetectionShape::rotationMax "rotationMax"
* and @ref DigimarcEmbeddedSystems::DetectionShape::rotationMin "rotationMin" into equally spaced rotations
* for every combination of tilt, bearing, and scale.
*/
unsigned int numberOfRotations;
/** Minimum finescale at which the detector will search the image for a mark. See @ref fineScalePage "Fine Scale Specification"
* for more information about fineScale. This variable is mutually exclusive with the member variable
* @ref DigimarcEmbeddedSystems::Configuration::fineScaleStart "fineScaleStart" in the class
* @ref DigimarcEmbeddedSystems::Configuration "Configuration". Conceptually they do the same thing, but when
* a detectionShape is added to a block, these finescale settings are used in place of the default ones in
* @ref DigimarcEmbeddedSystems::Configuration "Configuration", for that particular block. If, for a given block, a detectionShape is
* not used, that block will fall back to using the default @ref DigimarcEmbeddedSystems::Configuration::fineScaleStart "fineScaleStart".
*/
float finescaleStart;
/** Minimum finescale at which the detector will search the image for a mark. See @ref fineScalePage "Fine Scale Specification"
* for more information about fineScale. This variable is mutually exclusive with the member variable
* @ref DigimarcEmbeddedSystems::Configuration::fineScaleStart "fineScaleStart" in the class
* @ref DigimarcEmbeddedSystems::Configuration "Configuration". Conceptually they do the same thing, but when
* a detectionShape is added to a block, these finescale settings are used in place of the default ones in
* @ref DigimarcEmbeddedSystems::Configuration "Configuration", for that particular block. If, for a given block, a detectionShape is
* not used, that block will fall back to using the default @ref DigimarcEmbeddedSystems::Configuration::fineScaleStart "fineScaleStart".
*/
float finescaleRange;
/** The detector will split the range of finescales defined by @ref DigimarcEmbeddedSystems::DetectionShape::finescaleStart "finescaleStart"
* and @ref DigimarcEmbeddedSystems::DetectionShape::finescaleRange "finescaleRange" into
* @ref DigimarcEmbeddedSystems::DetectionShape::numberOfFinescales "numberOfFinescales" equally spaced finescales,
* for every combination of tilt, bearing, and rotation.
*/
unsigned int numberOfFinescales;
/** An object for setting precomputed binary data to enable faster initialization. See @ref detectionShapeQuickInitialization
* "DetectionShape Quick Initialization" for more information.
*/
DetectionShapeBinaryData binaryData;
};
//! @cond
namespace Internal {
StatusCode Copy(const DetectionShape& src, DetectionShape& dst);
}
//! @endcond
}
#endif
| [
"119644055@qq.com"
] | 119644055@qq.com |
b0f33ef838a99883c7c29a2f4ca7796596e49ef5 | bb6ebff7a7f6140903d37905c350954ff6599091 | /chrome/browser/prefs/tracked/tracked_preference.h | 37ce00d479b7d734b521f2fa632113e3f1a73312 | [
"BSD-3-Clause"
] | permissive | PDi-Communication-Systems-Inc/lollipop_external_chromium_org | faa6602bd6bfd9b9b6277ce3cd16df0bd26e7f2f | ccadf4e63dd34be157281f53fe213d09a8c66d2c | refs/heads/master | 2022-12-23T18:07:04.568931 | 2016-04-11T16:03:36 | 2016-04-11T16:03:36 | 53,677,925 | 0 | 1 | BSD-3-Clause | 2022-12-09T23:46:46 | 2016-03-11T15:49:07 | C++ | UTF-8 | C++ | false | false | 1,399 | h | // Copyright 2014 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef CHROME_BROWSER_PREFS_TRACKED_TRACKED_PREFERENCE_H_
#define CHROME_BROWSER_PREFS_TRACKED_TRACKED_PREFERENCE_H_
class PrefHashStoreTransaction;
namespace base {
class DictionaryValue;
class Value;
}
// A TrackedPreference tracks changes to an individual preference, reporting and
// reacting to them according to preference-specific and browser-wide policies.
class TrackedPreference {
public:
virtual ~TrackedPreference() {}
// Notifies the underlying TrackedPreference about its new |value| which
// can update hashes in the corresponding hash store via |transaction|.
virtual void OnNewValue(const base::Value* value,
PrefHashStoreTransaction* transaction) const = 0;
// Verifies that the value of this TrackedPreference in |pref_store_contents|
// is valid. Responds to verification failures according to
// preference-specific and browser-wide policy and reports results to via UMA.
// May use |transaction| to check/modify hashes in the corresponding hash
// store.
virtual bool EnforceAndReport(
base::DictionaryValue* pref_store_contents,
PrefHashStoreTransaction* transaction) const = 0;
};
#endif // CHROME_BROWSER_PREFS_TRACKED_TRACKED_PREFERENCE_H_
| [
"mrobbeloth@pdiarm.com"
] | mrobbeloth@pdiarm.com |
621c8eae24448b276ca9e1252fb68e382b376afe | 2fd2ff04c91e8132b780bbd866e5d4524a8e66dd | /hlx/BD/axi_ic_axi4lite/ip/axi_ic_axi4lite_axi_bram_ctrl_0_0/sim/axi_ic_axi4lite_axi_bram_ctrl_0_0_sc.cpp | a7348c33cb75bbc1a2d5ebd7565d07032cf33199 | [] | no_license | SanjayRai/U200_customThinShell_splitxDMA | 401a4d178cabf618c8539e3ad575d16c27a6d086 | 04fa4e910de83117b5be8584b0732299e9dfad4d | refs/heads/master | 2022-12-14T06:57:33.323260 | 2020-09-21T21:26:46 | 2020-09-21T21:26:46 | 297,464,543 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,103 | cpp | // (c) Copyright 1995-2020 Xilinx, Inc. All rights reserved.
//
// This file contains confidential and proprietary information
// of Xilinx, Inc. and is protected under U.S. and
// international copyright and other intellectual property
// laws.
//
// DISCLAIMER
// This disclaimer is not a license and does not grant any
// rights to the materials distributed herewith. Except as
// otherwise provided in a valid license issued to you by
// Xilinx, and to the maximum extent permitted by applicable
// law: (1) THESE MATERIALS ARE MADE AVAILABLE "AS IS" AND
// WITH ALL FAULTS, AND XILINX HEREBY DISCLAIMS ALL WARRANTIES
// AND CONDITIONS, EXPRESS, IMPLIED, OR STATUTORY, INCLUDING
// BUT NOT LIMITED TO WARRANTIES OF MERCHANTABILITY, NON-
// INFRINGEMENT, OR FITNESS FOR ANY PARTICULAR PURPOSE; and
// (2) Xilinx shall not be liable (whether in contract or tort,
// including negligence, or under any other theory of
// liability) for any loss or damage of any kind or nature
// related to, arising under or in connection with these
// materials, including for any direct, or any indirect,
// special, incidental, or consequential loss or damage
// (including loss of data, profits, goodwill, or any type of
// loss or damage suffered as a result of any action brought
// by a third party) even if such damage or loss was
// reasonably foreseeable or Xilinx had been advised of the
// possibility of the same.
//
// CRITICAL APPLICATIONS
// Xilinx products are not designed or intended to be fail-
// safe, or for use in any application requiring fail-safe
// performance, such as life-support or safety devices or
// systems, Class III medical devices, nuclear facilities,
// applications related to the deployment of airbags, or any
// other applications that could lead to death, personal
// injury, or severe property or environmental damage
// (individually and collectively, "Critical
// Applications"). Customer assumes the sole risk and
// liability of any use of Xilinx products in Critical
// Applications, subject only to applicable laws and
// regulations governing limitations on product liability.
//
// THIS COPYRIGHT NOTICE AND DISCLAIMER MUST BE RETAINED AS
// PART OF THIS FILE AT ALL TIMES.
//
// DO NOT MODIFY THIS FILE.
#include "axi_ic_axi4lite_axi_bram_ctrl_0_0_sc.h"
#include "axi_bram_ctrl.h"
#include <map>
#include <string>
axi_ic_axi4lite_axi_bram_ctrl_0_0_sc::axi_ic_axi4lite_axi_bram_ctrl_0_0_sc(const sc_core::sc_module_name& nm) : sc_core::sc_module(nm), mp_impl(NULL)
{
// configure connectivity manager
xsc::utils::xsc_sim_manager::addInstance("axi_ic_axi4lite_axi_bram_ctrl_0_0", this);
// initialize module
xsc::common_cpp::properties model_param_props;
model_param_props.addLong("C_MEMORY_DEPTH", "1024");
model_param_props.addLong("C_BRAM_ADDR_WIDTH", "10");
model_param_props.addLong("C_S_AXI_ADDR_WIDTH", "12");
model_param_props.addLong("C_S_AXI_DATA_WIDTH", "32");
model_param_props.addLong("C_S_AXI_ID_WIDTH", "1");
model_param_props.addLong("C_S_AXI_SUPPORTS_NARROW_BURST", "0");
model_param_props.addLong("C_SINGLE_PORT_BRAM", "0");
model_param_props.addLong("C_READ_LATENCY", "1");
model_param_props.addLong("C_RD_CMD_OPTIMIZATION", "0");
model_param_props.addLong("C_S_AXI_CTRL_ADDR_WIDTH", "32");
model_param_props.addLong("C_S_AXI_CTRL_DATA_WIDTH", "32");
model_param_props.addLong("C_ECC", "0");
model_param_props.addLong("C_ECC_TYPE", "0");
model_param_props.addLong("C_FAULT_INJECT", "0");
model_param_props.addLong("C_ECC_ONOFF_RESET_VALUE", "0");
model_param_props.addString("C_BRAM_INST_MODE", "EXTERNAL");
model_param_props.addString("C_S_AXI_PROTOCOL", "AXI4");
model_param_props.addString("C_FAMILY", "virtexuplus");
mp_impl = new axi_bram_ctrl("inst", model_param_props);
// initialize sockets
target_0_rd_socket = mp_impl->target_0_rd_socket;
target_0_wr_socket = mp_impl->target_0_wr_socket;
}
axi_ic_axi4lite_axi_bram_ctrl_0_0_sc::~axi_ic_axi4lite_axi_bram_ctrl_0_0_sc()
{
xsc::utils::xsc_sim_manager::clean();
delete mp_impl;
}
| [
"sanjay.d.rai@gmail.com"
] | sanjay.d.rai@gmail.com |
d087c201d9d6be6a1d16438befec7f2912379a14 | a385bbc182ae9d18d1f97401f649a173aedc1ece | /Lab3_question10.cpp | 3cc5b29796f06a7c6bbcd5c87a510a33ceef3961 | [] | no_license | TanyaPattnaik/Lab_3 | 9d69da99b389d0e74f52c6b244dca87ba9f2999c | 24861bf05aebd377b512f46599d15835af4c8fb8 | refs/heads/master | 2021-01-21T13:25:11.762994 | 2017-11-20T01:51:18 | 2017-11-20T01:51:18 | 102,117,170 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 283 | cpp | #include <iostream>
using namespace std;
int main()
{
char a;
cout <<"Enter a character\n";
cin >>a;
if (a>='a'&&a<='z')
cout <<a <<" is a lowercase alphabet\n";
else if (a>='A'&&a<='Z')
cout <<a <<" is an uppercase alphabet\n";
else
cout <<"Invalid entry\n";
return 0;
}
| [
"noreply@github.com"
] | noreply@github.com |
89e61d6ee589b6c731dae3944f45d8051edd59a3 | 6798252b3e7031aa679a99d85f6981f903391559 | /he-transformer-master/src/seal/kernel/max_pool_seal.hpp | 5ba7057396f2d7e7ca1544e59594945d82b3b569 | [
"Apache-2.0"
] | permissive | zadid56/privacy-preserving-ML-models | c5323ed395cc97f3a8b55d9473a8e08d230d1455 | 1ed7a5f085deb34ee546621daa87189924021b4b | refs/heads/master | 2022-04-05T21:45:14.277762 | 2020-02-14T05:56:54 | 2020-02-14T05:56:54 | 240,152,930 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 14,333 | hpp | //*****************************************************************************
// Copyright 2018-2019 Intel Corporation
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
//*****************************************************************************
#pragma once
#include <cmath>
#include <memory>
#include <numeric>
#include <vector>
#include "ngraph/coordinate_transform.hpp"
#include "seal/seal_util.hpp"
namespace ngraph {
namespace he {
// Returns list where L[i] is the list of input indices to maximize over.
inline std::vector<std::vector<size_t>> max_pool_seal(
const Shape& arg_shape, const Shape& out_shape, const Shape& window_shape,
const Strides& window_movement_strides, const Shape& padding_below,
const Shape& padding_above) {
// At the outermost level we will walk over every output coordinate O.
CoordinateTransform output_transform(out_shape);
size_t out_size = 0;
for (const Coordinate& out_coord : output_transform) {
(void)out_coord; // Avoid unused-variable warning
out_size++;
}
NGRAPH_CHECK(out_size == shape_size(out_shape), "out size ", out_size,
" != shape_size(out_shape) ", out_shape);
std::vector<std::vector<size_t>> maximize_list(shape_size(out_shape));
for (const Coordinate& out_coord : output_transform) {
// Our output coordinate O will have the form:
//
// (N,chan,i_1,...,i_n)
size_t batch_index = out_coord[0];
size_t channel = out_coord[1];
// For the input data we need to iterate the coordinate:
//
// I:
//
// over the range (noninclusive on the right):
//
// (N,chan,s_1*i_1,s_2*i_2,...,s_n*i_n) ->
//
// (N+1,chan+1,s_1*i_1 + window_shape_1,...,s_n*i_n +
// window_shape_n)
//
// with unit stride.
//
// We iterate this over the *padded* data, so below we will need to
// check for coordinates that fall in the padding area.
size_t n_spatial_dimensions = arg_shape.size() - 2;
Coordinate input_batch_transform_start(2 + n_spatial_dimensions);
Coordinate input_batch_transform_end(2 + n_spatial_dimensions);
Strides input_batch_transform_source_strides(2 + n_spatial_dimensions, 1);
AxisVector input_batch_transform_source_axis_order(2 +
n_spatial_dimensions);
CoordinateDiff input_batch_transform_padding_below(2 +
n_spatial_dimensions);
CoordinateDiff input_batch_transform_padding_above(2 +
n_spatial_dimensions);
input_batch_transform_start[0] = batch_index;
input_batch_transform_end[0] = batch_index + 1;
input_batch_transform_start[1] = channel;
input_batch_transform_end[1] = channel + 1;
input_batch_transform_padding_below[0] = 0;
input_batch_transform_padding_below[1] = 0;
input_batch_transform_padding_above[0] = 0;
input_batch_transform_padding_above[1] = 0;
for (size_t i = 2; i < n_spatial_dimensions + 2; i++) {
size_t window_shape_this_dim = window_shape[i - 2];
size_t movement_stride = window_movement_strides[i - 2];
input_batch_transform_start[i] = movement_stride * out_coord[i];
input_batch_transform_end[i] =
input_batch_transform_start[i] + window_shape_this_dim;
input_batch_transform_padding_below[i] = padding_below[i - 2];
input_batch_transform_padding_above[i] = padding_above[i - 2];
}
for (size_t i = 0; i < arg_shape.size(); i++) {
input_batch_transform_source_axis_order[i] = i;
}
CoordinateTransform input_batch_transform(
arg_shape, input_batch_transform_start, input_batch_transform_end,
input_batch_transform_source_strides,
input_batch_transform_source_axis_order,
input_batch_transform_padding_below,
input_batch_transform_padding_above);
// As we go, we compute the maximum value:
//
// output[O] = max(output[O],arg[I])
size_t out_index = output_transform.index(out_coord);
for (const Coordinate& input_batch_coord : input_batch_transform) {
if (input_batch_transform.has_source_coordinate(input_batch_coord)) {
int new_index = input_batch_transform.index(input_batch_coord);
maximize_list[out_index].emplace_back(new_index);
}
}
}
return maximize_list;
}
inline void max_pool_seal(const std::vector<HEPlaintext>& arg,
std::vector<HEPlaintext>& out, const Shape& arg_shape,
const Shape& out_shape, const Shape& window_shape,
const Strides& window_movement_strides,
const Shape& padding_below,
const Shape& padding_above) {
// At the outermost level we will walk over every output coordinate O.
CoordinateTransform output_transform(out_shape);
size_t out_coord_idx = 0;
for (const Coordinate& out_coord : output_transform) {
out_coord_idx++;
// Our output coordinate O will have the form:
//
// (N,chan,i_1,...,i_n)
size_t batch_index = out_coord[0];
size_t channel = out_coord[1];
// For the input data we need to iterate the coordinate:
//
// I:
//
// over the range (noninclusive on the right):
//
// (N,chan,s_1*i_1,s_2*i_2,...,s_n*i_n) ->
//
// (N+1,chan+1,s_1*i_1 + window_shape_1,...,s_n*i_n + window_shape_n)
//
// with unit stride.
//
// We iterate this over the *padded* data, so below we will need to check
// for coordinates that fall in the padding area.
size_t n_spatial_dimensions = arg_shape.size() - 2;
Coordinate input_batch_transform_start(2 + n_spatial_dimensions);
Coordinate input_batch_transform_end(2 + n_spatial_dimensions);
Strides input_batch_transform_source_strides(2 + n_spatial_dimensions, 1);
AxisVector input_batch_transform_source_axis_order(2 +
n_spatial_dimensions);
CoordinateDiff input_batch_transform_padding_below(2 +
n_spatial_dimensions);
CoordinateDiff input_batch_transform_padding_above(2 +
n_spatial_dimensions);
input_batch_transform_start[0] = batch_index;
input_batch_transform_end[0] = batch_index + 1;
input_batch_transform_start[1] = channel;
input_batch_transform_end[1] = channel + 1;
input_batch_transform_padding_below[0] = 0;
input_batch_transform_padding_below[1] = 0;
input_batch_transform_padding_above[0] = 0;
input_batch_transform_padding_above[1] = 0;
for (size_t i = 2; i < n_spatial_dimensions + 2; i++) {
size_t window_shape_this_dim = window_shape[i - 2];
size_t movement_stride = window_movement_strides[i - 2];
input_batch_transform_start[i] = movement_stride * out_coord[i];
input_batch_transform_end[i] =
input_batch_transform_start[i] + window_shape_this_dim;
input_batch_transform_padding_below[i] = padding_below[i - 2];
input_batch_transform_padding_above[i] = padding_above[i - 2];
}
for (size_t i = 0; i < arg_shape.size(); i++) {
input_batch_transform_source_axis_order[i] = i;
}
CoordinateTransform input_batch_transform(
arg_shape, input_batch_transform_start, input_batch_transform_end,
input_batch_transform_source_strides,
input_batch_transform_source_axis_order,
input_batch_transform_padding_below,
input_batch_transform_padding_above);
// As we go, we compute the maximum value:
//
// output[O] = max(output[O],arg[I])
bool first_max = true;
std::vector<double> max_vals;
for (const Coordinate& input_batch_coord : input_batch_transform) {
if (input_batch_transform.has_source_coordinate(input_batch_coord)) {
auto arg_coord_idx = input_batch_transform.index(input_batch_coord);
const std::vector<double>& arg_vals = arg[arg_coord_idx].values();
if (first_max) {
first_max = false;
max_vals = arg_vals;
} else {
// Get element-wise maximum
NGRAPH_CHECK(arg_vals.size() == max_vals.size(), "arg values size ",
arg_vals.size(), " doesn't match max_vals.size() ",
max_vals.size());
for (size_t value_idx = 0; value_idx < arg_vals.size(); ++value_idx) {
max_vals[value_idx] =
std::max(max_vals[value_idx], arg_vals[value_idx]);
}
}
}
}
HEPlaintext result(max_vals);
out[output_transform.index(out_coord)] = result;
}
}
inline void max_pool_seal(
const std::vector<std::shared_ptr<SealCiphertextWrapper>>& arg,
std::vector<std::shared_ptr<SealCiphertextWrapper>>& out,
const Shape& arg_shape, const Shape& out_shape, const Shape& window_shape,
const Strides& window_movement_strides, const Shape& padding_below,
const Shape& padding_above, const seal::parms_id_type& parms_id,
double scale, seal::CKKSEncoder& ckks_encoder, seal::Encryptor& encryptor,
seal::Decryptor& decryptor, bool complex_packing) {
// At the outermost level we will walk over every output coordinate O.
CoordinateTransform output_transform(out_shape);
size_t out_coord_idx = 0;
for (const Coordinate& out_coord : output_transform) {
out_coord_idx++;
size_t batch_index = out_coord[0];
size_t channel = out_coord[1];
size_t n_spatial_dimensions = arg_shape.size() - 2;
Coordinate input_batch_transform_start(2 + n_spatial_dimensions);
Coordinate input_batch_transform_end(2 + n_spatial_dimensions);
Strides input_batch_transform_source_strides(2 + n_spatial_dimensions, 1);
AxisVector input_batch_transform_source_axis_order(2 +
n_spatial_dimensions);
CoordinateDiff input_batch_transform_padding_below(2 +
n_spatial_dimensions);
CoordinateDiff input_batch_transform_padding_above(2 +
n_spatial_dimensions);
input_batch_transform_start[0] = batch_index;
input_batch_transform_end[0] = batch_index + 1;
input_batch_transform_start[1] = channel;
input_batch_transform_end[1] = channel + 1;
input_batch_transform_padding_below[0] = 0;
input_batch_transform_padding_below[1] = 0;
input_batch_transform_padding_above[0] = 0;
input_batch_transform_padding_above[1] = 0;
for (size_t i = 2; i < n_spatial_dimensions + 2; i++) {
size_t window_shape_this_dim = window_shape[i - 2];
size_t movement_stride = window_movement_strides[i - 2];
input_batch_transform_start[i] = movement_stride * out_coord[i];
input_batch_transform_end[i] =
input_batch_transform_start[i] + window_shape_this_dim;
input_batch_transform_padding_below[i] = padding_below[i - 2];
input_batch_transform_padding_above[i] = padding_above[i - 2];
}
for (size_t i = 0; i < arg_shape.size(); i++) {
input_batch_transform_source_axis_order[i] = i;
}
CoordinateTransform input_batch_transform(
arg_shape, input_batch_transform_start, input_batch_transform_end,
input_batch_transform_source_strides,
input_batch_transform_source_axis_order,
input_batch_transform_padding_below,
input_batch_transform_padding_above);
// As we go, we compute the maximum value:
//
// output[O] = max(output[O],arg[I])
bool first_max = true;
std::vector<double> max_vals;
for (const Coordinate& input_batch_coord : input_batch_transform) {
if (input_batch_transform.has_source_coordinate(input_batch_coord)) {
auto arg_coord_idx = input_batch_transform.index(input_batch_coord);
HEPlaintext plain;
ngraph::he::decrypt(plain, *arg[arg_coord_idx], decryptor,
ckks_encoder);
const std::vector<double>& arg_vals = plain.values();
if (first_max) {
first_max = false;
max_vals = arg_vals;
} else {
// Get element-wise maximum
NGRAPH_CHECK(arg_vals.size() == max_vals.size(), "arg values size ",
arg_vals.size(), " doesn't match max_vals.size() ",
max_vals.size());
for (size_t value_idx = 0; value_idx < arg_vals.size(); ++value_idx) {
max_vals[value_idx] =
std::max(max_vals[value_idx], arg_vals[value_idx]);
}
}
}
}
HEPlaintext result(max_vals);
auto cipher = HESealBackend::create_empty_ciphertext(complex_packing);
ngraph::he::encrypt(cipher, result, parms_id, ngraph::element::f32, scale,
ckks_encoder, encryptor, complex_packing);
out[output_transform.index(out_coord)] = cipher;
}
}
inline void max_pool_seal(
const std::vector<std::shared_ptr<SealCiphertextWrapper>>& arg,
std::vector<std::shared_ptr<SealCiphertextWrapper>>& out,
const Shape& arg_shape, const Shape& out_shape, const Shape& window_shape,
const Strides& window_movement_strides, const Shape& padding_below,
const Shape& padding_above, const HESealBackend& he_seal_backend) {
max_pool_seal(
arg, out, arg_shape, out_shape, window_shape, window_movement_strides,
padding_below, padding_above,
he_seal_backend.get_context()->first_parms_id(),
he_seal_backend.get_scale(), *he_seal_backend.get_ckks_encoder(),
*he_seal_backend.get_encryptor(), *he_seal_backend.get_decryptor(),
he_seal_backend.complex_packing());
}
} // namespace he
} // namespace ngraph
| [
"38263936+zadid56@users.noreply.github.com"
] | 38263936+zadid56@users.noreply.github.com |
c6e9658d4e25a5bbbb08883e3550cddd65d2e30b | 28c8ce71b80c195ff30809a68008091b7922e788 | /src/qt/openuridialog.cpp | 2672dbbf697db7636cbb201719657c70388cefff | [
"MIT"
] | permissive | DecentralShopCoin/DecentralShopCoin-wallet-v1.0-core | f288987297cc2bba92be2bf153ccd0a488487668 | 3fdfeabceb7d452688cb48e25fc64d9a43ab9b4f | refs/heads/master | 2020-04-12T19:53:20.659073 | 2018-12-29T15:24:02 | 2018-12-29T15:24:02 | 162,720,545 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,426 | cpp | // Copyright (c) 2011-2014 The Bitcoin developers
// Copyright (c) 2014-2015 The Dash developers
// Copyright (c) 2015-2017 The PIVX developers
// Copyright (c) 2017 The DecentralShop developers
// Distributed under the MIT/X11 software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#include "openuridialog.h"
#include "ui_openuridialog.h"
#include "guiutil.h"
#include "walletmodel.h"
#include <QUrl>
OpenURIDialog::OpenURIDialog(QWidget* parent) : QDialog(parent),
ui(new Ui::OpenURIDialog)
{
ui->setupUi(this);
#if QT_VERSION >= 0x040700
ui->uriEdit->setPlaceholderText("decentralshop:");
#endif
}
OpenURIDialog::~OpenURIDialog()
{
delete ui;
}
QString OpenURIDialog::getURI()
{
return ui->uriEdit->text();
}
void OpenURIDialog::accept()
{
SendCoinsRecipient rcp;
if (GUIUtil::parseBitcoinURI(getURI(), &rcp)) {
/* Only accept value URIs */
QDialog::accept();
} else {
ui->uriEdit->setValid(false);
}
}
void OpenURIDialog::on_selectFileButton_clicked()
{
QString filename = GUIUtil::getOpenFileName(this, tr("Select payment request file to open"), "", "", NULL);
if (filename.isEmpty())
return;
QUrl fileUri = QUrl::fromLocalFile(filename);
ui->uriEdit->setText("decentralshop:?r=" + QUrl::toPercentEncoding(fileUri.toString()));
}
| [
"root@localhost"
] | root@localhost |
d69709f67e33cd20a2473d1697f89202070a377d | b77349e25b6154dae08820d92ac01601d4e761ee | /Slider/ProgressSlider/ProSlider.h | e148807c7827b38c374a228c4467eab84028698b | [] | no_license | ShiverZm/MFC | e084c3460fe78f820ff1fec46fe1fc575c3e3538 | 3d05380d2e02b67269d2f0eb136a3ac3de0dbbab | refs/heads/master | 2023-02-21T08:57:39.316634 | 2021-01-26T10:18:38 | 2021-01-26T10:18:38 | 332,725,087 | 0 | 0 | null | 2021-01-25T11:35:20 | 2021-01-25T11:29:59 | null | UTF-8 | C++ | false | false | 490 | h | // ProSlider.h : main header file for the PROJECT_NAME application
//
#pragma once
#ifndef __AFXWIN_H__
#error include 'stdafx.h' before including this file for PCH
#endif
#include "resource.h" // main symbols
// CProSliderApp:
// See ProSlider.cpp for the implementation of this class
//
class CProSliderApp : public CWinApp
{
public:
CProSliderApp();
// Overrides
public:
virtual BOOL InitInstance();
// Implementation
DECLARE_MESSAGE_MAP()
};
extern CProSliderApp theApp; | [
"w.z.y2006@163.com"
] | w.z.y2006@163.com |
01876dbf14b60d23e2c533f18530e4255b331f74 | 226aa38ee28929a1b7f420e65afc8b57fd642335 | /oop/Laboratory7_8/Laboratory7_8/testRepoT.hpp | 122a691658b282c3d69624ed21e3cd48847a01cf | [] | no_license | timofteciprian/uni | 74cf0392798066798f37f1b206d50737978f2f34 | 991d51d41d72cd438e687cab6b4ae6eb03e85a39 | refs/heads/master | 2021-05-25T11:59:01.523090 | 2020-04-30T16:49:38 | 2020-04-30T16:49:38 | 127,344,717 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 277 | hpp | //
// testRepoT.hpp
// Laboratory7_8
//
// Created by Timofte Ciprian Andrei on 27/04/2018.
// Copyright © 2018 Timofte Ciprian Andrei. All rights reserved.
//
#ifndef testRepoT_hpp
#define testRepoT_hpp
#include <stdio.h>
void testRepoT();
#endif /* testRepoT_hpp */
| [
"timofteca@gmail.com"
] | timofteca@gmail.com |
a071bfc52c75a19bd6b8ad52f91a7f3f29106a8a | 3272e9f4c3d64ae0344dd44c5880e8fca2ae2e69 | /libraries/chain/include/sou/chain/protocol_feature_activation.hpp | a2ed0dd63f93568915a4c7390d9555c575ae1045 | [
"BSD-3-Clause",
"MIT",
"LicenseRef-scancode-unknown-license-reference",
"Apache-2.0"
] | permissive | tawtod/ttt | 5990584c2e974df318484b4caca94d7e277bfa66 | 78a536ac9080c39a933a444ccc31ca9c1453eb2f | refs/heads/main | 2023-04-28T03:05:05.991141 | 2021-05-03T19:59:37 | 2021-05-03T19:59:37 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,309 | hpp | #pragma once
#include <sou/chain/types.hpp>
namespace sou { namespace chain {
struct protocol_feature_activation : fc::reflect_init {
static constexpr uint16_t extension_id() { return 0; }
static constexpr bool enforce_unique() { return true; }
protocol_feature_activation() = default;
protocol_feature_activation( const vector<digest_type>& pf )
:protocol_features( pf )
{}
protocol_feature_activation( vector<digest_type>&& pf )
:protocol_features( std::move(pf) )
{}
void reflector_init();
vector<digest_type> protocol_features;
};
struct protocol_feature_activation_set;
using protocol_feature_activation_set_ptr = std::shared_ptr<protocol_feature_activation_set>;
struct protocol_feature_activation_set {
flat_set<digest_type> protocol_features;
protocol_feature_activation_set() = default;
protocol_feature_activation_set( const protocol_feature_activation_set& orig_pfa_set,
vector<digest_type> additional_features,
bool enforce_disjoint = true
);
};
} } // namespace sou::chain
FC_REFLECT(sou::chain::protocol_feature_activation, (protocol_features))
FC_REFLECT(sou::chain::protocol_feature_activation_set, (protocol_features))
| [
"sdhcsdn@gmail.com"
] | sdhcsdn@gmail.com |
35ff119d8bb8bff898848ecd92d01cfb76d6756d | 0f41c18a334226d893b4858d67547dbc33745e88 | /libdariadb/storage/pages/helpers.h | 1aef5c36e4ab0b71235e173abfd5eebfdb5d84c8 | [
"Apache-2.0"
] | permissive | oliveiradan/dariadb | 325d5d1db568ef9c91e8f01261904a17ff913fb1 | e9c2e34b0723ea6e040ecdcce3d57153d32b061e | refs/heads/master | 2021-09-22T15:29:12.840295 | 2017-05-12T05:25:57 | 2017-05-12T05:25:57 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 862 | h | #pragma once
#include <libdariadb/storage/chunk.h>
#include <libdariadb/storage/pages/index.h>
#include <libdariadb/storage/pages/page.h>
#include <fstream>
#include <map>
#include <tuple>
#include <vector>
#include <boost/shared_array.hpp>
namespace dariadb {
namespace storage {
namespace PageInner {
struct HdrAndBuffer {
dariadb::storage::ChunkHeader hdr;
boost::shared_array<uint8_t> buffer;
};
std::shared_ptr<std::list<HdrAndBuffer>>
compressValues(const MeasArray &to_compress, PageFooter &phdr, uint32_t max_chunk_size);
uint64_t writeToFile(FILE *file, FILE *index_file, PageFooter &phdr, IndexFooter &,
std::list<HdrAndBuffer> &compressed_results, uint64_t file_size = 0);
IndexReccord init_chunk_index_rec(const ChunkHeader &cheader, IndexFooter *iheader);
bool have_overlap(const std::vector<ChunkLink> &links);
}
}
} | [
"lysevi@gmail.com"
] | lysevi@gmail.com |
f73be470f135b853e90612c4179dc219ccaf6546 | ec8c238cec2fe43543aac2ed0b2216d6bca2d74c | /src/contdepth/VisualizeBasis3D.cc | 17b2ba129ea22694efac9abb023971feca999b1e | [] | no_license | nbirkbeck/monoflow | f6b07dc9962c18e863294c111ec73ce23da842ec | 2d3332c1613f34a6da12819bc0823e19042cb265 | refs/heads/main | 2023-02-04T15:47:22.010536 | 2020-12-24T17:36:17 | 2020-12-24T17:36:17 | 324,067,694 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 7,588 | cc | /**
Quick visualization to see the basis flow in 3D.
Neil Birkbeck, Jan 2011
*/
#include "utigl/glwindow.h"
#include "utigl/glcommon.h"
#include "utigl/ffont.h"
#include <nmisc/commandline.h>
#include "ik/mesh.h"
#include "ik/armature.h"
#include "autorecon/recon_globals.h"
#include "autorecon/recon_geometry.h"
#include "autorecon/clbfile.h"
#include <vector>
#include <map>
#include <fstream>
#include <boost/format.hpp>
#include "FlowBasis3D.h"
#include "DisparitySequence.h"
#include "AnimationCurve.h"
#include "VisualizeBaseWindow.h"
#include "BaseMeshAnimation.h"
#include "DisplaceUV.h"
#include "TimeVaryingDisplacedMesh.h"
class Win: public VisualizeBaseWindow {
public:
Win(char ** av, int ac) {
seqs = DisparitySequence::loadSequences(av, ac);
drawTex = false;
lighting = true;
glClearColor(0, 0, 0, 0);
tex = 0;
activeCamera = 0;
mesh.drawFlow = 0;
mesh.drawTangents = 0;
glGenTextures(1, &cameraTex);
}
void drawHud(){
glPushAttrib(GL_ALL_ATTRIB_BITS);
glEnable(GL_BLEND);
glBlendFunc(GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA);
glEnable(GL_ALPHA_TEST);
glAlphaFunc(GL_GREATER, 0.3);
glMatrixMode(GL_PROJECTION);
glPushMatrix();
glLoadIdentity();
glOrtho(-aspect(), aspect(), -1, 1, -1, 1);
glMatrixMode(GL_MODELVIEW);
glPushMatrix();
glLoadIdentity();
glEnable(GL_TEXTURE_2D);
glDisable(GL_LIGHTING);
double x = -aspect() + 0.05f;
double y = 0.9f;
double sp = font.getScaledMaxHeight();
font.setColor(1, 1, 1, 1);
char str[1024];
snprintf(str, sizeof(str), "Time: %f", t);
font.drawString(str, x, y);
y -= sp;
if (drawTex) {
font.drawString("Texture", x, y);
y -= sp;
}
if (lighting) {
font.drawString("Lighting", x, y);
y -= sp;
}
glMatrixMode(GL_MODELVIEW);
glPopMatrix();
glMatrixMode(GL_PROJECTION);
glPopMatrix();
glPopAttrib();
}
void drawScene(){
drawHud();
if (seqs.size()) {
// Drawing the camera image by backprojection ensures that the geometry
glDisable(GL_LIGHTING);
glEnable(GL_TEXTURE_2D);
glBindTexture(GL_TEXTURE_2D, cameraTex);
seqs[activeCamera].load(round(t));
seqs[activeCamera].image.initTexture();
glDepthMask(0);
glMatrixMode(GL_PROJECTION);
glPushMatrix();
//glLoadIdentity();
//glOrtho(-1, 1, -1, 1, -1, 1);
nacb::Matrix KRinv = seqs[activeCamera].P.submatrix(0, 0, 3, 3).inverse();
nacb::Matrix KRt = seqs[activeCamera].P.submatrix(0, 3, 3, 1);
const float depth = 10.0f;
float w = seqs[activeCamera].image.w;
float h = seqs[activeCamera].image.h;
Vec3f p1 = backProject(KRinv, KRt, 0.f, 0.f, depth);
Vec3f p2 = backProject(KRinv, KRt, w, 0.f, depth);
Vec3f p3 = backProject(KRinv, KRt, w, h, depth);
Vec3f p4 = backProject(KRinv, KRt, 0.f, h, depth);
glMatrixMode(GL_MODELVIEW);
glPushMatrix();
//glLoadIdentity();
glColor3f(1, 1, 1);
glBegin(GL_QUADS);
glTexCoord2f(0, 0); glVertex3fv(p1.data);
glTexCoord2f(1, 0); glVertex3fv(p2.data);
glTexCoord2f(1, 1); glVertex3fv(p3.data);
glTexCoord2f(0, 1); glVertex3fv(p4.data);
glEnd();
glMatrixMode(GL_PROJECTION);
glPopMatrix();
glMatrixMode(GL_MODELVIEW);
glPopMatrix();
glDepthMask(1);
}
if (drawTex) {
glEnable(GL_TEXTURE_2D);
glBindTexture(GL_TEXTURE_2D, tex);
}
else
glDisable(GL_TEXTURE_2D);
if (lighting)
glEnable(GL_LIGHTING);
else
glDisable(GL_LIGHTING);
glColor3f(1, 1, 1);
if (drawMesh)
mesh.draw();
doWriting();
doReading();
doScreenshot();
mesh.setTime(t);
}
void storeCurveData(double where) {
VisualizeBaseWindow::storeCurveData(where);
// Store any other curves.
curves["activeCamera"].insert(where, activeCamera);
curves["drawMesh"].insert(where, drawMesh);
}
bool load(double where){
VisualizeBaseWindow::load(where);
// Load any other
if (curves.count("activeCamera"))
activeCamera = (int)curves["activeCamera"](where);
if (curves.count("drawMesh")) {
drawMesh = (int)curves["drawMesh"](where);
}
return true;
}
void motion(int x, int y){
if(bdown == 1){
t = std::max((double)0, std::min((double)numTimes, double(y)/height()*(numTimes - 1)));
mesh.setTime(t);
refresh();
}
GLWindow::motion(x, y);
}
void setCameraView() {
if (seqs.size()) {
nacb::Mat4x4 m = (Matrix::rotx(M_PI)*seqs[activeCamera].E).inverse();
cquat = nacb::Quaternion::fromMatrix(m);
cpos = nacb::Vec3d(m(0, 3), m(1, 3), m(2, 3));
}
else
printf("seqs: %d\n", (int)seqs.size());
}
bool keyboard(unsigned char c, int x, int y){
VisualizeBaseWindow::keyboard(c, x, y);
switch (c) {
case 'B':
mesh.drawBaseMesh = !mesh.drawBaseMesh;
break;
case 'b':
mesh.drawBones = !mesh.drawBones;
break;
case 'T':
mesh.drawTangents = !mesh.drawTangents;
break;
case 'f':
mesh.drawFlow = !mesh.drawFlow;
break;
case 'm':
drawMesh = !drawMesh;
break;
case '1':
case '2':
case '3':
case '4':
activeCamera = (c - '1') % seqs.size();
setCameraView();
break;
case 'C':
{
setCameraView();
}
break;
}
refresh();
return true;
}
void setTexture(const std::string& texName) {
nacb::Image8 texImage;
texImage.read(texName.c_str());
if (!tex) {
glGenTextures(1, &tex);
}
glBindTexture(GL_TEXTURE_2D, tex);
texImage.initTexture();
}
int activeCamera;
TimeVaryingDisplacedMesh mesh;
int numTimes;
GLuint tex, cameraTex;
protected:
int drawMesh;
std::vector<DisparitySequence> seqs;
};
int main(int ac, char * av[]){
nacb::CommandLine cline;
int numTimes = 10;
std::string writeName, archiveName;
std::string basisFile;
std::string geomFile, bonesFile, animFile;
std::string textureFile;
int texw = 128, texh = 128;
cline.registerOption("write", "Write the images to this file.", &writeName, 0);
cline.registerOption("archive", "The archive to read from.", &archiveName, 0);
cline.registerOption("basisFile", "The basis file.", &basisFile);
cline.registerOption("geom", "The geometry.", &geomFile);
cline.registerOption("tex", "The texture.", &textureFile);
cline.registerOption("bones", "The bones.", &bonesFile);
cline.registerOption("anim", "The bones.", &animFile);
cline.registerOption("texw", "The texture width.", &texw);
cline.registerOption("texh", "The texture height.", &texh);
cline.registerOption("numTimes", "The number of time frames.", &numTimes);
cline.parse(ac, av);
Win * win = new Win(av + optind, ac - optind);
win->mesh.setMaximumTextureResolution(texw, texh);
win->mesh.loadMesh(geomFile.c_str());
if (!win->mesh.loadBasis(basisFile.c_str())) {
std::cout << "Using null basis.\n" << std::endl;
win->mesh.setBasis(FlowBasis3D::ptr(new NullBasis3D()), false);
}
win->mesh.loadKinematics(bonesFile, animFile);
win->mesh.setTime(0);
if (textureFile.size())
win->setTexture(textureFile);
win->numTimes = numTimes;
if (cline.gotArgument("write") && cline.gotArgument("archive")) {
win->loadArchive(archiveName);
win->setReading(true);
win->setWritingFrames(writeName);
}
win->loop(1);
return 0;
}
| [
"neil.birkbeck@gmail.com"
] | neil.birkbeck@gmail.com |
01e07649752a099e57962fe3637cef2ce8d09426 | 67dd5dbcb404d7f753a7638b22e720cebe0a31f0 | /Project -2/Problem 1/Warping.cpp | 4ed92bd6199a37480e8c288a9bdaca9a10a9080d | [] | no_license | Shaw9575/Image_Processing_EE569 | ae2094489f7b4fe7c444f83af3531d32a7c18639 | da7e4268314841d20fb324dbe1db5596316173d3 | refs/heads/master | 2020-03-07T16:28:06.174840 | 2019-06-24T04:25:05 | 2019-06-24T04:25:05 | 127,583,306 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,502 | cpp | //Name: Shuang Yuan
//USC ID: 3904204605
//USC e-mail: shuangy@usc.edu
//Submission data: 03/01/2018
//How to run?
//program_name input_image1.raw output_image.raw [BytesPerPixel = 1] [SizeLength = 256]
#include <stdio.h>
#include <iostream>
#include <stdlib.h>
#include <math.h>
#include "fileRead.cpp"
#include <vector>
using namespace std;
int main(int argc, char *argv[])
{
// Define file pointer and variables
int BytesPerPixel;
int Size = 512;
char *filename;
// Check for proper syntax
if (argc < 3){
cout << "Syntax Error - Incorrect Parameter Usage:" << endl;
cout << "g++ program_name";
cout << "input_image.raw output_image.raw [BytesPerPixel = 3] [Size = 512]" << endl;
return 0;
}
// Check if image is grayscale or color
if (argc < 4){
BytesPerPixel = 1; // default is grey image
}
else {
BytesPerPixel = atoi(argv[3]);
// Check if size is specified
if (argc >= 4){
Size = atoi(argv[4]);
}
}
// Allocate image data array
unsigned char Imagedata[Size][Size][BytesPerPixel];
// Read image (filename specified by first argument) into image data matrix
filename = argv[1];
ReadImage (filename,&Imagedata[0][0][0],BytesPerPixel,Size,Size);
///////////////////////// INSERT YOUR PROCESSING CODE HERE /////////////////////////
double paraL,paraW;
unsigned char New_Image[Size][Size][BytesPerPixel];
int i,j,channel;
vector<vector<double> > Length(Size,vector<double>(Size));
vector<vector<double> > Width(Size,vector<double>(Size));
double half_size = ((double)Size-1)/2;
//move to the middle of the image then use equations to change u,v to the x,y
for (i=0; i<Size; i++)
{
for (j=0; j<Size; j++)
{
Length[i][j]=(double)i-half_size;
Width[i][j]=(double)j-half_size;
paraL = sqrt(half_size*half_size-Width[i][j]*Width[i][j]/2)/half_size;
paraW = sqrt(half_size*half_size-Length[i][j]*Length[i][j]/2)/half_size;
Length[i][j]=Length[i][j]*paraL+half_size;
Width[i][j]=Width[i][j]*paraW+half_size;
}
}
//map it into new image
for (channel=0; channel<3; channel++)
{
for (i=0; i<Size; i++)
{
for (j=0; j<Size; j++)
{
New_Image[(int)Length[i][j]][(int)Width[i][j]][channel]=Imagedata[i][j][channel];
}
}
}
// Write image data (filename specified by second argument) from image data matrix
filename = argv[2];
WriteImage (filename, &New_Image[0][0][0],BytesPerPixel,Size,Size);
return 0;
}
| [
"noreply@github.com"
] | noreply@github.com |
c724b67e8e2f75b219dd5ae453da8e6fb4980cf7 | ee22fa7476a52f3fe2f9bc88d6c8f43f614cdba6 | /Tyvj/p1718.cpp | 55d73d269b8e7a28f314d5e2ac190abd7991e738 | [] | no_license | Sillyplus/Solution | 704bff07a29709f64e3e1634946618170d426b72 | 48dcaa075852f8cda1db22ec1733600edea59422 | refs/heads/master | 2020-12-17T04:53:07.089633 | 2016-07-02T10:01:28 | 2016-07-02T10:01:28 | 21,733,756 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 463 | cpp | #include <iostream>
#include <cmath>
using namespace std;
long long n, m;
int gcd(int a, int b) {
return b == 0 ? a : gcd(b, a % b);
}
int main() {
cin >> n >> m;
long long x;
int ans = 0;
if (m % n != 0) {
ans = 0;
} else {
x = m / n;
for (int i = 1; i <= sqrt(x); i++)
if (x % i == 0)
if (gcd(i, x/i) == 1)
ans++;
}
cout << ans << endl;
return 0;
}
| [
"oi_boy@sina.cn"
] | oi_boy@sina.cn |
f85009a0c38244b50e716eb37886240b3d9ee980 | 372d2c1cac620d2cf335da6cfcab1d6e4d0803b6 | /xr_3da/xr_area.cpp | 2dfa1f952fba0a6f1d91a78c68dca949918e2c38 | [] | no_license | ugozapad/xray_ol | 39000950815ef5c56801b0fa8f92d047a6e430da | 13536bd1b520d9ec140e4f924216ad07a000b59f | refs/heads/master | 2023-03-15T22:46:17.676641 | 2021-03-08T21:49:30 | 2021-03-08T21:49:30 | 340,637,264 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 6,738 | cpp | #include "stdafx.h"
#include "xr_area.h"
#include "xr_object.h"
#include "xrLevel.h"
#include "xr_creator.h"
#include "x_ray.h"
#include "xr_smallfont.h"
using namespace Collide;
//----------------------------------------------------------------------
// Class : CObjectSpace
// Purpose : stores space slots
//----------------------------------------------------------------------
CObjectSpace::CObjectSpace( ){
dwQueryID = 0x0;
}
//----------------------------------------------------------------------
CObjectSpace::~CObjectSpace( ){
}
//----------------------------------------------------------------------
IC void CObjectSpace::Object_Register ( CObject *O )
{
R_ASSERT (O);
Irect rect;
CCFModel* M = O->CFORM();
R_ASSERT (M);
GetRect (M, rect);
M->last_rect = rect;
// add to slots
for (int ix=rect.x1; ix<=rect.x2; ix++)
for (int iz=rect.y1; iz<=rect.y2; iz++)
Dynamic(ix,iz).lst.push_back(O);
}
//----------------------------------------------------------------------
IC void CObjectSpace::Object_Move ( CObject *O )
{
VERIFY (O);
CCFModel* M = O->CFORM();
Irect& r0 = M->last_rect;
Irect r1;
GetRect (M, r1);
if (r0.cmp(r1)) return;
int ix, iz;
for (ix=r0.x1; ix<=r0.x2; ix++) // remove from slots
for (iz=r0.y1; iz<=r0.y2; iz++)
if (!r1.in(ix,iz)) Dynamic(ix,iz).lst.erase(O);
for (ix=r1.x1;ix<=r1.x2;ix++) // add to slots
for (iz=r1.y1;iz<=r1.y2;iz++)
if (!r0.in(ix,iz)) Dynamic(ix,iz).lst.push_back(O);
M->last_rect.set( r1 ); // set model last rect
}
//----------------------------------------------------------------------
IC void CObjectSpace::Object_Unregister ( CObject *O )
{
R_ASSERT (O);
CCFModel* M = O->CFORM();
Irect& r0 = M->last_rect;
int ix, iz;
for (ix=r0.x1; ix<=r0.x2; ix++)
for (iz=r0.y1; iz<=r0.y2; iz++)
Dynamic(ix,iz).lst.erase( O );
M->last_rect.invalidate();
}
//----------------------------------------------------------------------
IC int CObjectSpace::GetNearest ( const Fvector &point, float range )
{
nearest_list.clear ( );
Irect rect;
GetRect ( point, rect, range );
Fsphere Q; Q.set(point,range);
CCFModel* target;
int ix, iz;
for (ix=rect.x1;ix<=rect.x2;ix++)
for (iz=rect.y1;iz<=rect.y2;iz++)
for (DWORD q=0; q<Dynamic(ix, iz).lst.size(); q++){
target = Dynamic(ix, iz).lst[q]->CFORM();
if (!target->enabled) continue;
if (target->dwQueryID!=dwQueryID) {
target->dwQueryID=dwQueryID;
if (Q.intersect(target->Sphere))
nearest_list.push_back(target);
}
}
return nearest_list.size();
}
//----------------------------------------------------------------------
IC int CObjectSpace::GetNearest( CCFModel* obj, float range ){
obj->Enable ( false ); // self exclude from test
int res = GetNearest( obj->Sphere.P, range + obj->Sphere.R );
obj->EnableRollback ( );
return res;
}
//----------------------------------------------------------------------
IC void CObjectSpace::GetRect ( const Fvector ¢er, Irect &rect, float range ){
rect.x1 = TransX(center.x - range);
rect.y1 = TransZ(center.z - range);
rect.x2 = TransX(center.x + range);
rect.y2 = TransZ(center.z + range);
}
//----------------------------------------------------------------------
IC void CObjectSpace::GetRect ( const CCFModel *obj, Irect &rect ){
VERIFY ( obj );
VERIFY ( obj->owner );
Fvector min, max;
min.set (obj->s_box.min);
max.set (obj->s_box.max);
obj->owner->svTransform.transform(min);
obj->owner->svTransform.transform(max);
minmax (min.x, max.x);
minmax (min.z, max.z);
rect.x1 = TransX(min.x);
rect.y1 = TransZ(min.z);
rect.x2 = TransX(max.x);
rect.y2 = TransZ(max.z);
}
//----------------------------------------------------------------------
BOOL CObjectSpace::TestNearestObject(CCFModel *object, const Fvector& center, float range){
dwQueryID++;
object->Enable ( false ); // self exclude from test
GetNearest ( center, range );
object->EnableRollback( );
CCFModel** _it = nearest_list.begin ();
CCFModel** _end = nearest_list.end ();
for ( ; _it!=_end; _it++ )
{
(*_it)->Owner()->OnNear(object->Owner());
/*
if (!object->owner->OnNear(target)) {
nearest_list.erase(_it-nearest_list.begin());
_it--;
_end = nearest_list.end();
}
*/
}
return nearest_list.size();
}
//----------------------------------------------------------------------
void CObjectSpace::Load( CStream *F ){
R_ASSERT (F);
int x_count, z_count;
hdrCFORM H;
F->Read (&H,sizeof(hdrCFORM));
R_ASSERT (CFORM_CURRENT_VERSION==H.version);
Fvector* verts = (Fvector*)F->Pointer();
RAPID::tri* tris = (RAPID::tri*)(verts+H.vertcount);
Static.BuildModel ( verts, H.vertcount, tris, H.facecount );
Msg("* Level CFORM memory usage: %dK",Static.MemoryUsage()/1024);
// CForm
x_count = iCeil((H.aabb.max.x-H.aabb.min.x)/CL_SLOT_SIZE);
z_count = iCeil((H.aabb.max.z-H.aabb.min.z)/CL_SLOT_SIZE);
Static_Shift.invert (H.aabb.min);
Dynamic.SetSize ( x_count, z_count );
}
//----------------------------------------------------------------------
void CObjectSpace::dbgRender()
{
R_ASSERT(bDebug);
pApp->pFont->Out(0,0,"Box count: %d",q_debug.boxes.size());
for (DWORD i=0; i<q_debug.boxes.size(); i++)
{
Fobb& obb = q_debug.boxes[i];
Fmatrix X,S,R;
obb.xform_get(X);
Device.Primitive.dbg_DrawOBB(X,obb.m_halfsize,D3DCOLOR_XRGB(255,0,0));
S.scale (obb.m_halfsize);
R.mul (X,S);
Device.Primitive.dbg_DrawEllipse(R,D3DCOLOR_XRGB(0,0,255));
}
q_debug.boxes.clear();
for (i=0; i<dbg_E.size(); i++)
{
Device.Primitive.dbg_DrawEllipse(dbg_E[i],D3DCOLOR_XRGB(0,255,0));
}
dbg_E.clear();
for (i=0; i<dbg_S.size(); i++)
{
pair<Fsphere,DWORD>& P = dbg_S[i];
Fsphere& S = P.first;
Fmatrix M;
M.scale (S.R,S.R,S.R);
M.translate_over(S.P);
Device.Primitive.dbg_DrawEllipse(M,P.second);
}
dbg_S.clear();
// render slots
Fvector c;
DWORD C1 = D3DCOLOR_XRGB(0,64,0);
DWORD C1s = D3DCOLOR_XRGB(0,255,0);
DWORD C2 = D3DCOLOR_XRGB(100,100,100);
DWORD C2s = D3DCOLOR_XRGB(170,170,170);
float cl = CL_SLOT_SIZE;
float of = .1f;
float cl_2 = CL_SLOT_SIZE/2-.05f;
for (int x=0; x<Dynamic.x_count; x++){
for (int z=0; z<Dynamic.z_count; z++){
c.set(-Static_Shift.x+cl*x+cl_2,0.1f,-Static_Shift.z+cl*z+cl_2);
BOOL B=FALSE;
for (i=0; i<dbg_Slot.size(); i++){
B=fsimilar(dbg_Slot[i].x,float(x))&&(fsimilar(dbg_Slot[i].y,float(z)));
if (B) break;
}
Device.Primitive.dbg_DrawAABB(c,1.f,.1f,1.f,B?C1s:C1);
Device.Primitive.dbg_DrawAABB(c,cl_2,0,cl_2,B?C2s:C2);
}
}
c.set(pCreator->CurrentEntity()->Position());
pApp->pFont->Out(-1.f,0.5f,"Slot {%d,%d}",TransX(c.x),TransZ(c.z));
}
| [
"hp1link2@gmail.com"
] | hp1link2@gmail.com |
129f18b61f0176966e838e4d72814ec7350214a0 | 0ae41b99a1f4afc0932cf0d3cfe7b8cf288f57e6 | /src/coins.h | d16456f66b824fc307fa2b9167c5023f9878218b | [
"MIT"
] | permissive | Sivonja8/ruxcryptoRXC | bdc6c94349774fd6c24a40eabedfb1646ad28aa2 | 4921ee3b3b4a8b1d2d71c7bd19f1a9a3635e4075 | refs/heads/master | 2023-07-05T13:50:33.832602 | 2021-07-06T15:29:07 | 2021-07-06T15:29:07 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 10,159 | h | // Copyright (c) 2009-2010 Satoshi Nakamoto
// Copyright (c) 2009-2015 The Bitcoin Core developers
// Distributed under the MIT software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#ifndef BITCOIN_COINS_H
#define BITCOIN_COINS_H
#include "compressor.h"
#include "core_memusage.h"
#include "hash.h"
#include "memusage.h"
#include "serialize.h"
#include "uint256.h"
#include <assert.h>
#include <stdint.h>
#include <unordered_map>
/**
* A UTXO entry.
*
* Serialized format:
* - VARINT((coinbase ? 1 : 0) | (height << 1))
* - the non-spent CTxOut (via CTxOutCompressor)
*/
class Coin
{
public:
//! unspent transaction output
CTxOut out;
//! whether containing transaction was a coinbase
unsigned int fCoinBase : 1;
//! at which height this containing transaction was included in the active block chain
uint32_t nHeight : 31;
//! construct a Coin from a CTxOut and height/coinbase information.
Coin(CTxOut&& outIn, int nHeightIn, bool fCoinBaseIn) : out(std::move(outIn)), fCoinBase(fCoinBaseIn), nHeight(nHeightIn) {}
Coin(const CTxOut& outIn, int nHeightIn, bool fCoinBaseIn) : out(outIn), fCoinBase(fCoinBaseIn),nHeight(nHeightIn) {}
void Clear() {
out.SetNull();
fCoinBase = false;
nHeight = 0;
}
//! empty constructor
Coin() : fCoinBase(false), nHeight(0) { }
bool IsCoinBase() const {
return fCoinBase;
}
template<typename Stream>
void Serialize(Stream &s) const {
assert(!IsSpent());
uint32_t code = nHeight * 2 + fCoinBase;
::Serialize(s, VARINT(code));
::Serialize(s, CTxOutCompressor(REF(out)));
}
template<typename Stream>
void Unserialize(Stream &s) {
uint32_t code = 0;
::Unserialize(s, VARINT(code));
nHeight = code >> 1;
fCoinBase = code & 1;
::Unserialize(s, REF(CTxOutCompressor(out)));
}
bool IsSpent() const {
return out.IsNull();
}
size_t DynamicMemoryUsage() const {
return memusage::DynamicUsage(out.scriptPubKey);
}
};
class SaltedOutpointHasher
{
private:
/** Salt */
const uint64_t k0, k1;
public:
SaltedOutpointHasher();
/**
* This *must* return size_t. With Boost 1.46 on 32-bit systems the
* unordered_map will behave unpredictably if the custom hasher returns a
* uint64_t, resulting in failures when syncing the chain (#4634).
*/
size_t operator()(const COutPoint& id) const {
return SipHashUint256Extra(k0, k1, id.hash, id.n);
}
};
struct CCoinsCacheEntry
{
Coin coin; // The actual cached data.
unsigned char flags;
enum Flags {
DIRTY = (1 << 0), // This cache entry is potentially different from the version in the parent view.
FRESH = (1 << 1), // The parent view does not have this entry (or it is pruned).
/* Note that FRESH is a performance optimization with which we can
* erase coins that are fully spent if we know we do not need to
* flush the changes to the parent cache. It is always safe to
* not mark FRESH if that condition is not guaranteed.
*/
};
CCoinsCacheEntry() : flags(0) {}
explicit CCoinsCacheEntry(Coin&& coin_) : coin(std::move(coin_)), flags(0) {}
};
typedef std::unordered_map<COutPoint, CCoinsCacheEntry, SaltedOutpointHasher> CCoinsMap;
/** Cursor for iterating over CoinsView state */
class CCoinsViewCursor
{
public:
CCoinsViewCursor(const uint256 &hashBlockIn): hashBlock(hashBlockIn) {}
virtual ~CCoinsViewCursor() {}
virtual bool GetKey(COutPoint &key) const = 0;
virtual bool GetValue(Coin &coin) const = 0;
/* Don't care about GetKeySize here */
virtual unsigned int GetValueSize() const = 0;
virtual bool Valid() const = 0;
virtual void Next() = 0;
//! Get best block at the time this cursor was created
const uint256 &GetBestBlock() const { return hashBlock; }
private:
uint256 hashBlock;
};
/** Abstract view on the open txout dataset. */
class CCoinsView
{
public:
/** Retrieve the Coin (unspent transaction output) for a given outpoint.
* Returns true only when an unspent coin was found, which is returned in coin.
* When false is returned, coin's value is unspecified.
*/
virtual bool GetCoin(const COutPoint &outpoint, Coin &coin) const;
//! Just check whether a given outpoint is unspent.
virtual bool HaveCoin(const COutPoint &outpoint) const;
//! Retrieve the block hash whose state this CCoinsView currently represents
virtual uint256 GetBestBlock() const;
//! Do a bulk modification (multiple Coin changes + BestBlock change).
//! The passed mapCoins can be modified.
virtual bool BatchWrite(CCoinsMap &mapCoins, const uint256 &hashBlock);
//! Get a cursor to iterate over the whole state
virtual CCoinsViewCursor *Cursor() const;
//! As we use CCoinsViews polymorphically, have a virtual destructor
virtual ~CCoinsView() {}
//! Estimate database size (0 if not implemented)
virtual size_t EstimateSize() const { return 0; }
};
/** CCoinsView backed by another CCoinsView */
class CCoinsViewBacked : public CCoinsView
{
protected:
CCoinsView *base;
public:
CCoinsViewBacked(CCoinsView *viewIn);
bool GetCoin(const COutPoint &outpoint, Coin &coin) const override;
bool HaveCoin(const COutPoint &outpoint) const override;
uint256 GetBestBlock() const override;
void SetBackend(CCoinsView &viewIn);
bool BatchWrite(CCoinsMap &mapCoins, const uint256 &hashBlock) override;
CCoinsViewCursor *Cursor() const override;
size_t EstimateSize() const override;
};
/** CCoinsView that adds a memory cache for transactions to another CCoinsView */
class CCoinsViewCache : public CCoinsViewBacked
{
protected:
/**
* Make mutable so that we can "fill the cache" even from Get-methods
* declared as "const".
*/
mutable uint256 hashBlock;
mutable CCoinsMap cacheCoins;
/* Cached dynamic memory usage for the inner Coin objects. */
mutable size_t cachedCoinsUsage;
public:
CCoinsViewCache(CCoinsView *baseIn);
// Standard CCoinsView methods
bool GetCoin(const COutPoint &outpoint, Coin &coin) const override;
bool HaveCoin(const COutPoint &outpoint) const override;
uint256 GetBestBlock() const override;
void SetBestBlock(const uint256 &hashBlock);
bool BatchWrite(CCoinsMap &mapCoins, const uint256 &hashBlock) override;
CCoinsViewCursor* Cursor() const override {
throw std::logic_error("CCoinsViewCache cursor iteration not supported.");
}
/**
* Check if we have the given utxo already loaded in this cache.
* The semantics are the same as HaveCoin(), but no calls to
* the backing CCoinsView are made.
*/
bool HaveCoinInCache(const COutPoint &outpoint) const;
/**
* Return a reference to Coin in the cache, or a pruned one if not found. This is
* more efficient than GetCoin.
*
* Generally, do not hold the reference returned for more than a short scope.
* While the current implementation allows for modifications to the contents
* of the cache while holding the reference, this behavior should not be relied
* on! To be safe, best to not hold the returned reference through any other
* calls to this cache.
*/
const Coin& AccessCoin(const COutPoint &output) const;
/**
* Add a coin. Set potential_overwrite to true if a non-pruned version may
* already exist.
*/
void AddCoin(const COutPoint& outpoint, Coin&& coin, bool potential_overwrite);
/**
* Spend a coin. Pass moveto in order to get the deleted data.
* If no unspent output exists for the passed outpoint, this call
* has no effect.
*/
bool SpendCoin(const COutPoint &outpoint, Coin* moveto = nullptr);
/**
* Push the modifications applied to this cache to its base.
* Failure to call this method before destruction will cause the changes to be forgotten.
* If false is returned, the state of this cache (and its backing view) will be undefined.
*/
bool Flush();
/**
* Removes the UTXO with the given outpoint from the cache, if it is
* not modified.
*/
void Uncache(const COutPoint &outpoint);
//! Calculate the size of the cache (in number of transaction outputs)
unsigned int GetCacheSize() const;
//! Calculate the size of the cache (in bytes)
size_t DynamicMemoryUsage() const;
/**
* Amount of ruxcrypto coming in to a transaction
* Note that lightweight clients may not know anything besides the hash of previous transactions,
* so may not be able to calculate this.
*
* @param[in] tx transaction for which we are checking input total
* @return Sum of value of all inputs (scriptSigs)
*/
CAmount GetValueIn(const CTransaction& tx) const;
//! Check whether all prevouts of the transaction are present in the UTXO set represented by this view
bool HaveInputs(const CTransaction& tx) const;
private:
CCoinsMap::iterator FetchCoin(const COutPoint &outpoint) const;
/**
* By making the copy constructor private, we prevent accidentally using it when one intends to create a cache on top of a base cache.
*/
CCoinsViewCache(const CCoinsViewCache &);
};
//! Utility function to add all of a transaction's outputs to a cache.
// It assumes that overwrites are only possible for coinbase transactions,
// TODO: pass in a boolean to limit these possible overwrites to known
// (pre-BIP34) cases.
void AddCoins(CCoinsViewCache& cache, const CTransaction& tx, int nHeight);
//! Utility function to find any unspent output with a given txid.
// This function can be quite expensive because in the event of a transaction
// which is not found in the cache, it can cause up to MAX_OUTPUTS_PER_BLOCK
// lookups to database, so it should be used with care.
const Coin& AccessByTxid(const CCoinsViewCache& cache, const uint256& txid);
#endif // BITCOIN_COINS_H
| [
"nsmajic@gmail.com"
] | nsmajic@gmail.com |
0530684bfd53b501f9eef0bda38edaa185ed7e3a | df4ddadeedc2d6f4f8ff577c6b7adc484e83477d | /Vector/Exam03-/OperatorOver2.cpp | 6993f98ed77f81e5eff434f17f3268f565f27ed2 | [] | no_license | YeonjaeLee/c | 5ad950bd9c8f803c37b80d27953cfa60ebbe6008 | 7cb32bed987f69cd6cbb94ee9d6639dd92f05247 | refs/heads/master | 2021-01-23T06:45:34.719825 | 2017-04-14T04:22:50 | 2017-04-14T04:22:50 | 86,396,333 | 0 | 0 | null | null | null | null | UHC | C++ | false | false | 751 | cpp | // 대입 연산자의 오버로딩
#include <iostream>
#include <cstring>
using namespace std;
class Person
{
private:
char * name;
public:
Person() { name = NULL; }
Person(char * str)
{
int len = (int)strlen(str);
name = new char[len + 1];
strcpy(name, str);
}
~Person() { delete[]name; }
Person & operator= (const Person & psn);
char * GetName()
{
return name;
}
};
Person & Person::operator= (const Person & psn)
{
if (this == &psn)
return *this;
delete[]name; //지금까지의 메모리를 해제
int len = (int)strlen(psn.name);
name = new char[len + 1];
strcpy(name, psn.name);
return *this;
}
int main2()
{
Person psn1("Orange"), psn2("Apple");
psn1 = psn2;
cout << psn1.GetName() << endl;
return 0;
} | [
"yeonjae115@gmail.com"
] | yeonjae115@gmail.com |
b5561f2ca0aff73a02a5082609845b0b7f1cfcdf | 3b6f947d911c1986677d591893d474bec2603830 | /1-19-0/10.5.1.cpp | 509671ca9656972feee572b236c5ad2a8121ac89 | [] | no_license | zwwwwww/ITCE | 2b8447fb0e76ca1dc81926774fc777efaf309d69 | 7977d701fe9f336055594b2cc2cfa5f98f32ca66 | refs/heads/master | 2022-12-31T06:36:46.719171 | 2020-10-17T13:37:43 | 2020-10-17T13:37:43 | 304,823,663 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 441 | cpp | /*
From:ITC
10
Simple type defects
10.5
string
10.5.1
String literal compared with variable foo
*/
#include<iostream>
#include<string.h>
using namespace std;
void string_001() {
const char* s1 = ""helloworld"";
const char* s2 = ""world"";
int i = strcmp(s1, s2);/*Tool should Not detect this line as error*/ /*ERROR:Simple type error*/
cout << i;
} | [
"1256392433@qq.com"
] | 1256392433@qq.com |
b5753acee491095e7cdd597553ca0739616b2c30 | b3bddf04b86e7a73ed6762a963b81d7a4eea5a62 | /Algorithm/템플릿/queueTemplate/MyQueue.h | 6a24cf5c00dee3f46a2c21ef0adfd488022b1fe0 | [] | no_license | leerang92/StudyRepo | c090a03fa0349ef7abe976a244f347f0e3bc6b0d | f232f6f01b287b4d25802f7336c09a2d5073b1d2 | refs/heads/master | 2016-09-13T01:27:51.428100 | 2016-05-22T05:26:29 | 2016-05-22T05:26:29 | 59,368,234 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 389 | h | #pragma once
template <typename T>
class CMyQueue
{
T *queue;
int front, rear;
int max, size;
public:
CMyQueue(int Max = 100) : front(0), rear(0), max(Max), size(0){
queue = new T[Max];
}
~CMyQueue() {
if(queue)
delete[] queue;
}
void enQueue(T item);
T deQueue();
bool isFull() { return size == max; }
bool isEmpty() { return size == 0; }
};
#include "MyQueue.inl"
| [
"asw77id@gmail.com"
] | asw77id@gmail.com |
017fc860fd0f919f9b285214470e5f6225787422 | da536ce5676304baf5b6d0982e31b0d370900729 | /Client/MPointerGC.cpp | 2e20f0acffb2874198378bf689956cfd3cc07961 | [] | no_license | JoseChV/MPointer | 087be31c621dacca5e91c68737363ce6d6041dd3 | b00d36b76b40513cb918be3c5bec1ff3ad998e13 | refs/heads/master | 2020-03-28T09:52:36.622021 | 2018-10-09T23:41:07 | 2018-10-09T23:41:07 | 148,066,113 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 117 | cpp | //
// Created by jose on 17/09/18.
//
#include "MPointerGC.h"
MPointerGC* MPointerGC::instance = nullptr;
| [
"noreply@github.com"
] | noreply@github.com |
b7325215fd20671fc6779e047423e15802093d1b | 2b65240a7731b00480ec71e007e8e0743776affc | /ui_mainwindow.h | a6120c87e6dc745017eef2dc1787ef223008c161 | [] | no_license | ray-x/synthesis | 6c3ca751b16436b92e938badfdd11c848e9d839e | 8821b706bc7850242a6cfba49a1b361651c60126 | refs/heads/master | 2020-03-16T22:20:25.040970 | 2018-05-17T11:59:06 | 2018-05-17T11:59:06 | 133,035,290 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 6,946 | h | /********************************************************************************
** Form generated from reading UI file 'mainwindow.ui'
**
** Created by: Qt User Interface Compiler version 5.4.1
**
** WARNING! All changes made in this file will be lost when recompiling UI file!
********************************************************************************/
#ifndef UI_MAINWINDOW_H
#define UI_MAINWINDOW_H
#include <QtCore/QVariant>
#include <QtWidgets/QAction>
#include <QtWidgets/QApplication>
#include <QtWidgets/QButtonGroup>
#include <QtWidgets/QGridLayout>
#include <QtWidgets/QHeaderView>
#include <QtWidgets/QMainWindow>
#include <QtWidgets/QWidget>
QT_BEGIN_NAMESPACE
class Ui_MainWindow
{
public:
QWidget *centralWidget;
QGridLayout *gridLayout;
void setupUi(QMainWindow *MainWindow)
{
if (MainWindow->objectName().isEmpty())
MainWindow->setObjectName(QStringLiteral("MainWindow"));
MainWindow->resize(800, 480);
QSizePolicy sizePolicy(QSizePolicy::Fixed, QSizePolicy::Fixed);
sizePolicy.setHorizontalStretch(0);
sizePolicy.setVerticalStretch(0);
sizePolicy.setHeightForWidth(MainWindow->sizePolicy().hasHeightForWidth());
MainWindow->setSizePolicy(sizePolicy);
MainWindow->setMinimumSize(QSize(800, 480));
MainWindow->setMaximumSize(QSize(800, 480));
MainWindow->setStyleSheet(QLatin1String("#PresetBank{\n"
" background-color:qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, stop:0 rgba(22, 68, 115, 255), stop:1 rgba(21, 51, 83, 255))\n"
"}\n"
"\n"
"QLabel{\n"
" color:white;\n"
"}\n"
"\n"
"#label{\n"
" background-color:rgb(21, 68, 26);\n"
" color: white;\n"
"}\n"
"\n"
"#lbBank1{\n"
" background-color:rgb(131, 15, 29);\n"
" color: white\n"
"}\n"
"\n"
"#lbBank2{\n"
" background-color : rgb(131, 15, 29);\n"
" color : white\n"
"}\n"
"\n"
"#lbKey{\n"
" background-color : transparent;\n"
" color : white\n"
"}\n"
"\n"
"#lbOctave{\n"
" background-color : transparent;\n"
" color : white\n"
"}\n"
"\n"
"#lbCategory{\n"
" background-color : rgb(131, 15, 29);\n"
" color: white\n"
"}\n"
"\n"
"#lbCatNb{\n"
" background-color : rgb(131, 15, 29);\n"
" color: white\n"
"}\n"
"\n"
"#lbCatName{\n"
" background-color : transparent;\n"
" color: white;\n"
"}\n"
"\n"
"#lbSelect_1{\n"
" background-color : rgb(21, 68, 26);\n"
"}\n"
"\n"
"#lbSelect_2{\n"
" background-color : rgb(21, 68, 26);\n"
"}\n"
"\n"
"#lbSelect_3{\n"
""
" background-color : rgb(21, 68, 26);\n"
"}\n"
"\n"
"#lbSelect_4{\n"
" background-color : rgb(21, 68, 26);\n"
"}\n"
"\n"
"#lbInstrName_1{\n"
" background-color:qlineargradient(spread:reflect, x1:0, y1:0, x2:0, y2:1, stop:0 rgba(4, 14, 24, 255), stop:0.5 rgba(26, 68, 113, 255), stop:1 rgba(7, 18, 30, 255))\n"
"}\n"
"\n"
"#lbInstrName_2{\n"
" background-color:qlineargradient(spread:reflect, x1:0, y1:0, x2:0, y2:1, stop:0 rgba(4, 14, 24, 255), stop:0.5 rgba(26, 68, 113, 255), stop:1 rgba(7, 18, 30, 255))\n"
"}\n"
"\n"
"#lbInstrName_3{\n"
" background-color:qlineargradient(spread:reflect, x1:0, y1:0, x2:0, y2:1, stop:0 rgba(4, 14, 24, 255), stop:0.5 rgba(26, 68, 113, 255), stop:1 rgba(7, 18, 30, 255))\n"
"}\n"
"\n"
"#lbInstrName_4{\n"
" background-color:qlineargradient(spread:reflect, x1:0, y1:0, x2:0, y2:1, stop:0 rgba(4, 14, 24, 255), stop:0.5 rgba(26, 68, 113, 255), stop:1 rgba(7, 18, 30, 255));\n"
"}\n"
"\n"
"#frame_Select{\n"
" background-color: rgb(18, 22, 29);\n"
"}\n"
"\n"
"#frame_Eff{\n"
" background-color"
": rgb(18, 22, 29);\n"
"}\n"
"\n"
"#lbOpt_SEdit{\n"
" background-color: rgb(18, 22, 29);\n"
"}\n"
"\n"
"#lbOpt_FEdit{\n"
" background-color: rgb(18, 22, 29);\n"
"}\n"
"\n"
"#lbOpt_EQ{\n"
" background-color:rgb(10, 23, 15);\n"
"}\n"
"\n"
"#lbOpt_Eff{\n"
" background-color:rgb(10, 23, 15);\n"
"}\n"
"\n"
"#lbProg{\n"
" background-color: qlineargradient(spread:reflect, x1:0, y1:0, x2:0, y2:1, stop:0 rgba(0, 0, 0, 255), stop:0.112403 rgba(14, 38, 63, 255), stop:0.143411 rgba(52, 144, 239, 255), stop:0.162791 rgba(37, 100, 166, 255), stop:0.79845 rgba(38, 100, 165, 255), stop:0.817829 rgba(53, 141, 233, 255), stop:0.848837 rgba(17, 46, 77, 255), stop:1 rgba(0, 0, 0, 255))\n"
"}\n"
"\n"
"#lbEQ_Prog_1{\n"
" background-color: qlineargradient(spread:reflect, x1:1, y1:1, x2:0, y2:1, stop:0 rgba(0, 0, 0, 255), stop:0.112403 rgba(14, 38, 63, 255), stop:0.143411 rgba(52, 144, 239, 255), stop:0.162791 rgba(37, 100, 166, 255), stop:0.79845 rgba(38, 100, 165, 255), stop:0.817829 rgba(53, 141, 233, 255), stop:0.848837 rgba(17, "
"46, 77, 255), stop:1 rgba(0, 0, 0, 255))\n"
"}\n"
"\n"
"#lbEQ_Prog_2{\n"
" background-color: qlineargradient(spread:reflect, x1:1, y1:1, x2:0, y2:1, stop:0 rgba(0, 0, 0, 255), stop:0.112403 rgba(14, 38, 63, 255), stop:0.143411 rgba(52, 144, 239, 255), stop:0.162791 rgba(37, 100, 166, 255), stop:0.79845 rgba(38, 100, 165, 255), stop:0.817829 rgba(53, 141, 233, 255), stop:0.848837 rgba(17, 46, 77, 255), stop:1 rgba(0, 0, 0, 255))\n"
"}\n"
"\n"
"#lbEQ_Prog_3{\n"
" background-color: qlineargradient(spread:reflect, x1:1, y1:1, x2:0, y2:1, stop:0 rgba(0, 0, 0, 255), stop:0.112403 rgba(14, 38, 63, 255), stop:0.143411 rgba(52, 144, 239, 255), stop:0.162791 rgba(37, 100, 166, 255), stop:0.79845 rgba(38, 100, 165, 255), stop:0.817829 rgba(53, 141, 233, 255), stop:0.848837 rgba(17, 46, 77, 255), stop:1 rgba(0, 0, 0, 255))\n"
"}\n"
"\n"
"#lbEQ_Prog_4{\n"
" background-color: qlineargradient(spread:reflect, x1:1, y1:1, x2:0, y2:1, stop:0 rgba(0, 0, 0, 255), stop:0.112403 rgba(14, 38, 63, 255), stop:0.143411 rgba(52, 144, 23"
"9, 255), stop:0.162791 rgba(37, 100, 166, 255), stop:0.79845 rgba(38, 100, 165, 255), stop:0.817829 rgba(53, 141, 233, 255), stop:0.848837 rgba(17, 46, 77, 255), stop:1 rgba(0, 0, 0, 255))\n"
"}\n"
"\n"
"#lbProg_text{\n"
" background-color:transparent;\n"
" border: 0px solid transparent;\n"
" color:white;\n"
"}"));
MainWindow->setToolButtonStyle(Qt::ToolButtonTextOnly);
MainWindow->setAnimated(false);
MainWindow->setTabShape(QTabWidget::Rounded);
centralWidget = new QWidget(MainWindow);
centralWidget->setObjectName(QStringLiteral("centralWidget"));
gridLayout = new QGridLayout(centralWidget);
gridLayout->setSpacing(6);
gridLayout->setContentsMargins(11, 11, 11, 11);
gridLayout->setObjectName(QStringLiteral("gridLayout"));
gridLayout->setContentsMargins(0, 0, 0, 0);
MainWindow->setCentralWidget(centralWidget);
retranslateUi(MainWindow);
QMetaObject::connectSlotsByName(MainWindow);
} // setupUi
void retranslateUi(QMainWindow *MainWindow)
{
MainWindow->setWindowTitle(QApplication::translate("MainWindow", "Synthetizer", 0));
} // retranslateUi
};
namespace Ui {
class MainWindow: public Ui_MainWindow {};
} // namespace Ui
QT_END_NAMESPACE
#endif // UI_MAINWINDOW_H
| [
"rayx.cn@gmail.com"
] | rayx.cn@gmail.com |
fa2ffcdbc2a3e033bef7de47c0e41c97f45251bf | 747974d83629a8ba28fcb3f4a33a17319002f169 | /tensorflow/lite/delegates/gpu/cl/inference_context.cc | ca0c0319f5422c03b4b33d538ac4281d9e480726 | [
"Apache-2.0"
] | permissive | ayushmankumar7/tensorflow | 72f60290e4187644b4b254d25ec3033c9fda0c55 | 69a7d3abbbf5be791d1db397fcfea5d8e6efc4b9 | refs/heads/master | 2022-06-19T01:14:46.563563 | 2020-10-19T10:13:23 | 2020-10-19T10:13:23 | 244,302,166 | 2 | 0 | Apache-2.0 | 2022-05-21T12:44:00 | 2020-03-02T06:58:50 | C++ | UTF-8 | C++ | false | false | 26,322 | cc | /* Copyright 2019 The TensorFlow Authors. All Rights Reserved.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
==============================================================================*/
#include "tensorflow/lite/delegates/gpu/cl/inference_context.h"
#include <algorithm>
#include <cmath>
#include <cstdint>
#include <map>
#include <memory>
#include <string>
#include <vector>
#include "absl/container/flat_hash_map.h"
#include "absl/container/flat_hash_set.h"
#include "tensorflow/lite/delegates/gpu/cl/buffer.h"
#include "tensorflow/lite/delegates/gpu/cl/cl_device.h"
#include "tensorflow/lite/delegates/gpu/cl/kernels/gpu_operation.h"
#include "tensorflow/lite/delegates/gpu/cl/model_hints.h"
#include "tensorflow/lite/delegates/gpu/cl/precision.h"
#include "tensorflow/lite/delegates/gpu/cl/selectors/operation_selector.h"
#include "tensorflow/lite/delegates/gpu/cl/selectors/special_selector.h"
#include "tensorflow/lite/delegates/gpu/cl/storage_type_util.h"
#include "tensorflow/lite/delegates/gpu/cl/tensor_type.h"
#include "tensorflow/lite/delegates/gpu/common/data_type.h"
#include "tensorflow/lite/delegates/gpu/common/memory_management.h"
#include "tensorflow/lite/delegates/gpu/common/model.h"
#include "tensorflow/lite/delegates/gpu/common/model_transformer.h"
#include "tensorflow/lite/delegates/gpu/common/operations.h"
#include "tensorflow/lite/delegates/gpu/common/shape.h"
#include "tensorflow/lite/delegates/gpu/common/transformations/add_bias.h"
#include "tensorflow/lite/delegates/gpu/common/transformations/merge_padding_with.h"
#include "tensorflow/lite/delegates/gpu/common/types.h"
#include "tensorflow/lite/delegates/gpu/common/util.h"
namespace tflite {
namespace gpu {
namespace cl {
namespace {
bool IsReady(const absl::flat_hash_set<ValueId>& ready_tensors,
const CLNode& node) {
for (const ValueId in_id : node.inputs) {
if (ready_tensors.find(in_id) == ready_tensors.end()) {
return false;
}
}
return true;
}
std::vector<std::pair<ValueId, TensorDescriptor>> GetCLNodeTensors(
const CLNode& node) {
std::vector<std::pair<ValueId, TensorDescriptor>> result;
result.reserve(node.inputs.size() + node.outputs.size());
const OperationDef op_def = node.operation->GetDefinition();
for (int j = 0; j < node.inputs.size(); ++j) {
result.push_back({node.inputs[j], op_def.src_tensors[j]});
}
for (int j = 0; j < node.outputs.size(); ++j) {
result.push_back({node.outputs[j], op_def.dst_tensors[j]});
}
return result;
}
absl::Status MergeCLNodes(CLNode* src, CLNode* dst) {
for (int j = 1; j < src->inputs.size(); ++j) {
dst->inputs.push_back(src->inputs[j]);
}
dst->outputs[0] = src->outputs[0];
dst->name += " linked : " + src->name;
return dst->operation->AddOperation(src->operation.get());
}
void AddUsage(ValueId id, int task_index,
std::map<ValueId, int2>* usage_records) {
auto it = usage_records->find(id);
if (it == usage_records->end()) {
(*usage_records)[id].x = task_index;
(*usage_records)[id].y = task_index;
} else {
(*usage_records)[id].y = task_index;
}
}
// returns true if actual memory for this storage type will be allocated with
// clCreateBuffer.
bool IsBufferBased(const TensorStorageType& type) {
return type == TensorStorageType::BUFFER ||
type == TensorStorageType::IMAGE_BUFFER;
}
// Generic add is add that have several runtime inputs and they are not
// broadcasted, i.e. pointwise add for N tensors where N > 1.
bool IsGenericAdd(const Node& node, const std::vector<Value*>& inputs,
const std::vector<Value*>& outputs) {
if (inputs.size() == 1) {
return false;
}
const OperationType op_type = OperationTypeFromString(node.operation.type);
if (op_type != OperationType::ADD) {
return false;
}
const auto dst_shape = outputs[0]->tensor.shape;
for (int i = 0; i < inputs.size(); ++i) {
const auto src_shape = inputs[i]->tensor.shape;
if (dst_shape.b != src_shape.b && src_shape.b == 1) {
return false;
}
if (dst_shape.h != src_shape.h && src_shape.h == 1) {
return false;
}
if (dst_shape.w != src_shape.w && src_shape.w == 1) {
return false;
}
if (dst_shape.c != src_shape.c && src_shape.c == 1) {
return false;
}
}
return true;
}
} // namespace
CLNode::CLNode(CLNode&& node)
: operation(std::move(node.operation)),
inputs(std::move(node.inputs)),
outputs(std::move(node.outputs)),
name(std::move(node.name)) {}
CLNode& CLNode::operator=(CLNode&& node) {
if (this != &node) {
operation = std::move(node.operation);
inputs = std::move(node.inputs);
outputs = std::move(node.outputs);
name = std::move(node.name);
}
return *this;
}
absl::Status InferenceContext::InitFromGraph(
const CreateInferenceInfo& create_info, const GraphFloat32& graph,
Environment* env, std::vector<uint8_t>* serialized_model) {
CreationContext creation_context;
creation_context.device = env->GetDevicePtr();
creation_context.context = &env->context();
creation_context.queue = env->queue();
creation_context.cache = env->program_cache();
ReserveGraphTensors(create_info, creation_context.GetDeviceInfo(), graph);
precision_ = create_info.precision;
storage_type_ = create_info.storage_type;
if (env->device().IsMali()) {
need_flush_ = true;
need_manual_release_ = true;
flush_periodically_ = true;
flush_period_ = 24;
}
if (env->device().IsPowerVR()) {
need_flush_ = true;
}
CopyInAndOutIds(graph);
RETURN_IF_ERROR(ConvertOperations(creation_context.GetDeviceInfo(), graph,
create_info.hints));
RETURN_IF_ERROR(Merge());
RETURN_IF_ERROR(AllocateMemory(creation_context.context));
BindMemoryToOperations();
RETURN_IF_ERROR(Compile(creation_context));
RETURN_IF_ERROR(UpdateParams());
TuningParameters tuning_parameters;
tuning_parameters.queue = env->profiling_queue();
tuning_parameters.info = &env->device().info_;
if (create_info.hints.Check(ModelHints::kFastTuning)) {
tuning_parameters.tuning_type = TuningType::FAST;
}
if (tuning_parameters.info->IsMali()) {
const MaliInfo& info = tuning_parameters.info->mali_info;
if (info.IsMaliT6xx()) {
// Mali T628 hangs forever in clFinish when used profiling queue
// TuningType::FAST does not use profiling queue.
tuning_parameters.tuning_type = TuningType::FAST;
}
}
RETURN_IF_ERROR(Tune(tuning_parameters));
if (serialized_model) {
flatbuffers::FlatBufferBuilder builder;
auto encoded_fb = Encode(*this, &builder);
data::FinishInferenceContextBuffer(builder, encoded_fb);
serialized_model->resize(builder.GetSize());
std::memcpy(serialized_model->data(), builder.GetBufferPointer(),
builder.GetSize());
}
for (auto& node : nodes_) {
node.operation->args_.ReleaseCPURepresentation();
}
return absl::OkStatus();
}
absl::Status InferenceContext::RestoreDeserialized(
const std::vector<uint8_t>& serialized_model, Environment* env) {
flatbuffers::Verifier verifier(serialized_model.data(),
serialized_model.size());
if (!data::VerifyInferenceContextBuffer(verifier)) {
return absl::DataLossError("Deserialization failed.");
}
auto decoded_fb = data::GetInferenceContext(serialized_model.data());
RETURN_IF_ERROR(Decode(&env->context(), decoded_fb, this));
CreationContext creation_context;
creation_context.device = env->GetDevicePtr();
creation_context.context = &env->context();
creation_context.queue = env->queue();
creation_context.cache = env->program_cache();
RETURN_IF_ERROR(AllocateMemory(creation_context.context));
BindMemoryToOperations();
for (auto& node : nodes_) {
RETURN_IF_ERROR(node.operation->CompileDeserialized(creation_context));
}
RETURN_IF_ERROR(UpdateParams());
for (auto& node : nodes_) {
node.operation->args_.ReleaseCPURepresentation();
}
return absl::OkStatus();
}
absl::Status InferenceContext::InitFromGraphWithTransforms(
const CreateInferenceInfo& create_info, GraphFloat32* graph,
Environment* env, std::vector<uint8_t>* serialized_model) {
RETURN_IF_ERROR(RunGraphTransforms(graph));
RETURN_IF_ERROR(InitFromGraph(create_info, *graph, env, serialized_model));
return absl::OkStatus();
}
void InferenceContext::CopyInAndOutIds(const GraphFloat32& graph) {
const auto inputs = graph.inputs();
for (const auto& input : inputs) {
input_ids_.push_back(input->id);
}
const auto variable_inputs = graph.variable_inputs();
for (const auto& variable_input : variable_inputs) {
variable_ids_and_refs_[variable_input->id] = variable_input->tensor.ref;
}
const auto outputs = graph.outputs();
for (const auto& output : outputs) {
output_ids_.push_back(output->id);
}
}
void InferenceContext::ReserveGraphTensors(
const CreateInferenceInfo& create_info, const DeviceInfo& device_info,
const GraphFloat32& graph) {
ValueId max_id;
auto tensors = graph.values();
auto data_type = DeduceDataTypeFromPrecision(create_info.precision);
for (auto& t : tensors) {
TensorStorageType storage_type = create_info.storage_type;
const auto shape = graph.GetValue(t->id)->tensor.shape;
Layout layout = shape.b == 1 ? Layout::HWC : Layout::BHWC;
if (graph.IsGraphInput(t->id) || graph.IsGraphOutput(t->id)) {
if (shape.c < 4 &&
CanCreateTensorWithShape(
device_info, shape,
TensorDescriptor{data_type, TensorStorageType::SINGLE_TEXTURE_2D,
layout})) {
storage_type = TensorStorageType::SINGLE_TEXTURE_2D;
}
}
storage_type = SelectBestStorageType(device_info, shape, storage_type,
data_type, layout);
tensor_reserver_.Add(
t->id, {shape, TensorDescriptor{data_type, storage_type, layout}});
max_id = std::max(max_id, t->id);
}
tensor_reserver_.SetNext(max_id + 1);
}
absl::Status InferenceContext::ConvertOperations(const DeviceInfo& device_info,
const GraphFloat32& graph,
ModelHints hints) {
std::map<ValueId, TensorDescriptor> tensor_descriptors;
const auto values = graph.values();
for (auto value : values) {
tensor_descriptors[value->id] = tensor_reserver_.Get(value->id).descriptor;
}
std::set<NodeId> consumed_nodes;
std::vector<Node*> graph_nodes = graph.nodes();
std::map<ValueId, int>
tensor_usages; // keeps latest index of operation that updated tensor
for (const auto& input_id : input_ids_) {
tensor_usages[input_id] = -1; // so as inputs "updated" before operation 0,
// we will mark them with -1
}
for (int i = 0; i < graph_nodes.size(); ++i) {
const Node& node = *graph_nodes[i];
if (consumed_nodes.find(node.id) != consumed_nodes.end()) {
continue;
}
std::string op_name = node.operation.type + " " + std::to_string(node.id);
GPUOperationsSubgraph gpu_subgraph;
if (hints.Check(ModelHints::kAllowSpecialKernels) &&
GPUSubgraphFromGraph(device_info, precision_, graph, node.id,
tensor_descriptors, &consumed_nodes, &gpu_subgraph,
&op_name)
.ok()) {
// Mapping of subgraph (set of nodes) to GPU operations. Should happen
// before straigtforward mapping.
} else {
// Straigtforward mapping of one graph node to GPU operations.
auto inputs = graph.FindInputs(node.id);
auto outputs = graph.FindOutputs(node.id);
// Reordering of input ids and updating of temporary tensors_usage struct.
// This stage is necessary because we are building OperationDef that rely
// on order of input ids. But we also should have input id on first
// position that potentially can be "linking" tensor and as result
// eliminated(unused) We apply it only for ADD operation, because of ADD
// associativity and ADD can be linked. In current approach "linking"
// tensor can be only latest written tensor(during linear order of
// execution) among input tensors.
if (IsGenericAdd(node, inputs, outputs)) {
int latest_written_tensor_index = 0;
int last_usage = tensor_usages[inputs[0]->id];
for (int j = 1; j < inputs.size(); ++j) {
if (tensor_usages[inputs[j]->id] > last_usage) {
last_usage = tensor_usages[inputs[j]->id];
latest_written_tensor_index = j;
}
}
std::swap(inputs[0], inputs[latest_written_tensor_index]);
}
consumed_nodes.insert(node.id);
OperationDef op_def;
op_def.precision = precision_;
for (int j = 0; j < inputs.size(); ++j) {
op_def.src_tensors.push_back(
tensor_reserver_.Get(inputs[j]->id).descriptor);
}
for (int j = 0; j < outputs.size(); ++j) {
op_def.dst_tensors.push_back(
tensor_reserver_.Get(outputs[j]->id).descriptor);
}
RETURN_IF_ERROR(GPUOperationFromNode(device_info, op_def, hints, inputs,
outputs, node, &gpu_subgraph));
}
absl::flat_hash_map<int, ValueId> mapping_to_global_ids;
for (int j = 0; j < gpu_subgraph.new_tensors.size(); ++j) {
const auto& t = gpu_subgraph.new_tensors[j];
auto global_id = tensor_reserver_.Add({t.first, t.second});
mapping_to_global_ids[j] = global_id;
}
for (auto& gpu_op : gpu_subgraph.operations) {
CLNode cl_node;
cl_node.operation = std::move(gpu_op.operation);
cl_node.inputs.resize(gpu_op.input_ids.size());
for (int j = 0; j < gpu_op.input_ids.size(); ++j) {
int id = gpu_op.input_ids[j];
if (id >= 0) {
cl_node.inputs[j] = id;
} else {
cl_node.inputs[j] = mapping_to_global_ids[-(id + 1)];
}
}
cl_node.outputs.resize(gpu_op.output_ids.size());
for (int j = 0; j < gpu_op.output_ids.size(); ++j) {
int id = gpu_op.output_ids[j];
if (id >= 0) {
cl_node.outputs[j] = id;
tensor_usages[id] = i;
} else {
cl_node.outputs[j] = mapping_to_global_ids[-(id + 1)];
}
}
cl_node.name = op_name;
nodes_.push_back(std::move(cl_node));
}
}
return absl::OkStatus();
}
absl::Status InferenceContext::Merge() {
absl::flat_hash_set<ValueId> ready_tensors;
for (const auto& input_id : input_ids_) {
ready_tensors.insert(input_id);
}
for (int i = 0; i < nodes_.size(); ++i) {
auto& node = nodes_[i];
for (const auto& out_id : node.outputs) {
ready_tensors.insert(out_id);
}
if (node.outputs.size() != 1) {
continue;
}
std::vector<int> next_nodes;
int link_index = 0;
for (int j = i + 1; j < nodes_.size(); ++j) {
for (int k = 0; k < nodes_[j].inputs.size(); ++k) {
if (nodes_[j].inputs[k] == node.outputs[0]) {
next_nodes.push_back(j);
link_index = k;
}
}
}
if (next_nodes.size() != 1 || link_index != 0) {
continue;
}
auto& linkable_node = nodes_[next_nodes[0]];
if (!linkable_node.operation->IsLinkable() ||
linkable_node.outputs.size() != 1 ||
!IsReady(ready_tensors, linkable_node)) {
continue;
}
const auto& original_dst_def =
node.operation->GetDefinition().dst_tensors[0];
const auto& link_dst_def =
linkable_node.operation->GetDefinition().dst_tensors[0];
if (original_dst_def != link_dst_def) {
continue;
}
RETURN_IF_ERROR(MergeCLNodes(&linkable_node, &node));
nodes_.erase(nodes_.begin() + next_nodes[0]);
i -= 1;
}
return absl::OkStatus();
}
void InferenceContext::GetUsages(const std::function<bool(ValueId)>& functor,
std::map<ValueId, int2>* usages) {
for (ValueId in_id : input_ids_) {
if (functor(in_id)) {
AddUsage(in_id, 0, usages);
}
}
for (int op_index = 0; op_index < nodes_.size(); ++op_index) {
auto tensors = GetCLNodeTensors(nodes_[op_index]);
for (auto& tensor : tensors) {
if (functor(tensor.first)) {
AddUsage(tensor.first, op_index, usages);
}
}
}
for (ValueId out_id : output_ids_) {
if (functor(out_id)) {
AddUsage(out_id, nodes_.size(), usages);
}
}
}
InferenceContext::TensorMemoryType InferenceContext::GetTensorMemoryType(
ValueId id) {
if (variable_ids_and_refs_.find(id) != variable_ids_and_refs_.end()) {
return TensorMemoryType::VARIABLE;
} else if (IsBufferBased(tensor_reserver_.Get(id).descriptor.storage_type)) {
return TensorMemoryType::BUFFER;
} else {
return TensorMemoryType::STRONG_SHAPE;
}
}
absl::Status InferenceContext::AllocateMemory(CLContext* context) {
RETURN_IF_ERROR(AllocateMemoryForVariableTensors(context));
RETURN_IF_ERROR(AllocateMemoryForBuffers(context));
RETURN_IF_ERROR(AllocateMemoryForStrongShapes(context));
return absl::OkStatus();
}
absl::Status InferenceContext::AllocateMemoryForVariableTensors(
CLContext* context) {
std::map<ValueId, int> ref_value_to_tensor_index;
for (auto value_and_ref_value : variable_ids_and_refs_) {
if (ref_value_to_tensor_index.find(value_and_ref_value.second) ==
ref_value_to_tensor_index.end()) {
const auto& t = tensor_reserver_.Get(value_and_ref_value.first);
const auto& shape = t.shape;
const auto& descriptor = t.descriptor;
RETURN_IF_ERROR(
CreateTensor(*context, shape, descriptor,
&variable_tensors_[value_and_ref_value.second]));
}
}
return absl::OkStatus();
}
absl::Status InferenceContext::AllocateMemoryForBuffers(CLContext* context) {
std::map<ValueId, int2> buffer_usages;
GetUsages(
[this](ValueId id) {
return GetTensorMemoryType(id) == TensorMemoryType::BUFFER;
},
&buffer_usages);
std::vector<TensorUsageRecord<size_t>> buffer_usage_records;
for (auto& usage : buffer_usages) {
const auto& t = tensor_reserver_.Get(usage.first);
const auto& shape = t.shape;
const auto& descriptor = t.descriptor;
const size_t element_size =
descriptor.data_type == DataType::FLOAT32 ? 4 : 2;
const size_t buffer_size =
shape.b * shape.w * shape.h * AlignByN(shape.c, 4) * element_size;
graph_ids_to_shared_buffer_tensors_[usage.first] =
buffer_usage_records.size();
buffer_usage_records.push_back({buffer_size,
static_cast<TaskId>(usage.second.x),
static_cast<TaskId>(usage.second.y)});
}
ObjectsAssignment<size_t> buffer_assignment;
RETURN_IF_ERROR(AssignObjectsToTensors(
buffer_usage_records, MemoryStrategy::GREEDY_BEST, &buffer_assignment));
shared_buffers_.resize(buffer_assignment.object_sizes.size());
for (int i = 0; i < buffer_assignment.object_sizes.size(); ++i) {
RETURN_IF_ERROR(CreateReadWriteBuffer(buffer_assignment.object_sizes[i],
context, &shared_buffers_[i]));
}
std::vector<bool> created_tensors(buffer_usage_records.size(), false);
shared_buffer_tensors_.resize(buffer_usage_records.size());
for (auto& node : nodes_) {
auto tensors = GetCLNodeTensors(node);
for (auto& t : tensors) {
if (GetTensorMemoryType(t.first) != TensorMemoryType::BUFFER) continue;
const int tensor_index = graph_ids_to_shared_buffer_tensors_[t.first];
if (created_tensors[tensor_index]) continue;
const auto& shape = tensor_reserver_.Get(t.first).shape;
const int buffer_index = buffer_assignment.object_ids[tensor_index];
RETURN_IF_ERROR(CreateSharedTensor(
*context, shared_buffers_[buffer_index].GetMemoryPtr(), shape,
t.second, &shared_buffer_tensors_[tensor_index]));
created_tensors[tensor_index] = true;
}
}
return absl::OkStatus();
}
absl::Status InferenceContext::AllocateMemoryForStrongShapes(
CLContext* context) {
std::map<ValueId, int2> usages;
GetUsages(
[this](ValueId id) {
return GetTensorMemoryType(id) == TensorMemoryType::STRONG_SHAPE;
},
&usages);
std::vector<TensorUsageRecord<DummyTensor>> usage_records;
std::map<ValueId, ValueId> remap_from_graph_ids;
for (auto& usage : usages) {
remap_from_graph_ids[usage.first] = usage_records.size();
usage_records.push_back({tensor_reserver_.Get(usage.first),
static_cast<TaskId>(usage.second.x),
static_cast<TaskId>(usage.second.y)});
}
ObjectsAssignment<DummyTensor> assignment;
RETURN_IF_ERROR(AssignObjectsToTensors(
usage_records, MemoryStrategy::EQUALITY, &assignment));
for (auto& node : nodes_) {
auto tensors = GetCLNodeTensors(node);
for (auto& t : tensors) {
if (GetTensorMemoryType(t.first) != TensorMemoryType::STRONG_SHAPE) {
continue;
}
const auto& shape = tensor_reserver_.Get(t.first).shape;
const auto id = assignment.object_ids[remap_from_graph_ids[t.first]];
graph_ids_to_strong_shape_tensors_[t.first] = id;
const auto& it = strong_shape_tensors_.find(id);
if (it == strong_shape_tensors_.end()) {
RETURN_IF_ERROR(CreateTensor(*context, shape, t.second,
&strong_shape_tensors_[id]));
}
}
}
return absl::OkStatus();
}
void InferenceContext::BindMemoryToOperations() {
for (auto& node : nodes_) {
for (int i = 0; i < node.inputs.size(); ++i) {
node.operation->SetSrc(GetTensor(node.inputs[i]), i);
}
for (int i = 0; i < node.outputs.size(); ++i) {
node.operation->SetDst(GetTensor(node.outputs[i]), i);
}
}
}
absl::Status InferenceContext::Compile(
const CreationContext& creation_context) {
for (auto& node : nodes_) {
RETURN_IF_ERROR(node.operation->Compile(creation_context));
}
return absl::OkStatus();
}
absl::Status InferenceContext::Tune(const TuningParameters& tuning_parameters) {
for (auto& node : nodes_) {
RETURN_IF_ERROR(node.operation->Tune(tuning_parameters));
}
return absl::OkStatus();
}
absl::Status InferenceContext::UpdateParams() {
for (auto& node : nodes_) {
RETURN_IF_ERROR(node.operation->UpdateParams());
}
return absl::OkStatus();
}
absl::Status InferenceContext::AddToQueue(CLCommandQueue* queue) {
if (need_manual_release_) {
if (prev_enqueue_start_point_.is_valid()) {
prev_enqueue_start_point_.Wait();
}
RETURN_IF_ERROR(queue->EnqueueEvent(&prev_enqueue_start_point_));
}
int counter = 0;
for (auto& node : nodes_) {
RETURN_IF_ERROR(node.operation->AddToQueue(queue));
counter++;
if (flush_periodically_ && counter % flush_period_ == 0) {
clFlush(queue->queue());
}
}
if (need_flush_) {
clFlush(queue->queue());
}
return absl::OkStatus();
}
absl::Status InferenceContext::Profile(ProfilingCommandQueue* queue,
ProfilingInfo* result) {
queue->ResetMeasurements();
for (auto& node : nodes_) {
queue->SetEventsLabel(node.name);
RETURN_IF_ERROR(node.operation->AddToQueue(queue));
}
RETURN_IF_ERROR(queue->WaitForCompletion());
*result = queue->GetProfilingInfo();
return absl::OkStatus();
}
uint64_t InferenceContext::GetSizeOfMemoryAllocatedForIntermediateTensors()
const {
uint64_t total_memory = 0;
for (const auto& t : strong_shape_tensors_) {
total_memory += t.second.GetMemorySizeInBytes();
}
for (const auto& b : shared_buffers_) {
total_memory += b.GetMemorySizeInBytes();
}
for (const auto& t : variable_tensors_) {
total_memory += t.second.GetMemorySizeInBytes();
}
return total_memory;
}
Tensor* InferenceContext::GetTensor(ValueId id) {
if (variable_ids_and_refs_.find(id) != variable_ids_and_refs_.end()) {
return &variable_tensors_[variable_ids_and_refs_[id]];
} else if (graph_ids_to_shared_buffer_tensors_.find(id) !=
graph_ids_to_shared_buffer_tensors_.end()) {
return &shared_buffer_tensors_[graph_ids_to_shared_buffer_tensors_[id]];
} else {
return &strong_shape_tensors_[graph_ids_to_strong_shape_tensors_[id]];
}
}
absl::Status InferenceContext::SetInputTensor(ValueId id,
const TensorFloat32& tensor,
CLCommandQueue* queue) {
return GetTensor(id)->WriteData(queue, tensor);
}
absl::Status InferenceContext::GetOutputTensor(ValueId id,
CLCommandQueue* queue,
TensorFloat32* result) {
const auto& gpu_tensor = *GetTensor(id);
const auto dst_shape = BHWC(gpu_tensor.Batch(), gpu_tensor.Height(),
gpu_tensor.Width(), gpu_tensor.Channels());
result->id = id;
result->shape = dst_shape;
result->data.resize(dst_shape.DimensionsProduct());
return gpu_tensor.ReadData(queue, result);
}
absl::Status RunGraphTransforms(GraphFloat32* graph) {
auto merge_padding_transform = NewMergePaddingWithAdd();
auto add_bias_transform = NewAddBias();
ModelTransformer transformer(graph, /*reporter=*/nullptr);
if (!transformer.Apply("add_bias", add_bias_transform.get())) {
return absl::InternalError("Invalid add_bias transform");
}
if (!transformer.Apply("merge_padding", merge_padding_transform.get())) {
return absl::InternalError("Invalid merge_padding transform");
}
return absl::OkStatus();
}
} // namespace cl
} // namespace gpu
} // namespace tflite
| [
"gardener@tensorflow.org"
] | gardener@tensorflow.org |
0c231ad65cff17951f6f1c19307536e748290182 | 6e882a3a0819b6257f602058b3913cf65376668a | /CNK/woowabros/2019/02_main.cpp | 5e3288508c7ff160c6fc3cafb76c614289fedb8f | [] | no_license | hyperpace/study_algo_gangnam | 79e4ffda3306cdd2d7572bd722a5b5ece5469eb5 | 34b017bcd68c67fffcae85a14a17baa4f2e4eb74 | refs/heads/master | 2021-06-12T12:37:31.694167 | 2021-03-20T09:58:54 | 2021-03-20T09:58:54 | 164,384,323 | 0 | 5 | null | 2021-03-20T09:58:54 | 2019-01-07T05:50:18 | Jupyter Notebook | UTF-8 | C++ | false | false | 1,732 | cpp | /*
#02
lands wells point result
[ [10, 0, 30, 5], [0, 30, 20, 50], [30, 30, 40, 40] ] [ [15, 15, 25, 25], [40, 10, 50, 20] ] [10, 10, 30, 30] true
[ [0, 0, 20, 10], [10, 20, 20, 40], [30, 0, 50, 20] ] [ [20, 40, 30, 50], [30, 20, 50, 30] ] [20, 30, 30, 40] false
*/
#include <string>
#include <vector>
using namespace std;
bool isOverlab(int x, int y, int x1, int y1, int x2, int y2) {
if (x > x1 && x < x2 && y > y1 && y < y2) {
return true;
} else {
return false;
}
}
bool isContain(int x, int y, int x1, int y1, int x2, int y2) {
if (x >= x1 && x <= x2 && y >= y1 && y <= y2) {
return true;
} else {
return false;
}
}
bool solution(vector<vector<int>> lands, vector<vector<int>> wells,
vector<int> point) {
bool answer = true;
int x1 = point[0];
int y1 = point[1];
int x2 = point[2];
int y2 = point[3];
// 토지가 겹치는지 check
for (int i = 0; i < lands.size(); i++) {
if (isOverlab(lands[i][0], lands[i][3], x1, y1, x2, y2) ||
isOverlab(lands[i][0], lands[i][1], x1, y1, x2, y2) ||
isOverlab(lands[i][2], lands[i][3], x1, y1, x2, y2) ||
isOverlab(lands[i][2], lands[i][1], x1, y1, x2, y2)) {
return answer = false;
} else {
answer = true;
}
}
for(int i = 0; i < wells.size(); i++) {
if (isContain(wells[i][0], wells[i][3], x1, y1, x2, y2) &&
isContain(wells[i][0], wells[i][1], x1, y1, x2, y2) &&
isContain(wells[i][2], wells[i][3], x1, y1, x2, y2) &&
isContain(wells[i][2], wells[i][1], x1, y1, x2, y2)) {
return answer = true;
} else {
answer = false;
}
}
return answer;
}
int main(int argc, char const *argv[]) {
/* code */
return 0;
}
| [
"cnk9109@gmail.com"
] | cnk9109@gmail.com |
a1996e242356fccfc01adf79e2d62ef9c1966409 | c663eefbb42b166a9929e33dc9e9a8413f3b0c3b | /src/util/StringUtils.hpp | 69fd1a8d2dd65dca1a7ca84ca116ef949a838b59 | [] | no_license | bitwangdan/mapper | f8c6c8f9584c232d66beff47197ed15d56e52a30 | 3745cac864d0bea08e251eb40807d908845ba7af | refs/heads/master | 2022-09-04T23:20:22.215211 | 2020-05-23T08:00:04 | 2020-05-23T08:00:04 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,078 | hpp | //
// Created by Jiangsiyong on 5/9/2020.
//
#ifndef MAPPER_STRINGUTILS_HPP
#define MAPPER_STRINGUTILS_HPP
#include <string>
/**
* 字符串工具类
*/
class StringUtils {
public:
/**
* 判断是不是大写字符
* @param c
* @return
*/
static bool isUppercaseAlpha(char c) {
return (c >= 'A') && (c <= 'Z');
}
/**
* 转换为小写字符
* @param c
* @return
*/
static char toLowerAscii(char c) {
if (isUppercaseAlpha(c)) {
c += (char) 0x20;
}
return c;
}
/**
* 将驼峰风格替换为下划线小写风格
*/
static std::string camelhump2Underline(const std::string &str) {
std::string result;
char c;
for (char i : str) {
if (isUppercaseAlpha(i)) {
result += '_';
result += toLowerAscii(i);
} else {
result += i;
}
}
return result.at(0) == '_' ? result.substr(1) : result;
}
};
#endif //MAPPER_STRINGUTILS_HPP
| [
"jiangsiyong@winsing.net"
] | jiangsiyong@winsing.net |
ffb3c3ac8aa83b6b3bdc2dd24b048e4cb396a6d8 | ac0e343b92342ac2d3ad5c2a921745e42437e5b0 | /src/geometry.cpp | 574c97143a922ac27114dacacfe408c6dd17aea6 | [] | no_license | GeneralLeeInept/roguelike | cb4d9d4c0d8ef23d0e3a047445d94025793f85a0 | f1acc6e7d8da4782def856cf15d1120b0010627b | refs/heads/master | 2020-06-26T07:19:16.740864 | 2017-08-05T05:34:52 | 2017-08-05T05:34:52 | 97,009,400 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,829 | cpp | #include "geometry.h"
#include <algorithm>
Point::Point(int x, int y)
: x(x)
, y(y)
{
}
Point operator+(const Point& a, const Point& b)
{
return Point(a.x + b.x, a.y + b.y);
}
Point operator-(const Point& a, const Point& b)
{
return Point(a.x - b.x, a.y - b.y);
}
Point operator*(const Point& a, int scale)
{
return Point(a.x * scale, a.y * scale);
}
Point operator/(const Point& a, int denom)
{
return Point(a.x / denom, a.y / denom);
}
bool operator==(const Point& a, const Point& b)
{
return a.x == b.x && a.y == b.y;
}
bool operator!=(const Point& a, const Point& b)
{
return a.x != b.x || a.y != b.y;
}
Rectangle::Rectangle(const Point& mins, const Point& maxs)
: mins(mins)
, maxs(maxs)
{
}
Rectangle::Rectangle(const Point& centre, int width, int height)
{
Point size(width, height);
mins = centre - size / 2;
maxs = mins + size;
}
Point Rectangle::centre() const
{
return (mins + maxs) / 2;
}
Point Rectangle::size() const
{
return maxs - mins;
}
bool Rectangle::contains(const Point& p) const
{
return p.x >= mins.x && p.x < maxs.x && p.y >= mins.y && p.y < maxs.y;
}
// Return true if r1 & r2 are separated by at least min_separation in both x & y
bool Rectangle::separated(const Rectangle& r1, const Rectangle& r2, int min_separation)
{
Point sep_a = r1.mins - r2.maxs;
Point sep_b = r2.mins - r1.maxs;
return (sep_a.x >= min_separation || sep_a.y >= min_separation || sep_b.x >= min_separation || sep_b.y >= min_separation);
}
Rectangle Rectangle::intersection(const Rectangle& r1, const Rectangle& r2)
{
Rectangle r;
r.mins.x = std::max(r1.mins.x, r2.mins.x);
r.mins.y = std::max(r1.mins.y, r2.mins.y);
r.maxs.x = std::min(r1.maxs.x, r2.maxs.x);
r.maxs.y = std::min(r1.maxs.y, r2.maxs.y);
return r;
}
| [
"derek@hemicube.com"
] | derek@hemicube.com |
1d59b563c1c2c09680de05fa38dce8f881d110a3 | 41a76318e5b9eef2c69bbf922724f8b191d7d124 | /kokkos/core/src/eti/OpenMP/Kokkos_OpenMP_ViewCopyETIInst_int_int64_t_LayoutRight_Rank8.cpp | 0af369efd446a1f18929e5f91bbf6ccfacc323e9 | [
"BSD-2-Clause",
"BSD-3-Clause"
] | permissive | zishengye/compadre | d0ff10deca224284e7e153371a738e053e66012a | 75b738a6a613c89e3c3232cbf7b2589a6b28d0a3 | refs/heads/master | 2021-06-25T06:16:38.327543 | 2021-04-02T02:08:48 | 2021-04-02T02:08:48 | 223,650,267 | 0 | 0 | NOASSERTION | 2019-11-23T20:41:03 | 2019-11-23T20:41:02 | null | UTF-8 | C++ | false | false | 2,630 | cpp | //@HEADER
// ************************************************************************
//
// Kokkos v. 3.0
// Copyright (2020) National Technology & Engineering
// Solutions of Sandia, LLC (NTESS).
//
// Under the terms of Contract DE-NA0003525 with NTESS,
// the U.S. Government retains certain rights in this software.
//
// Kokkos is licensed under 3-clause BSD terms of use:
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions are
// met:
//
// 1. Redistributions of source code must retain the above copyright
// notice, this list of conditions and the following disclaimer.
//
// 2. Redistributions in binary form must reproduce the above copyright
// notice, this list of conditions and the following disclaimer in the
// documentation and/or other materials provided with the distribution.
//
// 3. Neither the name of the Corporation nor the names of the
// contributors may be used to endorse or promote products derived from
// this software without specific prior written permission.
//
// THIS SOFTWARE IS PROVIDED BY SANDIA CORPORATION "AS IS" AND ANY
// EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
// IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
// PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL SANDIA CORPORATION OR THE
// CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
// EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
// PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
// PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
// LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
// NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
// SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
//
// Questions? Contact Christian R. Trott (crtrott@sandia.gov)
//
// ************************************************************************
//@HEADER
#define KOKKOS_IMPL_COMPILING_LIBRARY true
#include <Kokkos_Core.hpp>
namespace Kokkos {
namespace Impl {
KOKKOS_IMPL_VIEWCOPY_ETI_INST(int64_t********, LayoutRight, LayoutRight, OpenMP,
int)
KOKKOS_IMPL_VIEWCOPY_ETI_INST(int64_t********, LayoutRight, LayoutLeft, OpenMP,
int)
KOKKOS_IMPL_VIEWCOPY_ETI_INST(int64_t********, LayoutRight, LayoutStride,
OpenMP, int)
KOKKOS_IMPL_VIEWFILL_ETI_INST(int64_t********, LayoutRight, OpenMP, int)
} // namespace Impl
} // namespace Kokkos
| [
"pakuber@sandia.gov"
] | pakuber@sandia.gov |
12b8f23c093b7f6d500992ab02a216b37f352b3d | 9c1fb3c401db1345f91b6cfabe2937e8301da854 | /emulator/emulatorbsp/specific/multitouch.cpp | 1e8213c3b70b84ed58c234ff12d62fb9f99487cd | [] | no_license | SymbianSource/oss.FCL.sf.os.boardsupport | 4df8e5f0f0b7fcc82f5acfd19f5b9ac0cb77bf2e | f56e7abb15ad570df84615851bc1718a5cd750da | refs/heads/master | 2021-01-12T10:56:42.172825 | 2010-10-27T22:07:27 | 2010-10-27T22:07:27 | 72,764,766 | 1 | 2 | null | null | null | null | UTF-8 | C++ | false | false | 12,456 | cpp | // Copyright (c) 1995-2009 Nokia Corporation and/or its subsidiary(-ies).
// All rights reserved.
// This component and the accompanying materials are made available
// under the terms of "Eclipse Public License v1.0"
// which accompanies this distribution, and is available
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
//
// Initial Contributors:
// Nokia Corporation - initial contribution.
//
// Contributors:
//
// Description:
// wins\specific\multitouch.cpp
//
//
#include "multitouch.h"
#include "resource.h"
#define KDefaultMaxProximity -100
#define KDefaultMaxPressure 5000
#define KDefaultPressureStep 500
#define KDefaultProximityStep 5
// Static members
DMultiMouse DMultiMouse::iMice[KMaxMice];
int DMultiMouse::iNumMice = 0;
DMultiMouse* DMultiMouse::iPrimary = 0;
int DMultiMouse::iMouseId = 0;
int DMultiTouch::iNumberOfMice = 0;
bool DMultiTouch::iMultiTouchSupported= FALSE;
bool DMultiTouch::iMultiTouchCreated= FALSE;
bool DMultiTouch::iMultiTouchTempEnabled= FALSE;
// Function pointers for raw input APIs
TYPEOF_RegisterRawInputDevices pfnRegisterRawInputDevices= NULL;
TYPEOF_GetRawInputData pfnGetRawInputData= NULL;
TYPEOF_GetRawInputDeviceList pfnGetRawInputDeviceList=NULL;
/**
* Initialise the proximity and pressure information if undefined by the user
*/
DMultiTouch::DMultiTouch(TInt aProximityStep, TInt aPressureStep)
{
iZMaxRange = KDefaultMaxProximity;
iMaxPressure = KDefaultMaxPressure;
iProximityStep = (aProximityStep == -1) ? KDefaultProximityStep : aProximityStep;
iPressureStep = (aPressureStep == -1) ? KDefaultPressureStep : aPressureStep;
}
/**
* Register all the mice
*/
BOOL DMultiTouch::Register()
{
RAWINPUTDEVICE device;
device.usUsagePage = 0x01;
device.usUsage = 0x02;
device.dwFlags = RIDEV_NOLEGACY; // adds HID mouse and also ignores legacy mouse messages
device.hwndTarget = 0;
ShowCursors();
return pfnRegisterRawInputDevices(&device, 1, sizeof(RAWINPUTDEVICE));
}
/**
* Unregister mice devices
*/
BOOL DMultiTouch::UnRegister()
{
RAWINPUTDEVICE device;
device.usUsagePage = 0x01;
device.usUsage = 0x02;
device.dwFlags = RIDEV_REMOVE;
device.hwndTarget = NULL;
HideCursors();
return pfnRegisterRawInputDevices(&device, 1, sizeof(RAWINPUTDEVICE));
}
/* * Handle multi-input Window messages
*/
void DMultiTouch::OnWmInput(HWND aHWnd,TUint aMessage,TUint aWParam,TUint aLParam,HWND aParentHwnd)
{
RAWINPUT ri;
UINT dwSize = sizeof(ri);
if (pfnGetRawInputData((HRAWINPUT)aLParam, RID_INPUT, &ri, &dwSize, sizeof(RAWINPUTHEADER))==(UINT)-1)
{
OutputDebugString(TEXT("GetRawInputData has an error !\n"));
}
else if (ri.header.dwType == RIM_TYPEMOUSE)
{
DMultiMouse* mouse = DMultiMouse::Find(ri.header.hDevice);
if (mouse)
{
if (!DMultiMouse::iPrimary)
{
DMultiMouse::iPrimary = mouse;
DMultiMouse::iPrimary->iIsPrimary = TRUE;
}
mouse->HandleRawMouseEvent(ri.data.mouse, aParentHwnd);
}
}
DefWindowProcA(aHWnd, aMessage, aWParam, aLParam);
}
void DMultiTouch::HideCursors()
{
for (int ii=0; ii<DMultiMouse::iNumMice; ii++)
{
DMultiMouse::iMice[ii].iCursorWnd.Hide();
}
}
void DMultiTouch::ShowCursors()
{
for (int ii=0; ii<DMultiMouse::iNumMice; ii++)
{
DMultiMouse::iMice[ii].iCursorWnd.Show();
}
}
/**
* The cursor window procedure
*/
static LRESULT CALLBACK CursorWndProc(HWND hwnd, UINT msg, WPARAM wp, LPARAM lp)
{
if (msg==WM_PAINT)
{
PAINTSTRUCT ps;
HDC hdc = BeginPaint(hwnd, &ps);
CursorWindow* wnd = (CursorWindow*)GetWindowLong(hwnd, GWL_USERDATA);
DrawIconEx(hdc,0,0, wnd->iCursor,0,0,0,NULL, DI_NORMAL | DI_DEFAULTSIZE);
EndPaint(hwnd, &ps);
return 0;
}
return DefWindowProc(hwnd, msg, wp, lp);
}
CursorWindow::CursorWindow(): iHwnd(NULL),iCursor(NULL),iNumber(0)
{
}
HWND CursorWindow::Create(HMODULE hm, HWND hwndParent, int number)
{
// Create the window
static ATOM atom = NULL;
if (!atom)
{
WNDCLASSEX wcex;
ZeroMemory(&wcex, sizeof(wcex));
wcex.cbSize = sizeof(WNDCLASSEX);
wcex.style = CS_OWNDC;
wcex.lpfnWndProc = (WNDPROC)CursorWndProc;
wcex.hInstance = (HINSTANCE)hm;
wcex.lpszClassName = TEXT("CursorWndClass");
wcex.hbrBackground = CreateSolidBrush(RGB(255,0,0));//Background color is also for the number
atom = RegisterClassEx(&wcex);
}
iHwnd = CreateWindowA((LPCSTR)atom, NULL, WS_CHILD|WS_CLIPSIBLINGS, 0,0,64,64, hwndParent, NULL, hm, NULL);
SetWindowLong(iHwnd, GWL_USERDATA, (LONG)this);
iNumber = number;
return iHwnd;
}
void CursorWindow::Show()
{
ShowWindow(iHwnd, SW_NORMAL);
}
void CursorWindow::Hide()
{
ShowWindow(iHwnd, SW_HIDE);
}
BOOL CursorWindow::SetCursor(HCURSOR hc)
{
// Duplicate the cursor (because we're going to draw a number on the mask)
if (iCursor)
{
DestroyCursor(iCursor);
iCursor = NULL;
}
iCursor = CopyCursor(hc);
// Get information about the cursor, and select its mask bitmap into a temporary DC.
ICONINFO ii;
GetIconInfo(iCursor, &ii);
iHotspot.x = ii.xHotspot;
iHotspot.y = ii.yHotspot;
HDC hdc = CreateCompatibleDC(NULL);
SelectObject(hdc, ii.hbmMask);
// Get the cursor's pixel size
BITMAPINFO bmi;
bmi.bmiHeader.biSize = sizeof(BITMAPINFOHEADER);
bmi.bmiHeader.biBitCount = 0;
GetDIBits(hdc, ii.hbmMask, 0, 0, NULL, &bmi, DIB_RGB_COLORS);
int cx = bmi.bmiHeader.biWidth;
int cy = bmi.bmiHeader.biHeight;
// Monochrome cursors have a double-height hbmMask. The top half contains the AND
// bitmap (which we do want) and the bottom half contains the XOR bitmap (which we
// dont want). Colour cursors have a single normal-height AND mask.
BOOL isMonochrome = (ii.hbmColor==NULL);
int cyy = isMonochrome ? (cy>>1) : cy;
// Draw the number into the mask
char ach[4];
int ld = iNumber/10;
int rd = iNumber % 10;
if (ld > 0)
{
wsprintf((LPTSTR)ach, (LPCTSTR)TEXT("%d%d"), ld,rd);
}
else
{
wsprintf((LPTSTR)ach, (LPCTSTR)TEXT("%d"), rd);
}
HFONT hf = CreateFontA(12,0, 0,0,FW_THIN, FALSE,FALSE,FALSE, 0,DEFAULT_CHARSET, OUT_DEFAULT_PRECIS, DEFAULT_QUALITY, 0, "Arial");
SelectObject(hdc, hf);
SetBkMode(hdc, TRANSPARENT);
TextOutA(hdc, 0,cyy-12, ach, 2);
DeleteObject(hf);
// Get the bits of the mask (in 32-bit colour)
HANDLE heap = GetProcessHeap();
bmi.bmiHeader.biBitCount = 32;
DWORD* bits = (DWORD*)HeapAlloc(heap, 0, cx*cy*4);
GetDIBits(hdc, ii.hbmMask, 0, cy, bits, &bmi, DIB_RGB_COLORS);
// Set the window to the size of the cursor
SetWindowPos(iHwnd, NULL,0,0,cx,cyy, SWP_NOMOVE);
// Create a cursor-shaped region by starting out with an empty region
// and ORing in each zero-valued mask pixel.
HRGN rgn = CreateRectRgn(0,0,0,0);
for (int y=0 ; y<cyy ; y++)
{
for (int x=0 ; x<cx ; x++)
{
if (bits[(cy-y-1)*cx+x]==0)
{
HRGN rgnPix = CreateRectRgn(x,y, x+1,y+1);
CombineRgn(rgn, rgn, rgnPix, RGN_OR);
DeleteObject(rgnPix);
}
}
}
// Cleanup
HeapFree(heap, 0, bits);
DeleteDC(hdc);
// Set the window's clipping region to the cursor-shaped region
SetWindowRgn(iHwnd, rgn, TRUE);
return TRUE;
}
void CursorWindow::GetPosition(POINT& pt)
{
pt.x = 0;
pt.y = 0;
MapWindowPoints(iHwnd, GetParent(iHwnd), &pt, 1);
pt.x += iHotspot.x;
pt.y += iHotspot.y;
}
void CursorWindow::SetPosition(POINT& pt)
{
SetWindowPos(iHwnd, NULL, pt.x - iHotspot.x, pt.y - iHotspot.y, 0, 0, SWP_NOSIZE);
}
/**
* Add the mouse device to the collection
*/
TInt DMultiMouse::Add(RAWINPUTDEVICELIST& aDev)
{
if (iNumMice < KMaxMice)
{
DMultiMouse& mouse = iMice[iNumMice];
mouse.iDevice = aDev.hDevice;
iNumMice++;
return KErrNone;
}
else
{
return KErrOverflow;
}
}
DMultiMouse::DMultiMouse() :
iX(-1), iY(-1), iZ(0), iDevice(0),iId(-1)
{
}
DMultiMouse* DMultiMouse::Find(HANDLE aHandle)
{
for (TInt ii=0; ii<iNumMice; ii++)
{
DMultiMouse& mouse = iMice[ii];
if (mouse.iDevice == aHandle)
return &mouse;
}
return NULL;
}
void DMultiMouse::HandleRawMouseEvent(RAWMOUSE& aEvent, HWND aWnd)
{
// give this pointer an id, if it doesn't already have one
if (iId == -1)
{
iId = iMouseId++;
}
// Create the cursor window and set the cursor if not done yet
if (iCursorWnd.iHwnd == NULL)
{
iCursorWnd.Create((HINSTANCE)0, aWnd,iId);
iCursorWnd.SetCursor(LoadCursorA(NULL, (LPCSTR)IDC_ARROW));
}
CorrectSystemMouse();
// recalc mouse position
if (iX == -1)
{
// initial position
iX = iPrimary->iX;
iY = iPrimary->iY;
}
if (aEvent.usFlags & MOUSE_MOVE_ABSOLUTE)
{
// absolute position info can update all pointers
iX = aEvent.lLastX;
iY = aEvent.lLastY;
}
else if (!iIsPrimary)
{
// relative position info updates non-primary pointers,
iX += aEvent.lLastX;
iY += aEvent.lLastY;
}
// Show the cursor window
ShowMousePos(aWnd);
TInt message = WM_MOUSEMOVE;
// get button state
if (aEvent.usButtonFlags & RI_MOUSE_LEFT_BUTTON_DOWN)
{
message = WM_LBUTTONDOWN;
iZ = 0;
}
if (aEvent.usButtonFlags & RI_MOUSE_LEFT_BUTTON_UP)
{
message = WM_LBUTTONUP;
iZ = 0;
}
if (aEvent.usButtonFlags & RI_MOUSE_RIGHT_BUTTON_DOWN)
{
message = WM_RBUTTONDOWN;
}
if (aEvent.usButtonFlags & RI_MOUSE_RIGHT_BUTTON_UP)
{
message = WM_RBUTTONUP;
}
if (aEvent.usButtonFlags & RI_MOUSE_WHEEL)
{
message = WM_MOUSEWHEEL;
if ((TInt16)(aEvent.usButtonData&0x8000)== 0) // positive number
{
if (iZ < TheMultiTouch->iMaxPressure)
{
if (iZ>=0)
{ // pressure range
iZ += TheMultiTouch->iPressureStep;//Pressure step
if (iZ > TheMultiTouch->iMaxPressure)
{
iZ = TheMultiTouch->iMaxPressure;
}
}
else
{ // proximity range
iZ += TheMultiTouch->iProximityStep; //Proximity step
}
}
}
else
{
if (iZ > TheMultiTouch->iZMaxRange)
{
if (iZ <= 0)
{// proximity range
iZ -= TheMultiTouch->iProximityStep;//Proximity step
if (iZ < TheMultiTouch->iZMaxRange)
{
iZ = TheMultiTouch->iZMaxRange;
}
}
else
{// pressure range
iZ -= TheMultiTouch->iPressureStep;//Pressure step
}
}
}
}
MultiTouchWndPointer(message, iX, iY, iZ, iId);
}
/**
* Show the cursor window when the cursor is inside the client area
*/
void DMultiMouse::ShowMousePos(HWND aHWnd)
{
RECT client = {0,0,0,0};
if(aHWnd)
{
GetWindowRect(aHWnd, &client);
POINT pt = {iX-client.left,iY-client.top};
iCursorWnd.SetPosition(pt);
}
iCursorWnd.Show();
}
void DMultiMouse::CorrectSystemMouse()
{
if (iIsPrimary)
{
POINT pos;
if (GetCursorPos(&pos)) // if failed, pos contains garbage.
{
iX = pos.x;
iY = pos.y;
}
}
else
{
SetCursorPos(iPrimary->iX,iPrimary->iY);
}
}
/**
* a static function to check how many mice are connected
*/
bool DMultiTouch::Init()
{
HMODULE hModule = GetModuleHandleA("user32.dll");
if(hModule == NULL)
return FALSE;
OSVERSIONINFO osvi;
ZeroMemory(&osvi, sizeof(OSVERSIONINFO));
osvi.dwOSVersionInfoSize = sizeof(OSVERSIONINFO);
GetVersionEx(&osvi);
// Check for Win 2K or higher version
if (osvi.dwMajorVersion < 5)
{
return FALSE;
}
// Not supported on Win2K
if ((osvi.dwMajorVersion == 5) && (osvi.dwMinorVersion == 0))
{
return FALSE;
}
pfnRegisterRawInputDevices = (TYPEOF_RegisterRawInputDevices)GetProcAddress(hModule, "RegisterRawInputDevices");
pfnGetRawInputData = (TYPEOF_GetRawInputData)GetProcAddress(hModule, "GetRawInputData");
pfnGetRawInputDeviceList = (TYPEOF_GetRawInputDeviceList)GetProcAddress(hModule, "GetRawInputDeviceList");
if((pfnRegisterRawInputDevices == NULL) || (pfnGetRawInputData == NULL) || (pfnGetRawInputDeviceList == NULL))
{
return FALSE;
}
UINT nDevices;
if (pfnGetRawInputDeviceList(NULL, &nDevices, sizeof(RAWINPUTDEVICELIST)) != 0)
{
return FALSE;
}
RAWINPUTDEVICELIST* pRawInputDeviceList = new RAWINPUTDEVICELIST[ nDevices ];
if (!pRawInputDeviceList)
{
return FALSE;
}
pfnGetRawInputDeviceList(pRawInputDeviceList, &nDevices,
sizeof(RAWINPUTDEVICELIST));
for (UINT i=0; i<nDevices; i++)
{
RAWINPUTDEVICELIST& dev = pRawInputDeviceList[i];
if (dev.dwType == RIM_TYPEMOUSE)
{
if (DMultiMouse::Add(dev)!=KErrNone)
{
//free the device list
delete[] pRawInputDeviceList;
return FALSE;
}
}
}
delete[] pRawInputDeviceList;
// Multitouch is supported when more than 2 mice are connected (including the hidden RID mouse)
return DMultiMouse::iNumMice > 2;
}
| [
"kirill.dremov@nokia.com"
] | kirill.dremov@nokia.com |
344912c4e67ea53aaa170ef9a4dc849f8938c98a | 0575e78dd9c2ef72e3f96a7f271db6561d16f5c2 | /file_operations.h | cb9c1f68fadecc76ab1f38746730a144fd940049 | [] | no_license | user576g/JSON_Editor | 6ca75bb5ea4bb5aab84b15e7477618fe75fe29db | f106e253ef523d11750884279b65914ba723eacc | refs/heads/master | 2023-01-15T15:15:29.449540 | 2020-11-22T20:50:09 | 2020-11-22T20:50:09 | 310,871,030 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 254 | h | #ifndef FILE_OPERATIONS_H
#define FILE_OPERATIONS_H
#include <QMessageBox>
namespace file_op {
extern bool is_changed;
void open();
void new_file();
void save();
QMessageBox::StandardButton close();
};
#endif // FILE_OPERATIONS_H
| [
"user_576@ukr.net"
] | user_576@ukr.net |
4ef26d169df42015bd614218d7f0d7ede9bb4d6f | 0e85fb2a771dafb5f52581de74a203f4c17ddd65 | /S03_findRepeatNumberInArray_2.cpp | bf4b101270ab23a70d1a917c59d4ebed8c2b7e16 | [] | no_license | ljtg24/Offer68 | c0fe1097c8180d8ef284013f84613c341faec4b4 | bba5752e124be3c19671a3c94e02c127f525fd4d | refs/heads/master | 2020-06-29T00:09:58.906798 | 2019-09-02T02:19:50 | 2019-09-02T02:19:50 | 200,380,645 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,495 | cpp | // 面试题3(二):不修改数组找出重复的数字
// 题目:在一个长度为n+1的数组里的所有数字都在1到n的范围内,所以数组中至
// 少有一个数字是重复的。请找出数组中任意一个重复的数字,但不能修改输入的
// 数组。例如,如果输入长度为8的数组{2, 3, 5, 4, 3, 2, 6, 7},那么对应的
// 输出是重复的数字2或者3。
#include<cstdio>
#include<iostream>
using namespace std;
int findRepeatNumber2(int* arr, int length);
int countRange(int* arr, int length, int start, int middle);
int findRepeatNumber2(int* arr, int length)
{
if (arr == nullptr || length ==0)
return -1;
for (int i = 0; i < length; i++)
{
if (arr[i] < 0 || arr[i] > length-1)
return -1;
}
int start = 1;
int end = length-1;
while (start <= end)
{
int middle = ((end-start)>>1) + start;
int count = countRange(arr, length, start, middle);
// cout << "count:" << count << endl;
if (start == end)
{
if (count > 1)
return start;
else
break;
}
if (count > (middle-start+1))
end = middle;
else
start = middle + 1;
}
return -1;
}
int countRange(int* arr, int length, int start, int middle)
{
if (arr == nullptr)
return 0;
int count = 0;
for (int i = 0; i < length; i++)
{
if (arr[i] >= start && arr[i] <= middle)
++count;
}
return count;
}
// ====================测试代码====================
void test(const char* testName, int* numbers, int length, int* duplications, int dupLength)
{
int result = findRepeatNumber2(numbers, length);
for(int i = 0; i < dupLength; ++i)
{
if(result == duplications[i])
{
std::cout << testName << " passed." << std::endl;
return;
}
}
std::cout << testName << " FAILED." << std::endl;
}
// 多个重复的数字
void test1()
{
int numbers[] = { 2, 3, 5, 4, 3, 2, 6, 7 };
int duplications[] = { 2, 3 };
test("test1", numbers, sizeof(numbers) / sizeof(int), duplications, sizeof(duplications) / sizeof(int));
}
// 一个重复的数字
void test2()
{
int numbers[] = { 3, 2, 1, 4, 4, 5, 6, 7 };
int duplications[] = { 4 };
test("test2", numbers, sizeof(numbers) / sizeof(int), duplications, sizeof(duplications) / sizeof(int));
}
// 重复的数字是数组中最小的数字
void test3()
{
int numbers[] = { 1, 2, 3, 4, 5, 6, 7, 1, 8 };
int duplications[] = { 1 };
test("test3", numbers, sizeof(numbers) / sizeof(int), duplications, sizeof(duplications) / sizeof(int));
}
// 重复的数字是数组中最大的数字
void test4()
{
int numbers[] = { 1, 7, 3, 4, 5, 6, 8, 2, 8 };
int duplications[] = { 8 };
test("test4", numbers, sizeof(numbers) / sizeof(int), duplications, sizeof(duplications) / sizeof(int));
}
// 数组中只有两个数字
void test5()
{
int numbers[] = { 1, 1 };
int duplications[] = { 1 };
test("test5", numbers, sizeof(numbers) / sizeof(int), duplications, sizeof(duplications) / sizeof(int));
}
// 重复的数字位于数组当中
void test6()
{
int numbers[] = { 3, 2, 1, 3, 4, 5, 6, 7 };
int duplications[] = { 3 };
test("test6", numbers, sizeof(numbers) / sizeof(int), duplications, sizeof(duplications) / sizeof(int));
}
// 多个重复的数字
void test7()
{
int numbers[] = { 1, 2, 2, 6, 4, 5, 6 };
int duplications[] = { 2, 6 };
test("test7", numbers, sizeof(numbers) / sizeof(int), duplications, sizeof(duplications) / sizeof(int));
}
// 一个数字重复三次
void test8()
{
int numbers[] = { 1, 2, 2, 6, 4, 5, 2 };
int duplications[] = { 2 };
test("test8", numbers, sizeof(numbers) / sizeof(int), duplications, sizeof(duplications) / sizeof(int));
}
// 没有重复的数字
void test9()
{
int numbers[] = { 1, 2, 6, 4, 5, 3 };
int duplications[] = { -1 };
test("test9", numbers, sizeof(numbers) / sizeof(int), duplications, sizeof(duplications) / sizeof(int));
}
// 无效的输入
void test10()
{
int* numbers = nullptr;
int duplications[] = { -1 };
test("test10", numbers, 0, duplications, sizeof(duplications) / sizeof(int));
}
int main()
{
test1();
test2();
test3();
test4();
test5();
test6();
test7();
test8();
test9();
test10();
return 0;
} | [
"ljtg24@stu.xjtu.edu.cn"
] | ljtg24@stu.xjtu.edu.cn |
bbd4dfee7dee25994c1057f9144a4308824d9024 | d69fced8e9e8f0bea1777bb170865729c910008d | /samples/Juliet-1.3/C/testcases/CWE122_Heap_Based_Buffer_Overflow/s09/testcases.h | 6464c1d8fc585f92545dd1b5f8f9a0c41bba8510 | [] | no_license | maurer/marduk | efe7ba04ecc84263441a2167e4bc8b3d6d4d017a | 2c47519a96e331f403fd7a9a058d0b51309a613f | refs/heads/master | 2021-06-03T19:59:15.786320 | 2020-04-21T05:00:03 | 2020-04-21T05:01:45 | 110,798,164 | 3 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 94,222 | h | // NOTE - eventually this file will be automatically updated using a Perl script that understand
// the naming of test case files, functions, and namespaces.
#ifndef _TESTCASES_H
#define _TESTCASES_H
#ifdef __cplusplus
extern "C" {
#endif
// declare C good and bad functions
#ifndef OMITGOOD
/* BEGIN-AUTOGENERATED-C-GOOD-FUNCTION-DECLARATIONS */
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_snprintf_01_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_wchar_t_loop_45_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_wchar_t_memcpy_13_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_loop_42_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_ncpy_05_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_memcpy_11_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_loop_53_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_memmove_11_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_ncat_61_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_memmove_12_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_snprintf_45_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_wchar_t_memcpy_32_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_ncat_66_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_ncat_11_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_ncat_41_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_ncpy_17_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_memcpy_66_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_wchar_t_memcpy_09_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_wchar_t_loop_07_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_wchar_t_memcpy_22_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_ncpy_66_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_snprintf_07_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_snprintf_54_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_memmove_08_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_wchar_t_memcpy_52_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_memmove_63_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_ncpy_61_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_loop_21_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_ncat_03_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_loop_31_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_wchar_t_memcpy_53_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_ncat_13_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_wchar_t_loop_17_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_wchar_t_memcpy_41_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_loop_10_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_memcpy_67_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_ncpy_07_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_memmove_18_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_snprintf_17_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_ncat_32_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_ncpy_67_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_ncat_67_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_ncpy_34_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_loop_22_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_ncat_01_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_ncat_09_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_wchar_t_loop_63_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_ncpy_15_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_ncpy_45_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_snprintf_61_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_wchar_t_memcpy_03_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_snprintf_11_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_memmove_02_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_memmove_01_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_loop_52_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_memcpy_01_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_wchar_t_loop_61_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_memmove_03_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_ncat_21_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_wchar_t_memcpy_02_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_snprintf_10_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_ncpy_14_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_ncat_65_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_ncpy_44_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_memcpy_21_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_memmove_21_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_ncat_08_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_snprintf_31_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_snprintf_63_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_snprintf_16_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_memmove_42_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_memcpy_42_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_memmove_41_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_wchar_t_memcpy_51_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_ncpy_06_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_wchar_t_loop_16_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_wchar_t_memcpy_18_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_loop_11_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_ncpy_65_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_ncat_12_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_ncat_42_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_memcpy_65_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_loop_68_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_ncat_02_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_memmove_54_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_ncpy_64_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_memcpy_64_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_memmove_09_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_snprintf_06_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_loop_01_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_ncpy_63_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_wchar_t_memcpy_08_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_wchar_t_loop_06_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_snprintf_42_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_ncpy_16_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_memmove_61_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_ncat_18_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_ncat_10_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_memmove_32_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_ncat_63_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_memmove_31_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_loop_51_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_memcpy_31_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_snprintf_21_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_snprintf_44_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_ncat_31_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_wchar_t_memcpy_68_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_memcpy_10_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_memmove_10_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_memmove_13_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_ncat_64_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_ncpy_04_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_wchar_t_loop_44_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_wchar_t_memcpy_12_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_memmove_65_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_wchar_t_memcpy_54_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_ncpy_06_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_ncpy_67_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_snprintf_02_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_snprintf_22_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_loop_41_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_wchar_t_memcpy_10_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_memcpy_12_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_memmove_12_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_memmove_11_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_wchar_t_memcpy_31_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_ncat_12_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_ncat_42_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_snprintf_52_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_snprintf_18_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_loop_03_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_wchar_t_loop_04_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_ncpy_14_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_ncpy_44_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_memmove_08_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_memcpy_08_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_wchar_t_loop_64_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_ncat_21_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_snprintf_04_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_memmove_68_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_snprintf_66_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_ncat_67_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_ncat_08_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_snprintf_67_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_loop_32_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_ncat_18_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_ncat_10_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_loop_54_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_ncat_66_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_ncat_61_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_ncpy_04_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_wchar_t_loop_14_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_loop_13_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_wchar_t_memcpy_42_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_snprintf_08_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_ncat_31_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_snprintf_14_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_memcpy_18_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_wchar_t_loop_65_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_memmove_18_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_wchar_t_memcpy_21_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_memcpy_61_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_snprintf_53_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_memmove_51_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_ncat_02_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_ncpy_61_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_snprintf_12_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_ncpy_66_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_loop_09_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_ncpy_16_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_memmove_64_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_memmove_01_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_memmove_02_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_memcpy_02_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_ncpy_63_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_memmove_53_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_snprintf_51_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_memmove_03_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_memcpy_03_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_memcpy_63_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_ncpy_17_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_wchar_t_memcpy_01_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_snprintf_13_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_loop_08_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_ncat_03_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_memmove_21_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_memmove_66_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_ncpy_64_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_snprintf_32_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_ncat_64_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_memmove_41_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_memcpy_41_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_memmove_42_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_snprintf_15_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_wchar_t_loop_15_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_loop_12_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_snprintf_09_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_snprintf_65_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_ncpy_05_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_wchar_t_loop_67_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_snprintf_34_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_ncat_11_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_ncat_41_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_wchar_t_loop_34_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_ncat_63_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_ncat_01_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_ncat_09_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_wchar_t_loop_66_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_ncpy_34_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_snprintf_05_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_memmove_09_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_memcpy_09_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_ncat_65_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_ncpy_15_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_snprintf_64_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_ncpy_45_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_loop_02_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_snprintf_68_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_wchar_t_loop_05_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_snprintf_41_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_memmove_31_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_memmove_32_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_memcpy_32_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_ncat_13_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_ncpy_65_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_memmove_22_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_memmove_67_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_memcpy_13_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_memmove_13_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_memmove_10_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_memmove_52_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_ncat_32_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_loop_18_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_snprintf_03_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_wchar_t_memcpy_11_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_ncpy_07_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_memcpy_17_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_memmove_17_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_memmove_14_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_wchar_t_memcpy_67_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_snprintf_07_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_loop_44_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_wchar_t_memcpy_15_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_ncpy_54_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_ncpy_03_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_ncpy_53_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_memmove_63_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_snprintf_61_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_ncat_17_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_wchar_t_memcpy_34_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_memcpy_53_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_snprintf_01_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_ncpy_11_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_ncpy_41_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_loop_06_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_ncat_53_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_snprintf_45_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_wchar_t_loop_01_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_loop_66_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_ncat_05_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_ncat_54_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_ncat_22_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_loop_67_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_ncat_15_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_ncat_45_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_snprintf_54_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_memmove_45_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_memcpy_45_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_ncat_34_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_snprintf_11_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_wchar_t_loop_11_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_loop_16_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_ncat_52_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_ncpy_09_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_ncpy_01_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_ncat_07_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_ncpy_52_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_ncpy_32_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_memcpy_52_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_memmove_04_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_memcpy_22_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_memmove_07_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_memcpy_07_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_ncpy_13_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_wchar_t_memcpy_05_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_snprintf_17_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_ncpy_22_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_wchar_t_memcpy_66_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_wchar_t_memcpy_04_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_snprintf_16_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_ncpy_12_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_ncpy_42_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_memmove_05_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_memmove_06_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_memcpy_06_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_wchar_t_memcpy_64_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_ncat_68_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_ncat_06_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_ncpy_08_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_wchar_t_loop_10_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_ncpy_68_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_loop_17_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_snprintf_10_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_loop_65_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_memmove_44_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_memcpy_44_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_memcpy_68_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_ncpy_21_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_wchar_t_loop_31_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_wchar_t_loop_54_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_snprintf_31_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_ncat_14_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_ncat_44_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_wchar_t_loop_21_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_ncat_51_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_ncpy_31_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_snprintf_21_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_ncat_04_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_loop_07_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_snprintf_44_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_ncpy_10_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_ncpy_18_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_loop_64_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_memmove_54_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_wchar_t_memcpy_65_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_ncat_16_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_memmove_34_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_ncpy_02_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_wchar_t_loop_42_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_snprintf_06_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_memcpy_51_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_loop_45_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_wchar_t_memcpy_14_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_snprintf_42_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_snprintf_63_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_memcpy_16_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_memmove_16_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_memmove_61_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_memmove_15_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_ncpy_51_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_ncat_52_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_snprintf_18_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_memcpy_14_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_memmove_14_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_memmove_17_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_ncpy_08_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_snprintf_04_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_wchar_t_loop_18_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_snprintf_53_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_wchar_t_memcpy_16_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_wchar_t_loop_51_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_ncat_14_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_ncat_44_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_memmove_68_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_ncat_22_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_ncpy_21_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_memmove_65_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_ncpy_22_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_snprintf_67_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_snprintf_02_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_loop_05_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_wchar_t_loop_02_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_ncpy_12_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_ncpy_42_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_ncat_06_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_wchar_t_memcpy_61_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_ncpy_52_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_ncat_16_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_wchar_t_loop_68_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_ncpy_53_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_loop_34_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_memmove_51_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_snprintf_12_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_snprintf_66_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_memmove_64_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_memmove_45_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_ncpy_54_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_ncpy_02_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_wchar_t_loop_12_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_wchar_t_memcpy_44_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_loop_15_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_memcpy_54_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_snprintf_22_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_ncat_04_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_ncat_54_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_ncpy_31_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_memmove_07_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_memmove_04_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_memcpy_04_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_snprintf_08_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_loop_61_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_ncat_53_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_wchar_t_memcpy_06_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_snprintf_52_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_wchar_t_loop_08_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_snprintf_14_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_ncpy_10_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_ncpy_18_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_ncpy_11_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_ncpy_41_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_wchar_t_memcpy_07_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_wchar_t_loop_09_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_snprintf_15_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_snprintf_09_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_wchar_t_loop_52_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_memmove_06_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_memmove_05_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_memcpy_05_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_wchar_t_loop_22_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_snprintf_34_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_ncat_51_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_loop_63_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_ncat_05_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_wchar_t_loop_13_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_memmove_53_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_wchar_t_memcpy_45_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_loop_14_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_ncpy_51_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_ncpy_03_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_memmove_44_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_snprintf_13_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_wchar_t_loop_32_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_memmove_66_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_snprintf_68_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_snprintf_64_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_ncat_17_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_snprintf_32_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_ncat_68_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_ncpy_32_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_ncat_07_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_snprintf_65_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_memmove_67_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_memmove_22_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_ncpy_13_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_loop_04_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_wchar_t_memcpy_63_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_memmove_52_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_wchar_t_loop_03_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_snprintf_03_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_snprintf_51_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_memmove_34_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_memcpy_34_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_ncat_15_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_ncat_45_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_wchar_t_loop_41_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_snprintf_05_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_wchar_t_memcpy_17_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_ncpy_09_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_ncpy_01_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_memcpy_15_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_memmove_15_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_memmove_16_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_snprintf_41_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_ncat_34_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_wchar_t_loop_53_good();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_ncpy_68_good();
/* END-AUTOGENERATED-C-GOOD-FUNCTION-DECLARATIONS */
#endif // OMITGOOD
#ifndef OMITBAD
/* BEGIN-AUTOGENERATED-C-BAD-FUNCTION-DECLARATIONS */
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_snprintf_01_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_wchar_t_loop_45_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_wchar_t_memcpy_13_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_loop_42_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_ncpy_05_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_memcpy_11_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_loop_53_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_memmove_11_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_ncat_61_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_memmove_12_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_snprintf_45_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_wchar_t_memcpy_32_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_ncat_66_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_ncat_11_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_ncat_41_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_ncpy_17_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_memcpy_66_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_wchar_t_memcpy_09_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_wchar_t_loop_07_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_wchar_t_memcpy_22_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_ncpy_66_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_snprintf_07_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_snprintf_54_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_memmove_08_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_wchar_t_memcpy_52_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_memmove_63_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_ncpy_61_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_loop_21_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_ncat_03_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_loop_31_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_wchar_t_memcpy_53_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_ncat_13_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_wchar_t_loop_17_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_wchar_t_memcpy_41_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_loop_10_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_memcpy_67_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_ncpy_07_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_memmove_18_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_snprintf_17_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_ncat_32_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_ncpy_67_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_ncat_67_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_ncpy_34_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_loop_22_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_ncat_01_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_ncat_09_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_wchar_t_loop_63_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_ncpy_15_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_ncpy_45_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_snprintf_61_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_wchar_t_memcpy_03_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_snprintf_11_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_memmove_02_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_memmove_01_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_loop_52_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_memcpy_01_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_wchar_t_loop_61_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_memmove_03_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_ncat_21_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_wchar_t_memcpy_02_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_snprintf_10_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_ncpy_14_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_ncat_65_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_ncpy_44_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_memcpy_21_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_memmove_21_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_ncat_08_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_snprintf_31_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_snprintf_63_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_snprintf_16_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_memmove_42_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_memcpy_42_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_memmove_41_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_wchar_t_memcpy_51_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_ncpy_06_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_wchar_t_loop_16_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_wchar_t_memcpy_18_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_loop_11_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_ncpy_65_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_ncat_12_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_ncat_42_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_memcpy_65_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_loop_68_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_ncat_02_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_memmove_54_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_ncpy_64_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_memcpy_64_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_memmove_09_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_snprintf_06_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_loop_01_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_ncpy_63_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_wchar_t_memcpy_08_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_wchar_t_loop_06_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_snprintf_42_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_ncpy_16_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_memmove_61_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_ncat_18_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_ncat_10_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_memmove_32_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_ncat_63_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_memmove_31_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_loop_51_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_memcpy_31_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_snprintf_21_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_snprintf_44_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_ncat_31_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_wchar_t_memcpy_68_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_memcpy_10_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_memmove_10_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_memmove_13_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_ncat_64_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_ncpy_04_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_wchar_t_loop_44_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_wchar_t_memcpy_12_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_memmove_65_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_wchar_t_memcpy_54_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_ncpy_06_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_ncpy_67_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_snprintf_02_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_snprintf_22_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_loop_41_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_wchar_t_memcpy_10_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_memcpy_12_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_memmove_12_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_memmove_11_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_wchar_t_memcpy_31_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_ncat_12_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_ncat_42_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_snprintf_52_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_snprintf_18_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_loop_03_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_wchar_t_loop_04_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_ncpy_14_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_ncpy_44_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_memmove_08_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_memcpy_08_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_wchar_t_loop_64_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_ncat_21_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_snprintf_04_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_memmove_68_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_snprintf_66_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_ncat_67_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_ncat_08_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_snprintf_67_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_loop_32_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_ncat_18_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_ncat_10_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_loop_54_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_ncat_66_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_ncat_61_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_ncpy_04_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_wchar_t_loop_14_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_loop_13_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_wchar_t_memcpy_42_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_snprintf_08_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_ncat_31_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_snprintf_14_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_memcpy_18_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_wchar_t_loop_65_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_memmove_18_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_wchar_t_memcpy_21_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_memcpy_61_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_snprintf_53_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_memmove_51_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_ncat_02_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_ncpy_61_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_snprintf_12_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_ncpy_66_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_loop_09_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_ncpy_16_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_memmove_64_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_memmove_01_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_memmove_02_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_memcpy_02_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_ncpy_63_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_memmove_53_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_snprintf_51_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_memmove_03_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_memcpy_03_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_memcpy_63_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_ncpy_17_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_wchar_t_memcpy_01_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_snprintf_13_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_loop_08_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_ncat_03_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_memmove_21_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_memmove_66_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_ncpy_64_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_snprintf_32_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_ncat_64_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_memmove_41_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_memcpy_41_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_memmove_42_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_snprintf_15_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_wchar_t_loop_15_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_loop_12_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_snprintf_09_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_snprintf_65_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_ncpy_05_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_wchar_t_loop_67_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_snprintf_34_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_ncat_11_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_ncat_41_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_wchar_t_loop_34_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_ncat_63_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_ncat_01_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_ncat_09_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_wchar_t_loop_66_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_ncpy_34_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_snprintf_05_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_memmove_09_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_memcpy_09_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_ncat_65_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_ncpy_15_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_snprintf_64_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_ncpy_45_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_loop_02_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_snprintf_68_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_wchar_t_loop_05_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_snprintf_41_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_memmove_31_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_memmove_32_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_memcpy_32_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_ncat_13_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_ncpy_65_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_memmove_22_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_memmove_67_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_memcpy_13_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_memmove_13_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_memmove_10_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_memmove_52_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_ncat_32_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_loop_18_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_snprintf_03_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_wchar_t_memcpy_11_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_ncpy_07_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_memcpy_17_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_memmove_17_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_memmove_14_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_wchar_t_memcpy_67_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_snprintf_07_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_loop_44_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_wchar_t_memcpy_15_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_ncpy_54_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_ncpy_03_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_ncpy_53_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_memmove_63_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_snprintf_61_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_ncat_17_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_wchar_t_memcpy_34_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_memcpy_53_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_snprintf_01_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_ncpy_11_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_ncpy_41_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_loop_06_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_ncat_53_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_snprintf_45_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_wchar_t_loop_01_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_loop_66_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_ncat_05_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_ncat_54_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_ncat_22_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_loop_67_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_ncat_15_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_ncat_45_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_snprintf_54_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_memmove_45_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_memcpy_45_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_ncat_34_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_snprintf_11_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_wchar_t_loop_11_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_loop_16_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_ncat_52_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_ncpy_09_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_ncpy_01_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_ncat_07_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_ncpy_52_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_ncpy_32_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_memcpy_52_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_memmove_04_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_memcpy_22_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_memmove_07_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_memcpy_07_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_ncpy_13_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_wchar_t_memcpy_05_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_snprintf_17_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_ncpy_22_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_wchar_t_memcpy_66_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_wchar_t_memcpy_04_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_snprintf_16_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_ncpy_12_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_ncpy_42_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_memmove_05_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_memmove_06_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_memcpy_06_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_wchar_t_memcpy_64_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_ncat_68_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_ncat_06_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_ncpy_08_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_wchar_t_loop_10_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_ncpy_68_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_loop_17_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_snprintf_10_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_loop_65_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_memmove_44_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_memcpy_44_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_memcpy_68_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_ncpy_21_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_wchar_t_loop_31_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_wchar_t_loop_54_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_snprintf_31_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_ncat_14_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_ncat_44_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_wchar_t_loop_21_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_ncat_51_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_ncpy_31_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_snprintf_21_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_ncat_04_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_loop_07_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_snprintf_44_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_ncpy_10_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_ncpy_18_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_loop_64_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_memmove_54_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_wchar_t_memcpy_65_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_ncat_16_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_memmove_34_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_ncpy_02_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_wchar_t_loop_42_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_snprintf_06_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_memcpy_51_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_loop_45_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_wchar_t_memcpy_14_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_snprintf_42_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_snprintf_63_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_memcpy_16_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_memmove_16_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_memmove_61_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_memmove_15_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_ncpy_51_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_ncat_52_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_snprintf_18_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_memcpy_14_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_memmove_14_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_memmove_17_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_ncpy_08_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_snprintf_04_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_wchar_t_loop_18_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_snprintf_53_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_wchar_t_memcpy_16_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_wchar_t_loop_51_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_ncat_14_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_ncat_44_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_memmove_68_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_ncat_22_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_ncpy_21_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_memmove_65_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_ncpy_22_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_snprintf_67_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_snprintf_02_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_loop_05_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_wchar_t_loop_02_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_ncpy_12_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_ncpy_42_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_ncat_06_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_wchar_t_memcpy_61_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_ncpy_52_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_ncat_16_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_wchar_t_loop_68_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_ncpy_53_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_loop_34_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_memmove_51_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_snprintf_12_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_snprintf_66_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_memmove_64_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_memmove_45_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_ncpy_54_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_ncpy_02_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_wchar_t_loop_12_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_wchar_t_memcpy_44_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_loop_15_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_memcpy_54_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_snprintf_22_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_ncat_04_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_ncat_54_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_ncpy_31_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_memmove_07_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_memmove_04_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_memcpy_04_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_snprintf_08_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_loop_61_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_ncat_53_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_wchar_t_memcpy_06_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_snprintf_52_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_wchar_t_loop_08_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_snprintf_14_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_ncpy_10_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_ncpy_18_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_ncpy_11_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_ncpy_41_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_wchar_t_memcpy_07_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_wchar_t_loop_09_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_snprintf_15_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_snprintf_09_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_wchar_t_loop_52_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_memmove_06_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_memmove_05_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_memcpy_05_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_wchar_t_loop_22_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_snprintf_34_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_ncat_51_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_loop_63_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_ncat_05_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_wchar_t_loop_13_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_memmove_53_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_wchar_t_memcpy_45_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_loop_14_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_ncpy_51_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_ncpy_03_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_memmove_44_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_snprintf_13_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_wchar_t_loop_32_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_memmove_66_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_snprintf_68_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_snprintf_64_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_ncat_17_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_snprintf_32_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_ncat_68_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_ncpy_32_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_ncat_07_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_snprintf_65_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_memmove_67_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_memmove_22_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_ncpy_13_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_loop_04_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_wchar_t_memcpy_63_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_memmove_52_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_wchar_t_loop_03_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_snprintf_03_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_snprintf_51_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_memmove_34_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_memcpy_34_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_ncat_15_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_ncat_45_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_wchar_t_loop_41_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_snprintf_05_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_wchar_t_memcpy_17_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_ncpy_09_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_ncpy_01_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_memcpy_15_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_memmove_15_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_memmove_16_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_snprintf_41_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_ncat_34_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE806_wchar_t_loop_53_bad();
void CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_ncpy_68_bad();
/* END-AUTOGENERATED-C-BAD-FUNCTION-DECLARATIONS */
#endif // OMITBAD
#ifdef __cplusplus
} // end extern "C"
#endif
#ifdef __cplusplus
// declare C++ namespaces and good and bad functions
#ifndef OMITGOOD
/* BEGIN-AUTOGENERATED-CPP-GOOD-FUNCTION-DECLARATIONS */
namespace CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_ncat_72 { void good();}
namespace CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_ncpy_62 { void good();}
namespace CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_ncpy_73 { void good();}
namespace CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_snprintf_84 { void good();}
namespace CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_ncat_83 { void good();}
namespace CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_ncpy_82 { void good();}
namespace CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_memmove_62 { void good();}
namespace CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_ncat_33 { void good();}
namespace CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_loop_73 { void good();}
namespace CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_snprintf_72 { void good();}
namespace CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_memmove_33 { void good();}
namespace CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_snprintf_83 { void good();}
namespace CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_loop_82 { void good();}
namespace CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_snprintf_83 { void good();}
namespace CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_snprintf_72 { void good();}
namespace CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_ncat_73 { void good();}
namespace CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_memmove_83 { void good();}
namespace CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_ncat_62 { void good();}
namespace CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_ncpy_72 { void good();}
namespace CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_memmove_73 { void good();}
namespace CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_ncat_82 { void good();}
namespace CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_memmove_72 { void good();}
namespace CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_ncpy_83 { void good();}
namespace CWE122_Heap_Based_Buffer_Overflow__c_CWE806_wchar_t_loop_33 { void good();}
namespace CWE122_Heap_Based_Buffer_Overflow__c_CWE806_wchar_t_loop_81 { void good();}
namespace CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_memmove_82 { void good();}
namespace CWE122_Heap_Based_Buffer_Overflow__c_CWE806_wchar_t_loop_74 { void good();}
namespace CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_snprintf_62 { void good();}
namespace CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_memcpy_73 { void good();}
namespace CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_snprintf_33 { void good();}
namespace CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_ncat_33 { void good();}
namespace CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_loop_84 { void good();}
namespace CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_memcpy_43 { void good();}
namespace CWE122_Heap_Based_Buffer_Overflow__c_CWE806_wchar_t_loop_84 { void good();}
namespace CWE122_Heap_Based_Buffer_Overflow__c_CWE806_wchar_t_memcpy_84 { void good();}
namespace CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_ncpy_83 { void good();}
namespace CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_memmove_43 { void good();}
namespace CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_ncat_84 { void good();}
namespace CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_memcpy_82 { void good();}
namespace CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_memmove_84 { void good();}
namespace CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_snprintf_62 { void good();}
namespace CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_ncpy_62 { void good();}
namespace CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_memmove_82 { void good();}
namespace CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_ncat_72 { void good();}
namespace CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_ncpy_73 { void good();}
namespace CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_memmove_72 { void good();}
namespace CWE122_Heap_Based_Buffer_Overflow__c_CWE806_wchar_t_memcpy_84 { void good();}
namespace CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_memmove_73 { void good();}
namespace CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_ncat_83 { void good();}
namespace CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_ncpy_82 { void good();}
namespace CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_memmove_83 { void good();}
namespace CWE122_Heap_Based_Buffer_Overflow__c_CWE806_wchar_t_memcpy_81 { void good();}
namespace CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_loop_33 { void good();}
namespace CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_memmove_83 { void good();}
namespace CWE122_Heap_Based_Buffer_Overflow__c_CWE806_wchar_t_memcpy_74 { void good();}
namespace CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_loop_62 { void good();}
namespace CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_snprintf_83 { void good();}
namespace CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_memcpy_72 { void good();}
namespace CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_ncat_84 { void good();}
namespace CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_ncpy_83 { void good();}
namespace CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_ncpy_33 { void good();}
namespace CWE122_Heap_Based_Buffer_Overflow__c_CWE806_wchar_t_loop_84 { void good();}
namespace CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_memcpy_83 { void good();}
namespace CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_snprintf_33 { void good();}
namespace CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_ncat_73 { void good();}
namespace CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_ncpy_72 { void good();}
namespace CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_ncat_62 { void good();}
namespace CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_memmove_62 { void good();}
namespace CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_ncat_82 { void good();}
namespace CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_ncpy_83 { void good();}
namespace CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_memcpy_84 { void good();}
namespace CWE122_Heap_Based_Buffer_Overflow__c_CWE806_wchar_t_memcpy_43 { void good();}
namespace CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_loop_72 { void good();}
namespace CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_memcpy_62 { void good();}
namespace CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_snprintf_73 { void good();}
namespace CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_ncpy_33 { void good();}
namespace CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_snprintf_82 { void good();}
namespace CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_loop_83 { void good();}
namespace CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_snprintf_82 { void good();}
namespace CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_snprintf_73 { void good();}
namespace CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_memcpy_33 { void good();}
namespace CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_ncat_43 { void good();}
namespace CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_memcpy_74 { void good();}
namespace CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_snprintf_43 { void good();}
namespace CWE122_Heap_Based_Buffer_Overflow__c_CWE806_wchar_t_memcpy_72 { void good();}
namespace CWE122_Heap_Based_Buffer_Overflow__c_CWE806_wchar_t_loop_73 { void good();}
namespace CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_ncat_81 { void good();}
namespace CWE122_Heap_Based_Buffer_Overflow__c_CWE806_wchar_t_loop_82 { void good();}
namespace CWE122_Heap_Based_Buffer_Overflow__c_CWE806_wchar_t_memcpy_83 { void good();}
namespace CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_memmove_81 { void good();}
namespace CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_memmove_33 { void good();}
namespace CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_memmove_74 { void good();}
namespace CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_memmove_83 { void good();}
namespace CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_ncat_74 { void good();}
namespace CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_ncat_83 { void good();}
namespace CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_ncpy_84 { void good();}
namespace CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_memmove_84 { void good();}
namespace CWE122_Heap_Based_Buffer_Overflow__c_CWE806_wchar_t_loop_83 { void good();}
namespace CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_memcpy_81 { void good();}
namespace CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_loop_83 { void good();}
namespace CWE122_Heap_Based_Buffer_Overflow__c_CWE806_wchar_t_loop_43 { void good();}
namespace CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_ncpy_84 { void good();}
namespace CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_snprintf_84 { void good();}
namespace CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_memmove_43 { void good();}
namespace CWE122_Heap_Based_Buffer_Overflow__c_CWE806_wchar_t_memcpy_62 { void good();}
namespace CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_ncat_43 { void good();}
namespace CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_loop_74 { void good();}
namespace CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_ncpy_81 { void good();}
namespace CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_snprintf_83 { void good();}
namespace CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_snprintf_84 { void good();}
namespace CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_ncpy_74 { void good();}
namespace CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_loop_81 { void good();}
namespace CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_ncat_84 { void good();}
namespace CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_memcpy_83 { void good();}
namespace CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_snprintf_74 { void good();}
namespace CWE122_Heap_Based_Buffer_Overflow__c_CWE806_wchar_t_loop_62 { void good();}
namespace CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_ncpy_43 { void good();}
namespace CWE122_Heap_Based_Buffer_Overflow__c_CWE806_wchar_t_memcpy_33 { void good();}
namespace CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_snprintf_74 { void good();}
namespace CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_ncat_81 { void good();}
namespace CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_loop_84 { void good();}
namespace CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_snprintf_81 { void good();}
namespace CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_ncat_74 { void good();}
namespace CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_snprintf_81 { void good();}
namespace CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_ncpy_84 { void good();}
namespace CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_ncpy_43 { void good();}
namespace CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_memmove_81 { void good();}
namespace CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_loop_43 { void good();}
namespace CWE122_Heap_Based_Buffer_Overflow__c_CWE806_wchar_t_loop_72 { void good();}
namespace CWE122_Heap_Based_Buffer_Overflow__c_CWE806_wchar_t_memcpy_73 { void good();}
namespace CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_ncpy_81 { void good();}
namespace CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_snprintf_43 { void good();}
namespace CWE122_Heap_Based_Buffer_Overflow__c_CWE806_wchar_t_memcpy_83 { void good();}
namespace CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_memcpy_84 { void good();}
namespace CWE122_Heap_Based_Buffer_Overflow__c_CWE806_wchar_t_memcpy_82 { void good();}
namespace CWE122_Heap_Based_Buffer_Overflow__c_CWE806_wchar_t_loop_83 { void good();}
namespace CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_ncpy_74 { void good();}
namespace CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_memmove_84 { void good();}
namespace CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_ncpy_84 { void good();}
namespace CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_ncat_83 { void good();}
namespace CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_snprintf_84 { void good();}
namespace CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_memmove_74 { void good();}
namespace CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_ncat_84 { void good();}
namespace CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_memmove_84 { void good();}
/* END-AUTOGENERATED-CPP-GOOD-FUNCTION-DECLARATIONS */
#endif // OMITGOOD
#ifndef OMITBAD
/* BEGIN-AUTOGENERATED-CPP-BAD-FUNCTION-DECLARATIONS */
namespace CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_ncat_72 { void bad();}
namespace CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_ncpy_62 { void bad();}
namespace CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_ncpy_73 { void bad();}
namespace CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_snprintf_84 { void bad();}
namespace CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_ncat_83 { void bad();}
namespace CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_ncpy_82 { void bad();}
namespace CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_memmove_62 { void bad();}
namespace CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_ncat_33 { void bad();}
namespace CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_loop_73 { void bad();}
namespace CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_snprintf_72 { void bad();}
namespace CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_memmove_33 { void bad();}
namespace CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_snprintf_83 { void bad();}
namespace CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_loop_82 { void bad();}
namespace CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_snprintf_83 { void bad();}
namespace CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_snprintf_72 { void bad();}
namespace CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_ncat_73 { void bad();}
namespace CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_memmove_83 { void bad();}
namespace CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_ncat_62 { void bad();}
namespace CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_ncpy_72 { void bad();}
namespace CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_memmove_73 { void bad();}
namespace CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_ncat_82 { void bad();}
namespace CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_memmove_72 { void bad();}
namespace CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_ncpy_83 { void bad();}
namespace CWE122_Heap_Based_Buffer_Overflow__c_CWE806_wchar_t_loop_33 { void bad();}
namespace CWE122_Heap_Based_Buffer_Overflow__c_CWE806_wchar_t_loop_81 { void bad();}
namespace CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_memmove_82 { void bad();}
namespace CWE122_Heap_Based_Buffer_Overflow__c_CWE806_wchar_t_loop_74 { void bad();}
namespace CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_snprintf_62 { void bad();}
namespace CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_memcpy_73 { void bad();}
namespace CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_snprintf_33 { void bad();}
namespace CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_ncat_33 { void bad();}
namespace CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_loop_84 { void bad();}
namespace CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_memcpy_43 { void bad();}
namespace CWE122_Heap_Based_Buffer_Overflow__c_CWE806_wchar_t_loop_84 { void bad();}
namespace CWE122_Heap_Based_Buffer_Overflow__c_CWE806_wchar_t_memcpy_84 { void bad();}
namespace CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_ncpy_83 { void bad();}
namespace CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_memmove_43 { void bad();}
namespace CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_ncat_84 { void bad();}
namespace CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_memcpy_82 { void bad();}
namespace CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_memmove_84 { void bad();}
namespace CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_snprintf_62 { void bad();}
namespace CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_ncpy_62 { void bad();}
namespace CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_memmove_82 { void bad();}
namespace CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_ncat_72 { void bad();}
namespace CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_ncpy_73 { void bad();}
namespace CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_memmove_72 { void bad();}
namespace CWE122_Heap_Based_Buffer_Overflow__c_CWE806_wchar_t_memcpy_84 { void bad();}
namespace CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_memmove_73 { void bad();}
namespace CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_ncat_83 { void bad();}
namespace CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_ncpy_82 { void bad();}
namespace CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_memmove_83 { void bad();}
namespace CWE122_Heap_Based_Buffer_Overflow__c_CWE806_wchar_t_memcpy_81 { void bad();}
namespace CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_loop_33 { void bad();}
namespace CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_memmove_83 { void bad();}
namespace CWE122_Heap_Based_Buffer_Overflow__c_CWE806_wchar_t_memcpy_74 { void bad();}
namespace CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_loop_62 { void bad();}
namespace CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_snprintf_83 { void bad();}
namespace CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_memcpy_72 { void bad();}
namespace CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_ncat_84 { void bad();}
namespace CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_ncpy_83 { void bad();}
namespace CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_ncpy_33 { void bad();}
namespace CWE122_Heap_Based_Buffer_Overflow__c_CWE806_wchar_t_loop_84 { void bad();}
namespace CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_memcpy_83 { void bad();}
namespace CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_snprintf_33 { void bad();}
namespace CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_ncat_73 { void bad();}
namespace CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_ncpy_72 { void bad();}
namespace CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_ncat_62 { void bad();}
namespace CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_memmove_62 { void bad();}
namespace CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_ncat_82 { void bad();}
namespace CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_ncpy_83 { void bad();}
namespace CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_memcpy_84 { void bad();}
namespace CWE122_Heap_Based_Buffer_Overflow__c_CWE806_wchar_t_memcpy_43 { void bad();}
namespace CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_loop_72 { void bad();}
namespace CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_memcpy_62 { void bad();}
namespace CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_snprintf_73 { void bad();}
namespace CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_ncpy_33 { void bad();}
namespace CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_snprintf_82 { void bad();}
namespace CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_loop_83 { void bad();}
namespace CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_snprintf_82 { void bad();}
namespace CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_snprintf_73 { void bad();}
namespace CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_memcpy_33 { void bad();}
namespace CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_ncat_43 { void bad();}
namespace CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_memcpy_74 { void bad();}
namespace CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_snprintf_43 { void bad();}
namespace CWE122_Heap_Based_Buffer_Overflow__c_CWE806_wchar_t_memcpy_72 { void bad();}
namespace CWE122_Heap_Based_Buffer_Overflow__c_CWE806_wchar_t_loop_73 { void bad();}
namespace CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_ncat_81 { void bad();}
namespace CWE122_Heap_Based_Buffer_Overflow__c_CWE806_wchar_t_loop_82 { void bad();}
namespace CWE122_Heap_Based_Buffer_Overflow__c_CWE806_wchar_t_memcpy_83 { void bad();}
namespace CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_memmove_81 { void bad();}
namespace CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_memmove_33 { void bad();}
namespace CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_memmove_74 { void bad();}
namespace CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_memmove_83 { void bad();}
namespace CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_ncat_74 { void bad();}
namespace CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_ncat_83 { void bad();}
namespace CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_ncpy_84 { void bad();}
namespace CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_memmove_84 { void bad();}
namespace CWE122_Heap_Based_Buffer_Overflow__c_CWE806_wchar_t_loop_83 { void bad();}
namespace CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_memcpy_81 { void bad();}
namespace CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_loop_83 { void bad();}
namespace CWE122_Heap_Based_Buffer_Overflow__c_CWE806_wchar_t_loop_43 { void bad();}
namespace CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_ncpy_84 { void bad();}
namespace CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_snprintf_84 { void bad();}
namespace CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_memmove_43 { void bad();}
namespace CWE122_Heap_Based_Buffer_Overflow__c_CWE806_wchar_t_memcpy_62 { void bad();}
namespace CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_ncat_43 { void bad();}
namespace CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_loop_74 { void bad();}
namespace CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_ncpy_81 { void bad();}
namespace CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_snprintf_83 { void bad();}
namespace CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_snprintf_84 { void bad();}
namespace CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_ncpy_74 { void bad();}
namespace CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_loop_81 { void bad();}
namespace CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_ncat_84 { void bad();}
namespace CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_memcpy_83 { void bad();}
namespace CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_snprintf_74 { void bad();}
namespace CWE122_Heap_Based_Buffer_Overflow__c_CWE806_wchar_t_loop_62 { void bad();}
namespace CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_ncpy_43 { void bad();}
namespace CWE122_Heap_Based_Buffer_Overflow__c_CWE806_wchar_t_memcpy_33 { void bad();}
namespace CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_snprintf_74 { void bad();}
namespace CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_ncat_81 { void bad();}
namespace CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_loop_84 { void bad();}
namespace CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_snprintf_81 { void bad();}
namespace CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_ncat_74 { void bad();}
namespace CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_snprintf_81 { void bad();}
namespace CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_ncpy_84 { void bad();}
namespace CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_ncpy_43 { void bad();}
namespace CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_memmove_81 { void bad();}
namespace CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_loop_43 { void bad();}
namespace CWE122_Heap_Based_Buffer_Overflow__c_CWE806_wchar_t_loop_72 { void bad();}
namespace CWE122_Heap_Based_Buffer_Overflow__c_CWE806_wchar_t_memcpy_73 { void bad();}
namespace CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_ncpy_81 { void bad();}
namespace CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_snprintf_43 { void bad();}
namespace CWE122_Heap_Based_Buffer_Overflow__c_CWE806_wchar_t_memcpy_83 { void bad();}
namespace CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_memcpy_84 { void bad();}
namespace CWE122_Heap_Based_Buffer_Overflow__c_CWE806_wchar_t_memcpy_82 { void bad();}
namespace CWE122_Heap_Based_Buffer_Overflow__c_CWE806_wchar_t_loop_83 { void bad();}
namespace CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_ncpy_74 { void bad();}
namespace CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_memmove_84 { void bad();}
namespace CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_ncpy_84 { void bad();}
namespace CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_ncat_83 { void bad();}
namespace CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_snprintf_84 { void bad();}
namespace CWE122_Heap_Based_Buffer_Overflow__c_CWE806_char_memmove_74 { void bad();}
namespace CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_ncat_84 { void bad();}
namespace CWE122_Heap_Based_Buffer_Overflow__c_CWE805_wchar_t_memmove_84 { void bad();}
/* END-AUTOGENERATED-CPP-BAD-FUNCTION-DECLARATIONS */
#endif // OMITBAD
#endif // __cplusplus
#endif // _TESTCASES_H
| [
"matthew.r.maurer@gmail.com"
] | matthew.r.maurer@gmail.com |
b1b4c43e31d3ffa197bbfc082508928a14fb05e8 | 3b9b4049a8e7d38b49e07bb752780b2f1d792851 | /src/third_party/WebKit/Source/core/html/parser/TextResourceDecoder.h | e7d831082de349028c026b5658207cab5be78094 | [
"BSD-3-Clause",
"Apache-2.0",
"LGPL-2.0-or-later",
"LicenseRef-scancode-warranty-disclaimer",
"LGPL-2.1-only",
"GPL-1.0-or-later",
"GPL-2.0-only",
"LGPL-2.0-only",
"BSD-2-Clause",
"LicenseRef-scancode-other-copyleft",
"MIT"
] | permissive | webosce/chromium53 | f8e745e91363586aee9620c609aacf15b3261540 | 9171447efcf0bb393d41d1dc877c7c13c46d8e38 | refs/heads/webosce | 2020-03-26T23:08:14.416858 | 2018-08-23T08:35:17 | 2018-09-20T14:25:18 | 145,513,343 | 0 | 2 | Apache-2.0 | 2019-08-21T22:44:55 | 2018-08-21T05:52:31 | null | UTF-8 | C++ | false | false | 4,854 | h | /*
Copyright (C) 1999 Lars Knoll (knoll@mpi-hd.mpg.de)
Copyright (C) 2006 Alexey Proskuryakov (ap@nypop.com)
Copyright (C) 2006, 2008 Apple Inc. All rights reserved.
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Library General Public
License as published by the Free Software Foundation; either
version 2 of the License, or (at your option) any later version.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Library General Public License for more details.
You should have received a copy of the GNU Library General Public License
along with this library; see the file COPYING.LIB. If not, write to
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
Boston, MA 02110-1301, USA.
*/
#ifndef TextResourceDecoder_h
#define TextResourceDecoder_h
#include "core/CoreExport.h"
#include "wtf/PtrUtil.h"
#include "wtf/text/TextEncoding.h"
#include <memory>
namespace blink {
class HTMLMetaCharsetParser;
class CORE_EXPORT TextResourceDecoder {
USING_FAST_MALLOC(TextResourceDecoder);
WTF_MAKE_NONCOPYABLE(TextResourceDecoder);
public:
enum EncodingSource {
DefaultEncoding,
AutoDetectedEncoding,
EncodingFromContentSniffing,
EncodingFromXMLHeader,
EncodingFromMetaTag,
EncodingFromCSSCharset,
EncodingFromHTTPHeader,
EncodingFromParentFrame
};
static std::unique_ptr<TextResourceDecoder> create(const String& mimeType, const WTF::TextEncoding& defaultEncoding = WTF::TextEncoding(), bool usesEncodingDetector = false)
{
return wrapUnique(new TextResourceDecoder(mimeType, defaultEncoding, usesEncodingDetector ? UseAllAutoDetection : UseContentAndBOMBasedDetection));
}
// Corresponds to utf-8 decode in Encoding spec:
// https://encoding.spec.whatwg.org/#utf-8-decode.
static std::unique_ptr<TextResourceDecoder> createAlwaysUseUTF8ForText()
{
return wrapUnique(new TextResourceDecoder("plain/text", UTF8Encoding(), AlwaysUseUTF8ForText));
}
~TextResourceDecoder();
void setEncoding(const WTF::TextEncoding&, EncodingSource);
const WTF::TextEncoding& encoding() const { return m_encoding; }
bool encodingWasDetectedHeuristically() const
{
return m_source == AutoDetectedEncoding
|| m_source == EncodingFromContentSniffing;
}
String decode(const char* data, size_t length);
String flush();
void setHintEncoding(const WTF::TextEncoding& encoding)
{
m_hintEncoding = encoding.name();
}
void useLenientXMLDecoding() { m_useLenientXMLDecoding = true; }
bool sawError() const { return m_sawError; }
size_t checkForBOM(const char*, size_t);
private:
// TextResourceDecoder does three kind of encoding detection:
// 1. By BOM,
// 2. By Content if |m_contentType| is not |PlainTextContext|
// (e.g. <meta> tag for HTML), and
// 3. By detectTextEncoding().
enum EncodingDetectionOption {
// Use 1. + 2. + 3.
UseAllAutoDetection,
// Use 1. + 2.
UseContentAndBOMBasedDetection,
// Use None of them.
// |m_contentType| must be |PlainTextContent| and
// |m_encoding| must be UTF8Encoding.
// This doesn't change encoding based on BOMs, but still processes
// utf-8 BOMs so that utf-8 BOMs don't appear in the decoded result.
AlwaysUseUTF8ForText
};
TextResourceDecoder(const String& mimeType, const WTF::TextEncoding& defaultEncoding, EncodingDetectionOption);
enum ContentType { PlainTextContent, HTMLContent, XMLContent, CSSContent }; // PlainText only checks for BOM.
static ContentType determineContentType(const String& mimeType);
static const WTF::TextEncoding& defaultEncoding(ContentType, const WTF::TextEncoding& defaultEncoding);
bool checkForCSSCharset(const char*, size_t, bool& movedDataToBuffer);
bool checkForXMLCharset(const char*, size_t, bool& movedDataToBuffer);
void checkForMetaCharset(const char*, size_t);
bool shouldAutoDetect() const;
ContentType m_contentType;
WTF::TextEncoding m_encoding;
std::unique_ptr<TextCodec> m_codec;
EncodingSource m_source;
const char* m_hintEncoding;
Vector<char> m_buffer;
bool m_checkedForBOM;
bool m_checkedForCSSCharset;
bool m_checkedForXMLCharset;
bool m_checkedForMetaCharset;
bool m_useLenientXMLDecoding; // Don't stop on XML decoding errors.
bool m_sawError;
EncodingDetectionOption m_encodingDetectionOption;
std::unique_ptr<HTMLMetaCharsetParser> m_charsetParser;
};
} // namespace blink
#endif
| [
"changhyeok.bae@lge.com"
] | changhyeok.bae@lge.com |
8d948998de4fc685f8906b32ccc92eae0e4d6464 | b9fe86aade0715e29267dd9ffbce1cf6ca7a27aa | /MovieStore/MovieStore/bintree.cpp | 34bf29ce802a25ac1592aef9a6a4768de9c14d8a | [] | no_license | wilsongau/Lab4 | 9c7801e423f576e888f06f7df1372699beb09f52 | 978dfd7241939c0fb8c7fa6228d5b6bec5b1a636 | refs/heads/master | 2021-01-17T14:29:56.860190 | 2016-03-18T04:49:54 | 2016-03-18T04:49:54 | 53,706,621 | 0 | 0 | null | 2016-03-12T01:15:53 | 2016-03-12T01:15:52 | null | UTF-8 | C++ | false | false | 127 | cpp | // file bintree.cpp
// Member function definitions for class BinTree
// Created by Wilson Gautama
#include "bintree.h"
| [
"ws_gau@yahoo.com"
] | ws_gau@yahoo.com |
f7b1c72e45d6471ce4d45717f63194c83cfe3303 | fc9f6f3411f5fcc1bc99e52b7a359db1499ba8dc | /Exercicios no FALCON/Desafio 01.cpp | 7ec7de479be24f98c4fbc31500e12f544d9a6db4 | [] | no_license | felipejrcampos/Projetos-C | a2bfd7fc192a2f40bf8bf2d2014ff3a29f46f1cc | 2d93ce6834b250becec34c81456f09a7de0f549a | refs/heads/master | 2021-01-17T14:54:09.542546 | 2016-10-07T20:24:01 | 2016-10-07T20:24:01 | 70,279,839 | 0 | 0 | null | null | null | null | IBM852 | C++ | false | false | 463 | cpp | #include <stdio.h>
int main()
{
int N;
while(1)
{
printf("De a colocašao: ");
scanf("%d",&N);
if(N == 1)
printf("Top 1\n");
else if(N >1 && N<=3)
printf("Top 3\n");
else if(N >3 && N<=5)
printf("Top 5\n");
else if(N >5 && N<=10)
printf("Top 10\n");
else if(N >10 && N<=25)
printf("Top 25\n");
else if(N >25 && N<=50)
printf("Top 50\n");
else if(N >50 && N<=100)
printf("Top 100\n");
else
break;
}
printf("Colocašao invalida");
} | [
"felipech25@hotmail.com"
] | felipech25@hotmail.com |
5ca563c787aeefca7f2b0863de8531895e637912 | 6f72b28dd5fc3e5c04417afa888e6ffc70b00333 | /shiva/shivalib/src/threadutils/shvsemaphore.cpp | 674becc42dc8b58cd325eb69b513140624132a4f | [] | no_license | ElmerFuddDK/libshiva | 71ffb760ded57920289fa863bffc1a6aa369a9ba | 4d9424945f05a30ef3c3719bafe0bc931803cbf7 | refs/heads/master | 2021-10-26T20:25:37.787532 | 2021-10-19T06:08:15 | 2021-10-19T06:08:15 | 35,969,748 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,316 | cpp | /*
* Copyright (C) 2008 by Lars Eriksen
*
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU Library General Public License as
* published by the Free Software Foundation; either version 2 of the
* License, or (at your option) any later version with the following
* exeptions:
*
* 1) Static linking to the library does not constitute derivative work
* and does not require the author to provide source code for the
* application.
* Compiling applications with the source code directly linked in is
* Considered static linking as well.
*
* 2) You do not have to provide a copy of the license with programs
* that are linked against this code.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU Library General Public
* License along with this program; if not, write to the
* Free Software Foundation, Inc.,
* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
#include "stdafx.h"
#include "../../../include/platformspc.h"
#include "../../../include/threadutils/shvsemaphore.h"
// ========================================================================================================
// SHVSemaphore class
// ========================================================================================================
/// \class SHVSemaphore shvsemaphore.h "shiva/include/threadutils/shvsemaphore.h"
/*************************************
* Constructor
*************************************/
SHVSemaphore::SHVSemaphore(unsigned resourceCount) : ResourceCount(resourceCount)
{
}
/*************************************
* Destructor
*************************************/
SHVSemaphore::~SHVSemaphore()
{
SHVASSERT(WaitQueue.GetCount() == 0);
}
/*************************************
* Lock
*************************************/
/// Locks the semaphore object
/**
* It is not nessecary to lock a semaphore before waiting, but
* this function will lock it, so you can check if there are
* enough resources before waiting:
\code
bool TryDoStuff(SHVSemaphore sem, int resources)
{
sem.Lock();
if (sem.GetResourceCount() >= resources)
{
sem.Wait(resources);
sem.Unlock();
DoStuff();
sem.Signal(resources);
return true;
}
else
{
sem.Unlock();
}
return false;
}
\endcode
*/
void SHVSemaphore::Lock()
{
SignalLock.Lock();
}
/*************************************
* Unlock
*************************************/
/// Unlocks the semaphore object
/**
\see Lock
*/
void SHVSemaphore::Unlock()
{
SignalLock.Unlock();
}
/*************************************
* Wait
*************************************/
/// Attempts to consume resources
/**
\param resources The amount of resources to take (default 1)
*
* Will block if resources are not available, until they are
* signalled.
*/
void SHVSemaphore::Wait(unsigned resources)
{
SHVASSERT(resources > 0);
SignalLock.Lock();
if (ResourceCount < resources)
{
WaitLock waitLock(resources);
int lockCount;
WaitQueue.AddTail(&waitLock);
lockCount = SignalLock.UnlockAll() - 1; // unlock all, but don't lock again afterwards
waitLock.Lock.Lock(); // Will wait until we have the resources
waitLock.Lock.Unlock();
if (lockCount > 0)
SignalLock.LockMultiple(lockCount);
}
else
{
ResourceCount -= resources;
SignalLock.Unlock();
}
}
/*************************************
* Signal
*************************************/
/// Signals the semaphore, releasing any waiting threads
void SHVSemaphore::Signal(unsigned resources)
{
SHVASSERT(resources > 0);
SignalLock.Lock();
ResourceCount += resources;
while (WaitQueue.GetCount() && WaitQueue.GetFirst()->ResourceCount <= ResourceCount)
{
ResourceCount -= WaitQueue.GetFirst()->ResourceCount;
WaitQueue.PopHead()->Lock.Unlock();
}
SignalLock.Unlock();
}
/*************************************
* GetResourceCount
*************************************/
/// Returns the available resources
int SHVSemaphore::GetResourceCount()
{
return ResourceCount;
}
| [
"le@ElmerFudd.gazolini.lan"
] | le@ElmerFudd.gazolini.lan |
9fca7ca8af05fed4acdeba24a3180078477943e5 | 8fd570820384cdd97dafe62a138cdbbeb1a5644a | /improve/test.cpp | dc5c182bb4b3e80a02315bb0cc8a0dc162c5e555 | [] | no_license | realize-me/lanqiao | 433ce5c56be28ef49e890f15a0f7a5c8099b2385 | e1bc95e11055a7e50bb95df077ea40f6fb5bec2d | refs/heads/master | 2022-12-19T04:19:17.420189 | 2020-09-22T09:45:54 | 2020-09-22T09:45:54 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 88 | cpp | #include<iostream>
using namespace std;
int main (){
cout << "111";
return 0;
} | [
"1729498179@qq.com"
] | 1729498179@qq.com |
7a4268b7e5fce4690c7b1dfe53121eecf8879657 | 2236e050fb1602638a3680dfc4ad1654d8f631a4 | /src/SnakeBody.cpp | fa292e1b6a5bb56012336adb718d0f7c88bf4948 | [
"MIT"
] | permissive | DragonSWDev/vkSnake | 27adb2b580c37be1347fe7c04c1e74286401a76d | b996b9136ea937fd27deef8654dbbc4bc6c3243d | refs/heads/main | 2023-03-14T18:19:59.843745 | 2021-03-28T23:18:03 | 2021-03-28T23:18:03 | 352,456,210 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 209 | cpp | #include "SnakeBody.hpp"
void SnakeBody::setPosition(int x, int y)
{
positionX = x;
positionY = y;
}
void SnakeBody::setColor(int r, int g, int b)
{
colorR = r;
colorG = g;
colorB = b;
}
| [
"dswdev@outlook.com"
] | dswdev@outlook.com |
6099edbf7e84e6b07dafc35e296136a61440ab36 | f4fe4d3bb84cf8c6ae4b648120c13cd77c592673 | /comp_graf/snakeT2/texture.cpp | 10b84b6d61e9b7c7f61311c040dd1f26e38bfe39 | [] | no_license | Thor99/OldAndMaybeNewThingz | 5ab975574b9a545a1b61de8102d91897c13cbf10 | 0569eec3c522f3f75cf8fdb305ef91d48f6c65d5 | refs/heads/master | 2020-04-02T01:38:05.913850 | 2018-10-20T04:09:59 | 2018-10-20T04:13:45 | 153,866,904 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,727 | cpp | #ifdef _WIN32
#include <windows.h>
#define _USE_MATH_DEFINES
#endif
#include "GL/gl.h"
#include "GL/glu.h"
#include "GL/glut.h"
#include "texture.h"
#include "Bitmap.h"
bool Texture::Load(const char* file)
{
Bitmap bmp;
if(bmp.loadBMP(file))
{
glGenTextures(1, &m_texture); // Gera 1 textura vazia
glBindTexture(GL_TEXTURE_2D, m_texture); // Comando que diz que mexeremos com a textura texture nos comandos abaixo
glTexParameteri(GL_TEXTURE_2D,GL_TEXTURE_MAG_FILTER,GL_NEAREST); // Como deve esticar a imagem
glTexParameteri(GL_TEXTURE_2D,GL_TEXTURE_MIN_FILTER,GL_NEAREST); // Como deve reduzir a imagem
glTexImage2D(GL_TEXTURE_2D, 0, GL_RGB, bmp.width, bmp.height, 0,GL_RGB, GL_UNSIGNED_BYTE, bmp.data); // Carrega a imagem e joga pro openGL
}
else
{
printf("Erro com a textura\n");
}
}
void Texture::Use() const
{
glBindTexture(GL_TEXTURE_2D, m_texture); // Comando que diz que mexeremos com a textura texture nos comandos abaixo
// select modulate to mix texture with color for shading
glTexEnvf(GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_MODULATE);
// Modulate: cor = color * tex
// Replace: cor = tex
// if wrap is true, the texture wraps over at the edges (repeat)
// ... false, the texture ends at the edges (clamp)
glTexParameterf(GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, m_wrap ? GL_REPEAT : GL_CLAMP ); // Se wrap for true, repetira a imagem, senão, finalizara na borda
glTexParameterf(GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, m_wrap ? GL_REPEAT : GL_CLAMP ); // Se wrap for true, repetira a imagem, senão, finalizara na borda
}
void Texture::SetRepeat()
{
m_wrap = false;
}
void Texture::SetWrap()
{
m_wrap = true;
} | [
"thor.garcia@pagar.me"
] | thor.garcia@pagar.me |
12a1f8938ac710b9200b2f14f909c530465ef79a | 4e84672aa7f672d87667a4c1c279e390239f07f8 | /src/curl/Handler.hxx | ea9d4b8ae7a81397839a2b58e731510d2e13cb50 | [] | no_license | ExpLife0011/libcommon | 78b15d5007c10b2214ab399927b68074dc04d854 | 5883a98eae94ec710f9c0aea34a597dafc6b2b5c | refs/heads/master | 2020-03-25T08:12:26.797494 | 2018-07-11T14:13:35 | 2018-07-11T14:13:35 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,790 | hxx | /*
* Copyright (C) 2008-2016 Max Kellermann <max@duempel.org>
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
*
* - Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
*
* - Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the
* distribution.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
* ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
* FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
* FOUNDATION OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
* (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
* SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
* STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
* OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#ifndef CURL_HANDLER_HXX
#define CURL_HANDLER_HXX
#include "util/ConstBuffer.hxx"
#include <exception>
#include <string>
#include <map>
class CurlResponseHandler {
public:
virtual void OnHeaders(unsigned status,
std::multimap<std::string, std::string> &&headers) = 0;
virtual void OnData(ConstBuffer<void> data) = 0;
virtual void OnEnd() = 0;
virtual void OnError(std::exception_ptr e) = 0;
};
#endif
| [
"max.kellermann@gmail.com"
] | max.kellermann@gmail.com |
8bd071018dbba8eadaa382eead5531fb92572925 | cbd6b46a59217034ba6220c123142d8149857c59 | /Project4/VrMath/Parallelepiped.cpp | 2170d92aa7a179047d8c676816f8248da8bf6df4 | [] | no_license | xih108/Math155B | 9740806dc7082262cb3ded20df8a0dc4d62e30f1 | 787ebabc8511c9127f49dc3e62f41a9f211a53c4 | refs/heads/master | 2021-07-12T06:32:09.499544 | 2020-07-23T22:51:41 | 2020-07-23T22:51:41 | 181,986,775 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,092 | cpp | /*
*
* RayTrace Software Package, release 3.0. May 3, 2006
*
* Author: Samuel R. Buss
*
* Software accompanying the book
* 3D Computer Graphics: A Mathematical Introduction with OpenGL,
* by S. Buss, Cambridge University Press, 2003.
*
* Software is "as-is" and carries no warranty. It may be used without
* restriction, but if you modify it, please change the filenames to
* prevent confusion between different versions. Please acknowledge
* all use of the software in any publications or products based on it.
*
* Bug reports: Sam Buss, sbuss@ucsd.edu.
* Web page: http://math.ucsd.edu/~sbuss/MathCG
*
*/
// Parallelepiped.cpp
// Author: Sam Buss, January 2005.
#include "Parallelepiped.h"
VectorR3 Parallelepiped::GetNormalFront() const
{
VectorR3 ret( EdgeA );
ret *= EdgeB;
ret.Normalize();
return ret;
}
VectorR3 Parallelepiped::GetNormalLeft() const
{
VectorR3 ret( EdgeB );
ret *= EdgeC;
ret.Normalize();
return ret;
}
VectorR3 Parallelepiped::GetNormalBottom() const
{
VectorR3 ret( EdgeC );
ret *= EdgeA;
ret.Normalize();
return ret;
}
// The six GetFace functions return the fours vertices of the face
// in counterclockwise order as seen from outside the parallelepiped
// "Front" means bounded by edges A and B.
// "Left" means bounded by edges B and C.
// "Bottom" means bounded by edges C and A.
// The base point lies at the bottom left front corner.
void Parallelepiped::GetFrontFace( VectorR3 *retVerts ) const
{
*retVerts = BasePoint;
*(retVerts+1) = BasePoint;
*(retVerts+1) += EdgeA;
*(retVerts+2) = *(retVerts+1);
*(retVerts+2) += EdgeB;
*(retVerts+3) = BasePoint;
*(retVerts+3) += EdgeB;
}
void Parallelepiped::GetBackFace( VectorR3 *retVerts ) const
{
*retVerts = BasePoint;
*retVerts += EdgeC;
*(retVerts+3) = *retVerts;
*(retVerts+3) += EdgeA;
*(retVerts+2) = *(retVerts+3);
*(retVerts+2) += EdgeB;
*(retVerts+1) = *retVerts;
*(retVerts+1) += EdgeB;
}
void Parallelepiped::GetLeftFace( VectorR3 *retVerts ) const
{
*retVerts = BasePoint;
*(retVerts+1) = BasePoint;
*(retVerts+1) += EdgeB;
*(retVerts+2) = *(retVerts+1);
*(retVerts+2) += EdgeC;
*(retVerts+3) = BasePoint;
*(retVerts+3) += EdgeC;
}
void Parallelepiped::GetRightFace( VectorR3 *retVerts ) const
{
*retVerts = BasePoint;
*retVerts += EdgeA;
*(retVerts+3) = *retVerts;
*(retVerts+3) += EdgeB; // Base + EdgeA + EdgeB
*(retVerts+2) = *(retVerts+3);
*(retVerts+2) += EdgeC; // Base + EdgeA + EdgeB + EdgeC
*(retVerts+1) = *retVerts;
*(retVerts+1) += EdgeC; // Base + EdgeA + EdgeC
}
void Parallelepiped::GetBottomFace( VectorR3 *retVerts ) const
{
*retVerts = BasePoint;
*(retVerts+1) = BasePoint;
*(retVerts+1) += EdgeC;
*(retVerts+2) = *(retVerts+1);
*(retVerts+2) += EdgeA;
*(retVerts+3) = BasePoint;
*(retVerts+3) += EdgeA;
}
void Parallelepiped::GetTopFace( VectorR3 *retVerts ) const
{
*retVerts = BasePoint;
*retVerts += EdgeB;
*(retVerts+3) = *retVerts;
*(retVerts+3) += EdgeC;
*(retVerts+2) = *(retVerts+3);
*(retVerts+2) += EdgeA;
*(retVerts+1) = *retVerts;
*(retVerts+1) += EdgeA;
}
| [
"xih108@UCSD.EDU"
] | xih108@UCSD.EDU |
60f4bb978de9518c4235cfd5e5a0d4a5c3baf1bc | 5164d3fcb3ecd7d19020b68df3b5964279d9ec04 | /src/Game.h | 93f0305d119ccd45b90fdeec08fb2591961d9ba6 | [
"MIT"
] | permissive | SomeGitName/tanks_game | 71c38b084020ebdb5a2aae76d360ac543b0680f7 | 94611d5dedf8287a24f9cadf9df05d3a568a3209 | refs/heads/main | 2023-07-13T14:44:39.631245 | 2021-08-16T14:17:49 | 2021-08-16T14:17:49 | 388,824,424 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 634 | h | #pragma once
#include <SDL2/SDL.h>
// #include "Scene.h"
#include "SceneManager.h"
#include <string>
class Game
{
public:
Game(int width, int height, std::string title);
void mainLoop();
void update();
void render();
void handleInput();
/**
* Toggle pause mode
*
* @note all systems are stopped during pause
*/
void togglePause();
void exit();
private:
int m_windowWidth;
int m_windowHeight;
std::string m_title;
bool m_paused;
SDL_Window* m_window;
SDL_Renderer* m_renderer;
bool m_shouldClose;
SceneManager* m_sceneManager;
}; | [
""
] | |
5292739d453ccc04f282f865c6c41e0199d47120 | 2e5f995c56722521fcdfc5bf450b8b08b74c8505 | /Client/Desktop/EVSE/servermanager.cpp | b40341795bb8110437747e17aa6a47977738f4f4 | [] | no_license | agrippa1994/mobile_evse | 0fc360fa138adf55fe126fefd0d338d8e0f93836 | 8ddedfc1668eea3ddcb328893166d9b8afe6243a | refs/heads/master | 2021-01-14T10:23:44.991834 | 2014-03-06T20:45:59 | 2014-03-06T20:45:59 | 24,558,530 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,228 | cpp | #include "servermanager.h"
#include "ui_servermanager.h"
#include <QHideEvent>
#include <QShowEvent>
#include <QVariant>
#include <QByteArray>
#include <QDataStream>
#include <QMessageBox>
#include <QMenu>
#include <QSettings>
#include <QPair>
#include <QList>
ServerManager::ServerManager(QWidget *parent) :
QWidget(parent),
ui(new Ui::ServerManager)
{
ui->setupUi(this);
QObject::connect(ui->tableWidget, SIGNAL(customContextMenuRequested(QPoint)), SLOT(tableRightClick(QPoint)));
}
ServerManager::~ServerManager()
{
delete ui;
}
void ServerManager::showEvent(QShowEvent *p)
{
ui->tableWidget->clearContents();
ui->tableWidget->setRowCount(0);
QSettings settings("settings.ini", QSettings::IniFormat);
QList<QVariant> list = settings.value("servermanager").toList();
for(int i=0; i < list.length(); i++)
{
QStringList host_and_name = list[i].toStringList();
if(host_and_name.length() != 2)
continue;
QString name = host_and_name[0];
QString host = host_and_name[1];
int newRow = ui->tableWidget->rowCount();
ui->tableWidget->insertRow(newRow);
ui->tableWidget->setItem(newRow, 0 , new QTableWidgetItem(name));
ui->tableWidget->setItem(newRow, 1, new QTableWidgetItem(host));
}
p->accept();
}
void ServerManager::hideEvent(QHideEvent *p)
{
QSettings settings("settings.ini", QSettings::IniFormat);
QList<QVariant> list;
for(int i=0;i<ui->tableWidget->rowCount();i++)
{
QStringList host_and_name;
QTableWidgetItem *nameItem = ui->tableWidget->item(i,0);
QTableWidgetItem *hostItem = ui->tableWidget->item(i,1);
if(nameItem == 0 || hostItem == 0)
continue;
host_and_name.append(nameItem->text());
host_and_name.append(hostItem->text());
list.push_back(host_and_name);
}
settings.setValue("servermanager", list);
ui->tableWidget->clearContents();
ui->tableWidget->setRowCount(0);
p->accept();
}
void ServerManager::tableRightClick(const QPoint& p)
{
QPoint global = ui->tableWidget->mapToGlobal(p);
QMenu menu;
QTableWidgetItem *item;
if((item = ui->tableWidget->itemAt(p)))
{
QAction *openAndCloseThis = menu.addAction("Verbindung aufbauen und dieses Fenster schließen");
QAction *openAndLetOpen = menu.addAction("Verbindung aufbauen");
menu.addSeparator();
QAction *del = menu.addAction("Löschen");
QAction *selected = menu.exec(global);
if(openAndCloseThis == selected)
{
emit ConnectionRequest(ui->tableWidget->item(item->row(), 1)->text());
hide();
}
else if(openAndLetOpen == selected)
{
emit ConnectionRequest(ui->tableWidget->item(item->row(), 1)->text());
}
else if(del == selected)
{
ui->tableWidget->removeRow(item->row());
}
}
else
{
QAction *insert = menu.addAction("Einfügen");
if(insert == menu.exec(global))
{
int rowCount = ui->tableWidget->rowCount();
ui->tableWidget->insertRow(rowCount);
}
}
}
| [
"agrippa1994@icloud.com"
] | agrippa1994@icloud.com |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.