//TEST(64-bit):REFLECTION:-stage compute -no-codegen -target host-callable -entry computeMain struct AnotherStruct { float a; int b; Ptr ptrC; }; struct SomeStruct { Ptr ptrInt; int* ptrInt2; int anInt; AnotherStruct another; Ptr anotherPtr; }; RWStructuredBuffer inputBuffer; RWStructuredBuffer outputBuffer; [numthreads(4, 1, 1)] void computeMain(uint3 dispatchThreadID : SV_DispatchThreadID) { outputBuffer[dispatchThreadID.x] = int(dispatchThreadID.x); }